.catMain {
    position: relative;
    height: 390px;
    overflow: hidden
}

.catMain__bgWrap {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.catMain__bgWrap img {
    position: relative;
    z-index: 1
}

.catMain__bgWrap::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/gradient-banner.png) 0 0/cover;
    z-index: 2;
    width: 100%;
    height: 100%
}

.catMain__wrap {
    color: #fff;
    position: relative;
    z-index: 3;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

.revs {
    padding-top: 100px;
    padding-bottom: 300px;
    position: relative;
    z-index: 1
}

.revs__swiper {
    padding: 20px
}

.revs__swiper-slide {
    /* display: grid; */
    margin-bottom: 30px;
    padding: 30px;

    /* grid-template-columns: 1fr 2fr; */
    -webkit-box-shadow: 0 0 20px 0 rgba(47, 47, 47, .1);
    box-shadow: 0 0 20px 0 rgba(47, 47, 47, .1);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.revs__img-wrap{
    min-width: 100px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
}
.revs__img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.revs__content {
}

.revs__card-title {
    font-size: 24px;
    font-weight: 600
}

.revs__card-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px
}

.revs__addRev {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
	cursor:pointer;
}

@media only screen and (max-width: 767px) {
    .revs__swiper-slide {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .revs {
        padding-bottom: 40px;
    }

    .revs__img-wrap img {
        width: 100%;
    }
    .revs__img-wrap{
        margin-bottom: 20px;
        margin-right: 0;
    }
}