#review-vidget-block {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.review-vidget-block__left,
.review-vidget-block__right {
    min-height: 570px;
    padding: 30px;
    border-radius: 30px;
    width: 50%;
}
.review-vidget-block__left {
    background-color: var(--third);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}
.review-vidget-block__title {
    color: var(--head-secondary);
    font-size: var(--font-size-24-36);
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 15px;
    max-width: 430px;
}
.review-vidget-block__subtitle {
    font-size: var(--font-size-16-20);
    font-weight: 400;
    line-height: 120%;
    color: var(--head-secondary);
    margin-bottom: 30px;
}
.review-vidget-block-info-blocks {
    display: flex;
    gap: 30px;
}
.review-vidget-block-info-block {
    min-height: 225px;
    background-color: var(--background-secondary);
    border: 1px solid var(--background-thirdly);
    border-radius: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}
.review-vidget-block-info-block__icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.review-vidget-block-review-text__wrapper {
    min-width: 190px;
}
.review-vidget-block-info-block__title {
    color: var(--head-primary);
    font-size: var(--font-size-18-26);
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 10px;
}
.review-vidget-block-info-block__text {
    font-size: var(--font-size-16-20);
    font-weight: 400;
    line-height: 120%;
    color: var(--main-text-secondary);
}
.review-vidget-block__right {
    background-color: var(--background-secondary);
    border: 1px solid var(--background-thirdly);
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.review-vidget-block-review-text__title {
    font-size: var(--font-size-24-36);
    font-weight: 500;
    line-height: 100%;
    color: var(--head-primary);
    margin-bottom: 30px;
}
.review-vidget-block-review-text__text {
    color: var(--main-text-primary);
    font-size: var(--font-size-16-20);
    font-weight: 400;
    line-height: 120%;
}
.review-vidget {
    max-width: 360px;
    min-width: 320px;
    width: 100%;
}
.review-vidget > div {
    width: 100% !important;
    height: 100% !important;
}
@media (max-width: 1200px) {
    #review-vidget-block {
        flex-direction: column;
        gap: 10px;
    }
    .review-vidget-block__left,
    .review-vidget-block__right {
        width: 100%;
        min-height: 470px;
    }
    .review-vidget {
        max-width: 100%;
        min-height: 600px;
    }
}
@media (max-width: 1024px) {
    .review-vidget-block__left {
        min-height: 400px;
    }
    .review-vidget-block-info-block {
        min-height: 150px;
        width: 100%;
      }
    .review-vidget-block-info-blocks {
        gap: 10px;
    }
    .review-vidget-block-info-block {
        padding: 15px;
    }
    .review-vidget-block__left,
    .review-vidget-block__right {
        padding: 15px;
    }
    .review-vidget > div {
        height: 600px !important;
    }
    .review-vidget-block-review-text__title {
        margin-bottom: 10px;
    }
    .review-vidget-block__subtitle {
        margin-bottom: 15px;
    }
    .review-vidget {
        min-width: 100%;
    }
}
@media (max-width: 768px) {
    .review-vidget-block__right {
        flex-direction: column;
        gap: 10px;
    }
    .review-vidget-block-info-blocks {
        flex-direction: column;
    }
}