.reviews {
    position: relative;
    width: 100%;
    margin: 120px 0;
    z-index: 10;
}

.reviews img {
    width: 100%;
    display: flex;
    align-self: center;
}

.reviews__container-wrapper {
    overflow: hidden;
}

.reviews__container {
    position: relative;
    height: 330px;
    width: 100%;
}

.reviews .title {
    margin-bottom: 40px;
    text-align: center;
}

.reviews__list {
    position: absolute;
    left: 0;
    top: 0;
}

.reviews__animation {
    transform: translate(0%, 0%);
    animation: reviews__animation 45s linear infinite;
    will-change: transform;
}

@keyframes reviews__animation {
    from {
        transform: translate(0%, 0%);
    }

    to {
        transform: translate(-50%, 0%);
    }
}

.reviews__line {
    display: flex;
    width: max-content;
    overflow: auto;
    margin: 24px 0 0 0;
}

.reviews__block {
    background: #403c68;
    border-radius: 24px;
    padding: 24px;
    margin-left: 24px;
}

.reviews__block_1 {
    width: 455px;
}

.reviews__block_2 {
    width: 650px;
}

.reviews__block_3 {
    width: 320px;
}

.reviews__block_4 {
    width: 420px;
}

.reviews__block_5 {
    width: 348px;
}

.reviews__block_6 {
    width: 440px;
}

.reviews__block_7 {
    width: 362px;
}

.reviews__block_8 {
    width: 467px;
}

.reviews__block_9 {
    width: 375px;
}

.reviews__block_10 {
    width: 276px;
}

.reviews__block_11 {
    width: 470px;
}

.reviews__block_12 {
    width: 270px;
}

.reviews__block_13 {
    width: 317px;
}

.reviews__block_14 {
    width: 263px;
}

.reviews__block_15 {
    width: 437px;
}

.reviews__block_16 {
    width: 312px;
}

.reviews__block_17 {
    width: 381px;
}

.reviews__block_18 {
    width: 289px;
}

.reviews__name {
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    color: #7be6e6;
}

.reviews__text {
    margin: 16px 0 0 0;
    font-size: 14px;
    line-height: 130%;
    color: #fff;
}

@media screen and (max-width: 1350px) {
    .reviews {
        margin: 0 0 80px 0;
    }

    .reviews .title {
        margin-bottom: 36px;
    }

    .reviews__container {
        transform: translate(-10%, -10%) scale(0.8);
    }
}

@media screen and (max-width: 980px) {
    .reviews {
        margin: 0;
    }

    .reviews .title {
        margin-bottom: 26px;
    }

    .reviews__container {
        transform: translate(-13%, -10%) scale(0.75);
    }
}

@media screen and (max-width: 750px) {
    .reviews .title {
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 581px) {
    .reviews .title {
        text-align: left;
    }
}

