#content {
    position: relative;
    overflow: hidden;
}

.home_page {
    background: #000;
}

.banner {
    position: relative;
    color: #fff;
    /*overflow: hidden;*/
    z-index: 3;
}

/*.video-wrap::before,*/
/*.video-wrap::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 50%;*/
/*    background: #000;*/
/*    transition: height 800ms cubic-bezier(0, 0, 0.2, 1);*/
/*}*/

/*.video-wrap::before {*/
/*    top: 0;*/
/*}*/

/*.video-wrap::after {*/
/*    bottom: 0;*/
/*}*/
/*.banner.is-loaded .video-wrap::before,*/
/*.banner.is-loaded .video-wrap::after {*/
/*    height: 0;*/
/*}*/

.title-animate {
    opacity: 0;
}

.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.banner video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.banner .container {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.banner__headline--title {
    margin-bottom: 16px;
}

.banner .banner__headline .btn {
    margin-top: 40px;
}

.info_box_hero {
    padding: 27px 19px;
    color: var(--color-1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.headline-sc[data-order="1"] {
    background: var(--color-1);
}

.headline-sc {
    position: relative;
    padding: 69px 0 62px;
    color: #fff;
    z-index: 1;
}

.headline-sc .container {
    display: flex;
    flex-direction: column;
}

.headline-sc[data-order="2"] {
    color:  var(--color-1);
    background: var(--color-2);
}

.site-color-line {
    display: flex;
}

.headline-sc .site-color-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.site-color-line span {
    height: 10px;
    display: flex;
}

.site-color-line span:nth-child(1) {
    width: 46.5%;
    border-bottom: 10px solid var(--color-4);
    border-right: 17px solid transparent;
    background: #fff;
}

.site-color-line span:nth-child(2) {
    width: 27.5%;
    background: var(--color-5);
    border-bottom: 10px solid #fff;
    border-right: 20px solid transparent;
}

.site-color-line span:nth-child(3) {
    width: 26%;
    background: var(--color-5);
}

.contact-form {
    position: relative;
    padding: 57px 0 36px;
    color: #fff;
    z-index: 1;
}

.contact-form__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: -1;
}

.contact-form .container {
    max-width: 1318px;
    display: flex;
    flex-direction: column;
}

.form-wrap .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 19px;
}

.form-wrap .gform_wrapper.gravity-theme .gfield_label {
    font-weight: 300;
}

.form-wrap .gform_wrapper.gravity-theme .gfield {
    position: relative;
}

/*.form-wrap .gfield.gfield--type-text .ginput_container,*/
/*.form-wrap .gfield.gfield--type-phone .ginput_container,*/
/*.form-wrap .gfield.gfield--type-email .ginput_container {*/
/*    width: 200px;*/
/*}*/

.form-wrap .gform_wrapper.gravity-theme .gfield .ginput_container textarea {
    height: 91px;
}

.form-wrap .gform_wrapper.gravity-theme .gfield .ginput_container textarea,
.form-wrap .gform_wrapper.gravity-theme .gfield .ginput_container input {
    font: 300 16px 'Poppins', sans-serif;
    padding: 2px 0 5px 4px;
    color: #fff;
    border: 0;
    border-bottom: 1px solid rgba(164, 164, 164, 1);
    background: transparent;
}

.form-wrap .gform_wrapper.gravity-theme .gfield .ginput_container textarea:focus,
.form-wrap .gform_wrapper.gravity-theme .gfield .ginput_container input:focus {
    outline: none;
    box-shadow: none;
}

.form-wrap .gform_wrapper.gravity-theme .gfield .ginput_container textarea::placeholder,
.form-wrap .gform_wrapper.gravity-theme .gfield input::placeholder {
    color: #fff;
}

.form-wrap .gfield_checkbox .gchoice {
    position: relative;
}

.form-wrap .gfield_checkbox .gchoice .gfield-choice-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.form-wrap .gfield_checkbox .gchoice .gform-field-label {
    position: relative;
    max-width: 260px;
    padding-left: 33px;
    font-size: 10px;
    line-height: 140%;
    cursor: pointer;
}

.form-wrap .gfield_checkbox .gchoice .gform-field-label::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 17px;
    height: 17px;
    border: 1px solid #fff;
    border-radius: 2px;
    background: #000;
    transition: 0.3s all;
}

.form-wrap .gfield_checkbox .gchoice .gfield-choice-input:checked ~ .gform-field-label::before {
    background: #fff;
}

.form-wrap .gfield_checkbox .gchoice .gform-field-label::after {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 5px;
    height: 10px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    border-radius: 0;
    background: transparent;
    transform: rotate(45deg);
    transition: 0.3s all;
}

.form-wrap .gfield_checkbox .gchoice .gfield-choice-input:checked ~ .gform-field-label::after {
    opacity: 1;
    visibility: visible;
}

.form-wrap .gfield--type-submit {
    position: relative;
    max-width: 206px;
    width: 206px;
    border: 1px solid #fff;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.form-wrap .gfield--type-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    transition: 0.3s all;
    z-index: -1;
}

.form-wrap .gfield--type-submit:hover::before {
    width: 100%;
}

.form-wrap .gform_wrapper.gravity-theme #field_submit input.gform-button {
    width: 100%;
    margin: 0;
    padding: 12px;
    font: 400 14px 'Poppins', sans-serif;
    color: #fff;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: 0.3s all;
}

