.header {
  display: flex;
  flex-direction: row;
  background: rgba(0, 0, 0, 0.2);
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.header li a {
  display: block;
  padding: 4px 30px;
  text-decoration: none;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
.header li a:hover,
.header .menu-btn:hover {
  border-bottom: 4px solid #8bc34a;
  padding-bottom: 0px;
}
.header .logo {
  margin: auto 30px;
  font-size: calc(1.2vw + 1rem);
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.02em;
  word-break: keep-all;
}
.header .spacer {
  flex-grow: 1;
}
.header .menu {
  margin: auto;
  max-height: 0;
  transition: max-height 0.2s linear;
}
.header .menu-icon {
  cursor: pointer;
  padding: 30px 30px;
  user-select: none;
  margin: 0px auto;
}
.header .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.3s ease-out;
  width: 18px;
}
.header .menu-icon .navicon:before, .header .menu-icon .navicon:after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.header .menu-icon .navicon:before {
  top: 5px;
}
.header .menu-icon .navicon:after {
  top: -5px;
}
.header .menu-btn {
  display: none;
}
.header .menu-btn:checked ~ .menu {
  max-height: none;
}
.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
@media (min-width: 768px) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 4px 30px;
    line-height: 56px;
  }
  .header .menu {
    margin: auto 30px;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
