.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
    background-color: transparent;
}

.main {
    flex: 1 1 auto;
    padding-top: 70px;
    overflow: hidden;
}


body._lock {
    overflow: hidden;
}

.section__page {
    padding: 90px 30px 30px 30px;
    max-width: 1300px;
    margin: 0 auto;
}


.header__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.header__logo {
    z-index: 50;
}

.header__menu {}

.menu__icon {
    display: none;
}

.menu__body {}

.menu__list {}

.menu__list>li {
    position: relative;
    margin: 0 0 0 20px;
}

.menu__item {}

.menu__link {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.menu__link:hover {
    text-decoration: underline;
}

.menu__sub-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    min-width: 200px;
    right: 0;
    background: #000;
    padding: 15px;
}

.menu__sub-list li {
    margin: 0 0 10px 0;
}

.menu__sub-link {
    color: #fff;
}

.menu__sub-list li:last-child {
    margin: 0;
}

/********************************/
@media (min-width: 767px) {
    .menu__list {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu__list>li {
        padding: 10px 0;
    }

    .menu__sub-list {
        transform: translate(0px, 10%);
        -webkit-transform: translate(0px, 10%);
        -moz-transform: translate(0px, 10%);
        -ms-transform: translate(0px, 10%);
        -o-transform: translate(0px, 10%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
    }
}

/********************************/

@media (max-width: 767px) {
    .menu__icon-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 28px;
        border-radius: 219px;
        z-index: 50;
    }

    .menu__icon-wrapper:focus {
        background-color: #ffffff3a;
    }

    .menu__icon {
        z-index: 5;
        display: block;
        position: relative;
        width: 18px;
        height: 10px;
        cursor: pointer;

    }

    .menu__icon span,
    .menu__icon::before,
    .menu__icon::after {
        left: 0;
        position: absolute;
        height: 2px;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        background-color: #fff;
        border-radius: 10px;
    }

    .menu__icon::before,
    .menu__icon::after {
        width: 50%;
        content: "";
    }

    .menu__icon::before {
        top: 0;
    }

    .menu__icon::after {
        bottom: 0;
        margin-left: 50%;
    }

    .menu__icon span {
        width: 100%;
        top: 48%;
        transform: scale(1) translate(0, -50%);
        -webkit-transform: scale(1) translate(0, -50%);
        -moz-transform: scale(1) translate(0, -50%);
        -ms-transform: scale(1) translate(0, -50%);
        -o-transform: scale(1) translate(0, -50%);
    }

    .menu__icon._active span {
        transform: scale(0) translate(0, -50%);
        -webkit-transform: scale(0) translate(0, -50%);
        -moz-transform: scale(0) translate(0, -50%);
        -ms-transform: scale(0) translate(0, -50%);
        -o-transform: scale(0) translate(0, -50%);
    }

    .menu__icon._active::before {
        width: 100%;
        top: 40%;
        transform: rotate(-45deg) translate(0, -50%);
        -webkit-transform: rotate(-45deg) translate(0, -50%);
        -moz-transform: rotate(-45deg) translate(0, -50%);
        -ms-transform: rotate(-45deg) translate(0, -50%);
        -o-transform: rotate(-45deg) translate(0, -50%);
    }

    .menu__icon._active::after {
        margin-left: 0;
        width: 100%;
        bottom: 40%;
        transform: rotate(45deg) translate(0, -50%);
        -webkit-transform: rotate(45deg) translate(0, -50%);
        -moz-transform: rotate(45deg) translate(0, -50%);
        -ms-transform: rotate(45deg) translate(0, -50%);
        -o-transform: rotate(45deg) translate(0, -50%);
    }

    .menu__body {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 300px;
        text-align: center;
        background: #000;
        padding: 100px 30px 30px 30px;
        transition: left 0.3s ease 0s;
        -webkit-transition: left 0.3s ease 0s;
        -moz-transition: left 0.3s ease 0s;
        -ms-transition: left 0.3s ease 0s;
        -o-transition: left 0.3s ease 0s;
        overflow: auto;
        z-index: 30;
    }

    .menu__body._active {
        left: 0;
    }

    .menu__body-blur {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.007);
        backdrop-filter: blur(7.5px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 5;
    }

    .menu__body-blur._active {
        opacity: 1;
        pointer-events: auto;
    }

    .menu__body-blur._active {
        left: 0;
    }

    .menu__body::before {
        content: "";
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        height: 70px;
        z-index: 5;
    }

    .menu__list>li {
        flex-wrap: wrap;
        margin: 0 0 30px 0;
    }

    .menu__list>li:last-child {
        margin-bottom: 0;
    }

    .menu__link {
        font-size: 24px;
    }

    .menu__list>li._active .menu__sub-list {
        display: block;
    }

    .menu__sub-list {
        position: relative;
        background: #fff;
        flex: 1 1 100%;
        margin: 20px 0 0 0;
        display: none;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
    }

    .menu__sub-link {
        color: #000;
    }
}