header {
  margin: 20px auto;
}

header h1 {
  font-size: 16px;
  margin-top: 3px;
  margin-bottom: 0;
  font-weight: bold;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.header-logo-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: left;
}

.nav-toggle {
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
}

.header-nav {
  position: fixed;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transition: 0.3s;
}

.header-nav .nav-toggle {
  display: none;
}

@media (min-width: 767px) {
  .header-nav {
    width: 30%;
    padding-inline: 60px;
    top: 0;
    box-shadow: 0px 0px 10px #1F955F27;
  }

  .header-nav .nav-toggle {
    display: block;
    width: 30px;
    height: 30px;
    margin: 30px 0 50px auto;
  }
}

.header-nav ul li {
  list-style: none;
}

.header-nav.is-open {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.header-nav ul {
  padding: 0;
  margin: 0;
}

.header-nav ul li {
  border-bottom: 1px solid #EAEAEA;
  font-size: 16px;
  line-height: 1.5;
}

.header-nav ul li a {
  display: block;
  padding: 25px 20px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.header-nav ul li:first-child {
  border-top: 1px solid #EAEAEA;
}

.header-nav ul.sub-nav  {
  padding: 5px 0;
}

.header-nav ul.sub-nav li {
  border: none;
  padding-top: 0;
  padding-bottom: 25px;
  padding-left: 40px;
  font-weight: normal;
}