nav{
    width: 100vw;
    height: 70px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #BF8D4E;
    box-shadow: 0 2px 5px rgb(0, 0, 0, 0.3);
    color: #FFFFFF;
    z-index: 900;
}
.nav-logo, .nav-logo img{
    height: 100%;
}
.nav-left, .nav-right{
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    /* justify-content: center; */
    align-items: center;
    list-style: none;
}
.nav-left{
    padding-right: 2.5rem;
    justify-content: flex-end;
    gap: 4.5rem;
}
.nav-right{
    padding-left: 2.5rem;
    justify-content: flex-start;
}
.nav-item{
    position: relative;
    display: inline-flex;
    align-content: center;
    flex-wrap: wrap;
}
.nav-item-link{
    height: 70px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.nav-item-link span{
    position: relative;
    font-size: 1.6vw;
    /* font-size: 1.5rem; */
    font-weight: bold;
    font-family: 'Ade';
    color: #FFFFFF;
}
.nav-star-lt, .nav-star-rb{
    position: absolute;
    display: block;
    opacity: 0;
    width: 1.6vw;
    /* width: 1.25rem; */
    transition: all 0.8s ease;
}
.nav-item:hover .nav-item-link span .nav-star-lt, .nav-item:hover .nav-item-link span .nav-star-rb{
    opacity: 1;
}
.nav-star-lt{
    left: 0;
    top: 0;
    transform: translate(-80%, -30%);
}
.nav-star-rb{
    right: 0;
    bottom: 0;
    transform: translate(90%, 30%);
}
.nav-pulldown{
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #BF8D4E;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}
.nav-pulldown-star{
    display: block;
    width: 0;
    transform: rotate(-0.5turn);
    object-fit: contain;
    transition: all 0.3s ease;
}
.nav-pulldown-item-link{
    font-size: 1.6vw;
    /* font-size: 1.25rem; */
    height: auto;
    max-height: 0;
    width: 100%;
    padding: 0 0.8vw;
    /* padding: 0rem 0.5rem; */
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'ComicNeue';
    font-weight: bold;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.nav-pulldown-item-link:hover{
    padding: 0;
}
.nav-pulldown-item-link:hover .nav-pulldown-star{
    width: 1.6vw;
    /* width: 1rem; */
    transform: rotate(0);
}
.nav-item:hover .nav-pulldown{
    padding: 1rem;
    gap: 1rem;
    opacity: 1;
}
.nav-item:hover .nav-pulldown-item-link{
    max-height: 5rem;
}