header {
  max-width: 900px;
  margin: auto;
  position: fixed;
  right: 0;
  left: 0;
  z-index: 2;
}
header .login-container {
  background: #b8ddc3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
}
@media (min-width: 930px) {
  header .logo-container {
    position: absolute;
  }
}
header .nav-container {
  display: flex;
  flex-grow: 1;
  flex-direction: column-reverse;
}
@media (min-width: 930px) {
  header .nav-container {
    flex-direction: column;
  }
}
header img {
  max-width: 100%;
  height: auto;
  width: 200px;
}
header nav {
  display: flex;
  justify-content: space-between;
  background: #eff6e8;
}
@media (min-width: 930px) {
  header nav {
    width: 80%;
    float: right;
    position: static;
    align-self: end;
  }
}
header nav ul {
  display: none;
}
@media (min-width: 930px) {
  header nav ul {
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
    padding-left: 0;
    margin: 0;
  }
}
header nav li {
  padding: 10px;
  cursor: pointer;
  color: #316b59;
  font-weight: 700;
  list-style: none;
}
@media (min-width: 930px) {
  header {
    display: flex;
    justify-content: center;
  }
}

.menu-toggle {
  background: transparent;
  width: 40px;
  height: 23px;
  border: 3px solid #141414;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  position: relative;
  z-index: 999999999;
}
@media (min-width: 930px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle::before {
  content: " ";
  width: 40px;
  border-top: 3px solid #141414;
  position: absolute;
  left: 0;
  top: 7px;
}

button.menu-toggle:hover {
  background-color: transparent;
}

button.menu-toggle:active {
  background-color: transparent;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.active-nav {
  display: block;
  width: 100%;
}

/*# sourceMappingURL=index.css.map */
