/*======================================
FRAMEWORK 10 TESTIMONIALS
======================================*/

.testimonials{

padding:var(--space-2xl) 0;

overflow:hidden;

}

.testimonial-slider{

margin-top:80px;

overflow:hidden;

}

.testimonial-track{

display:flex;

gap:30px;

transition:var(--transition);

}

.testimonial-card{

min-width:380px;

padding:40px;

background:var(--glass);

border:1px solid var(--glass-border);

border-radius:var(--radius-lg);

backdrop-filter:blur(var(--blur));

text-align:center;

transition:var(--transition);

}

.testimonial-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(124,58,237,.30);

}

.testimonial-card img{

width:110px;

height:110px;

border-radius:50%;

object-fit:cover;

margin:auto;

margin-bottom:25px;

}

.testimonial-card h3{

margin-bottom:10px;

}

.stars{

font-size:24px;

color:var(--warning);

margin-bottom:20px;

}

.testimonial-card p{

line-height:1.8;

}

@media(max-width:992px){

.testimonial-card{

min-width:100%;

}

}