nav {
    height: 70px;
}

nav ul {
    height: 100%;
    margin: 0 !important;
}
#dropdownMenu{
    position: absolute;
    height: max-content;
    left: 0;
    top: 100%;
}
#dropdownMenu li{
    display: block;
}
nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    box-sizing: content-box;
    padding: 0;
}



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; */
    }
}
