.header {
    position: relative;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    height: 90px;
    z-index: 101;
}
.header__btn-toggle {
    position: relative;
    display: none;
    width: 24px;
    height: 18px;
    margin-right: 1.2rem;
    z-index: 50;
    cursor: pointer;
}
.header__btn-toggle-line {
    position: absolute;
    display: block;
    width: 26px;
    height: 2px;
    transition: all .2s ease;
    background-color: #fff;
}
.header__btn-toggle-line--1 {
    top: 0;
}
.header__btn-toggle-line--2 {
    top: 6px;
}
.header__btn-toggle-line--3 {
    top: 12px;
}

.header__btn-toggle--open .header__btn-toggle-line--1 {
    top: 8px;
    transform: rotate(45deg);
}
.header__btn-toggle--open .header__btn-toggle-line--2 {
    opacity: 0;
}
.header__btn-toggle--open .header__btn-toggle-line--3 {
    width: 26px;
    top: 8px;
    transform: rotate(-45deg);
}


.header__nav {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 1;
    display: flex;
    align-items: center;
}
.header__nav-item {
    display: inline-block;
    padding: 0;
    position: relative;
}
.header__nav-item-space  {
    padding: 7rem;
}
.header__nav-link {
    line-height: 2;
    display: inline-block;
    padding: .3rem .5rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
}
.header__nav-link:not(.header__btn-login):hover {
    opacity: 0.6;
    text-decoration: none;
}
.header__nav.header__nav--toggle {
    left: 0;
}



@media (max-width: 1399.98px) {
    .header__nav-item-space  {
        padding: 4rem;
    }
}

@media (max-width: 1199.98px) {
    .header__btn-toggle {
        display: block;
    }
    .header__nav {
        display: block;
        transition: all .2s ease;
        padding: 2rem 1rem 3rem;
        text-align: right;
        width: 100%;
        height: 100vh;
        left: 100%;
        right: 0;
        top: 0;
        background: #151935;
        position: fixed;
        z-index: 30;
        overflow: auto;
    }
    .header__nav-item {
        display: block;
        margin-bottom: .5rem;
        text-align: center;
    }
    .header__nav-item-space  {
        display: none;
    }
    .header__nav-link {
        font-size: 1rem;
        font-weight: 600;
    }
}