.contacts-form {
    width: 100%;
}
.contacts-form__body {
    display: flex;
    margin: 40px  0;
}
.contacts-form__wrap {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contacts-form__subtitle,
.contacts-form__title {
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
}
.contacts-form__title {
    font-size: 54px;
    line-height: 100px;
    letter-spacing: -2px;
    font-weight: 500;
    color: #00549b;
}
.contacts-form__subtitle {
    font-size: 36px;
    line-height: 54px;
    letter-spacing: -1px;
    font-weight: 500;
    color: #f28c1c;
}
.contacts-form__pic {
    margin-top: 48px;
    width: 100%;
    height: 396px;
    overflow: hidden;
    position: relative;
}
.contacts-form__pic > img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 0 50%;
    object-position: 0 50%;
}
.contacts-form__form {
    background: #fff;
    border-radius: 60px;
    padding: 56px 44px 80px;
}
.contacts-form__field {
    margin-bottom: 20px;
}
.contacts-form__field--yandex {
    padding: 15px;
    border: 1px solid rgba(182, 182, 182, 0.6980392157);
    border-radius: 12px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
.contacts-form__field > label {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 500;
}
.contacts-form__field > input {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid rgba(182, 182, 182, 0.6980392157);
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}

.contacts-form__field > input:focus-visible {
    border: 1px solid rgba(182, 182, 182, 0.6980392157) !important;
}
.contacts-form__field > input::-moz-placeholder {
    color: grey;
}
.contacts-form__field > input::placeholder {
    color: grey;
}
.contacts-form__submit {
    width: 100%;
    display: flex;
    padding: 15px 25px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #f28c1c;
    transition: background 0.3s ease-out;
    margin-top: 28px;
}
.contacts-form__submit > span {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-right: 8px;
}
.contacts-form__submit > svg {
    transition: transform 0.3s ease-out;
}
.contacts-form__submit:hover {
    background: #a05c13;
}
.contacts-form__submit:hover > svg {
    transform: rotate(45deg);
}
.contacts-form__submit:disabled {
    background: grey;
    pointer-events: none;
}
.checkbox-field {
    --checkbox-size: 20px;
    --checkbox-border-width: 2px;
    --checkbox-border-color: #00549b;
    --checkbox-border-radius: 6px;
    --checkbox-bg: #fff;
    --checkbox-bg-active: #fff;
    --checkbox-mark-link: url("../img/contact_form/checkbox_mark.svg");
    --checkbox-mark-size: 70%;
    --checkbox-label-color: #7b7b7b;
    --checkbox-label-padding: 10px;
    --checkbox-vertical-position: 1px;
    --center: calc(50% - calc(var(--checkbox-size) / 2));
    margin-top: 20px;
}
.checkbox-field > label {
    display: inline-block;
    position: relative;
    padding-left: calc(var(--checkbox-size) + var(--checkbox-label-padding));
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 18px;
    line-height: 24px;
    color: var(--checkbox-label-color);
    pointer-events: none;
}
.checkbox-field > label::after,
.checkbox-field > label::before {
    content: "";
    width: var(--checkbox-size);
    height: var(--checkbox-size);
    position: absolute;
    left: 0;
    top: var(--checkbox-vertical-position);
    transition: all 0.2s ease-out;
    box-sizing: border-box;
}
.checkbox-field > label::before {
    border-radius: var(--checkbox-border-radius);
    border: var(--checkbox-border-width) solid var(--checkbox-border-color);
    background: var(--checkbox-bg);
    cursor: pointer;
    pointer-events: all;
}
.checkbox-field > label::after {
    background: var(--checkbox-mark-link) 50% 50% / var(--checkbox-mark-size)
    var(--checkbox-mark-size) no-repeat;
    opacity: 0;
}
.checkbox-field > label > a {
    pointer-events: all;
    font-weight: 500;
    color: #7b7b7b;
    position: relative;
    transition: color 0.3s ease-out;
    text-decoration: none;
}
.checkbox-field > label > a::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -2px;
    border-top: 1px solid #7b7b7b;
    transition: border-color 0.3s ease-out;
}
.checkbox-field > label > a:hover {
    color: #000;
}
.checkbox-field > label > a:hover::after {
    border-color: #000;
}
.checkbox-field > input[type="checkbox"] {
    display: none;
}
.checkbox-field > input[type="checkbox"]:checked + label::before {
    background: var(--checkbox-bg-active);
}
.checkbox-field > input[type="checkbox"]:checked + label::after {
    opacity: 1;
}
.checkbox-field > input[type="checkbox"]:disabled + label::before {
    border: 1px solid var(--checkbox-border-color);
    background: #d3d3d3;
}

.form-ty {
    border-radius: 60px;
    background: #fff;
    padding: 64px 42px;
    display: none;
    margin: 40px 0;
}
.form-ty__body {
    display: flex;
    flex-wrap: wrap;
}
.form-ty__wrap {
    width: 50%;
}
.form-ty__subtitle,
.form-ty__title {
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
}
.form-ty__title {
    color: #00549b;
    font-size: 78px;
    line-height: 64px;
    letter-spacing: -4px;
    font-weight: 500;
    white-space: nowrap;
}
.form-ty__title > span {
    color: #f28c1c;
}
.form-ty__subtitle {
    color: #f28c1c;
    font-size: 36px;
    line-height: 54px;
    letter-spacing: -2px;
    font-weight: 500;
    margin-left: 40px;
    margin-top: -10px;
}
.form-ty__btn {
    width: 100%;
    display: flex;
    padding: 15px 25px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #00549b;
    transition: background 0.3s ease-out;
}
.form-ty__btn > span {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-right: 8px;
}
.form-ty__btn > svg {
    transition: transform 0.3s ease-out;
}
.form-ty__btn:hover {
    background: #003968;
}
.form-ty__btn:hover > svg {
    transform: rotate(45deg);
}
@media screen and (max-width: 1460px) {
    .form-ty__body {
        gap: 40px;
    }
    .form-ty__wrap {
        width: 100%;
    }
    .form-ty__subtitle {
        margin: 0;
    }
}

@media screen and (max-width: 1199px) {
    .contacts-form__body {
        flex-direction: column;
        margin: 20px 0;
    }
    .form-ty {
        margin: 20px 0;
    }
    .contacts-form__wrap {
        width: 100%;
    }
    .contacts-form__title {
        font-size: 38px;
        line-height: 80px;
    }
    .contacts-form__subtitle {
        font-size: 26px;
        line-height: 38px;
    }
    .contacts-form__pic {
        height: 196px;
        margin-top: 12px;
    }

    .contacts-form__body .smart-captcha {
        min-width: 200px;
    }
}

@media screen and (max-width: 991px) {
    .form-ty {
        padding: 44px 16px;
    }
    .form-ty__body {
        gap: 20px;
    }
    .form-ty__title {
        font-size: 42px;
        line-height: 48px;
        letter-spacing: -2px;
    }
    .form-ty__subtitle {
        font-size: 26px;
        line-height: 32px;
        letter-spacing: -1px;
    }
}

@media screen and (max-width: 420px) {
    .form-ty__title {
        font-size: 38px;
    }
    .form-ty__subtitle {
        font-size: 24px;
    }
}

