header {
  width: 100%;
  height: 103px;
}
.header-container {
  width: 100%;
  height: 100%;
  padding-inline: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 146px;
}
.nav-bar {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-list {
  font-size: 18px;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-list a {
  padding: 20px 10px;
  text-align: center;
  position: relative;
}
.menu-list a span {
  position: absolute;
  bottom: 0;
  left: 47%;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
}
.menu-list a:hover {
  color: #ef7f3c;
  span {
    color: #ef7f3c;
  }
}
.header-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-btn a {
  width: 240px;

  img {
    width: 100%;
    height: 100%;
  }
}

.ham-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #ef7f3c;
  border-radius: 50%;
  border: none;
  gap: 5px;
  transition: background-color 0.25s ease;
}
.ham-btn .ham-line {
  width: 24px;
  height: 2px;
  border-radius: 20px;
  background-color: #ffffff;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
}

/* Active hamburger -> X */
.ham-btn.is-active {
  background-color: #5da672;
}
.ham-btn.is-active .ham-line:nth-child(2) {
  opacity: 0;
}
.ham-btn.is-active .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 26px;
}
.ham-btn.is-active .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 26px;
}

/* Mobile drawer menu */
.ham-menu-container {
  position: fixed;
  top: 71px;
  right: 0;
  bottom: 0;
  width: 327px;
  background: #f0dcbf;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 90;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 98px;
  overflow: scroll;
}
.ham-menu-container.is-open {
  transform: translateX(0);
}
.ham-menu-list {
  width: fit-content;
}
.ham-menu-list-item {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ham-menu-list-item a {
  position: relative;
  font-size: 20px;
  padding: 9px 10px;
}
.ham-menu-list-item a:hover {
  color: #ef7f3c;
  border-color: #ef7f3c;
}

.ham-btn-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ham-btn-list a img {
  width: 100%;
  max-width: 295px;
}

@media (max-width: 1100px) {
  header {
    height: 72px;
  }
  .header-container {
    padding-inline: 16px;
  }
  .logo img {
    width: 128px;
  }
  .nav-bar {
    display: none;
  }
  .ham-btn {
    display: flex;
  }
}
