@font-face {
    font-weight: 300;
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Light.ttf");
}

@font-face {
    font-weight: 400;
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
    font-weight: 500;
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Medium.ttf");
}

@font-face {
    font-weight: 600;
    font-family: 'Poppins';
    src: url("../fonts/Poppins-SemiBold.ttf");
}

@font-face {
    font-weight: 700;
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Bold.ttf");
}


html {
    font-family: 'Poppins', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 24px;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-weight: 500;
    word-wrap: break-word;
    color: #111111;
}

ul, li, p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

.list--disk {
    list-style: disc;
    padding-left: 30px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .2s;
    cursor: pointer;
}

a:hover {
    color: #0096EA;
    text-decoration: underline;
}

input {
    padding: 23px 20px;
    background-color: inherit;
    color: #FFFFFF;
    border: 2px solid #383838;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    outline: none;
}

input::placeholder {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #828282;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}

fieldset {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

img {
    max-width: 100%;
    width: 100%;
}

button {
    background-color: inherit;
    border: none;
    padding: 0;
    cursor: pointer;
}

.scrollbar_off::-webkit-scrollbar {
    width: 0;
}

.scrollbar_off::-webkit-scrollbar-track {
    background-color: none;
}

.scrollbar_off::-webkit-scrollbar-thumb {
    box-shadow: none;
}

.body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    position: relative;
    background-color: #FFFFFF;
}

.main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin-bottom: auto;
}

.main--contact {
    background-color: #FFFFFF;
}

.main--bg_gray {
    background-color: black;
    opacity: 0.5;
}

.wrapper {
    box-sizing: border-box;
    padding: 0 calc(50% - 700px);
    background-color: #FFFFFF;
}

/* .main section {
    margin-bottom: 90px;
} */

.section_title {
    margin-bottom: 60px;
    font-size: 44px;
    font-weight: 700;
    line-height: 58px;
}

.text--left {
    text-align: left;
}

.text--center {
    text-align: center;
}

.hr-100 {
    width: 100px;
    height: 2px;
    background-color: #56AEFF;
}

.hr-80 {
    width: 80px;
    height: 2px;
    background-color: #56AEFF;
}

.flex_col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.black_link,
.transparent_link {
    width: 440px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.black_link {
    background-color: #111111;
}

.transparent_link {
    border: 2px solid #FFFFFF
}

.black_link:hover {
    background-color: #303030;
    text-decoration: none;
    color: #FFFFFF;
}

.transparent_link:hover {
    background-color: #FFFFFF4D;
    color: #FFFFFF;
    text-decoration: none;
}

.black_link:active {
    background-color: #111111;
    text-decoration: none;
    color: #787878;
}

.transparent_link:active {
    color: #787878;
    text-decoration: none;

}


@media (max-width: 1460px) {
    .wrapper {
        padding: 0 25px 50px;
    }
}

@media (max-width: 1000px) {
    .body {
        background-color: #000000;
    }
}

@media (max-width: 764px) {

    .body--no-scroll {
        overflow: hidden;
        width: 100vw;
    }

    .wrapper {
        background-color: #FFFFFF;
    }

    .mobile_wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section_title {
        margin-bottom: 40px;
        font-size: 34px;
        font-weight: 700;
        line-height: 48px;
    }

    .width__100 {
        width: 100%;
    }

    .width_50 {
        width: 100%;
    }

}

/* header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF33;
    transition: background-color .5s;
    z-index: 10;
    box-shadow: 0px 4px 10px 0px #00000029;

}

.header_black {
    background-color: #000000;
}

@media (max-width: 1000px) {
    .header {
        position: sticky;
        min-height: 60px;
        top: 0vh;
        z-index: 10;
        box-shadow: 0px 8px 24px 0px #0000001A;
        padding: 15px 0px;
    }

}

@media (max-width: 764px) {

    .header_logo_wrap {
        padding: 15px 20px;
        margin-bottom: 0;
        z-index: 10;
    }

    .header_logo_wrap a img {
        width: 206px;
        height: 44px;
    }
}

/* promo */
.promo_pages {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 68px;
    background-image: url('../image/bg/main_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    color: #FFFFFF;
}

.promo_footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: url('../image/bg/footer_promo_bg.png');
    background-size: cover;
    background-color: #111111;
    color: #FFFFFF;

    @media (max-width: 764px) {
        padding-top: 105px;
        padding-bottom: 105px;
        background-size: 400% 100%;
        background-position: center;
    }
}

.promo_footer_title {
    margin-bottom: 30px;
    font-size: 44px;
    font-weight: 700;
    line-height: 58px;

    @media (max-width: 764px) {
        margin-bottom: 14px;
        font-size: 34px;
        font-weight: 700;
        line-height: 48px;
        text-align: center;

    }
}

.promo_footer_description {
    max-width: 1200px;
    margin-bottom: 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;

    @media (max-width: 764px) {
        margin-bottom: 40px;
    }

}


.promo_pages {
    background-position: center;
    padding-top: 180px;
    padding-bottom: 115px;
}

.bg--services {
    background-image: url('../image/bg/sevices_bg.png');
}

.bg--products {
    background-image: url('../image/bg/products_bg.png');
}

.slider {
    max-width: 100%;
    overflow: hidden;
}

.slider_list {
    display: flex;
    transition: transform .3s;
}

.slider_item {
    min-width: 100%;
}

.slider_item:not(:last-child) {
    padding-right: 40px;
}

.promo_title {
    margin-bottom: 30px;
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
}

.promo_description {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.promo_slider_buttons_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 80px;
}

.promo_slider_button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #FFFFFF80;
    cursor: pointer;
}

