

 
.nav ul {
  list-style: none;
  background-color: #D5D196;
  text-align: center;
  padding: 0;
  margin: 0;
}
.nav li {
  width: 64px;
  display: inline-block;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 40px;
  height: 40px;
  border-bottom: 1px solid #888;
}
 
.nav a {
  text-decoration: none;
  color: #24354a;
  display: block;
  transition: .3s background-color;
}
 
.nav a:hover {
  background-color: #5D9E9E;
}
 
.nav a.active {
  background-color: #fff;
  color: #444;
  cursor: default;
}
 
