@charset "utf-8";
#g-nav, .openbtn {
    display: none;
}
@media screen and (max-width:820px) {
    #g-nav, .openbtn {
        display: block;
    }
    #g-nav {
        position: fixed;
        z-index: 999;
        top: 0;
        right: -120%;
        width: 80%;
        height: 100vh;
        background: #94bdf7;
        transition: all 0.6s;
    }
    #g-nav.panelactive {
        right: 0;
    }
    #g-nav.panelactive #g-nav-list {
        position: fixed;
        z-index: 999;
        width: 80%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    #g-nav ul {
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #g-nav li {
        list-style: none;
        text-align: center;
    }
    #g-nav li a {
        display: block;
        padding: 10px;
        font-size:18px;
        font-weight: bold;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #0b308e;
    }
    .openbtn {
        position: fixed;
        z-index: 9999;
        top: 15px;
        right: 15px;
        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: #0b308e;
        width: 55%;
    }
    .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%;
    }
}
@media screen and (max-width:500px){
    .openbtn{
        top:5px;
    }
}