.form-new {
    padding: 30px 40px;
    width: 100%;
    background: #f5f5f5;
    border-radius: 20px;
}

.form-new .h2 {
    margin-bottom: 30px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 35px;
    line-height: 110%;
    letter-spacing: 0.01em;
    color: var(--dark-blue);
    text-align: start;
}

.form-new .citrus-form__fields {
    width: 100%;
}

.form-new .row-ib {
    display: flex;
    gap: 20px;
    margin: 0;
    width: 100%;
}

.form-new .dept_2 {
    padding: 0;
    width: 50%;
}

.form-new .form-group {
    width: 100%;
}

.form-new .form-group:not(:last-child) {
    margin-bottom: 10px;
}

.form-new .input-container {
    width: 100%;
}

.form-new .input-container-wrapper {
    position: relative;
    width: 100%;
}

.form-new .input-container-placeholder {
    position: absolute;
    top: 50%;
    left: 20px;
    z-index: 1;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 293%;
    color: rgba(29, 46, 74, 0.7);
    transform: translateY(-50%);
    transition: top .3s, font-size .3s;
    pointer-events: none;
}

.form-new .input-container-wrapper .form-control {
    display: flex;
    align-items: center;
    padding: 15px 20px !important;
    width: 100%;
    height: 40px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 293%;
    color: rgba(29, 46, 74, 0.7);
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid transparent;
    transition: border .3s;
}

.form-new .input-container-wrapper textarea.form-control {
    height: 140px;
    resize: none;
}

.form-new .input-container-wrapper .form-control:hover,
.form-new .input-container-wrapper .form-control:focus {
    outline: none;
    border: 1px solid var(--light-blue);
}

.form-new .input-container-wrapper textarea.form-control + .input-container-placeholder {
    top: 22px;
}

.form-new .citrus-form-phone__icon {
    display: none !important;
}

.form-new .input-container-wrapper .form-control:focus + .input-container-placeholder,
.form-new .input-container-wrapper .form-control._full + .input-container-placeholder,
.form-new .citrus-form-phone__input:focus + script + .input-container-placeholder,
.form-new .citrus-form-phone__input._full + script + .input-container-placeholder,
.form-new .input-container-placeholder._full {
    top: 10%;
    font-size: 10px;
}

.form-new .error.help-block {
    display: block;
    margin: 5px 0;
    font-size: 14px;
    color: #FB3F1D;
}

.form-new button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 197px;
    height: 40px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 123%;
    text-align: center;
    color: #fff;
    text-transform: none;
    border-radius: 10px;
    background: var(--light-blue);
    transition: background-color .3s, opacity .3s;
}

.form-new button[type="submit"]:hover,
.form-new button[type="submit"]:focus,
.form-new button[type="submit"]:active {
    background-color: #2a3c64;
}

.form-new button[type="submit"]._disabled {
    opacity: .5;
    pointer-events: none;
}

.citrus-form__footer {
    margin-top: 30px;
}

.form-new .form-group.form-group-btn.btn_center {
    margin: 0 !important;
}

.form-new .citrus-form__footer {
    display: flex;
    gap: 19px;
    width: 100%;
}

.form-new .agree-block__text {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0.02em;
    color: #5582c5;
}

.form-new .agree-block__text p {
    margin: 0;
    text-align: start;
    line-height: 1.2;
}

.form-new .agree-block__text p a {
    text-decoration: none;
}

.form-new .agree-block {
    display: flex;
    align-items: center;
}

.form-new .form-bottom {
    margin: 0;
    width: auto;
}

.agree-block__text-decor {
    flex-shrink: 0;
    display: block;
    width: 21px;
    height: 21px;
    border: 1px solid #5582c5;
    border-radius: 20px;
    transition: background-color .3s;
}

input:checked + .agree-block__text-decor {
    background-color: #5582c5;
}

.contacts-right {
    width: 100%;
    max-width: 690px;
}

@media (max-width: 1200px) {
    .form-new .row-ib {
        flex-direction: column;
        gap: 5px;
    }

    .form-new .dept_2 {
        width: 100%;
    }

    .form-new .citrus-form__footer {
        flex-direction: column-reverse;
    }

    .form-new .agree-block__text br {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .form-new {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 850px) {
    .form-new .h2 {
        margin-bottom: 20px;
        font-size: 24px;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .form-new .citrus-form__footer {
        flex-direction: column;
        align-items: center;
    }

    .form-new .form-group.form-group-btn.btn_center {
        width: 100%;
    }

    .form-new button[type="submit"] {
        width: 100%;
    }
}
