.header {
  width: 100%;
  font-family: "Nunito", sans-serif;
  padding-top: 4rem;
  z-index: 999999;
}
.header-container {
  max-width: 93.75rem;
  width: 100%;
  height: 5rem;
  border: 0.0625rem solid #ededed;
  position: relative;
  background-color: #ffffff;
  margin: 0 auto;
  border-radius: 3.5938rem;
  display: flex;
  --lrw: 23.375rem;
  padding: 0 2.8125rem;
}
.header-container-l, .header-container-r {
  width: var(--lrw);
  height: 100%;
}
.header-container-c {
  width: calc(100% - var(--lrw) * 2);
}
.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-logo img {
  height: 100%;
  max-height: 1.875rem;
  width: auto;
  object-fit: contain;
}
.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 3;
}
.header-menu ul.menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 1.6875rem;
}
.header-menu ul.menu li a {
  text-decoration: unset;
  color: #7f7f7f;
  font-weight: 400;
  line-height: 1.3rem;
}
.header-menu ul.menu li.drop {
  position: relative;
}
.header-menu ul.menu li.drop::before {
  content: "";
  width: 0;
  height: 0.125rem;
  background-color: #48aaf0;
  border-radius: 1.875rem;
  position: absolute;
  bottom: -0.5625rem;
  left: 0;
  transition: all 0.3s ease;
  z-index: 2;
}
.header-menu ul.menu li.drop::after {
  content: "";
  width: 100%;
  height: 1.875rem;
  position: absolute;
  bottom: -1.5625rem;
  left: 0;
  display: none;
}
.header-menu ul.menu li.drop ul.drop-menu {
  display: flex;
  position: absolute;
  border-radius: 0.9375rem;
  border: 0.0625rem solid #ededed;
  background: #fff;
  top: calc(100% + 0.4688rem);
  left: -1.75rem;
  list-style: none;
  margin: 0;
  padding: 0.9375rem 3.875rem 0.9375rem 1.75rem;
  width: auto;
  flex-direction: column;
  opacity: 1;
  transition: all 0.3s ease;
  transform: scaleY(0.8);
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
}
.header-menu ul.menu li.drop ul.drop-menu li {
  width: 100%;
  position: relative;
}
.header-menu ul.menu li.drop ul.drop-menu li a {
  white-space: nowrap;
  line-height: 2.1875rem;
  color: #7f7f7f;
  font-weight: 400;
}
.header-menu ul.menu li.drop ul.drop-menu li a::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("/assets/img/icon/menu-arrow.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 0.625rem;
  border: unset;
  position: absolute;
  right: -2.8125rem;
  top: 50%;
  transform: translateY(-50%);
}
.header-menu ul.menu li.drop:hover::before {
  width: 100%;
}
.header-menu ul.menu li.drop:hover::after {
  display: block;
}
.header-menu ul.menu li.drop:hover ul.drop-menu {
  height: auto;
  transform: scaleY(1);
  opacity: 1;
  pointer-events: all;
}
.header-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 1.25rem;
}
.header-group .anm_button {
  --width: 16.5625rem;
  --hover-width: 22.8125rem;
  width: var(--width);
  height: 3.125rem;
  border-radius: 1.875rem;
  border: unset;
  text-decoration: unset;
  color: #ffffff;
  backdrop-filter: blur(0.75rem);
  background-color: #48aaf0;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 1.125rem;
  transition: all 0.3s ease;
  z-index: 2;
  font-weight: 600;
}
.header-group .anm_button img {
  position: absolute;
  right: 0.4831rem;
}
.header-group .anm_button:hover {
  padding-left: 4.8125rem;
  width: var(--hover-width);
  margin-right: calc(var(--width) - var(--hover-width));
}
.header-group .language-select .btn {
  background: unset;
  border: unset;
  color: #7f7f7f;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3rem;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header-group .language-select .btn::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("/assets/img/icon/earth.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 0.5rem;
  border: unset;
}
.header-group .language-select .dropdown-menu {
  max-width: unset;
  min-width: unset;
  width: 100%;
  padding: 3.2px 0;
}
.header-group .language-select .dropdown-menu li .dropdown-item {
  color: #7f7f7f;
  background-color: unset;
}
.header-group .language-select .dropdown-menu li .dropdown-item:active {
  background-color: unset;
  color: inherit;
}
