a {
  color: #000;
}

/* header */
.header {
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: 3;
  display: unset;
  padding-top: 0.8em;
}

.header .logo img {
  height: 1.2em;
}

.header .icon {
  display: inline-block;
  float: left;
  height: 2.2em;
  width: 2.2em;
  margin-right: 0.4em;
}

.header .phone-icon {
  display: inline-block;
}

.header .phone-num {
  font-size: 0.9em;
  display: none;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
  text-align: center;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}

.header .logo {
  float: left;
  font-size: 2em;
  padding-right: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* menu */
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  display: inline-flex;
}

/* menu icon */
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 17px 20px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  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;
}

/* menu btn */
.header .menu-btn {
  display: none;
}

.o-prods {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 500px;
}

.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 (max-width: 60em) {
  .icon {
    padding-top: 0.15em;
  }
  .header {
    padding: 10px 0 10px 15px !important;
  }
  .menu {
    display: block !important;
  }
}
@media (min-width: 961px) {
  .header {
    font-size: 1.2em;
    display: flex;
    justify-content: center;
  }
  .header .logo {
    padding-left: 10px;
  }
  .header .nav-icons {
    display: flex;
    align-items: center;
  }
  .header li a {
    font-size: 0.8em !important;
    padding: 10px 5px !important;
  }
  .header .menu {
    clear: none;
    float: left;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 10px;
  }
}
@media (min-width: 1104px) and (max-width: 1093px) {
  .icon {
    padding-top: 0.15em !important;
  }
}
@media (min-width: 1154px) and (max-width: 1540px) {
  .header {
    font-size: 1.2em;
  }
}
@media (min-width: 20em) and (max-width: 90em) {
  .header .f-prods {
    display: none;
  }
  .header .o-prods {
    display: block;
  }
}
@media (min-width: 90em) {
  .header .phone-num {
    display: inline-block;
  }
  .header .phone-icon {
    display: none;
  }
}/*# sourceMappingURL=nav.css.map */