* {
    box-sizing: border-box;
}
html, body {
    min-width: 320px;
}
body {
    font-family: 'TT Norms Pro';
    font-weight: normal;
    font-size: 13px;
    color: #555;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    min-height: 100%;
    background: #fff;
}
@media screen and (max-width: 767px) {
    body.body_overflow_mobile {
        overflow: hidden;
    }
}

.hidden {
    display: none !important;
}

#page-frame {
    flex: 1 1 auto;
    display: flex;
    flex-flow: column nowrap;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}
#page-frame__wrapper {
    display: flex;
}
#page-frame__content {
    flex: 1 1 auto;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 3;
}

#header {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    right: 0;
    min-width: 320px;
    background: #fff;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}
.header-top {
    background: #0000be;
}
.header-top__inner {
    padding-top: 2px;
}
.nav-top {
    display: flex;
}
.nav-top__link {
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 4px 4px 0 0;
    flex: 1 1 auto;
    white-space: nowrap;
}
.nav-top__link:hover {
    color: #fff;
}
.nav-top__link_active {
    background: #fff;
    color: #0000be;
    font-weight: bold;
}
.nav-top__link_active:hover {
    color: #0000be;
}
@media screen and (min-width: 768px) {
    #header {
        position: absolute;
        box-shadow: none;
    }
    #header.header_light {
        position: fixed;
        /*box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);*/
    }
    .nav-top__link {
        padding: 10px 24px;
        height: 35px;
        flex: 0 0 auto;
        font-size: 14px;
    }
    #header.header_shadow:not(.header_light) .nav-main {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        min-width: 320px;
        box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    }
    #header.header_shadow:not(.header_light) .nav-main:after {
        opacity: 0;
    }
    #header.header_shadow:not(.header_light) .nav-main__inner {
        padding-left: 70px;
    }
    #header.header_shadow:not(.header_light) .header-logo {
        position: fixed;
        top: 12px;
        z-index: 15;
    }
    #header.header_shadow:not(.header_light) .header-logo__img {
        max-height: 24px;
    }
}

.header-main {}
.header-main__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding-right: 40px;
    position: relative;
}

.header-logo {
    flex: 0 0 auto;
    margin-right: 24px;
    position: relative;
    z-index: 5;
}
.header-logo__img {
    width: auto;
    max-height: 27px;
}

.header-phones {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex: 1 1 auto;
    max-width: 45%;
}
.header-phones__item {
    margin: 0 8px;
}
.header-phones__link {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0000be;
    line-height: 1.2;
}
.header-phones__link:after {
    content: '\e971';
    font-family: "vm-icons";
    font-style: normal;
    line-height: 1;
    font-weight: 400;
    speak: none;
    margin-left: 2px;
}
.header-phones__helper {
    font-size: 12px;
    line-height: 1.1;
    font-weight: normal;
    color: #555;
    max-width: 98px;
}

.header-search {
    width: 250px;
    flex: 0 0 auto;
    position: relative;
}
.header-search__control {
    border-radius: 4px;
    border: 0;
    height: 45px;
    padding: 8px 15px 8px 43px;
    font-size: 14px;
    font-weight: 300;
    border-bottom: 3px solid #e9e9e9;
    background: #f3f3f3;
    display: block;
    width: 100%;
    outline: none;
    box-shadow: none;
}
.header-search__btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    width: 40px;
    height: 100%;
    cursor: pointer;
    border: none;
    padding: 0;
    background: none;
    margin: 0;
    color: #0000be;
}
.header-search__btn:before,
.header-search__link:before {
    content: '\e978';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: "vm-icons";
    font-style: normal;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
    speak: none;
    margin-top: -3px;
}
.header-search__link {
    width: 24px;
    height: 24px;
    display: block;
    position: relative;
    margin-left: 12px;
}
.header-search__link:before {
    margin: 0;
}
@media screen and (max-width: 767px) {
    #header.header_light .header-main__inner {
        flex-direction: column;
        height: 150px;
        padding: 15px 0;
    }
    #header.header_light .header-logo {
        margin-right: 0;
    }
    #header.header_light .header-logo__img {
        width: auto;
        max-height: 45px;
    }
    #header.header_empty .header-main__inner {
        height: 80px;
    }
}
@media screen and (min-width: 768px) {
    .header-main__inner {
        height: 115px;
        padding-right: 0;
    }
    .header-logo__img {
        max-height: 40px;
    }
}

.nav-main {
    display: none;
    transition: visibility 0.3s ease, opacity 0.3s ease;
    border-top: 1px solid #e6e6e6;
    background: #fff;
}
.nav-main__inner {}
.nav-main__item {
    position: relative;
}

