.eal-sticky-nav, .eal-sticky-stuck{
    width: 100%;
    background-color: #90949C;
    /* color: white; */
}
.eal-sticky-nav ul, .eal-sticky-stuck ul{
    /* padding: 2rem 0; */
    margin: auto;
    text-align: left;
}

.eal-sticky-stuck{
    position: fixed;
    top: -20px;
    z-index: -1;
    opacity: 0;
    transition: all ease .2s;
    /* box-shadow: 0px 2px 4px 0px #a3a3a3; */
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px;
}
.eal-sticky-stuck .current a,
.eal-sticky-nav .current a{
    background-color: #10218b;
    color: white;
}
#sticky-nav-id{
    margin-bottom: 0;
}
.sticky-nav-ul li a{
    height: 100%;
    font-size: 14px;
    padding: 10px 15px;
    color: rgb(255, 255, 255);
    display: inline-block;
    transition: all ease .2s;
    width: 100%;
    text-align: center;
    text-decoration: none;
}
.sticky-nav-ul li:not(:last-child){
    border-right: 2px solid #dddddd;
}
.sticky-nav-ul li{
    min-width: 139px;
    transition: all .3s;
}
.sticky-nav-ul li a:hover{
    background-color: #10218b;
    color: #FFF;
    text-decoration: none;
}
.eal-sticky-nav.d-none,
.eal-sticky-stuck.d-none{
    display: none;
}
@media (min-width: 992px){
    .eal-sticky-nav ul, .eal-sticky-stuck ul:not(.dropdown-menu){
        display: flex;
        list-style: none;
    }
    .d-md-block {
        display: block;
    }
}