
@media screen and (max-width: 700px) {
    .mega-menu {
        display: none !important;
    }
}

.sub-menu {
    max-height: 60vh;
    overflow-y: auto;
    background-color: #fff;
    padding: 1.5rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.sub-menu-list {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}
.sub-menu-list li a:hover {
    color: #0a53be;
}


/** mega menu */

.has-mega-menu:hover > .mega-menu,
.has-mega-menu a:hover > .mega-menu,
.mega-menu:hover {
    display: flex;
}

@media screen and (max-width: 700px) {
    .mega-menu {
        display: none !important;
    }
}

.mega-menu {
    max-height: 70vh;
    overflow-y: auto;
    display: none;
    top: 85px;
    left: 0;
    width:100%;
    margin-right:auto;
    margin-left:auto;
    position: fixed;
    background-color: #fff;
    padding: 1.5rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    flex-direction: row;
    justify-content: center;
}

.mega-menu-list {
    width: 33%;
    height: 100%;
    list-style: none;
}
.mega-menu-list li a:hover {
    color: #0a53be;
}


/** scrollbar */

.scrollbar::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 4px;
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar
{
    width: 5px;
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar-thumb
{
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 2.5px rgba(0,0,0,.3);
    background-color: #555;
}
