header{
    width: calc(100vw - 10vw);
    display: flex;
    gap: 8vw;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5vw;
    background-color: rgba(29, 29, 27, 0.6);
    backdrop-filter: blur(3px);

    position: absolute;
    top: 0;
    transition: position 0.3s, background 0.3s;
    z-index: 10;
}

header.sticky {
    position: fixed;
}

header .logo-wrap{
    display: flex;
    gap: 3vw;
}

header .logo-wrap img{
    height: 30px;
}

header nav ul{
    display: flex;
    font-family: 'Circe Regular', sans-serif;
    font-weight: 400;
    font-size: 23px;
    gap: 3vw;
}

header nav ul li a{
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
}
header .menu-btn, header .close-btn{
    display: none;
    cursor: pointer;
    height: 30px;
}


@media screen and (max-width: 1410px) {
    header nav{
        display: none;
    }
    header .menu-btn{
        display: block;
    }
    header nav.show{
        display: block;
        padding: 6vw;
        position: absolute;
        top: 90px;
        width: calc(100vw - 12vw);
        background-color: #1D1D1B;
        left: 0;
    }
    header nav.show ~ .close-btn{
        display: block;
    }
    header nav.show ~ .menu-btn{
        display: none;
    }

    header nav.show ul{
        display: grid;
        gap: 3vw;
    }

    header nav.show ul li{
        width: 100%;
        border-bottom: 1px solid #fff;
        text-align: center;
        padding: 3vw 0;
    }
}

@media screen and (max-width: 800px) {
    header .logo-wrap img{
        height: 20px;
    }
}

@media screen and (max-width: 550px) {
    header .logo-wrap img{
        height: 15px;
    }
}

@media screen and (max-width: 450px) {
    header .logo-wrap img{
        height: 10px;
    }
}