@charset "UTF-8";
body {
  cursor: none;
  overflow: hidden;
}

.cursor_item {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fefefe;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  margin-top: -40px;
  margin-left: -40px;
  transition: all 0.1s linear;
}

.wrap {
  width: 100vw;
  height: 100vh !important;
}
.wrap .background {
  background-color: #131313;
}
.wrap .background .main {
  width: 100vw;
  height: 100vh !important;
}
.wrap .background .main .col {
  border-right: 2px solid #fff;
  width: 0;
  height: 52vh;
  position: absolute;
  top: 0;
  left: 15%;
}
.wrap .background .main h1 {
  font-weight: auto;
  font-size: 80px;
  line-height: auto;
  color: #fefefe;
}
.wrap .background .main .webTitle {
  position: absolute;
  top: 55vh;
  left: 15%;
  display: flex;
  justify-content: flex-start;
  align-items: auto;
  align-content: auto;
  flex-direction: auto;
  flex-wrap: wrap;
}
.wrap .background .main .webTitle li {
  position: relative;
}
.wrap .background .main .webTitle h1 {
  position: relative;
}
.wrap .background .main .bgtitle {
  width: 135vw;
  overflow: visible;
}
.wrap .background .main .bgtitle h1 {
  overflow: visible;
  width: 135vw;
  white-space: nowrap;
  font-weight: auto;
  font-size: 120px;
  line-height: auto;
  color: #131313;
  text-shadow: 0 0 1px #fefefe;
}
.wrap .background .main .bgtitle.original {
  position: absolute;
  top: 52vh;
  left: 0vw;
  animation: 40s linear 0s infinite normal forwards running rolling1;
}
.wrap .background .main .bgtitle.clone {
  position: absolute;
  top: 52vh;
  left: 1900px;
  animation: 40s linear 0s infinite normal none running rolling2;
}
@keyframes rolling1 { /* 원본용 */
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-1900px);
  }
  50.01% {
    transform: translateX(1900px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rolling2 { /* 클론용 */
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3800px);
  }
}
.wrap .background .main .resTitle {
  position: absolute;
  top: 55vh;
  left: 15%;
  display: flex;
  justify-content: flex-start;
  align-items: auto;
  align-content: auto;
  flex-direction: auto;
  flex-wrap: wrap;
}
.wrap .background .main .resTitle li {
  width: 100%;
}
.wrap .background .main .resTitle {
  display: none;
}
.wrap .background .main .arrow {
  width: 420px;
  height: 80px;
  position: absolute;
  top: 70vh;
  right: 15%;
  background-image: url(/image/dot_bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.wrap .background .main .arrow img {
  height: 80px;
  position: absolute;
  top: 0;
  left: 200px;
}
.wrap .background .main h6 {
  margin: 0 auto;
  width: 360px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: auto;
  color: #eee;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  body .cursor_item {
    display: none;
  }
  body .wrap .background .main .col {
    height: 42vh;
    left: 8%;
  }
  body .wrap .background .main .webTitle {
    top: 43vh;
    left: 8%;
  }
  body .wrap .background .main .arrow {
    top: 80vh;
    right: 5%;
  }
  body .wrap .background .main .arrow img {
    left: 240px;
  }
  body .wrap .background .main .bgtitle.original {
    top: 40vh;
  }
  body .wrap .background .main .bgtitle.clone {
    top: 40vh;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  body .cursor_item {
    display: none;
  }
  body .wrap .background .main .webTitle {
    display: none;
    position: relative;
  }
  body .wrap .background .main .resTitle {
    display: flex;
  }
  body .wrap .background .main .col {
    height: 30vh;
    left: 5%;
  }
  body .wrap .background .main .resTitle {
    top: 32vh;
    left: 5%;
  }
  body .wrap .background .main h1 {
    font-size: 60px;
    line-height: 60px;
  }
  body .wrap .background .main .arrow {
    top: 70vh;
    right: -1%;
  }
  body .wrap .background .main .arrow img {
    left: 240px;
  }
  body .wrap .background .main .bgtitle.original h1 {
    font-size: 80px;
  }
  body .wrap .background .main .bgtitle.original {
    top: 10px;
  }
  body .wrap .background .main .bgtitle.clone h1 {
    font-size: 80px;
  }
  body .wrap .background .main .bgtitle.clone {
    top: 10px;
  }
}
#preloader {
  position: fixed;
  top: 45px;
  left: -110px;
  width: 25%;
  height: 25%;
  z-index: 1;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #6563FF;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #CBCAFF;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #FDBA4C;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}