/*======================================
    TESTIMONIALS
======================================*/

.testimonials{

    height: 100%;

}

.testimonial-card{

    background: #F8FAFC;

    border-radius: 8px;

    padding: 35px;

    height: 100%;

}

.quote-icon{

    margin-bottom: 25px;

}

.quote-icon i{

    font-size: 42px;

    color: var(--primary);

}

.testimonial-message{

    margin-bottom: 35px;

    color: var(--text);

    line-height: 2;

    font-size: 16px;

}

.testimonial-author{

    display: flex;

    align-items: center;

    gap: 15px;

}

.testimonial-author img{

    width: 60px;

    height: 60px;

    border-radius: 50%;

    object-fit: cover;

}

.testimonial-author h4{

    margin-bottom: 5px;

    color: var(--title);

    font-size: 17px;

    font-weight: 700;

}

.testimonial-author span{

    color: var(--text);

    font-size: 14px;

}

/*======================================
    PAGINATION
======================================*/

.testimonials .swiper-pagination{

    position: relative;

    margin-top: 25px;

}

.testimonials .swiper-pagination-bullet{

    width: 10px;

    height: 10px;

    background: #D6D6D6;

    opacity: 1;

}

.testimonials .swiper-pagination-bullet-active{

    background: var(--primary);

}