.wa-header {
  padding-block: var(--space-xs);
  background-color: var(--primary);
}
.wa-header--hp {
  padding-block: 0;
  height: var(--wa-header-hp-height);
  background-color: transparent !important;
  position: absolute;
  top: 0;
}
.wa-header--hp .wa-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.wa-header--hp .wa-header__logo {
  z-index: 999;
  height: var(--wa-header-hp-height);
}
.wa-header--hp .wa-header__logo img {
  height: var(--wa-header-hp-height);
  object-fit: contain;
  width: auto;
}
.wa-header-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.wa-header-left img {
  width: 18.8rem;
  height: 4.2rem;
  object-fit: contain;
}
.wa-header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(var(--space-xs) * 0.5);
}
.wa-header-right-img img {
  height: 5rem;
  width: 5rem;
  object-fit: contain;
}
.wa-header-right-content {
  display: flex;
  flex-direction: column;
  color: var(--white);
  line-height: 1.2;
}
.wa-header-right-content a {
  color: var(--white);
  font-weight: 700;
  width: fit-content;
  position: relative;
}
.wa-header-right-content a:after {
  content: "";
  position: absolute;
  top: 95%;
  left: 0;
  transform: scaleX(0);
  width: 100%;
  border-bottom: 0.1rem solid var(--white);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.28, 0.75, 0.22, 0.95);
}
.wa-header-right-content a:hover {
  color: var(--white);
}
.wa-header-right-content a:hover:after {
  transform: scale(1);
  transform-origin: center center;
  width: 100%;
}

@media (max-width: 768px) {
  .wa-header-left img {
    width: 13rem;
  }
  .wa-header-right-img img {
    height: 4rem;
    width: 4rem;
  }
}
@media (max-width: 479px) {
  .wa-header-left img {
    width: 8.2rem;
  }
  .wa-header-right-img img {
    height: 3rem;
    width: 3rem;
  }
}
