@charset 'utf-8';

body * {
  font-family: "Pretendard", sans-serif !important;
}

body {
  overflow: hidden;
}
body.open {
  overflow: auto;
}
.mobile {
  display: block;
}
.pc {
  display: none;
}

/* INTRO ANIMATION */
.door {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.door.closed {
  display: none;
}
.door > .left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;

  width: 50vw;
  height: 100vh;

  background: #fff;

  animation: doorLeft 2s ease-out forwards 1s;
}
.door > .right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;

  width: 50vw;
  height: 100vh;

  background: #fff;

  animation: doorRight 2s ease-out forwards 1s;
}
.door > .logo {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 180px;
  height: 102px;

  background: url(../images/intro_logo.svg) no-repeat center/contain;

  animation: logoAnimation 1s cubic-bezier(0.6, 0.07, 0.66, 0.47) forwards 2.4s;
}
@keyframes doorLeft {
  to {
    transform: translateX(-60vw);
  }
}
@keyframes doorRight {
  to {
    transform: translateX(60vw);
  }
}
@keyframes logoAnimation {
  0% {
    transform: translate(-50%, -50%);
  }
  40% {
    transform: translate(-50%, -20px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -3000px);
  }
}

.video_wrap {
  position: relative;

  width: 100%;
  height: 100vh;
}
.video_wrap .backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  -moz-backdrop-filter: blur(3px);
  -ms-backdrop-filter: blur(3px);
  filter: blur(3px);

  transform: translate3d(0, 0, 0);

  animation: fadeIn 1s ease-in-out backwards 2.7s;
}
.video_wrap video {
  width: 100%;
  height: 100vh;

  object-fit: cover;
}
.video_wrap > .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;

  width: 100%;
  max-width: 311px;
  height: auto;

  margin-top: 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.video_wrap > .content > .text {
  width: 100%;

  margin-bottom: 24px;

  will-change: transform;

  animation: mainTextTranslate 2s ease-in-out forwards 5s;
}
.video_wrap > .content > .text > h1 {
  margin-bottom: 11px;

  animation: fadeIn 0.5s ease-in-out backwards 3.5s;
}
.video_wrap > .content > .text > p {
  font-size: 14px;
  line-height: 20px;

  margin: 8px auto 23px;

  text-align: center;

  color: #fff;

  animation: fadeIn 0.5s ease-in-out backwards 3.8s;
}
.video_wrap > .content > .text > h2 {
  font-size: 18px;
  line-height: 21px;
  text-align: center;

  color: #fff;

  animation: fadeIn 0.5s ease-in-out backwards 4.2s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mainTextTranslate {
  0% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(0, -24px);
  }
  50% {
    transform: translate(0, -24px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.video_wrap > .content > .btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 0 20px;

  animation: fadeIn 0.5s ease-in backwards 6s;
}
.video_wrap > .content > .btn > a {
  width: 100%;
  min-width: 240px;
  max-width: 240px;
  height: 56px;

  padding: 12px 26px;

  background: linear-gradient(127.87deg, #fc4e17 12.71%, #c83000 107.5%);
  border-radius: 50px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 16px;

  font-size: 18px;
  line-height: 26px;

  color: #fff;

  flex-shrink: 0;
}
.video_wrap > .content > .btn > a:last-of-type {
  margin: 0;
}
.video_wrap > .scroll {
  position: absolute;
  left: 50%;
  bottom: 31px;
  transform: translateX(-50%);

  width: 20px;
  height: 9px;

  animation: fadeIn 0.5s ease-in backwards 6s;
}

section {
  position: relative;

  overflow: hidden;
}
section h2 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 900;

  color: #fc4e17;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;

  width: 100%;
  height: 49px;

  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

  padding: 0 16px;

  animation: fadeIn 0.5s ease-in backwards 6s;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 100%;
}
header .inner .logo {
  width: 51px;
  height: 33px;

  padding: 4px;
}
header .logo img {
  width: 100%;
}

nav svg {
  cursor: pointer;
}
nav svg.open_menu ~ ul {
  display: flex;
}
nav ul {
  position: fixed;
  top: 49px;
  left: 0;
  right: 0;
  z-index: -99;

  width: 100%;

  padding: 24px;

  background: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;

  display: none;
}
nav ul li {
  font-size: 18px;
  line-height: 26px;

  margin-bottom: 16px;
}

nav ul li a {
  color: #000;
}

nav ul li.lang {
  padding: 20px 0;
  margin-bottom: 0;
}
nav ul li.lang > a {
  position: relative;

  color: #b2b2b2;
}
nav ul li.lang > a.active {
  color: #000000;
}
nav ul li.lang > a:first-of-type {
  margin-right: 45px;
}
nav ul li.lang > a:first-of-type::after {
  content: "";
  position: absolute;

  right: -22px;
  top: 50%;
  transform: translateY(-50%);

  width: 1px;
  height: 20px;

  background: #6b6b6b;
}

#goal {
  padding: 56px 10px 140px;

  background: #fff;
}
#goal::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 33px;

  background: rgba(252, 78, 23, 0.4);

  transform: rotate(-1deg);
}
#goal h2 {
  text-align: center;
}

#goal .container {
}
#goal .container p {
  padding: 0 20px;
  margin: 55px 0 52px;

  font-size: 16px;
  line-height: 23px;

  white-space: pre-wrap;

  text-align: center;
}
#goal .container p span {
  display: block;

  text-align: center;
}
#goal .container p.visible {
  opacity: 1;
  transform: translateY(0px);
}
#goal .container p span:first-of-type {
  margin-bottom: 16px;
}
#goal .container img {
  width: 100%;
}
#goal .container img.visible {
  opacity: 1;
  transform: translateY(0px);
}
#goal .banner {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;

  width: 100%;
  height: 33px;

  background: #fc4e17;

  overflow: hidden;
}
#goal .banner .items {
  height: 100%;

  white-space: nowrap;

  animation: flow 7s linear infinite;

  position: relative;
}

#goal .banner .items p {
  font-size: 16px;
  line-height: 33px;
  font-weight: 700;
}
#goal .banner .items p span {
  font-size: 11px;

  margin: 0 10px;
}

#goal > .global-partners {
  margin-top: 141px;
  padding: 0 10px;
}

#goal > .global-partners > .global-partner {
  text-align: center;
}
#goal > .global-partners > .global-partner > h2 {
  margin-bottom: 55px;
}
/* #goal > .global-partners > .global-partner > span {
  font-size: 16px;
  line-height: 23px;
} */
#goal > .global-partners > .global-partner > p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 900;

  margin-bottom: 20px;
}
#goal > .global-partners > .global-partner > .image-container {
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

#goal > .global-partners > .global-partner > .image-container > .image-wrap {
  border-radius: 20px;

  margin-bottom: 10px;

  overflow: hidden;
}

#goal
  > .global-partners
  > .global-partner
  > .image-container
  > .image-wrap:last-of-type {
  margin-bottom: 0;
}

@keyframes flow {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

#business {
  padding: 97px 36px 120px;
}
#business .title {
  margin-bottom: 87px;

  background: url(../images/business_logo.svg) no-repeat center bottom/contain;
  background-size: 156px 95px;
}
#business .title h2 {
  text-align: center;

  margin-bottom: 43px;
}
#business .title > p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  text-align: center;

  color: #fff;
}
#business .title p span {
  display: block;

  white-space: pre-wrap;
}
#business .title p span:first-of-type {
  margin-bottom: 8px;
}
#business .container {
  padding-top: 50px;
}
#business .card-item {
  padding: 24px;
  margin-bottom: 70px;

  background: #fff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);

  border-radius: 30px;

  text-align: center;

  position: relative;
}
#business .card-item:last-of-type {
  margin-bottom: 0;
}

#business .card-item:before {
  content: "";
  position: absolute;
  left: 40px;
  top: -26px;

  width: 50px;
  height: 50px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#business .card-item:after {
  content: "";
  position: absolute;

  width: 60px;
  height: 60px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#business .card-item:first-of-type:before {
  background-image: url(../images/business_float_w.svg);
}
#business .card-item:first-of-type:after {
  top: 94px;
  left: -33px;

  background-image: url(../images/business_card_line_1.svg);
}

#business .card-item:nth-of-type(2):before {
  background-image: url(../images/business_float_i.svg);
}
#business .card-item:nth-of-type(2):after {
  top: 164px;
  right: -32px;

  background-image: url(../images/business_card_line_2.svg);
}

#business .card-item:nth-of-type(3):before {
  background-image: url(../images/business_float_n.svg);
}
#business .card-item:nth-of-type(3):after {
  top: 194px;
  left: -33px;

  background-image: url(../images/business_card_line_3.svg);
}

#business .card-item:nth-of-type(4):before {
  background-image: url(../images/business_float_n.svg);
}
#business .card-item:nth-of-type(4):after {
  top: 94px;
  left: -33px;

  background-image: url(../images/business_card_line_2.svg);
}

#business .card-item:nth-of-type(5):before {
  background-image: url(../images/business_float_e.svg);
}
#business .card-item:nth-of-type(5):after {
  top: 194px;
  left: -33px;

  background-image: url(../images/business_card_line_1.svg);
}

#business .card-item:nth-of-type(6):before {
  background-image: url(../images/business_float_r.svg);
}
#business .card-item:nth-of-type(6):after {
  top: 94px;
  left: -33px;

  background-image: url(../images/business_card_line_3.svg);
}

#business .card-item:nth-of-type(7):before {
  background-image: url(../images/business_float_z.svg);
}
#business .card-item:nth-of-type(7):after {
  top: 164px;
  right: -33px;

  background-image: url(../images/business_card_line_1.svg);
}

#business .card-item > .text > span {
  display: inline-block;

  width: 88px;
  height: 88px;

  background: url(../images/business_icon_gym.svg) no-repeat center/contain;
}
#business .card-item:nth-of-type(2) > .text > span {
  background-image: url(../images/business_icon_wfc.svg);
}
#business .card-item:nth-of-type(3) > .text > span {
  background-image: url(../images/business_icon_youtube.svg);
}
#business .card-item:nth-of-type(4) > .text > span {
  background-image: url(../images/business_icon_matching.svg);
}
#business .card-item:nth-of-type(5) > .text > span {
  background-image: url(../images/business_icon_membership.svg);
}
#business .card-item:nth-of-type(6) > .text > span {
  background-image: url(../images/business_icon_sponsor.svg);
}
#business .card-item:nth-of-type(7) > .text > span {
  background-image: url(../images/business_icon_vote.svg);
}
#business .card-item .text-content > h3 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 900;

  color: #fc4e17;

  margin: 20px 0 16px;

  white-space: pre-wrap;
}
#business .card-item .text-content > h3 > span {
  font-size: 26px;
  line-height: 31px;
  font-weight: 900;

  color: #fc4e17;

  margin-bottom: 16px;

  display: block;
}

