.reviews-slider {
    .reviews-container {
        position: relative;
        /* margin: 40px auto; */
        padding: 30px 0;
    }

    .swiper {
        width: 100%;
        /* padding: 40px 0; */
    }

    .review-card {
        background-color: white;
        border-radius: 5px;
        padding: 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        min-height: 600px;
        height: 100%;
        min-width: 600px;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;

        justify-content: center;
        align-items: center;
    }

    .swiper-slide {
        opacity: 0.9;
        transform: scale(0.9);
        transition: all 0.3s ease;
    }

    .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

    .swiper-slide-active .review-card {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .review-stars {
        color: #FFC107;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .review-content {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        flex-grow: 1;
        overflow-y: auto;
        font-family: 'slabo_27pxregular';
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: center;

    }

    .review-author {
        margin-top: 50px;
        font-weight: bold;
        color: #2c7c6d;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'krona_oneregular';
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0px;
    }

    .brand-logo {
        margin-bottom: 10px;

        img {
            width: auto;
            height: 30px;
            max-width: 120px;
        }
    }


    .swiper-button-next,
    .swiper-button-prev {
        color: #333;
        width: 50px;
        height: 50px;
    }

    .swiper-pagination-bullet {
        background: #2c7c6d;
    }

    .swiper-pagination-bullet-active {
        background: #2c7c6d;
    }

    @media screen and (max-width:767px) {
        .review-card{
            min-width: 200px;
            min-height: 450px;
        }
        .review-author{
            font-size: 13px;
        }
    }
}