.wrapper_menu {
    position: fixed;
    z-index: 1000;
    right: 70px;
    top: 0;
}
.menu_sub {
    position: absolute;
	right: -44px;
	top: 41px;
	color: White;
	font-size: 10px;
	letter-spacing: 4px;
	transition: all 0.2s ease 0s;
}
.nav_bar {
  height: 70px;
  width: 100%;
  background: white;
  position: relative;
}
.nav_bar .logo {
	position: absolute;
	left: 0px;
	height: 40px;
	width: auto;
	top: 16px;
}

.nav_bar .logo_aktive {
	position: absolute;
	left: 0px;
	height: 40px;
	width: auto;
	top: 16px;
	transition: all 0.5s ease 0s;
    opacity: 0;
	visibility: hidden;
	z-index: 9;
}
body.nav_active .nav_bar .logo_aktive {
    opacity: 1;
	visibility: visible;
}
.menu_icon {
    height: 30px;
    width: 30px;
    position: absolute;
    z-index: 2;
    top: 13px;
    cursor: pointer;
    
}
.menu_icon_line {
    height: 3px;
    width: 40px;
    display: block;
    background-color: White;
    margin-bottom: 8px;
    transition: all 0.2s ease 0s;
}
body.nav_active .menu_icon_line {
  background-color: #fff;
  -webkit-transform: translateX(0px) rotate(-45deg);
          transform: translateX(0px) rotate(-45deg);
}
body.nav_active .menu_icon_line_oben {
  -webkit-transform: translate(0px, 11px) rotate(45deg);
          transform: translate(0px, 11px) rotate(45deg);
}
body.nav_active .menu_icon_line_unten {
  -webkit-transform: translate(1px, -10px) rotate(45deg);
          transform: translate(1px, -10px) rotate(45deg);
}

.overlay {
	position: fixed;
	background: #cdc2be;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s, visibility .35s, height .35s;
	overflow: hidden;
	z-index: 1;
	background-image: url(img/temp/background-menu.jpg);
	background-size: cover;
	background-position: center 30%;
}
.nav_active .overlay {
	opacity: 1;
	visibility: visible;
	height: 100%;
}
.wrapper_menu_box {
	margin: 0 auto; 
	max-width: 1200px; 
	width: 95%; 
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.menu_box {
	
}
.menu_box ul li {
	list-style: none;
	padding: 10px 0;
	font-weight: bold;
	font-size: 30px;
}
.menu_box ul li a {
    color: White;
    text-decoration: none;
    font-weight: normal;
    letter-spacing: 4px;
    transition: all 0.5s ease 0s;
}
.menu_box .current-menu-item a,
.menu_box ul li a:hover {
    color: #65605e;
    text-decoration: none;
    font-weight: normal;
    letter-spacing: 4px;
}
.menu_box > ul > li > ul {
	position: absolute;
	left: 50%;
	top: 15px;
	visibility: hidden;
}
.menu_box ul li ul li {
    list-style: none;
    padding: 5px 0;
    font-weight: normal;
    font-size: 17px;
}
.menu_unten {
	padding-top: 50px;
}
.menu_unten li {
	padding: 3px 0 !important;
	font-size: 16px !important;
	color: White;
	font-weight: normal !important;
	letter-spacing: 4px;
}
.menu_unten li:hover {
	color: #005e96;
	cursor: pointer;
}
.menu_unten li a {
	
}
.wrapper_menu:hover .menu_sub {
	color: Black;
}
.wrapper_menu:hover span {
	background: #65605e;
}
.nav_active .wrapper_menu {
/* 	top: 20px; */
}