#business .card-item .text-content > h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 900;

  margin-bottom: 24px;

  white-space: pre-wrap;
}

#business .card-item > .content > p {
  font-size: 16px;
  line-height: 23px;
  text-align: left;

  white-space: pre-wrap;

  margin-bottom: 24px;
}

#business .card-item > .content > .img > .img_container {
  flex: 1;

  width: 100%;
  padding-top: 58.333%;
  overflow: hidden;

  border-radius: 10px;

  position: relative;

  background: #000;
}

#business .card-item > .content > .img > .img_container > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  object-fit: cover;
  object-position: center;
}

#business .card-item:nth-child(6) > .content > .img > .img_container > img {
  object-fit: contain;
}

#business .card-item > .content > .img > .img_container:first-of-type {
  margin-bottom: 24px;
}

#business .card-item > .content > .img > .img_container:last-of-type {
  margin-bottom: 0;
}

#support {
  padding: 104px 0 41px;

  background: #fff;
}
#support:before {
  content: "";
  position: absolute;
  top: -35px;
  left: -35px;

  width: 134px;
  height: 134px;

  background: url(../images/support_dot_1.svg) no-repeat center/contain;
}
#support:after {
  content: "";
  position: absolute;
  bottom: 28px;
  right: -25px;

  width: 72px;
  height: 78px;

  background: url(../images/support_dot_2.svg) no-repeat center/contain;
}
#support .title {
  padding: 0 20px;

  margin-bottom: 53px;

  width: calc(100% - 77px);
}
#support .title h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;

  margin: 40px 0 16px;
}
#support .title p {
  font-size: 16px;
  line-height: 23px;
}
#support .container {
  padding: 0 36px;
}
#support .container img {
  width: 100%;
  max-width: 288px;

  margin: 0 auto;
}
#roadmap {
  padding: 64px 0 96px;

  background: #272727;

  color: #fff;
}
#roadmap .title {
  padding: 0 20px;
}
#roadmap .title > h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;

  padding-top: 40px;
}
#roadmap .inner {
  margin-top: 43px;
}
#roadmap .swiper_container {
  position: relative;

  height: 224px;
}
#roadmap .swiper_container:before {
  content: "";
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;

  width: 100%;
  height: 1px;

  background: #fc4e17;
}
#roadmap .inner .container {
  width: 80%;
}
#roadmap .inner .container .item_list {
  display: flex;

  text-align: center;
}
#roadmap .inner .container .item {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-right: 40px;
}
#roadmap .inner .container .item_list .year {
  display: flex;
  flex-direction: column;
  /* 아래로 정렬이면 주석 해제 */
  /* justify-content: flex-end; */
  align-items: center;
  text-align: center;

  height: 96px;

  margin-bottom: 11px;
}
#roadmap .inner .container .year strong {
  font-weight: 800;
  font-size: 24px;
  line-height: 36px;
}
#roadmap .inner .container .year > h3 {
  margin: 5px 0;

  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}
#roadmap .inner .container .check {
  margin-bottom: 14px;
}
#roadmap .inner .container .year.past {
}
#roadmap .inner .container .year.now ~ svg {
  transform: scale(1.5);
}
#roadmap .inner .container .year.future ~ svg circle {
  fill: #272727;
}
#roadmap .inner .container .year.future ~ svg path {
  display: none;
}
/* #roadmap .inner .container .year.future strong,
#roadmap .inner .container .year.future h3 {
  color: rgba(255, 255, 255, 0.6);
}
#roadmap .inner .container .year.future ~ ul li {
  color: rgba(255, 255, 255, 0.6);
} */
#roadmap .inner .container ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#roadmap .inner .container ul li {
  font-size: 16px;
  line-height: 24px;

  padding-left: 16px;

  position: relative;
}
#roadmap .inner .container ul li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;

  width: 4px;
  height: 4px;
  background: #fc4e17;

  border-radius: 50%;
}
/*
circleSize: 1,
          fillColor: "#fff",
          viewCheck: true
*/

/* #roadmap .swiper_container .swiper-slide.swiper-slide-active .year {
  color: #fff;
  text-shadow: -0px 0px #fc4e17, 0px 2px #fc4e17, 2px 0px #fc4e17,
    0px -0px #fc4e17;
}
#roadmap .swiper_container .swiper-slide.swiper-slide-active ul li {
  color: #fff;
  text-shadow: -0px 0px #fc4e17, 0px 2px #fc4e17, 2px 0px #fc4e17,
    0px -0px #fc4e17;
} */
/* #roadmap .swiper_container .swiper-slide.swiper-slide-active svg {
  transform: scale(1.5);
} */

#roadmap .swiper_container .swiper-button-prev,
#roadmap .swiper_container .swiper-button-next {
  position: absolute;
  top: 56%;
  right: 10px;

  width: 32px;
  height: 32px;

  background: linear-gradient(127.87deg, #fc4e17 12.71%, #c83000 107.5%);

  border-radius: 50%;
}
#roadmap .swiper_container .swiper-button-prev {
  left: 10px;
}
#roadmap .swiper_container .swiper-button-prev:after {
  content: url(../images/btn_prev.svg);

  margin-bottom: 26px;
}
#roadmap .swiper_container .swiper-button-next:after {
  content: url(../images/btn_next.svg);

  margin-bottom: 26px;
}

#team {
  padding: 64px 20px 160px;

  background: #fff;

  overflow: visible;
}
#team:before {
  content: "";
  position: absolute;
  top: -43px;
  left: 33px;

  width: 86px;
  height: 86px;

  background: url(../images/team_dot.svg) no-repeat center/contain;
}
#team .inner {
}
#team .inner h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;

  margin: 40px 0 56px;

  /* white-space: pre-wrap; */
}
#team .swiper_container {
  position: relative;
}
#team .swiper_container > .pagination {
  position: absolute;
  width: 100%;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
#team .swiper_container .swiper-button-prev,
#team .swiper_container .swiper-button-next {
  position: absolute;
  width: 32px;
  height: 32px;

  z-index: 100;

  background: linear-gradient(127.87deg, #fc4e17 12.71%, #c83000 107.5%);

  border-radius: 50%;
}
#team .sweiper_container .swiper-button-next {
}
#team .swiper_container .swiper-button-prev:after {
  content: url(../images/btn_prev.svg);
  margin-bottom: 26px;
}
#team .swiper_container .swiper-button-next:after {
  content: url(../images/btn_next.svg);

  margin-bottom: 26px;
}
#team .swiper_container .swiper-pagination {
  position: absolute;
  width: 100%;

  bottom: -7px;
}
#team .swiper_container .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;

  background: #d9d9d9;

  margin: 0;
}
#team .swiper_container .swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(
    127.87deg,
    #fc4e17 12.71%,
    #c83000 107.5%
  ) !important;
}
#team .team_container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;

  overflow: hidden;
}
#team .team_container .member-wrapper {
  display: flex !important;

  flex-wrap: wrap !important;
  /* column-gap: 16px;
  row-gap: 16px; */
  margin: -8px;
}
#team .member {
  width: 50%;

  padding: 8px;

  border-radius: 10px;
  overflow: hidden;
}
#team .member .member_item {
  position: relative;

  border-radius: 10px;
  overflow: hidden;

  background: #fafafa;

  cursor: pointer;
}

#team .member .member_item > .member-container {
  padding-top: 120%;
  position: relative;

  overflow: hidden;
}

#team .member .member_item > .member-container > img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
#team .member > .member_item > .member-container .member_info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  /* z-index: 0; */
  isolation: isolate;

  width: 100%;
  height: 100%;

  background: rgba(252, 78, 23, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -moz-backdrop-filter: blur(5px);
  -ms-backdrop-filter: blur(5px);

  will-change: transform;
  transform: translate3d(0, 0, 0);

  border-radius: 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* transform: ; */

  opacity: 0;

  transition: opacity 0.7s;
}
#team .member > .member_item > .member-container .member_info.active {
  opacity: 1;
}
#team .member .member_info .title {
  color: #fff;

  margin-bottom: 4px;

  text-align: center;
}
#team .member .member_info .title h4 {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-align: center;

  margin-bottom: 4px;
}
#team .member .member_info .title p {
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}
#team .member .member_info ul {
  height: 60px;
}
#team .member .member_info ul li {
  font-size: 10px;
  line-height: 1;

  color: #fff;

  padding: 0 4px;
}
#partners {
  padding: 64px 20px;

  background: #fbfbfb;
}
#partners:before {
  content: "";
  position: absolute;
  left: -44px;
  top: -36px;

  width: 160px;
  height: 151px;

  background: url(../images/partners_dot_1.svg) no-repeat center/contain;
}
#partners:after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -40px;

  width: 174px;
  height: 174px;

  background: url(../images/partners_dot_2.svg) no-repeat center/contain;
}
#partners .title {
  margin-bottom: 20px;

  position: relative;
  z-index: 1;
}
#partners .title h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;

  padding-top: 40px;
}
#partners .content_wrap {
  max-width: 800px;
  margin: 0 auto;
}
#partners .container {
  display: flex;
  flex-direction: column;
  margin: -6px;

  position: relative;

  z-index: 1;

  max-width: 800px;
}
#partners .container .row {
  padding: 6px;
  display: flex;
}
#partners .container .row .item_wrap {
  width: 33.3%;
  padding: 6px;
  margin: -6px 0;
}
#partners .container .row a {
  display: block;

  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#partners .container .row a .item {
  padding-top: 55.55%;
  position: relative;
}

#partners .container .row a .item img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.01);

  border-radius: 10px;
}

#news {
  padding: 34px 20px 82px;

  background: url(../images/businss_bg.png) no-repeat center/cover;
}
#news .inner {
}
#news .inner > .title > h2 {
  margin-bottom: 40px;
}
#news .inner > .title > h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;

  color: #fff;

  margin-bottom: 92px;
}
#news .swiper_container {
  max-width: 800px;

  margin: 0 auto;
}
#news .news_container {
  position: relative;
  margin: 0 auto;

  border-radius: 10px;
}
#news .swiper_container .swiper-button-prev,
#news .swiper_container .swiper-button-next {
  position: absolute;
  top: 50%;
  right: 5px;

  width: 26px;
  height: 26px;

  background: linear-gradient(127.87deg, #fc4e17 12.71%, #c83000 107.5%);

  border-radius: 50%;
}
#news .swiper_container .swiper-button-prev {
  left: 5px;
}

