:root {
    --font-color: rgba(1, 1, 1, 1);
    --body-color: rgba(248, 248, 248, 1);
    --button-color: rgba(51, 204, 255, 1);
    --grey: rgba(187, 187, 187, 1);
    --grey2: rgb(228, 228, 228);
    --white: #ffffff;
    --active-nav: rgba(249, 253, 255, 1);
    --g_b-border: #BBBBBB;
    --orange: #FF6633;
    --green: #66CC33;
    --footer_color: rgba(69, 67, 67, 1);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

::before, ::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--font-color);
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    background: var(--body-color);
}

body.fixed {
    overflow: hidden;
}

.screen {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--font-color);
    font-weight: 500;
}

h1 {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 20px;
}

h4 {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 20px;
}

span.blue {
    color: var(--button-color);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
}

li.not_style {
    list-style: none;
}

p {
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0;
}

input[type="text"], textarea {
    border: 1px solid var(--grey);
    outline: none;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 18px;
    color: var(--font-color);
    background: none;
    padding: 11px 19px;
    border-radius: 10px;

    &::placeholder {
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        line-height: 18px;
        color: var(--grey);
    }

    &:focus {
        border-color: var(--button-color);
    }

    &.error {
        border-color: var(--orange);
    }
}

.drop_list .name.error {
    border-color: var(--orange);
}

.button, button {
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--white);
    outline: none;
    cursor: pointer;
    padding: 11px 15px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    background: var(--white);

    &.blue {
        background: var(--button-color);
        border-color: var(--button-color);
    }

    &.blue_border {
        border: 1px solid var(--button-color);
    }
}

.button.big_button, button.big_button {
    padding: 19px 29px;
    font-size: 24px;
    line-height: 32px;
}

.wrap {
    padding: 0 100px;
    margin: 0 auto;
    max-width: 1920px;
}

header {
    margin-bottom: 20px;
    padding: 10px 0;
}

header .wrap {
    display: flex;
    align-items: center;
}

header .logo {
    width: 350px;
    height: 125px;
    margin-right: 85px;
    background: url(../icons/logo.svg) center / contain no-repeat;
    display: block;
}

.wrap_menu {
    width: calc(100% - 435px);

    & .menu {
        display: flex;
        flex-direction: column-reverse;
    }
}

.wrap_menu .top_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    line-height: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--button-color);
    margin-bottom: 20px;
}

.wrap_menu .top_menu a:not(.button, .item_list) {
    margin-right: 20px;
    transition: all 0.3s ease;
}

.wrap_menu .top_menu a {
    display: block;
    white-space: nowrap;
}

.scroll_wrap {
    max-height: 130px;
    overflow: hidden;
    overflow-y: auto;
}

.droplist {
    position: relative;

    & .list {
        position: absolute;
        left: 0;
        top: calc(100% - -10px);
        width: 100%;
        border: 1px solid var(--grey);
        border-radius: 10px;
        box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);
        background: var(--white);
        z-index: 1;
        font-size: 15px;
        line-height: 18px;
        overflow: hidden;
        display: none;
    }

    & .name {
        padding-right: 30px;
        cursor: pointer;
        background: url(../icons/arrow_down.svg) right 0 center / contain no-repeat;
        background-size: 20px 20px;
    }
}

.wrap_menu .city_select {
    margin-right: 20px;
    padding-left: 30px;
    background: url(../icons/pin.svg) left 0 center / contain no-repeat;
    background-size: 20px 20px;
}

.droplist .list .item_list {
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 9px 19px;
    transition: all 0.3s ease;
    display: block;
}

.wrap_menu .time {
    padding-left: 30px;
    background: url(../icons/time.svg) left 0 center / contain no-repeat;
    background-size: 20px 20px;
    margin-right: 20px;
}

.wrap_menu .phone {
    padding-left: 30px;
    background: url(../icons/phone.svg) left 0 center / contain no-repeat;
    background-size: 20px 20px;
}

.wrap_menu .mail {
    padding-left: 30px;
    background: url(../icons/mail.svg) left 0 center / contain no-repeat;
    background-size: 20px 20px;
}

.main_menu {
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 24px;
    justify-content: space-between;
}

.main_menu a {
    display: block;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    transition: all 0.3s ease;

    &:not(:last-child) {
        margin-right: 20px;
    }
}

.main_menu a.drop {
    padding-right: 25px;
    background: url(../icons/arrow_down.svg) right 0 center / contain no-repeat;
    background-size: 20px 20px;
    margin-right: 0;
}

.main_menu .wrap_drop {
    margin-right: 20px;
    position: relative;
}

.wrap_drop .list {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
    width: 182px;
    font-size: 15px;
    line-height: 18px;
    padding-top: 10px;

    & .scroll_wrap {
        background: var(--white);
        border-radius: 10px;
        overflow: hidden;
        overflow-y: auto;
    }

    & a {
        display: block;
        padding: 9px;
        border: 1px solid transparent;
        border-radius: 10px;
        margin-right: 0;
        text-decoration: none;
    }
}

.main_banner {
    overflow: hidden;
    border-radius: 50px;
    margin-bottom: 120px;
    position: relative;
    padding: 203px 50px;

    & img {
        display: block;
        object-fit: cover;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }
}

.wrap_banner {
    display: flex;
    justify-content: flex-end;
}

.content_banner {
    border-radius: 30px;
    box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);
    background: var(--white);
    padding: 40px;
    max-width: 800px;

    & h1 {
        margin-bottom: 40px;
    }
}

.content_banner .flex_wrap {
    display: flex;
    margin-bottom: 40px;

    & .wrap_input {
        width: calc(50% - 10px);

        &:not(:last-child) {
            margin-right: 20px;
        }

        & input::placeholder {
            color: var(--font-color);
        }
    }
}

.wrap_input {
    & .label {
        margin-bottom: 10px;
        font-size: 15px;
        line-height: 20px;
    }
}

.drop_search {
    position: relative;

    & input {
        padding-right: 49px;
        background: url(../icons/arrow_down.svg) right 20px center / contain no-repeat;
        background-size: 20px 20px;
        font-size: 24px;
        line-height: 32px;
        padding: 19px 59px 19px 29px;

        &::placeholder {
            font-size: 24px;
            line-height: 32px;
        }
    }
}

.drop_search .list {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    border: 1px solid var(--grey);
    border-radius: 10px;
    box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);
    background: var(--white);
    z-index: 1;
    font-size: 15px;
    line-height: 18px;
    overflow: hidden;
    display: none;
}

.drop_search .item_list {
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 9px 19px;
    transition: all 0.3s ease;
    display: block;
}

