.liForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 705px;
    color: black;
    font-family: "SFProDisplay-Regular", Sans-serif;
    margin: 0px auto;
    padding: 0px 16px;
    align-items: flex-start;


    .form_container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    @media (max-width: 734px) {
        .form_container {
            flex-direction: column;
            width: 410px;
        }
    }

    @media (max-width: 500px) {
        .form_container {
            width: 100%;
        }
    }

    input {
        width: 328px;
        border: 1px solid black;
        border-radius: 3px;
        padding: .5rem 1rem;
        outline: none;
        background-color: white;
        color: black;
        font-size: 16px;
        font-family: "SFProDisplay-Regular", Sans-serif;
    }


    .block {
        display: flex;
        flex-direction: column;
        gap: 4px;


        @media (max-width: 500px) {
            input {
                width: 100%;
            }
        }

        span {
            font-size: 16px;
            padding-bottom: 5px;
        }
    }

    .politic {
        display: flex;
        flex-direction: column;
        gap: 7px;
        justify-content: center;

        .container {
            display: flex;
            flex-direction: row;
            gap: 10px;

            label a {
                color: black;
                text-decoration: underline;
            }
        }



    }

    input[type='checkbox'] {
        width: unset;
        height: unset;
    }

    .send_btn {
        height: 42px;
        border: 1px solid transparent;
        color: white;
        border-radius: 5px;
        background-color: #005550;
        font-size: 16px;
        cursor: pointer;
        font-weight: 600;
        padding: 0px 30px;
    }

    @media (max-width: 734px) {
        .send_btn {
            width: 328px;
        }
    }

    @media (max-width: 500px) {
        .send_btn {
            width: 100%;
        }
    }

    .error_text {
        font-size: 13px !important;
        color: red;
        display: none;
    }

    textarea {
        width: 100%;
        height: 55px;
        border: 1px solid black;
        border-radius: 3px;
        padding: .5rem 1rem;
        outline: none;
        background-color: white;
        color: black;
        font-size: 16px;
        font-family: "SFProDisplay-Regular", Sans-serif;
    }

    @media (max-width: 734px) {
        textarea {
            width: 328px;
        }
    }

    @media (max-width: 500px) {
        textarea {
            width: 100%;
        }
    }
}

.form_block {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 13, 30, 0.4);
    -webkit-backdrop-filter: blur(8.9999990463px);
    backdrop-filter: blur(8.9999990463px);
    z-index: 10;
    display: none;
    transition: all 0.5s ease;
    padding: 0 25px;
}

.new_form_activator {
    display: block !important;
}

.open_new_form_btn {
    cursor: pointer;
}

.close_modal-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.close_btn {
    display: block;
    cursor: pointer;
}

.close_btn::before,
.close_btn::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    display: block;
    width: 24px;
    height: 3px;
    background: white;
}

.close_btn::before {
    transform: rotate(45deg);
}

.close_btn::after {
    transform: rotate(-45deg);
}

.body_overflow {
    height: 100vh;
    overflow-y: hidden;
}

.popup-checktime .checkbox_container {
    display: flex;
    flex-direction: column;
}



.service_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;

    .hidden-field {
        display: none;
    }

    button {
        padding: 10px;
    }

    .input-style {
        width: 100%;
        height: 40px;
    }

    p {
        font-size: 30px;
        font-weight: 500;
        margin: 0px auto;
        margin-bottom: 30px;
    }

    input,
    select {
        border: 1px solid #666;
        border-radius: 3px;
        padding: .5rem 1rem;
        transition: all .3s;
        outline: none;
        font-size: 16px;
    }

    fieldset {
        border: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    .checkbox_container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        row-gap: 5px;
    }

    .label_checkbox {
        font-size: 16px;
        font-weight: normal;
        margin-bottom: unset;
    }

    .error {
        color: red;
    }

    .checkbox-inner {
        cursor: pointer;
        width: fit-content;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 7px;

        input {
            cursor: pointer;
        }

        label {
            cursor: pointer;
        }

        a {
            color: white;
            text-decoration: underline;
        }
    }

    .send-btn {
        color: #fff;
        border: 1px solid #fff;
        background: rgba(24, 24, 24, 0.65);
        outline: none;
        cursor: pointer;
    }

    .input-wrapper {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .policy_text {
        font-size: 16px !important;
        color: #fff;
        opacity: .8;
        font-weight: 400;
    }
}