#news .swiper_container .swiper-button-prev:after {
  content: url(../images/btn_prev.svg);

  margin-bottom: 26px;
}
#news .swiper_container .swiper-button-next:after {
  content: url(../images/btn_next.svg);

  margin-bottom: 26px;
}

footer {
  background: #151518;

  padding: 24px 32px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}
footer .text svg {
  width: 160px;

  margin-bottom: 10px;
}
footer .text p {
  font-size: 10px;
  line-height: 12px;

  color: #616471;

  margin-bottom: 16px;
}
footer .info {
  display: inline-block;
  justify-content: center;
  align-items: center;
}
footer .info .sns {
  display: flex;

  margin-bottom: 10px;
}
footer .info .sns .notice {
  display: flex;
  align-items: center;
}
footer .info .sns .notice span {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;

  color: #b3b8c1;

  margin-right: 6px;

  flex-shrink: 0;
}
footer .info .sns .notice .icon {
  width: 24px;
  height: 24px;

  border-radius: 50%;

  background: #3c3c49;
  margin-right: 10px;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}
footer .info .sns .notice .icon svg {
  margin: 0;

  background: url(.../images/sns_telegram.svg) no-repeat center/contain;
}

footer .info .sns .share {
  display: flex;
  align-items: center;

  margin-right: 12px;
}
footer .info .sns .share span {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;

  color: #b3b8c1;

  margin-right: 8px;

  flex-shrink: 0;
}
footer .info .sns .share .icon_wrap {
  display: flex;
  align-items: center;
}
footer .info .sns .share .icon_wrap .icon {
  width: 24px;
  height: 24px;

  border-radius: 50%;

  background: #3c3c49;
  margin-right: 2px;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

footer .info .link {
  position: relative;

  width: 98px;

  display: flex;
  align-items: center;

  border: 1px solid #3c3c49;
  border-radius: 4px;
  padding: 10px;

  font-weight: 600;
  font-size: 10px;
  line-height: 15px;

  color: #9396a0;

  cursor: pointer;
}
footer .info .link input {
  display: none;
}
footer .info .link input:checked ~ .option {
  display: block;
}
footer .info .link span {
  margin-right: 16px;
}
footer .info .link svg {
  width: 10px;

  margin: 0;
}
footer .info .link .option {
  display: none;
  width: 100%;

  position: absolute;

  padding: 8px 10px;

  background-color: #151518;
  border: 1px solid #3c3c49;
  border-radius: 4px;

  left: 0;
  right: 0;
  bottom: 43px;
}
footer .info .link .option a {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;

  color: #9396a0;

  margin-bottom: 14px;

  display: inline-block;

  cursor: pointer;
}
footer .info .link .option a:last-of-type {
  margin-bottom: 0;
}

@media all and (min-width: 320px) {
  .video_wrap > .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;

    width: 311px;
  }

  #team .member .member_info ul {
    height: 60px;
  }
  #team .member .member_info ul li {
    color: #fff;

    padding: 0 4px;
  }
  #team .swiper_container .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;

    background: #d9d9d9;

    margin: 0 4px;
  }
}

@media all and (min-width: 375px) {
  #roadmap .container .year strong {
    white-space: nowrap;
  }
  #roadmap .container .year > h3 {
    white-space: nowrap;
  }
  #roadmap .container ul li {
    white-space: nowrap;
  }

  #team .member .member-container .member_info {
    padding: 19px;
  }

  #team .member .member_info .title h4 {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-align: center;

    margin-bottom: 4px;
  }
  #team .member .member_info .title p {
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
  }

  #team .member .member_info ul li {
    position: relative;

    padding-left: 4px;
    padding-bottom: 4px;
  }
  #team .member .member_info ul li:before {
    content: "";
    position: absolute;
    left: -4px;
    top: 6px;

    width: 4px;
    height: 4px;
    background: #fff;

    border-radius: 50%;
  }

  footer .info {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .info .sns {
    display: flex;

    margin-bottom: 0;
  }
}

@media all and (min-width: 768px) {
  #news .swiper_container .swiper-button-prev,
  #news .swiper_container .swiper-button-next {
    right: 20px;

    width: 40px;
    height: 40px;
  }
  #news .swiper_container .swiper-button-prev {
    left: 20px;
  }
}

