@charset "utf-8";

/******* contents *******/
.contents {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contents.blur {
  filter: blur(4px);
  transition: filter 0.3s ease;
}

/* main */
.main {
  height: 100vh;
  position: relative;
}

/*그라디언트 키프레임*/
@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(50%);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }

  50% {
    transform: translateX(50%) translateY(10%);
  }

  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}

/* 메인 그라디언트 */
.gradient-bg {
  width: 100vw;
  height: 100%;
  position: fixed;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
  z-index: -1;

  svg {
    display: none;
  }

  .gradients-container {
    filter: url(#goo) blur(40px);
    width: 100%;
    height: 100%;
  }

  .g1 {
    position: absolute;
    background: radial-gradient(circle at center,
        rgba(var(--color1), 0.8) 0,
        rgba(var(--color1), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: center center;
    animation: moveVertical 30s ease infinite;

    opacity: 1;
  }

  .g2 {
    position: absolute;
    background: radial-gradient(circle at center,
        rgba(var(--color2), 0.8) 0,
        rgba(var(--color2), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;

    opacity: 1;
  }

  .g3 {
    position: absolute;
    background: radial-gradient(circle at center,
        rgba(var(--color3), 0.8) 0,
        rgba(var(--color3), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);

    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;

    opacity: 1;
  }

  .g4 {
    position: absolute;
    background: radial-gradient(circle at center,
        rgba(var(--color4), 0.8) 0,
        rgba(var(--color4), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;

    opacity: 0.7;
  }

  .g5 {
    position: absolute;
    background: radial-gradient(circle at center,
        rgba(var(--color5), 0.8) 0,
        rgba(var(--color5), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));

    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;

    opacity: 1;
  }

  .interactive {
    position: absolute;
    background: radial-gradient(circle at center,
        rgba(var(--color-interactive), 0.8) 0,
        rgba(var(--color-interactive), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;

    opacity: 0.7;
  }
}

/* main 흐림 */
main.blur {
  filter: blur(5px);
  transition: filter 0.3s ease;
}

main.blur::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  /* 반투명 어둡게 */
}

.main .site {
  position: absolute;
  top: 57px;
  margin-left: 240px;
  font-size: 15px;
}

.main .site p {
  margin-right: 5px;
}

.main .site p:nth-of-type(odd) {
  color: var(--main);
  font-weight: 600;
}

.main .intro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main .intro .title {
  font-family: var(--font-main-en);
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  margin-right: 50px;
  transition: transform 1s ease;
}

.main .intro .title p:nth-child(2) {
  margin-left: 100px;
}

.main .intro .title p:last-child {
  margin-left: 350px;
}

.main .intro .title .txt {
  width: 400px;
  font-size: var(--font-xs);
  line-height: 2;
  margin-left: 90px;
  padding-top: 100px;
}

.main .intro .slider {
  position: relative;
}

.main .intro .slider .intro-video .main-video {
  object-fit: cover;
  width: 180px;
  height: 180px;
  transition: transform 1s ease;
  transform-origin: center center;
  position: absolute;
  top: -120px;
  left: -230px;
}

.main .intro .slider .intro-video .main-video:hover {
  transform: scale(4);
}

/* 메인 title,caption 위치 이동 */
.intro-video:hover~.caption {
  transform: translate(-72px, 350px);
}

.main .intro.active .title {
  transform: translateX(-460px);
}

.main .intro .slider .caption {
  font-family: var(--font-sub-en);
  font-weight: 800;
  height: 50px;
  width: 450px;
  transition: transform 1s ease;
}

.main .intro .slider .caption p {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1.6px;
  overflow: hidden;
}

.main .intro .slider .caption p span.typed-text {
  font-weight: normal;
  color: var(--main);
}

.main .intro .slider .caption p span.cursor {
  display: inline-block;
  background-color: #ccc;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}

.main .intro .slider .caption p span.cursor.typing {
  animation: none;
}

@keyframes blink {
  0% {
    background-color: #ccc;
  }

  49% {
    background-color: #ccc;
  }

  50% {
    background-color: transparent;
  }

  99% {
    background-color: transparent;
  }

  100% {
    background-color: #ccc;
  }
}

.main .bottom-logo {
  position: absolute;
  bottom: 5%;
  padding-left: 80px;
}

.main .bottom-logo img {
  width: 70px;
  height: 26px;
  margin-right: 20px;
}

.main .bottom-logo .img2 {
  width: 120px;
  height: 40px;
}

.main .bottom-logo .img3 {
  width: 110px;
  height: 20px;
}

/* brand */
.brand-led .brand-title {
  width: 100%;
  text-align: center;
  margin-bottom: 100px;
}

.brand-led .num {
  font-size: 20px;
  font-family: var(--font-main-en);
  font-weight: 600;
  margin-bottom: 10px;
}

.brand-led .list {
  justify-content: space-between;
  padding: 60px 0;
  position: relative;
  color: var(--color-bg);
  border-bottom: 1px solid var(--color-bg);
  line-height: 1.4;
  /* 변경 line-height 추가 */
}

.list::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  border: 1px solid #000;
  pointer-events: none;
  transition: width 0.2s ease;
  opacity: 0;
}

.list:hover::before {
  width: 100%;
  opacity: 1;
}

.list:hover {
  border-bottom-color: transparent;
}

.brand-led .list .list-title,
.brand-led .list .list-txt {
  position: relative;
}

.brand-led .list-txt {
  width: 500px;
  /* 변경 width: 500px */
  opacity: 0;
  line-height: 1.3;
}

.brand-led .list img {
  width: 380px;
  height: 380px;
  object-fit: contain;
  border-radius: 20px;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;

  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
  background-color: var(--main);
}

.ani {
  display: block;
  opacity: 1 !important;

  transform: translate(-50%, -50%) scale(1);
  transition: opacity 1s ease, transform 0.4s ease;
}

.brand-led .list:hover img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.brand-led .list:hover {
  color: var(--main-color);
}

.brand-led .list:hover .list-txt {
  opacity: 1;
}

/* member */
.member {
  position: relative;
  height: 600vh;
}

.member-sticky {
  position: sticky;
  top: 0;
}

.member .member-title {
  width: 100%;
  margin-bottom: 100px;
  text-align: center;
}

/* 스와이퍼 */
.member .swiper {
  border-radius: 20px 200px 20px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 1600px;
  overflow: hidden;
  padding: 50px;
}

.member .swiper-wrapper {
  width: 1600px;
  height: 640px;
}

.member .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  padding: 0 50px;
  width: 1600px;
}

.member .swiper-slide .profile-wrapper {
  width: 40%;
  height: 80%;
  z-index: 99;

  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 50px;
}

.member .swiper-slide .profile-wrapper .profile img {
  width: 140px;
}

.member .swiper-slide .profile-wrapper .profile-txt {
  font-size: var(--font-ss);
  font-weight: normal;
  line-height: 1.4;
}

.member .swiper-slide .profile-wrapper .profile-btn {
  width: 150px;
  font-size: var(--font-ss);
  font-weight: normal;
  text-transform: capitalize;
  text-align: center;
  color: var(--main-color);
  border-color: var(--main-color);
}

.member .swiper-slide .profile-img {
  width: 60%;
}

.member .swiper-slide .profile-img img {
  width: 280px;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  margin-right: 60px;
}

.member .swiper .next {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: none;
}

.member .swiper .next .arrow {
  display: inline-block;
  animation: arrow-shake 2s infinite ease-in-out;
  color: var(--color-next);
}

@keyframes arrow-shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(0);
  }

  75% {
    transform: translateX(8px);
  }

  100% {
    transform: translateX(0);
  }
}

/* bg */
.bg {
  background: linear-gradient(#00000000, #000);
  width: 100%;
  height: 60vh;
}

/* our work */
.work {
  width: 100%;
  /*background-color: var(--main-color); */
  color: var(--main-color1);
}

.work .work-wapper {
  padding: 100px 0;
}

.work .work-title {
  justify-content: space-between;
  line-height: 1;
  margin-bottom: 100px;
}

.work .work-title .title2 {
  margin-top: 200px;
}

.work .work-title .title-txt2 {
  text-indent: 200px;
}

.work .work-title .work-txtbox {
  width: 700px;
  line-height: 1.2;
}

.work .work-title .work-txtbox h3 {
  font-size: 50px;
}

.work .work-title .work-txtbox p {
  font-size: 18px;
  margin-top: 30px;
  line-height: 1.5;
}

.work .work-box-wrapper {
  grid-template-columns: 1fr 1fr;
  max-width: 1600px;
  height: 100%;
  gap: 50px;
}

/* galaxy 애니메이션 */
.galaxy {
  position: relative;
  height: 100vh;
  /* margin-bottom: -400px; */
  background-color: var(--main-color);
}

.space .space-card {
  position: relative;
  z-index: 9;
}

.galaxy .galaxy__frame {
  /* position: sticky; */
  position: relative;

  width: 100%;
  height: 100vh;
  background: #030611;
  /* overflow: hidden; */
}

.galaxy .galaxy__frame #canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.galaxy .galaxy__frame .galaxy__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  color: #fff;
  text-align: center;
}

.galaxy .galaxy__frame .galaxy__overlay h1 {
  margin: 0 0 0.5em;
  font-weight: 900;
}

.work .work-box-wrapper .box-title {
  border: 1px solid var(--color-bg);
  padding: 20px;
  border-radius: 20px;
  border-bottom: none;
  width: 100%;
  height: 100px;
  font-size: 20px;
  text-transform: uppercase;
}

.work .work-box-wrapper .work-box {
  width: 780px;
  height: 470px;
  font-size: 20px;
}

.work .work-box-wrapper .work-box .box-contant {
  position: relative;
  border-radius: 30px;
  height: 100%;
  top: -30px;
}

.work .work-box-wrapper .work-box .box-contant video {
  position: absolute;
  left: 0;
  border-radius: 20px;
  width: 780px;
  height: 400px;
  z-index: 9;
  object-fit: cover;
}

.work .work-box-wrapper .work-box .box-contant .box-txt {
  height: 400px;
  width: 100%;
  position: absolute;
  border-radius: 20px;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.4s ease;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 30px;
}

.work .work-box-wrapper .work-box .box-contant .box-txt:hover {
  opacity: 1;
}

.work .work-box-wrapper .work-box .box-contant .box-txt .tags {
  position: absolute;
  bottom: 10%;
}

.work .work-wapper .view-btn {
  width: 200px;
  height: 100%;
  margin: 60px auto;
}

.view-btn:hover .arrow {
  transform: translateX(5px);
  /* 오른쪽으로 5px 이동 */
}

/* team title */
.team-title {
  grid-column: span 4;
  padding: 200px 90px 100px;
}

.team-title .title-txt2 {
  text-indent: 200px;
}

/* space */
.space {
  padding: 100px 90px;
  min-height: 100vh;
  max-width: 1920px;
  height: 100%;
  background: transparent;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 300vh;

  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.space::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

#galaxy {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.space .space-card {
  width: 400px;
  height: 540px;
  perspective: 1000px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
}

.space .space-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}

.space .space-card:hover .card-inner {
  transform: rotateY(180deg);
}

.space .space-card .card-inner .card-front,
.space .space-card .card-inner .card-back {
  position: absolute;
  backface-visibility: hidden;
  border-radius: 30px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: linear-gradient(-100deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0) 47%,
      rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(42px);
  width: 100%;
  height: 100%;
}

.space .space-card .card-inner .card-back {
  transform: rotateY(180deg);
}

.card-front::before,
.card-back::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 30px;
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0),
      rgba(10, 126, 193, 0.5),
      rgba(255, 255, 255, 0),
      rgb(15, 15, 15),
      rgba(15, 15, 15, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.space .space-card .card-inner .card-front img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: inset 0 6px 18px rgba(0, 0, 0, 0.4),
    inset 0 -4px 10px rgba(255, 255, 255, 0.05);
  margin: 0 auto;
}

.space .space-card .card-inner .card-front .name p {
  padding-bottom: 8px;
  text-align: center;
}

.space .space-card .card-inner .card-back .back-symbol img {
  width: 100px;
  opacity: 0.5;
}

.space .space-card .card-inner .card-back .txt-wapper {
  height: 250px;
  flex-direction: column;
  justify-content: space-between;
}

.space .space-card .card-inner .card-back .txt-wapper .skill {
  margin-right: 50px;
}

.skill {
  position: relative;
}

.skill .skill-box {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #d9d9d9;
}

.skill1 .skill-box {
  top: 10px;
  right: -20px;
}

.skill1 .box2 {
  right: -32px;
}

.skill1 .box3 {
  right: -44px;
}

.skill1 .box4 {
  right: -56px;
}

.skill1 .box5 {
  right: -68px;
}

.skill2 .skill-box {
  top: 35px;
  right: 20px;
}

.skill2 .box2 {
  right: 8px;
}

.skill2 .box3 {
  right: -4px;
}

.skill2 .box4 {
  right: -16px;
}

.skill3 .skill-box {
  top: 62px;
  right: 4px;
}

.skill3 .box2 {
  right: -8px;
}

.skill3 .box3 {
  right: -20px;
}

.skill3 .box4 {
  right: -32px;
}

.skill3 .box5 {
  right: -44px;
}

.skill4 .skill-box {

  top: 90px;
  right: 6px;
}

.skill4 .box2 {
  right: -6px;
}

.skill4 .box3 {
  right: -18px;
}

.skill4 .box4 {
  right: -20px;
}

.skill4 .box5 {
  right: -32px;
}

.space .space-card .card-inner .card-back .skill-txt {
  list-style: circle;
  font-size: 16px;
}

.shooting-star {
  display: none;
}


/* footer 흐르는텍스트 */
.footer-brand {
  width: 100%;
  overflow: hidden;
  margin: 200px 0;
}

.marquee-img {
  display: flex;
  width: max-content;
  margin-bottom: 50px;
}

.marquee-img:first-child {
  animation: marquee-left 50s linear infinite;
}

.marquee-img:last-child {
  animation: marquee-right 50s linear infinite;
}

.marquee-img:hover {
  animation-play-state: paused;
  cursor: pointer;
}

.marquee-wrap {
  flex: 0 0 auto;
  padding-right: 200px;
}

.marquee-wrap img {
  height: 50px;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}


/* ******************************************* */
/* 모바일버전 */

@media (max-width: 767px) {

  /* contents */
  /* main */
  .contents .main .site {
    position: absolute;
    top: 60px;
    margin-left: 20px;
  }

  .contents .main .site p {
    margin-right: 5px;
    font-size: 14px;
  }

  .contents .main .intro {
    flex-direction: column;
  }

  .contents .main .intro .title {
    text-align: left;
  }

  .contents .main .intro .title p:nth-child(2) {
    margin-left: 70px;
  }

  .contents .main .intro .title p:last-child {
    margin-left: 40px;
  }

  .contents .main .intro .slider .intro-video .main-video {
    width: 100px;
    height: 100px;
    top: -170px;
    left: 210px;
  }

  .contents .main .intro .slider .caption {
    width: 380px;
    padding: 20px 0 0 40px;
  }

  .contents .main .intro .slider .caption p {
    font-size: 14px;
  }

  /* 메인 title,caption 위치 이동 */
  .contents .intro-video:hover~.caption {
    transform: translateY(170px);
  }

  .contents .main .intro.active .title {
    transform: translateY(-180px);
  }

  .contents .main .intro.active .slider .intro-video .main-video {
    transform: scale(3);
    top: -50px;
    left: 140px;
  }

  .contents .main .bottom-logo {
    padding: 20px;
  }

  .contents .main .bottom-logo img {
    width: 50px;
    height: 19px;
    margin-right: 20px;
  }

  .contents .main .bottom-logo .img2 {
    width: 90px;
    height: 28px;
  }

  .contents .main .bottom-logo .img3 {
    width: 80px;
    height: 15px;
  }

  /* brand */
  .contents .brand-led .num {
    font-size: 14px;
  }

  .contents .brand-led .list {
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 0;
  }

  .contents .brand-led .list .list-txt {
    display: none;
    transition: opacity 0.3s ease;
    padding-top: 20px;
    width: 100%;
  }

  .contents .brand-led .list:first-child .list-title.active {
    color: var(--main-color);
  }

  .contents .brand-led .list:first-child .list-txt {
    display: block;
    opacity: 1;
    color: var(--main-color);
  }

  .contents .list.active .hover-img {
    display: block;
  }

  .contents .list.active .list-txt {
    display: block;
    opacity: 1;
  }

  .contents .brand-led .list img {
    display: none;
    width: 0px;
    height: 0px;
  }

  /* member */
  .member {
    position: relative;
    height: 100vh;
  }

  .member .member-title {
    margin-bottom: 20px;
  }

  .contents .member .swiper {
    min-width: 300px;
    max-width: 328px;
    height: 730px;
    padding: 50px 0;
    border-radius: 20px 160px 20px 20px;
  }

  .contents .member .swiper .swiper-wrapper {
    justify-content: space-between;
  }

  .contents .member .swiper .swiper-wrapper .swiper-slide {
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px;
  }

  .contents .member .swiper .swiper-wrapper .swiper-slide .profile-wrapper {
    height: 240px;
    width: 100%;
    padding: 0;
  }

  .contents .member .swiper .swiper-wrapper .swiper-slide .profile-wrapper .profile-txt {
    font-size: 16px;
    padding: 40px 0;
  }

  .contents .member .swiper .swiper-wrapper .swiper-slide .profile-wrapper .profile img {
    width: 80px;
  }

  .contents .member .swiper-slide .profile-img {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: 20px;
  }

  .contents .member .swiper .swiper-wrapper .swiper-slide .profile-img img {
    width: 120px;
    height: 300px;
    margin: 0;
  }

  .member .swiper-slide .profile-wrapper .profile-btn {
    width: 170px;
    font-size: 16px;
  }

  .member .swiper .next {
    display: block;
  }

  /* bg */
  .bg {
    height: 70vh;
  }

  /* work */
  .contents .work {
    position: relative;
  }

  .contents .work .work-wapper {
    padding: 0;
  }

  .contents .work .work-title {
    flex-direction: column;
    width: 100%;
  }

  .contents .work .work-title .title2 {
    margin: 60px 0;
    font-size: 50px;
  }

  .contents .work .work-title .title-txt2 {
    text-indent: 100px;
  }

  .contents .contents .work .work-title .title2 p {
    font-size: 50px;
  }

  .contents .work .work-title .work-txtbox {
    width: 100%;
  }

  .contents .work .work-title .work-txtbox h3 {
    font-size: 24px;
  }

  .contents .work .work-box-wrapper {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contents .work .work-box-wrapper .work-box {
    width: 100%;
    height: 300px;
  }

  .contents .work .work-box-wrapper .work-box .box-contant video,
  .work .work-box-wrapper .work-box .box-contant .box-txt {
    width: 100%;
    height: 240px;
  }

  .work .work-box-wrapper .work-box .box-contant .box-txt {
    justify-content: space-between;
  }

  .work .work-box-wrapper .work-box .box-contant .box-txt .tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .work .work-box-wrapper .box-title {
    height: 90px;
    font-size: 16px;
  }


  .work .work-wapper .view-btn {
    margin: 20px auto;
    font-size: 16px;
  }

  .contents {
    overflow: visible !important;
    /* .space sticky를 사용하기위해 강제로 풀기*/
  }

  .team-title {
    grid-column: span 1;
    padding: 100px 10px 0px;
    text-align: center;
  }

  .team-title .title-txt1 {
    /* text-indent: 50px; */
  }

  .team-title .title-txt2 {
    text-indent: 0px;
  }

  .space {
    width: 100%;
    height: 100%;
    grid-template-columns: repeat(1, 1fr);
    padding: 120px 30px 260px;
    overflow: visible;
    gap: 300px;
    place-items: center;


    background-image: radial-gradient(2px 2px at 20px 30px, #fff, #fff0),
      radial-gradient(1px 1px at 43px 75px, #fff, #fff0),
      radial-gradient(2px 1px at 54px 184px, #fff, #fff0),
      radial-gradient(2px 2px at 93px 47px, #e6e6e6, #fff0),
      radial-gradient(1px 1px at 148px 87px, #e8e8e8, #fff0),
      radial-gradient(1px 2px at 193px 137px, #fff, #fff0),
      radial-gradient(1px 1px at 210px 154px, #f5f5f5, #fff0),
      radial-gradient(2px 1px at 243px 102px, #e2e2e2, #fff0),
      radial-gradient(2px 1px at 264px 184px, #fff, #fff0),
      radial-gradient(2px 2px at 293px 44px, #efefef, #fff0),
      radial-gradient(1px 1px at 223px 62px, #ececec, #fff0),
      radial-gradient(1px 2px at 249px 162px, #fff, #fff0),
      radial-gradient(1px 1px at 73px 99px, #eaeaea, #fff0),
      radial-gradient(1px 2px at 163px 42px, #efefef, #fff0),
      linear-gradient(180deg,
        #fff0 5%,
        #000 15%,
        #020202 35%,
        #20005840 85%,
        #000 100%);
    background-repeat: repeat;
    background-size: 333px 263px, 333px 293px, 333px 363px, 333px 463px,
      433px 193px, 333px 203px, 633px 223px, 333px 263px, 333px 285px, 333px 179px,
      333px 163px, 333px 363px, 533px 163px, 333px 213px, 100% 100%;
  }

  .shooting-star {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 2px;
    height: 80px;
    background: linear-gradient(-45deg, white, transparent);
    opacity: 0.8;
    transform: rotate(45deg);
    animation: shooting 3s linear infinite;
  }

  @keyframes shooting {
    0% {
      transform: translateX(0) translateY(0) rotate(45deg);
      opacity: 0;
    }

    10% {
      opacity: 1;
    }

    100% {
      transform: translateX(-500px) translateY(500px) rotate(45deg);
      opacity: 0;
    }
  }

  .space-card:nth-child(odd) {
    transform: translateY(0px);
  }

  .work .space .team-title {
    position: sticky;
    top: -80px;
    z-index: 20;
    padding: 60px 10px 0px;
  }

  .space .space-card {
    width: 330px;
    height: 430px;
    font-size: 16px;
    position: sticky;
    top: 240px;
  }

  .space .space-card .card-inner .card-front img {
    width: 250px;
    height: 250px;
  }

  .space .space-card .card-inner .card-back .txt-wapper {
    height: 200px;
    align-items: flex-start;
  }

  .space .space-card .card-inner .card-back .txt-wapper .skill {
    margin-left: 40px;
  }

  .space .space-card .card-inner .card-back .txt-wapper .skill p .skill-box {
    width: 8px;
    height: 8px;
  }

  .skill1 .skill-box {
    top: 7px;
    right: -16px;
  }

  .skill1 .box2 {
    right: -28px;
  }

  .skill1 .box3 {
    right: -40px;
  }

  .skill1 .box4 {
    right: -52px;
  }

  .skill1 .box5 {
    right: -64px;
  }

  .skill2 .skill-box {
    top: 26px;
    right: 10px;
  }

  .skill2 .box2 {
    right: -2px;
  }

  .skill2 .box3 {
    right: -14px;
  }

  .skill2 .box4 {
    right: -26px;
  }

  .skill3 .skill-box {
    top: 45px;
    right: -2px;
  }

  .skill3 .box2 {
    right: -14px;
  }

  .skill3 .box3 {
    right: -26px;
  }

  .skill3 .box4 {
    right: -38px;
  }

  .skill3 .box5 {
    right: -50px;
  }

  .skill4 .skill-box {
    top: 63px;
    right: 0px;
  }

  .skill4 .box2 {
    right: -12px;
  }

  .skill4 .box3 {
    right: -24px;
  }

  .skill4 .box4 {
    right: -36px;
  }

  .skill4 .box5 {
    right: -48px;
  }

  .space .space-card .card-inner .card-back .skill-txt {
    font-size: 14px;
  }

  .space-card {
    transition: opacity 1s ease, transform 1.2s ease;
  }

  .space-card.blur-behind {
    opacity: 0;
    transform: scale(0.60);
    z-index: 1;
  }

  .galaxy,
  .galaxy__frame,
  #canvas,
  .galaxy__overlay {
    display: none;
  }

  body .fade-in {
    opacity: 1;
    padding-top: 100px;
  }

  .footer-brand {
    margin-bottom: 100px;
  }

  .marquee-wrap {
    padding-right: 100px;
  }

  .marquee-wrap img {
    height: 36px;
  }

  .marquee-img:hover {
    animation-play-state: paused;
    cursor: pointer;
  }
}

@media (max-width: 370px) {
  .space {
    padding: 100px 16px;
  }
}

.contents {
  position: relative;
  z-index: 2;
}

.work .work-wapper {
  background: black;
}

.fade-in {
  opacity: 0;
  /* 초기 상태는 투명 */
  transition: opacity 4s;
  /* opacity 변화에 3초 걸리도록 설정 */
  padding-top: 700px;
}

.fade-in.show {
  opacity: 1;
  /* show 클래스가 추가되면 불투명해짐 */
}

.fade-in2 {
  opacity: 1;
  /* 초기 상태는 투명 */
  transition: opacity 4s;
  /* opacity 변화에 3초 걸리도록 설정 */
}

.fade-in2.unshow {
  opacity: 0;
  /* show 클래스가 추가되면 불투명해짐 */
}