nav{
    height: 70px;
}
nav ul{
    height: 100%;
    margin: 0 !important;
}
nav ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    box-sizing: content-box;
    padding: 0;
}
nav ul li:after{
    position: absolute;
    content: '';
    background: #919090;
    width: 0;
    height: 5px;
    bottom: 0;
    border-radius: 5px 5px 5px 5px;

}
nav ul li:hover:after{
    width: 100%;
}
nav ul li.active:after{
    width: 100%;
    background: var(--color-1);
}
nav ul li a
{
    font-weight: 600;
}
@media screen and (max-width:768px){
    #navbar-sticky{
        width: 100%;
        top: 0;
        height: 100vh;
        background: #000000d0;
        left: 500%;
        transition-duration: 500ms;
    }
    #navbar-sticky.active{
        left: 0;
    }
    nav ul{
        /* float: right; */
        width: 80%;
        height: 80%;
    }

    nav ul li:hover:after{
        width: 0;
    }
    nav ul li:first-of-type{
        /* border-top: .3px solid #636363; */
    }
    nav ul li{
        align-self: start;
        height: auto;
        /* border-bottom: .3px solid #636363; */
    }
}
