    #reviews-block {
        width: 100%;
        padding: 20px 0;
    }

    .reviews-wrapper {
        display: flex;
        gap: 20px;
    }

    .reviews-wrapper__left {
        width: 50%;
    }

    .reviews-wrapper__right {
    width: 50%;
    position: sticky;
    top: 150px;
    height: fit-content;
    }

    .reviews-wrapper__right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    @media (max-width: 768px) {
        .reviews-wrapper {
            flex-direction: column;
        }

        .reviews-wrapper__left {
            width: 100%;
        }
        .reviews-wrapper__right{
            display: none;
        }
    }