header {
    z-index: 1000;
    position: sticky;
    top: 0;
}

nav {
    box-sizing: border-box;
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8vw 12px;
    gap: 20px;
}

nav .col-1 {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
}

nav .col-2 {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 70px;
}

/* Nav left side */


/* Nav right side */
nav .col-2 .menu {
    display: flex;
    align-items: center;
    gap: 50px;
}
nav .col-2 .menu li {
    list-style: none;
    cursor: pointer;
}

/* Hamburger Menu*/
.hamburger-button {
    display: none;
}

.hamburger-nav {
    z-index: 1001;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--background-color);
    padding: 40px 20px;
}
.hamburger-close-container {
    display: flex;
    justify-content: end;
    width: 100%;
}
.hamburger-nav .menu {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hamburger-nav .menu li {
    font-size: 30px;
    list-style: none;
    cursor: pointer;
}
.hamburger-nav .link-button {
    position: absolute;
    bottom: 5vh;
}

/* -- Responsive CSS -- */
@media (max-width: 1340px){
    nav {
        padding: 30px 20px 12px;
    }
    nav .col-2 {
        gap: 20px;
    }
    nav .col-2 .menu {
        gap: 25px;
    }
}
@media (max-width: 1024px){
    nav {
        padding: 30px 20px 12px;
    }

    /* Nav left side */
    nav .col-1 .logo-text {
        display: none;
    }

    /* Nav right side */
    nav .col-2 #menu-header-nav {
        display: none
    }
    nav .col-2 .link-button {
        display: none;
    }

    /* Hamburger Menu */
    .hamburger-button {
        display: block;
    }
}