@charset "utf-8";

/******* contents *******/
.contents {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contents.blur .main {
  filter: blur(4px);
  transition: filter 0.3s ease;
}

.contents.blur .brand-led {
  filter: blur(4px);
  transition: filter 0.3s ease;
}

.contents.blur .member {
  filter: blur(4px);
  transition: filter 0.3s ease;
}

.contents.blur .work {
  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: 64px;
  left: 280px;
  font-size: 15px;
}

.main .site p {
  margin-right: 5px;
}

.main .site p:nth-of-type(2) {
  margin-right: 0.2px;
}

.main .site p:nth-of-type(even) {
  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;

  align-items: flex-start;
}

.main .bottom-logo img {
  height: 100%;
  width: auto;
  margin-right: 50px;
}



/* 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: 80px 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 .list-title h3 {
  font-size: 24px;
  position: relative;
}

.brand-led .list-txt {
  width: 556px;
  opacity: 0;
  line-height: 1.3;
  word-break: keep-all;
  font-size: 20px;
}

.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;
}

.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;
}

.list1:hover .point {
  color: #014EF6;
}

.list2:hover .point {
  color: #FF5349;
}

.list3:hover .point {
  color: #FE3CD0;
}

.list4:hover .point {
  color: #9E00FE;
}

.list-tags {
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}

.list-tag {
  width: 270px;
  border: 1px solid #8A8A8A;
  border-radius: 30px;
  padding: 13px 34px;
}

.list-txt .arrow-wapper {
  margin-top: 20px;
  width: 100%;
  background-color: #000;
  padding: 13px 34px;
}

.list-txt .arrow-wapper a {
  color: #fff;
}

.list2 .list-txt .arrow-wapper:hover {
  background-color: #FF5349;
  border-color: #FF5349;
}

.list3 .list-txt .arrow-wapper:hover {
  background-color: #FE3CD0;
  border-color: #FE3CD0;
}

.list1 .list-txt .arrow-wapper:hover {
  background-color: #014EF6;
  border-color: #014EF6;
}

.list4 .list-txt .arrow-wapper:hover {
  background-color: #9E00FE;
  border-color: #9E00FE;
}

/* member */

.member {
  position: relative;
  height: 526vh;
  padding: 540px 0;
}


.member-sticky {
  position: sticky;
  top: 0;
}

.member .member-title {
  width: 100%;
  margin-bottom: 120px;
  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: auto;
  height: 54px;
}

.member .slide1 .profile-wrapper .profile img {
  height: 56px;
}


.member .slide5 .profile-wrapper .profile img {
  height: 40px;
}

.profile-txt-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.profile-subtxt {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
}

.member .swiper-slide .profile-wrapper .profile-txt {
  font-size: var(--font-ss);
  font-weight: 600;
  line-height: 1.4;
  gap: 10px;
}

.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 .slide4 .profile-img img {
  width: 601px;
  height: 412px;
}

.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);
  }
}

.member .slide5 .profile-wrapper {
  align-items: center;
  height: 70%;
}

.slide5 .profile-wrapper .profile:nth-of-type(1) {
  gap: 59px;
}

.slide5 .profile-wrapper .profile:nth-of-type(2) {
  gap: 30px;
}

.slide5 .profile-wrapper .profile:nth-of-type(3) {
  gap: 80px;
}

.slide5 .profile-wrapper .profile:nth-of-type(4) {
  gap: 79px;
}

