/* Start custom CSS for html, class: .elementor-element-a5db8ad *//* ===========================
   Review Section
=========================== */

.review-section{
    padding:90px 0;
    background:#f8f9fc;
}

.review-heading{
    text-align:center;
    margin-bottom:60px;
}

.review-heading h2{
    font-size:46px;
    font-weight:800;
    color:#111827;
}

.review-heading p{
    color:#64748b;
    font-size:17px;
    max-width:700px;
    margin:auto;
}

/* Grid */

.review-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* Card */

.review-item{
    background:#fff;
    border-radius:22px;
    padding:30px;
    position:relative;
    overflow:hidden;
    border:1px solid #ece8ff;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.review-item:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(109,40,217,.18);
}

/* Quote */

.review-item::before{
    content:"\f10d";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    top:20px;
    right:20px;
    font-size:55px;
    color:#ede9fe;
}

/* Avatar */

.review-avatar{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#6d28d9,#8b5cf6);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:700;
    margin-bottom:18px;
}

/* Name */

.review-item h5{
    font-size:21px;
    font-weight:700;
    color:#111827;
    margin-bottom:8px;
}

/* Stars */

.review-item .stars{
    color:#FFC107;
    font-size:15px;
    margin-bottom:18px;
}

/* Review */

.review-item p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
    margin:0;
}

/* Hover Border */

.review-item::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#6d28d9,#8b5cf6);
    transform:scaleX(0);
    transition:.35s;
}

.review-item:hover::after{
    transform:scaleX(1);
}

/* Tablet */

@media(max-width:992px){

.review-grid{
grid-template-columns:repeat(2,1fr);
}

.review-heading h2{
font-size:36px;
}

}

/* Mobile */

@media(max-width:767px){

.review-section{
padding:60px 0;
}

.review-grid{
grid-template-columns:1fr;
gap:20px;
}

.review-item{
padding:25px;
}

.review-heading h2{
font-size:28px;
}

.review-heading p{
font-size:15px;
}

.review-avatar{
width:60px;
height:60px;
font-size:22px;
}

.review-item h5{
font-size:18px;
}

}/* End custom CSS */