.header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.212);
}
.header .container{
    width: 1200px;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    z-index: 999999;
}
.header .logo {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 2px solid rgba(255, 255, 255, 0.212);
    padding-right: 70px;
}
.header .logo img {
    width: 100%;
}
.header .menu {
    width: 400px;
    height: 100%;
    position: fixed;
    display: flex;
    flex-direction: column;
    padding: 25px 35px;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: .7s;
    color: var(--text-color);
    margin: 0;
    background-color: #060c168a;
    backdrop-filter: blur(25px);
    z-index: 10000000 !important;
}
.header .menu.active {
    transform: translateX(0%);
}
li, a {
    text-decoration: none;
    font-family: "Winky Sans", sans-serif;
    list-style: none;
}
.header .menu .x {
    margin-bottom: 35px;
}
.header .menu li {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    padding: 0;
}
.header .menu li img {
    fill: var(--text-color);
    width: 30px;
    height: 30px;
    filter: invert(1);
    margin-right: 15px;
}
.header .menu li a {
    color: var(--text-color);
    font-weight: 300;
    font-size: 18px;
    display: flex;
    align-items: center;
}
.header .right {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 99;
    border-left: 2px solid rgba(255, 255, 255, 0.212);
    padding-left: 70px;
}
.header .right .icon  {
    width: 80px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 0 20px;
}
.header .right .icon span {
    background-color:var(--text-color);
    width: 100px;
    margin: 3px 0;
}
.header .right .icon span:first-child {
    width: 100%;
    height: 2px;
}
.header .right .icon span:nth-child(2) {
    width: 70%;
    height: 2px;
    transition: 0.3s;
}
.header .right .icon span:last-child {
    width: 100%;
    height: 2px;
}
@media (max-width: 1140px) {
    .header .container {
        width: 94%;
    }
}
@media (max-width: 700px) {
    .header {
        height: 70px;
        padding: 0px;
        border: none;
    }
    .header .menu {
        width: 100%;
        overflow-y: scroll;
        background-color: #061016;
        backdrop-filter: blur(0px);
        z-index: 9999999999999 !important;
    }
    .header .menu li a {
        cursor: none;
    }
    .header .container {
        width: 100%;
        padding: 0 15px;
    }
    .header .logo {
        width: 100px;
        padding-right: 0px;
        border: none;
    }
    .header .right {
        padding-left: 0px;
        border: none;
    }
    .header .right .icon {
        width: 76px;
        padding: 0 5px 0 30px;
        cursor: none;
    }
}