.content_banner .button {
    min-width: calc(50% - 10px);
}

.content {
    margin-bottom: 150px;
}

.footnote_title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 40px;
}

.flex_col {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
}

.flex_col .col {
    margin-right: 20px;
    width: calc(25% - 20px);
    background: var(--white);
    border-radius: 30px;
    border: 1px solid var(--grey2);
    box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.flex_col.delivery_flex .col:last-child {
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;

    & .button {
        display: block;
        width: 100%;
    }
}

.flex_col.delivery_flex .col:first-child {
    background: var(--button-color);
}

.flex_col .col .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.flex_col .col .num {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 48px;
    line-height: 60px;
}

.flex_col .col .wrap_text_col {
    margin-bottom: 30px;
    flex-grow: 1;

    & .title_col {
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 24px;
        line-height: 32px;
    }

    &:last-child {
        margin-bottom: 0;
    }
}

.flex_col .col .footer_col {
    display: flex;

    & .item_footer {
        width: 50%;

        &:first-child {
            padding-right: 10px;
        }

        & .title_f {
            margin-bottom: 10px;
            font-size: 15px;
            line-height: 18px;
        }
    }
}

.title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 30px;
}

.small_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
}

.calc_section .calc_wrap {
    margin: 0 auto;
    max-width: 1100px;
}

.calc_wrap {
    border: 1px solid var(--grey2);
    border-radius: 30px;
    box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);
    background: var(--white);
    padding: 50px;
}

.flex_content {
    display: flex;
    justify-content: space-between;

    & .col {
        width: calc(50% - 50px);
    }

    &:not(:last-child) {
        margin-bottom: 30px;
    }
}

.flex_content .nav_section .nav_selector {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: space-between;
    font-size: 15px;
    line-height: 18px;

    & nav {
        display: flex;
        align-items: center;
        margin-right: 20px;
        border-radius: 10px;
        border: 1px solid var(--grey);
    }

    & .btn {
        cursor: pointer;
        border-radius: 10px;
        padding: 11px 20px;
        transition: background 0.3s ease;
        margin: -1px 0;

        &.active {
            background: var(--button-color);
        }

        &:first-child {
            margin-left: -1px;
        }

        &:last-child {
            margin-right: -1px;
        }
    }

    & .item_el {
        border-radius: 10px;
        border: 1px solid var(--button-color);
        padding: 11px 20px;
        margin: -1px 20px 0 -1px;
        height: 40px;
        display: none;
        position: relative;
        text-align: center;
        min-width: 110px;

        & .del {
            position: absolute;
            cursor: pointer;
            width: 10px;
            height: 10px;
            top: 50%;
            transform: translateY(-50%);
            right: 20px;
            display: none;

            & svg {
                width: 100%;
                height: 100%;
                display: block;

                & path {
                    transition: all 0.3s ease;
                }
            }
        }
    }

    & .add {
        cursor: pointer;
        width: 30px;
        height: 30px;
        border-radius: 10px;
        border: 1px solid var(--button-color);
        transition: background-color 0.3s ease;
        display: none;
        align-items: center;
        justify-content: center;

        & svg {
            width: 10px;
            height: 10px;
            display: block;

            & path {
                transition: all 0.3s ease;
            }
        }
    }
}

.flex_content .nav_section .wrap_section.cloned .nav_selector .item_el {
    display: block;
    padding-right: 35px;
    min-width: 130px;
    margin: 0 20px 0 0;

    & .del {
        display: block;
    }
}

.flex_content .sections .wrap_section:not(:last-child) {
    margin-bottom: 30px;
}

.calc_wrap .drop_section {
    margin-bottom: 30px;
}

.calc_wrap .wrap_drop {
    &:not(:last-child) {
        margin-bottom: 20px;
    }

    & .label {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 5px;
    }

    & .drop_list {
        position: relative;

        & .name {
            padding-right: 50px;
            background: url(../icons/arrow_down.svg) right 20px center / contain no-repeat;
            background-size: 20px 20px;
        }

        & .list {
            position: absolute;
            left: 0;
            top: 100%;
            width: 100%;
            border: 1px solid var(--grey);
            border-radius: 10px;
            box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);
            background: var(--white);
            z-index: 1;
            font-size: 15px;
            line-height: 18px;
            overflow: hidden;
            display: none;
            padding-top: 0;
        }

        & .item_list {
            cursor: pointer;
            border-radius: 10px;
            border: 1px solid transparent;
            padding: 9px 19px;
            transition: all 0.3s ease;
            display: block;
        }
    }
}

.calc_wrap .footer.flex_content {
    padding-top: 30px;
    border-top: 1px solid var(--grey2);
    line-height: 24px;
    font-weight: 500;

    & .col {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;

        & span:first-child {
            margin-right: 10px;
        }
    }
}

.help_btn {
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    padding: 10px 9px 10px 34px;
    border-radius: 10px;
    border: 1px solid var(--button-color);
    background: url(../icons/avatar.svg) left 10px center / contain no-repeat;
    background-size: 20px 20px;
    transition: background-color 0.3s ease;
}

.drop_list:not(.city_select, .input) {
    position: relative;

    & .name {
        cursor: pointer;
        border: 1px solid var(--grey);
        font-size: 15px;
        line-height: 18px;
        color: var(--grey);
        padding: 11px 50px 11px 19px;
        border-radius: 10px;
        background: url(../icons/arrow_down.svg) right 20px center / contain no-repeat;
        background-size: 20px 20px;

        &.selected {
            color: var(--font-color);
        }

        &.error {
            border-color: var(--orange);
        }
    }
}

.calc_wrap .wrap_selector {
    margin-bottom: 20px;
}

.title_selector {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 10px;
}

.selector_checkbox {
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
    line-height: 18px;
    padding: 10px 0 0 10px;
    border-radius: 10px;
    box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);

    & .item_selector {
        cursor: pointer;
        border-radius: 10px;
        border: 1px solid var(--grey2);
        padding: 10px 9px;
        margin: 0 10px 10px 0;
        transition: border-color 0.3s ease;

        &.selected {
            border-color: var(--button-color);
        }
    }
}

