body, html {
    margin: 0 auto;
    color: #ffffff;
    font-family: 'Switzer', sans-serif;

    width: 100%;
    height: 100%;
}

.wrap-bg.with-from {
    background-image: none;
    background-color: #0B0F10;
}
.wrap-bg {
    background-image: url("./img/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;

    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;

    width: 100%;
    height: 100%;
}

.container {
    max-width: 1356px;
    margin: 0 auto;

    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-content: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    height: 100%;
    width: 100%;
}

.header {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-content: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    padding-top: 15px;
    padding-bottom: 10px;

    border-bottom: 1px solid rgba(255,255,255,0.2);

    order: 0;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    align-self: auto;
}

.header .logo {
    background-image: url("./img/logo-syn.svg");
    background-size: 100%;
    width: 100px;
    height: 32px;
    order: 0;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    align-self: auto;
}

.header .contact-us {
    order: 1;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    align-self: auto;
    width: 152px;
}

.header .contact-us button.btn-contact-us {
    background-color: #0C1011;
    color: #fff;
    font-family: 'Switzer', sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    width: 152px;
    height: 36px;
    border: 0;
    cursor: pointer;
}

.header .contact-us .close {
    background-image: url(./img/close.svg);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    width: 152px;
    height: 36px;
    background-position: right;
}

.body {
    order: 0;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: auto;
    align-self: auto;
    font-size: 91.69px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.container > .form {
    order: 0;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: auto;
    align-self: auto;

    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.container > .form .sub-header {
    order: 0;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: stretch;
    align-self: stretch;
    font-size: 40px;
    font-weight: 500;
    margin-top: 32px;
    margin-bottom: 32px;
}

.container > .form .image-wrap {
    order: 0;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: stretch;
    align-self: stretch;

    background-image: url("./img/contact-form-img.jpg");
    background-size: cover;
    background-repeat: no-repeat;

    height: 182px;
}

.container > .form .form-wrap {
    order: 0;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: stretch;
    align-self: stretch;

    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    align-items: flex-start;

    margin-top: 30px;
}
.container > .form .form-wrap .form-information {
    order: 0;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: stretch;
    align-self: stretch;
    width: 50%;

    font-size: 40px;
    font-weight: 500;
}
.container > .form .form-wrap .form-data {
    order: 0;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: stretch;
    align-self: stretch;
    width: 50%;
}

.container > .form .form-wrap .form-data .form-data-fill {
    text-align: right;
    width: 75%;
    margin-left: 25%;
}

.container > .form .form-wrap .form-data .form-data-fill .submit-wrap {
    text-align: left;
    margin-top: 32px;
}
.container > .form .form-wrap .form-data .form-data-fill .submit-wrap button {
    width: 126px;
    height: 48px;
    text-align: center;
    color: #1A1A1F;
    background-color: #FFFFFF;
    border: 0;
    font-size: 14px;
    font-family: 'Switzer', sans-serif;
    font-weight: 600;
}
.container > .form .form-wrap .form-data .form-data-fill .input-group {
    text-align: left;
    margin-bottom: 16px;
}

.container > .form .form-wrap .form-data .form-data-fill .input-group label {
    display: block;
}
.container > .form .form-wrap .form-data .form-data-fill .input-group input::placeholder {
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
}
.container > .form .form-wrap .form-data .form-data-fill .input-group input.error {
    border-bottom: 1px solid #f00;
}
.container > .form .form-wrap .form-data .form-data-fill .input-group input {
    display: block;
    background-color: #0B0F10;
    border: 0;
    width: 100%;
    height: 56px;
    color: #fff;
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    padding-left: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer {
    order: 0;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    align-self: auto;
}

.footer .footer-logo-row {
    padding-bottom: 23px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 16px;
}

.footer .footer-logo-row .footer-logo {
    width: 22px;
    height: 22px;
    background-image: url("./img/sm-logo-1.svg");
    background-size: 100%;
}

.footer-copyright {
    margin-bottom: 48px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-content: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
}

.footer-copyright .text {
    order: 0;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: auto;
    align-self: auto;
    text-align: left;
    font-weight: 300;
}
.footer-copyright .under-construction {
    order: 0;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: auto;
    align-self: auto;
    text-align: right;
    font-weight: 300;
    font-size: 17px;
}

.footer-copyright .under-construction .under-construction-logo {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url("./img/loading.svg");
    background-size: 100%;
    font-size: 17px;
}

.footer-copyright .under-construction .label {
    line-height: 22px;
    display: inline-block;
    position: relative;
    bottom: 5px;
    padding-left: 5px;
}

.wrap-bg.with-from .footer-copyright {
    display: none;
}

@media (max-width:1356px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .body {
        font-size: 43px;
    }

    .header {
        border-bottom: none;
    }

    .footer-copyright {
        flex-direction: column;
    }

    .footer-copyright .under-construction {
        text-align: left;
        margin-top: 16px;
    }

    .container > .form .form-wrap {
        flex-direction: column;
    }

    .container > .form .form-wrap .form-information,
    .container > .form .form-wrap .form-data
    {
        width: 100%;
    }

    .container > .form .form-wrap .form-data .form-data-fill {
        width: 100%;
        margin-left: 0;
    }

    .container > .form {
        margin-bottom: 16px;
    }

    .wrap-bg.with-from .footer {
        display: none;
    }
}