@charset "utf-8";

:root {
  --bg-black: #060606;
  --point: #e94700;
  --point-deep: #bf3a00;
  --point-tint: rgba(255, 106, 26, 0.16);
  --info-text: #a8a5a3;
  --font-text:
    "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-icon: "boxicons";
  --transition: all 0.3s ease;
}

/* reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* html {
  scroll-behavior: smooth;
} */
/* html,
body {
  height: 100%;
} */
#wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

#container_wr {
  overflow: visible !important;
  width: 100%;
  min-height: 100vh;
}
body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background: var(--bg-black);
  -webkit-text-size-adjust: 100%;
}
body * {
  word-break: keep-all;
  overflow-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-text);
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
p {
  margin:0;
  padding:0;
}

/* scroll */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background-color: #303030;
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #b4b4b4;
  background-clip: padding-box;
}
::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}

/* form */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* button */
button {
  cursor: pointer;
}
.btn {
  transition: var(--transition);
}

/* list */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* hidden */
[hidden] {
  display: none !important;
}

/* 공통 */
.title-xl {
  font-size: 3.5rem;
  font-weight: 700;
}
.title-lg {
  font-size: 2.5rem;
}
.title-md {
  font-size: 2rem;
}
.info-txt {
  font-size: 12px;
  color: var(--info-text);
}
.round-box {
  border-radius: 0.5rem;
  overflow: hidden;
}

/* ----------------------- */
/* layout */
/* ----------------------- */
.inner {
  width: 100%;
  padding: 0 60px;
  margin: 0 auto;
}
.bd-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
#wrap {
  width: 100%;
  overflow: hidden;
}
.container {
  width: 100%;
}
.full-sec {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 99;
  backdrop-filter: blur(10px);
}
header > * {
  height: 100%;
}
header .gnb-logo .logo {
  max-height: 34px;
  height: 80%;
  width: auto;
  fill: var(--point);
}
header .gnb {
  position: relative;
}
.gnb .gnb_1dli {
  position: relative;
}
.gnb .gnb_1dli .gnb_1da {
  color: #fff;
  height: 100%;
  line-height: 72px;
  border-radius: 0.5rem;
}
.gnb .gnb_1dli .gnb_1da:hover {
  color: var(--point-deep);
}
.gnb .gnb_2da {
  background: none;
}
.gnb .gnb_2dul {
  min-width: 100px;
  left: 50%;
  transform: translateX(-50%);
  top: 90%;
}
.gnb .gnb_2dul_box {
  border: 0;
  background: #6f6f6f70;
  box-shadow: unset;
}
.gnb .gnb_2dul_box a {
  color: #fff;
  background: none;
  text-align: center;
  font-size: 14px;
}
.gnb .gnb_2dul_box a:hover {
  color: var(--point);
}

/* main */
.visual-sec {
  background: linear-gradient(344deg, #060606 25%, #391100 60%, #060607 100%);
}
/* .visual-sec:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 50vw;
  aspect-ratio: 1/0.8;
  background: radial-gradient(#571a00a8 0%, var(--bg-black) 40%);
} */
.visual-sec .inner {
  height: 100vh;
}
.visual-sec #visual_3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90vw;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.visual-sec h1 {
  position: absolute;
  opacity:0;
  z-index: 2;
  font-size: 8vw;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  margin: 0;
  pointer-events: none;
  text-shadow: 0 0 20px rgba(60, 60, 60, 0.5);
  transition: transform 0.2s ease-out;transform: translate(-50%, -50%) scale(0.7);
  mix-blend-mode: difference;
}
.main-spacer {
  width: 100%;
  margin-top: -100vh;
  z-index: 0;
  background-color: #ffffff;
  color: #000;
}
.main-content {
  position: relative;
  /* padding-top: 2.5vh; */
}
.intro-sec {
  background: var(--point);
  /* max-width:95vw;
  max-height:95vh;
  margin:0 auto;
  border-radius: 2vw;
  box-shadow: 0 0 20px 0 #000; */
  z-index: 3;
}
.intro-sec .inner {
  height:100%;
  position: relative;
  z-index: 2;
  /* max-width:1750px; */
}
.intro-sec .draw-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  transform: scale(1.1);
  will-change: transform;
  overflow: hidden;
}
.intro-sec #main_draw {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 5px #ad3500);
}
.intro-sec #draw_path {
  stroke: #ffffff41;
  stroke-width: 50px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.intro-sec h2 {
  font-size:5.5vw;
  font-weight:800;
  color:#250b00;
}
.intro-sec p {
  font-size:1.5vw;
  color:#fff;
  font-weight: 200;
}
.intro-sec p b {
  font-weight:500;
}
.work-sec {
  position: relative;
  top:-100vh;
  left: 0;
  z-index: 2;
  background:var(--bg-black);
  height:auto;
}

footer {
  position: relative;
}

/* responsive */
@media (max-width: 1480px) {
.inner {
  padding: 0 20px;
}
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