@media all and (min-width: 1400px) {
  .mobile {
    display: none;
  }
  .pc {
    display: block;
  }
  .page_nav {
    position: absolute;
    left: 64px;
    bottom: 59px;

    width: 90px;
    height: 150px;
  }

  /* INTRO ANIMATION */
  .door > .left {
    animation: doorLeft 2s ease-out forwards 1s;
  }
  .door > .right {
    animation: doorRight 2s ease-out forwards 1s;
  }
  .door > .logo {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: 195px;
    height: 110px;
  }

  .video_wrap .page_nav {
    z-index: 100;

    animation: fadeIn 0.5s ease-in backwards 6s;
  }
  .video_wrap > .content {
    width: 952px;
    max-width: 952px;
  }
  .video_wrap > .content > .text {
    width: 952px;

    margin-bottom: 48px;
  }
  .video_wrap > .content > .text > h1 {
    margin: 0 auto 20px;

    width: 598px;
  }
  .video_wrap > .content > .text > p {
    font-size: 26px;
    line-height: 38px;

    margin: 20px auto 12px;
  }
  .video_wrap > .content > .text > h2 {
    font-size: 36px;
    line-height: 46px;

    overflow: hidden;
  }
  .video_wrap > .content > .btn {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;

    margin: auto 26px;

    padding: 0;
  }
  .video_wrap > .content > .btn > a {
    max-width: 280px;
    height: 72px;

    padding: 21px 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 10px;

    font-size: 20px;
    line-height: 30px;
  }
  .video_wrap > .content > .btn > a:last-of-type {
    margin: 10px;
  }
  .video_wrap > .scroll {
    bottom: 67px;

    width: 47px;
    height: 24px;
  }

  section h2 {
    font-size: 72px;
    line-height: 80px;
  }

  header {
    height: 104px;

    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);

    padding: 0 54px;
  }

  header .inner .logo {
    width: auto;
    height: 58px;

    display: flex;
  }
  header .logo img {
    width: 100%;
  }
  header .logo img:last-of-type {
    width: 212px;

    padding: 11px;

    margin-left: 10px;
  }

  nav ul {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    z-index: 0;

    width: 100%;

    padding: 24px 0;

    background: #fff;

    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  nav ul li {
    font-size: 18px;
    line-height: 30px;

    margin-bottom: 0;

    padding: 10px 16px;

    margin-right: 40px;
  }

  nav ul li.lang {
    padding: 0;
    margin: 0;
  }

  nav ul li.lang > a {
    position: relative;

    font-size: 12px;
  }
  nav ul li.lang > a:first-of-type {
    margin-right: 23px;
  }
  nav ul li.lang > a:first-of-type::after {
    content: "";
    position: absolute;

    right: -12px;
    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 11px;

    background: #6b6b6b;
  }

  #goal {
    padding: 110px 10px 244px;
  }
  #goal::after {
    height: 66px;
  }
  #goal .page_nav {
    bottom: 120px;
  }
  #goal h2 {
    text-align: center;
  }
  #goal .container {
    max-width: 930px;
    margin: 0 auto;
  }
  #goal .container p {
    padding: 0 20px;
    margin: 34px 0 128px;

    font-size: 18px;
    line-height: 26px;

    white-space: pre-wrap;

    text-align: center;
  }

  #goal .container p span:first-of-type {
    margin-bottom: 0;
  }
  #goal .banner {
    height: 66px;
  }
  #goal .banner .items p {
    font-size: 32px;
    line-height: 66px;
  }
  #goal .banner .items p span {
    font-size: 22px;

    margin: 0 20px;
  }

  #goal > .global-partners {
    max-width: 1290px;

    margin: 220px auto 0;
    padding: 0;
  }

  #goal > .global-partners > .global-partner > p {
    font-size: 40px;
    line-height: 48px;

    margin: 80px 0 40px;
  }

  #goal > .global-partners > .global-partner > .image-container {
    flex-direction: row;
  }

  #goal > .global-partners > .global-partner > .image-container > .image-wrap {
    margin-bottom: 0;
    margin-right: 10px;
  }

  #goal
    > .global-partners
    > .global-partner
    > .image-container
    > .image-wrap:last-of-type {
    margin-right: 0;
  }

  #business {
    padding: 150px 36px 270px;
  }

  #business .inner {
    max-width: 960px;
    margin: 0 auto;
  }
  #business .title {
    margin-bottom: 263px;

    background: url(../images/business_logo.svg) no-repeat bottom/contain;
    background-size: 400px 255px;
  }
  #business .title h2 {
    margin-bottom: 33px;
  }
  #business .title > p {
    font-size: 40px;
    line-height: 48px;
  }
  #business .title p span:first-of-type {
    margin-bottom: 14px;
  }
  #business .container {
    padding-top: 0;
  }
  #business .card-item {
    padding: 70px 80px;
    margin-bottom: 195px;

    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;

    text-align: left;

    /* display: flex;
    align-items: center; */
  }

  #business .card-item:before {
    content: "";
    position: absolute;
    left: 40px;
    top: -61px;

    width: 120px;
    height: 120px;
  }

  #business .card-item > .text {
    display: flex;
    align-items: center;

    margin-bottom: 16px;
  }

  #business .card-item > .text > span {
    display: inline-block;

    width: 128px;
    height: 128px;

    margin-right: 40px;
  }
  /* #business .content {
    flex: 1;
  } */
  #business .card-item .text-content > h3 {
    font-size: 40px;
    line-height: 48px;

    margin: 0 0 16px;
  }
  #business .card-item .text-content > h3 > span {
    font-size: 32px;

    display: inline;
  }

  #business .card-item .text-content > h4 {
    margin-bottom: 0;
  }

  #business .card-item > .content > p {
    margin-bottom: 56px;
  }
  #business .card-item > .content > .img {
    display: flex;
  }
  #business .card-item > .content > .img > .img_container {
    flex: 1;

    height: 400px;
    padding-top: 0;
  }

  #business .card-item > .content > .img > .img_container:first-of-type {
    margin-bottom: 0;
    margin-right: 20px;
  }

  #business .card-item > .content > .img > .img_container:last-of-type {
    margin-bottom: 0;
    margin-right: 0;
  }

  #support {
    padding: 178px 0 111px;
  }
  #support:before {
    top: -43px;
    left: -181px;

    width: 339px;
    height: 339px;
  }
  #support:after {
    bottom: 46px;
    right: -42px;

    width: 141px;
    height: 152px;
  }
  #support .inner {
    max-width: 1088px;
    margin: 0 auto;
  }
  #support .title {
    padding: 0;

    margin-bottom: -100px;

    width: auto;

    position: relative;
    z-index: 1;
  }
  #support .title h3 {
    font-size: 40px;
    line-height: 56px;
  }
  #support .title p {
    font-size: 18px;
    line-height: 26px;

    white-space: pre-wrap;

    width: 405px;
  }
  #support .container {
    padding: 0;
  }
  #support .container img {
    width: 100%;
    max-width: 100%;

    margin: 0 auto;
  }

  #roadmap {
    padding: 160px 0 331px;

    background: #272727;

    color: #fff;
  }
  #roadmap .inner {
    max-width: 1050px;
    margin: 0 auto;
  }
  #roadmap .title {
    padding: 0;

    margin-bottom: 195px;
  }
  #roadmap .title > h3 {
    font-size: 40px;
    line-height: 56px;
  }
  #roadmap > .inner {
    margin-top: 0;
  }
  #roadmap .swiper_container:before {
    content: "";
    position: absolute;
    top: 120px;
    left: -100vw;
    right: 0;

    width: 200vw;
    height: 1px;

    background: #fc4e17;
  }
  #roadmap .inner .container {
    width: 100%;
  }
  #roadmap .inner .container .item_list {
    display: flex;

    text-align: center;
  }
  #roadmap .inner .container .item {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-right: 40px;
  }
  #roadmap .inner .container .item_list .year {
    display: flex;
    flex-direction: column;
    /* 아래로 정렬이면 주석 해제 */
    /* justify-content: flex-end; */
    align-items: center;
    text-align: center;

    height: 96px;

    margin-bottom: 11px;
  }
  #roadmap .inner .container .year strong {
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
  }
  #roadmap .inner .container .year > h3 {
    margin: 0;

    font-weight: 500;
    font-size: 20px;
    line-height: 36px;
  }
  #roadmap .inner .container .check {
    margin-bottom: 14px;
  }
  #roadmap .inner .container ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #roadmap .inner > .container ul li {
    font-size: 16px;
    line-height: 24px;

    padding-left: 16px;

    position: relative;
  }
  #roadmap .inner > .container ul li::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;

    width: 4px;
    height: 4px;
    background: #fc4e17;

    border-radius: 50%;
  }
  #roadmap .swiper_container .swiper-button-prev,
  #roadmap .swiper_container .swiper-button-next {
    position: absolute;
    top: 56%;
    right: -40px;

    width: 32px;
    height: 32px;

    background: linear-gradient(127.87deg, #fc4e17 12.71%, #c83000 107.5%);

    border-radius: 50%;
  }
  #roadmap .swiper_container .swiper-button-prev {
    left: -40px;
  }
  #roadmap .swiper_container .swiper-button-prev:after {
    content: url(../images/btn_prev.svg);

    margin-bottom: 26px;
  }
  #roadmap .swiper_container .swiper-button-next:after {
    content: url(../images/btn_next.svg);

    margin-bottom: 26px;
  }

  #team {
    padding: 187px 0px 313px;
  }
  #team .inner {
    position: relative;
  }
  #team .inner:before {
    content: "";
    position: absolute;
    top: -259px;
    left: 33px;

    width: 153px;
    height: 153px;

    background: url(../images/team_dot.svg) no-repeat center/contain;
  }
  #team:before {
    display: none;
  }
  #team .inner {
    max-width: 1050px;
    margin: 0 auto;
  }
  #team .inner h3 {
    font-size: 40px;
    line-height: 56px;

    margin: 12px 0 72px;
  }
  #team .swiper_container_pc {
    position: relative;
  }
  #team .swiper_container_pc > .pagination {
    position: absolute;
    width: 30%;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  #team .swiper_container_pc .swiper-button-prev,
  #team .swiper_container_pc .swiper-button-next {
    position: absolute;
    width: 40px;
    height: 40px;

    z-index: 100;

    background: linear-gradient(127.87deg, #fc4e17 12.71%, #c83000 107.5%);

    border-radius: 50%;
  }
  #team .swiper_container_pc .swiper-button-prev:after {
    content: url(../images/btn_prev.svg);

    position: absolute;

    left: 30%;
    bottom: 30%;
  }
  #team .swiper_container_pc .swiper-button-next:after {
    content: url(../images/btn_next.svg);

    position: absolute;

    left: 30%;
    bottom: 30%;
  }
  #team .swiper_container_pc .swiper-pagination {
    position: absolute;
    width: 100%;

    bottom: -7px;
  }
  #team .swiper_container_pc .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;

    background: #d9d9d9;

    margin: 0 4px;
  }
  #team
    .swiper_container_pc
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background: linear-gradient(
      127.87deg,
      #fc4e17 12.71%,
      #c83000 107.5%
    ) !important;
  }
  #team .team_container_pc {
    max-width: 1008px;
    margin: 0 auto;
    padding: 0 24px;

    overflow: hidden;
  }
  #team .team_container_pc .wrap_pc {
    display: flex !important;

    flex-wrap: wrap !important;
    column-gap: 16px;
    row-gap: 16px;
  }
  #team .member {
    width: 32%;
    margin: auto;

    border-radius: 10px;
    overflow: hidden;
  }
  #team .member .member_item {
    border-radius: 10px;
  }
  #team .member .member-container {
    padding-top: 120%;

    cursor: pointer;

    background: #fafafa;
  }

  #team .member .member-container > img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  #team .member > .member_item > .member-container:hover .member_info {
    transform: translateY(0%);
  }

  #team .member > .member_item > .member-container .member_info {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;

    width: 101%;
    height: 182px;

    padding: 19px 10px 23px 20px;

    background: rgba(252, 78, 23, 0.8);
    backdrop-filter: blur(5px);

    border-radius: 0 0 10px 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transform: translateY(100%);
    opacity: 1;

    transition: 0.5s all cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  #team .member .member_info .title {
    color: #fff;

    margin-bottom: 16px;
  }
  #team .member .member_info .title h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-align: center;

    margin-bottom: 8px;
  }
  #team .member .member_info .title p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
  }
  #team .member .member_info ul {
    text-align: left;
  }
  #team .member .member_info ul li {
    font-size: 16px;
    line-height: 20px;

    color: #fff;
  }

  #partners {
    padding: 104px 0 143px;
  }
  #partners .inner {
    max-width: 1084px;
    margin: 0 auto;
  }
  #partners:before {
    left: -151px;
    top: -151px;

    width: 650px;
    height: 624px;
  }
  #partners:after {
    right: -158px;
    bottom: -229px;

    width: 627px;
    height: 627px;
  }
  #partners .title {
    margin-bottom: 40px;
  }
  #partners .title h3 {
    font-size: 40px;
    line-height: 56px;

    padding-top: 0;
  }
  #partners .content_wrap {
    max-width: 1026px;
  }
  #partners .container {
    column-gap: 32px;

    max-width: 1084px;
    margin: 0 auto;
  }
  #partners .container .column {
    width: 33.333%;
  }
  #partners .container .column a {
    margin-bottom: 19px;

    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }

  #news {
    padding: 160px 0px 360px;

    background: url(../images/news_bg.png) no-repeat center/cover;
  }
  #news .inner {
    max-width: 1026px;
    margin: 0 auto;
  }
  #news .inner > .title > h3 {
    font-size: 40px;
    line-height: 56px;

    margin-bottom: 144px;
  }
  #news .swiper_container {
    max-width: 800px;
  }
  #news .news_container {
    border-radius: 50px;
  }

  footer {
    background: #030303;

    padding: 0;

    height: 150px;

    text-align: center;
  }
  footer .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 100%;
  }
  footer .text {
    max-width: 1440px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .text > svg {
    width: 104px;

    margin: 0 16px 0 0;
  }
  footer .text p {
    font-size: 14px;
    line-height: 17px;

    margin-bottom: 0;
  }
  footer .text p > span {
    display: inline-block;

    margin: 0 10px;
  }
  footer .info {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    margin-left: 171px;
  }
  footer .info .sns {
    display: flex;

    margin-bottom: 0;
    margin-right: 20px;
  }
  footer .info .sns .notice {
    margin-right: 30px;
  }
  footer .info .sns .notice span {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;

    margin-right: 26px;
  }
  footer .info .sns .notice a {
  }
  footer .info .sns .notice .icon {
    width: 40px;
    height: 40px;

    cursor: pointer;
  }
  footer .info .sns .notice .icon svg {
    margin: 0;
    width: 40px;
    height: 40px;
  }
  footer .info .sns .share {
    margin-right: 10px;
  }
  footer .info .sns .share span {
    font-size: 14px;
    line-height: 17px;

    margin-right: 26px;
  }
  footer .info .sns .share .icon_wrap {
    display: flex;
    align-items: center;
  }
  footer .info .sns .share .icon_wrap a {
  }
  footer .info .sns .share .icon_wrap .icon {
    width: 40px;
    height: 40px;

    margin-right: 10px;
  }
  footer .info .sns .share .icon_wrap .icon svg {
    margin: 0;
    width: 40px;
    height: 40px;
  }
  footer .info .link {
    position: relative;

    width: 122px;

    display: flex;
    align-items: center;

    border: 1px solid #3c3c49;
    border-radius: 4px;
    padding: 10px;

    font-weight: 600;
    font-size: 10px;
    line-height: 15px;

    color: #9396a0;

    cursor: pointer;
  }
  footer .info .link input {
    display: none;
  }
  footer .info .link input:checked ~ .option {
    display: block;
  }
  footer .info .link span {
    margin-right: 38px;
  }
  footer .info .link svg {
    width: 10px;

    margin: 0;
  }
  footer .info .link .option {
    display: none;
    width: 100%;

    position: absolute;

    padding: 8px 10px;

    background-color: #151518;
    border: 1px solid #3c3c49;
    border-radius: 4px;

    left: 0;
    right: 0;
    bottom: 43px;
  }
  footer .info .link .option a {
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;

    color: #9396a0;

    margin-bottom: 14px;

    display: inline-block;

    cursor: pointer;
  }
  footer .info .link .option a:last-of-type {
    margin-bottom: 0;
  }
}

body * {
  font-family: "Pretendard", sans-serif !important;
}
/* 
.modal {
  position: fixed;
  position: absolute;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}

.modal > .content {
  width: 90%;
  height: 80%;
  max-width: 590px;
  max-height: 800px;
  overflow-x: hidden;
  overflow-y: auto;

  padding: 52px 30px 30px;

  background: #fff;

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}

.modal > .content > h2 {
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
  text-align: center;

  margin-bottom: 20px;
}

.modal > .content > ul > li,
.modal > .content > p {
  font-size: 14px;
  line-height: 17px;

  margin-bottom: 17px;
}

.modal > .content > p:last-of-type {
  margin-bottom: 0;
}

.modal > .content > .btn {
  width: 100%;

  position: absolute;
  right: 10px;
  top: 10px;

  text-align: right;
}

.modal > .content > .btn > svg {
  cursor: pointer;
}

.modal.close {
  display: none;
} */

