.testimonials-section .swiper-card-quotation {
    background-color: var(--primary-color);
    padding: 6px;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* .home .testimonials-section .swiper-card-quotation{
    background-color: var(--secondary-color);
} */

.testimonials-section .button-container{
    text-align: right;
}


.testimonials-section .swiper-slide {
    background-color: var(--brown-color);
    height: auto;
    padding: 60px 24px 20px 24px;
    border: 1px solid var(--white-color);
}

.testimonials-section .description-text p{
    margin-bottom: 0;
}

.mySwiper {
    position: relative;
}

.mySwiper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white-color);
    /* overall container height */
    clip-path: polygon(0 0%,
            /* LEFT â€“ top (higher = taller end) */
            49.8% 2%,
            /* CENTER â€“ thin point */
            100% 0%,
            /* RIGHT â€“ top */
            100% 64%,
            /* RIGHT â€“ bottom */
            58% 3%,
            /* CENTER â€“ thin point */
            0 64%
            /* LEFT â€“ bottom */
        );
    transform-origin: center;
    z-index: 2;
}

.mySwiper .description-text {
    font-size: var(--font-18);
    color: var(--white-color);
}

.swipe-content-auther {
    color: var(--white-color);
    font-size: var(--font-24);
    font-weight: 400;
    font-family: var(--figtree-font);
}

.testimonials-section .swiper-btn-next img,
.testimonials-section .swiper-btn-prev img{
    filter: brightness(0.1) invert(0.6);
    transition: 0.3s ease all;
}

.testimonials-section .swiper-btn-next img:hover,
.testimonials-section .swiper-btn-prev img:hover,
.testimonials-section .swiper-btn-next img:focus,
.testimonials-section .swiper-btn-prev img:focus,
.testimonials-section .swiper-btn-next img:focus-visible,
.testimonials-section .swiper-btn-prev img:focus-visible{
    filter: brightness(1) invert(0);
    transition: 0.3s ease all;
    box-shadow: none;
}

@media screen and (max-width: 992px) {
    .button-container {
        text-align: left !important;
    }
}

@media screen and (max-width: 768px) {
    .mySwiper::after {
        clip-path: polygon(0 0%,
                /* LEFT â€“ top (higher = taller end) */
                49.8% 2%,
                /* CENTER â€“ thin point */
                100% 0%,
                /* RIGHT â€“ top */
                100% 50%,
                /* RIGHT â€“ bottom */
                62% 3%,
                /* CENTER â€“ thin point */
                0 53%
                /* LEFT â€“ bottom */
            )
    }
}


