/* MENU
-------------------------------------------------- */
.menuShadow {
    box-shadow: 10px 10px 8px #888888;
}
.mainNavigation nav {
    float: right;
    padding-top: 3.0rem;
    padding-bottom: 2.0rem;
}
.mainNavigation li {
    background: transparent;
    display: block;
    float: left;
    padding: 0;
    position: relative;    
    z-index: 2;
    font-family: bold-font;
}  
.mainNavigation li a {
    padding: 1.0rem 2.0rem;
    color: #262943;
    font-size: 1.2rem;
    text-decoration: none;
}
.mainNavigation li a:hover,
.mainNavigation li a:focus,
.mainNavigation li a:active {
    background: #202543;
    color: #fff;
}
.mainNavigation ul li ul {
    visibility: hidden;
    background: #fff;
    color: #202543;
    opacity: 0;
    position: absolute;
    padding: 0.5rem 0;
    margin: 0;
    margin-top: 1.0rem;
    border-radius: 0;
    z-index: 3;
}
.mainNavigation ul li:hover > ul,
.mainNavigation ul li:focus-within > ul,
.mainNavigation ul li ul:hover,
.mainNavigation ul li ul:focus {
    visibility: visible;
    opacity: 1;
    display: block;
}
.mainNavigation ul li ul li {
    background: transparent;
    display: block;
    padding: 0;
    position: relative;
    text-decoration: none;
    font-family: regular-font;
}
.mainNavigation ul li ul li a {
    display: block;
    min-width: 300px;
    padding: 4px 12px;
    color: #202543;
    font-size: 1.0rem;
}

#overlayToggle {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #fff;
    cursor: pointer;
    z-index: 100;
    background-color: #202543;
    border: 2px solid #fff;
    border-radius: 0;
    font-size: 1.5rem;
    line-height: 0.9;
    padding: 10px;
}
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    background-color: #202543;
    overflow-x: hidden;
    transition: 0.25s;
}
.overlay hr {
    border-top: 1px solid #fff;
}
.overlay a {
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: 600;
    color: #fff;
    display: block;
    transition: 0.3s;
}
.overlay ul {
    list-style-type: none;
    padding: 4px;
    padding-left: 1.0rem;
}
.navbar-admin {
    color: #002e43;
    background-color: transparent;
}
@media screen and (max-width: 1108px) {
    
}
@media screen and (max-width: 768px) {

}
@media screen and (max-width: 576px) {
    #overlayToggle {
        top: 20px;
    }
}
