#navigation {
  height: auto;
}

.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.nav li {
  background: #EF3220;
  float: left;
  margin: 1rem;
  border-radius: 10px;
}

.nav li:hover {
  background-color: #9e180b;
  border-radius: 10px;
}

.nav li a,
.nav li span {
  display: block;
  color: white;
  text-align: center;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.nav_sub {
  display: none;
  list-style-type: none;
  margin-left: 180px;
  margin-top: 8px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  position: absolute;
  z-index: 99999;
}

.nav_sub .arrow-up {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  position: relative;
  top: -35px;
  border-bottom: 25px solid rgba(0, 0, 0, 0.8);
}

.nav_sub li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #fffef1;
  margin: 0.5rem;
  border-radius: 10px;
}

.nav_sub li:hover {
  background-color: #fff78b;
  border-radius: 10px;
}

.nav_sub li a {
  display: block;
  color: #EF3220;
  text-align: center;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1rem;
}
/*# sourceMappingURL=navigation.css.map */