.new_form {
    position: fixed;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    padding: 30px;
    max-width: 500px;
    width: 95%;
    background: #100F0F;
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;
    z-index: 120;
    transition: all .5s ease;
    box-shadow: 0px 0px 8px 7px rgba(20, 21, 21, 0.23);
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-color: transparent #787A7A;
    scrollbar-width: thin;
    border-radius: 15px;

    .hidden-field {
        display: none;
    }

    textarea {
        width: 100%;
        border: 1px solid #666;
        border-radius: 3px;
        padding: .5rem 1rem;
        transition: all .3s;
        height: 100px;
        outline: none;
        resize: none;
        font-size: 16px;
    }

    button {
        padding: 10px;
    }

    .input-style {
        width: 100%;
        height: 40px;
    }

    p {
        font-size: 21px;
        font-weight: 500;
        margin: 0px auto;
        margin-bottom: 30px;
        margin-top: -10px;
    }

    input,
    select {
        border: 1px solid #666;
        border-radius: 3px;
        padding: .5rem 1rem;
        transition: all .3s;
        outline: none;
        font-size: 16px;
        width: 100%;
    }

    input[type="checkbox"] {
        width: unset;
    }

    fieldset {
        border: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    .checkbox_container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        row-gap: 5px;
    }

    .label_checkbox {
        font-size: 16px;
        font-weight: normal;
        margin-bottom: unset;
        font-family: "SFProDisplay-Regular", Sans-serif;
    }

    .error {
        color: red;
        font-size: 12px;
    }

    .checkbox-inner {
        cursor: pointer;
        width: fit-content;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 7px;

        input {
            cursor: pointer;
        }

        label {
            cursor: pointer;
            font-size: 16px;
        }

        a {
            color: white;
            text-decoration: underline;
        }
    }

    .send-btn {
        width: 100%;
        height: 55px;
        background-color: #dbad76;
        border: none;
        font-family: "SFProDisplay-Regular", Sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        background-image: none;
        font-size: 0.875rem;
        border: none;
        color: #fff;
        cursor: pointer;
        font-size: 16px;
    }

    .input-wrapper {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .policy_text {
        font-size: 16px !important;
        color: #fff;
        opacity: .8;
        font-weight: 400;
        font-family: "SFProDisplay-Regular", Sans-serif;
    }
}


.activator {
    display: block !important;
}

.error_text {
    color: red;
    font-size: 14px;
    font-family: "SFProDisplay-Regular", Sans-serif;
    display: none;
}

.title_form {
    font-family: "SFProDisplay-Regular", Sans-serif;
}

label,
textarea {
    font-family: "SFProDisplay-Regular", Sans-serif;
}

.header {
    width: 100vw;
    background-color: white;
    font-family: "SFProDisplay-Regular", Sans-serif;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .05);

    .header_container {
        width: 100%;
        /* max-width: 1300px; */
        display: flex;
        flex-direction: row;
        /* margin: 0px auto; */
        align-items: center;
        padding: 0px 40px;

        .logo {
            width: 100%;
            max-width: 98px;
            height: 20px;

            img {
                height: 20px !important;
                width: 100%;
            }
        }

        .container_content {
            width: 100%;
            max-width: unset;
            padding: unset;

            @media (max-width:550px) {
                span {
                    font-size: 13px;
                }
            }
        }
    }
}

@media (max-width:550px) {
    .header_container {
        gap: 20px;
        padding: 0px 20px !important;
    }
}

.logo_form {
    width: 98px;
    position: absolute;
    top: 25px;
    left: 40%;
}

.active_error {
    display: block;
}

.full_cont {
    width: 98px;
}

@media (max-width: 550px) {
    .full_cont {
        display: none;
    }
}

.open_form_btn {
    cursor: pointer;
}

#footer-form {
    .block {
        width: fit-content;
    }

    @media (max-width: 500px) {
        .block {
            width: 100%;
        }
    }

    .content {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
        flex-wrap: wrap;
        max-width: 1000px;
        font-family: "SFProDisplay-Regular", Sans-serif;

    }

    @media (max-width: 859px) {
        .content {
            flex-direction: column;
        }
    }

    select,
    input {
        border: 1px solid #666;
        border-radius: 3px;
        padding: .5rem 1rem;
        transition: all .3s;
        outline: none;
        font-size: 16px;
        width: 320px;
        height: 39px;
        font-family: "SFProDisplay-Regular", Sans-serif;

    }

    @media (max-width: 500px) {

        select,
        input {
            width: 100%;
        }
    }

    input[type="checkbox"] {
        width: 13px;
    }

    button[type="submit"] {
        color: #fff;
        border: 1px solid #fff;
        background: rgba(24, 24, 24, 0.65);
        outline: none;
        cursor: pointer;
        height: 42px;
        display: flex;
        align-items: center;
        width: fit-content;
        padding: 0px 20px;
        height: 39px;
        font-family: "SFProDisplay-Regular", Sans-serif;
        font-size: 16px;

    }

    @media (max-width: 859px) {
        button[type="submit"] {
            width: 320px;
            justify-content: center;
        }
    }

    @media (max-width: 500px) {
        button[type="submit"] {
            width: 100%;
        }
    }

    label {
        color: white;
    }

    label a {
        color: white;
        text-decoration: underline;
    }

    .checkbox_block {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
    }

    #check_block {
        width: 500px;
    }

    @media (max-width: 600px) {
        #check_block {
            width: 300px;
        }
    }
}