.selector_multi {
    font-size: 15px;
    line-height: 20px;

    & .line {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;

        &:not(:last-child) {
            margin-bottom: 20px;
        }
    }

    & .item_selector {
        width: calc(50% - 10px);
        cursor: pointer;
        padding-left: 50px;
        position: relative;

        &:not(:last-child) {
            margin-right: 20px;
        }

        &::before {
            position: absolute;
            content: "";
            width: 40px;
            height: 20px;
            left: 0;
            top: 1px;
            border: 1px solid var(--grey);
            border-radius: 5px;
            transition: border-color 0.3s ease;
        }

        &::after {
            position: absolute;
            content: "";
            width: 20px;
            height: 20px;
            left: 0;
            top: 1px;
            border-radius: 5px;
            background: var(--grey);
            transition: all 0.3s ease;
        }

        &.active {
            &::before {
                border-color: var(--button-color);
            }

            &::after {
                background: var(--button-color);
                left: 20px;
            }
        }
    }
}

.selector_multi .fields {
    width: calc(50% - 10px);
    display: none;

    & .wrap_input:not(:last-child) {
        margin-bottom: 10px;
    }

    & .label {
        margin-bottom: 5px;
        font-size: 13px;
        line-height: 16px;
    }
}

.calc_wrap .input_section {
    max-width: 335px;
    margin-bottom: 20px;

    &:last-child {
        margin-bottom: 0;
    }
}

.calc_wrap .fields_flex {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;

    & .wrap_field {
        width: calc((100% / 3) - 10px);
        margin-right: 10px;
    }

    & .label {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 5px;
    }

    & .wrap_input {
        position: relative;

        & input {
            padding-right: 35px;
        }

        &::after {
            position: absolute;
            content: attr(data-label);
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 15px;
            line-height: 18px;
        }
    }
}

.footnote_fields {
    font-size: 13px;
    line-height: 16px;
    color: var(--grey);
    padding-top: 10px;
}


.tooltip {
    cursor: pointer;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../icons/warning.svg) center / contain no-repeat;
    vertical-align: middle;
    margin-top: -2px;
}

.map_scheme {
    width: 100%;
    height: 670px;
    background: var(--white) url(../img/map.webp) center / cover no-repeat;
    box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 20px;

    &::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: url(../img/map_roads.svg) center / contain no-repeat;
        height: calc(100% - 160px);
        width: calc(100% - 330px);
        z-index: 2;
    }

    & .city {
        position: absolute;
        z-index: 3;
        border: 1px solid var(--grey2);
        padding: 20px;
        border-radius: 30px;
        box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);
        background: var(--white);
        width: 400px;

        & .head {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        & .icon {
            width: 60px;
            height: 60px;
            background: url(../icons/pin_big.svg) center / contain no-repeat;
        }

        & .title {
            margin-bottom: 10px;
        }

        & a {
            color: var(--button-color);
            text-decoration: underline;
        }

        &.c1 {
            left: 40px;
            top: 40px;
        }

        &.c2 {
            left: 35%;
            top: 25%;
        }

        &.c3 {
            left: 43%;
            bottom: 40px;
            width: 410px;
        }

        &.c4 {
            right: 40px;
            top: 120px;
        }
    }
}

.content.dark_bg {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    border-radius: 50px;
    background: var(--footer_color);
    color: var(--white);
    font-size: 24px;
    line-height: 32px;

    & a {
        color: var(--button-color);
        text-decoration: underline;
    }

    & button {
        width: calc(50% - 10px);
        font-size: 24px;
        line-height: 32px;
    }
}

.content.dark_bg .col {
    width: calc(50% - 10px);

    &:first-child {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    &:last-child {
        border-radius: 30px;
        padding: 40px;
        background: var(--white);
        box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);

        & .flex_field {
            display: flex;
            margin-bottom: 40px;
        }

        & .wrap_input {
            width: calc(50% - 10px);

            &:not(:last-child) {
                margin-right: 20px;
            }

            & input {
                background: var(--body-color);
                padding: 19px 29px;
                font-size: 24px;
                line-height: 32px;

                &::placeholder {
                    font-size: 24px;
                    line-height: 32px;
                }
            }
        }

        & .label {
            color: var(--font-color);

        }
    }
}

footer {
    background: var(--footer_color);
    padding: 40px 0;
    border-radius: 50px 50px 0 0;
    color: var(--white);
    font-size: 24px;
    line-height: 32px;
}

footer .top_flex {
    display: flex;
    margin-bottom: 60px;
    margin-right: -20px;
}

footer .logo {
    display: block;
    width: calc(25% - 20px);
    margin-right: 20px;
    height: auto;
    background: url(../icons/logo_w.svg) left 0 center / contain no-repeat;
}

footer .wrap_form {
    width: calc(75% - 20px);
    margin-right: 20px;
}

.help-block {
    color: lightslategray;
    font-size: small;
}
.thanks {
    color: lightslategray;
    font-size: small;
}

footer form {
    display: flex;
    align-items: center;
    margin-right: -20px;

    & button {
        width: calc((100% / 3) - 20px);
        margin-right: 20px;
    }

    & .form-group {
        width: calc((100% / 3) - 20px);
        margin-right: 20px;

        & input[type="text"] {
            font-size: 24px;
            line-height: 32px;
            padding: 19px 29px;
            color: var(--white);

            &::placeholder {
                font-size: 24px;
                line-height: 32px;
                color: var(--white);
            }
        }
    }
}

.footer_menu {
    display: flex;
    margin-bottom: 20px;
}

.footer_menu .col_menu {
    width: calc(50% - 10px);

    &:first-child {
        margin-right: 20px;
        column-count: 2;
        column-gap: 20px;
    }

    & a {
        display: block;
        margin-bottom: 20px;
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-color: transparent;
        transition: all 0.3s ease;
    }

    &:last-child a {
        display: flex;
        align-items: center;

        & svg {
            width: 20px;
            min-width: 20px;
            height: 20px;
            margin-right: 10px;

            & path {
                transition: all 0.3s ease;
            }
        }
    }
}

footer .footnote_footer {
    display: flex;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--grey);
    color: var(--grey);
    font-size: 15px;
    line-height: 20px;

    & a {
        display: block;
        transition: color 0.3s ease;
        width: calc(25% - 15px);

        &:not(:last-child) {
            margin-right: 20px;
        }
    }
}

.fixed_buttons {
    text-align: right;
}

.scroll_top {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    background: var(--white) url(../icons/arrow_up.svg) center / contain no-repeat;
    background-size: 40px 40px;
    bottom: 50px;
    display: inline;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 4;
    margin-left: -60px;
    border: 1px solid var(--footer_color);

    &.active {
        opacity: 1;
        visibility: visible;
    }
}

.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(249, 253, 255, 0.5);
    z-index: 7;
}

.popup .wrap_popup {
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 100px 0;
}

