header {
  width: 100%;
}
header .menuInner {
  max-width: 1140px;
  display: flex;
  padding: 0 15px;
  margin: 60px auto 20px;
}
@media (max-width: 720px) {
  header .menuInner {
    margin: 40px auto 20px;
  }
}
header .logo {
  width: 160px;
}
@media (max-width: 720px) {
  header .logo {
    margin: 0 auto;
  }
}
header .logo img {
  width: 100%;
}
header .menuList {
  display: flex;
  align-items: center;
  margin-left: 60px;
  width: 50%;
}
@media (max-width: 720px) {
  header .menuList {
    width: 100%;
  }
}
header .mainMenu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-left: 70px;
}
@media (max-width: 720px) {
  header .mainMenu {
    display: none;
  }
}
header .mainMenu li a {
  color: #292929;
  font-weight: 500;
  font-size: 15px;
}
header .manu-btn {
  display: none;
  position: relative;
  width: 30px;
  height: 20px;
  padding: 0;
  border: none;
  overflow: hidden;
}
@media (max-width: 720px) {
  header .manu-btn {
    display: block;
  }
}
header .manu-btn span {
  background: #0BB791;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  transition: all 0.4s ease;
}
header .manu-btn span:nth-child(1) {
  top: 0;
}
header .manu-btn span:nth-child(2) {
  top: 10px;
  opacity: 1;
}
header .manu-btn span:nth-child(3) {
  bottom: 0;
}
header .manu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 8px);
}
header .manu-btn.active span:nth-child(2) {
  opacity: 0;
}
header .manu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
}
header .mainMenuMob {
  right: -250px;
  display: flex;
  flex-direction: column;
  position: fixed;
  max-width: 300px;
  height: 100%;
  top: 0;
  z-index: 99;
  padding: 20px;
  background: #f5f5f5;
  transition: all 0.4s ease;
  box-shadow: 0 0 13px 5px rgba(0, 0, 0, 0.1);
}
header .mainMenuMob.show {
  right: 0;
}
header .mainMenuMob li {
  margin-bottom: 30px;
  font-size: 18px;
}
header .accessibility-btn {
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  text-transform: none;
  padding: 0;
  border: unset;
  background-color: unset;
}
header .accessibility-btn.mobile-only {
  display: none;
}
@media (max-width: 720px) {
  header .accessibility-btn.mobile-only {
    display: block;
  }
}
header .accessibility-btn .accessibility-svg {
  fill: black;
  height: 20px;
  width: auto;
  cursor: pointer;
  display: flex;
}
header .accessibility-btn .accessibility-svg:hover {
  fill: #0BB791;
}

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