.header {
  width: 100%;
  height: 9.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  position: fixed;
  z-index: 999;
}

.header .logo img {
  width: 18rem;
}

.right-box {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.gnb-top ul {
  display: flex;
  align-items: center;
  gap: 6.5rem;
}

.gnb-top ul a {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
}

.header-quick {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.header-cta-btn {
  padding: 1.3rem 4rem;
}

.hamburger-btn {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  cursor: pointer;
  border-radius: 0;
  background-color: transparent;
  width: 30px;
  height: 25px;
  border: 0;
  position: relative;
  z-index: 999;
}

.hamburger-btn-lines {
  display: block;
  position: relative;
  width: 20px;
  height: 3px;
  background-color: #222;
  transition: all 0.3s ease-out;
}

.hamburger-btn:hover .hamburger-btn-lines {
  width: 30px;
}

.hamburger-btn-lines::before,
.hamburger-btn-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #222;
  transition: all 0.3s ease-out;
}

.hamburger-btn-lines::before {
  top: -11px;
}

.hamburger-btn-lines::after {
  bottom: -11px;
}

/* 토글메뉴스타일코드 */
.toggle-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #364aff;
  transition: 0.5s;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.menu-bg-box {
  position: relative;
  width: 100%;
  height: 100vh;
}

.menu-bg {
  background-color: white;
  border-radius: 100%;
  position: absolute;
  top: 35px;
  right: -35px;
  width: 0px;
  height: 0px;
  transition: 0.7s;
  visibility: hidden;
}
.menu-inner-box {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
}
.menu-inner {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1230px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 15px;
}
.menu-inner-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  transition: 0.5s;
  transform: translateY(3rem);
  opacity: 0;
  visibility: hidden;
}

.toggle-menu.on .menu-inner-wrap {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toggle-gnb {
  flex: 1;
}

.toggle-gnb ul {
  display: flex;
  flex-direction: column;
}

.toggle-gnb ul a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #222;
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 2;
  transition: all 0.3s;
}

.toggle-gnb ul a:hover {
  color: #364aff;
}
.menu-info {
  width: 46rem;
  padding-left: 7rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.menu-text-company {
  font-size: 2rem;
  font-weight: 700;
}
.menu-text-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.menu-text-list-item {
  display: flex;
  gap: 0.5rem;
}
.menu-list-item-title {
  opacity: 0.3;
  font-size: 1.6rem;
  font-weight: 600;
  width: 8rem;
}
.menu-list-item-text {
  font-size: 1.6rem;
  font-weight: 600;
}
.menu-info-btn {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
}
.info-btn {
  padding: 1.2rem 4rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(34, 34, 34, 0.5);
  font-size: 1.6rem;
  font-weight: 700;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.info-btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.toggle-menu.on {
  z-index: 99;
  opacity: 1;
  visibility: visible;
}

.toggle-menu.on .menu-bg {
  width: 150vw;
  height: 150vw;
  transform: translate3d(35vw, -35vw, 0px);
  visibility: visible;
}

header .logo {
  z-index: 999;
}

.header.on {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.header.on .right-box > .gnb-top,
.header.on .btn {
  opacity: 0;
}

header.on .hamburger-btn span {
  background-color: transparent;
}

header.on .hamburger-btn span:before {
  top: 0;
  transform: rotate(45deg);
}

header.on .hamburger-btn span:after {
  top: 0;
  transform: rotate(-45deg);
}

/* 반응형처리 */
@media (max-width: 1024px) {
  .header .right-box > .gnb-top,
  .header .btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .toggle-menu {
    background: white;
  }
  .menu-bg-box {
    display: none;
  }
  .menu-inner-wrap {
    flex-direction: column;
    gap: 4rem;
  }
  .toggle-gnb {
    width: 100%;
  }
  .toggle-gnb ul a {
    font-size: 3.8rem;
  }
  .menu-info {
    width: 100%;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 4rem;
  }
}
