/*****  MENU  *****/
.invisible {
  display: none;
}
#header #stickymenu {
  width:100%;
  position:relative;
  z-index: 100;
  height:80px;
  transition:
    height 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
#header #stickymenu .mod_article {
  padding: 0 15px;
  display: flex;
  align-items: center;
}
.logo {
  width: 160px;
  position: static;
  top: auto;
  margin: 0;
  flex: 0 0 160px;
}
.navi {
  display: flex;
  justify-content: flex-end;
  flex:1;
}
#mainmenu ul.level_1 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
#header #mainmenu ul.level_1 > li {
  position: relative;
  height:80px;
  margin: 0;
  transition: height 0.3s ease;
}
#mainmenu ul li:before {
  content: none;
}
#mainmenu li a,
#mainmenu li strong,
#mainmenu li button {
    display:block;
    padding-right:12px;
    padding-left:12px;
    font-size:18px;
    line-height:80px;
    color:var(--col2);
    text-transform:uppercase;
    font-weight: 400;
    margin:0;
    transition:
    color 0.2s ease,
    line-height 0.3s ease;
}
#mainmenu li a:hover,
#mainmenu li strong.nonavlink:hover,
#mainmenu li strong.active,
#mainmenu li button:hover,
#mainmenu li.active > a,
#mainmenu li.active > a:hover,
#mainmenu li.trail > a,
#mainmenu li.trail > button,
.menu-toggle a:hover {
    color:var(--col1);
    box-shadow: none;
}

/* Submenü */  
#mainmenu ul li.submenu > a:after,
#mainmenu ul li.submenu > strong:after,
#mainmenu ul li.submenu > button:after {
    content: '';
    width:11px;
    height:11px;
    margin-left: 2px;
    background-color: var(--grey3);
    display: inline-block;
    -webkit-mask: url(../dateien/icons/icon_angle-down.svg) no-repeat center / contain;
    mask: url(../dateien/icons/icon_angle-down.svg) no-repeat center / contain;
} 
#mainmenu ul.level_1 > li > ul.level_2 {
    display: none;
    position: absolute;
    min-width: 300px;
    top: 100%;
    list-style: none;
    background-color:#fff;
    box-shadow: 0px 7px 10px 0px rgba(0,0,0,0.15);
  }
#header #mainmenu ul.level_2 > li {
  height:60px;
  margin: 0;
}
#mainmenu ul.level_1 > li:hover > ul.level_2 {
  display: block;
}
  
/*  STICKY-MENU  */
#header #stickymenu.sticky {
  height:65px;
  background-color:#fff;
  box-shadow: 0 0 10px rgba(0,0,0,.4);
  position: fixed !important;
}
#header #stickymenu.sticky ul.level_1 > li {
  height:65px;
}
#header .sticky .logo {
  top:10px;
}
#header .sticky li a, 
#header .sticky li strong,
#header .sticky li button {
	line-height: 65px;
}

/* Impressum-Datenschutz */
.impressum #header #stickymenu .mod_article,
.datenschutz #header #stickymenu .mod_article {
  height:80px;
}
.impressum #header #stickymenu.sticky .mod_article,
.datenschutz #header #stickymenu.sticky .mod_article {
  height:65px;
}