*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-width: 320px;
}

body {
    color: #2b2b2b;
    line-height: 1;
    font-family: "SuisseIntl";
    font-size: 1.125rem;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
    font-family: "SuisseIntl";
    font-size: inherit;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: inherit;
}

a {
    color: inherit;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

.lock body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}

.wrapper {
    position: relative;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

.wrapper>main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.wrapper>* {
    min-width: 0;
}

[class*=__container] {
    max-width: 80rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 auto;
    padding: 0 0.9375rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    background: #fff;
    -webkit-box-shadow: 0px 5.25905px 10.1908px rgba(114, 120, 128, 0.03), 0px 2.79304px 5.20106px rgba(114, 120, 128, 0.03);
    box-shadow: 0px 5.25905px 10.1908px rgba(114, 120, 128, 0.03), 0px 2.79304px 5.20106px rgba(114, 120, 128, 0.03);
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1280px;
    padding: 0px 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 64px;
}

.header__logo {
    position: relative;
    z-index: 12;
}

.header__phone-link {
    font-weight: 500;
    white-space: nowrap;
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu__list>li {
    position: relative;
    margin-left: 20px;
}

.menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 0px;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    position: relative;
}

.menu__link {
    color: #474766;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: color 0.3s ease 0s;
    -o-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}

.menu__arrow::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    bottom: -9px;
    right: -7px;
}

.menu__arrow._spoller-active {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.menu ._arrow-down {
    background: url("../img/arrow-down.svg") center/cover no-repeat;
    width: 12px;
    height: 7px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.menu__sub-list {
    position: relative;
    padding: 15px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    background-color: #525252;
}

.menu__sub-item:not(:last-child) {
    margin-bottom: 10px;
}

.menu__sub-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

@media (min-width: 47.99875em) {
    .menu__item._hover .menu__sub-list {
        -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .menu__item._hover .menu__arrow {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    .menu__item._hover .menu__arrow,
    .menu__item._hover .menu__link {
        color: #3399ff;
    }

    .menu__sub-list {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        -webkit-transform: translate(0px, 10%);
        -ms-transform: translate(0px, 10%);
        transform: translate(0px, 10%);
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        pointer-events: none;
        z-index: 12;
    }

    .menu .menu__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }

    .menu .menu__list>li {
        padding: 10px 0;
    }
}

/*-------------------*/
@media (max-width: 47.99875em) {
    .header__phone {
        z-index: 6;
    }

    .header__phone-link {
        padding-right: 90px;
        font-size: 14px;
    }

    .menu__body {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: -100%;
        overflow: auto;
        background-color: #d6d6d6;
        -webkit-transition: left 0.3s ease 0s;
        -o-transition: left 0.3s ease 0s;
        transition: left 0.3s ease 0s;
        padding: 100px 15px 30px 15px;
    }

    .menu__body::before {
        content: "";
        position: fixed;
        width: 100%;
        min-height: 64px;
        left: -100%;
        top: 0;
        -webkit-transition: left 0.3s ease 0s;
        -o-transition: left 0.3s ease 0s;
        transition: left 0.3s ease 0s;
        background-color: #fff;
        z-index: 6;
    }

    .menu-open .menu__body {
        left: 0;
    }

    .menu-open .menu__body::before {
        left: 0;
    }

    .menu__item {
        margin: 0px 0px 15px 0px;
    }

    .menu__item:last-child {
        margin-bottom: 0;
    }

    .menu__link {
        font-size: 24px;
    }

    .menu__sub-list {
        margin: 10px 0px 0px -15px;
    }

    .menu__sub-item:not(:last-child) {
        margin-bottom: 15px;
    }

    .menu__sub-link {
        font-size: 18px;
    }

    .icon-menu {
        display: block;
        position: absolute;
        right: 1.25rem;
        /*top: 1.5625rem;*/
        width: 1.875rem;
        height: 1.125rem;
        cursor: pointer;
        z-index: 25;
    }

    .icon-menu span,
    .icon-menu::before,
    .icon-menu::after {
        content: "";
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        right: 0;
        position: absolute;
        width: 100%;
        height: 0.125rem;
        background-color: #000;
    }

    .icon-menu::before {
        top: 0;
    }

    .icon-menu::after {
        bottom: 0;
    }

    .icon-menu span {
        top: calc(50% - 0.0625rem);
    }

    .menu-open .icon-menu span {
        width: 0;
    }

    .menu-open .icon-menu::before {
        top: calc(50% - 0.0625rem);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .menu-open .icon-menu::after {
        bottom: calc(50% - 0.0625rem);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .icon-menu_scroll {
        top: 25px;
    }
}

/*-----------------*/
@media (any-hover: hover) {
    .menu__item:hover .menu__sub-list {
        -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .menu__item:hover .menu__arrow {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    .menu__item:hover .menu__arrow,
    .menu__item:hover .menu__link {
        color: #3399ff;
    }

    .menu__sub-link:hover {
        color: #c7c7c7;
    }
}