body {
  padding: 0;margin:0;
}
.nav-ul-container {
  float: right;
}
.nav-ul-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-ul-container ul li {
  float: left;
  position: relative;
}
.nav-ul-container ul li a {
  display: block;
  padding: 0 20px;
  line-height: 70px;
  color: #d37940;
  text-decoration: none;
  font-weight: bold;

}
.nav-ul-container ul li a:hover {
  color: crimson;
}
.nav-ul-container ul li a:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
.nav-ul-container ul li ul li {
  min-width: 190px;
}
.nav-ul-container ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
  background:rgb(217 210 203);

}

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block;
  }

  .nav-ul-container {
    width: 100%;
    padding-top: 70px;
  }
  .nav-ul-container ul {
    display: none;
    background: rgb(245 240 237);
    border-top:1px solid rgba(199, 161, 133, 0.4) ;
  }
  .nav-ul-container ul li {
    float: none;
  }
  .nav-ul-container ul li a {
    padding: 15px;
    line-height: 20px;
    color: rgb(93, 68, 38);
  }
  .nav-ul-container ul li ul li a {
    padding-left: 30px;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #d37940;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@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.
*/
.navigation {
 
  height: 70px;
  background: rgba(0,0,0,0.5);
position: fixed;
left: 0;
right: 0;
top: 0;
z-index: 5;

}
.set-opacity{
  background: #e2d6ce !important;
}

/*
.nav-container – the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
}

.brand-logo img {
  transform: scale(1.4);
}
.brand-logo {
  position: absolute;
  padding-left: 20px;
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
  padding-top: 15px;
}
.brand-logo a,
.brand-logo a:visited {
  color: #463f3f;
  text-decoration: none;
}