.promo_slider_button--active {
    background-color: #FFFFFF;
}

@media (max-width: 764px) {
    .promo {
        padding-bottom: 38px;
    }

    .promo_title {
        font-size: 40px;
        font-weight: 700;
        line-height: 54px;
    }
}

/* main */

.litle_title {
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;

    @media (max-width: 764px) {
        text-align: left;
    }
}

.chart_img_wrapper {
    position: relative;
    display: flex;
    border-radius: 16px;
    align-items: center;
    overflow: hidden;
}

.chart_img_wrapper--active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 0;

    .img_zoom_button {
        display: none;
    }
}


.img_zoom_button {
    position: absolute;
    bottom: 19px;
    right: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card_list {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;

    .card_item {
        width: 440px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 16px;
        box-shadow: 0px 8px 30px 0px #0000001A;
        overflow: hidden;
        cursor: default;

        .card_title {
            margin-top: 30px;
            padding: 0 20px;
            font-size: 32px;
            font-weight: 700;
            line-height: 42px;
        }

        .card_description {
            margin-top: 14px;
            margin-bottom: 40px;
            padding: 0px 20px;
        }
    }

    .card_item:hover {
        background-color: #EAF7FE;
        box-shadow: none;
    }

    @media (max-width: 764px) {
        flex-direction: column;

        .card_item {
            width: 100%;

            img {
                width: 100%;
                height: auto;
            }
        }
    }
}

.mosaic_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 80px;
    background-color: #F3F3F3;
    border-radius: 16px;
    overflow: hidden;

    .mosaic_item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 14px;
        height: 100%;
        overflow: hidden;

        .mosaic_title {
            padding: 0 60px;
            font-size: 32px;
            font-weight: 700;
            line-height: 42px;
            text-align: left;

            @media (max-width: 1240px) {
                margin-top: 20px;
                padding: 0 20px;
            }
        }

        .mosaic_description {
            padding: 0 60px;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            text-align: left;

            @media (max-width: 1240px) {
                padding: 0 20px;
            }

        }

        .mosaic_img {
            height: 100%;
            width: auto;
        }

        .mosaic_sublist {
            list-style: disc;
            padding-left: 20px;
        }

        .mosaic_subitem {
            line-height: 34px;
        }
    }


    @media (max-width: 764px) {
        grid-template-columns: 1fr;
        margin-bottom: 0;

        .mosaic_item {
            order: 1;


            .mosaic_title,
            .mosaic_description {
                padding: 0 30px;
            }

            .mosaic_title {
                margin-top: 30px;
            }

            .mosaic_description {
                margin-bottom: 30px;
            }

            .mosaic_img {
                width: 100%;
            }
        }

        .mosaic_item--order_1 {
            order: 1;
        }

        .mosaic_item--order_2 {
            order: 2;
        }

        .mosaic_item--order_3 {
            order: 3;
        }

        .mosaic_item--order_4 {
            order: 4;
        }


        .mosaic_item:nth-child(3) {
            order: 2;
        }
    }
}

