/* --- Header ---------------------------------------- */
.header {  
  height:10hv;
  background:#ffdca0;  
  color: #000000;
  border-bottom: 2px solid #A08A64;  
  display: grid;   
  grid-template-columns: 60px auto;   
}  
.header_l {      
  align-self: center;
}
.header_r {  
  text-align: center;
}
.header_logo {      
  line-height: 0;
}
.header_titel {    
  font-size:25px;
  color:#a08a64;   
  font-weight:bold;
  text-align: center;  
}


/* --- NAV-Menu -------------------------------------- */
.nav_icon {  
  padding: 5px;
  background: #404040;  
  margin: 0 0 0 10px;    
}

.nav_icon span {
  display: block;
  width: 36px;
  height: 3px;
  margin: 6px auto;
  background: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.nav_icon.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}
.nav_icon.active span:nth-child(2) {
  opacity: 0;
}
.nav_icon.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}


.nav_area {
  display: none;
  position: absolute;
  margin: 0 0 0 12px;
  padding: 10px;
  color: #FFFFFF;
  background: #404040;
  -webkit-backface-visibility: hidden;
  z-index: 9999;
}
.nav_titel {
  font-size:4.6vmin;
}
.nav_area a {
  color: white;
  padding: 10px 14px;
  margin: 10px 0 0 0;
  text-decoration: none;
  font-size:4.8vmin;
  display: block;
  background: #FFFFFF30;
}