#g-nav.panelactive{
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}
.circle-bg{
    position: fixed;
	z-index:10;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #7eb3af;
	transform: scale(0);
	right:-50px;
    top:-50px;
    transition: all .6s;
}
.circle-bg.circleactive{
	transform: scale(50);
}
#g-nav-list{
    display: none;
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list{
     display: block;
}
#g-nav ul {
	opacity: 0;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
#g-nav.panelactive ul {
    opacity:1;
}
#g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
}
#g-nav.panelactive ul li:nth-of-type(8) a{
    display: block;
    color:#7EB3AF;
    background-color:#f4f4ec;
    border-radius: 5px;
    margin-top:10px;
    padding:15px;
}
@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#g-nav li{
	text-align: center; 
	list-style: none;
}
#g-nav li a{
	color: #f4f4ec;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
    white-space: nowrap;
}
.openbtn{
	position:fixed;
	top:10px;
	right: 3px;
	z-index: 9999;
	cursor: pointer;
    width: 55px;
    height:50px;
    border-radius: 15px;
}
.btn-close{
    display: none;
    font-size:10px;
    text-align: center;
}
.btn-menu{
    font-size:10px;
    color:#7eb3af;
    text-align: center;
    text-shadow: 1px 1px #f4f4ec,
        -1px -1px #f4f4ec,
        1px -1px #f4f4ec,
        -1px 1px #f4f4ec,
        0px 1px #f4f4ec,
        0px -1px #f4f4ec,
        1px 0px #f4f4ec,
        -1px 0px #f4f4ec;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border:solid 1.8px #f4f4ec;
    border-radius: 10px;
	background-color: #7eb3af;
  	width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top:15px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background-color:#f4f4ec;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color:#f4f4ec;
}
.openbtn.active .btn-menu{
    display: none;
}
.openbtn.active .btn-close{
    display: block;
    color:#f4f4ec;
}