.content_popup {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.content_popup .close {
    width: 40px;
    height: 40px;
    position: absolute;
    cursor: pointer;
    top: 30px;
    right: 30px;
    border-radius: 10px;
    border: 1px solid var(--button-color);
    background: url(../icons/close.svg) center / contain no-repeat;
    background-size: 20px 20px;
    transition: background-color 0.3s ease;
}

.menu_btn {
    display: none;
}

.mobile_el {
    display: none;
}

.popup .mobile_nav {
    display: none;
}

.map_popup {
    border-radius: 30px;
    padding: 50px;
    border: 1px solid var(--grey2);
    background: var(--white);
    box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);

    & .title {
        margin-bottom: 20px;
    }

    & .footnote_title {
        font-size: 15px;
        line-height: 20px;
    }

    & .wrap_map {
        border-radius: 30px;
        overflow: hidden;
        width: 100%;
        height: 600px;
    }
}

.tooltip_text {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--grey);
    background: var(--white);
    position: fixed;
    z-index: 7;
    max-width: 300px;
    box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);
}

ul:not(.breadcrumbs) {
    padding-left: 20px;
    &:not(:last-child) {
        margin-bottom: 25px;
    }
    & li:not(:last-child) {
        margin-bottom: 15px;
    }
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 20px;
    & li {
        list-style: none;

        &:not(:last-child) {
            margin-right: 10px;
        }

        & a {
            padding-right: 30px;
            transition: all 0.3s ease;
            position: relative;
            color: var(--grey);

            & svg {
                width: 20px;
                height: 20px;
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
            }
        }
    }
}

.slide_list {
    border-radius: 30px;
    border: 1px solid var(--grey);

    &:not(:last-child) {
        margin-bottom: 20px;
    }

    &.active {
        border-color: var(--button-color);

        & .name::after {
            transform: translateY(-50%) rotate(180deg);
        }
    }

    & .name {
        cursor: pointer;
        padding: 20px 60px 20px 30px;
        font-size: 24px;
        line-height: 32px;
        position: relative;

        &::after {
            position: absolute;
            content: "";
            width: 20px;
            height: 20px;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            background: url(../icons/arrow_down.svg) center / contain no-repeat;
        }
    }

    & .list {
        padding: 0 30px 20px 30px;
        font-size: 15px;
        line-height: 20px;
        display: none;
    }
}

.tab_nav {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-right: -10px;
    font-size: 24px;
    line-height: 32px;

    & .item_tab {
        cursor: pointer;
        margin: 0 10px 20px 0;
        border-radius: 10px;
        border: 1px solid var(--grey);
        transition: all 0.3s ease;
        background: var(--white);
        padding: 19px 29px;

        &.active {
            border-color: var(--button-color);
        }
    }
}


.tabs {
    & .tab:not(:first-child) {
        display: none;
    }
}

.doc_list {
    font-size: 24px;
    line-height: 32px;

    & a {
        display: block;
        padding: 14px 68px 14px 0;
        min-height: 60px;
        background: url(../icons/doc.svg) right 0 center / contain no-repeat;
        background-size: 48px 60px;
        transition: all 0.3s ease;

        &:not(:last-child) {
            margin-bottom: 40px;
        }
    }

    &.pdf_list {
        & a {
            background: url(../icons/pdf.svg) right 0 center / contain no-repeat;
            background-size: 48px 60px;
        }
    }
}

.section {
    border-radius: 30px;
    box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);
    background: var(--white);
    padding: 60px;

    &:not(:last-child) {
        margin-bottom: 40px;
    }
}

.map_scheme.small {
    margin-bottom: 40px;

    & .city {
        width: auto;
        text-align: center;

        & .icon {
            margin-bottom: 10px;
            display: inline-block;
        }

        &.c1 {
            left: 207px;
            top: 70px;
        }

        &.c2 {
            left: 44%;
            top: 28%;
        }

        &.c3 {
            left: 49%;
            bottom: 70px;
        }

        &.c4 {
            right: 152px;
            top: 144px;
        }
    }

    &::before {
        background: url(../img/map_roads2.svg) center / contain no-repeat;
    }
}

.section .flex_wrap {
    display: flex;
    align-items: flex-end;

    & .button {
        width: 350px;
    }

    & .wrap_input {
        margin-right: 20px;
        width: calc(50% - 185px);
    }
}

.wrap_table {
    padding-top: 20px;
}

.table {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    hyphens: auto;
}

.table_title {
    display: none;
}

.table .tr {
    display: flex;
}

.table .head {
    font-weight: 500;
    color: var(--button-color);

    & .td {
        padding-top: 20px;
    }
}

.table .td {
    width: 25%;
    padding: 10px 20px;

    &:nth-child(odd) {
        background: var(--body-color);
    }

    &:nth-child(even) {
        background: var(--active-nav);
    }
}

.table .item_table:last-child .tr .td {
    padding-bottom: 20px;
}

.table .item_table .name {
    display: none;
}

.pagination {
    display: flex;
    justify-content: center;
}

.content.contacts {
    padding-top: 20px;
}

.tab .text_section {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 40px;

    & .item_text {
        padding-left: 30px;

        &:not(:last-child) {
            margin-bottom: 20px;
        }

        &.address {
            background: url(../icons/pin.svg) left 0 center / contain no-repeat;
            background-size: 20px 20px;
        }

        &.time {
            background: url(../icons/time.svg) left 0 center / contain no-repeat;
            background-size: 20px 20px;
        }

        &.phone {
            background: url(../icons/phone.svg) left 0 center / contain no-repeat;
            background-size: 20px 20px;
        }

        &.mail {
            background: url(../icons/mail.svg) left 0 center / contain no-repeat;
            background-size: 20px 20px;
        }
    }

    & a {
        transition: all 0.3s ease;
    }
}

.map_tab {
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    height: 600px;
}

.table.col_5 .td {
    width: calc(100% / 5);
}

