.header {
    padding: 10px 0;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 997;
    background: black;
}
.logo {
    width: 10%;
}
.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.menu-logo {
    display: flex;
    align-items: center;
}

.menu-logo__link {
    display: block;
    text-decoration: none;
}


.menu-nav {
    display: flex;
    flex-direction: row;
}

.menu-nav__item {
    list-style: none;
    cursor: pointer;
}

.menu-nav__link {
    padding: 15px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    outline: none;
}