.c-reviews{
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow-x: hidden;
}

.c-reviews .container{
    /*outline: 1px solid magenta;*/
    min-height: 400px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 0px 40px;
}

.c-reviews  .c-flex{
    display: flex;
    gap: 0;
}
.c-reviews .c-flex .c--title{
    font-size: 29px;
    line-height: 34px;
    font-weight: 700;
    color: #222;
    /*padding: 0 30px;*/

}
.c-reviews .c-flex .c-leading-cell{
    /*padding-right: 8%;*/
    position: relative;
    min-width: 130px;
    /*outline: 1px solid red;*/
}
.c-reviews .c-flex .c-leading-cell .c--title{
    position: absolute;
    top: 48px;
    width: 276px;
}

.c-reviews .c-flex .c-trailing-cell{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 45px;
    /*outline: 1px solid blue;*/
}
.c-reviews .c-flex .c-trailing-cell .c-flex-row{
    display: flex;
    flex-wrap: nowrap;
    gap: 39px;
    justify-content: center;
}

.c-reviews .c-flex .c-trailing-cell .c-flex-row .c-review-card{
    cursor: pointer;
}

.c-reviews .c-flex .c-trailing-cell .c-flex-row.first{
    padding-left: 60px;
}



.c-review-card{
    min-width: 260px;
    max-width: 320px;
    /*height: 330px;*/
    min-height: 280px;
    /*flex-shrink: 0;*/
    border-radius: 8px;
    padding: 18px 20px 18px 20px;
    position: relative;
    background: #fff;
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 51%, rgba(245, 245, 245, 1) 92%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 51%, rgba(245, 245, 245, 1) 92%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 51%, rgba(245, 245, 245, 1) 92%);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    /*gap: 12px;*/
}

.c-review-card .c-header{
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 12px;
}
.c-review-card .c-header .c--trailing-cell{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.c-review-card .profile--icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    bottom: 0px;
}

.c-review-card .lead--title{
    color: var(--mt-extended-font-color-value, #29293e);
    font-family: Poppins, 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 116%;
    letter-spacing: -0.32px;
    /*margin-bottom: 4px;*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.c-review-card .stars {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    left: -3px;
}
.c-review-card .stars img {
    width: 18px;
    height: 18px;
}

.c-review-card .text--content{
    color: var(--mt-extended-font-color-value, #29293e);
    font-family: Poppins, 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 145%;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
}

.c-reviews .m-carousel .c-review-card{
    max-width: 320px;
    min-width: 320px;
    width: 320px;
    min-height: 290px;
}

.c-reviews .m-carousel .c-review-card .text--content{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden;
}

.c-reviews .carousel-wrap {
    position: relative;
    display: none;
}
.c-reviews .m-carousel {
    min-height: 320px;
    padding: 10px 0;
}


.c-reviews .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}
.c-reviews .swiper-pagination-bullet {
    background: #ff3d00;
    opacity: .3;
}
.c-reviews .swiper-pagination-bullet-active {
    background: #ed5b17;
    opacity: 1;
}

.c-reviews .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: var(--swiper-pagination-bottom, -14px);
}

.review-popup{
    background-color: rgba(58, 58, 58, 0.48);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: none;
    opacity: 0;
    transition: opacity 250ms ease-in-out;
}

.review-popup .c-review-card .close--opt {
    width: 40px;
    height: 40px;
    position: absolute;
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    right: 0;
    top: 0;
}

.review-popup .c-review-card .close--opt .c--inner {
    border-radius: 50%;
    background: var(--mt-ref-neutral-neutral-96, #F2F4F6);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-popup .c-review-card .close--opt img {
    width: 20px !important;
    height: 20px;
    position: relative;
}

.review-popup .c-review-card{
    margin-left: auto;
    margin-right: auto;
    margin-top: 420px;
    max-width: 390px;
}

.review-popup .c-review-card .text--content{
    font-size: 15px;
    display: block;
}

@media (max-width: 1236px){
    .c-review-card{
        flex: 1;
    }
    .c-reviews .container{
        padding: 30px 18px 40px;
    }
}
@media (max-width: 1126px){
    .c-reviews .c-flex{
        flex-direction: column;
        gap: 50px;
    }
    .c-reviews .c-flex .c-leading-cell .c--title{
        position: relative;
        top: 0;
        width: auto;
        text-align: center;
    }
    .c-reviews .container {
        padding: 79px 18px 59px;
    }
}
@media (max-width: 980px){
    .c-reviews .c-flex .c-trailing-cell{
        display: none;
    }
    .c-reviews .carousel-wrap{
        display: block;
    }
    .c-reviews .c-flex{
        margin-bottom: 41px;
    }
    .c-reviews .container {
        padding: 79px 0px 59px;
    }
    .c-reviews .c-flex .c-leading-cell .c--title{
        padding-left: 20px;
        padding-right: 20px;
    }
}