#menu-footer-menu {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 0;
}

#menu-footer-menu li {
    list-style: none;
}

/* Dropdown Menus */
/* ===== Top ===== */

#navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: center;
}

#navigation ul li {
    display: inline-block;
    text-align: left;
}

/* ===== First Level ===== */
#navigation ul li {
    position: relative;
    padding: 0;
    margin: 0;
}

#navigation ul ul li {
    border: none;
}

#navigation ul li a {
    margin-bottom: 0;
    color: #104c90;
    display: inline-block;
    font-size: 18px;
    line-height: 1.7;
    padding: 20px 24px;
    font-weight: 500;
    text-transform: none;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    transition: all 200ms ease;
}
#navigation ul li a:last-of-type{
    padding-right:0;
}
#navigation ul li:hover a {
    color: #000;
}

#navigation ul ul, #navigation ul li:hover ul ul {
    position: absolute;
    display: none;
}

#navigation ul ul li:hover ul, #navigation ul li:hover ul li:hover ul {
    display: block;
    top: 0px;
    left: 100%;
}

/* ===== Second and Third Level ===== */
#navigation ul li:hover ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

ul.sub-menu:before{
    content: "";
    position: absolute;
    top: -10px; /* Adjusts placement */
    left: 20px; /* Position relative to dropdown */
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f0eeef; /* Matches the dropdown background */
}

#navigation ul ul ul {
    margin-left: -14px;
}

#navigation ul ul li a {
    float: none;
    line-height: normal;
    font-variant: normal;
    font-weight: normal;
    width: 280px;
    color: #104c90 !important;
    text-transform: none;
    padding: 15px 10px;
    background: #f0eeef !important;
}

#navigation ul ul li a {
    color: #fff;
}

#navigation ul ul li:hover a {
    color: #fff !important;
    background-color: var(--main-button-background-color) !important;
}

#navigation ul li:hover ul li:hover ul {
    display: block;
    position: absolute;
    left: 40px;
    top: 100%;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

#navigation ul ul li:hover ul li a {
    color: var(--main-button-background-color) !important;
    background: #fff !important;
}

#navigation ul ul li:hover ul li:hover a {
    color: #fff !important;
    background: var(--main-button-background-color) !important;
}

.menu-item-has-children {
    margin-top: 0px !important;
}

.menu-item-has-children > a:after {
    color: #000;
    content: '\e603';
    font-size: 12px;
    vertical-align: 1px;
    font-family: 'webflow-icons';
    margin-left: 5px;
}
/* Add class to make sure dropdown stays on screen see glacial.js */
#navigation ul li.edge ul.sub-menu {
    left: auto;
    right: 1em !important;
}

/* Dropdown Menus End */








@media (max-width: 991px) {
.menu-button{
    color:#104d90 !important;
    background-color:#fff;
}
.w-nav-overlay .w--nav-menu-open, .w-nav-overlay [data-nav-menu-open] {
    top: 0px;
}
.w-nav-overlay [data-nav-menu-open]{
    transform: translateX(0%) !important;
}
.w-nav-button{
    font-size:40px;
    
}
.w-nav-menu {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
}

.menu-item-has-children > a:after {
    display: none;
}

#navigation ul {
    display: block;
}

#navigation ul li {
    float: none;
    width: 100%;
    display: block;
    text-align: center;
    background: #fff;
}

#navigation ul li:hover ul {
    display: none;
}

.menu-main-navigation-container > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.menu-main-navigation-container {
    background-color: #393be5;
}

#navigation ul li a {
    padding: 30px 50px 10px 0px;
    text-align: right;
}

#navigation ul li {
    width: 100%;
    text-align: right;
}

#navigation ul li ul {
    width: 100%;
    position: relative;
    padding-top: 0px;
    margin-top: 0px;
}

#navigation ul li:hover ul {
    position: relative;
    display: none;
}

#navigation ul ul li a {
    width: 100% !important;
    padding-right: 50px;
}

#navigation ul li:hover a {
    width: 100%;
}

.menu li.has-children > a:after {
    display: none;
}

#navigation ul ul li:hover ul, #navigation ul li:hover ul li:hover ul {
    display: none;
}

/* Drop Down Arrows  Mobile */
/* Drop Down Arrows */
#navigation > ul > li > a:hover, #navigation > ul > li.active > a, #navigation > ul > li.open > a {
    color: #eeeeee;
    background: #1fa0e4;
    background: -webkit-linear-gradient(#1fa0e4, #1992d1);
    background: -moz-linear-gradient(#1fa0e4, #1992d1);
    background: -o-linear-gradient(#1fa0e4, #1992d1);
    background: -ms-linear-gradient(#1fa0e4, #1992d1);
    background: linear-gradient(#1fa0e4, #1992d1);
}

#navigation > ul > li.open > a {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid #1682ba;
}

li.open .holder {
    transform: rotate(0);
}

.holder {
    position: absolute;
    top: 10px;
    right: 0px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
    transform: rotate(180deg);
    transition: all 350ms ease;
}

.holder::before {
    display: inline-block;
    content: "";
    width: 6px;
    height: 6px;
    right: 20px;
    z-index: 10;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    color: #222;
}

.holder::after {
    top: 17px;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
}

#navigation > ul > li > a:hover > span::after, #navigation > ul > li.active > a > span::after, #navigation > ul > li.open > a > span::after {
    border-color: #eeeeee;
}

.holder::before {
    top: 18px;
    border-top: 2px solid;
    border-left: 2px solid;
    border-top-color: inherit;
    border-left-color: inherit;
}

#navigation > ul > li > a:hover > span::after, #navigation > ul > li.active > a > span::after, #navigation > ul > li.open > a > span::after {
    border-color: #eeeeee;
}

#navigation ul ul li:hover > a, #navigation ul ul li.open > a, #navigation ul ul li.active > a {
    background: #424852;
    color: #ffffff;
}

#navigation > ul > li > ul > li.open:last-child > a, #navigation > ul > li > ul > li.last.open > a {
    border-bottom: 1px solid #32373e;
}

#navigation > ul > li > ul > li.open:last-child > ul > li:last-child > a {
    border-bottom: 0;
}

#navigation ul ul li.active > a::after, #navigation ul ul li.open > a::after, #navigation ul ul li > a:hover::after {
    border-color: #ffffff;
}
}
@media (max-width: 767px) {

}