.services_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;

    @media (max-width: 764px) {
        gap: 16px;
    }

    .services_item {
        width: 440px;
        height: 190px;
        box-shadow: 0px 8px 30px 0px #0000001F;
        border-radius: 16px;
        overflow: hidden;

        @media (max-width: 764px) {
            width: 100%;
            height: 144px;
            max-width: 100%;
            box-sizing: border-box;
        }
    }

    .services_item_link {
        display: grid;
        grid-template-columns: 180px 1fr;
        height: 100%;
        font-size: 20px;
        font-weight: 500;
        line-height: 28px;

        @media (max-width: 764px) {
            grid-template-columns: 100px 1fr;

            .services_item_img {
                width: 74px;
                height: 74px;
            }
        }


        .services_item_img_wrapper {
            background-image: linear-gradient(180deg, #53C3FF 0%, #0096EA 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .services_item_title {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #FFFFFF;
            height: 100%;
            padding: 30px;
            box-sizing: border-box;
            transition: background-color .2s;

            @media (max-width: 764px) {
                padding: 20px;
                font-size: 18px;
                font-weight: 500;
                line-height: 24px;
            }
        }
    }

    .services_item:hover {
        box-shadow: none;

        .services_item_img_wrapper {
            background-image: none;
            background-color: #111111;
        }

        .services_item_title {
            background-color: #EAF7FE;
        }
    }
}

.services_list--black {

    .services_item {
        .services_item_img_wrapper {
            background-image: none;
            background-color: #111111;
        }

        .services_item_title {
            background-color: #EAF7FE;
        }
    }
}

.product_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;

    @media (max-width: 764px) {
        gap: 16px;
    }

    .product_item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        width: 440px;
        height: 110px;
        padding: 23px;
        box-sizing: border-box;
        background-color: #EAF7FE;
        border-radius: 16px;
        overflow: hidden;

        .product_item_number {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(180deg, #53C3FF 0%, #0096EA 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            line-height: 36px;
            color: #FFFFFF;
        }

        .product_item_name {
            font-size: 24px;
            font-weight: 700;
            line-height: 36px;
            text-align: left;
        }

    }
}

.photo_list_wrapper {
    max-width: 100%;
    margin-bottom: 60px;

    @media (max-width: 764px) {
        overflow-x: scroll;
        margin-bottom: 40px;
    }
}

.photo_list {
    display: flex;
    gap: 40px;

    @media (max-width: 764px) {
        gap: 20px;
    }

    .photo_item {
        flex-shrink: 0;
        width: 440px;
        max-width: 75vw;
        height: 440px;
        max-height: 75vw;
        border-radius: 16px;
        overflow: hidden;

        img {
            max-width: 100%;
            max-height: 100%;
        }
    }
}

.vacancies_name {
    margin-bottom: 14px;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    text-align: left;

}

