.contact-us {
    padding-top: 124px;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.contact-us .form {
    max-width: 544px;
    margin: 64px auto 0;
    display: grid;
    grid-gap: 24px;
}

.contact-us .form .field {
    display: flex;
    flex-flow: column;
    align-items: baseline;
}

.contact-us .form .field label {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #4E535C;
    margin-bottom: 8px;
}

.contact-us .form .field textarea {
    min-height: 96px;
    max-width: 544px;
}

.contact-us .form .field input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-us .form .field textarea:hover,
.contact-us .form .field input:hover,
.contact-us .form .field textarea:focus,
.contact-us .form .field input:focus {
    border: 1px solid #939CAD;
}

.contact-us .form .field textarea,
.contact-us .form .field input {
    outline: none;
    padding: 12px 16px;
    width: 100%;
    border: 1px solid #C2CFE6;
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
}

.contact-us .form .field textarea::placeholder,
.contact-us .form .field input::placeholder {
    font-size: 16px;
    line-height: 24px;
    color: #C2CFE6;
}

.contact-us .form .submit {
    color: #fff;
    outline: none;
    border: none;
    width: 100%;
    cursor: pointer;
}


@media (max-width: 1184px) {
    .contact-us {
        margin: 0 32px;
        max-width: 100%;
    }
}

@media (max-width: 769px) {
    .questions .question {
        padding: 16px;
    }
}

