  /* Basic styling */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

nav {
  background: #846314;
  padding: 0 15px;
  font-family: 'Oswald', sans-serif;
  font-weight:700;
  font-size: 1.5em;
}
a {
  color: #000;
  text-decoration: none;
  cursor:pointer;
}

.menu,
.submenu {
  list-style-type: none;
  z-index:10;

}


.logo {
  font-size: 20px;
  padding: 7.5px 10px 7.5px 0;
}
.item {
  padding: 10px 10px 5px 10px;

}
.item.button {
  padding: 9px 5px;
}
.item:not(.button) a:hover,
.item a:hover::after {
    color: #000;
    text-decoration: underline;
}
/* Mobile menu */

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.menu li a {
  display: block;
  padding: 10px 5px;
  color:#ffffff;

}
.menu li.subitem a {
  padding: 10px 15px;
  border-bottom:1px solid #fff;
  width:300px;
  background:#137eaa;
}
.menu li.subitem a:hover {
    background-color:#333;
    color:#000;
}
.toggle {
  order: 1;
  font-size: xx-large;
}
.item.button {
  order: 2;
}
.item {
  order: 3;
  width: 100%;
  text-align: left;
  display: none;
}
.active .item {
  display: block;
}
.button.secondary {
  /* divider between buttons and menu links */
  border-bottom: 1px #444 solid;
}
/* Submenu up from mobile screens */
.submenu {
  display: none;
}
.submenu-active .submenu {
  display: block;
}
.has-submenu i {
  font-size: 12px;
}
.has-submenu > a::after {
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  content: "\f078";
  color: #fff;
  padding-left: 7px;
}
.subitem a {
  padding: 10px 15px;
}
.submenu-active {
  background-color: #BA9245;
  border-radius: 3px;
}

/* Tablet menu */
@media all and (min-width: 700px) {
  .menu {
    justify-content: center;
  }
  .logo {
    flex: 1;
  }
  .item.button {
    width: auto;
    order: 1;
    display: block;
  }
  .toggle {
    flex: 1;
    text-align: right;
    order: 2;
  }
  /* Button up from tablet screen */
  .menu li.button a {
    padding: 10px 20px;
    margin: 5px 0;
  }
  .button a {
   background-color:#137eaa;
    /*border: 1px royalblue solid;*/
    border-radius:10px;
  }
  .button.secondary {
    border: 0;
  }
  .button.secondary a {
    background: transparent;
    border: 1px #0080ff solid;
  }
  .button a:hover {
    text-decoration: none;
  }
  .button:not(.secondary) a:hover {
    background: royalblue;
    border-color: darkblue;
  }
}
/* Desktop menu */
@media all and (min-width: 1120px) {
  .menu {
    align-items: flex-start;
    flex-wrap: nowrap;
    background: none;
  }
  .logo {
    order: 0;
  }
  .item {
    order: 1;
    position: relative;
    display: block;
    width: auto;
  }
  .button {
    order: 2;
  }
  .submenu-active .submenu {
    display: block;
    position: absolute;
    left: 0;
    top: 68px;
    background: #BA9245;

  }
  .toggle {
    display: none;
  }
  .submenu-active {
    border-radius: 0;
  }
}