.vacancies_promo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 80px;
    background-color: #EAF7FE;
    border-radius: 16px;
    overflow: hidden;


    .vacancies_promo_img_wrapper {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 180px;
        min-height: 100%;
        background-color: #111111;
    }

    .vacancies_promo_text_wrapper {
        padding: 45px;
    }

    .vacancies_promo_link {
        color: #0096EA;
    }

    @media (max-width: 764px) {
        flex-direction: column;
        /* align-items: center; */
        gap: 20px;
        margin-top: 50px;
        margin-bottom: 0;

        .vacancies_promo_img_wrapper {
            width: 100%;
            height: 190px;
        }

        .vacancies_promo_text_wrapper {
            padding: 30px;
        }
    }
}

.contacts_wrapper {
    display: flex;
    gap: 40px;
    margin-top: 80px;

    @media (max-width: 764px) {
        flex-direction: column;
        margin-top: 50px;
    }

    .contacts {
        width: calc(33.33% - 20px);


        .contacts_title {
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: 500;
            line-height: 36px;
            text-align: left;
        }

        .contacts_list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .contacts_item,
        .contact_email {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
        }

        .contacts_item {
            flex-wrap: wrap;
        }

        .contacts_phone {
            display: flex;
            align-items: center;
            gap: 12px;

            img {
                filter: invert(1);
            }
        }

        .contact_email img {
            filter: invert(1);
        }

        @media (max-width: 764px) {
            width: 100%;

            .contacts_item--email {
                flex-direction: column;
                align-items: flex-start;
            }
        }


    }
}

/* footer_promo */
.feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 96px;
    background-color: #111111;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    margin-top: auto;
}

.feedback_title {
    margin-bottom: 26px;
    max-width: 1000px;
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
}

.feedback_description {
    max-width: 1000px;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.feedback_form {
    max-width: 100%;
}

.feedback_form,
.feedback_fieldset {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.feedback_input,
.feedback_button {
    width: 440px;
    box-sizing: border-box;
}

.feedback_input:hover {
    border-color: #FFFFFF;
}

.feedback_input:focus {
    background-color: #000000;
    border-color: #FFFFFF;
}

.feedback_button {
    padding: 20px 0;
    background-color: #0096EA;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    color: #FFFFFF;
    border-radius: 16px;
}

.feedback_button:hover {
    background-color: #2EB4FF;
}

.feedback_button:active {
    background-color: #0072B3;
}


@media (max-width: 764px) {
    .feedback {
        padding-top: 55px;
        padding-bottom: 75px;
    }

    .feedback_title {
        font-size: 40px;
        font-weight: 700;
        line-height: 50px;
    }

    .feedback_description {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }

    .footer_promo_link {
        margin-top: 60px;
    }

    .feedback_form,
    .feedback_fieldset {
        gap: 16px;
    }

    .feedback_input {
        width: 100%;
        box-sizing: border-box;
    }

}




/* footer */

.footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
    background-color: #111111;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #FFFFFF;
    padding-top: 43px;
    padding-bottom: 40px;
    border-top: 1px solid #383838
}

.footer_logo {
    min-width: 150px;
}

.footer_address {
    max-width: 342px;
}

.footer_emails_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.footer_emails_link,
.contacts_phone_link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contacts_block {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.contacts_block--header {
    color: #111111;
    align-items: center;
}

.contacts_block--header .contacts_phone_link img {
    filter: invert(1);
}

.contacts_phone_link_wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;

}

.contacts_social_list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contacts_social_list--contacts_page {
    gap: 4px;
}

.contacts_social_item,
.contacts_social_link {
    display: flex;
    align-items: center;
}



@media (max-width: 764px) {
    .footer {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding-top: 50px;
        padding-bottom: 60px;

    }

    .footer_address,
    .footer_requisite_list {
        text-align: center;
    }

    .footer_emails_list {
        align-items: center;
    }
}



/* menu */

.header_logo_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

/* .menu_phone_list {
    margin-left: 100px;
} */


.burger {
    display: none;
}

.phone {
    display: none;
}

.burger_button {
    border: none;
    background: inherit;
    cursor: pointer;
    display: none;
}

.language {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #111111;
}

.lang_button {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color .2s;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.lang_button:hover {
    color: #56AEFF;
}

.lang_button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.lang_button--active svg {
    transform: rotateX(180deg);
}

.language_menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 20px;
    top: -21px;
    left: -20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px solid #FFFFFF33;
    border-radius: 10px;
    box-shadow: 0px 8px 30px 0px #0000001A;
    text-transform: uppercase;
    background-color: #FFFFFF;
}

.language_menu--close {
    /* max-height: 0px;
    border-width: 0px; */
    display: none;
}

.language_menu_item_link {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 105px;
    padding-left: 19px;
    /* padding-right: 43px; */
    box-sizing: border-box;
}

.language_menu_item_link img {
    width: 16px;
}

.language_menu_item_link svg {
    position: absolute;
    right: 19px;
    transition: transform .3s;
    transform: rotateX(0deg);
}

.language_menu_item_link svg {
    transform: rotateX(180deg);
}

.menu_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 calc(50% - 700px); */
}

.menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.menu_list {
    width: 582px;

    display: flex;
    justify-content: space-between;
    /* gap: 40px; */
    /* margin-left: 50px; */
}

.menu_item {
    /* margin-right: 20px; */
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: stretch;
    position: relative;
    white-space: nowrap;
    /* text-transform: uppercase; */
    color: #111111;
}

span.menu_item_clickable {
    transition: color .3s;
}

.menu_item_clickable {
    display: inline-block;
    padding: 13px 21px 15px;
    border-radius: 10px;
    transition: color .2s;
}

.menu_item_clickable svg {
    transition: transform .3s;
}

.menu_item--active .menu_item_clickable,
.menu_item_clickable:hover {
    text-decoration: none;
    background-color: #EAF7FE;
    color: #0096EA;
    position: relative;
}

.desktop--none {
    display: none;
}

.language_menu_title {
    display: none;
}

.contacts_phone_button {
    display: none;
}

@media (max-width: 1460px) {
    /* .menu_wrapper {
        padding: 0 20px;
    } */

    .menu {
        gap: 10px;
    }

    .menu_list {
        flex-wrap: wrap;
    }

}

@media (max-width: 1200px) {
    .menu_item_clickable {
        display: inline-block;
        padding: 10px 15px 10px;
        border-radius: 10px;
        transition: color .2s;
    }

    .contacts_block--header,
    .menu_list {
        flex-shrink: 5;
    }
}

