#menu { 
	cursor: pointer;
	position: absolute;
	top: 32px;
	right: 30px;
}
#menu>div { 
	width: 45px;
	height: 4px;
	background: #003070;
	margin-bottom: 10px;
}
#menu>div:last-child { 
	margin-bottom: 0;
}

.menu-close { 
	display: none;
	position: absolute;
	top: 25px;
	right: 30px;
	cursor: pointer;
	width: 45px;
	height: 45px;
}
.menu-close>div { 
	width: 45px;
	height: 4px;
	background: #f78900;
	position: absolute;
	top: 21px;
	left: 0;
}
.menu-close div:first-child { 
	transform: rotate(45deg);
}
.menu-close div:last-child { 
	transform: rotate(-45deg);
}


#nav { 
	width: 720px;
	position: absolute;
	left: 0;
	top: 95px;
	background: #003070;
	display: none;
}
#nav ul	{ 
	list-style: none;
}
#nav ul li { 
	font-size: 35px;
	color: #fff;
	cursor: pointer;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
#nav ul li a { 
	text-decoration: none;
	color: #fff;
	padding: 35px 25px;
	display: block;
}
#nav ul li a svg { 
	width: 50px;
}
#nav ul li a span { 
	margin-left: 10px;
}
#nav ul li:hover { 
	background: #f78900;
}

#wrap .logo { 
	position: absolute;
	top: 21px;
	left: 22px;
	width: 232px;
	height: 54px;
}