.member .slide5 .profile-wrapper .profile-btn {
  width: 458px;
  background: linear-gradient(to right, #0071BB, #08588C);
  border-color: transparent;
  color: #fff;
  padding: 14px 20px;
}

.proposal-btn {
  font-size: 20px;
  color: #000;
}

.arrow-wapper {
  justify-content: center;
  border-color: #000;
}

.slide5 .profile-wrapper .profile .arrow-wapper:hover .proposal-btn {
  color: #fff;
}

.slide5 .profile-wrapper .profile:nth-of-type(1) .arrow-wapper:hover {
  background-color: #FF5349;
  border-color: #FF5349;
}

.slide5 .profile-wrapper .profile:nth-of-type(2) .arrow-wapper:hover {
  background-color: #FE3CD0;
  border-color: #FE3CD0;

}

.slide5 .profile-wrapper .profile:nth-of-type(3) .arrow-wapper:hover {
  background-color: #014EF6;
  border-color: #014EF6;
}


.slide5 .profile-wrapper .profile:nth-of-type(4) .arrow-wapper:hover {
  background-color: #9E00FE;
  border-color: #9E00FE;
}

.slide5 .profile-wrapper .btn-wrapper {
  flex-direction: column;
  gap: 36px;
}

.swiper-slide .profile-wrapper .profile-txt-wrapper .profile-subtxt .check-icon {
  width: 30px;
  height: 30px;
}

.slide1 .profile-wrapper .profile-txt-wrapper .profile-subtxt .check-icon {
  fill: #FF5349;
}

.slide2 .profile-wrapper .profile-txt-wrapper .profile-subtxt .check-icon {
  fill: #FE3CD0;
}

.slide3 .profile-wrapper .profile-txt-wrapper .profile-subtxt .check-icon {
  fill: #014EF6;
}

.slide4 .profile-wrapper .profile-txt-wrapper .profile-subtxt .check-icon {
  fill: #9E00FE;
}

.swiper-slide .profile-wrapper .profile-txt-wrapper .profile-subtxt {
  gap: 10px;
}

.member .slide1 .profile-img {
  width: 668px;
  flex-wrap: wrap;
  gap: 10px;
}

.member .slide1 .profile-img img {
  width: 230px;
  height: 230px;
  margin: 0;
}

.slide2 .profile-subtxt {
  flex-wrap: wrap;
  width: 600px;
}

.slide2 .profile-subtxt img {
  width: 120px;
  height: 40px;
}

.slide2 .profile-img iframe,
.slide3 .profile-img iframe {
  object-fit: cover;
  width: 700px;
  height: 394px;
}

.member .slide3 .profile-wrapper {
  height: 68%;
}

.member .slide5 .profile-img {
  width: 46%;
}

.member .slide5 .profile-img img {
  width: 512px;
  height: 512px;
  margin: 0;
}

.profile-txt-wrapper .bold-txt {
  font-weight: 700;
  font-size: 22px;
}

.modal {
  background-color: transparent;
}

.w-full {
  width: 90%;
}

.w-full #message {
  width: 95%;
}

#submitBtn {
  width: 100%;
  padding: 12px 0
}

#closeModal {
  background-color: #fff;
  border-color: #fff;
  box-shadow: none;
}

