.menu-test-nav-container{
    height: 100%;
}

.nav-first-level{
    height: 100%;
    background-color: #2D308D;
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0 2em;
    gap: 1em;
    font-family: sans-serif;
}
.nav-first-level li{
    list-style-type: none;
}
.nav-first-level > li{
    position: static;
    height: 100%;
}
.nav-first-level > li > a{
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2em 0;
    gap: 5px;
}
.nav-first-level > li > a:hover{
    color: #d69b5d;
}
.nav-first-level > li> .sub-menu{
    visibility: hidden;
    opacity: 0;
}
.nav-first-level > li> .sub-menu.nav-submenu-flex{
    display: flex;
    flex-direction: row;
    visibility: visible;
    opacity: 1;
    padding: 0 1em;
    border-top: 1px solid #fff;
}
.nav-first-level > li> .sub-menu{
    position: absolute;
    top: 100%;
    margin: 0px;
    left: 0px;
    background-color: #2D308D;
    width: 100%;
}
.nav-submenu-flex > li:not(.nav-submenu-flex > li > .sub-menu li){
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    border-right: 1px solid rgb(170, 166, 166);
    min-width: 100px;
}
.nav-first-level .sub-menu > li:nth-last-of-type(1){
    border-right: none;
}
.nav-first-level .sub-menu > li > a{
    color: #fff;
    display: flex;
    gap: 5px;
}
.nav-first-level .sub-menu > li > a:hover{
    color: #d69b5d;
}
.nav-submenu-flex .sub-menu{
    margin: 0 0 0 0.5em;
}
.nav-submenu-flex .sub-menu > li > a{
    color: rgb(192, 192, 192);
}
.fas{
    font-weight: 900;
    font-family: "FontAwesome" !important;
    font-style: inherit;
}
.chevron-down .menu-sub-indicator{
    position: relative;
    top: 2px;
}
.chevron-down .menu-sub-indicator::after{
    content: "\f107";
}
