.form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form,
.form .form-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99;
    top: 0;
    left: 0;
}

.form .form-bg {
    background: #000000;
    z-index: 1;
    opacity: 0.8;
}

.form .form-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 2;
    padding: 0;
    background: #ffffff;
}

.form .form-wrapper .form-desc {
    padding: 40px;
    background: #343434;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
    max-width: 390px;
}

.form .form-wrapper .form-desc img {
    max-width: 250px;
}

.form .form-wrapper .form-desc .start {
    font-size: 18px;
    text-decoration: underline;
    margin: 20px 0 0;
}

.form .form-wrapper .form-desc .text-desc {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 24px;
    font-weight: 300;
    margin: 40px 0;
}

.form .form-wrapper .form-desc .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-weight: 500;
    font-size: 12px;
    margin: 0;
}

.form .form-wrapper .form-desc .phone a {
    font-weight: 100;
}

.form .form-wrapper .main-form {
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.form .form-wrapper h4 {
    margin: 0 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 27px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form .form-wrapper h4 span {
    cursor: pointer;
    color: white;
    background: #343434;
    font-size: 10px;
    border-radius: 20px;
    min-width: 20px;
    min-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form .form-wrapper .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
    border-bottom: 1px solid #d4d4d4;
}

.form .form-wrapper .text label {
    padding: 5px;
}

.form .form-wrapper .send {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

.form .form-wrapper .send .btn {
    cursor: pointer;
}

.form .form-wrapper .send .more-text {
    font-size: 7px;
    margin: 10px 0 0;
}

@media (max-width: 1100px) {
    .form .form-wrapper .form-desc {
        display: none;
    }
    .form .form-wrapper .main-form {
        padding: 20px;
    }
}