#OtherNav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-shade);
    overflow: hidden;
}



#NavBAR{
    height: 64px;
    width: 100%;
    max-width: 1200px;
    margin: 0 20px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/*----------------------------------------------------- Logo CSS */


#LogoonHero{
    z-index: 10;
    font-family: "Playwrite US Modern", serif;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#LogoonHero img{
    height: 32px;
}

#LogoonHero p{
    font-family: "Playwrite US Modern", serif;
    color: var(--black);
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 400;
}



/*----------------------------------------------------- NAV CSS */

@media (min-width: 601px) {
    #mainNav{
        z-index: 100;
        background-color: transparent;
        height: 32px;
        padding: 0;
    }
    .menu{
        height: 100%;
        display: flex;
        gap: 40px;
        align-items: center;
    }
    .menuitemclosure{
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menuitemclosure a{
        height: 100%;
        padding: 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navmenuitem{
        font-size: 1rem;
        line-height: 1rem;
        font-family: "Quicksand", serif;
        color: var(--black);
    }
    #navopener{
        display: none;
    }
    .Navopen{
        display: none;
    }
}
@media (max-width: 600px) {

    #mainNav{
        z-index: 100;
        position: fixed;
        left: 0px;
        top: 0px;
        width: 100%;
        padding: 0;
        transform: translateY(-320px);
        transition: all 0.3s ease-out;
    }
    #blurbackgroundwhennav{
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        height: 0vh;
        width: 100%;
        transition: all 0.3s ease-out;
        pointer-events: none;
    }
    .menu{
        height: 100%;
        display: flex;
        padding: 0;
        flex-direction: column;
        align-items: center;
        -webkit-box-shadow: 0 20px 20px #00000045;
    }
    .menuitemclosure{
        background: linear-gradient(to bottom, var(--background), var(--background-shade));
        padding: 0;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menuitemclosure a{
        height: 100%;
        width: 100%;
        padding: 20px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navmenuitem{
        font-size: 2rem;
        line-height: 2rem;
        font-weight: 400;
        font-family: "Quicksand", serif;
        color: var(--black);
    }

    .Navopen{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        background-color: var(--background);
        height: 64px;
        width: 100%;
    }




    /*--------------------------------- hamburgermenu CSS */
    #navopener, #navcloser{
        z-index: 10;
        background-color: transparent;
        height: 20px;
        width: 30px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hamburgermenu{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    #navcloser{
        margin-right: 20px;
    }
    #navcloser .hamburgermenu{
        position: relative;
    }
    .threelines{
        width: 100%;
        height: 3px;
        border-radius: 999px;
        background-color: var(--black);
    }
    .tiltright{
        transform: translateY(-50%)rotate(45deg);
        position: absolute;
        left: 15;
        top: 10px;
    }
    .tiltleft{
        transform: translateY(-50%)rotate(-45deg);
        position: absolute;
        left: 15;
        top: 10px;
    }
}


.activepage{
    color: var(--primary-pink);
}