#hamburger .btn-gNav {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms;
z-index: 20
}
#hamburger .btn-gNav span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #15126F;
  border-radius: 10px;
  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: #fff;
  top: 6px;
  transform: rotate(-45deg);
}
#hamburger .btn-gNav.open span:nth-child(2), #hamburger .btn-gNav.open span:nth-child(3) {
  top: 6px;
  background: #fff;
  transform: rotate(45deg);
}
#gNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #15126F;
  font-size: 16px;
  box-sizing: border-box;
  padding-top: 50px;
  transition: .3s;
  font-weight: 500;
z-index: 10
}
#gNav.open {
  right: 0px;
}
#gNav .gNav-menu {
  width: 100%:;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
#gNav .gNav-menu li {
  display: block;
  padding: 20px 30px;
}
#gNav .gNav-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px
}
@media screen and (min-width: 1000px) {
  #gNav {
    position: absolute;
    width: 100%;
    height: auto;
    padding: 0px;
    top: 20px;
    right: 0;
    background: none;

  }
  .btn-gNav {
    display: none;
  }
  #gNav .gNav-menu {
    display: flex;
    justify-content: center;
    flex-direction: row;
  }
  #gNav .gNav-menu ul {
    width: 100%;
  }
  #gNav .gNav-menu li {
    padding: 0;
  }
  #gNav .gNav-menu li a {
    color: #15126F;
    font-size: 14px;
    border-left: 1px solid #15126F;
    padding: 0 1em
  }
  #gNav .gNav-menu li:first-child a {
    border-left: none;
  }
}