@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.mo-only {
  display: none !important;
}
@media (max-width: 768px) {
  .mo-only {
    display: block !important;
  }
}

.header__wrap {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.3s ease;
}
.header__wrap .mobile__menu {
  position: relative;
  z-index: 10;
  display: none;
  width: 2.4rem;
  height: 2.4rem;
}
@media (max-width: 768px) {
  .header__wrap .mobile__menu {
    display: block;
  }
}
.header__wrap .mobile__menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.header__wrap .mobile__menu span:nth-of-type(1) {
  top: 0.2rem;
}
.header__wrap .mobile__menu span:nth-of-type(2) {
  top: 1.1rem;
}
.header__wrap .mobile__menu span:nth-of-type(3) {
  top: 2rem;
}
.header__wrap .mobile__menu.on span:nth-of-type(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__wrap .mobile__menu.on span:nth-of-type(2) {
  background-color: transparent;
}
.header__wrap .mobile__menu.on span:nth-of-type(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1470px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  height: 7rem;
}
.header__inner .logo {
  position: relative;
  z-index: 10;
  width: 11.1rem;
  height: 2.9rem;
  background-image: url("../images/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__inner .btn-lang {
    display: none;
  }
}

.nav__wrap {
  position: fixed;
  left: calc((100% - 1440px) / 2 + 21.4rem);
  top: 2.6rem;
  z-index: 100;
}
@media (max-width: 1200px) {
  .nav__wrap {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .nav__wrap {
    display: none;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding-top: 8.8rem;
    transform: translateX(0);
  }
}
.nav__wrap.active {
  display: block;
  z-index: 20;
}
.nav__wrap > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7.8rem;
}
@media (max-width: 768px) {
  .nav__wrap > ul {
    flex-direction: column;
    align-items: start;
    gap: 4.5rem;
  }
}
.nav__wrap > ul > li {
  position: relative;
}
.nav__wrap > ul > li:hover > a {
  color: #fff;
  text-decoration: underline;
  text-underline-position: under;
}
.nav__wrap > ul a {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.42;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .nav__wrap > ul a {
    width: 100%;
    padding-left: 4.8rem;
  }
}
.nav__wrap > ul a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-position: under;
}
.nav__wrap .depth2 {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 12.2rem;
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .nav__wrap .depth2 {
    position: relative;
    left: auto;
    top: auto;
    margin-left: 4.8rem;
    padding-top: 2rem;
    background: transparent;
  }
}
.nav__wrap .depth2 li + li {
  padding-top: 0.7rem;
}
@media (max-width: 768px) {
  .nav__wrap .depth2 li + li {
    padding-top: 1.8rem;
  }
}
@media (max-width: 768px) {
  .nav__wrap .depth2 a {
    padding: 0;
  }
}

