.header {
  left: 0;
  margin-bottom: 20px;
  padding-inline: 10px;
  position: fixed;
  top: 10px;
  width: 100%;
  z-index: 999;
}

.header__contents {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  display: flex;
  padding: 6px 6px 6px 15px;
}

.header-logo {
  align-items: center;
  color: #333333;
  display: flex;
  gap: 18px;
  min-width: 0;
}
.header-logo:hover {
  color: #333333;
  opacity: 0.85;
}
.header-logo__img {
  aspect-ratio: 1/1;
  flex-shrink: 0;
  height: auto;
  overflow: hidden;
  width: clamp(2.5rem, 2.2161957619rem + 1.2108980827vw, 3.25rem);
}
.header-logo__img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.header-logo__name {
  display: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: calc(20 / 20);
  white-space: nowrap;
}

.header-nuv {
  align-items: center;
  display: flex;
  gap: 5px;
  margin-left: auto;
}
.header-nuv__list {
  display: none;
}
.header-nuv__item, .header-nuv__link {
  align-items: center;
  color: #333333;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
  white-space: nowrap;
}
.header-nuv__item--parent {
  position: relative;
}
.header-nuv__item--parent:hover .header-dropdown, .header-nuv__item--parent:focus-within .header-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.header-dropdown {
  background: rgba(252, 252, 252, 0.8);
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  left: 0;
  opacity: 0;
  padding: 7px 21px 20px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 24px);
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
  width: 301px;
  z-index: 10;
}
.header-dropdown::before {
  content: "";
  height: 24px;
  left: 0;
  position: absolute;
  top: -24px;
  width: 100%;
}
.header-dropdown__item {
  align-items: center;
  color: #333333;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  gap: 12px;
  justify-content: space-between;
  letter-spacing: 0.03em;
  line-height: 1.4;
  padding-block: 13px;
}
.header-dropdown__arrow {
  flex-shrink: 0;
  height: 11px;
  width: 10px;
}
.header-dropdown__arrow img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.header-cta {
  align-items: center;
  background: #e4007f;
  border-radius: 5px;
  color: #ffffff;
  display: flex;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 23px;
  width: 130px;
}
.header-cta:hover {
  color: #ffffff;
  opacity: 1;
}
.header-cta:hover .header-cta__icon,
.header-cta:hover p {
  transform: translateX(4px);
}
.header-cta p {
  transition: transform 0.3s ease;
}
.header-cta__icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 10px;
  justify-content: center;
  transition: transform 0.3s ease;
  width: 13px;
}
.header-cta__icon img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header-btn {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  transition: opacity 0.3s ease;
  width: 34px;
}
.header-btn:hover {
  opacity: 0.7;
}
.header-btn.is-open .header-btn__bar-line:nth-of-type(1) {
  top: 9px;
  transform: rotate(35deg);
}
.header-btn.is-open .header-btn__bar-line:nth-of-type(2) {
  display: none;
}
.header-btn.is-open .header-btn__bar-line:nth-of-type(3) {
  top: 9px;
  transform: rotate(-35deg);
}

.header-btn__bar {
  height: 16px;
  position: relative;
  width: 22px;
}

.header-btn__bar-line {
  background: #e4007f;
  height: 1.5px;
  left: 0;
  position: absolute;
  transition: transform 0.3s ease-in, top 0.3s ease-in;
  width: 22px;
}
.header-btn__bar-line:nth-of-type(1) {
  top: 0;
}
.header-btn__bar-line:nth-of-type(2) {
  top: 7px;
}
.header-btn__bar-line:nth-of-type(3) {
  top: 14px;
}

.header-drawer {
  background-color: #00a0e9;
  height: calc(100vh - 75px);
  min-width: 275px;
  overflow: auto;
  padding-inline: 20px;
  padding-top: 7vh;
  position: fixed;
  right: 0;
  top: 75px;
  transform: translateX(100%);
  transition: transform 0.6s ease;
  width: 50%;
  z-index: 98;
}
.header-drawer.is-checked {
  transform: translateX(0);
}

.header-drawer__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: 250px;
  width: 100%;
}

.header-drawer__item {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding-block: 10px;
  width: 100%;
}
.header-drawer__item--sub {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
  padding-block: 8px;
  padding-left: 10px;
}

.header-drawer__cta {
  background: #e4007f;
  border-radius: 5px;
  color: #ffffff;
  margin-top: 12px;
  padding-block: 12px;
}
.header-drawer__cta p {
  color: #ffffff;
}
@media (min-width: 768px) {
  .header-logo__name {
    display: block;
  }
  .header-nuv {
    gap: 20px;
  }
  .header-cta {
    height: 47px;
    width: 158px;
  }
}
@media (min-width: 1024px) {
  .header {
    padding-inline: 20px;
    top: 20px;
  }
  .header__contents {
    min-height: 64px;
    padding: 6px 8px 6px 16px;
  }
  .header-logo__name {
    font-size: 13px;
  }
  .header-nuv__list {
    align-items: center;
    display: flex;
    gap: 20px;
  }
  .header-dropdown {
    left: -5px;
  }
  .header-btn {
    display: none;
  }
  .header-drawer {
    display: none;
    width: 30%;
  }
}
@media (min-width: 1366px) {
  .header-logo__name {
    font-size: 20px;
  }
  .header-nuv {
    gap: 40px;
  }
  .header-nuv__list {
    gap: 42px;
  }
}