/* bg */
.bg {
  background: linear-gradient(#00000000, #000);
  width: 100%;
  height: 40vh;
  display: none;
}

/* our work */
.work {
  width: 100%;
  color: var(--main-color1);
}

.work .work-wapper {
  padding: 100px 0;
  background: linear-gradient(to bottom, #00000000 0%, #000 20%);
}

.work .work-title {
  justify-content: space-between;
  line-height: 1;
  margin-bottom: 100px;
  margin-top: 300px;
}

.work .work-title .title2 {
  margin-top: 200px;
}

.work .work-title .title-txt2 {
  text-indent: 159px;

}

.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: 20px;
  margin-top: 30px;
  line-height: 1.5;
}

.work .work-box-wrapper {
  grid-template-columns: 1fr 1fr;
  max-width: 1600px;
  height: 100%;
  gap: 50px;
}

.space .space-card {
  position: relative;
  z-index: 9;
}

.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: 440px;
  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 .projectCard {
  width: 780px;
  height: 400px;
}

.work .work-box-wrapper .work-box .box-contant .video {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  object-fit: cover;
}

.work .work-box-wrapper .work-box .box-contant .box-txt {
  height: 380px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;

  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: 0 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 이동 */
}


/* 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);
  }
}

.contact-btn .arrow-wapper {
  border-color: #fff;
}

/* ******************************************* */
/* 모바일버전 */
@media (max-width: 1024px) {
  .main .site {
    top: 34px;
    left: 180px;
  }

  .brand-led .list .list-title h3 {
    font-size: 30px;
  }

  .contents .brand-led .num {
    font-size: 14px;
  }

  .contents .brand-led .list {
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 30px;
  }

  .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);
  }

  .brand-led .list .list-title h3 {
    font-size: 20px;
  }

  .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;
  }

  .list-tag {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }

  /* member */
  .member {
    position: relative;
    height: 100vh;
    padding: 200px 0;
  }

  .member .member-title {
    margin-bottom: 20px;
  }

  .contents .member .swiper {
    min-width: 600px;
    max-width: 600px;
    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 80px;

  }

  .contents .member .swiper .swiper-wrapper .slide2,
  .contents .member .swiper .swiper-wrapper .slide3 {
    height: 100%;
  }

  .contents .member .swiper .swiper-wrapper .swiper-slide .profile-wrapper {
    width: 100%;
    padding: 0;
  }

  .contents .member .swiper .swiper-wrapper .swiper-slide .profile-wrapper .profile-txt {
    font-size: 16px;
    padding: 40px 0;
  }

  .contents .member .swiper-slide .profile-img {
    width: 64%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: 20px;
  }

  .contents .member .slide2 .profile-img,
  .contents .member .slide3 .profile-img {
    width: 100%;
    object-fit: cover;
  }

  .member .swiper-slide .profile-wrapper .profile-btn {
    width: 100%;
    font-size: 16px;
    margin: 0;
    padding: 10px 8px;
  }

  .member .swiper .next {
    display: block;
  }

  .member .slide1 .profile-wrapper .profile img {
    height: 28px;
  }

  .member .swiper-slide .profile-wrapper .profile img {
    height: 28px;
    margin-bottom: 10px;
  }

  .swiper-slide .profile-wrapper .profile-txt-wrapper .profile-subtxt .check-icon {
    width: 16px;
    height: 16px;
  }

  .profile-subtxt {
    font-size: 16px;
  }

  .member .slide1 .profile-img img {
    width: 130px;
    height: 130px;
  }

  .profile-txt-wrapper {
    gap: 10px;
  }

  .slide2 .profile-subtxt {
    width: 420px;
  }

  .slide2 .profile-subtxt img {
    width: 60px;
    height: 20px;
  }

  .slide2 .profile-img iframe,
  .slide3 .profile-img iframe {
    width: 500px;
    height: auto;
  }

  .member .slide4 .profile-img img {
    width: 289px;
    height: 196px;
  }

  .proposal-btn {
    font-size: 16px;
  }

  .arrow {
    width: 12px;
  }

  .arrow-wapper {
    padding: 6px 8px;
  }

  .member .slide5 .profile-wrapper .profile img {
    margin-bottom: 0;
    height: 28px;
  }

  .slide5 .profile-wrapper .profile:nth-of-type(1) {
    gap: 94px;
  }

  .slide5 .profile-wrapper .profile:nth-of-type(2) {
    gap: 78px;
  }

  .slide5 .profile-wrapper .profile:nth-of-type(3) {
    gap: 115px;
  }

  .slide5 .profile-wrapper .profile:nth-of-type(4) {
    gap: 114px;
  }

  .contents .member .swiper .swiper-wrapper .slide5 .profile-wrapper {
    height: 332px;
  }

  .member .slide5 .profile-img img {
    width: 280px;
    height: auto;
  }

  .profile-txt-wrapper .bold-txt {
    width: 200px;
  }

  /* work */


  .work .work-title .title2 {
    margin-bottom: 30px;
  }

  .work .work-title .work-txtbox {
    width: 100%;
    font-size: 20px;
  }

  .work .work-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .work .work-title .work-txtbox h3 {
    font-size: 30px;
  }

  .contents .work .work-box-wrapper .work-box {
    width: 420px;
    height: 240px;
  }

  .work .work-box-wrapper .work-box .box-contant {
    width: 420px;
  }

  .work .work-box-wrapper .work-box .box-contant .projectCard {
    width: 100%;
    height: 240px;
  }

  .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-around;
  }

  .work .work-box-wrapper .work-box .box-contant .box-txt p {
    margin-bottom: 80px;
    font-size: 14px;
  }

  .work .work-box-wrapper .work-box .box-contant .box-txt .tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .work .work-box-wrapper .work-box .box-contant .box-txt .tags .tag {
    font-size: 12px;
  }

  .work .work-box-wrapper .box-title {
    height: 90px;
    width: 420px;
    font-size: 16px;
  }

  .work .work-wapper .view-btn {
    margin: 120px auto;
    font-size: 16px;
  }

  .footer-brand {
    margin: 40px 0;
  }

  .marquee-wrap {
    padding-right: 100px;
  }

  .marquee-wrap img {
    height: 30px;
  }
}

