@charset "UTF-8";
/* CSS Document */
/*============ INDEX-NAV ============*/
.nav-index {
  width: 100%;
  float: left;
  background: #fff;
  transition: height .2s ease-in-out;
  font-family: 'Oswald', sans-serif;
  position: fixed;
  top: -175px;
  right: 0;
  left: 0;
  clear: both;
  z-index: 1;
  transition: 0.4s;
}
.down .nav-index {
  top: 0;
  transition: 0.4s;
}
/*============ INDEX-NAV-END ============*/
.shadow {
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.4);
}
.mn {
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mn, .mn ul, .mn li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  direction: ltr;
  text-align: left;
}
.mn-rtl, .mn-rtl ul, .mn-rtl li {
  direction: rtl;
  text-align: right;
}
.mn > li > h1, .mn > li > h2, .mn > li > h3, .mn > li > h4, .mn > li > h5, .mn > li > h6 {
  margin: 0;
  padding: 0;
}
.mn ul {
  display: none;
}
.mn li, .mn a {
  position: relative;
}
.mn a {
  display: block;
}
.mn a.disabled {
  cursor: default;
}
.mn::after {
  content: "";
  display: block;
  height: 0;
  font: 0px/0 serif;
  clear: both;
  overflow: hidden;
}
.mn *, .mn *::before, .mn *::after {
  box-sizing: inherit;
}
.mn-clean a, .mn-clean a:hover, .mn-clean a:focus, .mn-clean a:active {
  padding: 13px 30px;
  /* make room for the toggle button (sub indicator) */
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 100%;
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
}
.mn-clean a:hover {
  color: #e84124;
}
.mn-clean a.aktiv {
  color: #e84124;
}
.mn-clean a.current {
  color: #e84124;
}
.mn-clean a.disabled {
  color: #fff;
}
.mn-clean a .sub-arrow {
  position: absolute;
  top: 50%;
  margin-top: -17px;
  left: auto;
  right: 4px;
  width: 34px;
  height: 34px;
  overflow: hidden;
  font: bold 16px/34px monospace !important;
  text-align: center;
  text-shadow: none;
}
.mn-clean a .sub-arrow::before {
  content: '+';
}
.mn-clean a.highlighted .sub-arrow::before {
  content: '-';
}
.mn-clean li {
  border-top: 1px solid rgba(256, 256, 256, 0.2);
}
.mn-clean > li:first-child {
  border-top: 0;
  padding-top: 75px;
}
.mn-clean ul {
  background: rgba(200, 200, 200, 0.8);
}
.mn-clean ul a, .mn-clean ul a:hover, .mn-clean ul a:focus, .mn-clean ul a:active {
  font-size: 16px;
  border-left: 8px solid transparent;
}
.mn-clean ul ul a, .mn-clean ul ul a:hover, .mn-clean ul ul a:focus, .mn-clean ul ul a:active {
  border-left: 16px solid transparent;
}
.mn-clean ul ul ul a, .mn-clean ul ul ul a:hover, .mn-clean ul ul ul a:focus, .mn-clean ul ul ul a:active {
  border-left: 24px solid transparent;
}
.mn-clean ul ul ul ul a, .mn-clean ul ul ul ul a:hover, .mn-clean ul ul ul ul a:focus, .mn-clean ul ul ul ul a:active {
  border-left: 32px solid transparent;
}
.mn-clean ul ul ul ul ul a, .mn-clean ul ul ul ul ul a:hover, .mn-clean ul ul ul ul ul a:focus, .mn-clean ul ul ul ul ul a:active {
  border-left: 40px solid transparent;
}
@media screen and (max-width: 900px) {
  .menue {
    float: right;
  }
  .non-scroll {
    overflow: hidden;
    -webkit-overflow: hidden;
  }
  /* General styles for all menus */
  .cbp-spmenu {
    background-color: #444;
    position: fixed;
    overflow-y: scroll;
    -webkit-box-shadow: 3px 0px 5px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 3px 0px 5px -4px rgba(0, 0, 0, 0.75);
    box-shadow: 3px 0px 5px -4px rgba(0, 0, 0, 0.75);
  }
  /* Orientation-dependent styles for the content of the menu */
  .cbp-spmenu-vertical, .nav-index.cbp-spmenu-vertical {
    width: 300px;
    height: 100%;
    top: 0;
    z-index: 1001;
  }
  /* Vertical menu that slides from the left or right */
  /* ---------------------------------- Burger ---------------------------------- */
  .burger-box {
    display: block;
    width: 40px;
    height: 40px;
    padding-right: 15px;
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 9999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .burger {
    width: 40px;
    height: 5px;
    background-color: #e84124;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .burger::before, .burger::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 5px;
    background-color: #e84124;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .burger::before {
    top: -10px;
  }
  .burger::after {
    top: 10px;
  }
  .burger-box.active .burger {
    background-color: #444;
  }
  .burger-box.active .burger::before {
    transform: rotate(45deg);
    top: 0px;
  }
  .burger-box.active .burger::after {
    transform: rotate(-45deg);
    top: 0px;
  }
  #showLeft {}
  #showLeft:hover {
    cursor: pointer;
  }
  .cbp-spmenu-left {
    right: -301px;
  }
  .cbp-spmenu-left.cbp-spmenu-open {
    right: 0px;
    width: 100%;
  }
  /* Push classes applied to the body */
  .cbp-spmenu-push {
    overflow-x: hidden;
    position: relative;
    right: 0;
  }
  /* Transitions */
  .cbp-spmenu, .cbp-spmenu-push {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media (min-width: 900px) {
  .burger {
    display: none;
  }
  #main-nav {
    text-align: right;
    padding-top: 50px;
    width: 600px;
    float: right;
    transition: all 200ms linear 0ms;
    -webkit-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
  }
  #main-menu {
    display: inline-block;
  }
  .mn-clean a, .mn-clean a:hover, .mn-clean a:focus, .mn-clean a:active {
    margin: 8px 8px 0px 8px;
    /* make room for the toggle button (sub indicator) */
    margin-right: 38px;
    color: #fff;
  font-family: 'Oswald', sans-serif;
    font-size: 135%;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
  }
  .mn-clean li a.aktiv {
    color: #e84124;
    border-bottom: 5px solid #666666;
  }
  .mn-clean li a.aktiv:hover {
    color: #666;
  }
  .mn-clean ul {
    position: absolute;
    width: 12em;
  }
  .mn-clean li {
    float: left;
  }
  .mn-clean.mn-rtl li {
    float: right;
  }
  .mn-clean ul li, .mn-clean.mn-rtl ul li, .mn-clean.mn-vertical li {
    float: none;
  }
  .mn-clean > li:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .mn-clean a {
    white-space: nowrap;
  }
  .mn-clean ul a, .mn-clean.mn-vertical a {
    white-space: normal;
  }
  .mn-clean .mn-nowrap > li > a, .mn-clean .mn-nowrap > li > :not(ul) a {
    white-space: nowrap;
  }
  /* ...end */
  .mn-clean a, .mn-clean a:hover, .mn-clean a:focus, .mn-clean a:active, .mn-clean a.highlighted, a.active {
    padding: 0px 0px;
    padding-bottom: 20px;
    color: #e84124;
    border-radius: 0 !important;
  }
  .mn-clean a:hover, .mn-clean a:focus, .mn-clean a:active, .mn-clean a.highlighted, a.active {
    color: #e84124;
    border-bottom: 5px solid #666666;
  }
  .mn-clean a.current {
    color: #666;
  }
  .mn-clean a.disabled {
    color: #666;
  }
  .mn-clean a.has-submenu {
    padding-right: 25px;
  }
  .mn-clean a .sub-arrow {
    top: 50%;
    margin-top: -4px;
    right: 12px;
    width: 0;
    height: 0;
    border-width: 4px;
    border-style: solid dashed dashed dashed;
    border-color: #8f959a transparent transparent transparent;
    background: transparent;
    border-radius: 0;
  }
  .mn-clean a .sub-arrow::before {
    display: none;
  }
  .mn-clean li {
    border-top: 0;
  }
  .mn-clean > li > ul::before, .mn-clean > li > ul::after {
    content: '';
    position: absolute;
    top: -18px;
    left: 40px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 9px;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #8c929d transparent;
  }
  .mn-clean ul {
    padding: 5px 0;
    background: #8f959a;
    border-radius: 5px !important;
    box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
  }
  .mn-clean ul a, .mn-clean ul a:hover, .mn-clean ul a:focus, .mn-clean ul a:active, .mn-clean ul a.highlighted, a.active {
    border: 0 !important;
    padding: 10px 20px;
    color: #fff;
  }
  .mn-clean ul a:hover, .mn-clean ul a:focus, .mn-clean ul a:active, .mn-clean ul a.highlighted, a.active {
    background: #fbed12;
    color: #666;
  }
  .mn-clean ul a.current {
    color: #ccc;
  }
  .mn-clean ul a.disabled {
    background: #fff;
    color: #cccccc;
  }
  .mn-clean ul a.has-submenu {
    padding-right: 20px;
  }
  .mn-clean ul a .sub-arrow {
    right: 8px;
    top: 50%;
    margin-top: -5px;
    border-width: 5px;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #555555;
  }
  .mn-clean .scroll-up, .mn-clean .scroll-down {
    position: absolute;
    display: none;
    visibility: hidden;
    overflow: hidden;
    background: #fff;
    height: 20px;
  }
  .mn-clean .scroll-up:hover, .mn-clean .scroll-down:hover {
    background: #eeeeee;
  }
  .mn-clean .scroll-up:hover .scroll-up-arrow {
    border-color: transparent transparent #003d79 transparent;
  }
  .mn-clean .scroll-down:hover .scroll-down-arrow {
    border-color: #003d79 transparent transparent transparent;
  }
  .mn-clean .scroll-up-arrow, .mn-clean .scroll-down-arrow {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -6px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 6px;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #555555 transparent;
  }
  .mn-clean .scroll-down-arrow {
    top: 8px;
    border-style: solid dashed dashed dashed;
    border-color: #555555 transparent transparent transparent;
  }
  .mn-clean.mn-rtl a.has-submenu {
    padding-right: 12px;
    padding-left: 24px;
  }
  .mn-clean.mn-rtl a .sub-arrow {
    right: auto;
    left: 12px;
  }
  .mn-clean.mn-rtl.mn-vertical a.has-submenu {
    padding: 10px 20px;
  }
  .mn-clean.mn-rtl.mn-vertical a .sub-arrow {
    right: auto;
    left: 8px;
    border-style: dashed solid dashed dashed;
    border-color: transparent #555555 transparent transparent;
  }
  .mn-clean.mn-rtl > li > ul::before {
    left: auto;
    right: 30px;
  }
  .mn-clean.mn-rtl > li > ul::after {
    left: auto;
    right: 31px;
  }
  .mn-clean.mn-rtl ul a.has-submenu {
    padding: 10px 20px !important;
  }
  .mn-clean.mn-rtl ul a .sub-arrow {
    right: auto;
    left: 8px;
    border-style: dashed solid dashed dashed;
    border-color: transparent #555555 transparent transparent;
  }
  .mn-clean.mn-vertical {
    padding: 10px 0;
    border-radius: 5px;
  }
  .mn-clean.mn-vertical a {
    padding: 10px 20px;
  }
  .mn-clean.mn-vertical a:hover, .mn-clean.mn-vertical a:focus, .mn-clean.mn-vertical a:active, .mn-clean.mn-vertical a.highlighted {
    background: #fff;
  }
  .mn-clean.mn-vertical a.disabled {
    background: #eeeeee;
  }
  .mn-clean.mn-vertical a .sub-arrow {
    right: 8px;
    top: 50%;
    margin-top: -5px;
    border-width: 5px;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #555555;
  }
  .mn-clean.mn-vertical > li > ul::before, .mn-clean.mn-vertical > li > ul::after {
    display: none;
  }
  .mn-clean.mn-vertical ul a {
    padding: 10px 20px;
  }
  .mn-clean.mn-vertical ul a:hover, .mn-clean.mn-vertical ul a:focus, .mn-clean.mn-vertical ul a:active, .mn-clean.mn-vertical ul a.highlighted {
    background: #eeeeee;
  }
  .mn-clean.mn-vertical ul a.disabled {
    background: #fff;
  }
}
@media screen and (max-width: 1050px) {
  .mn-clean a, .mn-clean a:hover, .mn-clean a:focus, .mn-clean a:active {
    margin-left: 28px;
  }
}
@media screen and (min-width: 1350px) {
  .mn-clean a, .mn-clean a:hover, .mn-clean a:focus, .mn-clean a:active {
    font-size: 135%;
  }
  #main-nav {
    text-align: right;
    width: 600px;
    float: right;
    transition: all 200ms linear 0ms;
    -webkit-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
  }
}
/*# sourceMappingURL=mn-clean.css.map */