@charset "utf-8";
ul{
    list-style: none;
}
.gNav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0.1em;
}
.hamburger {
    position: fixed;
    top:0;
    right:0;
    margin: 20px auto 0;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    z-index: 9999999;
}
.hamburger .btn-gNav {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 60px;
    height: 65px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    background-color: rgba(85, 81, 81, 0.682);
    border-radius: 0 0 0 20px;
}
.hamburger .btn-gNav span {
    position: absolute;
    width: 80%;
    height: 7px;
    margin:10%;
    background: #ffffff;
    border-radius: 18px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.hamburger .btn-gNav span:nth-child(1) {
    top: 0;
}
.hamburger .btn-gNav span:nth-child(2) {
    top: 20px;
}
.hamburger .btn-gNav span:nth-child(3) {
    top: 40px;
}
.gNav .gNav-menu li {
    margin: 0 auto;
    padding: 0 5px;
}
.gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 1;
    padding-top: 50px;
    transition: .3s;
}
.gNav.open {
    right: 0;
    width: 60%;
}
.gNav .gNav-menu {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
}
.gNav .gNav-menu li {
    width: 86%;
    padding: 15px;
    border-bottom: #525252 1px solid;
}