#showBtn {
  width: 40px;
  height: 40px;
  position: relative;
}

#showBtn:hover{
  cursor: pointer;
}

#showBtn span {
  width: 100%;
  height: 0px;
  border: 2px solid #888;
  border-radius: 10px;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  transition: .15s ease-in-out;
}

#showBtn span:nth-child(1) {
  top: 25%;
}

#showBtn span:nth-child(2) {
  top: 50%;
}

#showBtn span:nth-child(3) {
  top: 50%;
}

#showBtn span:nth-child(4) {
  top: 75%;
}

.opacityN {
  opacity: 0;
}

.opacityB {
  opacity: 1;
}

#burgerContainer {
  width: 100%;
  height: 60px;
  position: fixed;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 10px 20px;
  z-index: 10;
}

.burgerLogo {
  height: 100%;
  width: 133px;
}

#mobileAnchorContainer {
  position: fixed;
  width: 100%;
  background-color: #fff;
  top: -100%;
  left: 0;
  /* transition: 1.5s; */
  transition: ease-in-out 0.3s;
  z-index: 10;
}

#mobileAnchorContainer a {
  display: block;
  padding: 20px 0;
  text-decoration: none;
  color: #000;
  text-align: center;
}