/*
 * Top navigation
 */

.nav {
  margin: auto 0;
  text-align: center;
}

.nav__list {
  width: 100%;
  padding: 0;
  margin: 0;
}

.nav__item {
  box-sizing: border-box;
  display: inline-block;
  line-height: 24px;
  text-transform: uppercase;
}

.nav a {
  display: inline-block;
  padding: 1.3em;
  font-size: 1.2em;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #616161;
}

.nav a:hover {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: all 0.3s ease-in-out;
  color: #88b849;
}

@media screen and (max-width: 500px) {
  .nav {
    z-index: 10;
    background-color: #fff;
    width: 100%;
    position: absolute;
    margin-top: 80px;

    /* This trasform moves the drawer off canvas. */
    -webkit-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);

    /* Optionally, we animate the drawer. */
    transition: transform 0.3s ease;
  }

  .open {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .nav__item {
    display: list-item;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    text-align: left;
  }
}
