.reviews {
    background-color: #0B342F;
    width: 100%;
    box-sizing: border-box;
}

.reviews__title {
    padding-top: 58px;
    text-align: center;
}


.reviews__slider-triple {
    width: 100%;
    height: 100%;
    background: transparent;
}

.reviews__slider-triple .swiper-wrapper {
    padding: 30px 0;
}

.reviews__slider-triple .swiper-slide {
    padding: 0;
}

.reviews__three-items {
    text-align: left;
    width: 100%;
    max-width: 1178px;
    margin: 0 auto;
}

.reviews__item {
    display: flex;
    flex-grow: 1;
    flex-basis: 0;
    background: #fff;
    min-height: 225px;
    padding: 18px 23px;
    margin: 0 16px;
    float: left;
    width: calc(33% - 32px);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.07);
}

.reviews__item:nth-child(2) {
    min-height: 270px;
}

.reviews__item-avatar {
    background-size: cover;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex: 0 0 40px;
    background-color: lightgray;
}

.review__item-container {
    width: 100%;
    padding: 0 21px 0 12px;
    background-image: url('../images/home-page/slider/google-logo.png');
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: top right;
}

.review__item-header {
    display: flex;
    margin-bottom: 16px;
}

.review__item-name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-right: 7px;
    flex: 0 0 40%;
}

.review__time {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 4px;
    display: block;
    color: #000;
    opacity: 0.5;
}

.review__text {
    font-size: 15px;
    line-height: 22px;
}

.review__rating {
    display: flex;
}

.review__rating-star {
    color: lightgray;
    font-size: 20px;
}

.review__rating-star--checked {
    color: #FBBC04;
}

.reviews__slider-triple>.swiper-pagination-bullets {
    bottom: 40px;
}

.swiper-pagination-review {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #e1aba8;
    margin: 6px !important;
}

.swiper-pagination-bullet-active {
    background-color: white;
    width: 15px;
    height: 15px;
}

.reviews .swiper-button-prev-review,
.reviews .swiper-button-next-review {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    background-image: url('../images/home-page/slider/arrow-dark.png');
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 40%;
    cursor: pointer;
    z-index: 1;
}

.reviews .swiper-button-prev-review {
    left: 0;
    right: auto;
    transform: rotate(0deg);
}

.reviews .swiper-button-next-review {
    transform: rotate(180deg);
    right: 0;
    left: auto;
}

.swiper-button-next-review::after,
.swiper-button-prev-review::after {
    content: '';
}


/* =Tablets
-------- */
@media screen and (max-width: 1024px) {
    .reviews__item-avatar {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        margin-bottom: 8px;
    }

    .review__item-container {
        padding: 0;
    }

    .reviews__three-items {
        padding: 0 40px;
    }

    .reviews__item {
        flex-direction: column;
        padding: 18px 12px;
    }
}

@media screen and (max-width: 800px) {
    .reviews__item {
        flex-direction: row;
        float: none;
        width: 100%;
        margin: 0 0 16px 0;
        min-height: 60px;
    }

    .reviews__item:nth-child(2) {
        min-height: 60px;
    }

}

@media screen and (max-width: 480px) {
    .reviews__title {
        font-size: 26px;
        line-height: 32px;
        padding-top: 40px;
    }

    .reviews__three-items {
        padding: 0 20px;
    }

    .review__item-container {
        padding: 0 10px;
    }



    .swiper-button-prev-review,
    .swiper-button-next-review {
        display: none;
    }


}