body {
  overflow: hidden;
}
body.open {
  overflow: auto;
}
.mobile {
  display: block;
}
.pc {
  display: none;
}

/* INTRO ANIMATION */
.door {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.door.closed {
  display: none;
}
.door > .left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;

  width: 50vw;
  height: 100vh;

  background: #fff;

  animation: doorLeft 2s ease-out forwards 1s;
}
.door > .right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;

  width: 50vw;
  height: 100vh;

  background: #fff;

  animation: doorRight 2s ease-out forwards 1s;
}
.door > .logo {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 180px;
  height: 102px;

  background: url(../images/intro_logo.svg) no-repeat center/contain;

  animation: logoAnimation 1s cubic-bezier(0.6, 0.07, 0.66, 0.47) forwards 2.4s;
}
@keyframes doorLeft {
  to {
    transform: translateX(-60vw);
  }
}
@keyframes doorRight {
  to {
    transform: translateX(60vw);
  }
}
@keyframes logoAnimation {
  0% {
    transform: translate(-50%, -50%);
  }
  40% {
    transform: translate(-50%, -20px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -3000px);
  }
}

.video_wrap {
  position: relative;

  width: 100%;
  height: 100vh;
}
.video_wrap .backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  -moz-backdrop-filter: blur(3px);
  -ms-backdrop-filter: blur(3px);
  filter: blur(3px);

  transform: translate3d(0, 0, 0);

  animation: fadeIn 1s ease-in-out backwards 2.7s;
}
.video_wrap video {
  width: 100%;
  height: 100vh;

  object-fit: cover;
}
.video_wrap > .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;

  width: 100%;
  max-width: 311px;
  height: auto;

  margin-top: 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.video_wrap > .content > .text {
  width: 100%;

  margin-bottom: 24px;

  will-change: transform;

  animation: mainTextTranslate 2s ease-in-out forwards 5s;
}
.video_wrap > .content > .text > h1 {
  margin-bottom: 11px;

  animation: fadeIn 0.5s ease-in-out backwards 3.5s;
}
.video_wrap > .content > .text > p {
  font-size: 14px;
  line-height: 20px;

  margin: 8px auto 23px;

  text-align: center;

  color: #fff;

  animation: fadeIn 0.5s ease-in-out backwards 3.8s;
}
.video_wrap > .content > .text > h2 {
  font-size: 18px;
  line-height: 21px;
  text-align: center;

  color: #fff;

  animation: fadeIn 0.5s ease-in-out backwards 4.2s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mainTextTranslate {
  0% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(0, -24px);
  }
  50% {
    transform: translate(0, -24px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.video_wrap > .content > .btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 0 20px;

  animation: fadeIn 0.5s ease-in backwards 6s;
}
.video_wrap > .content > .btn > a {
  width: 100%;
  max-width: 240px;
  height: 56px;

  padding: 12px 26px;

  background: linear-gradient(127.87deg, #fc4e17 12.71%, #c83000 107.5%);
  border-radius: 50px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 16px;

  font-size: 18px;
  line-height: 26px;

  color: #fff;

  flex-shrink: 0;
}
.video_wrap > .content > .btn > a:last-of-type {
  margin: 0;
}
.video_wrap > .scroll {
  position: absolute;
  left: 50%;
  bottom: 31px;
  transform: translateX(-50%);

  width: 20px;
  height: 9px;

  animation: fadeIn 0.5s ease-in backwards 6s;
}

section {
  position: relative;

  overflow: hidden;
}
section h2 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 900;

  color: #fc4e17;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;

  width: 100%;
  height: 49px;

  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

  padding: 0 16px;

  animation: fadeIn 0.5s ease-in backwards 6s;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 100%;
}
header .inner .logo {
  width: 51px;
  height: 33px;

  padding: 4px;
}
header .logo img {
  width: 100%;
}

nav svg {
  cursor: pointer;
}
nav svg.open_menu ~ ul {
  display: flex;
}
nav ul {
  position: fixed;
  top: 49px;
  left: 0;
  right: 0;
  z-index: -99;

  width: 100%;

  padding: 24px;

  background: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;

  display: none;
}
nav ul li {
  font-size: 18px;
  line-height: 26px;

  margin-bottom: 16px;
}

nav ul li a {
  color: #000;
}

nav ul li.lang {
  padding: 20px 0;
  margin-bottom: 0;
}
nav ul li.lang > a {
  position: relative;

  color: #b2b2b2;
}
nav ul li.lang > a.active {
  color: #000000;
}
nav ul li.lang > a:first-of-type {
  margin-right: 45px;
}
nav ul li.lang > a:first-of-type::after {
  content: "";
  position: absolute;

  right: -22px;
  top: 50%;
  transform: translateY(-50%);

  width: 1px;
  height: 20px;

  background: #6b6b6b;
}

#goal {
  padding: 56px 10px 140px;

  background: #fff;
}
#goal::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 33px;

  background: rgba(252, 78, 23, 0.4);

  transform: rotate(-1deg);
}
#goal h2 {
  text-align: center;
}

#goal .container {
}
#goal .container p {
  padding: 0 20px;
  margin: 55px 0 52px;

  font-size: 16px;
  line-height: 23px;

  white-space: pre-wrap;

  text-align: center;
}
#goal .container p span {
  display: block;

  text-align: center;
}
#goal .container p.visible {
  opacity: 1;
  transform: translateY(0px);
}
#goal .container p span:first-of-type {
  margin-bottom: 16px;
}
#goal .container img {
  width: 100%;
}
#goal .container img.visible {
  opacity: 1;
  transform: translateY(0px);
}
#goal .banner {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;

  width: 100%;
  height: 33px;

  background: #fc4e17;

  overflow: hidden;
}
#goal .banner .items {
  height: 100%;

  white-space: nowrap;

  animation: flow 7s linear infinite;

  position: relative;
}

#goal .banner .items p {
  font-size: 16px;
  line-height: 33px;
  font-weight: 700;
}
#goal .banner .items p span {
  font-size: 11px;

  margin: 0 10px;
}

#goal > .global-partners {
  margin-top: 141px;
  padding: 0 10px;
}

#goal > .global-partners > .global-partner {
  text-align: center;
}
#goal > .global-partners > .global-partner > h2 {
  margin-bottom: 55px;
}
/* #goal > .global-partners > .global-partner > span {
  font-size: 16px;
  line-height: 23px;
} */
#goal > .global-partners > .global-partner > p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 900;

  margin-bottom: 20px;
}
#goal > .global-partners > .global-partner > .image-container {
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

#goal > .global-partners > .global-partner > .image-container > .image-wrap {
  border-radius: 20px;

  margin-bottom: 10px;

  overflow: hidden;
}

#goal
  > .global-partners
  > .global-partner
  > .image-container
  > .image-wrap:last-of-type {
  margin-bottom: 0;
}

@keyframes flow {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

#business {
  padding: 97px 36px 120px;
}
#business .title {
  margin-bottom: 87px;

  background: url(../images/business_logo.svg) no-repeat center bottom/contain;
  background-size: 156px 95px;
}
#business .title h2 {
  text-align: center;

  margin-bottom: 43px;
}
#business .title > p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  text-align: center;

  color: #fff;
}
#business .title p span {
  display: block;

  white-space: pre-wrap;
}
#business .title p span:first-of-type {
  margin-bottom: 8px;
}
#business .container {
  padding-top: 50px;
}
#business .card-item {
  padding: 24px;
  margin-bottom: 70px;

  background: #fff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);

  border-radius: 30px;

  text-align: center;

  position: relative;
}
#business .card-item:last-of-type {
  margin-bottom: 0;
}

#business .card-item:before {
  content: "";
  position: absolute;
  left: 40px;
  top: -26px;

  width: 50px;
  height: 50px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#business .card-item:after {
  content: "";
  position: absolute;

  width: 60px;
  height: 60px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#business .card-item:first-of-type:before {
  background-image: url(../images/business_float_w.svg);
}
#business .card-item:first-of-type:after {
  top: 94px;
  left: -33px;

  background-image: url(../images/business_card_line_1.svg);
}

#business .card-item:nth-of-type(2):before {
  background-image: url(../images/business_float_i.svg);
}
#business .card-item:nth-of-type(2):after {
  top: 164px;
  right: -32px;

  background-image: url(../images/business_card_line_2.svg);
}

#business .card-item:nth-of-type(3):before {
  background-image: url(../images/business_float_n.svg);
}
#business .card-item:nth-of-type(3):after {
  top: 194px;
  left: -33px;

  background-image: url(../images/business_card_line_3.svg);
}

#business .card-item:nth-of-type(4):before {
  background-image: url(../images/business_float_n.svg);
}
#business .card-item:nth-of-type(4):after {
  top: 94px;
  left: -33px;

  background-image: url(../images/business_card_line_2.svg);
}

#business .card-item:nth-of-type(5):before {
  background-image: url(../images/business_float_e.svg);
}
#business .card-item:nth-of-type(5):after {
  top: 194px;
  left: -33px;

  background-image: url(../images/business_card_line_1.svg);
}

#business .card-item:nth-of-type(6):before {
  background-image: url(../images/business_float_r.svg);
}
#business .card-item:nth-of-type(6):after {
  top: 94px;
  left: -33px;

  background-image: url(../images/business_card_line_3.svg);
}

#business .card-item:nth-of-type(7):before {
  background-image: url(../images/business_float_z.svg);
}
#business .card-item:nth-of-type(7):after {
  top: 164px;
  right: -33px;

  background-image: url(../images/business_card_line_1.svg);
}

#business .card-item > .text > span {
  display: inline-block;

  width: 88px;
  height: 88px;

  background: url(../images/business_icon_gym.svg) no-repeat center/contain;
}
#business .card-item:nth-of-type(2) > .text > span {
  background-image: url(../images/business_icon_wfc.svg);
}
#business .card-item:nth-of-type(3) > .text > span {
  background-image: url(../images/business_icon_youtube.svg);
}
#business .card-item:nth-of-type(4) > .text > span {
  background-image: url(../images/business_icon_matching.svg);
}
#business .card-item:nth-of-type(5) > .text > span {
  background-image: url(../images/business_icon_membership.svg);
}
#business .card-item:nth-of-type(6) > .text > span {
  background-image: url(../images/business_icon_sponsor.svg);
}
#business .card-item:nth-of-type(7) > .text > span {
  background-image: url(../images/business_icon_vote.svg);
}
#business .card-item .text-content > h3 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 900;

  color: #fc4e17;

  margin: 20px 0 16px;

  white-space: pre-wrap;
}
#business .card-item .text-content > h3 > span {
  font-size: 26px;
  line-height: 31px;
  font-weight: 900;

  color: #fc4e17;

  margin-bottom: 16px;

  display: block;
}

