header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  font-size: 16px;
  background: rgba(51, 51, 51, 0);
  width: 100%;
  height: 6.5em;
}
header #hum_checkbox {
  display: none;
}
header .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.6em;
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  margin: 2em;
  z-index: 1;
  transition: 0.5s;
}
header .hamburger span {
  display: block;
  width: 7em;
  height: 0.5em;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 95% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 95% 0%, 100% 100%, 0% 100%);
}
header .hamburger span:first-child {
  width: 4.5em;
}
header #hum_checkbox:checked ~ .hamburger span {
  display: block;
  width: 7em;
  height: 0.5em;
  background: #fff;
  -webkit-clip-path: unset;
          clip-path: unset;
}
header #hum_checkbox:checked ~ .hamburger span:first-child {
  display: none;
}
header #hum_checkbox:checked ~ .hamburger span:nth-child(2) {
  position: absolute;
  top: 1.5em;
  transform: rotate(30deg);
}
header #hum_checkbox:checked ~ .hamburger span:nth-child(3) {
  position: absolute;
  top: 1.5em;
  transform: rotate(-30deg);
}
header .hamburger_content {
  overflow: hidden;
  width: 0vw;
  max-width: 900px;
  height: 80vh;
  padding: 10vh 0;
  transition: 0.7s;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(51, 51, 51, 0.6);
}
header .hamburger_content a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 3em;
  width: 70%;
  margin: 1em auto;
  transition: 0.3s;
  white-space: nowrap;
}
header .hamburger_content a:hover {
  color: #ed9e2f;
}
header #hum_checkbox:checked ~ .hamburger_content {
  width: 100vw;
  height: 100vh;
}
header .AMASIA_h_logo {
  width: 15em;
  height: 4em;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 1.3em;
  left: calc(50vw - 7.5em);
  opacity: 0;
  transition: 0.5s;
}

@media screen and (max-width: 790px) {
  header {
    font-size: 9px;
    width: 100%;
    height: 7em;
    background: rgba(51, 51, 51, 0);
  }
  header .AMASIA_h_logo {
    width: 150px;
    height: 40px;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 1.5em;
    left: calc(50vw - 75px);
    opacity: 0;
    transition: 0.5s;
  }
  header .hamburger_content {
    transition: 0.5s;
  }
}
header:has(#hum_checkbox:checked) {
  -webkit-backdrop-filter: unset !important;
          backdrop-filter: unset !important;
}

.AMASIA_footer {
  scroll-snap-align: end;
  scroll-snap-stop: always;
  position: relative;
  z-index: 100;
  background: #333;
  color: #fff;
  padding: 2em 5em;
}
.AMASIA_footer a {
  color: #fff;
  text-decoration: none;
  margin: 0.5em;
  display: inline-block;
}
.AMASIA_footer .copyright {
  text-align: center;
  margin: 1em auto 0;
  display: block;
  font-size: 0.8em;
}

@media screen and (max-width: 790px) {
  .AMASIA_footer {
    padding: 2.5em 2em;
  }
}/*# sourceMappingURL=parts.css.map */