.navi-bar{
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.navi-home{
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255,255,255,0.8);
  display: table;
  height: 45px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 5px 0 rgba(0,0,0,.12), 0 2px 5px 0 rgba(0,0,0,.3);
  cursor: pointer;
  padding: 0 12px;
  pointer-events: auto;
}

.navi-home-text{
  display: table-cell;
  vertical-align: middle;
  width: 115px;
}

.navi-menu{
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  width: 45px;
  height: 45px;
  cursor: pointer;
  pointer-events: auto;
}

.menu-wrap{
  opacity: 0;
  transition: 0.2s cubic-bezier(0.2, 0, 1, 0.8) all;
  max-width: 80vw;
}

.active .menu-wrap{
  opacity: 1;
}

.menu-wrap div{
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  margin-left: -10px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.menu-wrap a{
  margin-bottom: 10px;
  display: inline-block;
  background-color: rgba(255,255,255,0.8);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  color: #000000;
  transform:scale(1,1);
  transition: 0.3s all;
}

.menu-wrap a:hover{
  transform:scale(1.03,1.03) translateY(-2px);
  transition: 0.35s all;
}

.navi-menu-bg{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255,255,255,0.8);
  width: 45px;
  height: 45px;
  border-radius: 8px;
  box-shadow: 0 0 5px 0 rgba(0,0,0,.12), 0 2px 5px 0 rgba(0,0,0,.3);
  transition: 0.2s cubic-bezier(0.2, 0, 1, 0.8) all;
  pointer-events: auto;
}

.active .navi-menu-bg{
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  background-color: rgba(0,0,0,0.8);
  transition: 0.2s cubic-bezier(0, 0.2, 0.8, 1.0) all;
}

.btn-trigger {
  position: absolute;
  top: 15px;
  left: 14px;
  width: 17px;
  height: 15px;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000000;
  border-radius: 1.5px;
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 6px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

.active #hum-btn span{
  background-color: #ffffff;
}

.active #hum-btn span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
.active #hum-btn span:nth-of-type(2) {
  opacity: 0;
}
.active #hum-btn span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
