li {
list-style: none;
}

a {
  color: #000;
}

/* header */

.headermenu {
  font-family: oswald, inter;
  background-color: #3686C5;
  box-shadow: 1px 5px 25px black;
  position: relative;
  position: sticky;
  width: 100%;
  /*display:flex;*/
  justify-content:left;
  z-index: 3;

}
.headermenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #3686C5;
}

.headermenu li a {
  display: block;
  padding: 12px 10px;
  /*border-right: 1px solid #f4f4f4;*/
 
  text-decoration: none;
  color:white;
}

.headermenu li a:hover,
.headermenu .menu-btn:hover {
  background-color: #000;
  color:#FFF;
}

/*.headermenu .logo {
  display: block;
  float: left;
  font-size: clamp(1.4rem, 1.7vw, 1.7rem);
  font-weight:700;
  padding: 14px 12px;
  text-decoration: none;
  background-color:#ba9245;
  color:white;
}*/

/* menu */

.headermenu .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.8s ease-out;
}

/* menu icon */

.headermenu .menu-icon {
  cursor: pointer;
 
  padding: 25px 20px;
  position: relative;
  user-select: none;
}

.headermenu .menu-icon .nav-icon {
  background: #FFF;
  display: block;
  height: 3px;
  position: relative;
  transition: background 0.8s ease-out;
  width: 22px;
}

.headermenu .menu-icon .nav-icon:before,
.headermenu .menu-icon .nav-icon:after {
  background: #FFF;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.8s ease-out;
  width: 100%;
}

.headermenu .menu-icon .nav-icon:before {
  top: 5px;
}

.headermenu .menu-icon .nav-icon:after {
  top: -5px;
}

/* menu btn */

.headermenu .menu-btn {
  display: none;
}

.headermenu .menu-btn:checked ~ .menu {
  max-height: 100%;
}

.headermenu .menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}

.headermenu .menu-btn:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top: 0;
}

.headermenu .menu-btn:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top: 0;
}

/* 48em = 768px @ 16pt font

Barry...Not sure why we use stuff like this rather than just using 768px.  is it more precise or what? */

@media (min-width: 1063px) {
  .headermenu li {
    float: left;
  }
  .headermenu li a {
    padding: 15px 10px;
  }
  .headermenu .menu {
    clear: none;
 /*   float: left; */
    max-height: none;
    background-color:#3686C5;
  }
  .headermenu .menu-icon {
    display: none;
  }
}

.bullet li {
    list-style-type: disc ;
}