@media (max-width: 768px) {

  /* contents */
  /* main */
  .contents .main .site {
    position: absolute;
    top: 70px;
    left: 20px;
  }

  .contents .main .site p {
    margin-right: 5px;
    font-size: 14px;
  }

  .main .site p:nth-of-type(2) {
    margin-right: 0;
  }

  .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 {
    height: 21px;
    margin-right: 20px;
  }

  .contents .main .bottom-logo .img3 {
    height: 25px;
  }

  /* brand */
  .contents .brand-led .num {
    font-size: 14px;
  }

  .contents .brand-led .list {
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 30px;
  }

  .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);
  }

  .brand-led .list .list-title h3 {
    font-size: 20px;
  }

  .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;
  }

  .list-tag {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }

  .profile-txt-wrapper .bold-txt {
    font-size: 18px;
  }

  .member .slide3 .profile-wrapper {
    height: 54%
  }

  /* 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 .slide2,
  .contents .member .swiper .swiper-wrapper .slide3 {
    height: 90%;
  }

  .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-slide .profile-img {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: 20px;
  }

  /* member  */
  .member .swiper-slide .profile-wrapper .profile-btn {
    width: 100%;
    font-size: 16px;
    margin: 0;
    padding: 10px 8px;
  }

  .member .swiper .next {
    display: block;
  }

  .member .slide1 .profile-wrapper .profile img {
    height: 26px;
  }

  .member .swiper-slide .profile-wrapper .profile img {
    height: 25px;
    margin-bottom: 10px;
  }

  .swiper-slide .profile-wrapper .profile-txt-wrapper .profile-subtxt .check-icon {
    width: 16px;
    height: 16px;
  }

  .profile-subtxt {
    font-size: 16px;
  }

  .member .slide1 .profile-img img {
    width: 130px;
    height: 130px;
  }

  .profile-txt-wrapper {
    gap: 10px;
  }

  .slide2 .profile-subtxt {
    width: 286px;
  }

  .slide2 .profile-subtxt img {
    width: 60px;
    height: 20px;
  }

  .slide2 .profile-img iframe,
  .slide3 .profile-img iframe {
    width: 286px;
    height: 160px;
  }

  .member .slide4 .profile-img img {
    width: 289px;
    height: 196px;
  }

  .proposal-btn {
    font-size: 12px;
  }

  .arrow {
    width: 12px;
  }

  .arrow-wapper {
    padding: 6px 8px;
  }

  .member .slide5 .profile-wrapper .profile img {
    margin-bottom: 0;
    height: 20px;
  }

  .slide5 .profile-wrapper .profile:nth-of-type(1) {
    gap: 16px;
  }

  .slide5 .profile-wrapper .profile:nth-of-type(2) {
    gap: 6px;
  }

  .slide5 .profile-wrapper .profile:nth-of-type(3) {
    gap: 28px;
  }

  .slide5 .profile-wrapper .profile:nth-of-type(4) {
    gap: 28px;
  }

  .contents .member .swiper .swiper-wrapper .slide5 .profile-wrapper {
    height: 300px;
  }

  .member .slide5 .profile-img img {
    width: 246px;
    height: auto;
  }

  .profile-txt-wrapper .bold-txt {
    width: 200px;
  }

  /* 모달 */
  .w-full {
    width: 100%;
  }

  .sm\:text-5xl {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 12px
  }

  .text-lg {
    font-size: 16px;
    line-height: 1.2;
  }

  .sm\:p-10 {
    padding: 30px;
  }

  #closeModal {
    right: 10%;
  }

  /* bg */
  .bg {
    display: block;
    height: 70vh;
  }

  /* work */
  .contents .work {
    position: relative;
  }

  .contents .work .work-wapper {
    padding: 10px 0;
    margin-top: 0;
    background-color: #000;
  }

  .contents .work .work-title {
    flex-direction: column;
    width: 100%;
    margin-top: 0;
  }

  .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%;
    place-items: center;
    gap: 105px;
  }

  .contents .work .work-box-wrapper .work-box {
    width: 420px;
    height: 240px;
  }

  .work .work-box-wrapper .work-box .box-contant {
    width: 420px;
  }

  .work .work-box-wrapper .work-box .box-contant .projectCard {
    width: 100%;
    height: 240px;
  }

  .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-around;
  }

  .work .work-box-wrapper .work-box .box-contant .box-txt p {
    margin-bottom: 80px;
    font-size: 14px;
  }

  .work .work-box-wrapper .work-box .box-contant .box-txt .tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .work .work-box-wrapper .work-box .box-contant .box-txt .tags .tag {
    font-size: 12px;
  }

  .work .work-box-wrapper .box-title {
    height: 90px;
    width: 420px;
    font-size: 16px;
  }

  .work .work-wapper .view-btn {
    margin: 120px auto;
    font-size: 16px;
  }

  .contents {
    overflow: visible !important;
    /* .space sticky를 사용하기위해 강제로 풀기*/
  }

  .footer-brand {
    margin: 60px 0 64px;
  }

  .marquee-wrap {
    padding-right: 100px;
  }

  .marquee-wrap img {
    height: 36px;
  }

  .marquee-img:hover {
    animation-play-state: paused;
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .space {
    padding: 100px 16px;
  }

  .brand-led .list .list-title h3 {
    font-size: 16px;
  }

  .contents .work .work-box-wrapper .work-box {
    width: 320px;
    height: 180px;
  }

  .work .work-box-wrapper .work-box .box-contant {
    width: 320px;
  }

  .work .work-box-wrapper .box-title {
    height: 90px;
    width: 320px;
    font-size: 16px;
  }

  .work .work-box-wrapper .work-box .box-contant .box-txt {
    height: 185px;
  }

  .work .work-box-wrapper .work-box .box-contant .box-txt p {
    margin-bottom: 87px;
  }

  .contents .main .bottom-logo img {
    height: 15px;

  }

  .contents .main .bottom-logo .img3 {
    height: 18px;
  }

}

/* .contents {
  position: relative;
  z-index: 2;
}

.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 클래스가 추가되면 불투명해짐
}

*/