





.vacancies {
    max-width: 1152px;
    margin: 0 auto;

    /* padding-left: 348px;
    box-sizing: content-box; */
}

.vacancies__title {
    color: #333;
    font-size: 32px;
    font-weight: 500;
    line-height: 46px;
    margin: 0;
}

.vacancies__subtitle {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.32px;
    margin: 24px 0 0;
}

.vacancies__form-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #003AEF;
    border-radius: 3px;
    margin-top: 37px;
}

.vacancies__form-title {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.36px;
    margin: 0;
}

.vacancies__form {
    display: flex;
    flex-direction: column;
}

.vacancies__inputs-row {
    display: flex;
}

.vacancies__form .form-group {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.vacancies__inputs-row .form-group {
    flex: 1 0 0;
}

.vacancies__inputs-row .form-group:nth-child(n+2) {
    margin-left: 32px;
}

.vacancies__form .form-group label.font_13 {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.28px;
}

.vacancies__form .form-group .input {
    margin-top: 16px;
}

.vacancies__form .form-group .input input {
    height: 44px;
    background-color: white;
    border-radius: 4px;
    padding: 11px 16px;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.28px;
    color: black;
    width: 100%;
}

.vacancies__form .form-group .input input::placeholder {
    color: rgba(0, 0, 0, 0.40);
}

.vacancies__inputs-row .form-group .input input:focus {
    outline: none;
}

.vacancies__form .form-group .input textarea {
    height: 103px;
    background-color: white;
    border-radius: 4px;
    padding: 11px 16px;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.28px;
    color: black;
    width: 100%;
    resize: none;
    font-family: TT Norms Pro;
}

.vacancies__form .form-group .input textarea:focus {
    outline: none;
}

.vacancies__form .form-group .input textarea::placeholder {
    color: rgba(0, 0, 0, 0.40);
}

.vacancies__form .form-group.file .label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.vacancies__form .form-group.file .label span {
    color: #FFF;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.28px;
    text-decoration: underline;
    margin-left: 10px;
}

.vacancies__form .form-group.file .label span:hover {
    text-decoration: none;
}

.vacancies__form .form-footer {
    display: flex !important;
    align-items: center;
    margin-top: 40px;
}

.vacancies__form .form-footer .button-submit {
    max-width: 240px;
    width: 100%;
    padding: 10px;
    color: #003AEF;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    border-radius: 4px;
    background: white;
    border: 1px solid white;
}

.vacancies__form .form-footer .button-submit:hover {
    background: #003AEF;
    color: white;
}

.vacancies__form .form-footer .form-checkbox {
    margin-left: 33px;
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 0;
}

.vacancies__form .form-footer .form-checkbox__input {
    height: 24px;
    border-radius: 4px;
    background: white;
    visibility: hidden;
    width: 0;
}

.vacancies__form .form-footer .form-checkbox__label {
    color: #FFF;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.28px;
    padding: 0 0 0 40px;
    min-height: 24px;
    position: relative;
    display: flex;
    align-items: center;
}

.vacancies__form .form-footer .form-checkbox__label a {
    color: white;
    text-decoration: none;
}

.vacancies__form .form-footer .form-checkbox__label a:hover {
    opacity: .8;
}

.vacancies__form .form-checkbox__box {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: white;
    min-width: 24px;
    position: absolute;
    left: 0;
    cursor: pointer;
}

.vacancies__form .form-checkbox__input:checked+.form-checkbox__label .form-checkbox__box {
    border: 8px solid #003AEF;
    background-color: #003AEF;
}

.vacancies__form .form-checkbox__input:checked+.form-checkbox__label .form-checkbox__box:before {
    transform: rotate(45deg);
    position: absolute;
    left: -2px;
    top: -4px;
    width: 4px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    content: "";
    box-sizing: content-box;
}

@media (max-width: 1170px) {
    .vacancies__inputs-row {
        flex-direction: column;
    }

    .vacancies__inputs-row .form-group:nth-child(n+2) {
        margin-left: 0;
    }
}

@media (max-width: 900px) {
    .vacancies__form .form-footer {
        flex-direction: column-reverse;
        margin-top: 30px;
        align-items: flex-start;
    }

    .vacancies__form .form-footer .form-checkbox {
        margin-left: 0;
    }

    .vacancies__form .form-footer .button-submit {
        margin-top: 33px;
    }
}