@charset "utf-8";
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 85px;
  display: flex;
  align-items: center;
  background: #111111;
}

.header__inner {
  padding-inline: 22px;
  background: #111111;
  height: 85px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 150px;
  height: 32px;
  position: relative;
  z-index: 999;
  transition: opacity 0.5s ease;
}

.header__logo:hover{
  opacity: 0.6;
}

.header__logo img {
  aspect-ratio: 150/32;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

.logo__title {
  width: 1px;
  height: 1px;
  opacity: 0;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.57vw, 35px);
  display: none;
}

@media screen and (min-width: 900px) {
  .header__menu {
    display: block;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.57vw, 35px);
}

.header__nav-item p {
  font-family: var(--font-title);
  font-size: clamp(12px, 1.03vw, 14px);
  font-weight: 700;
  color: var(--color-white);
  position: relative;
  transition: opacity 0.5s ease;
}

.header__nav-item p::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #d5d5d5;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header__nav-item:hover p{
  opacity: 0.6;
}

.header__nav-item:hover p::after {
  width: 100%;
}

.header__open-button {
  position: fixed;
  z-index: 101;
  top: 22px;
  right: 20px;
  z-index: 200;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

@media screen and (min-width: 900px) {
  .header__open-button {
    display: none;
  }
}

.header__open-button.is-open .header__open-bar:nth-of-type(1) {
  transform: rotate(45deg) translate(5px, 10px);
}

.header__open-button.is-open .header__open-bar:nth-of-type(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__open-button.is-open .header__open-bar:nth-of-type(3) {
  transform: rotate(-45deg) translate(6px, -12px);
}

.header__open-bar {
  width: 30px;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 3px;
  position: relative;
}

.header__drawer {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  padding: 190px 20px 50px;
  width: 100%;
  height: 100%;
  background: var(--color-bg-gra);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  transform: translateX(100vw);
  opacity: 0;
  transition: all 0.8s ease;
  overflow-y: scroll;
}

.header__drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.8s ease;
}

.header__drawer-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.header__drawer-item p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: calc(60 / 1000 * 1em);
  line-height: 1.2;
  color: var(--color-white);
}
