/* ===================================
   TESTIMONIAL WRAPPER
=================================== */

.testimonial-wrapper{
    position: relative;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
/*     padding: 40px 80px; */
}

/* ===================================
   MAIN TESTIMONIAL SLIDER
=================================== */

.testimonial-slider{
    width: 100%;
/*     padding-bottom: 140px; */
}

.testimonial-slider .swiper-slide{
    opacity: .4;
    transform: scale(.92);
    transition: all .5s ease;
}

.testimonial-slider .swiper-slide-active{
    opacity: 1;
    transform: scale(1);
}

.testimonial-content{
    max-width: 760px;
    margin: auto;
    text-align: center;
/* 	background: linear-gradient(90deg, #000000 30%, #774733 50%, #FFDF32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
/*     display: inline-block; */
}

.testimonial-content h2{
    margin-bottom: 20px;
	background: linear-gradient(90deg, #000000 30%, #774733 50%, #FFDF32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
/*     display: inline-block; */
}

.testimonial-text{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
	background: linear-gradient(90deg, #000000 30%, #774733 50%, #FFDF32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
/*     display: inline-block; */
}

.testimonial-rating{
    margin-bottom: 20px;
    font-size: 20px;
}

.testimonial-content h4{
    margin-bottom: 10px;
	background: linear-gradient(90deg, #000000 30%, #774733 50%, #FFDF32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-meta{
    font-size: 14px;
	background: linear-gradient(90deg, #000000 30%, #774733 50%, #FFDF32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================================
   THUMBNAIL CAROUSEL
=================================== */

.testimonial-thumbs{
    width: 100%;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
    padding: 30px 0 10px;
}

.testimonial-thumbs .swiper-wrapper{
    align-items: center;
}

.testimonial-thumbs .swiper-slide{
    width: 110px !important;
    height: 110px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .5s ease;
    opacity: .45;
}

/* IMAGE */
.testimonial-thumbs .swiper-slide img{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;

    transition: all .5s ease;
}

/* ACTIVE CENTER */
.testimonial-thumbs .swiper-slide-active{
    opacity: 1;
    z-index: 20;
}

.testimonial-thumbs .swiper-slide-active img{
    width: 110px;
    height: 110px;
    transform: scale(1);
}

/* PREV + NEXT */
.testimonial-thumbs .swiper-slide-prev img,
.testimonial-thumbs .swiper-slide-next img{
    width: 90px;
    height: 90px;
    opacity: .8;
}

/* FAR ITEMS */
.testimonial-thumbs .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) img{
    transform: scale(.8);
}

/* ===================================
   NAVIGATION
=================================== */

.testimonial-prev,
.testimonial-next{
    position: absolute;
    top: 38%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background:#E6C76A !important;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 100;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: all .3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover{
    transform: translateY(-2px);
}

.testimonial-prev{
    left: 0;
}

.testimonial-next{
    right: 0;
}

.testimonial-prev i,
.testimonial-next i{
    font-size: 18px;
    color: #000;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

    .testimonial-wrapper{
        padding: 30px 20px;
    }

    .testimonial-slider{
        padding-bottom: 100px;
    }

    .testimonial-thumbs{
        max-width: 100%;
    }

    .testimonial-thumbs .swiper-slide{
        width: 85px !important;
        height: 85px !important;
    }

    .testimonial-thumbs .swiper-slide img{
        width: 60px;
        height: 60px;
    }

    .testimonial-thumbs .swiper-slide-active img{
        width: 85px;
        height: 85px;
    }

    .testimonial-thumbs .swiper-slide-prev img,
    .testimonial-thumbs .swiper-slide-next img{
        width: 70px;
        height: 70px;
    }

    .testimonial-prev{
        left: 10px;
    }

    .testimonial-next{
        right: 10px;
    }

}

.testimonial-rating{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 22px;
}

.testimonial-rating .star{
    position: relative;
    display: inline-block;
    line-height: 1;
}

/* FULL */
.testimonial-rating .star.full{
    color: #f4b400;
}

/* EMPTY */
.testimonial-rating .star.empty{
    color: #dcdcdc;
}

/* HALF */
.testimonial-rating .star.half{
    color: #dcdcdc;
}

.testimonial-rating .star.half::before{
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #f4b400;
}

.rating-number{
    margin-left: 10px;
    font-size: 15px;
    font-weight: 600;
}