body {
  margin: 0;
  padding: 0;
  background: #ccc;
}

.nav ul {
  list-style: none;
  background-color: rgba(124, 101, 60, 0.58);
  text-align: center;
  padding: 0;
  margin: 0;
  height:63px;
}

.nav1 li {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2em;
  line-height: 40px;
  text-align: left;
}

.nav1 a {
     text-decoration: none;
    /* color: #fff; */
    float: left;
    display: block;
    /* padding-left: 15px; */
    border-bottom: 1px solid #888;
    transition: .3s background-color;
}

.nav1 a:hover {
  background-color: #f44336;
  height:63px;
}

.nav1 a.active {
  background-color:#f44336;
  color: #444;
  cursor: default;
  height:63px;
}

/* Sub Menus */
.nav1 li li {
  font-size: .8em;
}

/*******************************************
   Style menu for larger screens

   Using 650px (130px each * 5 items), but ems
   or other values could be used depending on other factors
********************************************/

@media screen and (min-width: 650px) {
  .nav1 li {
    width: 130px;
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
    display: inline-block;
    margin-right: -4px;
  }

  .nav1 a {
    border-bottom: none;
  }

  .nav1 > ul > li {
    text-align: center;
  }

  .nav1 > ul > li > a {
    padding-left: 0;
  }

  /* Sub Menus */
  .nav1 li ul {
    position: absolute;
    display: none;
    width: inherit;
  }

  .nav1 li:hover ul {
    display: block;
  }

  .nav1 li ul li {
    display: block;
  }
}
