#home_main_form_bg {
    width: 100%;
    position: relative;
    height: 560px;
    background-color: var(--color-dark-blue);
    margin: 100px 0 0 0;
}
.home-main-form-image-box {
    width: 766px;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-image: url(/images/callback_form_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#home_main_form_bg .c-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-dark-blue), transparent);
    z-index: 2;
}
.home-main-form-content {
    width: var(--max-content-length);
    margin: 0 0 0 calc(-1 * var(--max-content-length) / 2);
    z-index: 3;
    position: absolute;
    left: 50%;
    top: 0;
}
.home-main-form-content .header {
    font-family: var(--font-header), sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 54px;
    text-transform: uppercase;
    color: white;
    margin: 79px 0 0 0;
}
.home-main-form-content-fields {
    display: flex;
    column-gap: 24px;
    margin: 40px 0 0 0;
    width: 568px;
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: space-between;
}
.home-main-form-content-fields div {
    flex: 1;
}
.home-main-form-content-fields label {
    display: block;
    font-family: var(--font-base), sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    opacity: 0.7;
}
.home-main-form-content-fields input {
    width: 100%;
    margin: 13px 0 0 0;
    font-size: 16px;
}
.home-main-form-content .header span {
    display: block;
}
#mifFormButton {flex-basis: 100%;}
.home-main-form-button-info {
    font-family: var(--font-base), sans-serif;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    flex: unset !important;
    width: 300px;
    margin: 0 0 0 10px;
}
.home-main-form-button-info a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}
.home-main-form-button-info a:hover {
    color: var(--color-bright-cyan);
}
#mNameInput {color: rgb(170, 170, 170);}

.personal-data-notification {
    display: flex;
    flex-basis: unset !important;
    align-items: center;
    justify-content: center;
}
.personal-data-notification label {
    display: inline;
    font-family: var(--font-base), sans-serif;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    text-transform: unset;
    letter-spacing: unset;
}
.p-d-n-checkbox {
    flex: unset !important;
    width: 30px;
}
#pdn_checkbox {
    appearance: none;
    accent-color: var(--color-bright-cyan);
    width: 25px;
    height: 25px;
    cursor: pointer;
    border: 1px solid var(--color-href-on-white);
    margin: 0 !important;
    border-radius: 3px;
    position: relative;
}
#pdn_checkbox::after {
    content: "\2714";
    position: absolute;
    line-height: 25px;
    padding: 0 0 0 4px;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    font-size: 20px;
    overflow: hidden;
    box-sizing: border-box;
    color: var(--color-bright-cyan);
}
#pdn_checkbox:checked::after {
    width: 25px;
    height: 25px;
}




@media (max-width: 1040px) {
    .home-main-form-image-box {
        height: 257px;
        bottom: 0;
        top: unset;
        position: absolute;
        background-position: center;
        background-size: cover;
        width: 100%;
    }
    #home_main_form_bg .c-bg {
        width: 100%;
        height: 257px;
        background: linear-gradient(180deg, var(--color-dark-blue), transparent);
        top: unset;
        bottom: 0;
        left: 0;
    }
    .home-main-form-content {
        width: 600px;
        margin: 0 0 0 -300px;
    }
    .home-main-form-content .header {
        font-size: 40px;
        line-height: 48px;
    }
}


@media (max-width: 680px) {
    #home_main_form_bg {
        height: 832px;
        border-radius: 32px;
        overflow: hidden;
    }
    .home-main-form-content {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        left: 0;
        margin: 0;
    }
    .home-main-form-content .header {
        font-weight: 500;
        font-size: 39px;
        line-height: 42px;
        margin: 72px 0 0 0;
    }
    .home-main-form-content-fields div {
        flex: unset;
        flex-basis: 100%;
    }
    .home-main-form-content-fields {
        width: 100%;
    }
    .home-main-form-content .header span {display: none;}
}