#g-nav {
	position: fixed;
	z-index: -1;
	opacity: 0;
	top: 72px;
	width: 100%;
	height: 230px;
	background: rgba(0,74,154,0.95);
	transition: all 1.0s;
}

#g-nav.panelactive {
	opacity: 1;
	z-index:999;
}

#g-nav.panelactive #g-nav-list {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
}

.menu-btn {
	position:absolute;
	top: 0px;
	right: 0px;
	cursor: pointer;
	height: 72px;
	width: 60px;
	background: none !important;
}

.menu-btn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 8px;
	height: 3px;
	border-radius: 2px;
	background-color: #ffffff;
	width: 55%;
}
.menu-btn span:nth-of-type(1) {
	top:25px;
}
.menu-btn span:nth-of-type(2) {
	top:36px;
}
.menu-btn span:nth-of-type(3) {
	top:47px;
}
.menu-btn.active span:nth-of-type(1) {
	top: 32px;
	left: 5px;
	transform: translateY(6px) rotate(-45deg);
	width: 40px;
}
.menu-btn.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-btn.active span:nth-of-type(3) {
	top: 44px;
	left: 5px;
	transform: translateY(-6px) rotate(45deg);
	width: 40px;
}
