nav {
     float: left;
    width: 100%;
    background: #110f10;
    /* margin-bottom: 22px; */
    padding-top: 25px;
    padding-bottom: 25px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a {
display: block;
    padding: 0px 44px;
    line-height: 70px;
     background: #110f10;
    color: #463f3f;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}
nav ul li a:hover {
background: #0b0a0b;
    color: #fff;
}


nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  /* Guarantees that the dropdown will display on top of any content. */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  height: 70px;
  width: 70px;
}


@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  }
}
/* 
.navigation – the outer wrapper for the navbar. Specifies the height and color, and will stretch the full width of the viewport.
*/

/*
.nav-container – the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/

.brand {
  position: absolute;
  padding-left: 20px;
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
}
.brand a,
.brand a:visited {
  color: #463f3f;
  text-decoration: none;
}

		