* {
  margin: 0;
  padding: 0;
}

section {
  top: 0;
  width: 100%;
  height: 100vh;
  background-image: url(mount05_1920.jpg);
  background-size: cover;
  background-position: center;
}

.menuBar {
  text-align: center;
}
.menuBar ul {
  background-color: #5599c7;
}
.menuBar ul li {
  display: inline-block;
  width: 120px;
  margin: 0 35px;
  padding-top: 25px;
  padding-bottom: 25px;
  cursor: pointer;
  transition: all 0.3s;
}
.menuBar ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}
.menuBar ul li:hover {
  background-color: #73b5e0;
}
.menuBar ul li .menu-01 {
  position: absolute;
  background-color: #5599c7;
  margin-top: 25px;
  padding-top: 10px 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: none;
}

.menuBar ul.menu-01 li {
  display: block;
  width: 120px;
  border-bottom: 1px dotted white;
}
.menuBar ul.menu-01 li:last-child {
  border: none;
}
.menuBar ul li:hover .menu-01 {
  display: block;
}

.menuBar .active {
  background-color: #73b5e0;
}

.adidas {
  position: fixed;
  z-index: 999;
  top: 10px;
  right: 20px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
}
.adidas span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
.adidas span:nth-of-type(1) {
  top: 15px;
}
.adidas span:nth-of-type(2) {
  top: 23px;
}
.adidas span:nth-of-type(3) {
  top: 31px;
}

.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.active span:nth-of-type(2) {
  opacity: 0;
}
.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media (max-width: 860px) {
  .menuBar {
    display: flex;
  }
  .menuBar ul {
    z-index: 999;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: bottom 0.6s ease-in-out;
  }
  .menuBar ul li {
    position: relative;
    display: block;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menuBar ul li ul {
    position: absolute;
    top: 0;
    left: 50px;
    width: 250px;
    height: 200px;
  }
  .menuBar ul li a {
    color: #fff;
  }
  .menuBar ul li:hover {
    background-color: #666;
  }
  .menuBar ul.move-bottomUp {
    bottom: 0;
  }
  .adidas {
    display: block;
  }
}/*# sourceMappingURL=easy-navheader.css.map */