/* ==========================================
   TALENZOA TESTIMONIALS
========================================== */

.tz-testimonials{
    width:100%;
    max-width:950px;
    margin:0 auto;
}

.tz-testimonial-card{
    background:#ffffff;
    border-radius:18px;
    padding:60px 70px;
    text-align:center;
    box-shadow:0 15px 45px rgba(15,23,42,.06);
}

.tz-testimonial-quote{
    color:#DCA300;
    font-size:70px;
    font-weight:700;
    line-height:1;
    margin-bottom:15px;
}

.tz-testimonial-stars{
    color:#DCA300;
    font-size:20px;
    letter-spacing:2px;
    margin-bottom:25px;
}

.tz-testimonial-divider{
    width:55px;
    height:2px;
    background:#DCA300;
    margin:0 auto 35px;
}

.tz-testimonial-text{
    max-width:760px;
    margin:0 auto 35px;
    color:#53647E;
    font-size:18px;
    line-height:1.8;
}

.tz-testimonial-name{
    margin:0 0 8px;
    color:#0F172A;
    font-size:20px;
    font-weight:700;
}

.tz-testimonial-position{
    margin:0;
    color:#718096;
    font-size:14px;
}


/* Mobile */

@media (max-width:767px){

    .tz-testimonials{
        width:100%;
    }

    .tz-testimonial-card{
        padding:38px 22px;
        border-radius:14px;
    }

    .tz-testimonial-quote{
        font-size:55px;
    }

    .tz-testimonial-stars{
        font-size:17px;
    }

    .tz-testimonial-text{
        font-size:16px;
        line-height:1.7;
    }

    .tz-testimonial-name{
        font-size:18px;
    }

}
/* ==========================================
   TESTIMONIAL SLIDER
========================================== */

.tz-testimonials-slider{
    position:relative;
    width:100%;
    max-width:950px;
    margin:0 auto;
}

.tz-testimonials-track{
    position:relative;
}

.tz-testimonial-slide{
    display:none;
    opacity:0;
}

.tz-testimonial-slide.active{
    display:block;
    opacity:1;
    animation:tzTestimonialFade .5s ease;
}

@keyframes tzTestimonialFade{
    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* Navigation Arrows */

.tz-testimonial-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:44px;
    height:44px;

    border:1px solid rgba(15,23,42,.08);
    border-radius:50%;

    background:#ffffff;
    color:#0F172A;

    font-size:20px;
    line-height:1;

    cursor:pointer;

    box-shadow:0 8px 25px rgba(15,23,42,.10);

    transition:.25s ease;

    z-index:5;
}

.tz-testimonial-arrow:hover{
    background:#C8A046;
    color:#ffffff;
    border-color:#C8A046;
}

.tz-testimonial-prev{
    left:-22px;
}

.tz-testimonial-next{
    right:-22px;
}


/* Navigation Dots */

.tz-testimonial-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:9px;
    margin-top:24px;
}

.tz-testimonial-dot{
    width:9px;
    height:9px;

    padding:0;
    border:0;
    border-radius:50%;

    background:#CBD5E1;

    cursor:pointer;

    transition:.25s ease;
}

.tz-testimonial-dot.active{
    width:24px;
    border-radius:20px;
    background:#C8A046;
}


/* Mobile */

@media (max-width:767px){

    .tz-testimonial-arrow{
        width:38px;
        height:38px;
        font-size:17px;
    }

    .tz-testimonial-prev{
        left:8px;
    }

    .tz-testimonial-next{
        right:8px;
    }

}