.nav-main__link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
    color: #0000be;
    position: relative;
}
.nav-main__link_icon_login:before {
    content: '\e958';
    font-family: "vm-icons";
    font-style: normal;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
    speak: none;
    margin-right: 8px;
}
.nav-main__link:hover {
    color: #0000be;
}
.nav-main__link_active {
    background: #eb008c;
    color: #fff !important;
}
.nav-main__submenu {
    display: none;
}
.nav-main__toggle {
    position: absolute;
    width: 32px;
    height: 32px;
    z-index: 10;
    cursor: pointer;
    top: 50%;
    right: -4px;
    transform: translate(0,-50%);
    padding: 0 5px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.nav-main__toggle__line {
    width: 100%;
    height: 3px;
    background: #0000be;
    position: relative;
    border-radius: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.nav-main__toggle__line + .nav-main__toggle__line {
    margin-top: 4px;
}
.nav-main__toggle_active .nav-main__toggle__line:first-child {
    transform: rotate(45deg);
    top: 7px;
}
.nav-main__toggle_active .nav-main__toggle__line:last-child {
    transform: rotate(-45deg);
    top: -7px;
}
.nav-main__toggle_active .nav-main__toggle__line:nth-child(2) {
    opacity: 0;
    transition: opacity 0s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
    .nav-main {
        position: fixed;
        top: 79px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        border-top: 1px solid #f2f2f2;
        overflow-y: auto;
    }
    .nav-main__container {
        padding: 0;
    }
    .nav-main__item:not(:last-child) {
        border-bottom: 1px solid #f2f2f2;
    }
    .nav-main__link_with_submenu {
        padding-right: 50px;
    }
    .nav-main__link-toggle {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 42px;
    }
    .nav-main__link-toggle:before {
        content: '\e91a';
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translate(0,-50%);
        font-family: "vm-icons";
        font-style: normal;
        font-size: 22px;
        line-height: 1;
        font-weight: 400;
        speak: none;
        transition: transform 0.2s ease;
    }
    .nav-main__link-toggle_active:before {
        transform: translate(0,-50%) rotate(-180deg);
    }
    .nav-main__submenu {
        background: #fafafa;
        box-shadow: 0 10px 10px -10px rgba(0,0,0,0.05) inset, 0 -10px 10px -10px rgba(0,0,0,0.05) inset;
    }
    .nav-main__submenu-item:not(:last-child) {
        border-bottom: 1px solid #f2f2f2;
    }
    .nav-main__submenu-link {
        font-size: 15px;
        line-height: 1.2;
        font-weight: 400;
        display: block;
        padding: 10px 15px 10px 30px;
        position: relative;
    }
    .nav-main__submenu-link:before {
        content: '\e91c';
        position: absolute;
        top: 13px;
        left: 13px;
        font-family: "vm-icons";
        font-style: normal;
        font-size: 12px;
        line-height: 1;
        font-weight: 400;
        speak: none;
    }
}
@media screen and (min-width: 768px) {
    .nav-main {
        display: flex !important;
        opacity: 1 !important;
        position: relative;
        z-index: 10;
        transition: box-shadow 0.3s ease;
    }
    .nav-main:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: #e6e6e6;
        transition: opacity 0.3s ease;
    }
    .nav-main__inner {
        display: flex;
        justify-content: space-between;
        flex: 0 0 100%;
        padding: 0;
        transition: padding 0.3s ease;
    }
    .nav-main__item {
        text-align: left;
        border-radius: 4px 4px 0 0;
        flex: 1 1 auto;
    }
    .nav-main__item:hover {
        box-shadow: 0 0 10px rgba(0,0,0,.3);
    }
    .nav-main__item:hover .nav-main__submenu {
        opacity: 1 !important;
        visibility: visible;
    }
    .nav-main__item:hover .nav-main__link {
        color: #555;
    }
    .nav-main__link {
        white-space: nowrap;
        font-weight: normal;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 14px;
        line-height: 1.2;
        font-weight: 500;
        color: #0000be;
        padding: 4px 5px 6px;
        border-radius: 4px 4px 0 0;
        letter-spacing: -0.02em
    }

    .nav-main__submenu {
        position: absolute;
        display: block !important;
        opacity: 0 !important;
        visibility: hidden;
        background: #fff;
        padding: 20px 0;
        margin: 0 0 0 0;
        box-shadow: 0 5px 50px rgba(0,0,0,.3);
        z-index: 10;
        border-radius: 0 4px 4px 4px;
    }
    .nav-main__submenu-item {}
    .nav-main__submenu-link {
        white-space: nowrap;
        display: block;
        padding: 8px 25px;
        font-size: 15px;
        line-height: 1.3;
        font-weight: 500;
        color: #555;
    }
    .nav-main__submenu-link_active {
        color: #0000be;
    }
    .nav-main__toggle {
        display: none !important;
    }
}
@media screen and (min-width: 992px) {
    .nav-main__link {
        font-size: 16px;
        padding: 4px 12px 6px;
        letter-spacing: 0;
    }
}
@media screen and (min-width: 1200px) {
    .nav-main__link {
        font-size: 17px;
    }
}



main {
    position: relative;
    margin-top: 80px;
}
#header.header_light ~ main {
    margin-top: 150px;
}
@media screen and (max-width: 767px) {
    #header.header_empty ~ main {
        margin-top: 80px;
    }
}
@media screen and (min-width: 768px) {
    main {
        margin-top: 200px;
    }
    #header.header_light ~ main {
        margin-top: 115px;
    }
}

.custom-banner__img-wrapper.custom-banner__img-numbers {
    margin-top: 20px;
    margin-bottom: -5px;
}