@media (min-width: 993px) {
    .wrap_menu .top_menu a:not(.button):hover {
        color: var(--button-color);
    }

    .main_menu a:hover {
        color: var(--button-color);
        text-decoration-color: var(--button-color);
    }

    .wrap_drop .list a:hover {
        border-color: var(--button-color);
        text-decoration: none;
        color: var(--font-color);
    }

    .main_menu .wrap_drop:hover .list {
        display: block;
    }

    .drop_search .item_list:hover {
        border-color: var(--button-color);
    }

    .scroll_wrap::-webkit-scrollbar-thumb {
        width: 4px;
        background: var(--button-color);
    }

    .scroll_wrap::-webkit-scrollbar {
        width: 4px;
    }

    .droplist .list .item_list:hover {
        border-color: var(--button-color);
    }

    .button:hover, button:hover {
        border-color: var(--button-color);

        &.blue {
            background: var(--white);
        }
    }

    .calc_wrap .wrap_drop .item_list:hover {
        border-color: var(--button-color);
    }

    .help_btn:hover {
        background-color: var(--button-color);
    }

    .footer_menu .col_menu a:hover {
        color: var(--button-color);
        text-decoration-color: var(--button-color);
    }

    footer .footnote_footer a:hover {
        color: var(--white);
    }

    .content_popup .close:hover {
        background-color: var(--button-color);
    }

    .flex_content .nav_section .nav_selector {
        & .add:hover {
            background-color: var(--button-color);

            & svg path {
                stroke: var(--font-color);
            }
        }
    }

    .nav_selector .item_el .del:hover {
        & svg path {
            stroke: var(--font-color);
        }
    }

    .breadcrumbs a:hover {
        color: var(--button-color);

        & svg path {
            fill: var(--button-color);
        }
    }

    .doc_list a:hover {
        color: var(--button-color);
    }

    .tab .text_section a:hover {
        color: var(--button-color);
    }

    @-moz-document url-prefix() {
        .scroll_wrap {
            scrollbar-color: var(--button-color) transparent;
        }
    }
}

