/** @format */

/* 영문전용 */
@font-face {
  font-family: "PartialSansKR-Regular";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2307-1@1.1/PartialSansKR-Regular.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}
/* 한글전용 - 300*/
@font-face {
  font-family: "NanumSquareNeoLight";
  src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-aLt.eot);
  src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-aLt.eot?#iefix)
      format("embedded-opentype"),
    url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-aLt.woff) format("woff"),
    url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-aLt.ttf) format("truetype");
}
/* 한글전용 - 400 */
@font-face {
  font-family: "NanumSquareNeo";
  src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.eot);
  src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.eot?#iefix)
      format("embedded-opentype"),
    url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.woff) format("woff"),
    url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.ttf) format("truetype");
}
/* 한글전용 - 700*/
@font-face {
  font-family: "NanumSquareNeoBold";
  src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-cBd.eot);
  src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-cBd.eot?#iefix)
      format("embedded-opentype"),
    url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-cBd.woff) format("woff"),
    url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-cBd.ttf) format("truetype");
}
/* 한글전용 - 800*/
@font-face {
  font-family: "NanumSquareNeoExtraBold";
  src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-dEb.eot);
  src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-dEb.eot?#iefix)
      format("embedded-opentype"),
    url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-dEb.woff) format("woff"),
    url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-dEb.ttf) format("truetype");
}
@font-face {
  font-family: "neurimboGothicRegular";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-01@1.0/neurimboGothicRegular.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}
.inner {
  padding: 0px 100px;
}
body .mo {
  display: none;
}
/**
 * 
 * HEADER
 * 
 */

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: calc(100% - 10rem);
  left: 50%;
  top: 4.95vw;
  z-index: 12;
  transform: translateX(-50%);
}
#header.fixed,
#header.sub {
  width: calc(100% - 100px);
  top: 1vw;
}

#gnb ul {
  border-radius: 0px 0px 0px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
#gnb ul li {
  line-height: 1;
}
#header.active .logo {
  background-color: transparent;
}
#header.on .menu-toggle-btn {
  background: #0000001a;
  backdrop-filter: blur(10px);
}
#header.on .theme-toggle-btn {
  background: #1e1b1933;
}
#header.on .theme-toggle-btn::after {
  background-color: #1e1b19cc;
}
.logo {
  filter: var(--filter);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 2;
  justify-content: center;
}

/**
 * 
 * MENU
 * 
 */
.theme-toggle-btn {
  width: 60px;
  height: 60px;
  background-color: rgba(30, 27, 25, 0.5);
  border-radius: 50%;
  position: relative;
}
.theme-toggle-btn::before {
  z-index: -1;
  content: "";
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #ffffff33;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.theme-toggle-btn::after {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: url(/assets/images/ico_light.svg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
}
.menu-toggle-btn {
  width: 180px;
  border: 1px solid var(--wh-color);
  border-radius: 60px;
  letter-spacing: 5px;
  backdrop-filter: blur(10px);
  font-size: 21px;
  font-family: "neurimboGothicRegular";
  padding: 29px 43px 25px;
}
.menu-wrap {
  display: none;
}
.menu-wrap.active {
  position: fixed;
  z-index: 11;
  top: 0;
  display: flex;
  flex-direction: column;
  padding: 50px 0;
  background: #0000004d;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
}
.menu-wrap .menu-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-item,
.menu-item a {
  flex: 1;
  height: fit-content;
  font-size: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-item h2 {
  font-family: "neurimboGothicRegular";
  font-size: 60px;
  opacity: 0.5;
}
.menu-item .menu-link:hover h2 {
  opacity: 1;
}
.menu-wrap .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 50px;
  width: fit-content;
}
.menu-wrap .contact-info a {
  font-family: "neurimboGothicRegular";

  font-size: 16px;
}
.btn-top {
  position: fixed;
  right: 2.6vw;
  z-index: 8;
  bottom: 70px;
}
.btn-top.fixed {
  position: absolute;
  bottom: auto;
  top: -5vw;
}
.btn-top button {
  max-width: 75px;
  max-height: 75px;
  width: 6vw;
  height: 6vw;
  min-width: 50px;
  min-height: 50px;
  background: #2e2e2e;
  border-radius: 50%;
}
.rolling-banner + #footer .btn-top.fixed {
  top: -14vw;
}

/**
 * 
 * 텍스트 롤링배너 
 * 
 */
.rolling-banner .rolling {
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 36px 0;
}
.rolling-banner .rolling li {
  font-size: 28px;
  font-family: "neurimboGothicRegular";
}
.rolling-banner {
  position: relative;
  overflow: hidden;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: var(--gy-color);
  background-color: var(--main-color);
  color: var(--wh-color);
}
.rolling-banner li {
  font-size: 28px;
  font-family: "neurimboGothicRegular";
  line-height: 1;
}
.rolling-banner li a {
  font-size: 28px;
  color: var(--wh-color);
  font-family: "neurimboGothicRegular";
  position: relative;
  overflow: hidden;
  padding-right: 30px;
}
.rolling-banner li a::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: url(../images/ico-link_arrow.svg) 100% 2px no-repeat;
  background-position: center;
  right: -2px;
  top: 2px;
  filter: var(--filter);
}
#container.sub {
  padding-top: 12.5rem;
}
.txt-label {
  display: flex;
  max-width: 1520px;
  align-items: center;
  justify-content: space-between;
}
.txt-label span {
  text-transform: uppercase;
  font-family: "neurimboGothicRegular";
  font-size: 21px;
  color: var(--wh-color);
}
/**
 * 
 * FOOTER
 * 
 */
#footer {
  position: relative;
  width: 100%;
  padding: 2.6vw;
  max-width: 1920px;
  margin: 0px auto;
}
.footer-box {
  display: flex;
  align-items: center;
  width: 100%;
}
.footer-box.mo {
  display: none;
}
.footer-box.mo img {
  filter: var(--filter);
}
.footer-box.top {
  justify-content: space-between;
  gap: 5.21vw;
}
.footer-box .right {
  display: flex;
  gap: 5.21vw;
}
.footer-box.mid {
  margin: 140px auto 20px;
  filter: var(--filter);
}
.footer-box.bottom {
  justify-content: space-between;
}
.footer-box.top * {
  font-family: "NanumSquareNeo";
  font-style: unset;
  line-height: 1.8;
}
.footer-box.bottom > * {
  font-family: "neurimboGothicRegular";
}
.btn-down {
  font-family: "NanumSquareNeo";
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-radius: 999em;
  border: 1px solid #ffffff80;
  font-size: 21px;
  line-height: 1 !important;
  padding: 26px 37px;
  border: 1px solid var(--op1-color);
}
.btn-down svg {
  fill: var(--filter);
}
.footer-box.top path {
  fill: var(--wh-color);
}
.process-wrap .bg rect,
.request-btn .submit-btn line {
  stroke: var(--wh-color);
}
.light .menu-item h2,
.light .menu-wrap .contact-info a {
  opacity: 1;
}
