
  
  header {
    /*position: fixed;*/
    top: 0;
    left: 0;
    padding: 0 50px 0 20px;
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    background: var(--darkpeach);
    z-index: 100;
    -webkit-box-shadow: 0px 5px 15px 0px #000000; 
    box-shadow: 0px 5px 15px 0px #000000;
  }
  
  header .logo {
    color: var(--black3);
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    float: left;
    font-weight: bold;
  }
  header .logo img{  
    margin: 10px;
    width: 400px;
    height: auto;    
  }
  header .logo_1 img{  
    margin: 10px;
    height: 115px;    
  }
  header nav {
    float: right;
    margin-top: 20px;
  }
  
  header nav ul {
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  header nav ul li {
    list-style: none;
    position: relative;
    color: var(--white);
    font-size: 1em;
  }
  
  header nav ul li.sub-menu:before {
    content: '\f078';
    font-family: fontAwesome;
    position: absolute;
    line-height: 50px;
    color:  var(--white);
    right: 1px;
  }
  header nav ul li.sub-menu:before:hover {
    content: '\f078';
    font-family: fontAwesome;
    position: absolute;
    line-height: 50px;
    color:  var(--grau);
    right: 1px;
  }
  
  header nav ul li.active.sub-menu:before {
    content: '\f077';
  }
  
  header nav ul li ul {
    position: absolute;
    left: 0;
    background: var(--grau);
    display: none;
    z-index: 1;
  }
  
  header nav ul li.active ul {
    /* use li: hover instead */
    display: block;
  }
  
  header nav ul li ul li {
    display: block;
    width: 200px;
  }
  .li_weit{
    width: 200px;
  }
  
  header nav ul li a {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: var(--white);
    text-decoration: none;
    display: block;
  }
  
  header nav ul li a:hover {
    color: var(--grau);
    background: var(--lightpeach);
  }
  
  header nav ul li a.active {
    background: var(--gray);
    color: var(--white);
  }
  
  .menu-toggle {
    color: #fff;
    float: right;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none
  }
  
  @media (max-width: 980px) {
    header {
      padding: 0 20px;
      
    }
    header .logo img{  
      margin: 25px 5px 5px 5px;
      width: 60%;
      height: auto;
      
    }
    .menu-toggle {
      display: block;
    }
    header nav {
      /* use display none or left:-100% to hide the nav  */
      /* display: none; */
      position: absolute;
      top: 50px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 50px);
      background: var(--peach);
      transition: 0.5s;
      z-index: 1;
    }
    header nav.active {
      left: 0;
    }
    header nav ul {
      display: block;
      text-align: center;
    }
    header nav ul li a {
      border-bottom: 0.9px solid rgba(0, 0, 0, .2);
      color: var(--white);
    }
    header nav ul li.active ul {
      position: relative;
      background: #003e6f;
      background: var(--peach);
    }
    header nav ul li ul li {
      width: 100%;
    }
    .li_weit{
      width: 200px;
      background-color: var(--grau);
    }
  }
  