ul {
    padding-left: 0;
    list-style: none;
}

nav>ul>li::before {
    display: none;
}

li.dropdown {
    display: inline-block;
    cursor: pointer;
    float: left;
}

nav>ul>li>a {
    color: #111;
    display: block;
    transition: all 0.3s ease;
}

nav>ul>li:hover>a {
    color: #fff;
    border-bottom: 3px solid orange;
}

.mega-menu {
    background: #dedacc;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    position: absolute;
    left: 0;
    width: 100%;
    padding-bottom: 20px;
    padding-top: 20px;
    z-index: 899;
    margin-right: auto;
    margin-left: auto;
    border-bottom: 3px orange solid;
}

.mega-menu .container {
    display: flex;
}

.mega-menu .item {
    width: 250px;
    margin: 0 5px;
}

.mega-menu .item img {
    width: 100%;
    height: 25px;
}

.mega-menu a {
    color: #111;
    text-decoration: none;
}

.mega-menu a:hover {
    color: #2d6a91;
}

.mega-menu li::before {
    display: none;
}

.dropdown:hover .mega-menu {
    visibility: visible;
    opacity: 1;
}

h1.dropdown-header {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: bold;
}