* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Whitney", sans-serif;
}
nav {
  background: #FFFFFF;
  padding: 0px 10px;
}
.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.menu li {
  position: relative;
    border-width: 0px 0px 0px 0.5px; /* Top, right, bottom, left */
    border-style: solid;
    border-color: #e4e0e0;
}
.menu a {
  display: block;
  padding: 10px 20px;
  color: #FFFFFFF; /* White - color of text on menu */
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}
.menu li:hover > a {
  background-color: #00B08B; /* Chartwell Green */
  color: #FFFFFF; 
}
.submenu {
  display: none;
  position: absolute;
  background: #FFFFFF;
  border-width: 0px 0.5px 0.5px 0px; /* Top, right, bottom, left */
  border-style: solid;
  border-color: #e4e0e0;
  min-width: 160px;
  list-style: none;
  z-index: 100;
}

.submenu-right { /* only difference beteewn this and submenu is the top border */
  display: none;
  position: absolute;
  background: #FFFFFF;
  border-width: 0.5px 0.5px 0.5px 0px; /* Top, right, bottom, left */
  border-style: solid;
  border-color: #e4e0e0;
  min-width: 160px;
  list-style: none;
  z-index: 100;
}
@media (min-width: 769px) {
  .menu li:hover > .submenu {
    display: block;
    top: 100%;
    left: 0;
  }
  .submenu li:hover > .submenu-right {
    display: block;
    top: 0;
    left: 100%;
    margin-left: 0;
  }
  .submenu .dropdown > a:after {
    content: "▸";
    float: right;
  }
  .submenu .dropdown:hover > a::after {
    content: "▸";
	 /* content: "▼";  ORIG Bigger down arrow for submenu */
  }
  .hamburger,
  #menu-toggle {
    display: none;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 26px;
    color: #00B08B;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
  }
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #FFFFFF;
  }
  #menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #000000;
  }
  #menu-toggle {
    display: none;
  }
  #menu-toggle:checked + label + ul {
    display: flex;
  }
  .menu li {
    width: 100%;
  }
  .submenu,
  .submenu-right {
    position: static;
    display: none;
    padding-left: 20px;
  }
  .menu li:hover > .submenu,
  .submenu li:hover > .submenu-right {
    display: block;
  }
  .submenu .dropdown > a::after {
    content: "▸";
    float: right;
  }
  .submenu .dropdown:hover > a::after {
    content: "▼";
  }
}
