/* =========================
   TESTIMONIOS
========================= */

.testimonials-bg {
    padding: 60px 15px;
    background-color: #FBFBFB;
    border-top: 1px solid #E4E4E4;
}

.testimonials-cr {
    max-width: 1100px;
    margin: auto;
}

.testimonials-title {
    margin-bottom: 40px;
}

.testimonials-title h3 {
    padding-bottom: 15px;
    border-bottom: 1px solid #FFAF00;
    font-family: Montserrat, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 1s ease;
}

.testimonial-item {
    min-width: 100%;
    text-align: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

.testimonial-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #FFAF00;
}

.testimonial-text {
    max-width: 760px;
    margin: auto;
    margin-bottom: 10px;
    font-family: Inter, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #464646;
    line-height: 25px;
}

.testimonial-item h4 {
    margin-bottom: 4px;
    font-family: Montserrat, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.testimonial-item span {
    position: relative;
    display: inline-block;
    padding-bottom: 0px;
    font-family: Inter, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #FFAF00;
    letter-spacing: .5px;
    line-height: 22px;
}

.testimonial-item span::after {
    display: none;
}

/* DOTS */

.testimonials-dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D8D8D8;
    transition: .3s;
}

.testimonial-dot.active {
    width: 26px;
    border-radius: 20px;
    background-color: #FFAF00;
}

/* RESPONSIVE */

@media(max-width: 770px) {

    .testimonial-item {
        padding: 10px 5px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 30px;
    }

}