@media (max-width: 1620px) {
    body {
        font-size: 18px;
        line-height: 20px;
    }

    .wrap {
        padding: 0 50px;
    }

    header .logo {
        margin-right: 50px;
        height: 94.4px;
        width: 265px;
    }

    .main_menu {
        font-size: 18px;
        line-height: 20px;
    }

    .wrap_menu .top_menu {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .button, button {
        font-size: 18px;
        line-height: 20px;
    }

    .wrap_menu {
        width: calc(100% - 315px);
    }

    .main_banner {
        border-radius: 30px;
        margin-bottom: 90px;
        padding: 100px 40px;
    }

    h1 {
        font-size: 40px;
        line-height: 45px;
    }

    h4 {
        font-size: 40px;
        line-height: 45px;
    }

    .content_banner {
        & h1 {
            margin-bottom: 30px;
        }
    }

    .drop_search {
        & input {
            font-size: 18px;
            line-height: 20px;
            padding: 16px 59px 16px 19px;

            &::placeholder {
                font-size: 18px;
                line-height: 20px;
            }
        }
    }

    .button.big_button, button.big_button {
        font-size: 20px;
        line-height: 24px;
        padding: 14px 19px;
    }

    .content_banner .flex_wrap {
        margin-bottom: 30px;
    }

    .footnote_title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .flex_col .col .wrap_text_col {
        & .title_col {
            font-size: 20px;
            line-height: 24px;
        }
    }

    .flex_col .col {
        border-radius: 25px;
        padding: 25px;
    }

    .flex_col .col .icon {
        width: 50px;
        height: 50px;
    }

    .content {
        margin-bottom: 100px;
    }

    .calc_wrap {
        border-radius: 25px;
        padding: 40px;
    }

    .map_scheme {
        border-radius: 25px;
        height: 540px;

        & .city {
            width: 350px;

            & .icon {
                width: 50px;
                height: 50px;
            }

            &.c1 {
                left: 30px;
                top: 30px;
            }

            &.c2 {
                top: 15%;
            }

            &.c3 {
                bottom: 30px;
                width: 350px;
            }

            &.c4 {
                right: 30px;
            }
        }
    }

    .content.dark_bg {
        padding: 40px;
        border-radius: 30px;
        font-size: 20px;
        line-height: 24px;

        & button {
            font-size: 20px;
            line-height: 24px;
            padding: 14px 19px;
        }
    }

    .flex_col .col .num {
        font-size: 40px;
        line-height: 50px;
    }

    .content.dark_bg .col {
        &:last-child {
            border-radius: 25px;
            padding: 30px;

            & .flex_field {
                margin-bottom: 30px;
            }

            & .wrap_input {
                & input {
                    font-size: 20px;
                    line-height: 24px;
                    padding: 14px 19px;

                    &::placeholder {
                        font-size: 20px;
                        line-height: 24px;
                    }
                }
            }
        }
    }

    footer {
        padding: 30px 0;
        border-radius: 40px 40px 0 0;
        font-size: 20px;
        line-height: 24px;
    }

    footer form {
        & input[type="text"] {
            font-size: 20px;
            line-height: 24px;
            padding: 14px 19px;

            &::placeholder {
                font-size: 20px;
                line-height: 24px;
            }
        }
    }

    footer .top_flex {
        margin-bottom: 45px;
    }

    .footer_menu .col_menu {
        & a {
            margin-bottom: 15px;
        }
    }

    .footer_menu {
        margin-bottom: 15px;
    }

    footer .footnote_footer {
        padding-top: 30px;
    }

    .popup .wrap_popup {
        padding: 50px 0;
    }

    .scroll_top {
        width: 50px;
        height: 50px;
        background-size: 30px 30px;
        margin-left: -50px;
    }

    .map_popup {
        & .wrap_map {
            height: 400px;
        }
    }

    .tab_nav {
        font-size: 20px;
        line-height: 24px;

        & .item_tab {
            padding: 14px 19px;
        }
    }

    .doc_list {
        font-size: 20px;
        line-height: 24px;

        & a {
            min-height: 50px;
            padding-top: 13px;
            padding-bottom: 13px;
            background-size: 40px 50px;

            &:not(:last-child) {
                margin-bottom: 30px;
            }
        }

        &.pdf_list {
            & a {
                background-size: 40px 50px;
            }
        }
    }

    .map_scheme.small {
        & .city {
            &.c1 {
                left: 120px;
                top: 20px;
            }

            &.c3 {
                bottom: 20px;
                width: auto;
            }

            &.c4 {
                right: 152px;
                top: 144px;
            }
        }
    }

    .section {
        border-radius: 25px;
    }

    .table {
        border-radius: 25px;
    }

    .map_tab {
        height: 400px;
    }
}

@media (max-width: 1270px) {
    .wrap_menu .phone {
        font-size: 0;
        line-height: 0;
        width: 20px;
        min-width: 20px;
        height: 20px;
        padding: 0;
        background: url(../icons/phone.svg) center / contain no-repeat;
    }

    .wrap_menu .mail {
        font-size: 0;
        line-height: 0;
        width: 20px;
        min-width: 20px;
        height: 20px;
        padding: 0;
        background: url(../icons/mail.svg) center / contain no-repeat;
    }

    .wrap_menu .time span {
        display: none;
    }

    header .logo {
        margin-right: 30px;
        width: 180px;
        height: 65px;
    }

    .wrap_menu {
        width: calc(100% - 210px);
    }

    .button, button {
        padding: 9px 12px;
    }

    .main_menu {
        font-size: 16px;
    }

    header {
        margin-bottom: 10px;
    }

    body {
        font-size: 16px;
    }

    .flex_col .col {
        padding: 20px;
    }

    .button.big_button, button.big_button {
        font-size: 18px;
        line-height: 20px;
    }

    .main_banner {
        margin-bottom: 60px;
    }

    .content {
        margin-bottom: 80px;
    }

    .map_scheme {
        & .city {
            width: 300px;
            padding: 15px;

            &.c1 {
                left: 10px;
                top: 10px;
            }

            &.c2 {
                top: 15%;
            }

            &.c3 {
                bottom: 10px;
                width: 300px;
            }

            &.c4 {
                right: 10px;
            }

            & .icon {
                width: 35px;
                height: 35px;
            }
        }
    }

    .title {
        font-size: 20px;
        line-height: 25px;
    }

    .content.dark_bg {
        padding: 30px;

        & button {
            padding: 9px 14px;
        }
    }

    .content.dark_bg .col {
        &:last-child {
            padding: 20px;

            & .wrap_input {
                & input {
                    padding: 9px 14px;
                }
            }

            & .flex_field {
                margin-bottom: 25px;
            }
        }
    }

    footer form {
        & input[type="text"] {
            font-size: 18px;
            line-height: 20px;

            &::placeholder {
                font-size: 18px;
                line-height: 20px;
            }
        }
    }

    .tab_nav {
        font-size: 18px;
        line-height: 20px;
    }

    .doc_list {
        font-size: 18px;
        line-height: 20px;

        & a {
            min-height: 46px;
            background-size: 38px 46px;

            &:not(:last-child) {
                margin-bottom: 25px;
            }
        }

        &.pdf_list {
            & a {
                background-size: 38px 46px;
            }
        }
    }

    .map_scheme.small {
        & .city {
            &.c1 {
                top: 65px;
            }

            &.c2 {
                left: 41%;
                top: 31%;
            }

            &.c3 {
                bottom: 55px;
                left: 47%;
            }

            &.c4 {
                right: 152px;
                top: 144px;
            }
        }
    }
}

@media (max-width: 1070px) {
    .wrap {
        padding: 0 30px;
    }

    .map_scheme {
        & .city {
            width: 280px;
            padding: 15px;

            &.c1 {
                left: 10px;
                top: 10px;
            }

            &.c2 {
                top: 15%;
            }

            &.c3 {
                bottom: 10px;
                width: 300px;
            }

            &.c4 {
                right: 10px;
            }

            & .icon {
                width: 35px;
                height: 35px;
            }
        }
    }

    .content.dark_bg {
        & button {
            font-size: 18px;
            line-height: 20px;
        }
    }

    .content.dark_bg .col {
        &:last-child {
            & .wrap_input {
                & input {
                    font-size: 18px;
                    line-height: 20px;

                    &::placeholder {
                        font-size: 18px;
                        line-height: 20px;
                    }
                }
            }
        }
    }

    footer {
        font-size: 18px;
        line-height: 20px;
    }

    footer .top_flex {
        margin-bottom: 30px;
    }

    footer .footnote_footer {
        padding-top: 20px;
    }

    .scroll_top {
        width: 40px;
        height: 40px;
        margin-left: -40px;
        background-size: 25px 25px;
    }
}

@media (max-width: 992px) {
    .wrap {
        padding: 0 20px;
    }

    header .logo {
        margin-right: 20px;
        width: 150px;
        height: 55px;
        position: relative;
        z-index: 2;
    }

    .main_banner {
        margin-bottom: 80px;
        border-radius: 0;
        padding: 0;

        & img {
            display: none;
        }
    }

    .wrap_banner {
        display: block;
    }

    .content_banner {
        padding: 20px;
        max-width: unset;
    }

    h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .content_banner .flex_wrap {
        display: block;

        & .wrap_input {
            width: 100%;

            &:not(:last-child) {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }
    }

    .drop_search {
        & input {
            font-size: 24px;
            line-height: 32px;
            padding: 19px 49px 19px 19px;

            &::placeholder {
                font-size: 24px;
                line-height: 32px;
            }
        }
    }

    .button.big_button, button.big_button {
        font-size: 24px;
        line-height: 32px;
        padding: 19px 25px;
    }

    .content_banner .button {
        display: block;
    }

    h4 {
        font-size: 30px;
        line-height: 36px;
    }

    .footnote_title {
        line-height: 28px;
        margin-bottom: 40px;
    }

    .flex_col {
        display: block;
        margin-right: 0;
    }

    .flex_col .col {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        border-radius: 30px;

        &:last-child {
            margin-bottom: 0;
        }
    }

    .flex_col .col .icon {
        width: 60px;
        height: 60px;
    }

    .flex_col .col .wrap_text_col {
        & .title_col {
            font-size: 24px;
            line-height: 32px;
        }
    }

    body {
        font-size: 20px;
        line-height: 28px;
    }

    .flex_col .col .footer_col {
        font-size: 15px;
        line-height: 18px;
    }

    .flex_col.delivery_flex .col:last-child {
        display: block;
    }

    .calc_section .calc_wrap {
        border-radius: 30px;
        padding: 20px;
    }

    .title {
        font-size: 30px;
        line-height: 36px;
    }

    .flex_content {
        display: block;

        & .col {
            width: 100%;

            &:first-child {
                margin-bottom: 30px;
            }
        }
    }

    .small_title {
        margin-bottom: 30px;
    }

    .calc_wrap .wrap_drop {
        &:not(:last-child) {
            margin-bottom: 30px;
        }
    }

    .title_selector {
        margin-bottom: 20px;
    }

    .calc_wrap .fields_flex {
        margin-bottom: -20px;

        & .wrap_field {
            width: 105px;
            margin-bottom: 20px;
        }
    }

    .footnote_fields {
        padding-top: 20px;
    }

    .selector_checkbox {
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .calc_wrap .wrap_selector:last-child {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 0;

        & .title_selector {
            margin-bottom: 0;
        }
    }

    .selector_multi {
        & .line {
            display: block;

            &:not(:last-child) {
                margin-bottom: 30px;
            }
        }

        & .item_selector {
            width: auto;
            margin-bottom: 30px;

            &:last-child {
                margin-bottom: 0;
            }

            &:not(:last-child) {
                margin-right: 0;
            }
        }
    }

    .selector_multi .fields {
        width: auto;
        margin-bottom: 30px;
    }

    .calc_wrap .footer.flex_content {
        & .col {
            display: block;

            & span {
                display: block;
            }

            & span:first-child {
                margin-bottom: 20px;
                margin-right: 0;
            }

            & .help_btn {
                margin-bottom: 30px;
            }

            & button {
                display: block;
                width: 100%;
            }
        }
    }

    .map_scheme {
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;

        &::before {
            display: none;
        }

        & .city {
            position: static;
            width: 100%;
            margin-bottom: 20px;
            padding: 20px;

            &.c3 {
                width: 100%;
            }

            & .icon {
                width: 60px;
                height: 60px;
            }

            & .title {
                font-size: 24px;
                line-height: 32px;
            }

            &:last-child {
                margin-bottom: 0;
            }
        }
    }

    .content.dark_bg {
        display: block;
        padding: 20px;

        & .footnote_title {
            margin-bottom: 20px;
        }

        & a {
            display: block;
        }

        & button {
            font-size: 24px;
            line-height: 32px;
            padding: 19px 29px;
            display: block;
            width: 100%;
        }
    }

    .content.dark_bg .col {
        width: auto;

        &:first-child {
            margin-bottom: 30px;
        }

        &:last-child {
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            background: none;

            & .label {
                color: var(--white);
            }

            & .flex_field {
                display: block;
                margin-bottom: 30px;
            }

            & .wrap_input {
                width: 100%;

                &:not(:last-child) {
                    margin-right: 0;
                    margin-bottom: 20px;
                }

                & input {
                    font-size: 24px;
                    line-height: 32px;
                    padding: 19px 29px;

                    &::placeholder {
                        font-size: 24px;
                        line-height: 32px;
                    }
                }
            }
        }
    }

    .flex_col .col .num {
        font-size: 48px;
        line-height: 60px;
    }

    footer {
        border-radius: 20px 20px 0 0;
        padding: 20px 0;
        font-size: 24px;
        line-height: 32px;
    }

    footer .top_flex {
        display: block;
        margin-right: 0;
    }

    footer .logo {
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
        background: url(../icons/logo_w_m.svg) center / contain no-repeat;

        &::after {
            display: block;
            content: "";
            padding-top: calc(100% - 227px);
        }
    }

    footer .wrap_form {
        width: auto;
        margin-right: 0;
    }

    footer form {
        display: block;
        margin-right: 0;

        & input[type="text"] {
            margin: 0 0 30px 0;
            width: 100%;
            font-size: 24px;
            line-height: 32px;
            padding: 19px 29px;

            &::placeholder {
                font-size: 24px;
                line-height: 32px;
            }
        }

        & button {
            margin-right: 0;
            width: 100%;
        }
    }

    .footer_menu {
        display: block;
        padding-top: 30px;
        border-top: 1px solid var(--grey);
    }

    .footer_menu .col_menu {
        width: auto;

        &:first-child {
            margin-right: 0;
            column-count: unset;
            column-gap: unset;
            margin-bottom: 30px;
        }

        & a {
            margin-bottom: 30px;
        }

        &:last-child {
            font-size: 20px;
            line-height: 32px;
            padding-top: 30px;
            border-top: 1px solid var(--grey);

            & a {
                margin-bottom: 20px;
            }
        }
    }

    footer .footnote_footer {
        border-top: 0;
        padding-top: 10px;
        display: block;

        & a {
            width: auto;

            &:not(:last-child) {
                margin: 0 0 20px 0;
            }
        }
    }

    .scroll_top {
        width: 60px;
        height: 60px;
        margin-left: 0;
        right: 20px;
        background-size: 40px 40px;
    }

    .mobile_el {
        display: block;
    }

    .menu_btn {
        display: block;
        cursor: pointer;
        width: 40px;
        height: 40px;
        position: relative;
        z-index: 2;

        & span {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 3px;
            border-bottom: 3px solid var(--font-color);
        }

        &::before {
            position: absolute;
            content: "";
            left: 50%;
            top: 9px;
            transform: translateX(-50%);
            width: 30px;
            height: 3px;
            border-bottom: 3px solid var(--font-color);
            transition: all 0.3s ease;
        }

        &::after {
            position: absolute;
            content: "";
            left: 50%;
            bottom: 9px;
            transform: translateX(-50%);
            width: 30px;
            height: 3px;
            border-bottom: 3px solid var(--font-color);
            transition: all 0.3s ease;
        }

        &.active {
            & span {
                display: none;
            }

            &::before {
                top: 50%;
                transform: translate(-50%, -50%) rotate(45deg);
            }

            &::after {
                bottom: unset;
                top: 50%;
                transform: translate(-50%, -50%) rotate(-45deg);
            }
        }
    }

    header .wrap {
        justify-content: space-between;

        & .button.mobile_el {
            margin-right: 20px;
            position: relative;
            z-index: 2;
        }
    }

    .button, button {
        font-size: 15px;
        line-height: 20px;
        padding: 5px 9px;
    }

    .wrap_menu {
        position: fixed;
        left: 0;
        top: 0;
        background: var(--white);
        width: 100%;
        height: 100%;
        padding-top: 85px;
        padding-bottom: 20px;
        z-index: 1;
        display: none;

        & .menu {
            max-height: 100%;
            overflow: hidden;
            overflow-y: auto;
            display: block;
            padding: 0 20px;
        }
    }

    .wrap_menu .top_menu {
        display: block;
        padding-bottom: 0;
        padding-top: 20px;
        margin-bottom: 0;
        border-bottom: 0;
        border-top: 1px solid var(--button-color);
    }

    .main_menu {
        display: block;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .main_menu a {
        &:not(:last-child) {
            margin-right: 0;
            margin-bottom: 20px;
        }
    }

    .main_menu a.drop {
        display: inline-block;
    }

    .main_menu .wrap_drop {
        margin-right: 0;
        margin-bottom: 20px;

        & a {
            margin-bottom: 0;
        }

        & .list {
            position: static;
            width: auto;
            padding-top: 20px;
            font-size: 20px;
            line-height: 24px;

            & .scroll_wrap {
                background: none;
                border-radius: 0;
                overflow: unset;
                max-height: unset;
                padding-left: 20px;
            }

            & a {
                border-radius: 0;
                border: 0;
                padding: 0;

                &:not(:last-child) {
                    margin-bottom: 20px;
                }
            }
        }
    }

    .wrap_menu .top_menu .button {
        display: none;
    }

    .wrap_menu .city_select {
        margin-right: 0;
        display: inline-block;
        margin-bottom: 20px;
        background: url(../icons/pin.svg) left 0 top 0 / contain no-repeat;
        background-size: 20px 20px;
    }

    .wrap_menu .time {
        margin-right: 0;
        margin-bottom: 20px;
        display: flex;
        align-items: center;

        & span {
            display: block;
            white-space: nowrap;
            margin-right: 10px;
        }
    }

    .wrap_menu .phone {
        font-size: 15px;
        line-height: 20px;
        width: auto;
        background: url(../icons/phone.svg) left 0 center / contain no-repeat;
        background-size: 20px 20px;
        padding-left: 30px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .wrap_menu .mail {
        font-size: 15px;
        line-height: 20px;
        width: auto;
        padding-left: 30px;
        margin-right: 0;
        margin-bottom: 20px;
        background: url(../icons/mail.svg) left 0 center / contain no-repeat;
        background-size: 20px 20px;
    }

    .popup .wrap_popup {
        padding: 0;
        height: 100%;
    }

    .popup .calc_wrap {
        border-radius: 30px;
        padding: 80px 20px 20px 20px;
    }

    .content_popup .close {
        top: 20px;
        right: 20px;
        position: fixed;
    }

    .popup .nav_section {
        display: none;
    }

    .popup .flex_content:not(.footer) .col:nth-child(2) {
        display: none;
    }

    .popup .calc_wrap .footer.flex_content {
        display: none;
        border-top: 0;
        padding-top: 0;

        & .col:first-child {
            margin-bottom: 30px;
        }
    }

    .popup {
        align-items: flex-start;
    }

    .popup .mobile_nav {
        padding-top: 30px;

        & .button {
            display: block;
            font-size: 20px;
            line-height: 24px;
            padding: 19px 29px;

            &:last-child {
                margin-top: 30px;
                display: none;

                &.active {
                    display: block;
                }
            }
        }
    }

    .popup .flex_content {
        margin-bottom: 0;

        & .col {
            &:first-child {
                margin-bottom: 0;
            }
        }
    }

    .popup .calc_wrap .drop_section {
        margin-bottom: 0;
    }

    .content_popup {
        overflow: unset;
    }

    .droplist.city_select .list {
        position: static;
        width: auto;
        padding-top: 20px;
        font-size: 20px;
        line-height: 24px;
        border-radius: 0;
        border: 0;
        box-shadow: none;

        & .scroll_wrap {
            max-height: unset;
        }

        & .item_list {
            border-radius: 0;
            padding: 0;
            margin-bottom: 20px;
        }
    }

    .map_popup {
        border-radius: 0;
        padding: 80px 20px 20px 20px;
    }

    .map_popup {
        display: flex;
        flex-direction: column;
        height: 100%;

        & .footnote_title {
            font-size: 20px;
            line-height: 28px;
        }

        & .wrap_map {
            height: auto;
            flex-grow: 1;
        }
    }

    #map_popup .content_popup {
        height: 100%;
    }

    .tooltip_text {
        left: 20px;
        width: calc(100vw - 40px);
        max-width: unset;
        font-size: 14px;

        & .close {
            width: 20px;
            height: 20px;
            position: absolute;
            cursor: pointer;
            top: -5px;
            right: -5px;
            border-radius: 5px;
            border: 1px solid var(--button-color);
            background: var(--white) url(../icons/close.svg) center / contain no-repeat;
            background-size: 10px 12px;
        }
    }

    .slide_list {
        & .name {
            font-size: 20px;
            line-height: 28px;
        }
    }

    .tab_nav {
        margin-bottom: 30px;
        font-size: 20px;
        line-height: 28px;

        & .item_tab {
            margin-bottom: 10px;
            padding: 9px;
        }
    }

    .doc_list {
        font-size: 20px;
        line-height: 28px;

        & a {
            min-height: 60px;
            padding: 0 68px 0 0;
            background: url(../icons/doc.svg) right 0 top 0 / contain no-repeat;
            background-size: 48px 60px;

            &:not(:last-child) {
                margin-bottom: 40px;
            }
        }

        &.pdf_list {
            padding-top: 40px;

            & a {
                background: url(../icons/pdf.svg) right 0 top 0 / contain no-repeat;
                background-size: 48px 60px;
            }
        }
    }

    .map_scheme.small {
        display: none;
    }

    .section {
        border-radius: 0;
        background: none;
        padding: 0;
        box-shadow: none;
    }

    .section .flex_wrap {
        display: block;
        border-radius: 30px;
        background: var(--white);
        box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);
        padding: 20px;

        & .wrap_input {
            margin-right: 0;
            margin-bottom: 20px;
            width: 100%;
        }

        & .button {
            width: 100%;
        }
    }

    .table {
        border-radius: 30px;
        padding: 20px 0;
        background: var(--white);
        box-shadow: 3px 3px 10px 0px rgba(204, 204, 204, 0.2);
        text-align: left;
    }

    .table .td {
        padding: 0;
        width: auto;

        &:nth-child(odd) {
            background: none;
        }

        &:nth-child(even) {
            background: none;
        }

        &:not(:last-child) {
            margin-bottom: 20px;
        }

        &:nth-child(2) {
            display: none;
        }

        &::before {
            display: block;
            content: attr(data-label);
            font-weight: 500;
            color: var(--button-color);
            margin-bottom: 20px;
        }
    }

    .table .tr.head {
        display: none;
    }

    .table_title {
        display: block;
        font-weight: 500;
        font-size: 24px;
        line-height: 32px;
        color: var(--button-color);
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .table .tr {
        display: none;
        padding: 20px 20px 20px 50px;
    }

    .item_table {
        margin-bottom: 20px;
    }

    .table .item_table .name {
        display: block;
        padding: 10px 50px 10px 20px;
        position: relative;

        &::after {
            position: absolute;
            content: "";
            width: 20px;
            height: 20px;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: url(../icons/arrow_down.svg) center / contain no-repeat;
        }

        &.active::after {
            transform: translateY(-50%) rotate(180deg);
        }
    }

    .pagination {
        display: block;

        & .button {
            display: block;
        }
    }

    .contacts .tab_nav {
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
        margin-right: 0;
        margin-bottom: 40px;

        & .item_tab {
            margin-bottom: 0;
        }
    }

    .contacts .tab_nav::-webkit-scrollbar-thumb {
        height: 0;
        background: transparent;
    }

    .contacts .tab_nav::-webkit-scrollbar {
        height: 0;
        background: transparent;
    }

    @-moz-document url-prefix() {
        .contacts .tab_nav {
            scrollbar-color: transparent transparent;
        }
    }
    .tab .text_section {
        font-weight: 400;
        font-size: 15px;
        line-height: 20px;
    }
}