.review-container {
    display: flex;
}
.review-swiper{
    width: 100%;
}
.review-swiper-pagination {
    width: 100%;
    display: flex;
    justify-content: center;
}

.review-swiper-pagination .swiper-pagination-bullet{
    width: 48px !important;
    height: 10px !important;
    border-radius: 24px;
}
.review-swiper-pagination .swiper-pagination-bullet-active{
    outline: 4px solid #253691;
}

.review-swiper-pagination .swiper-pagination-bullet{
    width: 24px !important;
    height: 4px !important;
    border-radius: 24px;
    background-color: #80808080
}
.review-swiper-pagination .swiper-pagination-bullet-active{
    background-color: #FCD944;
    outline: 2px solid #253691;
}

@media screen and (min-width:480px) {

    .review-container {
        align-items: flex-start;
        gap: 16px;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .review-item {
        display: flex;
		min-height: 130px;
        align-items: flex-start;
        flex: 1 0 0;
        border-radius: 16px;
        background: #FFF;
        box-shadow: 0px 20px 25px -5px rgba(16, 24, 40, 0.02), 0px 8px 10px -6px rgba(16, 24, 40, 0.05);
    }

    .review-item .review-image {
        width: 120px;
        align-self: stretch;
        object-fit: cover;
        border-radius: 16px 0 0 16px;
    }

    .review-rating-icon{
        width: 100%;
        height: 16px;
        object-fit: cover;
    }

    .review-content {
        display: flex;
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        flex: 1 0 0;
    }

    .review-title {
        color: #111827;
        font-family: "SVN Omnes", Sans-serif;
        font-size: 17px;
        font-style: normal;
        font-weight: 700;
        line-height: 1em;
        letter-spacing: 0.2px;
    }

    .review-desc {
        overflow: hidden;
        color: #6B7280;
        text-overflow: ellipsis;
        font-family: "SVN Omnes", Sans-serif;
        font-size: 11px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.16px;
    }

    .review-swiper{
        height: 150px;
    }

}

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

    .review-swiper{
        
    }
    .review-swiper-pagination .swiper-pagination-bullets.swiper-pagination-horizontal{
        bottom: 0px;
    }
    .review-container {
        align-items: flex-start;
        gap: 12px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .review-item {
        display: flex;
        align-items: center;
        flex: 1 0 0;
        border-radius: 16px;
        background: #FFF;
        box-shadow: 0px 20px 25px -5px rgba(16, 24, 40, 0.02), 0px 8px 10px -6px rgba(16, 24, 40, 0.05);
    }

    .review-item .review-image {
        width: 120px;
        align-self: stretch;
        object-fit: cover;
        border-radius: 16px 0 0 16px;
    }

    .review-rating-icon{
        width: 100%;
        height: 16px;
        object-fit: cover;
    }
    .review-content {
        display: flex;
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        flex: 1 0 0;
    }

    .review-title {
        color: #111827;
        font-family: "SVN Omnes", Sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.16px;
    }

    .review-desc {
        color:#6B7280;
        font-family: "SVN Omnes", Sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.14px;
    }
}