#header .mod_navigation > ul.level_1 {
    display: flex;
    justify-content: center;
    align-items: stretch;

    width: 100%;
    max-width: 1100px;
    
    margin: 0 auto;
    padding: 0;

    list-style: none;
}

#header .mod_navigation > ul.level_1 > li {
    flex: 1;
    margin: 0;
    padding: 0;
}

#header .mod_navigation > ul.level_1 > li > a,
#header .mod_navigation > ul.level_1 > li > strong {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    box-sizing: border-box;

    min-height: 38px;
    padding: 10px 12px;

    background: #1b3683;
    color: #ffffff;

    font-family: "Inter", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
    white-space: nowrap;
}

#header .mod_navigation > ul.level_1 > li > a:hover {
    background: #f5c400;
    color: #ffffff;
}

#header .mod_navigation > ul.level_1 > li > strong.active {
    background: #f5c400;
    color: #ffffff;
}

/* Dropdown verstecken */

#header .mod_navigation ul.level_2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 8px 0;
    background: #ffffff;
    border-top: 3px solid #f5c400;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
    z-index: 1000;
    list-style: none;
}


/* Dropdown anzeigen */

#header .mod_navigation li.submenu:hover > ul.level_2 {
    display: block;
}


/* Einträge im Dropdown */

#header .mod_navigation ul.level_2 li {
    margin: 0;
    padding: 0;
}

#header .mod_navigation ul.level_2 a {
    display: block;
    padding: 10px 16px;
    color: #123f8c;
    text-decoration: none;
}

#header .mod_navigation ul.level_2 a:hover {
    background: #f5c400;
}

/* Dropdowns */

#header,
#header .mod_navigation,
#header .mod_navigation > ul {
    overflow: visible;
}

#header .mod_navigation > ul.level_1 > li {
    position: relative;
}

#header .mod_navigation ul.level_2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 8px 0;
    background: #ffffff;
    border-top: 3px solid #f5c400;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
    z-index: 1000;
    list-style: none;
}

#header .mod_navigation > ul.level_1 > li:hover > ul.level_2 {
    display: block;
}