#business .card-item .text-content > h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 900;

  margin-bottom: 24px;

  white-space: pre-wrap;
}

#business .card-item > .content > p {
  font-size: 16px;
  line-height: 23px;
  text-align: left;

  white-space: pre-wrap;

  margin-bottom: 24px;
}

#business .card-item > .content > .img > .img_container {
  flex: 1;

  width: 100%;
  padding-top: 58.333%;
  overflow: hidden;

  border-radius: 10px;

  position: relative;

  background: #000;
}

#business .card-item > .content > .img > .img_container > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  object-fit: cover;
  object-position: center;
}

#business .card-item:nth-child(6) > .content > .img > .img_container > img {
  object-fit: contain;
}

#business .card-item > .content > .img > .img_container:first-of-type {
  margin-bottom: 24px;
}

#business .card-item > .content > .img > .img_container:last-of-type {
  margin-bottom: 0;
}

#support {
  padding: 104px 0 41px;

  background: #fff;
}
#support:before {
  content: "";
  position: absolute;
  top: -35px;
  left: -35px;

  width: 134px;
  height: 134px;

  background: url(../images/support_dot_1.svg) no-repeat center/contain;
}
#support:after {
  content: "";
  position: absolute;
  bottom: 28px;
  right: -25px;

  width: 72px;
  height: 78px;

  background: url(../images/support_dot_2.svg) no-repeat center/contain;
}
#support .title {
  padding: 0 20px;

  margin-bottom: 53px;

  width: calc(100% - 77px);
}
#support .title h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;

  margin: 40px 0 16px;
}
#support .title p {
  font-size: 16px;
  line-height: 23px;
}
#support .container {
  padding: 0 36px;
}
#support .container img {
  width: 100%;
  max-width: 288px;

  margin: 0 auto;
}
#roadmap {
  padding: 64px 0 96px;

  background: #272727;

  color: #fff;
}
#roadmap .title {
  padding: 0 20px;
}
#roadmap .title > h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;

  padding-top: 40px;
}
#roadmap .inner {
  margin-top: 43px;
}
#roadmap .swiper_container {
  position: relative;

  height: 224px;
}
#roadmap .swiper_container:before {
  content: "";
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;

  width: 100%;
  height: 1px;

  background: #fc4e17;
}
#roadmap .inner .container {
  width: 80%;
}
#roadmap .inner .container .item_list {
  display: flex;

  text-align: center;
}
#roadmap .inner .container .item {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-right: 40px;
}
#roadmap .inner .container .item_list .year {
  display: flex;
  flex-direction: column;
  /* 아래로 정렬이면 주석 해제 */
  /* justify-content: flex-end; */
  align-items: center;
  text-align: center;

  height: 96px;

  margin-bottom: 11px;
}
#roadmap .inner .container .year strong {
  font-weight: 800;
  font-size: 24px;
  line-height: 36px;
}
#roadmap .inner .container .year > h3 {
  margin: 5px 0;

  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}
#roadmap .inner .container .check {
  margin-bottom: 14px;
}
#roadmap .inner .container .year.past {
}
#roadmap .inner .container .year.now ~ svg {
  transform: scale(1.5);
}
#roadmap .inner .container .year.future ~ svg circle {
  fill: #272727;
}
#roadmap .inner .container .year.future ~ svg path {
  display: none;
}
/* #roadmap .inner .container .year.future strong,
#roadmap .inner .container .year.future h3 {
  color: rgba(255, 255, 255, 0.6);
}
#roadmap .inner .container .year.future ~ ul li {
  color: rgba(255, 255, 255, 0.6);
} */
#roadmap .inner .container ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#roadmap .inner .container ul li {
  font-size: 16px;
  line-height: 24px;

  padding-left: 16px;

  position: relative;
}
#roadmap .inner .container ul li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;

  width: 4px;
  height: 4px;
  background: #fc4e17;

  border-radius: 50%;
}
/*
circleSize: 1,
          fillColor: "#fff",
          viewCheck: true
*/

/* #roadmap .swiper_container .swiper-slide.swiper-slide-active .year {
  color: #fff;
  text-shadow: -0px 0px #fc4e17, 0px 2px #fc4e17, 2px 0px #fc4e17,
    0px -0px #fc4e17;
}
#roadmap .swiper_container .swiper-slide.swiper-slide-active ul li {
  color: #fff;
  text-shadow: -0px 0px #fc4e17, 0px 2px #fc4e17, 2px 0px #fc4e17,
    0px -0px #fc4e17;
} */
/* #roadmap .swiper_container .swiper-slide.swiper-slide-active svg {
  transform: scale(1.5);
} */

#roadmap .swiper_container .swiper-button-prev,
#roadmap .swiper_container .swiper-button-next {
  position: absolute;
  top: 56%;
  right: 10px;

  width: 32px;
  height: 32px;

  background: linear-gradient(127.87deg, #fc4e17 12.71%, #c83000 107.5%);

  border-radius: 50%;
}
#roadmap .swiper_container .swiper-button-prev {
  left: 10px;
}
#roadmap .swiper_container .swiper-button-prev:after {
  content: url(../images/btn_prev.svg);

  margin-bottom: 26px;
}
#roadmap .swiper_container .swiper-button-next:after {
  content: url(../images/btn_next.svg);

  margin-bottom: 26px;
}

#team {
  padding: 64px 20px 160px;

  background: #fff;

  overflow: visible;
}
#team:before {
  content: "";
  position: absolute;
  top: -43px;
  left: 33px;

  width: 86px;
  height: 86px;

  background: url(../images/team_dot.svg) no-repeat center/contain;
}
#team .inner {
}
#team .inner h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;

  margin: 40px 0 56px;

  /* white-space: pre-wrap; */
}
#team .swiper_container {
  position: relative;
}
#team .swiper_container > .pagination {
  position: absolute;
  width: 100%;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
#team .swiper_container .swiper-button-prev,
#team .swiper_container .swiper-button-next {
  position: absolute;
  width: 32px;
  height: 32px;

  z-index: 100;

  background: linear-gradient(127.87deg, #fc4e17 12.71%, #c83000 107.5%);

  border-radius: 50%;
}
#team .sweiper_container .swiper-button-next {
}
#team .swiper_container .swiper-button-prev:after {
  content: url(../images/btn_prev.svg);
  margin-bottom: 26px;
}
#team .swiper_container .swiper-button-next:after {
  content: url(../images/btn_next.svg);

  margin-bottom: 26px;
}
#team .swiper_container .swiper-pagination {
  position: absolute;
  width: 100%;

  bottom: -7px;
}
#team .swiper_container .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;

  background: #d9d9d9;

  margin: 0;
}
#team .swiper_container .swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(
    127.87deg,
    #fc4e17 12.71%,
    #c83000 107.5%
  ) !important;
}
#team .team_container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;

  overflow: hidden;
}
#team .team_container .member-wrapper {
  display: flex !important;

  flex-wrap: wrap !important;
  /* column-gap: 16px;
  row-gap: 16px; */
  margin: -8px;
}
#team .member {
  width: 50%;

  padding: 8px;

  border-radius: 10px;
  overflow: hidden;
}
#team .member .member_item {
  position: relative;

  border-radius: 10px;
  overflow: hidden;

  background: #fafafa;

  cursor: pointer;
}

#team .member .member_item > .member-container {
  padding-top: 120%;
  position: relative;

  overflow: hidden;
}

#team .member .member_item > .member-container > img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
#team .member > .member_item > .member-container .member_info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  /* z-index: 0; */
  isolation: isolate;

  width: 100%;
  height: 100%;

  background: rgba(252, 78, 23, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -moz-backdrop-filter: blur(5px);
  -ms-backdrop-filter: blur(5px);

  will-change: transform;
  transform: translate3d(0, 0, 0);

  border-radius: 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* transform: ; */

  opacity: 0;

  transition: opacity 0.7s;
}
#team .member > .member_item > .member-container .member_info.active {
  opacity: 1;
}
#team .member .member_info .title {
  color: #fff;

  margin-bottom: 4px;

  text-align: center;
}
#team .member .member_info .title h4 {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-align: center;

  margin-bottom: 4px;
}
#team .member .member_info .title p {
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}
#team .member .member_info ul {
  height: 60px;
}
#team .member .member_info ul li {
  font-size: 10px;
  line-height: 1;

  color: #fff;

  padding: 0 4px;
}
#partners {
  padding: 64px 20px;

  background: #fbfbfb;
}
#partners:before {
  content: "";
  position: absolute;
  left: -44px;
  top: -36px;

  width: 160px;
  height: 151px;

  background: url(../images/partners_dot_1.svg) no-repeat center/contain;
}
#partners:after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -40px;

  width: 174px;
  height: 174px;

  background: url(../images/partners_dot_2.svg) no-repeat center/contain;
}
#partners .title {
  margin-bottom: 20px;

  position: relative;
  z-index: 1;
}
#partners .title h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;

  padding-top: 40px;
}
#partners .content_wrap {
  max-width: 800px;
  margin: 0 auto;
}
#partners .container {
  display: flex;
  flex-direction: column;
  margin: -6px;

  position: relative;

  z-index: 1;

  max-width: 800px;
}
#partners .container .row {
  padding: 6px;
  display: flex;
}
#partners .container .row .item_wrap {
  width: 33.3%;
  padding: 6px;
  margin: -6px 0;
}
#partners .container .row a {
  display: block;

  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#partners .container .row a .item {
  padding-top: 55.55%;
  position: relative;
}

#partners .container .row a .item img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.01);

  border-radius: 10px;
}

#news {
  padding: 34px 20px 82px;

  background: url(../images/businss_bg.png) no-repeat center/cover;
}
#news .inner {
}
#news .inner > .title > h2 {
  margin-bottom: 40px;
}
#news .inner > .title > h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;

  color: #fff;

  margin-bottom: 92px;
}
#news .swiper_container {
  max-width: 800px;

  margin: 0 auto;
}
#news .news_container {
  position: relative;
  margin: 0 auto;

  border-radius: 10px;
}
#news .swiper_container .swiper-button-prev,
#news .swiper_container .swiper-button-next {
  position: absolute;
  top: 50%;
  right: 5px;

  width: 26px;
  height: 26px;

  background: linear-gradient(127.87deg, #fc4e17 12.71%, #c83000 107.5%);

  border-radius: 50%;
}
#news .swiper_container .swiper-button-prev {
  left: 5px;
}

