.Players_Review {
    padding: 20px 0;
    overflow: hidden;
}
.testimonialSwiper {
    padding: 20px 5px 0px;
    font-family: Exo !important;
    width: 100%;
}

.testimonialSwiper .swiper-slide {
    transition: all 0.5s ease;
}

.testimonial_card {
    position: relative;
    background: #0d0312;
    border-radius: 14px;
    padding: 25px;
    min-height: 160px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.swiper-slide-active .testimonial_card {
    background: radial-gradient(circle at center, rgba(112, 0, 160, 0.18), transparent 45%),    linear-gradient(135deg, #09030d 0%, #15051d 50%, #08030c 100%);
    box-shadow: 0px 0px 10px #FFFFFF85;
    clip-path: none;
}
.swiper-slide-prev .testimonial_card {
    transform: perspective(1000px) rotateY(-25deg) scale(0.9);
    transform-origin: left center;
}

.swiper-slide-next .testimonial_card {
    transform: perspective(1000px) rotateY(25deg) scale(0.9);
    transform-origin: right center;
}

.swiper-slide-prev .testimonial_card,
.swiper-slide-next .testimonial_card {
    opacity: 0.75;
}

.Players_Review .swiper-3d {
    perspective: none;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent linear-gradient(90deg, #0db5ee 0%, #0eb6f191 28%, #08d3f945 100%) 0% 0% no-repeat padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    aspect-ratio: 1/1;
}

.testimonial_card .swiper_title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.testimonial_card .swiper_review {
    color: #DCDCDC;
    font-size: 18px;
    line-height: 1.5;
}
@media (min-width:0px) and (max-width: 767px) {

    .testimonial_card {
        padding: 15px;
    }

    .testimonial_card .swiper_title {
        font-size: 18px;
    }

    .testimonial_card .swiper_review {
        font-size: 14px;
    }
}