.testimonials .flex-row {
    align-items: center;
}

.testimonial-image {
    position: relative;
    width: 331px;
    margin: 0 auto;
    z-index: 1;
}

.testimonial-slide-photo-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 613 / 390;
}

.testimonial-slide-photo {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.testimonial-slide-photo.is-active {
    opacity: 1;
    visibility: visible;
}

.testimonial-slide-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-image img {
    border-radius: var(--border-radius);
}

.testimonial-curve {
    position: absolute;
    z-index: -1;
    width: 100%;
    left: 0;
    bottom: 0;
}

.testimonial-content {
    margin-top: 28px;
    text-align: center;
}

.testimonial-slider {
    font-size: 0;
}

.testimonial-slider:has(>.slick-arrow) {
    padding-bottom: 55px;
}

.testimonial {
    padding-top: 43px;
    position: relative;
}

.testimonial::before {
    content: '\e912';
    font-family: 'icomoon';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    color: var(--light-blue);
    opacity: 0.3;
    font-size: 50px;
    line-height: 0.5em;
}

.testimonial p{
    color: var(--near-black);
    font-size: 19px;
    line-height: 1.2em;
}

.testimonial__author {
    margin-top: 20px;
    margin-bottom: 4px;
    color: var(--black);
    font-size:  16px;
    font-weight: 300;
    line-height: 1.5em
}

.testimonial__designation {
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
}

.testimonial-bttn {
    margin-top: 12px;
}


.testimonial-slider .slick-prev {
    margin: 0;
    left: 50%;
    margin-left: -58px;
}


.testimonial-slider .slick-next {
    margin: 0;
    left: auto;
    right: 50%;
    margin-right: -58px;
}

@media (min-width: 768px) {


    .testimonial-image {
        width: 449px;
    }

    .testimonial-curve {
        width: 393px;
        left: 50%;
        transform: translate(-50%, 0);
    }


    .testimonial-slider:has(>.slick-arrow) {
        padding-bottom: 60px;
    }

    .testimonial p {
        font-size: 24px;
    }

    .testimonial__author,
    .testimonial__designation {
        font-size: 18px;
    }

    .testimonial-bttn {
        margin-top: 16px;
    }

}


@media (min-width: 1200px) {


    .testimonial-image {
        width: 100%;
    }

    .testimonial-curve {
        width: 100%;
        max-width: 562px;
        left: 0;
        bottom: 40px;
        transform: translate(0, 0);
    }

    .testimonial-content {
        text-align: left;
        margin-top: 0;
    }

    .testimonial-content h2 {
        margin-bottom: 44px;
    }

    .testimonial-slider:has(>.slick-arrow) {
        padding-bottom: 60px;
    }

    .testimonial::before {
        left: 0;
        transform: translate(0, 0);
    }

    .testimonial p {
        font-size: 28px;
    }

    .testimonial__author {
        margin-bottom: 8px;
    }

    .testimonial__author,
    .testimonial__designation {
        font-size: 20px;
    }

    .testimonial-bttn {
        margin-top: 20px;
    }

    .testimonial-slider .slick-prev {
        margin: 0;
        left: 0;
    }

    .testimonial-slider .slick-next {
        margin: 0;
        right: auto;
        left: 63px;
    }

}