/* Блок Помощи */
.help {
    padding: 100px 120px;

    display: flex;
    flex-direction: column;

    gap: 100px;
    position: relative;
}

.help-title {
    font-size: 64px;
    line-height: 110%;
    color: var(--color-foreground-primary);
    font-weight: 500;
    letter-spacing: -0.3px;

    text-transform: lowercase;

    width: 70%;
}

.help-main-block {
    display: flex;
    justify-content: space-between;
}

.help-main-block-form {
    width: 558px;
}

.help-main-block-img {
    width: 265px;
    height: 253px;

    align-self: end;
}

.help-main-block-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.form-message {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #F1ECE5;  
    padding: 0 20px;  

    display: none;
}

.form-message-block {
    display: flex;
    justify-content: center;
    padding: 100px 5.208vw;
    width: 100%;
    height: fit-content;
    border-top: 1px solid var(--color-foreground-primary);
    border-bottom: 1px solid var(--color-foreground-primary);
    text-align: center;
}

.form-message-t-block {
    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: center;
}

.form-message-text {
    font-size: 64px;
    line-height: 110%;
    color: var(--color-foreground-primary);
    font-weight: 500;
    text-transform: lowercase;
}

.form-message-text-min {
    font-size: 24px;
    line-height: 100%;
    color: var(--color-foreground-primary);
    font-weight: 500;
}

.form-message-close {
    width: 52px;
    height: 52px;

    position: absolute;
    top: 32px;
    right: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.form-message-close img {
    width: 27.33px;
    height: 27.33px;

    object-fit: contain;
}


@media screen and (max-width: 1575px) {
    /* Блок Помощи */
    .help {
        padding: 100px 70px;
    }

    .help-title {
        font-size: 48px;
    }

    .form-message-text {
        font-size: 48px;
    }
}


@media screen and (max-width: 1280px) {
    /* Блок Помощи */
    .help {
        padding: 100px 52px;
        gap: 64px;
    }

    .help-main-block-form {
        width: 447px;
    }
}

@media screen and (max-width: 1200px) {
    /* Блок Помощи */
    .help {
        padding: 80px 20px 80px 52px;

        gap: 48px;
    }

    .help-title {
        font-size: 32px;

        width: 80%;
    }

    .help-main-block-form {
        width: 357px;
    }

    .help-main-block-img {
        width: 230.05px;
        height: 220px;
    }

    .form-message-block {
        padding: 64px 5.208vw;
    }

    .form-message-text {
        font-size: 32px;
        width: 60%;
    }

    .form-message-t-block {
        gap: 24px;
    }

    .form-message-text-min {
        font-size: 18px;
        line-height: 110%;
    }

    .form-message-close {
        width: 32px;
        height: 32px;
    }

    .form-message-close img {
        width: 16.82px;
        height: 16.82px;
    }
}


@media screen and (max-width: 725px) {
    /* Блок Помощи */
    .help {
        padding: 80px 12px;

        gap: 32px;
    }

    .help-title {
        font-size: 24px;
        width: 100%;
    }

    .help-main-block-form {
        width: 100%;
    }

    .help-main-block-img {
        display: none;
    }

    .form-message {
        padding: 0 12px;
    }

    .form-message-block {
        padding: 48px 0;
    }

    .form-message-text {
        font-size: 24px;
        width: 90%;
    }

    .form-message-t-block {
        gap: 16px;
    }

    .form-message-text-min {
        font-size: 16px;
    }

    .form-message-close {
        top: 24px;
        right: 12px;
    }
}



