.about-us .container.services {
    padding: 80px 40px;
    background-color: rgba(108, 146, 200, 0.05);
}

.about-us .container.testimonials {
    padding: 40px 40px 80px;
    background-color: rgba(108, 146, 200, 0.05);
}

.about-us .title {
    font-size: 48px;
    line-height: 1.1667;
    font-weight: 400;
    margin-bottom: 40px;
    width: 57%;
}

.about-us .services-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-us .services-list .service-item {
    flex: 1 1 25%;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #D7DCE2;
}

.about-us .services-list .service-item .number {
    font-family: 'Instrument Serif', serif;
    font-size: 24px;
    line-height: 1.2;
    font-style: italic;
    color: #6C92C8;
    margin-bottom: 32px;
}

.about-us .services-list .service-item .service-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 8px;
}

.about-us .services-list .service-item .service-text {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.about-us .container.testimonials {
    display: flex;
    gap: 195px;
    background-color: rgba(108, 146, 200, 0.05);
}

.about-us .container.testimonials .title {
    width: 38%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.about-us .container.testimonials .title h2 {
    font-size: 48px;
    line-height: 1.25;
    font-weight: 400;
    width: 100%;
}

.about-us .container.testimonials .testimonials-swiper {
    width: 53%;
}

.about-us .container.testimonials .testimonial-quote {
    position: relative;
    padding-left: 32px;
}

.about-us .container.testimonials .testimonials-swiper .testimonial-quote svg {
    color: #6C92C8;
    position: absolute;
    left: 0;
    top: 13px;
}

.about-us .container.testimonials .testimonial-quote h3 {
    font-size: 64px;
    line-height: 1.125;
    font-weight: 400;
    margin-bottom: 72px;
}

.about-us .container.testimonials .testimonial-quote h3 i {
    font-weight: 500;
}

.about-us .container.testimonials .testimonial-quote p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 72px;
}

.about-us .container.testimonials .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 32px;
}

.about-us .container.testimonials .testimonial-author .author_image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #6C92C8;
    overflow: hidden;
}

.about-us .container.testimonials .testimonial-author .author_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.about-us .container.testimonials .testimonial-author .author-info {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.about-us .container.testimonials .testimonial-author .author-info span {
    font-style: italic;
}

.about-us .slider-buttons {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.about-us .slider-buttons .icon-button-prev {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
}

.about-us .slider-buttons .icon-button-prev svg {
    color: white;
}

.about-us .slider-buttons .icon-button-next {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #6C92C8;
    cursor: pointer;
}

.about-us .slider-buttons .icon-button-next svg {
    color: #6C92C8;
}

.about-us .slider-buttons .icon-button-prev:hover svg,
.about-us .slider-buttons .icon-button-next:hover svg {
    color: black;
}

@media (max-width:968px) {
    .about-us .container.services {
        padding: 40px 20px;
        border-radius: 0 0 30px;
    }

    .about-us .container.testimonials {
        padding: 40px 20px 40px;
        background-color: transparent;
    }

    .about-us .title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 24px;
        width: 100%;
    }

    .about-us .services-list .service-item {
        flex: 1 1 100%;
    }

    .about-us .container.testimonials {
        flex-direction: column;
    }

    .about-us .container.testimonials .title {
        width: 100%;
        display: flex;
        margin: 0;
    }

    .about-us .container.testimonials .title h2 {
        font-size: 36px;
    }

    .about-us .slider-buttons {
        gap: 0;
    }

    .about-us .slider-buttons .icon-button-prev {
        display: none;
    }

    .about-us .container.testimonials {
        gap: 20px;
    }

    .about-us .container.testimonials .testimonials-swiper {
        width: 100%;
        padding-top: 28px;
    }

    .about-us .container.testimonials .testimonial-quote {
        padding-left: 0;
    }

    .about-us .container.testimonials .testimonial-quote h3 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 24px;
    }

    .about-us .slider-buttons .icon-button-next {
        width: 48px;
        height: 48px;
    }

    .about-us .container.testimonials .testimonials-swiper .testimonial-quote svg {
        width: 167px;
        height: 184px;
        opacity: .1;
        top: -28px;
        z-index: -1;
    }

    .about-us .container.testimonials .testimonial-quote p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .about-us .container.testimonials .testimonial-author {
        padding: 8px 0;
    }

    .about-us .container.testimonials .testimonial-author img {
        width: 40px;
        height: 40px;
    }
}