.service_section__img,
.service_right {
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    height: 100%;
}

.service_section .image-box{
    height: 370px !important;
}

.service_section__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service_right h2 {
    text-transform: capitalize;
    font-size: 42px;
    font-weight: 700;
    color: var(--blue-color);
}

.service_right p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 1rem;
}

.why_wrapper {
    background-color: #49326B;
}

.why_box {
    background-color: var(--white-color);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 0 3px rgba(0, 0, 0, .4);
    border-radius: 10px;
    transition: .3s ease;
    height: 92%;
    margin-bottom: 2rem;
}

.why_box:hover {
    background-color: var(--orange-color);
    color: var(--white-color);
    transition: .3s ease;
}

.why_box h3 {
    font-size: 25px;
    font-weight: 700;
    margin-top: 1rem;
    text-transform: capitalize;
}

.why_box p {
    font-size: 15px;
    line-height: 24px;
    margin-top: 12px;
}

/* testimonial_box */
.testimonial_box {
    background-color: var(--white-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 0 7px;
    position: relative;
    border: 1px solid #ccc;
    
}
.testimonial_slider .slick-track{
    margin-bottom: 3px;
}

.google_icon img {
    position: absolute;
    right: 16px;
    top: 2rem;
    width: 40px;
}

.user_name {
    display: flex;
    gap: 12px;
}

.user_name__icon img {
    width: 50px;
}

.user_name__info h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--pink-color);
}

.user_name__info span {
    display: block;
    margin-top: 2px;
}

.rating {
    margin-top: 1rem;
    display: flex;
    gap: 2px;
    align-items: center;
}

.rating i {
    font-size: 22px;
    color: #F6B009;
}

.testimonial_box p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 1rem;
}

.cta_wrapper {
    background-color: var(--blue-color);
    padding: 50px 0;
    text-align: center;
    color: var(--white-color);
}

.cta_wrapper__content h2 {
    font-size: 42px;
    font-weight: 700;
}

.cta_wrapper__content p {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 1rem !important;
    line-height: 30px;
    font-size: 18px;
}

.center_btn button {
    background-color: var(--white-color);
    color: var(--blue-color);
}

@media(max-width:992px) {
    .service_right h2 {
        font-size: 32px;
    }

    .why_box h3 {
        font-size: 20px;
    }

    .why_box__icon img {
        width: 44px;
    }

    .cta_wrapper__content h2 {
        font-size: 30px;
    }

    .cta_wrapper__content p {
        font-size: 16px;
        line-height: 26px;
    }

}

@media(max-width:768px) {
    .service_right p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 10px;
    }

    .service_right h2 {
        font-size: 25px;
    }

    .why_box {
        height: auto;
        margin-bottom: 1rem;
    }

    .why_box p {
        font-size: 14px;
    }

    .testimonial_box {
        padding: 1rem;
    }

    .testimonial_box__img img {
        height: 75px;
        width: 75px;
    }

    .testimonial_box p {
        font-size: 13px;
        line-height: 23px;
    }

    .testimonial_box h3 {
        font-size: 20px;
    }

    .cta_wrapper__content p {
        font-size: 14px;
    }

    .cta_wrapper__content h2 {
        font-size: 22px;
    }

    .cta_wrapper {
        padding: 30px 0;
    }
}