.nav {
  color: #fff;
  display: flex;
  transition: transform 1s ease, opacity 1s ease;
  background: rgba(255,255,255,0.175);
  height: 4rem;
  line-height: 4rem;
  margin: 0rem auto 0;
  overflow: hidden;
  position: relative;
  max-width: 72rem;
  z-index: 2;
}

.nav ul.divided li { border-top-color: #fff; }
.nav input, .nav select, .nav textarea { color: #fff; }

.nav a {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.5);
}
.nav a:hover {
  border-bottom-color: transparent;
  color: #18bfef !important;
}

.nav strong, .nav b,
.nav h1, .nav h2, .nav h3, .nav h4, .nav h5, .nav h6 { color: #fff; }

.nav blockquote { border-left-color: #fff; }

.nav code {
  background: rgba(255,255,255,0.075);
  border-color: #fff;
}

.nav hr { border-bottom-color: #fff; }

.nav ul.links {
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.075em;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  text-transform: uppercase;
  justify-content: center;
}

.nav ul.links li {
  flex: 1 1 0;
  text-align: center;
}

.nav ul.links li a {
  transition: background-color 0.2s, color 0.2s;
  display: block;
  font-size: 0.8rem;
  outline: none;
  padding: 0 2rem;
}
.nav ul.links li a:hover {
  color: inherit !important;
  background-color: rgba(255,255,255,0.1);
}

.nav ul.links li.active { background-color: #fff; }
.nav ul.links li.active a { color: #1e252d; }
.nav ul.links li.active a:hover { color: #18bfef !important; }

@media screen and (max-width: 600px) {
  .nav {
    color: #fff;
    display: flex;
    transition: transform 1s ease, opacity 1s ease;
    background: rgba(255,255,255,0.175);
    height: 3rem;
    line-height: 3rem;
    margin: 0rem auto 0;
    overflow: hidden;
    padding: 0 0.5rem 0 0;
    position: relative;
    max-width: 26rem;
    z-index: 2;
  }
  .nav ul.links li a {
    transition: background-color 0.2s, color 0.2s;
    display: block;
    font-size: 0.5rem;
    outline: none;
    padding: 0 1rem;
  }
}