header .container {
  width: 100%;
  max-width: 117rem;
  margin: 0;
  padding: 0;
}
header a {
  text-decoration: none;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

header ul {
  list-style: none;
}

header nav {
  width: 100%;
  height: 1rem;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;

  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header .nav-list li {
  line-height: 4rem;
  position: relative;
  margin-left: 40px;
  margin: 20px;
}

header .nav-list a {
  display: block;
  color: #eee;
  padding: 0 1.5rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  -webkit-transition: color 650ms;
  transition: color 650ms;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header .nav-list a::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-bottom: 2px solid #61045f;
  border-top: 2px solid #aa076b;
  -webkit-transform: scaleY(2);
  transform: scaleY(2);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

header .nav-list a:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}
.hamburger {
  background-color: transparent;
  border: 0;
  color: #fff;
  line-height: 7px;
  cursor: pointer;
  width: 20px;
  font-size: 30px;
  display: none;
  margin: 5%;
  margin-left: 80%;
}
.hamburger:focus {
  outline: none;
}
@media screen and (max-width: 767px) {
  #nav-ul {
    display: none;
    width: 100%;
    flex-direction: column;
    height: 20vh;
    background: black;
  }
  #nav-ul.show {
    display: flex;
  }
  #nav-ul li {
    background-color: black;
  }
  #hamburger {
    display: block;
  }
}
