@charset "utf-8";
@import "./reset.css";
@import url("https://fonts.googleapis.com/css2?family=Alumni+Sans:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plaster&display=swap");

/* 드레그 했을 때 */
::selection {
  background-color: thistle;
  color: plum;
}

/* 스크롤 모양 */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  width: 10px;
  background-image: linear-gradient(-225deg, rgb(255, 216, 255) 0%, #fff 100%);
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgb(253, 198, 209);
}

body {
  font-family: "inter", sans-serif;
  font-size: 21px;
  font-weight: 300;
  color: #fff;
  background-color: #000;
}

#container {
  width: 100%;
  height: auto;
}

header {
  box-sizing: border-box;
  width: 100%;
  height: 90px;
  padding: 0px 40px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

h1 {
  font-family: "Plaster", system-ui;
  font-weight: 400;
  font-size: 25px;
  line-height: 90px;
}

header nav {
  width: fit-content;
  height: fit-content;
}

nav > ul {
  width: 100%;
  height: 100%;
}

/* 1차 메뉴 */
nav > ul > li {
  line-height: 90px;
  text-align: right;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
}

nav > ul > li > a:hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}

nav > ul > li::after {
  content: "line";
  font-size: 0;
  display: block;
  width: 40px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  top: 60px;
  right: 3px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

nav > ul > li:hover a {
  opacity: 1;
}
nav > ul > li:hover::after {
  opacity: 1;
}

/* 2차 메뉴 */
.submenu {
  position: absolute;
  right: 0;
  width: 200px;
  height: 0;
  overflow: hidden;
  line-height: 50px;
  font-weight: 300;
  /* 첫글자는 대문자로 바꾸기 */
  text-transform: capitalize;
  transition: 0.3s;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  text-align: center;

  box-sizing: border-box;
  border-radius: 5px;
}

.submenu > li > a {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

.submenu > li:hover > a {
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
}

nav > ul > li:hover > .submenu {
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 메인 */
main {
  width: 100%;
  height: auto;
}

/* 섹션 공통 속성 */
section {
  position: relative;
  height: auto;
  width: 100%;
  left: 0;
  top: 0;
  box-sizing: border-box;
}

/* 메인 비주얼 */
.visual {
  height: 99vh;
  background-color: pink;
  overflow: hidden;
}

.visual_title {
  font-family: "Alumni Sans", sans-serif;
  font-size: 12vw;
  font-style: italic;
  font-weight: 700;
  width: 80vw;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 8;
}

.visual_title h2 {
  position: absolute;
  line-height: 1;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

.visual_title .v_title1 {
  top: 40%;
  left: 15vw;
  margin-top: -10vw;
  -webkit-font-smoothing: subpixel-antialiased;
}

.visual_title .v_title2 {
  top: 50%;
  right: 15vw;
  margin-top: -10vw;
  height: 15vw;
  -webkit-font-smoothing: subpixel-antialiased;
}

.visual_title .v_title3 {
  bottom: 10vw;
  width: 100%;
  text-align: center;
  margin-top: -10vw;
  -webkit-font-smoothing: subpixel-antialiased;
}

/* 메인 비주얼 이미지 */
.back_shape {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  left: 0;
  top: -99vh;
  overflow: hidden;
}

.back_shape div:not(.shape_1, .shape_18) {
  position: absolute;
  width: 23.5vw;
  height: fit-content;
  /* 애니메이션 최적화 */
  will-change: transform, opacity;
}

.back_shape > div > img {
  width: 100%;
  max-width: 100%;
}

.shape_1 {
  position: absolute;
  width: 70vw;
  top: -28vh;
  left: 23vw;
  /* opacity: 0; */
  /* forwards : 애니메이션 종료 시점 모습을 유지합니다. */
  animation: rotateshape 1s ease 0s 1 forwards,
    fluffy 0.8s linear 2s infinite alternate;
}

.shape_2 {
  top: -12vh;
  right: 5vw;
  animation: moveIn1 1s ease 0.5s 1 forwards,
    fluffy 0.8s linear 1.5s infinite alternate;
  opacity: 0;
}

@keyframes moveIn1 {
  from {
    transform: translateY(-100vh);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.shape_3 {
  bottom: -3vh;
  left: 12vw;
  animation: moveIn2 1s ease 0.7s 1 forwards,
    fluffy 0.8s linear 1.7s infinite alternate;
  opacity: 0;
}

@keyframes moveIn2 {
  from {
    transform: translateY(100vh);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.shape_4 {
  bottom: 15vh;
  right: -12vw;
  animation: moveIn3 1s ease 0.9s 1 forwards,
    fluffy 0.8s linear 1.9s infinite alternate;
  opacity: 0;
}

.shape_4 > img {
  transform: rotate(-40deg);
}

@keyframes moveIn3 {
  from {
    transform: translateX(50vw) translateY(50vh);
    opacity: 0;
  }
  to {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

.shape_5 {
  top: -18vh;
  left: 14vw;
  animation: moveIn4 1s ease 1.1s 1 forwards,
    fluffy 0.8s linear 2.1s infinite alternate;
  opacity: 0;
}

.shape_6 {
  top: 0;
  left: 0;
  animation: moveIn4 1s ease 1.3s 1 forwards,
    fluffy 0.8s linear 2.3s infinite alternate;
  opacity: 0;
}

@keyframes moveIn4 {
  from {
    transform: translateY(-100vh);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.shape_7 {
  top: 28vh;
  left: 14vw;
  animation: moveIn5 1s ease 1.5s 1 forwards,
    fluffy 0.8s linear 2.5s infinite alternate;
  opacity: 0;
}

@keyframes moveIn5 {
  from {
    transform: translateX(-100vw);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.shape_8 {
  top: 11vh;
  right: -8vw;
  animation: moveIn6 1s ease 1.7s 1 forwards,
    fluffy 0.8s linear 2.7s infinite alternate;
  opacity: 0;
}

@keyframes moveIn6 {
  from {
    transform: translateX(100vw);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.shape_9 {
  bottom: -6vh;
  left: -5vw;
  animation: moveIn7 1s ease 1.9s 1 forwards,
    fluffy 0.8s linear 2.9s infinite alternate;
  opacity: 0;
}

@keyframes moveIn7 {
  from {
    transform: translateX(-50vw) translateY(100vh);
    opacity: 0;
  }
  to {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

.shape_10 {
  bottom: -8vh;
  right: -2vw;
  animation: moveIn8 1s ease 2.1s 1 forwards,
    fluffy 0.8s linear 3.1s infinite alternate;
  opacity: 0;
}

.shape_11 {
  bottom: -16vh;
  right: 20vw;
  animation: moveIn8 1s ease 2.3s 1 forwards,
    fluffy 0.8s linear 3.3s infinite alternate;
  opacity: 0;
}

.shape_11 > img {
  transform: rotate(159deg);
}

@keyframes moveIn8 {
  from {
    transform: translateY(50vh);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.shape_12 {
  top: 32vh;
  left: -6vw;
  animation: moveIn9 1s ease 2.5s 1 forwards,
    fluffy 0.8s linear 3.5s infinite alternate;
  opacity: 0;
}

.shape_12 > img {
  transform: rotate(-21deg);
}

@keyframes moveIn9 {
  from {
    transform: translateX(-50vh);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes rotateshape {
  from {
    transform: scale(0, 0) rotate(0deg);
    opacity: 0;
  }
  to {
    transform: scale(1, 1) rotate(360deg);
    opacity: 1;
  }
}

/* 위에서 아래로 둥실둥실 떠나니게 하기 */
@keyframes fluffy {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}

.back_shape > div.shape_13,
.back_shape > div.shape_14,
.back_shape > div.shape_15,
.back_shape > div.shape_16,
.back_shape > div.shape_17 {
  width: 3vw;
}

.shape_13 {
  top: 19vh;
  left: 29vw;
  opacity: 0;
  animation: twink 3s linear 0s infinite forwards;
}

.shape_14 {
  top: 5vh;
  left: 45vw;
  opacity: 0;
  animation: twink 3s linear 0.3s infinite forwards;
}

.shape_15 {
  top: 17px;
  left: 17px;
}

.shape_16 {
  bottom: 32vh;
  left: 14vw;
  opacity: 0;
  animation: twink 3s linear 0.6s infinite forwards;
}

.shape_17 {
  bottom: 13vh;
  right: 38vw;
  opacity: 0;
  animation: twink 3s linear 0.9s infinite forwards;
}

.shape_18 {
  position: absolute;
  height: fit-content;
  left: 50%;
  margin-left: -200px;
  top: 50%;
  margin-top: -30vh;
  opacity: 0;
  animation: leaf 0.5s linear 2.8s 1 forwards;
  overflow: hidden;
}

@keyframes twink {
  from {
    transform: scale(0, 0) rotate(0deg);
    opacity: 0;
  }
  5% {
    transform: scale(0, 0) rotate(0deg);
    opacity: 0;
  }
  20% {
    transform: scale(1, 1) rotate(180deg);
    opacity: 1;
  }
  50% {
    transform: scale(0, 0) rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: scale(0, 0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes leaf {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
    height: 537px;
  }
}

/* 컨텐츠 영역 */
.container {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

/* 블러 배너 섹션 */

.blur_banner {
  width: 1600px;
  height: fit-content;
  position: relative;
  margin: 0 auto;
  top: -100px;
  padding: 90px 135px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  -moz-backdrop-filter: blur(30px);
  -o-backdrop-filter: blur(30px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.5s;
}

.blur_banner h2 {
  font-size: 70px;
  font-weight: 700;
  flex: 1 1 0;
}

.blur_banner h2::before {
  content: "line";
  font-size: 0;
  display: block;
  width: 60px;
  height: 8px;
  background-color: #fff;
  margin-bottom: 50px;
}

.blur_banner p {
  font-size: 25px;
  flex: 1 1 0;
  line-height: 1.7;
  font-weight: 200;
}

.blur_banner:hover {
  transform: translateY(-10px);
}

/* 컨텐츠 섹션 공통영역 */
.con {
  width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

.floating {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.floating .floating_text {
  flex: 1 1 70%;
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 40px;
}

.floating .floating_text h2 {
  width: 325px;
  height: 50px;
  overflow: hidden;
  position: relative;
}

.floating .floating_text h2:first-child:hover span,
.floating .floating_text h2:nth-child(2):hover span,
.floating .floating_text h2:nth-child(3):hover span {
  position: absolute;
  top: 0;
  animation: textUp 0.5s ease 0s 1 alternate forwards;
}

@keyframes textUp {
  from {
    transform: translateY(50px);
  }
  to {
    transform: translateY(0);
  }
}

.floating .rotate_shape {
  flex: 1 1 0;
  animation: round 7s linear 0s infinite normal;
}

@keyframes round {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 세번째 섹션 */

.motion_con {
  margin-bottom: 200px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.motion_con .box {
  height: 857px;
  flex: 1 1 0;
  text-align: right;
  background-color: #fff;
  color: #000;
  box-sizing: border-box;
  padding: 70px 60px;
  transition: 0.5s;
  position: relative;
  cursor: pointer;
  border-radius: 20px;
}

.motion_con .box .img_box {
  width: 100%;
  height: 400px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.motion_con .box:hover {
  flex: 2 1 0;
}

/* 마우스 오버한 거 제외하고 1대 1대 1비율로 하기 */
.motion_con .box:not(:hover) {
  flex: 1 1 0;
}

.motion_con .box .img_box > img {
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
}

.motion_con .box:hover .img_box > img {
  width: 451px;
}

.motion_con .box .text_box {
  width: 100%;
  height: fit-content;
}

.motion_con .box .text_box h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 10px;
}

.motion_con .box .text_box p {
  width: 95%;
  float: right;
}

.motion_con .box .text_box a {
  color: #fff;
  position: absolute;
  right: 60px;
  bottom: 70px;
  display: block;
  background-color: #000;
  box-sizing: border-box;
  font-size: 18px;
  padding: 16px 19px;
  line-height: 1;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 800;
}

.motion_con .box:hover .text_box a {
  padding: 16px 30px;
}

.motion_con .box:hover .text_box a:hover {
  background-color: rgb(255, 216, 255);
  color: plum;
}

.motion_con .box .on {
  display: none;
}

.motion_con .box:hover .on {
  display: block;
}

.motion_con .box:hover .off {
  display: none;
}

/* 네번째 섹션*/

.sticky_sec {
  height: fit-content;
  display: flex;
  justify-content: space-between;
  margin-bottom: 200px;
}

.sticky_sec .text_box {
  height: fit-content;
  flex: 1 1 0;
  margin: 100px 0;
  /* 글자 고정 */
  position: sticky;
  top: 200px;
}

.sticky_sec .text_box h2 {
  font-size: 70px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* & 면색 없애고 라인만 남기기 */
.sticky_sec .text_box span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.8;
}

.sticky_sec .text_box p {
  font-weight: 200;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sticky_sec .videos {
  flex: 1 1 0;
}

.sticky_sec .videos > div {
  width: 850px;
  height: 350px;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 20px;
}

.sticky_sec .videos > div > video {
  max-width: 110%;
  transform: scale(1) translateY(-20%);
  transition: 0.5s;
  filter: brightness(1);
}

.sticky_sec .videos > div:hover > video {
  transform: scale(1.1) translateY(-20%);
  filter: brightness(1.1);
}

/* 다섯번째 섹션 */

.white_bg {
  background-color: #fff;
  color: #000;
  padding: 200px 0;
}

.white_bg .con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 145px;
}

.white_bg .left_img {
  flex: 1 1 0;
  width: 767px;
  height: 747px;
  background: radial-gradient(
    circle,
    rgb(255, 255, 255) 0%,
    rgb(255, 255, 255) 31%,
    rgb(221, 221, 221) 100%
  );
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.white_bg .left_img > img {
  width: 450px;
  height: 450px;
  margin: 0 auto;
  display: block;
  animation: sliding 3s linear 3s infinite;
}

@keyframes sliding {
  0% {
    transform: translateY(-100%) rotate(0deg);
  }
  100% {
    transform: translateY(0%) rotate(360deg);
  }
}

.white_bg .right_box {
  flex: 1 1 0;
}

.right_box h2 {
  font-size: 58px;
  font-weight: 600;
  margin-bottom: 30px;
}

.right_box p {
  font-size: 24px;
  line-height: 38px;
  font-weight: 200;
  padding-bottom: 50px;
  margin-bottom: 80px;
  border-bottom: 1px solid #e5e5e5;
}

.right_box .thumbs {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.thumbs h4 {
  color: #000;
  font-size: 20px;
  font-weight: 300;
  text-transform: capitalize;
  transition: 0.3s;
}

.thumbs a {
  display: block;
  flex: 1 1 0;
  text-align: center;
  align-self: flex-end;
}

.thumbs a > div > div {
  background-color: #e5e5e5;
  height: 195px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.5s;
}

.thumbs a > div > div > img {
  max-width: 100%;
}

.thumbs a > div:hover h4 {
  font-weight: 500;
}

.thumbs a > div.shape > div {
  background-color: rgb(175, 231, 253);
}
.thumbs a > div.assets > div {
  background-color: rgb(203, 255, 173);
}
.thumbs a > div.elegant > div {
  background-color: rgb(255, 194, 255);
}

.thumbs a > div.elegant img {
  transform: translateX(-10px) rotate(-10deg);
}

.thumbs a > div.shape:hover > div {
  filter: hue-rotate(35deg);
  border-radius: 5px;
}
.thumbs a > div.assets:hover > div {
  filter: hue-rotate(154deg);
  border-radius: 5px;
}
.thumbs a > div.elegant:hover > div {
  filter: hue-rotate(90deg);
  border-radius: 5px;
}

/* 6번째 섹션 */

.members {
  overflow: hidden;
  padding: 150px 0;
  border-bottom: 1px solid #333;
}

.members h2 {
  font-size: 50px;
  text-align: center;
  font-weight: 200;
  margin-bottom: 90px;
}

/* 슬라이드 전체 */
.member_silde {
  width: 100%;
  position: relative;
  height: 164px;
}

/* 슬라이드에서 썸네일 한세트 */
.member_list {
  position: absolute;
  top: 0;
  display: flex;
  animation: memberSlide1 12s linear infinite;
  /* 모든 자식 요소들이 가로로 나열되도록 설정하기 */
  width: max-content;
}

.member_silde:hover .member_list {
  /* 마우스가 올라갔을 때 애니메이션 움직임 멈추기 */
  animation-play-state: paused;
}

.member_list.list2 {
  animation: memberSlide2 12s linear infinite;
}

.member_list > .list {
  width: 500px;
  height: 164px;
  background-color: #fff;
  border-radius: 20px;
  box-sizing: border-box;
  color: #000;
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-right: 30px;
  /* 요소들이 동일한 크기를 유지하도록 설정 */
  flex-shrink: 0;
}

/* 0%에서 100% 위치로 이동하는 애니메이션 */
@keyframes memberSlide1 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* 100%에서 0% 위치로 이동하는 애니메이션 */
@keyframes memberSlide2 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}

.list > .thumbs {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  overflow: hidden;
}

.list > .member_title {
  flex: 1 1 0;
}

.list > .member_title h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.list > .member_title p {
  font-size: 18px;
  font-weight: 300;
  color: #333;
}

.more {
  display: block;
  width: 200px;
  height: 60px;
  margin: 0 auto;
  margin-top: 100px;
  font-family: "Inter", sans-serif;
  background-color: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  color: #e5e5e5;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}

.more:hover {
  background-color: thistle;
  border: 1px solid rgb(255, 216, 255);
  color: plum;
  font-weight: 800;
}

/* 풋터 */
footer {
  box-sizing: border-box;
  width: 100%;
  padding: 17px 0;
}

footer .con {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer h2 {
  font-family: "Plaster", system-ui;
  font-weight: 400;
  font-size: 25px;
}

footer h2 a {
  transition: 0.5s;
  color: #aaa;
}

footer h2:hover a {
  color: #fff;
}

footer p {
  font-weight: 500;
  font-size: 14px;
  color: #aaa;
}

footer .sns_icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sns_icons a {
  display: block;
  width: 40px;
  height: 40px;
  opacity: 0.8;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  transition: 0.5s;
}

.sns_icons a:hover {
  background-color: rgb(255, 216, 255);
  border-radius: 10px;
}
