#g-nav{
    position:fixed;
	z-index: -1;
	opacity: 0;
	top:0;
	width:100%;
    height: 100vh;
    color:#DEBA18;
	background:#1B1B1A;
	transition: all 0.3s;
}
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#g-nav ul {
    display: none;
    position: absolute;
    z-index: 999;
    top:50%;
    left:35%;
    transform: translate(-50%,-50%);
}
#g-nav.panelactive ul {
    display: block;
}

#g-nav li{
	list-style: none;
}
#g-nav li a{
	color: #DEBA18;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
#g-nav-list div{
    margin-top:1em;
}
#g-nav-list img{
    margin-bottom:1em;
}
#g-nav-list i{
    margin-right:5px;
}
.rsv a{
    text-align: center;
    border:solid 1px #DEBA18;
}
.openbtn{
	position:fixed;
    z-index: 9999;
	bottom:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #1B1B1A;
  	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{
    background-color:#F1F1EE;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.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%;
}
.openbtn p:nth-of-type(1), .openbtn p:nth-of-type(2){
    position: absolute;
    font-size:12px;
    bottom:-5px;
    left:8px;
}
.openbtn p:nth-of-type(2){
    display: none;
}
.openbtn.active p:nth-of-type(1){
    display: none;
}
.openbtn.active p:nth-of-type(2){
    display: block;
    color:#F1F1EE;
}