/* =========================
   REVIEWS SECTION
========================= */

.section.reviews-section {
    padding: 0px 0 120px;
    position: relative;
    overflow: hidden;
}


.reviews-heading {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-heading h2 {
    font-size: 52px;
    color: #1f2430;
    margin-bottom: 15px;
}

.reviews-heading p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: auto;
}

.review-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-left: 6px solid #9a0630;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.review-slider::before {
    content: "\f10d";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 210px;
    line-height: 1;
    color: rgba(255,255,255,0.09);
    font-family: fontawesome;
    z-index: 1;
}

.review-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.review-inner{
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
}
.review-card {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    background: #343741;
    color: #fff;
    padding: 60px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-stars {
    margin-bottom: 25px;
    display: flex;
    gap: 6px;
    padding: 0;
}

.review-stars li {
    display: inline-block;
}

.review-stars li i {
    font-size: 36px;
    color: #b20d42;
}

.review-text {
    font-size: 20px;
    line-height: 32px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 45px;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.review-author {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.review-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 45px;
}

.review-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: #9a0630;
    color: #fff;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    transition: all 0.35s ease;
}

.review-btn:hover,
.review-btn:focus{
    outline: none;
    color: #fff;
    background: #1f2430;
    transition: all 0.35s ease;
}

.review-btn[style*="pointer-events: none"]{
    cursor: default;
}

.review-track{
    cursor: grab;
    user-select: none;
}

.review-track:active{
    cursor: grabbing;
}

.review-card{
    flex-shrink: 0;
}

.review-slider{
    overflow: hidden;
}

.review-track *{
    user-select: none;
}

.review-card{
    transition: transform 0.3s ease;
}


@media (max-width: 991px) {

    .review-slider::before {
        font-size: 180px;
    }
    .review-stars li i {
        font-size: 30px;
    }
    .reviews-section {
        padding: 0 45px 60px;
    }

    .reviews-heading h2 {
        font-size: 42px;
    }

    .review-card {
        padding: 50px;
    }

    .review-text {
        font-size: 20px;
        line-height: 1.8;
    }
}


@media (max-width: 767px) {

    .review-slider::before {
        font-size: 140px;
    }
    .reviews-section {
        padding: 0px 0 45px;
    }

    .reviews-heading {
        margin-bottom: 40px;
    }

    .reviews-heading h2 {
        font-size: 34px;
    }

    .reviews-heading p {
        font-size: 16px;
    }

    .review-card {
        padding: 40px 25px;
    }

    .review-card::before {
        font-size: 100px;
        right: 20px;
    }
    .review-stars {
        margin-bottom: 15px;
    }
    .review-stars li i {
        font-size: 28px;
        color: #b20d42;
    }

    .review-text {
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 35px;
    }

    .review-author {
        font-size: 20px;
    }

    .review-btn {
        width: 52px;
        height: 52px;
    }
}