/*
====================================================
SECTION TÉMOIGNAGES
====================================================
*/

.testimonials{

    padding:120px 0;

    background:#f8fbff;

}

.testimonials .section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.testimonials .section-header h2{

    font-size:46px;

    color:#222;

    margin:20px 0;

}

.testimonials .section-header p{

    font-size:18px;

    color:#666;

    line-height:1.8;

}

/*
====================================================
GRILLE
====================================================
*/

.testimonials-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/*
====================================================
CARTE
====================================================
*/

.testimonial-card{

    background:#fff;

    border-radius:25px;

    padding:40px 35px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

/*
====================================================
PHOTO
====================================================
*/

.testimonial-photo{

    margin-bottom:25px;

}

.testimonial-photo img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #EAF3FF;

}

/*
====================================================
CONTENU
====================================================
*/

.testimonial-content h3{

    font-size:22px;

    color:#222;

    margin-bottom:10px;

}

.testimonial-location{

    display:block;

    color:#777;

    font-size:15px;

    margin-bottom:18px;

}

.testimonial-location i{

    color:#0057B8;

    margin-right:6px;

}

/*
====================================================
ÉTOILES
====================================================
*/

.testimonial-rating{

    margin-bottom:22px;

}

.testimonial-rating i{

    color:#FDBA12;

    font-size:18px;

    margin:0 2px;

}

/*
====================================================
TEXTE
====================================================
*/

.testimonial-content p{

    color:#666;

    line-height:1.8;

    font-size:16px;

}

/*
====================================================
BOUTON
====================================================
*/

.section-footer{

    margin-top:60px;

    text-align:center;

}

/*
====================================================
RESPONSIVE
====================================================
*/

@media(max-width:992px){

    .testimonials-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .testimonials{

        padding:80px 0;

    }

    .testimonials .section-header{

        margin-bottom:50px;

    }

    .testimonials .section-header h2{

        font-size:34px;

    }

    .testimonials .section-header p{

        font-size:16px;

    }

    .testimonial-card{

        padding:35px 25px;

    }

}