.header {
    background-color: var(--color-black-bg);
    position: relative;
}

.header__inner {
    padding: 32px 0;
}

.header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--color-red);
    width: 35px;
    height: 30px;
    position: absolute;
    left: 20px;
    top: 32px;
    cursor: pointer;
    box-shadow: 5px 5px 0px var(--color-graylight);
    z-index: 20;
}

.header__hamburger span {
    background-color: var(--color-white);
    width: 15px;
    height: 2px;
    display: block;
    margin: 3px auto;
}

.header__hamburger.state-active {
    background-color: var(--color-cadetblue);
    box-shadow: 5px 5px 0px var(--color-egyptianblue);
}

.header__hamburger.state-active span {
    display: none;
}

.header__hamburger.state-active>div {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='16' viewBox='0 0 15 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0.5H2.14286V2.64286H0V0.5ZM4.28571 4.78571H2.14286V2.64286H4.28571V4.78571ZM6.42857 6.92857H4.28571V4.78571H6.42857V6.92857ZM8.57143 6.92857H6.42857V9.07143H4.28571V11.2143H2.14286V13.3571H0V15.5H2.14286V13.3571H4.28571V11.2143H6.42857V9.07143H8.57143V11.2143H10.7143V13.3571H12.8571V15.5H15V13.3571H12.8571V11.2143H10.7143V9.07143H8.57143V6.92857ZM10.7143 4.78571V6.92857H8.57143V4.78571H10.7143ZM12.8571 2.64286V4.78571H10.7143V2.64286H12.8571ZM12.8571 2.64286V0.5H15V2.64286H12.8571Z' fill='white'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center center;
    width: 15px;
    height: 15px;
}

.header__logo {
    width: 164px;
    margin: 0 auto;
    position: relative;
    z-index: 15;
}

.header__logo a {
    display: block;
}

.header__menu {
    display: none;
}

.header__menu.state-open {
    display: block;
}

.header__menu>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.header__menu>ul>li {
    font-size: 13px;
    line-height: 13px;
}

.header__menu>ul>li.menu-item--expanded span::before {
    color: var(--color-yellow);
}

.header__menu>ul>li.menu-item--expanded:hover span {
    cursor: pointer;
}

.header__menu>ul>li.menu-item--expanded:hover span:hover::before {
    color: var(--color-black);
}

.header__menu ul ul {
    display: none;
    background-color: var(--color-black-bg);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
}

.header__menu ul ul.state-open {
    display: block;
}

.header__menu ul ul li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color-electricblue);
}

.header__menu ul ul li a:hover,
.header__menu ul ul li a.is-active {
    color: var(--color-orange);
}

.header__menu ul ul li a::before {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1px;
    margin-right: 7px;
    content: "\e901";
    font-size: 10px;
    font-family: 'hexfun' !important;
    color: var(--color-yellow);
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header__menu ul ul li a:hover {
    background-color: var(--color-electricblue);
    color: var(--color-black);
}

.header__menu ul ul li a:hover::before {
    color: var(--color-black);
}

@media (min-width: 768px) {
    .header__hamburger {
        display: none;
    }

    .header__logo {
        width: 135px;
    }

    .header__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding-left: 16px;
        padding-top: 0;
    }

    .header__menu>ul>li {
        font-size: 18px;
        line-height: 18px;
        position: relative;
    }

    .header__menu>ul ul {
        display: none;
        padding: 15px;
        width: 407px;
        left: -15px;
    }

    .header__menu>ul ul li {
        font-size: 18px;
        line-height: 18px;
    }

    .header__menu>ul ul li:not(:last-child) {
        margin-bottom: 10px;
    }

    .header__menu>ul>li:hover ul {
        display: block;
    }
}

@media (min-width: 1024px) {
    .header__logo {
        width: 224px;
    }

    .header__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding-left: 32px;
        padding-top: 0;
    }

    .header__menu>ul>li {
        font-size: 24px;
        line-height: 24px;
    }

    .header__menu>ul ul li {
        font-size: 24px;
        line-height: 24px;
    }

    .header__menu>ul ul li:not(:last-child) {
        margin-bottom: 14px;
    }

    .header__menu>ul ul li a::before {
        font-size: 18px;
    }
}

@media (min-width: 1234px) {
    .header__inner {
        padding: 38px 0 37px;
    }

    .header__menu {
        padding-left: 110px;
    }
}

@media (max-width: 767px) {
    .header__menu {
        padding-top: 29px;
    }

    .header__menu>ul ul {
        left: -20px;
        width: calc(100% + 40px);
        padding: 20px;
    }

    .header__menu>ul ul li:not(:last-child) {
        margin-bottom: 20px;
    }
}