@charset "utf-8";

.background-black {
  position: absolute;
  top: 0px;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: black;
  margin: 0px;
  padding: 0px;
  z-index: -99;
}
.background-black2 {
  position: absolute;
  top: 0px;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: black;
  margin: 0px;
  padding: 0px;
  z-index: -99;
}
ol,
ul {
    list-style: none;
    list-style-type: none;
}

.gNav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 25px;
    letter-spacing: 0.1em;
}

.hamburger {
    margin: 20px 50px;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
}

.hamburger .btn-gNav {
    position: fixed;
    top: 20px;
    left: 20px;
    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: #ffffff;
    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;
}

.hamburger .btn-gNav.open span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger .btn-gNav.open span:nth-child(2),
.hamburger .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


.btn-gNav {
    display: none;
}

.gNav .gNav-menu {
    display: flex;
    justify-content: space-between;
}

.gNav .gNav-menu li {
    margin: 0 auto;
    padding: 0 15px;
}

@media screen and (max-width: 1080px) {
    .btn-gNav {
        display: block;
    }

    .gNav {
        position: fixed;
        top: -100%;
        right: 0%;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        font-size: 16px;
        box-sizing: border-box;
        z-index: 11;
        padding-top: 50px;
        transition: .3s;
    }

    .gNav.open {
        right: 0;
        top: 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;
    }

}