


.navIcon > * {
  width: 30px;
}

.navIcon {
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.naviconUpper {
  border-top: 3px solid #fcba28;
  cursor: pointer;
  transition: all 0.2s;
}

.innerNavicon {
  margin-top: 5px;
  border-top: 3px solid #fcba28;
  cursor: pointer;
  transition: all 0.3s;
}

.naviconLower {
  border-bottom: 3px solid #fcba28;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 5px;
}

.naviconUpper.on {
  transform:
    rotate(360deg);
  border-top: 3px solid #c2e483;
  
  opacity: 0;
}

.innerNavicon.on {
  transform: rotate(45deg);
  border-top: 3px solid #c2e483;
}

.naviconLower.on {
  transform: translateY(-8px) rotate(-45deg);
  border-bottom: 3px solid #c2e483;
}
