.reviews-slider {
    background: var(--grey-dark);
}

.reviews-slider-slider {
    margin: 35px 0 0 -2vw;
}

.rw-slider-itemInn {
    background-color: var(--grey-color);
    width: 95%;
    height: 300px;
    float: right;
}

.rws-image {
    width: 45%;
    min-width: 45%;
    position: relative;
    overflow: hidden;
}

.rws-image picture {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.rws-image picture img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.rws-title {
    position: absolute;
    left: 10px;
    bottom: 20px;
}

.rws-name {
    font-size: 18px;
    font-weight: 600;
}

.rws-car span,
.rws-name span {
    white-space: pre-wrap;
    background-color: var(--dark-color);
    padding: 5px 10px 5px 0;
    box-shadow: -10px 0 0 #23222b;
    position: relative;
    left: 10px;
}

.rws-car {
    font-size: 13px;
    color: var(--grey-violet-color);
}

.rws-desc {
    box-sizing: border-box;
    width: 55%;
    min-width: 55%;
    padding: 30px 30px 18px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rws-desc-text {
    font-size: 13px;
    line-height: 1.8;
    font-weight: 300;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
}

.rws-desc-more a {
    font-size: 13px;
    font-weight: 600;
    color: var(--red-color);
    transition: color .3s ease;
}

.rws-desc-more a:hover {
    color: var(--white-color);
}

@media screen and (max-width: 960px) {
    .reviews-slider-slider {
        margin: 35px 0 0 0;
    }
    .rw-slider-itemInn {
        width: 100%;
        height: auto;
        float: none;
    }
    .rws-desc-text {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 560px) {
    .rw-slider-itemInn {
        display: block;
    }
    .rws-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
    .rws-desc {
        box-sizing: border-box;
        width: 100%;
        min-width: 100%;
        display: block;
    }
}