@charset "utf-8";


ul {
    list-style: none;
    list-style-type: none;
}

.hamburger {
  background: #5aaee2;
  text-align: center;
}

.hamburger a{
  text-decoration: none;
  color: #fff;
}

.hamburger .btn-gNav {
    position: fixed;
    top: 20px;
    right: 30px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #000;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span:nth-child(1) {
    top: 0;
}

.hamburger .btn-gNav span:nth-child(2) {
    top: 10px;
}

.hamburger .btn-gNav span:nth-child(3) {
    top: 20px;
}


.btn-gNav {
    display: none;
}

/* .gNav .gNav-menu {
    display: flex;
    justify-content: center;
} */

.gNav .gNav-menu li {
    /* margin: 0 auto;
    padding: 0 5px; */
    display: inline-block;
    padding: 4px 20px;
}

.gNav .gNav-menu li:hover{
  background-color:#f4a031;
}

@media screen and (max-width: 950px) {
    .btn-gNav {
        display: block;
    }

    .gNav {
        position: fixed;
        top: 0%;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        box-sizing: border-box;
        z-index: 1;
        padding-top: 50px;
        transition: .3s;
    }

    .gNav.open {
        /* top: 0; */
        right: 0;
      }

    .gNav .gNav-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /* justify-content: center; */
    }

    .gNav .gNav-menu li {
        width: 86%;
        padding: 15px;
        border-bottom: #525252 1px solid;
    }
    
    .hamburger a{
    text-decoration: none;
    color: #000;
  }

}