header {
  width: 100%;
  max-width: 1400px;
  height: 60px;
  padding-inline: 20px;
  font-family: "Inter";
  position: fixed;
  z-index: 100;
}
.header-container {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 18px 45px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
header .logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  padding-right: 23px;
  border-right: 1px solid #d2d2d2;
}
header .logo a img {
  width: 125px;
  height: auto;
}
header .nav-bar {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 45px;
}
header .btns {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .btns a {
  border-radius: 5px;
  font-size: 18px;
  font-family: "Inter";
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 7px 11px;
  gap: 5px;
}
header .btns img {
  width: 29px;
}
.line-btn {
  background-color: #06c755;
}
.tel-btn {
  background-color: #bbac95;
}

.hamburger {
  display: none;
  width: 60px;
  height: 60px;
  background-color: #bbac95;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
}
.hamburger span {
  background-color: #ffffff;
  width: 100%;
  height: 3px;
  border-radius: 100px;
}

/* Active hamburger -> X */
.hamburger.is-active {
  /* background-color: #5da672; */
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  transition: transform 0.3s ease;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  transition: transform 0.3s ease;
}

/* Mobile drawer menu */
.ham-menu-container {
  position: fixed;
  top: 59px;
  right: 0;
  bottom: 0;
  width: 327px;
  background-color: #fbfbfb;
  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: #519bb3;
  border-color: #519bb3;
}

@media (max-width: 1330px) {
  header .nav-bar {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  header {
    padding-inline: 0;
    position: sticky;
  }
  .header-container {
    padding-inline: 9px;
    border-radius: 0;
  }
  header .nav-bar,
  header .btns {
    display: none;
  }
  header .logo {
    padding-right: 0;
    border: none;
    gap: 20px;
  }
  .hamburger {
    display: flex;
  }
}
