/* Testimonials */
.testimonials-container{
    padding: 80px 0 50px;
    background-color: #000000;
    overflow: hidden;
}

.testimonials-heading{
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700;
}

.testimonials-img{
    background: rgb(230, 224, 13);
    background: linear-gradient(90deg, rgba(230, 224, 13, 1) 0%, rgba(166, 202, 34, 1) 100%);
}

.swiper-pagination span{
    background-color: #efefef;
}

.testimonials-image-container{
    position: relative;
}

.swiper-slide{
    height: 100%;
    align-items: center;
    justify-content: center;
}

.testimonials-text{
    position: relative;
}

.testimonials-text::after{
    content: '';
    position: absolute;
    z-index: -1;
    background-image: url('../assets/icons/comma.webp');
    width: 30px;
    height: 30px;
    top: -5px;
    left: 0px;
    transform: rotate(180deg);
    filter: invert(23%) sepia(2%) saturate(15%) hue-rotate(32deg) brightness(89%) contrast(79%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonials-last-text{
    position: relative;
    line-height: 0px;
}

.testimonials-last-text::after{
    content: '';
    position: absolute;
    z-index: -1;
    background-image: url('../assets/icons/comma.webp');
    width: 30px;
    height: 30px;
    bottom: -10px;
    right: 0px;
    /* transform: rotate(180deg); */
    filter: invert(23%) sepia(2%) saturate(15%) hue-rotate(32deg) brightness(89%) contrast(79%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.swiper-button{
    position: static;
}

.swiper-button::after{
    font-size: 24px;    
}


@media screen and (max-width: 991px){
    .testimonials-text::after{
        top: -5px;
        left: 0px;
    }
    .testimonials-last-text::after{
        bottom: -10px;
        right: 0px;
    }
}
