h1,
h2,
h3,
h4 {
  font-weight: 400;
}

.burger-menu,
.close-btn {
    background: none;
    border: none;
    font-size: 1.9vw;
    cursor: pointer;
    z-index: 2001;
}


#bottom-nav {
    z-index: 20000;
    position: fixed;
    bottom: 0;
    padding: 0.3% 1.5% 0.8% 5%;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    gap: 2.5%;
    align-items: flex-end;
    justify-content: space-between;
    text-transform: lowercase;
    line-height: 0.9;
}

#bottom-nav a {
    font-size: 1rem;
    font-family: "Medium";
    text-transform: uppercase;
    color: var(--c3);
    transition: all 0.2s;
}



.menu-overlay {
    opacity: 0;
    color: var(--c3);
}

.menu-item:hover .menu-overlay {
    opacity: 1;
}


footer {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.2vw;
}

/* #bottom-nav footer {
    margin-left: auto;
} */


#bottom-nav footer a {
    font-size: 0.7rem;
}


@media (max-width: 768px) {
    #bottom-nav {
        line-height: 1.2;
    }

    #bottom-nav a {
        font-size: 0.7rem;
    }

    #bottom-nav footer a {
        font-size: 0.4rem;
    }

    .menu-item {
        display: flex;
        flex-direction: column-reverse;
    }    
}