#news .swiper_container .swiper-button-prev:after {
  content: url(../images/btn_prev.svg);

  margin-bottom: 26px;
}
#news .swiper_container .swiper-button-next:after {
  content: url(../images/btn_next.svg);

  margin-bottom: 26px;
}

footer {
  background: #151518;

  padding: 24px 32px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}
footer .text span.logo {
  display: block;

  width: 160px;

  margin: 0 auto 10px;
}
footer .text p {
  font-size: 10px;
  line-height: 12px;

  color: #616471;

  margin-bottom: 16px;
}
footer .info {
  display: inline-block;
  justify-content: center;
  align-items: center;
}
footer .info .sns {
  display: flex;

  margin-bottom: 10px;
}
footer .info .sns .notice {
  margin-right: 12px;

  display: flex;
  align-items: center;
}
footer .info .sns .notice span {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;

  color: #b3b8c1;

  margin-right: 6px;

  flex-shrink: 0;
}
footer .info .sns .notice .icon {
  width: 24px;
  height: 24px;

  border-radius: 50%;

  background: #3c3c49;
  margin-right: 10px;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}
footer .info .sns .notice .icon svg {
  margin: 0;
}
footer .info .sns .share {
  display: flex;
  align-items: center;

  margin-right: 12px;
}
footer .info .sns .share span {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;

  color: #b3b8c1;

  margin-right: 8px;

  flex-shrink: 0;
}
footer .info .sns .share .icon_wrap {
  display: flex;
  align-items: center;
}
footer .info .sns .share .icon_wrap .icon {
  width: 24px;
  height: 24px;

  border-radius: 50%;

  background: #3c3c49;
  margin-right: 2px;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}
footer .info .sns .share .icon_wrap .icon svg {
  margin: 0;
}
footer .info .link {
  position: relative;

  width: 98px;

  display: flex;
  align-items: center;

  border: 1px solid #3c3c49;
  border-radius: 4px;
  padding: 10px;

  font-weight: 600;
  font-size: 10px;
  line-height: 15px;

  color: #9396a0;

  cursor: pointer;
}
footer .info .link input {
  display: none;
}
footer .info .link input:checked ~ .option {
  display: block;
}
footer .info .link span {
  margin-right: 16px;
}
footer .info .link svg {
  width: 10px;

  margin: 0;
}
footer .info .link .option {
  display: none;
  width: 100%;

  position: absolute;

  padding: 8px 10px;

  background-color: #151518;
  border: 1px solid #3c3c49;
  border-radius: 4px;

  left: 0;
  right: 0;
  bottom: 43px;
}
footer .info .link .option a {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;

  color: #9396a0;

  margin-bottom: 14px;

  display: inline-block;

  cursor: pointer;
}
footer .info .link .option a:last-of-type {
  margin-bottom: 0;
}

@media all and (min-width: 320px) {
  .video_wrap > .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;

    width: 311px;
  }

  #team .member .member_info ul {
    height: 60px;
  }
  #team .member .member_info ul li {
    color: #fff;

    padding: 0 4px;
  }
  #team .swiper_container .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;

    background: #d9d9d9;

    margin: 0 4px;
  }
}

@media all and (min-width: 375px) {
  #roadmap .container .year strong {
    white-space: nowrap;
  }
  #roadmap .container .year > h3 {
    white-space: nowrap;
  }
  #roadmap .container ul li {
    white-space: nowrap;
  }

  #team .member .member-container .member_info {
    padding: 19px;
  }

  #team .member .member_info .title h4 {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-align: center;

    margin-bottom: 4px;
  }
  #team .member .member_info .title p {
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
  }

  #team .member .member_info ul li {
    position: relative;

    padding-left: 4px;
    padding-bottom: 4px;
  }
  #team .member .member_info ul li:before {
    content: "";
    position: absolute;
    left: -4px;
    top: 6px;

    width: 4px;
    height: 4px;
    background: #fff;

    border-radius: 50%;
  }

  footer .info {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .info .sns {
    display: flex;

    margin-bottom: 0;
  }
}

@media all and (min-width: 768px) {
  #news .swiper_container .swiper-button-prev,
  #news .swiper_container .swiper-button-next {
    right: 20px;

    width: 40px;
    height: 40px;
  }
  #news .swiper_container .swiper-button-prev {
    left: 20px;
  }
}

