
      /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */

* {
  box-sizing: border-box;
}
nav {
  padding: 3% 0 0;
}

nav ul {
  float: left;
}
nav ul li {
  display: inline-block;
  float: left;
}
nav ul li:not(:first-child) {
  margin-left: 25px;
}
nav ul li a {padding-bottom: 9px;
  display: inline-block;
  outline: none;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* Underline From Left */
nav ul li.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
nav ul li.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #ffe478;
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
nav ul li.hvr-underline-from-left:hover:before, nav ul li.hvr-underline-from-left:focus:before, .rmm ul li.hvr-underline-from-left:active:before {
  right: 0;
}

nav ul li a.current	{
padding-bottom: 8px;	
border-bottom: 2px solid #ffe478;
}

@media screen and (max-width: 960px) {
nav {
  padding: 0px 0 0;
  margin: -50px;
}	
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: #005544;
    opacity: 0;
    transition: all 0.2s ease;
  }
  .nav-container ul {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 100%;
  }
  .nav-container ul li {color: #fff;
    display: block;
    float: none;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
  .nav-container ul li:nth-child(1) a {
    transition-delay: 0.2s;
  }
  .nav-container ul li:nth-child(2) a {
    transition-delay: 0.3s;
  }
  .nav-container ul li:nth-child(3) a {
    transition-delay: 0.4s;
  }
  .nav-container ul li:nth-child(4) a {
    transition-delay: 0.5s;
  }
  .nav-container ul li:not(:first-child) {
    margin-left: 0;
  }
  .nav-container ul li a {color: #fff;
    padding: 10px 25px;
    opacity: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    transform: translateY(-20px);
    transition: all 0.2s ease;
  }
  .nav-open {
    background: #fff;
	
    position: fixed;
    right: 20px;
    top: 10px;
    display: block;
    width: 58px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
  }
  .nav-open i {
    display: block;
    width: 30px;
    height: 3px;
    background: #005544;
    border-radius: 0px;
    margin-left: 14px;
  }
  .nav-open i:nth-child(1) {
    margin-top: 16px;
  }
  .nav-open i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }
  .nav-open i:nth-child(3) {
    margin-top: 4px;
  }
}
#nav:checked + .nav-open {background: transparent; border: none;
  transform: rotate(45deg);
}
#nav:checked + .nav-open i {
  background: #fff;
  transition: transform 0.2s ease;
}
#nav:checked + .nav-open i:nth-child(1) {
  transform: translateY(6px) rotate(180deg);
}
#nav:checked + .nav-open i:nth-child(2) {
  opacity: 0;
}
#nav:checked + .nav-open i:nth-child(3) {
  transform: translateY(-6px) rotate(90deg);
}
#nav:checked ~ .nav-container {
  z-index: 9990;
  opacity: 1;
}
#nav:checked ~ .nav-container ul li a {
  opacity: 1;
  transform: translateY(0);
}
.hidden {
  display: none;
}

