.ashe-header {
    background-color: var(--main-color);
    position: relative;
    z-index: 20
    }
.ashe-header__inner {
    align-items: center;
    display: flex;
    font-weight: 700;
    height: 70px;
    justify-content: space-between
    }
.ashe-header__title {
    color: #fff;
    font: 700 22px/1 var(--secondary-font)
    }
.ashe-header__title:hover {
    color: var(--accent-color)
    }
@media only screen and (max-width: 767px) {
    .ashe-header__title {
        font-size: 20px
        }
    }
.ashe-header-nav {
    z-index: 1
    }
.ashe-header-nav__item {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-left: 15px
    }
.ashe-header-nav__item:hover {
    color: var(--accent-color);
    text-decoration: underline
    }
@media only screen and (max-width: 767px) {
    .ashe-header-nav__item {
        display: block
        }
    .ashe-header-nav__item:not(:last-child) {
        margin-bottom: 20px
        }
    }
.ashe-header-nav__btn {
    fill: var(--light-color);
    display: none;
    height: 30px;
    width: 30px
    }
@media only screen and (max-width: 767px) {
    .ashe-header-nav__btn {
        display: block
        }
    }
.ashe-header-nav__menu {
    align-items: center;
    display: flex
    }
@media only screen and (max-width: 767px) {
    .ashe-header-nav__menu {
        align-items: flex-start;
        background: var(--main-color);
        flex-direction: column;
        left: 0;
        padding: 30px 0;
        position: absolute;
        top: 0;
        transform: translatey(-100%);
        transition: all 0.5s;
        width: 100%
        }
    .ashe-header-nav__menu.active {
        top: 100%;
        transform: translatey(0)
        }
    }