#mobileHeader {
	display: block;
	height: 100px;
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 11;
	background: #FFFFFF;
	font-size: 40px;
	border-bottom: 1px solid #000000;
}

#mobileMenu {
	float: left;
	display: block;
	height: 100%;
	width: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#mobileMenuContent {
	display: none;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 100px;
	background: #FFFFFF;
	z-index: 10;
	text-align: left;
	border-bottom: 1px solid #000000;
	line-height: 1.8;
}

#mobileMenuLink {
	width: 100%;
	display: flex;
	color: #000000;
	padding-left: 10%;
}

#mobileMenuLogo {
	float: right;
	display: flex;
	padding-right: 10%;
	padding-top: 10px;
}

.mobileMenuList {
	list-style-type: none;
	padding-left: 50px;
}

.mobileMenuLinks {
	font-size: 42px;
	color: #000000;
	text-align: left;
}

.mobileMenuHeadline {
	font-size: 48px;
	font-weight: bolder;
	text-align: left;
	padding-left: 25px;
}

#mobileLogo {
	max-height: 80px;
}

/* Menu */

#menuBar {
	height: 80px;
}

#innerMenu {
	height: 70px;
	width: 1100px;
	margin: auto;
}

nav {
	float: right;
    height: 70px;
}

#menu {
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	height: 100%;
	margin-top: 0;
}

#menuLogo {
	float: left;
	height: 100%;
}

#menuLogo img{
	height: 50px;
	
	position: relative;
	top: 50%;
	margin-top: -25px;
	
	vertical-align: middle;
}

.dropbtn {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
	height: 100%;
	font-weight: 700;
	font-size: 12px;
	text-align: center;
	text-transform: none;
	padding-top: 2px;
}

.dropbtn a {
	position: relative;
	text-align: center;
	text-transform: none;
	font-weight: 700;
	color: #2b2b2b;
	font-size: 12px;
	width: 100%;
	height: 100%;
	display: block;
	padding-top: 30px;
	font-family: Raleway;
}
.dropbtn:hover {
	border-top: 2px solid #006293;
	color: #2381ad;
	font-size: 12px;
	font-weight: 700;
	margin-top: -2px;
}
.dropdown {
    position: relative;
    display: inline-block;
	height: 100%;
	font-weight: 700;
	padding-top: 10px;
	height: 70px;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 260px;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
	background-color: #FFFFFF;
	font-size: 12px;
	font-weight: normal;
	padding: 10px;
	border: 1px solid #ddd;
	border-top: 0px;
}

.dropdown-content a:hover {
	color: #2381ad;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
}