@media (max-width: 1000px) {
    .desktop--none {
        display: block;
    }

    .menu_item--active::after,
    .menu_item:hover::after {
        width: 0px;
    }

    .main--gray:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, .5);
    }

    .burger {
        display: block;
        position: absolute;
        left: 20px;
        top: calc(50% - 12px);
        z-index: 10;
    }

    .burger_button {
        display: block;
        height: 23px;
        width: 30px;
        padding: 0;
        z-index: 5;
    }

    .menu-nav__toggle {
        display: block;
        width: 15px;
        height: 21px;
        right: 20px;
        top: 10px;
        transition: all .5s;
    }

    .menu-nav__toggle--cross {
        border: none;
        padding: 0;
        width: 25px;
        background-color: inherit;
    }

    .menu-nav__toggle--cross::after {
        content: "";
        position: absolute;
        width: 25px;
        height: 2px;
        border-radius: 2px;
        background-color: #111111;
        transform: rotate(-45deg);
        bottom: 10px;
        left: -4px;
        transition: all .2s;
    }

    .menu-nav__toggle--cross::before {
        content: "";
        position: absolute;
        width: 25px;
        border-radius: 2px;
        height: 2px;
        background-color: #111111;
        transform: rotate(45deg);
        bottom: 10px;
        left: -4px;
        transition: all .2s;
    }

    .menu-nav__toggle--burger {
        height: 2px;
        width: 15px;
        border: none;
        border-radius: 3px;
        padding: 0;
        background-color: #111111;
    }

    .menu-nav__toggle--burger::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 2px;
        border-radius: 3px;
        background-color: #111111;
        transform: rotate(0deg);
        bottom: 3px;
        left: 0;
        transition: all .2s;
    }

    .menu-nav__toggle--burger::before {
        content: "";
        position: absolute;
        width: 20px;
        height: 2px;
        border-radius: 3px;
        background-color: #111111;
        transform: rotate(0deg);
        bottom: 19px;
        left: 0;
        transition: all .2s;
    }

    .menu_wrapper {
        position: relative;
        gap: 20px;
        /* border-radius: 0 0 14px 14px; */
        transition: height .2s, padding .2s;
        box-sizing: border-box;
        padding: 0;
        justify-content: space-between;
    }

    .menu_logo_wrapper {
        display: flex;
        width: 138px;
        margin-left: 70px;
    }

    .menu_logo_wrapper img {
        width: 100%;
        height: auto;
    }

    .menu_list {
        position: absolute;
        flex-direction: column;
        justify-content: flex-start;
        align-self: center;
        top: 46px;
        gap: 0;
        margin-left: 0;
        max-height: 500px;
        width: 100%;
        padding-top: 20px;
        background-color: #FFFFFF;
        z-index: 3;
        /* transition: max-height .1s; */
        box-sizing: border-box;
        flex-wrap: nowrap;
    }

    .menu_item {
        flex-shrink: 0;
        width: 100%;
        align-items: center;
        justify-content: center;
        margin-right: 0;
        height: 42px;
        padding: 10px 0;
        font-size: 16px;
        font-weight: 600;
        line-height: 21.79px;
        overflow: hidden;
        /* transition: max-height .1s, padding .1s; */
    }

    .menu_link {
        align-self: flex-start;
    }

    .menu_item--close {
        max-height: 0;
        padding: 0;
        padding-top: 0px;
        /* transition: height .2s, padding .2s; */
    }

    .list--close {
        max-height: 0;
        padding-top: 0;
        overflow: hidden;
    }

    .list--close .menu_item {
        padding: 0;
    }

    .sections_icon--menu {
        display: block;
    }

    .menu_phone_list--header {
        display: none;
    }

    .language {
        z-index: 11;
        margin-right: 20px;
    }

    .language_menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        padding-top: 20px;
        padding-bottom: 30px;
        width: 100%;
        border: none;
        border-radius: 0;
        text-align: center;
        z-index: 10;
        /* max-height: 200px; */
        transition: all .2s;
        box-sizing: border-box;
        overflow: hidden;
        text-transform: none;
    }

    .language_menu--close {
        display: none;
        max-height: 0px;
        min-height: 0px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .language_menu_title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
        font-size: 28px;
        font-weight: 700;
        line-height: 34px;
    }

    .language_menu_item_link {
        width: 100%;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding-left: 20px;
        padding-right: 20px;
    }

    .mobile--none {
        display: none;
    }

    .contacts_phone_button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        margin-left: auto;
        filter: invert(1);
    }

    .contacts_block--header {
        display: none;
        flex-direction: column;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 20px 0px 40px;
        background-color: #FFFFFF;
        flex-shrink: 0;
    }

    .contacts_block--header_open {
        display: block;
    }

    .contacts_block--header .language_menu_title {
        padding-bottom: 30px;
    }

    .contacts_block--header .contacts_phone_link {
        padding-left: 20px;
    }

    .contacts_block--header .contacts_social_list {
        padding-right: 20px;
        gap: 16px;
    }

}

@media (max-width: 764px) {
    /* .menu_list {
        top: 62px;
    } */
}

.mt--20 {
    margin-top: 20px;
}

.mb--20 {
    margin-bottom: 20px;
}

.mb--50 {
    margin-bottom: 50px;
}

.mb--80 {
    margin-bottom: 80px;
}

.pb--80 {
    padding-bottom: 80px;

    @media (max-width: 764px) {
        padding-bottom: 50px;
    }
}

.pt--50 {
    padding-top: 50px;
}

.pb--50 {
    padding-bottom: 50px;
}