@charset "utf-8";

#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(17, 17, 17, .7);
  backdrop-filter: blur(14px);
}

#header .header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

#header .logo a {
  display: flex;
  align-items: center;
}

#header .logo img {
  height: 34px;
}

#header .gnb ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

#header .gnb a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

#header .gnb a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--point-color);
  transition: var(--transition);
}

#header .gnb a:hover::after {
  width: 100%;
}

#header .header_right {
  display: flex;
  align-items: center;
  gap: 12px;
}

#header .download_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--point-color);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

#header .download_btn:hover {
  transform: translateY(-2px);
}

#header .menu_btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  font-size: 18px;
  color: #ffffff;
}

@media (max-width: 1199px) {

  #header .gnb ul {
    gap: 28px;
  }

}

@media (max-width: 767px) {

  #header .header_wrap {
    height: 72px;
  }

  #header .logo img {
    height: 28px;
  }

  #header .gnb {
    display: none;
  }

  #header .download_btn {
    display: none;
  }

  #header .menu_btn {
    display: inline-flex;
  }

}