.testimonials-section {
padding: 80px 0;
}

.testimonials-section .container { 

}

.testimonials-section .container .top-content {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 129px;
    padding: 0 50px;
    margin-bottom: 30px;
}


.testimonials-section .container .top-content > * {
    max-width: calc(50% - 64.5px);
}

.testimonials-section .container .top-content .top-left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    gap: 40px;
}

.testimonials-section .container .top-content h2 {
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 56px;
    line-height: 120%;
    text-align: left;
}


.testimonials-section .container .top-content .top-left-content .testimonials-nav { 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.testimonials-section .container .top-content .top-left-content .testimonials-nav .testimonials-nav-button { 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(237, 239, 245, 1);
    border: none;
    cursor: pointer;
    background-size: 6px 12px;
    background-position: center;
    background-repeat: no-repeat;
}


.testimonials-section .container .top-content .top-left-content .testimonials-nav .js-testimonials-next { 
    background-image: url(../../../assets/icons/arrow-right.png);
}

.testimonials-section .container .top-content .top-left-content .testimonials-nav .js-testimonials-prev { 
    background-image: url(../../../assets/icons/arrow-left.png);
}


.testimonials-section .container .top-content .top-right-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    gap: 40px;
}

.testimonials-section .container .top-content .top-right-content p {
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 28px;
    line-height: 125%;
    text-align: left;
    height: 100%;
}

.testimonials-section .container .top-content .top-right-content a {
    width: fit-content;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    border: 1px solid #000;
    padding: 16px 20px;
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: rgba(114, 52, 196, 1);
}

.testimonials-section .container .bottom-content { 

}


.testimonials-section .container .bottom-content .swiper { 

}

.testimonials-section .container .bottom-content .swiper .swiper-wrapper { 

}

.testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide { 

}

.testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide:first-child { 
    margin-left: 50px;
}

.testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide .testimonial-card {

display: flex;

flex-direction: column;

gap: 25px;
}

.testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide .testimonial-card .image-wrapper { 
    position: relative;
    width: 100%;
    aspect-ratio: 380 / 570;
    border-radius: 12px;
    overflow: hidden;
}

.testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide .testimonial-card .image-wrapper img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide .testimonial-card .image-wrapper .youtube-video-link { 
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(114, 52, 196, 1);
    padding: 16px 20px;
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
    top: 20px;
    left: 20px;
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    border: unset;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide .testimonial-card .image-wrapper .youtube-video-link:focus-visible{ 
    outline: none;
}

.testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide .testimonial-card .image-wrapper .youtube-video-link .play-icon {
    width: 20px;
    height: 20px;
    background-image: url(../../../assets/icons/play-button.png);
    background-image: url(../../../assets/icons/youtube.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide .testimonial-card .testimonial-text { 

}

.testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide .testimonial-card .testimonial-text .testimonials-title {
    font-family: CircularXX, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: var(--text-color);
    margin-bottom: 8px;
}

.testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide .testimonial-card .testimonial-text .testimonials-author { 
    font-family: CircularXX, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    color: rgba(0, 21, 74, 0.5);
}

@media (max-width: 1024px) {

    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-section .container .top-content h2 {
        font-size: 40px;
        text-align: center;
    }

    .testimonials-section .container .top-content .top-left-content .testimonials-nav {
        display: none;
    }

    .testimonials-section .container .top-content .top-right-content {
        max-width: 100%;
        gap: 30px;
    }

    .testimonials-section .container .top-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-bottom: 56px;
        padding: 0 20px;
    }

    .testimonials-section .container .top-content .top-left-content {
        max-width: 100%;
    }
    
    .testimonials-section .container .top-content .top-right-content p{
        text-align: center;
        font-size: 20px;
        color: rgba(0, 21, 74, 0.6);
    }

    .testimonials-section .container .top-content .top-right-content a {
        margin: 0 auto;
    }

    .testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide:first-child {
        margin-left: 20px;
    }

    .testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide .testimonial-card {
        gap: 20px;
    }

    .testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide .testimonial-card .testimonial-text .testimonials-title {
        font-size: 18px;
        margin-bottom: 6PX;
    }

    .testimonials-section .container .bottom-content .swiper .swiper-wrapper .swiper-slide .testimonial-card .testimonial-text .testimonials-author {
        font-size: 14px;
    }
    
}

