.testimonials-section {
    padding: 80px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


.testimonials-section__title {
    text-align: center;
    margin-bottom: 56px;
}

.pre-title {
    font-family: CircularXX TT, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 8px;
    color: rgba(50, 186, 246, 1);
}

.testimonials-section__title h2 {
    font-family: CircularXX TT, sans-serif;
    font-size: 40px;
    font-weight: 450;
    line-height: 52px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgba(12, 25, 55, 1);
}


.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 72px;
    gap: 16px;
    margin-bottom: 40px;
}

.testimonial-circle {
    position: relative;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.5s ease, height 0.5s ease;
}


.circle-image {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin: 4px;
    transition: width 0.5s ease, height 0.5s ease;
}

.circle-image img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    transition: width 0.5s ease, height 0.5s ease;
}

.testimonial-circle.active {
    width: 72px;
    height: 72px;
}

.testimonial-circle.active .circle-image,
.testimonial-circle.active .circle-image img {
    width: 64px;
    height: 64px;
}

.circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.testimonial-circle.active .circle-svg {
    opacity: 1;
}

.circle-animation {
    stroke-dashoffset: 300;
    transition: none;
}

.testimonial-circle.active .circle-animation {
    stroke-dashoffset: 0;
}

.circle-svg.initial {
    opacity: 1;
}

.circle-svg.initial .circle-animation {
    stroke-dashoffset: 300;
    transition: none;
}

.testimonials-content {
    text-align: center;
    position: relative;
    min-height: 200px;
}

.testimonial-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50px);
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
}

.testimonial-text {
    font-family: CircularXX TT, sans-serif;
    font-size: 24px;
    font-weight: 450;
    line-height: 33.6px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgba(12, 25, 55, 1);
    max-width: 868px;
    margin-bottom: 45px;
}

.testimonial-name,
.testimonial-role {
    display: inline-block;
    font-family: CircularXX TT, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20.8px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgba(12, 25, 55, 1);
}

.testimonial-role:before {
    content: ",";
}
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px;
    }

    .testimonials-section__title {
        
        margin-bottom: 32px;
    }

    .testimonials-section__title .pre-title {
        font-size: 16px;
        font-weight: 700;
        line-height: 20.8px;
    }

    .testimonials-section__title h2{
        font-size: 32px;
        font-weight: 450;
        line-height: 41.6px;
        text-align: center;
    }

    .testimonials-section__content {
    }

    .testimonials-circles {
        gap: 12px;
    }

    .testimonial-circle,
    .circle-image img {
        width: 48px;
        height: 48px;
    }

    .testimonial-circle.active {
        width: 64px;
        height: 64px;
    }

    .testimonial-circle.active .circle-image {
        width: 56px;
        height: 56px;
    }

    .testimonial-text {
        font-size: 16px;
        font-weight: 450;
        line-height: 24px;
        text-align: center;
        margin-bottom: 24px;
    }

}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 24px;
    }
}