.section__inner {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section__main {
  position: relative;
  width: 100%;
  height: 1080px;
}
.section__main .intro__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 108rem;
  object-fit: cover;
}
@media (max-width: 768px) {
  .section__main .intro__video {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .section__main {
    height: auto;
    padding-bottom: 24rem;
  }
}
.section__main .main__txt {
  padding-top: 26rem;
}
@media (max-width: 1200px) {
  .section__main .main__txt {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 768px) {
  .section__main .main__txt {
    padding-top: 13.5rem;
  }
}
.section__main .main__txt .title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 5.8rem;
}
@media (max-width: 768px) {
  .section__main .main__txt .title {
    padding-bottom: 3rem;
    font-size: 2.4rem;
  }
}
.section__main .main__txt .title-sub {
  padding-bottom: 2.2rem;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 768px) {
  .section__main .main__txt .title-sub {
    padding-bottom: 1rem;
    font-size: 1.6rem;
  }
}
.section__mainnet {
  background-image: url("../images/bg_mainnet.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}
@media (max-width: 768px) {
  .section__mainnet {
    background-image: url("../images/bg_mainnet_mo.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: left top;
  }
}
.section__mainnet .mainnet__intro {
  width: 71.3rem;
  margin-right: 13%;
  margin-left: auto;
  padding: 25.2rem 1.5rem 26rem;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__intro {
    width: 100%;
    padding: 13rem 1.5rem 6.6rem;
    text-align: center;
  }
}
.section__mainnet .mainnet__intro .title {
  padding-bottom: 2rem;
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__intro .title {
    font-size: 5rem;
  }
}
.section__mainnet .mainnet__intro .desc {
  padding-bottom: 4.4rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__intro .desc {
    width: 80%;
    padding-bottom: 3rem;
    font-size: 1.8rem;
    margin: 0 auto;
  }
}
.section__mainnet .mainnet__bigtxt {
  position: relative;
  padding: 0 1.5rem 30rem;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__bigtxt {
    padding: 0 1.5rem 13.5rem;
  }
}
.section__mainnet .mainnet__bigtxt p {
  font-size: 8rem;
  font-weight: 700;
  text-align: center;
  mix-blend-mode: overlay;
}
.section__mainnet .mainnet__bigtxt p:nth-of-type(2), .section__mainnet .mainnet__bigtxt p:nth-of-type(3) {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__bigtxt p {
    font-size: 3.3rem;
    line-height: 1.2;
  }
}
.section__mainnet .mainnet__web3 {
  background-image: url("../images/bg_web3.png");
  background-size: 71.5rem 67.4rem;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  padding: 0 1.5rem 0;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__web3 {
    background-image: url("../images/bg_web3_mo.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center 20%;
    padding: 0 1.5rem 0;
  }
}
.section__mainnet .mainnet__web3 .title {
  padding-bottom: 8rem;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__web3 .title {
    padding-bottom: 0.7rem;
    font-size: 3.3rem;
    line-height: 1.4;
  }
}
.section__mainnet .mainnet__web3 .title-sub {
  display: inline-block;
  padding-bottom: 1.3rem;
  font-size: 3rem;
  font-weight: 400;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__web3 .title-sub {
    padding-bottom: 1.6rem;
    font-size: 2.5rem;
  }
}
.section__mainnet .mainnet__web3 .desc {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  color: #D8D8D8;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__web3 .desc {
    font-size: 1.8rem;
    word-break: keep-all;
  }
}
.section__mainnet .mainnet__web3 .flex-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7rem;
  padding-top: 6rem;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__web3 .flex-box {
    padding-top: 3rem;
    flex-direction: column;
    gap: 4rem;
  }
}
.section__mainnet .mainnet__web3 .flex-box .txt {
  color: #D8D8D8;
  font-size: 2rem;
  font-weight: 400;
  text-align: right;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__web3 .flex-box .txt {
    font-size: 1.8rem;
    text-align: center;
    word-break: keep-all;
  }
}
.section__mainnet .mainnet__web3 .flex-box .img {
  width: 30rem;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__web3 .flex-box .img {
    width: 17rem;
  }
}
.section__mainnet .mainnet__packages {
  padding: 17rem 1.5rem 0;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__packages {
    padding: 10rem 1.5rem 0;
    background-image: url("../images/bg_solution_mo.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: left -20%;
  }
}
.section__mainnet .mainnet__packages .packages__txt {
  text-align: center;
}
.section__mainnet .mainnet__packages .packages__txt .title {
  padding-bottom: 3rem;
  font-size: 6.4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__packages .packages__txt .title {
    padding-bottom: 1.6rem;
    font-size: 3.3rem;
  }
}
.section__mainnet .mainnet__packages .packages__txt .desc {
  padding-bottom: 8.5rem;
  font-size: 2rem;
  font-weight: 400;
  color: #D8D8D8;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__packages .packages__txt .desc {
    padding-bottom: 3.5rem;
    font-size: 1.8rem;
  }
}
.section__mainnet .mainnet__packages .packages__slide {
  position: relative;
  max-width: 144rem;
  margin: 0 auto;
}
.section__mainnet .mainnet__packages .packages__slide .swiper {
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .section__mainnet .mainnet__packages .packages__slide .swiper {
    max-width: 100%;
  }
}
.section__mainnet .mainnet__packages .packages__slide .box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 117rem;
  height: 39.8rem;
  gap: 4.5rem;
  background-image: url("../images/bg_packages_slide.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left top;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__packages .packages__slide .box {
    background-image: url("../images/bg_packages_slide_mo.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: left top;
    flex-direction: column;
    gap: 1.6rem;
    min-height: 80rem;
    border-radius: 3rem;
    overflow: hidden;
    padding: 1rem;
  }
}
.section__mainnet .mainnet__packages .packages__slide .box .btn-primary {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__packages .packages__slide .box .btn-primary {
    position: relative;
    right: auto;
    bottom: auto;
  }
}
.section__mainnet .mainnet__packages .packages__slide .img {
  width: 28.4rem;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__packages .packages__slide .img {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__packages .packages__slide .txt {
    padding-bottom: 5rem;
  }
}
.section__mainnet .mainnet__packages .packages__slide .title-wrap {
  display: inline-flex;
  gap: 1.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__packages .packages__slide .title-wrap {
    padding-bottom: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.section__mainnet .mainnet__packages .packages__slide .title-wrap .name {
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  font-weight: 400;
}
.section__mainnet .mainnet__packages .packages__slide .title-sub {
  padding-bottom: 1rem;
  font-size: 2.7rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__packages .packages__slide .title-sub {
    padding-bottom: 1.6rem;
    line-height: 1.2;
    text-align: center;
  }
}
.section__mainnet .mainnet__packages .packages__slide .info {
  color: #757575;
  font-size: 1.5rem;
}
.section__mainnet .mainnet__packages .packages__slide .info-mo {
  display: block;
  padding-top: 1.6rem;
  font-size: 1.3rem;
  color: #757575;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__packages .packages__slide .info {
    display: none;
  }
}
.section__mainnet .mainnet__packages .packages__slide .desc-list li {
  position: relative;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  padding-left: 2rem;
}
.section__mainnet .mainnet__packages .packages__slide .desc-list li:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__packages .packages__slide .desc-list li {
    font-size: 1.8rem;
  }
}
.section__mainnet .mainnet__start {
  text-align: center;
  padding: 33.5rem 1.5rem 25rem;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__start {
    padding: 11.6rem 1.5rem 8.5rem;
  }
}
.section__mainnet .mainnet__start > .title {
  font-size: 6.4rem;
  font-weight: 700;
  padding-bottom: 3.2rem;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__start > .title {
    padding-bottom: 1.7rem;
    font-size: 3.3rem;
  }
}
.section__mainnet .mainnet__start > .title-sub {
  font-size: 2rem;
  line-height: 1.4;
  color: #D8D8D8;
  font-weight: 400;
}
@media (max-width: 768px) {
  .section__mainnet .mainnet__start > .title-sub {
    font-size: 1.8rem;
  }
}
.section__about .about__bg {
  background-image: url("../images/bg_about_01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
}
@media (max-width: 768px) {
  .section__about .about__bg {
    background-image: url("../images/bg_about_01_mo.jpg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: left top;
  }
}
.section__about .about__bg2 {
  background-image: url("../images/bg_about_02.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .section__about .about__bg2 {
    background: none;
  }
}
.section__about .about__bg3 {
  background-image: url("../images/bg_about_03.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}
.section__about .about__bg4 {
  background-image: url("../images/bg_about_04.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
}
@media (max-width: 768px) {
  .section__about .about__bg4 {
    background-image: url("../images/bg_about_04_mo.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
  }
}
.section__about .about__top {
  max-width: 1340px;
  margin: 0 auto;
  padding: 25.2rem 2rem 29rem;
}
@media (max-width: 768px) {
  .section__about .about__top {
    max-width: 100%;
    padding: 13rem 1.5rem 9.8rem;
    text-align: center;
  }
}
.section__about .about__top .title {
  padding-bottom: 2.6rem;
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__about .about__top .title {
    padding-bottom: 1.6rem;
    font-size: 5rem;
  }
}
.section__about .about__top .desc {
  padding-bottom: 6rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section__about .about__top .desc {
    padding-bottom: 3.6rem;
    font-size: 1.8rem;
  }
}
.section__about .about__top .flex-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2.6rem;
}
@media (max-width: 768px) {
  .section__about .about__top .flex-box {
    gap: 1.2rem;
  }
}
.section__about .about__top .flex-box .img {
  max-width: 20rem;
}
.section__about .about__top .flex-box .txt {
  padding-top: 2rem;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section__about .about__top .flex-box .txt {
    padding-top: 1.6rem;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.section__about .about__blockchain {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1330px;
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section__about .about__blockchain {
    flex-direction: column;
    max-width: 100%;
  }
}
.section__about .about__blockchain .img {
  width: 56rem;
}
@media (max-width: 768px) {
  .section__about .about__blockchain .img {
    width: 100%;
  }
}
.section__about .about__blockchain .txt {
  text-align: right;
}
@media (max-width: 768px) {
  .section__about .about__blockchain .txt {
    text-align: center;
  }
}
.section__about .about__blockchain .txt .title {
  font-size: 4rem;
  font-weight: 700;
  padding-bottom: 7.4rem;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .section__about .about__blockchain .txt .title {
    padding-bottom: 1.4rem;
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
.section__about .about__blockchain .txt .title-sub {
  padding-bottom: 3.5rem;
  font-size: 1.8rem;
  font-weight: 400;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__about .about__blockchain .txt .title-sub {
    padding-bottom: 1.4rem;
    font-size: 2.2rem;
    line-height: 1.2;
  }
}
.section__about .about__business {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1330px;
  padding: 35.3rem 1.5rem 30rem;
  margin: 0 auto;
  gap: 4rem;
}
@media (max-width: 768px) {
  .section__about .about__business {
    flex-direction: column-reverse;
    padding: 9.8rem 1.5rem 0;
  }
}
.section__about .about__business .txt {
  text-align: right;
}
@media (max-width: 768px) {
  .section__about .about__business .txt {
    padding-top: 2.4rem;
    text-align: center;
  }
}
.section__about .about__business .txt .title {
  padding-bottom: 5rem;
  font-size: 8rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .section__about .about__business .txt .title {
    padding-bottom: 1.6rem;
    font-size: 3.3rem;
  }
}
.section__about .about__business .txt .desc {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section__about .about__business .txt .desc {
    font-size: 1.8rem;
  }
}
.section__about .about__business .img {
  width: 47.4rem;
}
@media (max-width: 768px) {
  .section__about .about__business .img {
    width: 70%;
  }
}
.section__about .about__industry {
  padding: 20rem 2rem 36rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section__about .about__industry {
    background-image: url("../images/bg_about_02_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 16.4rem 1.5rem 16rem;
  }
}
.section__about .about__industry .title {
  padding-bottom: 4.4rem;
  font-size: 6.4rem;
  font-weight: 700;
  mix-blend-mode: overlay;
}
@media (max-width: 768px) {
  .section__about .about__industry .title {
    padding-bottom: 1.4rem;
    font-size: 4rem;
    line-height: 1.4;
  }
}
.section__about .about__industry .title:nth-of-type(2) {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.section__about .about__industry .title-wrap {
  position: relative;
}
.section__about .about__industry .desc {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section__about .about__industry .desc {
    font-size: 1.8rem;
  }
}
.section__about .about__impact {
  padding: 15rem 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section__about .about__impact {
    padding: 6rem 1.5rem 6.5rem;
  }
}
.section__about .about__directions {
  padding: 29.6rem 1.5rem 15.6rem;
}
@media (max-width: 768px) {
  .section__about .about__directions {
    padding: 9.7rem 1.5rem 7rem;
  }
}
.section__about .about__directions .txt {
  text-align: center;
}
.section__about .about__directions .txt .title {
  padding-bottom: 9.5rem;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section__about .about__directions .txt .title {
    padding-bottom: 4rem;
    font-size: 3.3rem;
  }
}
.section__about .about__directions .txt .title-sub {
  padding-bottom: 1.3rem;
  font-size: 3rem;
  font-weight: 400;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__about .about__directions .txt .title-sub {
    font-size: 2.2rem;
  }
}
.section__about .about__directions .flex-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .section__about .about__directions .flex-box {
    flex-direction: column;
  }
}
.section__about .about__directions .flex-box .direction {
  padding-top: 24.8rem;
  max-width: 35rem;
  height: 42.7rem;
  width: 100%;
}
@media (max-width: 768px) {
  .section__about .about__directions .flex-box .direction {
    max-width: 100%;
    height: 40rem;
  }
}
.section__about .about__directions .flex-box .direction.type01 {
  background-image: url("../images/bg_direction01.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
.section__about .about__directions .flex-box .direction.type02 {
  background-image: url("../images/bg_direction02.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
.section__about .about__directions .flex-box .direction.type03 {
  background-image: url("../images/bg_direction03.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
.section__about .about__directions .flex-box .direction .txt {
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section__about .about__directions .flex-box .direction .txt {
    font-size: 1.8rem;
  }
}
.section__business {
  background-image: url("../images/bg_business.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
@media (max-width: 768px) {
  .section__business {
    background-image: url("../images/bg_business_mo.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
  }
}
.section__business .business__txt {
  max-width: 1315px;
  margin: 0 auto;
  padding: 25.8rem 1.5rem 26rem;
}
@media (max-width: 768px) {
  .section__business .business__txt {
    max-width: 100%;
    padding: 13rem 1.5rem 6rem;
  }
}
.section__business .business__txt .title {
  padding-bottom: 16rem;
  font-size: 8rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__business .business__txt .title {
    padding-bottom: 6rem;
    font-size: 5rem;
  }
}
.section__business .business__txt .desc {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section__business .business__txt .desc {
    font-size: 2.5rem;
    line-height: 1.4;
    text-align: center;
  }
}
.section__business .business__box {
  max-width: 1315px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section__business .business__box + .business__box {
  padding-top: 7.8rem;
}
@media (max-width: 768px) {
  .section__business .business__box + .business__box {
    padding-top: 5rem;
  }
}
.section__business .business__box .title {
  display: inline-block;
  padding-bottom: 2.5rem;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #DA309C, #FE755B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__business .business__box .title {
    padding-bottom: 1rem;
    font-size: 2.5rem;
  }
}
.section__business .business__box .flex-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box {
    flex-direction: column;
  }
}
.section__business .business__box .flex-box > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  flex: 1;
  border-radius: 3rem;
  overflow: hidden;
}
.section__business .business__box .flex-box p {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box p {
    font-size: 1.8rem;
  }
}
.section__business .business__box .flex-box.col2 {
  gap: 3rem;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box.col2 {
    gap: 1rem;
  }
}
.section__business .business__box .flex-box.col3 {
  gap: 2.8rem;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box.col3 {
    gap: 1rem;
  }
}
.section__business .business__box .flex-box .geeblock {
  padding: 10.4rem 2rem;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box .geeblock {
    padding: 5.4rem 2rem;
  }
}
.section__business .business__box .flex-box .geeblock.type01 {
  background-image: url("../images/bg_geeblock01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box .geeblock.type01 {
    background-image: url("../images/bg_geeblock01_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.section__business .business__box .flex-box .geeblock.type02 {
  background-image: url("../images/bg_geeblock02.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box .geeblock.type02 {
    background-image: url("../images/bg_geeblock02_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.section__business .business__box .flex-box .crypto {
  padding: 8.4rem 2rem;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box .crypto {
    padding: 4rem 2rem;
  }
}
.section__business .business__box .flex-box .crypto.type01 {
  background-image: url("../images/bg_cryto01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box .crypto.type01 {
    background-image: url("../images/bg_cryto01_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.section__business .business__box .flex-box .crypto.type02 {
  background-image: url("../images/bg_cryto02.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box .crypto.type02 {
    background-image: url("../images/bg_cryto02_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.section__business .business__box .flex-box .crypto.type03 {
  background-image: url("../images/bg_cryto03.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box .crypto.type03 {
    background-image: url("../images/bg_cryto03_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.section__business .business__box .flex-box .web {
  padding: 10.4rem 2rem;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box .web {
    padding: 2.8rem 2rem;
  }
}
.section__business .business__box .flex-box .web.type01 {
  background-image: url("../images/bg_web01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box .web.type01 {
    background-image: url("../images/bg_web01_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.section__business .business__box .flex-box .web.type02 {
  background-image: url("../images/bg_web02.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box .web.type02 {
    background-image: url("../images/bg_web02_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.section__business .business__box .flex-box .web.type03 {
  background-image: url("../images/bg_web03.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .section__business .business__box .flex-box .web.type03 {
    background-image: url("../images/bg_web03_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.section__business .business__box .info-box {
  border-radius: 3rem;
  background-color: rgba(26, 37, 77, 0.5);
  padding: 4rem 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .section__business .business__box .info-box {
    border-radius: 0.8rem;
    padding: 1.2rem 2rem 1.7rem;
    margin-top: 1rem;
  }
}
.section__business .business__box .info-box p {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section__business .business__box .info-box p {
    font-size: 1.8rem;
    text-align: left;
  }
}
.section__business .business__contact {
  max-width: 1325px;
  margin: 0 auto;
  padding: 6.8rem 2rem 0;
}
@media (max-width: 768px) {
  .section__business .business__contact {
    max-width: 100%;
    padding: 4rem 2rem 0;
  }
}
.section__business .business__contact .contact__inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #DA309C, #FE755B);
  padding: 0.4rem 5.4rem;
  border-radius: 5rem;
}
@media (max-width: 768px) {
  .section__business .business__contact .contact__inner a {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 2rem;
    padding: 2.5rem 0.9rem;
  }
}
.section__business .business__contact .contact__inner .title {
  font-size: 1.8rem;
  font-weight: 400;
  padding-right: 3rem;
  margin-right: 3rem;
  border-right: 1px solid #000;
  color: #000;
}
@media (max-width: 768px) {
  .section__business .business__contact .contact__inner .title {
    padding-right: 1.2rem;
    margin-right: 1.2rem;
  }
}
.section__business .business__contact .contact__inner .title-mo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section__business .business__contact .contact__inner .desc {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  flex: 1;
}
.section__business .business__contact .contact__inner .btn-contact {
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
}
.section__business .business__contact .contact__inner .btn-contact svg {
  margin-left: 0.6rem;
}
.section__strategy {
  padding: 22rem 0 22rem;
}
@media (max-width: 768px) {
  .section__strategy {
    padding: 8.7rem 0 3rem;
  }
}
.section__strategy .strategy__txt {
  text-align: center;
}
.section__strategy .strategy__txt .title {
  display: inline-block;
  padding-bottom: 2.8rem;
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__strategy .strategy__txt .title {
    padding-bottom: 3rem;
    font-size: 5rem;
  }
}
.section__strategy .strategy__txt .desc {
  padding-bottom: 4.8rem;
  font-size: 2.8rem;
  font-weight: 400;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__strategy .strategy__txt .desc {
    font-size: 2.5rem;
  }
}
.section__strategy .strategy__slide {
  position: relative;
}
.section__strategy .strategy__slide .swiper {
  max-width: 117rem;
  margin: 0 auto;
}
.section__strategy .strategy__box {
  text-align: center;
  padding: 9.5rem 2rem;
  border-radius: 3rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section__strategy .strategy__box {
    padding: 6.5rem 0.9rem 5rem;
  }
}
.section__strategy .strategy__box.type01 {
  background-image: url("../images/bg_strategy01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .section__strategy .strategy__box.type01 {
    background-image: url("../images/bg_strategy_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.section__strategy .strategy__box.type02 {
  background-image: url("../images/bg_strategy02.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .section__strategy .strategy__box.type02 {
    background-image: url("../images/bg_strategy_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.section__strategy .strategy__box.type03 {
  background-image: url("../images/bg_strategy03.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .section__strategy .strategy__box.type03 {
    background-image: url("../images/bg_strategy_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.section__strategy .strategy__box .title {
  padding-bottom: 2.2rem;
  font-size: 3rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .section__strategy .strategy__box .title {
    padding-bottom: 1rem;
    font-size: 2.3rem;
    line-height: 1.4;
  }
}
.section__strategy .strategy__box .title-sub {
  padding-bottom: 2rem;
  font-size: 2rem;
  font-weight: 400;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__strategy .strategy__box .title-sub {
    padding-bottom: 1.3rem;
    font-size: 1.8rem;
  }
}
.section__strategy .strategy__box .desc {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section__strategy .strategy__box .desc {
    font-size: 1.8rem;
  }
}
.section__partnership {
  max-width: 1360px;
  margin: 0 auto;
  padding: 10rem 0 17rem;
}
@media (max-width: 768px) {
  .section__partnership {
    padding: 3rem 0 10rem;
    max-width: 100%;
    background-image: url("../images/bg_partnership_mo.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
  }
}
.section__partnership .partnership__txt {
  text-align: center;
}
.section__partnership .partnership__txt .title {
  padding-bottom: 13rem;
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__partnership .partnership__txt .title {
    font-size: 5rem;
    padding-top: 4.8rem;
    padding-bottom: 7.4rem;
  }
}
.section__partnership .partnership__txt .desc {
  padding-bottom: 5.6rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section__partnership .partnership__txt .desc {
    padding-bottom: 2rem;
    font-size: 2.5rem;
  }
}
.section__partnership .partnership__box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section__partnership .partnership__box {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.section__partnership .partnership__box .partnership {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  border-radius: 3rem;
  overflow: hidden;
  min-height: 56.6rem;
}
@media (max-width: 768px) {
  .section__partnership .partnership__box .partnership {
    min-height: auto;
    padding: 5.6rem 0.9rem 4.4rem;
  }
}
.section__partnership .partnership__box .partnership.type01 {
  background-image: url("../images/bg_partnership01.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
.section__partnership .partnership__box .partnership.type02 {
  background-image: url("../images/bg_partnership02.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
.section__partnership .partnership__box .title {
  padding-bottom: 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section__partnership .partnership__box .title {
    padding-bottom: 1rem;
    font-size: 2rem;
  }
}
.section__partnership .partnership__box .desc {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .section__partnership .partnership__box .desc {
    font-size: 1.6rem;
  }
}
.section__media {
  background-image: url("../images/bg_media.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
@media (max-width: 768px) {
  .section__media {
    background-image: url("../images/bg_media_mo.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
  }
}
.section__media .media__txt {
  padding: 25.8rem 1.5rem 6.6rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section__media .media__txt {
    padding: 13.5rem 1.5rem 3rem;
  }
}
.section__media .media__txt .title {
  display: inline-block;
  padding-bottom: 10rem;
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__media .media__txt .title {
    padding-bottom: 6rem;
    font-size: 5rem;
  }
}
.section__media .media__txt .desc {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section__media .media__txt .desc {
    font-size: 2.5rem;
  }
}
.section__media .media__slide {
  position: relative;
  padding-bottom: 10rem;
}
.section__media .media__slide .swiper {
  max-width: 120rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section__media .media__slide .swiper .swiper-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}
.section__media .media__box {
  position: relative;
  display: block;
  padding: 0.8rem;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 3rem;
  overflow: hidden;
}
.section__media .media__box .img {
  width: 100%;
  height: 21.4rem;
  text-align: center;
}
.section__media .media__box .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .section__media .media__box .img img {
    width: 80%;
  }
}
.section__media .media__box .txt-wrap {
  min-height: 16.5rem;
  padding: 1.6rem 1.6rem 3.6rem;
}
@media (max-width: 768px) {
  .section__media .media__box .txt-wrap {
    padding: 3rem 1rem 4.2rem;
  }
}
.section__media .media__box .txt-wrap .title {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .section__media .media__box .txt-wrap .title {
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
  }
}
.section__media .media__box .txt-wrap .desc {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .section__media .media__box .txt-wrap .desc {
    font-size: 1.8rem;
  }
}
.section__media .media__box .icon {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 3rem;
  height: 3rem;
  background-image: url("../images/ico_view.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.section__contact {
  background-image: url("../images/bg_contact.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
@media (max-width: 768px) {
  .section__contact {
    background-image: url("../images/bg_contact_mo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
  }
}
.section__contact .contact__txt {
  text-align: center;
  padding: 20rem 0 26rem;
}
@media (max-width: 768px) {
  .section__contact .contact__txt {
    padding: 10rem 0 2.5rem;
  }
}
.section__contact .contact__txt .title {
  padding-bottom: 1.3rem;
  font-size: 3rem;
  font-weight: 400;
  display: inline-block;
  background: linear-gradient(90deg, #ffe887, #f8b571);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .section__contact .contact__txt .title {
    padding-bottom: 2.5rem;
    font-size: 2.5rem;
  }
}
.section__contact .contact__txt .title-sub {
  padding-bottom: 5rem;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section__contact .contact__txt .title-sub {
    font-size: 2.5rem;
  }
}
.section__contact .contact__txt .desc {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section__contact .contact__txt .desc {
    font-size: 1.8rem;
  }
}
.section__contact .contact__box {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 16.5rem;
}
@media (max-width: 768px) {
  .section__contact .contact__box {
    max-width: 100%;
    padding-bottom: 5rem;
  }
}
.section__contact .contact__box .contact__inner {
  padding: 12.2rem 15.7rem 7.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 3rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section__contact .contact__box .contact__inner {
    padding: 4rem 1rem;
  }
}
.section__contact .contact__box .btn-wrap {
  text-align: center;
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .section__contact .contact__box .btn-wrap {
    padding-top: 4.2rem;
  }
}
.section__contact .contact__box .btn-wrap .btn-primary:after {
  display: none;
}

.swiper-btns {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1470px;
  padding: 0 1.5rem;
}
@media (max-width: 1200px) {
  .swiper-btns {
    position: relative;
    left: auto;
    top: auto;
    transform: translate(0);
    max-width: 100%;
    height: 5rem;
    margin-top: 2.8rem;
    z-index: 10;
  }
}
@media (max-width: 768px) {
  .swiper-btns {
    height: 3rem;
  }
}
.swiper-btns .swiper-button-prev,
.swiper-btns .swiper-button-next {
  width: 8rem;
  height: 8rem;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-btns .swiper-button-prev:after,
.swiper-btns .swiper-button-next:after {
  display: none;
}
@media (max-width: 1200px) {
  .swiper-btns .swiper-button-prev,
  .swiper-btns .swiper-button-next {
    width: 5rem;
    height: 5rem;
    top: auto;
    transform: translateY(0);
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .swiper-btns .swiper-button-prev,
  .swiper-btns .swiper-button-next {
    width: 3rem;
    height: 3rem;
  }
}
.swiper-btns .swiper-button-prev {
  background-image: url("../images/ico_prev.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.swiper-btns .swiper-button-next {
  background-image: url("../images/ico_next.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.swiper-pagination-bullets {
  bottom: -4rem !important;
}
@media (max-width: 1200px) {
  .swiper-pagination-bullets {
    bottom: 0.5rem !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 1.8rem;
  height: 1.8rem;
  background: linear-gradient(90deg, #DA309C, #FE755B);
  opacity: 0.3;
  margin: 0 6px !important;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary {
  background: linear-gradient(90deg, #DA309C, #FE755B);
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 700;
  color: #000;
  padding: 1.2rem 4rem;
  border-radius: 3rem;
}
@media (max-width: 768px) {
  .btn-primary {
    font-size: 1.4rem;
    padding: 1rem 3rem;
    height: 3.6rem;
  }
}
.btn-primary:after {
  content: "";
  width: 1.6rem;
  height: 1.1rem;
  background-image: url("../images/btn_arrow.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .btn-primary:after {
    content: "";
    width: 1rem;
    height: 0.7rem;
  }
}
.btn-primary__sm {
  font-size: 1.8rem;
  line-height: 4rem;
  padding: 0 2.1rem;
}
.btn-primary__sm:after {
  display: none;
}
.btn-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.6rem;
  font-size: 1.5rem;
  line-height: 1.42;
  border: 1px solid #98A0AB;
  border-radius: 5rem;
  color: #98A0AB;
}
.btn-lang img {
  width: 20px;
  height: 11px;
  margin-right: 4px;
}

.footer__wrap {
  position: relative;
  background-color: rgba(2, 7, 22, 0.9);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.footer__wrap .logo {
  width: 10.9rem;
  height: 2.9rem;
  background-image: url("../images/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .footer__wrap .logo {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .footer__wrap .logo {
    display: none;
  }
}
.footer__wrap .btn-lang {
  display: none;
  position: absolute;
  right: 1.5rem;
  bottom: 8rem;
}
@media (max-width: 1200px) {
  .footer__wrap .newsletter__wrap {
    width: 100%;
  }
}
.footer__wrap .newsletter__form {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  min-width: 22.7rem;
}
@media (max-width: 1200px) {
  .footer__wrap .newsletter__form {
    flex-direction: row;
    align-items: flex-end;
    min-width: 100%;
    margin-top: 3.4rem;
  }
}
.footer__wrap .newsletter__form label {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: underline;
  padding-bottom: 1rem;
}
.footer__wrap .newsletter__form .desc {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  padding-bottom: 1.3rem;
}
@media (max-width: 1200px) {
  .footer__wrap .newsletter__form .desc {
    padding-bottom: 0;
  }
}
.footer__wrap .newsletter__form .input {
  position: relative;
  width: 100%;
}
@media (max-width: 1200px) {
  .footer__wrap .newsletter__form .input {
    width: 50%;
  }
}
.footer__wrap .newsletter__form .input input {
  background-color: rgba(217, 217, 217, 0.2);
  line-height: 2;
  font-size: 1.2rem;
  font-weight: 100;
  padding: 0.1rem 1.4rem;
  color: #fff;
  width: 100%;
}
.footer__wrap .newsletter__form .input button {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("../images/btn_submit.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1470px;
  margin: 0 auto;
  padding: 8rem 1.5rem 7.2rem;
}
@media (max-width: 1200px) {
  .footer__inner {
    max-width: 100%;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 2.4rem 1.5rem 6rem;
  }
}
@media (max-width: 1200px) {
  .footer-list {
    flex: 0 0 45%;
  }
}
.footer-list .title {
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: underline;
  padding-bottom: 1rem;
}
.footer-list a {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 400;
}
.footer-list__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5.6rem;
  flex: 1;
  padding-left: 10rem;
}
@media (max-width: 1200px) {
  .footer-list__wrap {
    flex-direction: column;
    width: 100%;
    padding-left: 0;
    gap: 3rem;
    padding: 0 2.7rem;
  }
}
.footer__copy {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0.7rem 0 0.6rem;
}
.footer__copy p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2;
}

.input-default {
  margin-top: 2rem;
  padding-bottom: 0.3rem;
  border: 0;
  border-bottom: 1px solid #fff;
  font-size: 1.8rem;
  font-weight: 700;
  width: 100%;
  color: #fff;
}
@media (max-width: 768px) {
  .input-default {
    font-size: 1.6rem;
  }
}
.input-default::placeholder {
  color: #fff;
}

.textarea-wrap {
  margin-top: 2rem;
}
.textarea-wrap .title {
  padding-bottom: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  .textarea-wrap .title {
    padding-bottom: 1rem;
    font-size: 1.6rem;
  }
}
.textarea-wrap textarea {
  width: 100%;
  height: 44rem;
  padding: 2.4rem;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .textarea-wrap textarea {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=ui.css.map */