.menu_icon {
    height: 30px;
    width: 30px;
    position: absolute;
    left: 20px;
    z-index: 9999;
	top: 23px;
    cursor: pointer;
    transition: all 0.5s ease 0s;
}
.menu_icon_line {
    height: 3px;
    width: 30px;
    display: block;
    background-color: White;
    margin-bottom: 5px;
    transition: background-color .5s ease, -webkit-transform .2s ease;
    transition: transform .2s ease, background-color .5s ease;
    transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
body.nav_active .menu_icon_line {
  background-color: white;
  -webkit-transform: translateX(0px) rotate(-45deg);
          transform: translateX(0px) rotate(-45deg);
}
body.nav_active .menu_icon_line_oben {
  -webkit-transform: translate(0px, 8px) rotate(45deg);
          transform: translate(0px, 8px) rotate(45deg);
}
body.nav_active .menu_icon_line_unten {
  -webkit-transform: translate(1px, -7px) rotate(45deg);
          transform: translate(1px, -7px) rotate(45deg);
}
body.nav_active .menu_text {
	opacity: 0;
}
body.nav_active .header_login,
body.nav_active .header_ticker,
body.nav_active .header_rechts {
	opacity: 0;	
}
body.nav_active .wrapper_head {
	border-bottom: none;
	background: none;
}
.menu_text {
    font-size: 26px;
    position: absolute;
    left: 45px;
    top: -10px;
    transition: all 0.5s ease 0s;
    font-family: 'Franklin Gothic Demi' !important;
}
.overlay_menu {
	position: fixed;
	background: White;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity .6s, visibility .6s, height .6s;
	overflow: hidden;
	z-index: 9999;
	background-image: url(img/background.jpg);
	background-size: cover;
	background-position: center center;
	color: White;
}
.nav_active .overlay_menu {
	opacity: 1;
	visibility: visible;
	height: 100%;
}
.menu_box {
    margin: 0 auto;
    max-width: 1100px;
    width: 95%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-transform: uppercase;
}
.menu_box ul li {
	list-style: none;
	padding: 4px 0;
	position: relative;
}
.menu_box ul li a {
	color: white;
	font-size: 24px;
	transition: all 0.5s ease 0s;
	letter-spacing: 2px;
	font-family: 'Anton', sans-serif;
}
.menu_box ul li a:hover {
	color: #848484;
	text-decoration: none;
}

.hauptmenu_box .current_page_item::after {
    position: absolute;
    top: 50%;
    height: 1px;
    background: white;
    content: '';
    transition: 0.25s ease-in-out;
    left: -5vw;
	width: 3vw;
}

.hauptmenu_box {
	float: left;
	padding-left: 50px;
}
.informationen_box {
	float: left;
	width: 270px;
	margin-left: 50px;
}
.menu_headline {
	font-size: 28px;
	letter-spacing: 2px;
	border-bottom: 2px solid white;
	display: inline-block;
	margin-bottom: 15px;
	color: white;
	font-family: 'Anton', sans-serif;
}
.menu_logo {
    width: 230px;
    position: fixed;
    left: 50%;
    transform: translate(-125px, 110px);
}
.menu_logo img {
	width: 100%;
	height: auto;
}
.menu_info_box {
	float: right;
	text-align: right;
	padding-right: 50px;
}
.menu_info_text {
	max-width: 300px;
	font-size: 22px;
	line-height: 32px;
	font-family: 'Anton', sans-serif;
	letter-spacing: 2px;
}
.menu_headline_service {
	padding-top: 50px;
}
.service_menu ul li a {
	font-size: 22px;
}
.menu_footer_box {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    position: fixed;
    bottom: -120px;
    font-weight: 300;
    font-family: open sans;
    text-transform: initial;
    letter-spacing: 2px;
    font-size: 13px;
    padding: 0 50px;
}
.menu_footer_rechts {
	float: right;
}
.menu_footer_links {
	float: left;
}
.menu_footer_box a {
	color: white;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.5s ease 0s;
}
.menu_footer_box a:hover {
	border-bottom: 1px solid White;
}
@media only screen and (max-width: 1200px) {
	.menu_info_text,
	.menu_headline,
	.menu_box ul li a {
	    font-size: 18px;
	}
}
@media only screen and (max-width: 900px) {
	.menu_logo {
	    width: 170px;
	    position: fixed;
	    left: 50%;
	    transform: translate(-85px, 40px);
	}
}
