/*==================================================
Testimonials
==================================================*/

.cg-testimonials{
    padding:100px 0;
    background:#ffffff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.testimonial-card{
    background:#fff;
    border:1px solid #E8EEF6;
    border-radius:24px;
    padding:35px;
    box-shadow:0 18px 50px rgba(15,23,42,.06);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 70px rgba(15,23,42,.12);
}

.testimonial-rating{
    color:#F59E0B;
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-text{
    color:#475569;
    line-height:1.8;
    margin-bottom:30px;
    font-size:16px;
}

.testimonial-author{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-author img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-author h4{
    margin:0;
    font-size:20px;
    color:#0F172A;
}

.testimonial-author span{
    color:#64748B;
    font-size:14px;
}

@media(max-width:1024px){

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.cg-testimonials{

padding:70px 0;

}

.testimonial-grid{

grid-template-columns:1fr;

}

}