.mainblur {
    filter: blur(8px);
}
#g-nav {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #395246;
    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: 50%;
    transform: translate(-50%, -50%);
}
#g-nav.panelactive ul {
    display: block;
}
#g-nav li {
    list-style: none;
    text-align: left;
    line-height: 1.6em;
}
#g-nav li.second{
    margin:2em 0 0;
}
#g-nav li a {
    display: block;
    padding: 10px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
}
#g-nav li a span{
    font-family: "Abril Fatface", serif;
    font-size:20px;
}
.openbtn {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 2vw;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
.openbtn span {
    position: absolute;
    display: inline-block;
    width: 50%;
    left: 12px;
    height: 3px;
    border-radius: 2px;
    background-color: #395246;
    transition: all .4s;
}
.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%;
}
.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%;
}