.title_form {
    text-align: center;
    margin-bottom: unset !important;
    line-height: 30px;
}

.form_block_td {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 13, 30, 0.4);
    -webkit-backdrop-filter: blur(8.9999990463px);
    backdrop-filter: blur(8.9999990463px);
    z-index: 10;
    display: none;
    transition: all 0.5s ease;
    padding: 0 25px;
}

.open_form_btn_td {
    cursor: pointer;
}

#title span {
    text-transform: uppercase;
}


.block_text_open {
    display: flex;
    flex-direction: column;
    padding-left: 124px;

    position: relative;
    cursor: pointer;
}


#right {
    padding-left: 30px;
    padding-right: 114px;
}

@media (max-width: 700px) {

    .block_text_open,
    #right {
        padding-top: 24px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 65px !important;
        align-items: center;
    }
}

.block_text_open span {
    padding-bottom: .07142857142857142rem;
    font-size: 16px;
    color: rgba(0, 0, 0, .9);
}

.block_text_open h2 {
    font-family: "SFProDisplay-Regular", Sans-serif;
    font-size: 35px;
    color: rgba(0, 0, 0, .9);
}

.block_text_open p {
    font-family: "SFProDisplay-Regular", Sans-serif;
    padding-top: 17px;
    font-size: 16px;
    color: rgba(0, 0, 0, .6);
}

.block_text_open button {
    width: fit-content;
    height: 40px;
    border: 1px solid white;
    border-radius: 100px;
    background-color: white;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 700px) {
    .block_text_open h2 {
        font-size: 25px;
        text-align: center;
    }

    .block_text_open p {
        text-align: center;
    }
}

.block_text_open button p {
    padding: 0px 8px;
}

.block_text_open button span {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #191919;
    transition: width .15s ease-in .1s, height .15s ease-in .1s, transform .3s ease-in .15s;
}

.block_text_open button span::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: #fff;
    transform: translate3d(-50%, -50%, 0);
    transition: height .15s ease-in .1s;
    content: "";
}

.block_text_open button span::after {
    transform: translate3d(-50%, -50%, 0) rotate(-90deg);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: #fff;
    transition: height .15s ease-in .1s;
    content: "";
}

.open_block {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: black;
}

.active_scroll_block {
    max-height: 700px !important;
}

@media screen {
    .active_scroll_block {
        max-height: calc(100% + 150px) !important;
        ;
    }
}


.form_block_service {
    width: 100%;
    max-width: 400px !important;
    height: 100%;
    background: rgba(3, 13, 30, 0.4);
    backdrop-filter: blur(8.9999990463px);
    z-index: 10;
    transition: all 0.5s ease;
    padding: 20px 25px;

    form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .logo_form {
        display: block;
        position: relative;
        top: 0;
        margin: 0px auto;
        left: 0;
    }

    .title_form {
        font-size: 35px;
        text-transform: uppercase;
        color: white;
    }

    input,
    select {
        border: 1px solid #666;
        border-radius: 3px;
        padding: .5rem 1rem;
        transition: all .3s;
        outline: none;
        font-size: 16px;
        width: 100%;
        height: 40px;
    }

    input[type="checkbox"] {
        width: unset;
        height: unset;
    }

    fieldset {
        border: none;
    }

    .checkbox_container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    textarea {
        width: 100%;
        border: 1px solid #666;
        border-radius: 3px;
        padding: .5rem 1rem;
        transition: all .3s;
        height: 100px;
        outline: none;
        resize: none;
        font-size: 16px;
    }

    .send-btn {
        width: 100%;
        height: 55px;
        background-color: #dbad76;
        border: none;
        font-family: "SFProDisplay-Regular", Sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        background-image: none;
        font-size: 0.875rem;
        border: none;
        color: #fff;
        cursor: pointer;
        font-size: 16px;
    }

    .label_checkbox {
        font-family: "SFProDisplay-Regular", Sans-serif;
        font-size: 20px;
        font-weight: 300;
    }

    label {
        cursor: pointer;
        font-size: 16px;
    }

    a {
        color: white;
        text-decoration: underline !important;
    }

    .text_info {
        font-family: "SFProDisplay-Regular", Sans-serif;
        color: white;
    }

    .checkbox-inner label {
        color: white;
    }
}

.block_serv {
    position: relative !important;
    width: 100% !important;
    max-width: 1300px !important;

    .open_block_service {
        width: 100%;
        height: 100%;
        position: absolute;
        background: linear-gradient(180deg, rgba(0, 0, 0, .7), rgba(29, 46, 83, .7));
        backdrop-filter: blur(25px);
        transition: opacity .15s ease-in, z-index .15s ease-in;
        border-radius: 4px;
        z-index: 10;
        opacity: 0;
        top: 0;
        transition: 0.3s opacity linear;
        visibility: hidden;
    }
}

.active_block_srev {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.3s linear, visibility 0s linear 0s;
}

.btn_more {
    font-weight: 600;
    color: black !important;
}