/* ==========================================
   Testimonials
========================================== */

.testimonials{

    padding:100px 0;

    background:#f8fafc;

}

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.stars{

    color:#ffc107;

    margin-bottom:20px;

    font-size:18px;

}

.testimonial-text{

    color:#6c757d;

    font-style:italic;

    line-height:1.8;

    margin-bottom:30px;

}

.client{

    display:flex;

    align-items:center;

}

.client-avatar{

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

    margin-right:15px;

}

.client h5{

    margin:0;

    font-size:18px;

}

.client small{

    color:#6c757d;

}