.header__logo {
  align-items: center;
  background-color: #1d1818;
  display: flex;
  justify-content: center;
  left: 10px;
  overflow: hidden;
  padding: 5px;
  position: fixed;
  top: 10px;
  transition: all 0.5s ease;
  width: clamp(8.125rem, 6.4694752775rem + 7.0635721493vw, 12.5rem);
  z-index: 999;
}
.header__logo:hover {
  opacity: 0.7 !important;
}
.header__logo img {
  aspect-ratio: 273/85;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-nuv__list {
  align-items: flex-start;
  display: none;
  gap: 12px;
  left: 55px;
  position: absolute;
  top: 53px;
  transition: all 0.5s ease;
  width: 100%;
  z-index: 999;
}

a.header-nuv__item {
  font-size: 16px;
  font-weight: 500;
  writing-mode: vertical-lr;
}

.header-btn {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center;
  position: fixed;
  right: 20px;
  top: 20px;
  transition: all 0.5s ease;
  width: 70px;
  z-index: 999;
}
.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: 20px;
  position: relative;
  width: 50px;
}

.header-btn__bar-line {
  background: #fff;
  height: 1px;
  left: 0;
  position: absolute;
  transition: transform 0.3s ease-in, top 0.3s ease-in;
  width: 50px;
}
.header-btn__bar-line:nth-of-type(1) {
  top: 0;
}
.header-btn__bar-line:nth-of-type(2) {
  top: 10px;
}
.header-btn__bar-line:nth-of-type(3) {
  top: 20px;
}

.header-drawer {
  background-color: #1D1717;
  height: 100vh;
  min-width: 275px;
  overflow: auto;
  padding-inline: 40px;
  padding-top: 150px;
  position: fixed;
  right: 0;
  top: 0;
  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: flex-start;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 250px;
  width: 100%;
}

.header-drawer__item {
  font-size: 15px;
  font-weight: 500;
  padding-block: 10px;
  writing-mode: vertical-lr;
}

@media (min-width: 768px) {
  .header__logo {
    left: 20px;
    opacity: 0;
    pointer-events: none;
    top: 20px;
    transform: translateY(-100%);
    visibility: hidden;
  }
  .header-nuv__list {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
  }
  .header-btn {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .header-btn {
    right: 60px;
    top: 47px;
  }
  .header-drawer {
    width: 30%;
  }
  .header-drawer__item {
    padding-block: 15px;
  }
}