
.help-form-section {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}
.help-form-section__content {
    grid-column: 1 / span 6;
}
.help-form-section__content-title {
    color: var(--White, #FFF);
}
.help-form-section__content-subtitle {
    color: var(--White, #FFF);
    font-feature-settings: 'liga' off, 'clig' off;
    margin-top: 20px;
}
.help-form {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}
.help-form__policy {
    color: white;
    display: flex;
    align-items: center;
}
.help-form__btn {
    height: 56px;
}
.help-form__img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 100%;
    z-index: 1;
}

@media (max-width: 1439px) {
    .help-form-section {
        padding: 140px 0;
        height: 823px;
        overflow: hidden;
    }
}
@media (max-width: 1023px) {
    .help-form-section {
        padding: 80px 0;
        height: 916px;
    }
    .help-form-section_type2 {
        height: 1016px;
    }
    .help-form {
        grid-template-columns: 1fr;
    }
    .help-form__img {
        width: 100%;
    }
    .help-form__img img {
        min-width: 100%;
        object-fit: cover;
    }
}