.form-wrap .gform_wrapper.gravity-theme #field_submit:hover input.gform-button {
    color: #000;
}

.form-wrap .gform_wrapper.gravity-theme .gfield_validation_message,
.form-wrap .gform_wrapper.gravity-theme .validation_message {
    position: absolute;
    left: 0;
    bottom: -17px;
    margin: 0;
    padding: 0;
    font: 300 11px 'Poppins', sans-serif;
    line-height: 100%;
    color: rgba(237, 0, 0, 1);
    border: 0;
    background: transparent;
}

.form-wrap .gform_wrapper.gravity-theme .gfield_required .gfield_required_text,
.form-wrap .gform_wrapper.gravity-theme .gform-loader,
.form-wrap .gform_validation_errors {
    display: none !important;
}

.form-wrap .gform_wrapper.gravity-theme .gform_footer {
    position: relative;
    width: 100%;
    margin: 67px 0 0;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 55px;
    overflow: hidden;
    z-index: 1;
}

.form-wrap .gform_wrapper.gravity-theme .gform_footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 0;
    height: calc(100% + 2px);
    border-radius: 55px;
    background: #fff;
    transition: 0.3s all;
    z-index: -1;
}

.form-wrap .gform_wrapper.gravity-theme .gform_footer:hover::before {
    width: calc(100% + 2px);
}

.form-wrap .gform_wrapper.gravity-theme .gform_footer .gform_button {
    width: 100%;
    margin: 0;
    padding: 8px 10px 9px;
    font: 400 14px 'Poppins', sans-serif;
    color: #fff;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: 0.3s all;
}

.form-wrap .gform_wrapper.gravity-theme .gform_footer .gform_button:hover {
    color: var(--color-1);
}

@media (min-width: 992px) {
    .banner {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    .banner .container {
        min-height: inherit;
        flex-direction: row;
        justify-content: space-between;
        padding: 100px 15px 67px;
    }

    .banner .banner__headline {
        width: 45%;
        margin: auto 0;
    }

    .banner .info_box_hero {
        width: 41%;
        margin-top: auto;
        padding: 63px 46px 61px;
    }

    .banner__headline--title {
        margin-bottom: 28px;
    }

    .banner .banner__headline .btn {
        margin-top: 51px;
    }

    .info_box_hero--title {
        margin-bottom: 22px;
    }

    .info_box_hero--description {
        font-size: 16px;
        line-height: 135%;
    }

    .info_box_hero .btn {
        margin-top: 23px;
    }

    .headline-sc {
        padding: 172px 0 172px;
    }

    .headline-sc[data-order="1"] {
        padding-top: 215px;
    }

    .headline-sc .container {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .headline-sc .headline_col:nth-child(1) {
        width: 61%;
    }

    .headline-sc .headline_col:nth-child(2) {
        width: 35%;
    }

    .site-color-line span {
        height: 20px;
    }

    .site-color-line span:nth-child(1) {
        width: 68.5%;
        border-bottom: 20px solid var(--color-4);
    }

    .site-color-line span:nth-child(2) {
        width: 16.5%;
        border-bottom: 20px solid #fff;
    }

    .site-color-line span:nth-child(3) {
        width: 15%;
    }

    .contact-form {
        padding: 118px 0 66px;
    }

    .contact-form .container {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-form__col:nth-child(1) {
        width: 37%;
    }

    .contact-form__col:nth-child(2) {
        width: 45.2%;
    }

    .contact-form .headline__title {
        margin-bottom: 18px;
    }

    .form-wrap .gform_wrapper.gravity-theme .gform_fields {
        grid-row-gap: 26px;
    }

    .form-wrap .gform_wrapper.gravity-theme .gfield_validation_message,
    .form-wrap .gform_wrapper.gravity-theme .validation_message {
        bottom: -15px;
    }

    .form-wrap .gfield--type-submit {
        margin: 8px 35px 0 auto;
    }

    .form-wrap .gform_wrapper.gravity-theme .gfield .ginput_container textarea,
    .form-wrap .gform_wrapper.gravity-theme .gfield .ginput_container input {
        padding: 2px 0 8px 13px;
        font-size: 16px;
    }

    .form-wrap .gform_wrapper.gravity-theme .gfield .ginput_container textarea {
        height: 78px;
    }

    .form-wrap .gform_wrapper.gravity-theme .gform_footer {
        width: 206px;
        margin: 42px 0 0;
    }

    .form-wrap .gform_wrapper.gravity-theme .gform_footer .gform_button {
        padding: 12px 10px;
    }
}

@media (max-width: 991px) {
    .banner {
        padding: 138px 0 59px;
    }

    .banner__headline {
        text-align: center;
    }

    .info_box_hero {
        max-width: 394px;
        width: 100%;
        margin: 54px auto 0;
    }

    .info_box_hero--title {
        margin-bottom: 18px;
        font-size: 32px;
        line-height: 111%;
    }

    .info_box_hero--description {
        max-width: 278px;
    }

    .info_box_hero .btn {
        max-width: 227px;
        margin: 18px auto 0;
        display: block;
    }

    .headline--title,
    .headline__title  {
        margin-bottom: 27px;
    }

    .form-wrap {
        margin-top: 68px;
    }
}