body.fixed,
body.fixed main {
  height: 100%;
  overflow: hidden;
}

.burgerBtn {
  display: block;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
}
.burgerBtn span {
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  background: #fff;
  transition: 0.3s ease-in-out;
}
.burgerBtn span:nth-child(1) {
  top: 0;
}
.burgerBtn span:nth-child(2) {
  top: 10px;
}
.burgerBtn span:nth-child(3) {
  top: 20px;
}
.burgerBtn.active span:nth-child(1) {
  top: 10px;
  background: #fff;
  transform: translateX(-50%) rotate(-45deg);
}
.burgerBtn.active span:nth-child(2), .burgerBtn.active span:nth-child(3) {
  top: 10px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.burgerMenu {
  min-width: 300px;
  width: 100%;
  background: #0071BA;
  transition: 0.6s;
  overflow: scroll;
  position: fixed;
  z-index: 99;
  top: 87px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
}
.burgerMenu ul {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.burgerMenu ul li {
  text-align: center;
  width: 100%;
  padding: 0;
  list-style-type: none;
  transition: 0.4s all;
  border-top: 1px solid #fff;
}
.burgerMenu ul li:last-child {
  padding-bottom: 0;
}
.burgerMenu ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}
.burgerMenu.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0%);
}
@media screen and (max-width: 768px) {
  .burgerMenu {
    top: 78px;
  }
}