
/* __Some css of .menuBtn is also added in style.css somewhere in line number *205 around */
.menuBtn{
  /* background-color: aqua; */
  width: 30px;
  height: 26px;
  position: relative;
}
.menuBtn span{
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #ffffffe7;
  border-radius: 4px;
  transition: all 0.4s;
  transform-origin: center;
}

@media only screen and (max-width: 800px) {
  .menuBtn span{
    height: 3px;
  }
  .menuBtn{
    height: 22px;
  }
}

.menuBtn span:nth-child(1){
  top: 0;
}
.menuBtn span:nth-child(2){
  top: 0;bottom: 0;
  margin: auto;
}
.menuBtn span:nth-child(3){
  bottom: 0;  
}


.hemburgSpn0{
  transform: rotate(45deg) !important;
  top: 10px !important;
}
.hemburgSpn1{
  transform: scale(0) !important;
}
.hemburgSpn2{
  transform: rotate(-45deg) !important;
  bottom: 12px !important;
}


