header {
    color: white;
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 1.2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 1rem auto;
    z-index: 9999;

    background: rgba(37, 36, 36, 0.137);
    backdrop-filter: blur(12px);
    border-radius: 30px;

    nav ul {
        display: flex;
        gap: 40px;
        font-weight: 300;
        text-transform: uppercase;
        list-style: none;
    }

    nav ul li a {
        text-decoration: none;
        color: white;
        font-size: .8rem;
    }
}

.header-hidden {
    transform: translateX(-50%) translateY(-200%);
}

.mobile-nav,
.close-mobile,
.open-mobile {
    display: none;
}

.logo-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0;
    font-weight: 600;
    cursor: pointer;

    a {
        display: flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(180deg, #E7E7E7 0%, #646464 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-decoration: none;
        font-size: .9rem;
    }
}

.logo-left {
    display: flex;
    gap: 8px;
}

.btn-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;

    padding: 0.8rem 1rem;
    font-weight: 300;
    font-size: .8rem;
    opacity: 0.8;

    background: linear-gradient(to bottom, #000000 0%, #050505 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 50px;
    color: white;

    a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: white;
        text-decoration: none
    }
}