.nav-link{
    cursor: pointer;
}

.navbar{
    line-height: 4rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100vw;
    background-color: #fff;
    box-shadow: 0 .1rem 2rem #000;
    font-size: 3rem;
    position: sticky;
    top: 0;
    z-index: 80;
}

.nav-wrapper{
    align-items: center;
    list-style:none;
    padding-left: 2rem;
    display: flex;
}

.main-wrapper{
    display: flex;
}

.nav-item{
    cursor: pointer;
padding: 0 1rem 0 1rem;
margin-left: .2rem;
width: max-content;
}

.nav-img{
    padding-right: 1rem;
    height: 8rem;
    width: 8rem;
}

.sub-nav{
    padding: 1rem;
    font-size: 2rem;
    background-color: #fff;
    position: absolute;
    display: flex;
    flex-direction: column;
    list-style: none;
}

.sub-nav-item{
    text-align: center;
    padding:.5rem;
}

.social-media{
    display: flex;
    align-items: center;
    list-style: none;
}

.social-icon{
    margin-right: 2rem;
    color: #000;
    cursor: pointer;
}

.nav-hover{
    background-color: #226622;
    color: #fff;
    transition: all .3s ;
}

.social-icon:hover{
    color:#226622;
    transition: all .3s ;
}

/* ------------------------------ mobile view ------------------------------- */

.mobile-navbar{
    line-height: 4rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100vw;
    background-color: #fff;
    font-size: 3rem;
    position: sticky;
    top: 0;
}

.mobile-nav{
    margin-right: 2rem;
    cursor: pointer;
    font-size: 3rem;
}

.mobile-hover{
    color:#226622;
    transition: all .3s;
}

.mobile-clicked{
    color: #226622
}

.mobile-nav-wrapper{
    position: absolute;
    right: 0;
    background-color: #fff;
    height: 100vh;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
}

.mobile-close{
    align-self: flex-end;
    margin: 2rem;
    cursor: pointer;
}

.mobile-nav-item-wrapper{
    cursor: pointer;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav-item{
    display: flex;
    justify-content: space-between;
    margin-left: .2rem;
    padding: 0 2rem 0 2rem;
    width: max-content;
    align-items: center;
}
.mobile-nav-detail{
    margin: 0 2rem 0 1.5rem;
}
.mobile-sub-nav{
    padding: 1rem;
    font-size: 2rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    list-style: none;
}

.mobile-sub-nav-item{
    text-align: left;
    padding:.5rem;
}

.mobile-more-nav{
    font-size: 2rem;
    box-shadow:
        .2rem .2rem .2rem #000,
        -.2rem .2rem .2rem #000,
        .2rem -.2rem .2rem #000,
        -.2rem -.2rem .2rem #000;
    padding: 0 .1rem 0 .1rem;
    border: .1rem solid #000;
    border-radius: 50%;
}

.mobile-more{
    color: #fff;
    animation: mobilemore .3s both;
    background: #226622;
}

.mobile-less{
    color: #000;
    animation: mobileless .3s both;
    background: #fff;
}

@keyframes mobilemore {
    100%{
        transform: rotate(180deg);
    }
}
@keyframes mobileless {
    0%{
        transform: rotate(180deg);
    }
    100%{
        transform: rotate(0deg);
    }
}