#mM {
	cursor: pointer;
	height: 60px;
	width: 60px;
	position: absolute;
	top: 18px;
	right: 20px;
	z-index: 99999999999999999;
	-webkit-transition: background .3s ease-out;
	-moz-transition: background .3s ease-out;
	-ms-transition: background .3s ease-out;
	-o-transition: background .3s ease-out;
	transition: background .3s ease-out;
	border: 0 !important;
	background: #00206B;
	padding: 5px;
	outline: 0 ;
}
.ariaDel {
	border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}
#mM i {
	background-color: #fff;
	display: block;
	float: right;
	height: 5px;
	position: relative;
	top: 0;
	width: 25px;
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease,
			    width .4s linear;
}
#mM i:before,
#mM i:after {
	background-color: #fff;
	content: '';
	display: block;
	height: 5px;
	position: absolute;
	top: -10px;
	width: 50px;
	right: 0;
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               opacity 0.55s ease;
}
#mM i:after {
	top: 10px;
}
#mM:active i,
#mM:active i:before,
#mM:active i:after,
#mM:focus i,
#mM:focus i:before,
#mM:focus i:after,
#mM:hover i,
#mM:hover i:before,
#mM:hover i:after {
	background: #fff;
}
#mM:hover i {
	width: 50px;
}




.mobilneOpen #mM i {
	transform: rotate(45deg) translate(1px, -1px);
	width: 100%;
}
.mobilneOpen #mM i::before {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.mobilneOpen #mM i::after {
	transform: rotate(-90deg) translate(9px, -1px);
}







.nav {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.nav ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	width: 600px;
	max-width: 100%;
	height: 100vh;
	margin: 0 auto;
	padding: 50px 20px;
	background: #00206B;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.nav li {}
.nav a {
	display: block;
	margin: 10px 0;
	line-height: 40px;
	font-size: 20px;
	color: #fff;
}









.mobilneOpen ul {
	visibility: visible;
	opacity: 1;
}
.mobilneOpen a:hover {}        