/*==============================
Custom Reviews
==============================*/

.cr-review-section{
    background:#ffffff;
    padding:80px 0;
}

.cr-container{
    width:1200px;
    max-width:100%;
    margin:auto;
}

.cr-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:45px;
}

.cr-heading h2{
    font-size:40px;
    font-weight:600;
    color:#1d1d1d;
    margin:0;
}

.cr-heading p{
    margin-top:10px;
    color:#777;
    font-size:16px;
}

.cr-nav{
    display:flex;
    gap:12px;
}

.swiper{
    padding:5px !important;
}

.cr-prev,
.cr-next{

    width:48px;
    height:48px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    font-size:20px;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

    transition:.3s;
}

.cr-prev:hover,
.cr-next:hover{

    background:#0F5CBD;
    color:#fff;

}

.cr-card{

    background:#fff;

    border-radius:12px;

    padding:30px;

    height:100%;

    transition:.3s;
    
    box-shadow:rgb(231, 231, 231) 0px 1px 6px;

}

.cr-card:hover{

    transform:translateY(-3px);

}

.cr-rating{

    color:#FDB913;

    font-size:20px;

    margin-bottom:12px;

}

.cr-card h3{

    font-size:22px;

    margin-bottom:10px;

    color:#222;

}

.cr-description{

    color:#666;

    line-height:1.6;

    margin-bottom:25px;

}

.cr-user{

    display:flex;

    align-items:center;

}

.cr-user img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

    margin-right:18px;

}

.cr-user h4{

    margin:0;

    font-size:18px;

    color:#222;

}

.cr-user span{

    display:block;

    color:#777;

    margin-top:5px;

}

.swiper-pagination{

    position:relative;

    margin-top:40px;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

}

.swiper-pagination-bullet-active{

    background:#f7a400 !important;

}

@media(max-width:1024px){

.cr-heading{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

}

@media(max-width:767px){

.cr-review-section{

padding:60px 0;

}

.cr-heading h2{

font-size:32px;

}

.cr-card{

padding:25px;

}

.cr-user img{

width:60px;

height:60px;

}

}