#menu-new {
	width: 40px;
	height: 40px;
	margin: 30px 0 20px 20px;
	cursor: pointer;
}
.bar{
	height: 7px;
	width: 100%;
	background-color: #0F2D5B;
	display: block;
	border-radius: 5px;
	transition: 0.3s ease;
}
#bar1{
	transform: translateY(-5px);
}
#bar3{
	transform: translateY(5px);
}
.nav li a{
	color: #ffffff;
	text-decoration: none;
}
.nav li a:hover{
	font-weight: bold;
}
.nav li{
	list-style: none;
	padding: 16px 0;
}
.nav{
	padding: 0 0 40px 0;
	margin: 0 20px;
	transition: 0.3s ease;
	display: none;
}
.menu-bg, #menu-bar{
	top: 0;
	left: 0;
	position: absolute;
}
.menu-bg{
	z-index: 1;
	width: 0;
	height: 0;
    margin: 30px 0 20px 20px;
    background: radial-gradient(circle,#0F2D5B,#0c2955);
	transition: 0.3s ease;
}
#menu-bar{
	z-index: 2;	
}
.change-bg{
	width: 550px;
	height: 935px;
	transform: translate(-60%,-30%);
}
.change .bar{
	background-color: white;
}
.change #bar1{
	transform: translateY(5px) rotateZ(-45deg);
}
.change #bar3{
	transform: translateY(-8px) rotate(45deg);
}
.change #bar2{
	opacity: 0;
}
.change{
	display: block;
}