@media all and (min-width: 1400px) {
  .mobile {
    display: none;
  }
  .pc {
    display: block;
  }
  .page_nav {
    position: absolute;
    left: 64px;
    bottom: 59px;

    width: 90px;
    height: 150px;
  }

  /* INTRO ANIMATION */
  .door > .left {
    animation: doorLeft 2s ease-out forwards 1s;
  }
  .door > .right {
    animation: doorRight 2s ease-out forwards 1s;
  }
  .door > .logo {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: 195px;
    height: 110px;
  }

  .video_wrap .page_nav {
    z-index: 100;

    animation: fadeIn 0.5s ease-in backwards 6s;
  }
  .video_wrap > .content {
    width: 952px;
    max-width: 952px;
  }
  .video_wrap > .content > .text {
    width: 952px;

    margin-bottom: 48px;
  }
  .video_wrap > .content > .text > h1 {
    margin: 0 auto 20px;

    width: 598px;
  }
  .video_wrap > .content > .text > p {
    font-size: 26px;
    line-height: 38px;

    margin: 20px auto 12px;
  }
  .video_wrap > .content > .text > h2 {
    font-size: 36px;
    line-height: 46px;

    overflow: hidden;
  }
  .video_wrap > .content > .btn {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;

    margin: auto 26px;

    padding: 0;
  }
  .video_wrap > .content > .btn > a {
    max-width: 280px;
    height: 72px;

    padding: 21px 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 10px;

    font-size: 20px;
    line-height: 30px;
  }
  .video_wrap > .content > .btn > a:last-of-type {
    margin: 10px;
  }
  .video_wrap > .scroll {
    bottom: 67px;

    width: 47px;
    height: 24px;
  }

  section h2 {
    font-size: 72px;
    line-height: 80px;
  }

  header {
    height: 104px;

    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);

    padding: 0 54px;
  }

  header .inner .logo {
    width: auto;
    height: 58px;

    display: flex;
  }
  header .logo img {
    width: 100%;
  }
  header .logo img:last-of-type {
    width: 212px;

    padding: 11px;

    margin-left: 10px;
  }

  nav ul {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    z-index: 0;

    width: 100%;

    padding: 24px 0;

    background: #fff;

    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  nav ul li {
    font-size: 18px;
    line-height: 30px;

    margin-bottom: 0;

    padding: 10px 16px;

    margin-right: 40px;
  }

  nav ul li.lang {
    padding: 0;
    margin: 0;
  }

  nav ul li.lang > a {
    position: relative;

    font-size: 12px;
  }
  nav ul li.lang > a:first-of-type {
    margin-right: 23px;
  }
  nav ul li.lang > a:first-of-type::after {
    content: "";
    position: absolute;

    right: -12px;
    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 11px;

    background: #6b6b6b;
  }

  #goal {
    padding: 110px 10px 244px;
  }
  #goal::after {
    height: 66px;
  }
  #goal .page_nav {
    bottom: 120px;
  }
  #goal h2 {
    text-align: center;
  }
  #goal .container {
    max-width: 930px;
    margin: 0 auto;
  }
  #goal .container p {
    padding: 0 20px;
    margin: 34px 0 128px;

    font-size: 18px;
    line-height: 26px;

    white-space: pre-wrap;

    #text-align: center;
  }

  #goal .container p span:first-of-type {
    margin-bottom: 0;
  }
  #goal .banner {
    height: 66px;
  }
  #goal .banner .items p {
    font-size: 32px;
    line-height: 66px;
  }
  #goal .banner .items p span {
    font-size: 22px;

    margin: 0 20px;
  }

  #goal > .global-partners {
    max-width: 1290px;

    margin: 220px auto 0;
    padding: 0;
  }

  #goal > .global-partners > .global-partner > p {
    font-size: 40px;
    line-height: 48px;

    margin: 80px 0 40px;
  }

  #goal > .global-partners > .global-partner > .image-container {
    flex-direction: row;
  }

  #goal > .global-partners > .global-partner > .image-container > .image-wrap {
    margin-bottom: 0;
    margin-right: 10px;
  }

  #goal
    > .global-partners
    > .global-partner
    > .image-container
    > .image-wrap:last-of-type {
    margin-right: 0;
  }

  #business {
    padding: 150px 36px 270px;
  }

  #business .inner {
    max-width: 960px;
    margin: 0 auto;
  }
  #business .title {
    margin-bottom: 263px;

    background: url(../images/business_logo.svg) no-repeat bottom/contain;
    background-size: 400px 255px;
  }
  #business .title h2 {
    margin-bottom: 33px;
  }
  #business .title > p {
    font-size: 40px;
    line-height: 48px;
  }
  #business .title p span:first-of-type {
    margin-bottom: 14px;
  }
  #business .container {
    padding-top: 0;
  }
  #business .card-item {
    padding: 70px 80px;
    margin-bottom: 195px;

    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;

    text-align: left;

    /* display: flex;
    align-items: center; */
  }

  #business .card-item:before {
    content: "";
    position: absolute;
    left: 40px;
    top: -61px;

    width: 120px;
    height: 120px;
  }

  #business .card-item > .text {
    display: flex;
    align-items: center;

    margin-bottom: 16px;
  }

  #business .card-item > .text > span {
    display: inline-block;

    width: 128px;
    height: 128px;

    margin-right: 40px;
  }
  /* #business .content {
    flex: 1;
  } */
  #business .card-item .text-content > h3 {
    font-size: 40px;
    line-height: 48px;

    margin: 0 0 16px;
  }
  #business .card-item .text-content > h3 > span {
    font-size: 32px;

    display: inline;
  }

  #business .card-item .text-content > h4 {
    margin-bottom: 0;
  }

  #business .card-item > .content > p {
    margin-bottom: 56px;
  }
  #business .card-item > .content > .img {
    display: flex;
  }
  #business .card-item > .content > .img > .img_container {
    flex: 1;

    height: 400px;
    padding-top: 0;
  }

  #business .card-item > .content > .img > .img_container:first-of-type {
    margin-bottom: 0;
    margin-right: 20px;
  }

  #business .card-item > .content > .img > .img_container:last-of-type {
    margin-bottom: 0;
    margin-right: 0;
  }

  #support {
    padding: 178px 0 111px;
  }
  #support:before {
    top: -43px;
    left: -181px;

    width: 339px;
    height: 339px;
  }
  #support:after {
    bottom: 46px;
    right: -42px;

    width: 141px;
    height: 152px;
  }
  #support .inner {
    max-width: 1088px;
    margin: 0 auto;
  }
  #support .title {
    padding: 0;

    margin-bottom: -100px;

    width: auto;

    position: relative;
    z-index: 1;
  }
  #support .title h3 {
    font-size: 40px;
    line-height: 56px;
  }
  #support .title p {
    font-size: 18px;
    line-height: 26px;

    white-space: pre-wrap;

    width: 405px;
  }
  #support .container {
    padding: 0;
  }
  #support .container img {
    width: 100%;
    max-width: 100%;

    margin: 0 auto;
  }

  #roadmap {
    padding: 160px 0 331px;

    background: #272727;

    color: #fff;
  }
  #roadmap .inner {
    max-width: 1050px;
    margin: 0 auto;
  }
  #roadmap .title {
    padding: 0;

    margin-bottom: 195px;
  }
  #roadmap .title > h3 {
    font-size: 40px;
    line-height: 56px;
  }
  #roadmap > .inner {
    margin-top: 0;
  }
  #roadmap .swiper_container:before {
    content: "";
    position: absolute;
    top: 120px;
    left: -100vw;
    right: 0;

    width: 200vw;
    height: 1px;

    background: #fc4e17;
  }
  #roadmap .inner .container {
    width: 100%;
  }
  #roadmap .inner .container .item_list {
    display: flex;

    text-align: center;
  }
  #roadmap .inner .container .item {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-right: 40px;
  }
  #roadmap .inner .container .item_list .year {
    display: flex;
    flex-direction: column;
    /* 아래로 정렬이면 주석 해제 */
    /* justify-content: flex-end; */
    align-items: center;
    text-align: center;

    height: 96px;

    margin-bottom: 11px;
  }
  #roadmap .inner .container .year strong {
    font-weight: 800;
    font-size: 24px;
    line-height: 36px;
  }
  #roadmap .inner .container .year > h3 {
    margin: 0;

    font-weight: 500;
    font-size: 20px;
    line-height: 36px;
  }
  #roadmap .inner .container .check {
    margin-bottom: 14px;
  }
  #roadmap .inner .container ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #roadmap .inner > .container ul li {
    font-size: 16px;
    line-height: 24px;

    padding-left: 16px;

    position: relative;
  }
  #roadmap .inner > .container ul li::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;

    width: 4px;
    height: 4px;
    background: #fc4e17;

    border-radius: 50%;
  }
  #roadmap .swiper_container .swiper-button-prev,
  #roadmap .swiper_container .swiper-button-next {
    position: absolute;
    top: 56%;
    right: -40px;

    width: 32px;
    height: 32px;

    background: linear-gradient(127.87deg, #fc4e17 12.71%, #c83000 107.5%);

    border-radius: 50%;
  }
  #roadmap .swiper_container .swiper-button-prev {
    left: -40px;
  }
  #roadmap .swiper_container .swiper-button-prev:after {
    content: url(../images/btn_prev.svg);

    margin-bottom: 26px;
  }
  #roadmap .swiper_container .swiper-button-next:after {
    content: url(../images/btn_next.svg);

    margin-bottom: 26px;
  }

  #team {
    padding: 187px 0px 313px;
  }
  #team .inner {
    position: relative;
  }
  #team .inner:before {
    content: "";
    position: absolute;
    top: -259px;
    left: 33px;

    width: 153px;
    height: 153px;

    background: url(../images/team_dot.svg) no-repeat center/contain;
  }
  #team:before {
    display: none;
  }
  #team .inner {
    max-width: 1050px;
    margin: 0 auto;
  }
  #team .inner h3 {
    font-size: 40px;
    line-height: 56px;

    margin: 12px 0 72px;
  }
  #team .swiper_container_pc {
    position: relative;
  }
  #team .swiper_container_pc > .pagination {
    position: absolute;
    width: 30%;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  #team .swiper_container_pc .swiper-button-prev,
  #team .swiper_container_pc .swiper-button-next {
    position: absolute;
    width: 40px;
    height: 40px;

    z-index: 100;

    background: linear-gradient(127.87deg, #fc4e17 12.71%, #c83000 107.5%);

    border-radius: 50%;
  }
  #team .swiper_container_pc .swiper-button-prev:after {
    content: url(../images/btn_prev.svg);

    position: absolute;

    left: 30%;
    bottom: 30%;
  }
  #team .swiper_container_pc .swiper-button-next:after {
    content: url(../images/btn_next.svg);

    position: absolute;

    left: 30%;
    bottom: 30%;
  }
  #team .swiper_container_pc .swiper-pagination {
    position: absolute;
    width: 100%;

    bottom: -7px;
  }
  #team .swiper_container_pc .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;

    background: #d9d9d9;

    margin: 0 4px;
  }
  #team
    .swiper_container_pc
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background: linear-gradient(
      127.87deg,
      #fc4e17 12.71%,
      #c83000 107.5%
    ) !important;
  }
  #team .team_container_pc {
    max-width: 1008px;
    margin: 0 auto;
    padding: 0 24px;

    overflow: hidden;
  }
  #team .team_container_pc .wrap_pc {
    display: flex !important;

    flex-wrap: wrap !important;
    column-gap: 16px;
    row-gap: 16px;
  }
  #team .member {
    width: 32%;
    margin: auto;

    border-radius: 10px;
    overflow: hidden;
  }
  #team .member .member_item {
    border-radius: 10px;
  }
  #team .member .member-container {
    padding-top: 120%;

    cursor: pointer;

    background: #fafafa;
  }

  #team .member .member-container > img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  #team .member > .member_item > .member-container:hover .member_info {
    transform: translateY(0%);
  }

  #team .member > .member_item > .member-container .member_info {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;

    width: 101%;
    height: 182px;

    padding: 19px 10px 23px 20px;

    background: rgba(252, 78, 23, 0.8);
    backdrop-filter: blur(5px);

    border-radius: 0 0 10px 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transform: translateY(100%);
    opacity: 1;

    transition: 0.5s all cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  #team .member .member_info .title {
    color: #fff;

    margin-bottom: 16px;
  }
  #team .member .member_info .title h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-align: center;

    margin-bottom: 8px;
  }
  #team .member .member_info .title p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
  }
  #team .member .member_info ul {
    text-align: left;
  }
  #team .member .member_info ul li {
    font-size: 16px;
    line-height: 20px;

    color: #fff;
  }

  #partners {
    padding: 104px 0 143px;
  }
  #partners .inner {
    max-width: 1084px;
    margin: 0 auto;
  }
  #partners:before {
    left: -151px;
    top: -151px;

    width: 650px;
    height: 624px;
  }
  #partners:after {
    right: -158px;
    bottom: -229px;

    width: 627px;
    height: 627px;
  }
  #partners .title {
    margin-bottom: 40px;
  }
  #partners .title h3 {
    font-size: 40px;
    line-height: 56px;

    padding-top: 0;
  }
  #partners .content_wrap {
    max-width: 1026px;
  }
  #partners .container {
    column-gap: 32px;

    max-width: 1084px;
    margin: 0 auto;
  }
  #partners .container .column {
    width: 33.333%;
  }
  #partners .container .column a {
    margin-bottom: 19px;

    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }

  #news {
    padding: 160px 0px 360px;

    background: url(../images/news_bg.png) no-repeat center/cover;
  }
  #news .inner {
    max-width: 1026px;
    margin: 0 auto;
  }
  #news .inner > .title > h3 {
    font-size: 40px;
    line-height: 56px;

    margin-bottom: 144px;
  }
  #news .swiper_container {
    max-width: 800px;
  }
  #news .news_container {
    border-radius: 50px;
  }

  footer {
    background: #030303;

    padding: 0;

    text-align: center;
  }
  footer .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 41px 20px;

    max-width: 1440px;
  }
  footer .text {
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .address {
    display: flex;
    align-items: center;
  }
  footer .address > span.logo {
    width: 104px;

    margin: 0 16px 0 0;
  }
  footer .address > p {
    font-size: 14px;
    line-height: 17px;
    text-align: left;

    margin-bottom: 0;
  }
  footer .address > p > span {
    display: inline-block;

    margin: 0 10px;
  }
  footer .info {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;

    margin-left: 50px;
  }
  footer .info .sns {
    display: flex;

    margin-bottom: 0;
    margin-right: 20px;
  }
  footer .info .sns .notice {
    margin-right: 30px;
  }
  footer .info .sns .notice span {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;

    margin-right: 26px;
  }
  footer .info .sns .notice a {
  }
  footer .info .sns .notice .icon {
    width: 40px;
    height: 40px;

    cursor: pointer;

    margin-right: 0;
  }
  footer .info .sns .notice .icon svg {
    margin: 0;
    width: 40px;
    height: 40px;
  }
  footer .info .sns .share {
    margin-right: 30px;
  }
  footer .info .sns .share span {
    font-size: 14px;
    line-height: 17px;

    margin-right: 26px;
  }
  footer .info .sns .share .icon_wrap {
    display: flex;
    align-items: center;
  }
  footer .info .sns .share .icon_wrap a {
  }
  footer .info .sns .share .icon_wrap .icon {
    width: 40px;
    height: 40px;

    margin-right: 10px;
  }
  footer .info .sns .share .icon_wrap .icon svg {
    margin: 0;
    width: 40px;
    height: 40px;
  }
  footer .info .link {
    position: relative;

    width: 122px;

    display: flex;
    align-items: center;

    border: 1px solid #3c3c49;
    border-radius: 4px;
    padding: 10px;

    font-weight: 600;
    font-size: 10px;
    line-height: 15px;

    color: #9396a0;

    cursor: pointer;
  }
  footer .info .link input {
    display: none;
  }
  footer .info .link input:checked ~ .option {
    display: block;
  }
  footer .info .link span {
    margin-right: 38px;
  }
  footer .info .link svg {
    width: 10px;

    margin: 0;
  }
  footer .info .link .option {
    display: none;
    width: 100%;

    position: absolute;

    padding: 8px 10px;

    background-color: #151518;
    border: 1px solid #3c3c49;
    border-radius: 4px;

    left: 0;
    right: 0;
    bottom: 43px;
  }
  footer .info .link .option a {
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;

    color: #9396a0;

    margin-bottom: 14px;

    display: inline-block;

    cursor: pointer;
  }
  footer .info .link .option a:last-of-type {
    margin-bottom: 0;
  }
}
