/*==================================================
PREMIUM TESTIMONIALS
==================================================*/

.bt-testimonials{

padding:110px 0;

background:#F8FAFC;

}

.bt-testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.bt-review-card{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.bt-review-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 55px rgba(0,0,0,.14);

}

.bt-review-top{

display:flex;

align-items:center;

gap:15px;

margin-bottom:20px;

}

.bt-avatar{

width:60px;

height:60px;

border-radius:50%;

background:#0d47a1;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

font-weight:700;

}

.bt-stars{

font-size:22px;

color:#FFC107;

margin-bottom:18px;

}

.bt-review-card h4{

margin:0;

font-size:20px;

}

.bt-review-card span{

font-size:14px;

color:#64748B;

}

.bt-review-card p{

margin-top:15px;

line-height:30px;

color:#475569;

}

@media(max-width:992px){

.bt-testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.bt-testimonials{

padding:70px 0;

}

.bt-testimonial-grid{

grid-template-columns:1fr;

gap:20px;

}

}