.reviewWrap {
    display: flex;
    /* white-space: nowrap; */
    padding: 30px;
    gap: 15px;
    background-color: #fafafa;
    margin: 0px 50px;
    border-radius: 13px;

}



.reviewsContainer {
    display: flex;
}

.reviewItem {
    display: inline-block;
    vertical-align: top;
    /* margin-right: 20px; */
    background-color: #ffffff;
    padding: 15px;
    border-radius: 13px;
    height: 100%;
    box-sizing: border-box;
    box-shadow: -10px 0px 15px -25px #000;

}


.reviewTitle {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;

}

.revieweHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviewerName,
.reviewerRating {
    margin: 0;

}

.reviewerName p {
    font-weight: bold !important;
}

.star {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.reviewerText {
    margin-top: 10px;
}

.reviewerText p {
    margin-top: 10px;
    white-space: ;
}

@media screen and (max-width: 767px) {

    .reviewWrap {
        display: flex;
        /* white-space: nowrap; */
        padding: 30px;
        flex-direction: column;
        gap: 15px;
        background-color: #fafafa;
        margin: 0px 25px;
        border-radius: 13px;

    }

    .reviewTitle {

        padding: 0px;
        border-radius: 13px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 15px;

    }

    .reviewTitle h2 {
        text-align: center;
    }

    .swiper-container {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        min-height: 0;
        min-width: 0;
    }

}