section {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

@media only screen and (max-width: 820px) {
  nav {
    width: 760px;
    background: #ff2b58;
    padding: 5px;
    margin: 0;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}

/*.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
*/
/*.menu li {
    display: none;
}*/
@media only screen and (max-width: 820px) {
  .menu li a {
    width: 760px;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
  }
}

@media only screen and (max-width: 820px) {
  .hum {
    width: 760px;
    display: block;
    padding: 20px;
    margin: 0px auto;
  }
}

.menuToggle {
  padding: 10px;
  margin: 0px auto;
  color: #fff;
  padding: 7px 0px 0px 25px;
  cursor: pointer;
  display: none;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .menuToggle {
    width: 760px;
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .menu {
    width: 760px;
    display: none;
    position: absolute;
    background: #00b1b1;
    margin-left: -25px;
    padding-left: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .menu li {
    width: 760px;
    display: block;
  }
}

/*.icon {
    width: 25px;
    height: 25px;
    cursor: pointer;
}
*/
.hamburger {
  width: 40px;
  height: 4px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-left: 0px;
}

.hamburger:before,
.hamburger:after {
  content: "";
  width: 40px;
  height: 4px;
  position: absolute;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.hamburger:before {
  top: -16px;
}

.hamburger:after {
  top: 16px;
}

.icon.active .hamburger {
  background: rgba(0, 0, 0, 0);
}

.icon.active .hamburger:before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.icon.active .hamburger:after {
  top: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
/*# sourceMappingURL=hamburger.css.map */