@font-face {
  font-family: Gilroy;
  src: url(font/Gilroy-Bold.ttf) format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: Gilroy;
  src: url(font/Gilroy-SemiBold.ttf) format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: Gilroy;
  src: url(font/Gilroy-Medium.ttf) format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: Gilroy;
  src: url(font/Gilroy-Regular.ttf) format("truetype");
  /*  font-weight: 400; */
}

html {
  font-size: 100px;
}

:root {
  --purple: #635af0;
  --black: #13121b;
  --blue: #045de9;
  --lightgrey: #e6e6ef;
  --gray: #969696;
  --hovercolor: #cc3c44;
  --animate-delay: 0.25s;
  --bluehover: #3ad1fa;
}

.text-purple {
  color: var(--purple);
}

/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Gilroy", Arial, san-serif;
  background: #fff;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
a {
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  text-decoration: none;
  display: block;
}
img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  padding: 0;
}
input,
button,
select {
  font-family: "Gilroy", Arial, san-serif;
}
p,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
pre,
input,
table,
tr,
td,
form {
  margin: 0;
  padding: 0;
}
ol,
ul,
li {
  list-style: none;
}
input {
  border: 0 none;
}
img {
  border: 0 none;
}

.float_clear {
  float: none;
  clear: both;
  display: block;
  width: 100%;
}

.main_content {
  display: block;
  margin: auto;
  padding: 0;
  overflow: hidden;
  font-size: 18px;
  min-height: 70vh;
  font-weight: 500;
}

footer {
  background-color: #161717;
  color: #acafaf;
  padding-top: 30px;
  padding-bottom: 90px;
  border-radius: 24px 24px 0px 0px;
  margin-top: -25px;
  font-size: 16px;
}

footer .container {
  font-size: 0.75em;
  width: 90%;
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px 0;
}
footer a {
  color: #09c6f9;
}
footer p {
  margin-bottom: 20px;
}
.footer-links a {
  display: inline-block;
  margin-right: 20px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.awards {
  padding-bottom: 20px;
}
.awards img {
  display: inline-block;
  margin: 15px 10px;
  vertical-align: middle;
}
.awards img.logo-footer {
  margin-right: 14px;
  margin-left: 0;
}
[dir="rtl"] .awards img.logo-footer {
  margin-right: 0;
  margin-left: 14px;
}

.disclaimer .title {
  text-transform: uppercase;
}

.disclaimer strong {
  color: #fff;
  font-family: "Gilroy", Arial, san-serif !important;
  font-weight: 700;
}

.rw-fixed {
  position: fixed;
  width: 100%;
  margin: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #e4e4e4;
  color: #3a424c;
  box-sizing: border-box;
  padding: 10px 0 8px;
  font-size: 14px;
  text-align: center;
  z-index: 1000;
}

.rw-fixed .container {
  padding: 0;
}
div.rw-fixed.markets-theme {
  padding: 13px 0 14px;
  box-sizing: border-box;
  line-height: 1.25;
  text-align: center;

  border: 1px solid #fff;
  background-color: #000;
  color: #fff !important;
  font-size: 12px !important;
}
.notice-close {
  font-family: "sofia-pro", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  display: none;
  text-align: center;
  line-height: 20px;
  transition: 0.3s;
  transform: rotate(45deg);
  transition-duration: 0.4s;
}
.style2 .notice-close {
  transform: rotate(0deg);
}
.container {
  width: 90%;
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px 0;
}
.container.narrow {
  width: 100%;
  max-width: 1150px;
}

.container > div {
  box-sizing: border-box;
  width: 100%;
}

@keyframes banner_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn_down {
  0% {
    transform: translate(0, -1.5rem);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translate(0, 3rem);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  0% {
    transform: translate(-1.5rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translate(1.5rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 12.9rem;
  padding: 0.25rem 0.1rem;
  margin: 0 auto;
}
.cta-button {
  padding: 0.16rem 0.34rem;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 0.18rem;
  font-weight: 600;
  border-radius: 0.08rem;
  background: #635af0;
  color: white;
  border: none;
}

.banner {
  background: url(../images/banner_bg.jpg) no-repeat center;
  background-size: cover;
  height: 9.6rem;
}

.bg1 {
  background: url(../images/main_bg1.jpg) no-repeat center;
  background-size: cover;
}

header {
  height: 100px;
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.banner-container {
  display: flex;
  max-width: 1350px;
  margin: 0 auto;
  justify-content: space-between;
  margin-top: 170px;
}
.banner-left {
  color: white;
  padding-left: 0.35rem;
  padding-top: 0.35rem;
}
.banner-left h1 {
  max-width: 582px;
  font-size: 60px;
  font-weight: 600;
}

.banner-left h2 {
  margin-top: 32px;
  font-size: 22px;
  font-weight: 600;
}

.banner-left-button-container {
  margin-top: 68px;
  margin-bottom: 28px;
}

.btn {
  background: var(--Purple, #635af0);
  border-radius: 8px;
  padding: 21px 99px;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 22px;
  width: fit-content;
}

.banner-img-mobile {
  display: none;
}

.btn:hover {
  filter: brightness(1.15);
}

.risk-warning {
  font-size: 14px;
  font-weight: 400;
  color: white;
}

.part-one-container {
  border-radius: 16px;
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  position: relative;
  height: 560px;
  background: rgba(19, 18, 27, 0.48);
  backdrop-filter: blur(8px);
  position: relative;
  top: -42px;
}

.part-one-right h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 48px;
}

.part-one-right h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 48px;
}

.part-one-right p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.part-one-logos {
  position: absolute;
  left: 42%;
  top: -40px;
}

.part-one-logos-mobile {
  display: none;
}

.part-one-left {
  /* flex-shrink: 0; */
}

.part-one-left img {
  border-radius: 16px 0 0 16px;
  object-fit: cover;
  height: 100%;
}

.part-one-right {
  color: white;
  display: flex;
  align-items: center;
  padding-left: 8.5%;
}

.part-one-right-container {
  max-width: 5.42rem;
}

.part-two {
  padding-top: 75px;
}

.part-two-title {
  text-align: center;
  color: white;
}
.part-two-title h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

.part-two-title p {
  font-size: 22px;
  font-weight: 600;
  max-width: 842px;
  text-align: center;
  margin: 0 auto;
  line-height: 1.36;
}

.part-two-cards {
  justify-content: center;
  display: flex;
  gap: 0.35rem;
  margin-top: 80px;
}
.part-two-card {
  border-radius: 0.16rem;
  background: rgba(19, 18, 27, 0.64);
  backdrop-filter: blur(4px);
  max-width: 405px;
  padding-top: 0.4rem;
  height: 5.55rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.part-two-card-title {
  font-size: 18px;
  font-weight: 500;
  background: var(
    --gradient3,
    linear-gradient(139deg, #8ab9ff 24%, #b8b8ff 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.16rem;
  margin-bottom: 0.16rem;
}

.part-two-card p {
  color: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.part-two-card-top {
  padding-left: 0.42rem;
  padding-right: 0.42rem;
}

.part-two-card-img {
  border-radius: 0 0 16px 16px;
}

.part-two-card:first-child,
.part-two-card:last-child {
  margin-top: 40px;
}

.part-three {
  padding-top: 115px;
}

.part-three-container {
  max-width: 16.8rem;
  margin: 0 auto;
  background: var(--light-grey, #e6e6ef);
  backdrop-filter: blur(4px);
  padding-top: 73px;
  padding-right: 135px;
  padding-left: 200px;
  border-radius: 16px;
  padding-bottom: 145px;
}

.part-three-top {
  display: flex;
  justify-content: space-between;
}

.part-three-left {
  padding-top: 75px;
  max-width: 585px;
}

.part-three-left h1 {
  font-size: 0.4rem;
  font-weight: 600;
}

.part-three-left p {
  font-size: 0.16rem;
  font-weight: 400;
  margin-top: 24px;
  max-width: 515px;
}

.part-three-right {
  flex-shrink: 0;
}

.part3-img-mobile {
  display: none;
}

.part-three-card-container {
  max-width: 10.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: -115px;
}
.part-three-card {
  display: flex;
  padding: 16px 24px;
  gap: 18px;
  background: white;
  border-radius: 8px;
}

.part-three-card-left {
  flex-shrink: 0;
}

.part-three-card-right h2 {
  font-size: 22px;
}

.part-three-card-right p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 12px;
}

.part3-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.part3-bg-mobile {
  position: Absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: none;
}

.bg2 {
  background: url(../images/main_bg2_new.jpg) no-repeat center;
  background-size: cover;
  padding-bottom: 80px;
}

.part-four {
  padding-top: 1.1rem;
}

.part-four-title {
  text-align: center;
  color: white;
  max-width: 8.65rem;
  margin: 0 auto;
}

.part-four-title h1 {
  font-size: 0.4rem;
  font-weight: 600;
}

.part-four-title p {
  font-size: 0.22rem;
  font-weight: 600;
  margin-top: 0.28rem;
  line-height: 1.4;
}

.part-four-company {
  border-radius: 0.5rem;
  border: 1px solid var(--light-grey, #e6e6ef);
  padding: 0.08rem 0.24rem;
  text-align: center;
  color: white;
  font-weight: 500;
  font-size: 16px;
  width: fit-content;
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 0.5rem;
  gap: 0.16rem;
  -webkit-mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
  mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
  max-width: 10.62rem;
  margin: 0 auto;
}

.marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.16rem;
  min-width: 100%;
  -webkit-animation: scroll 30s linear infinite;
  animation: scroll 30s linear infinite;
  animation-direction: reverse;
  will-change: transform;
  padding-top: 0.02rem;
  padding-bottom: 0.02rem;
}

/* .marquee-row2 .marquee-group {
  animation-duration:32s;
} */
.marquee-outer-container {
  margin-top: 0.8rem;
}
.marquee-outer-container-mobile {
  display: none;
}

/* .marquee-row2 .marquee-group {
  animation-direction: normal;
} */
/* .marquee-outer-container:hover .marquee-group {
  animation-play-state: paused;
} */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 0.16rem));
  }
}

@keyframes scroll-mobile {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 1.62rem));
  }
}

.marquee-row2 {
  margin-top: 16px;
}

.logos {
  margin: 0 auto;
  margin-top: 0.8rem;
}

.logos_mobile {
  display: none;
}

.part-five {
  padding-top: 0.9rem;
}

.part-five-right {
  color: white;
}

.part-five-right h1 {
  font-size: 0.4rem;
  font-weight: 600;
}

.part-five-right p {
  font-size: 0.16rem;
  font-weight: 400;
}

.part-five-container {
  max-width: 12.8rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.part-five-right {
  max-width: 5.16rem;
}

.part-five-right h1 {
  font-size: 0.4rem;
  font-weight: 600;
  margin-bottom: 0.36rem;
}

.part-five-right p {
  line-height: 1.4;
  margin-bottom: 0.24rem;
}

.part-five-button-container {
  margin-top: 0.66rem;
}

.part-five-right .risk-warning {
  font-size: 14px;
  margin-top: 0.24rem;
  margin-bottom: 0;
}

.part-five-button-container .btn {
  padding: 0.16rem 0.42rem;
  font-size: 0.18rem;
}

.bg3 {
  background: url(../images/main_bg3.jpg) no-repeat center;
  background-size: cover;
}

.part-six {
  color: white;
  padding-top: 120px;
}
.part-six h1 {
  font-size: 0.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.3rem;
}

.part-six h2 {
  font-size: 0.22rem;
  font-weight: 600;
  text-align: center;
}

.part-six-card-container {
  display: grid;
  grid-template-columns: 296fr 405fr 296fr 79fr;
  grid-template-rows: 296fr 296fr;
  row-gap: 0.24rem;
  column-gap: 0.32rem;
  margin: 0 auto;
  max-width: 11.72rem;
  height: 6.16rem;
  margin-top: 0.8rem;
  position: relative;
}

.part-six-card {
  border-radius: 0.16rem;
  padding-top: 0.17rem;
  padding-left: 0.24rem;
  padding-right: 0.24rem;
}

.part-six-card1 {
  grid-column: 1/2;
  grid-row: 1/2;
  background-color: rgba(19, 18, 27, 0.48);
  background-image: url(../images/part6_img1.png);
  background-repeat: no-repeat;
  background-position: bottom right 10%;
  backdrop-filter: blur(8px);
  background-size: 1.28rem;
}

.part-six-card2 {
  grid-column: 1/2;
  grid-row: 2/3;
  background-color: #045de9;
  background-image: url(../images/part6_img2.png);
  background-repeat: no-repeat;
  background-position: bottom right 15%;
  padding-right: 0.28rem;
  background-size: 1.28rem;
}

.part-six-card3 {
  grid-column: 2/3;
  grid-row: 1/3;
  background-color: #15cf74;
  background-image: url(../images/part6_img3.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}

.part-six-card3 p {
  max-width: 2.8rem;
}
.part-six-card4 {
  grid-column: 3/4;
  grid-row: 1/2;
  background-color: #09c6f9;
  background-image: url(../images/part6_img4.png);
  background-repeat: no-repeat;
  background-position: bottom right 15%;
  background-size: 1.36rem;
}

.part-six-card5 {
  grid-column: 3/5;
  grid-row: 2/3;
  background-color: #635af0;
  background-image: url(../images/part6_img5.png);
  background-repeat: no-repeat;
  background-position: bottom 19% center;
}

.part-six-card h3 {
  font-size: 0.22rem;
  font-weight: 600;
}

.part-six-card p {
  font-size: 0.16rem;
  margin-top: 0.16rem;
  font-weight: 400;
  line-height: 1.5;
}

.part6-icons {
  position: absolute;
  right: -1.3rem;
  top: 0.5rem;
}

.part6-icons-mobile {
  display: none;
}

.part-seven {
  padding-top: 1.16rem;
}

.part7-bg {
  position: absolute;
  bottom: 0;
  left: 0;
}

.part-seven-container {
  max-width: 16.8rem;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  color: #13121b;
  min-height: 4.8rem;
  position: relative;
  overflow: hidden;
}

.part-seven-left h1 {
  font-size: 0.4rem;
  font-weight: 600;
}

.part-seven-line {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  margin-top: 0.32rem;
  margin-bottom: 0.64rem;
}

.part-seven-line h2 {
  font-size: 0.22rem;
  font-weight: 600;
}

.part-seven-left a {
  border-radius: 0.08rem;
  background: #13121b;
  padding: 0.16rem 0.42rem;
  color: white;
  font-size: 0.18rem;
  font-weight: 600;
  width: fit-content;
}

.part-seven-left a:hover {
  background: var(--Purple, #635af0);
}

.part-seven-left .risk-warning {
  font-size: 0.14rem;
  color: #13121b;
  font-weight: 400;
  margin-top: 0.28rem;
}

.part-seven-left {
  padding-top: 1.05rem;
  padding-left: 12%;
  z-index: 2;
}

.part-seven-right img {
  height: 100%;
  object-fit: cover;
}

.part-eight {
  margin-top: 1rem;
  padding-bottom: 1.5rem;
}

.part-eight-container {
  display: flex;
  align-items: center;
  gap: 0.96rem;
  justify-content: center;
}

footer a {
  display: inline-block;
}

@media (max-width: 1400px) {
  .part-three-container {
    padding-left: 100px;
  }
  .part-three-card-container {
    margin-top: 0;
  }
}

.br-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .br-mobile {
    display: block;
  }
  .banner {
    background: url(../images/banner_bg_mobile.jpg) no-repeat center;
    background-size: cover;
    height: 19.36rem;
  }
  header {
    height: auto;
    padding-left: 0.3rem;
    padding-top: 0.36rem;
  }
  .banner-container {
    flex-direction: column;
    width: 89.5%;
    margin: 0 auto;
  }
  .banner-left {
    padding-left: 0;
    padding-top: 0;
    padding-top: 1.7rem;
    text-align: center;
  }
  .banner-left h1 {
    font-size: 0.8rem;
    margin: 0 auto;
    max-width: none;
  }
  .banner-left h2 {
    font-size: 0.32rem;
    margin-top: 0.36rem;
    line-height: 1.4;
  }
  .banner-left-button-container {
    margin-top: 0.82rem;
    margin-bottom: 0.36rem;
  }
  .banner-left-button-container .btn {
    width: 100%;
    height: 0.96rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.16rem;
    font-size: 0.36rem;
  }
  .banner-img {
    display: none;
  }
  .banner-img-mobile {
    display: block;
  }
  .risk-warning {
    font-size: 0.24rem;
  }
  .banner-right {
    margin-top: 0.9rem;
  }
  .bg1 {
    background: none;
    margin-bottom: -1rem;
  }
  .bg1-mobile {
    background: url(../images/mobile_bg1.jpg);
    height: auto;
    background-size: cover;
    padding-bottom: 1.4rem;
  }
  .part-one-container {
    flex-direction: column-reverse;
    top: -0.72rem;
    height: auto;
    width: 89.5%;
    padding-top: 0.5rem;
  }
  .part-one-right-container {
    max-width: none;
  }
  .part-one-right h1 {
    font-size: 0.68rem;
    line-height: 1.3;
    padding-right: 0.3rem;
    margin-bottom: 0.32rem;
    margin-top: 0.24rem;
  }
  .part-one-right h2 {
    font-size: 0.32rem;
    margin-top: 0.32rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
  }
  .part-one-right p {
    font-size: 0.32rem;
  }
  .part-one-left img {
    border-radius: 0 0 0.32rem 0.32rem;
    width: 100%;
  }
  .part-one-right {
    padding-left: 0.4rem;
    padding-right: 0.3rem;
    padding-bottom: 0.54rem;
  }
  .part-one-logos {
    display: none;
  }

  .part-one-logos-mobile {
    display: block;
    position: absolute;
  }
  .part-one-logos-mobile1 {
    top: -0.44rem;
    right: -0.34rem;
    width: 2.1rem;
  }
  .part-one-logos-mobile2 {
    width: 2.22rem;
    left: -0.4rem;
    bottom: -0.6rem;
  }
  .part-two-title h1 {
    font-size: 0.68rem;
    line-height: 1.3;
    margin-bottom: 0.4rem;
  }
  .part-two-title p {
    font-size: 0.32rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.5;
    margin-left: 0;
  }
  .part-two-title {
    text-align: left;
    width: 86%;
    margin: 0 auto;
  }
  .part-two {
    padding-top: 0.2rem;
  }
  .part-two-cards {
    flex-direction: column;
    width: 89.5%;
    margin: 0 auto;
    margin-top: 0.76rem;
    gap: 0.46rem;
    max-width: 7.5rem;
  }
  .part-two-card {
    max-width: none;
    padding-top: 0.62rem;
    height: auto;
    border-radius: 0.32rem;
  }
  .part-two-card-top {
    padding-left: 0.46rem;
    padding-bottom: 0.56rem;
  }
  .part-two-card-top img {
    width: 0.96rem;
  }
  .part-two-card:first-child,
  .part-two-card:last-child {
    margin-top: 0;
  }
  .part-two-card-title {
    font-size: 0.32rem;
    font-weight: 600;
    margin-top: 0.32rem;
    margin-bottom: 0.44rem;
  }
  .part-two-card p {
    font-size: 0.32rem;
  }
  .part-two-card-img {
    border-radius: 0 0 0.32rem 0.32rem;
  }

  .part3-img-mobile {
    display: block;
  }
  .part3-img {
    display: none;
  }
  .part-three-top {
    flex-direction: column;
  }
  .part-three-left {
    padding-top: 0;
    max-width: none;
  }
  .part-three-left h1 {
    font-size: 0.68rem;
    line-height: 1.32;
  }
  .part-three-left p {
    font-size: 0.32rem;
    margin-top: 0.32rem;
    max-width: none;
    line-height: 1.5;
  }
  .part-three-right {
    margin-top: 0.66rem;
  }
  .part-three-container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    position: relative;
    bottom: 0.4rem;
    border-radius: 0.44rem;
    padding-top: 1.1rem;
    padding-bottom: 1rem;
  }
  .part-three {
    padding-top: 0;
  }
  .part-three-card-container {
    grid-template-columns: 1fr;
    margin-top: 0.44rem;
    gap: 0.32rem;
  }
  .part-three-card {
    padding: 0.32rem 0.48rem;
    gap: 0.32rem;
    border-radius: 0.16rem;
  }
  .part-three-card-left img {
    width: 0.56rem;
  }
  .part-three-card-right {
    font-size: 0.32rem;
  }
  .part-three-card-right h2 {
    font-size: 0.32rem;
  }
  .part-three-card-right p {
    font-size: 0.32rem;
    margin-top: 0.24rem;
  }
  .part-three-card-right {
    padding-top: 0.04rem;
  }
  .part3-bg {
    display: none;
  }
  .part3-bg-mobile {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .bg2 {
    background: url(../images/mobile_bg2_new.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: 0.8rem;
  }
  .part-four-title {
    text-align: left;
    width: 85%;
    margin: 0 auto;
  }
  .part-four-title h1 {
    font-size: 0.68rem;
    width: 85%;
  }
  .part-four-title p {
    font-size: 0.32rem;
    font-weight: 400;
  }
  .marquee-outer-container {
    display: none;
  }
  .marquee-outer-container-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
    margin-top: 0.8rem;
    padding-top: 0.05rem;
    padding-bottom: 0.05rem;
  }
  .part-four-company {
    padding: 0.2rem 0.48rem;
    font-size: 0.32rem;
  }
  .marquee-row2 {
    margin-top: 0;
  }
  .marquee {
    width: 90%;
  }
  .marquee-group {
    animation-duration: 12s;
  }
  .part-four {
    padding-top: 1.4rem;
  }
  .part-four-title h1 {
    line-height: 1.32;
  }
  .part-four-title p {
    margin-top: 0.36rem;
    line-height: 1.5;
  }
  .logos {
    display: none;
  }
  .logos_mobile {
    display: block;
    margin-top: 1.16rem;
  }
  .part-five {
    padding-top: 1.1rem;
  }
  .part-five-container {
    flex-direction: column;
    width: 89.5%;
  }
  .part-five-right {
    max-width: none;
    padding-top: 1.2rem;
  }
  .part-five-right h1 {
    font-size: 0.68rem;
    line-height: 1.3;
  }
  .part-five-right p {
    font-size: 0.32rem;
    line-height: 1.46;
    margin-bottom: 0.5rem;
  }
  .part-five-button-container {
    margin-top: 0.8rem;
  }
  .part-five-button-container .btn {
    width: 100%;
    padding: 0;
    height: 0.96rem;
    font-size: 0.36rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.16rem;
  }
  .part-five-right .risk-warning {
    text-align: center;
    font-size: 0.24rem;
    margin-top: 0.34rem;
  }
  .bg3 {
    background: url(../images/mobile_bg3.jpg) no-repeat center;
    background-size: cover;
  }
  .part-six h1 {
    font-size: 0.68rem;
    text-align: left;
    width: 89.5%;
    margin: 0 auto;
  }
  .part-six h2 {
    font-size: 0.32rem;
    width: 89.5%;
    margin: 0 auto;
    text-align: left;
    line-height: 1.36;
    margin-top: 0.4rem;
  }
  .part-six-card-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    width: 88.5%;
    margin-top: 0.66rem;
    max-width: 6.7rem;
    gap: 0.32rem;
  }
  .part-six-card {
    height: 5.92rem;
    padding: 0.34rem 0.56rem;
    border-radius: 0.32rem;
    max-width: 6.7rem;
  }
  .part-six-card3 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .part-six-card4 {
    grid-column: 1/2;
    grid-row: 4/5;
    background-size: 3.2rem;
    background-position: bottom right 24%;
  }
  .part-six-card5 {
    grid-column: 1/2;
    grid-row: 5/6;
  }
  .part-six-card h3 {
    font-size: 0.32rem;
  }
  .part-six-card p {
    font-size: 0.32rem;
    margin-top: 0.4rem;
  }
  .part-six-card1 {
    background-size: 2.56rem;
    background-position: bottom right 17%;
  }
  .part-six-card2 {
    background-size: 2.56rem;
    background-position: bottom right 17%;
  }
  .part-six-card3 {
    background-image: url(../images/part6_img3_mobile.png);
    height: 11.84rem;
    background-size: 101% auto;
    background-position: bottom -2% center;
  }
  .part-six-card3 p {
    max-width: none;
  }
  .part-six-card5 {
    background-image: url(../images/part6_img5_mobile.png);
    background-size: 5.48rem;
  }
  .part6-icons {
    display: none;
  }
  .part-six {
    position: relative;
    padding-top: 1rem;
  }
  .part6-icons-mobile {
    display: block;
    position: absolute;
    bottom: -2rem;
    z-index: 1;
    right: 0;
  }
  .part-seven-container {
    flex-direction: column;
    border-radius: 0.32rem;
  }
  .part-seven {
    padding-top: 3.16rem;
  }
  .part-seven-left {
    padding-left: 0;
    text-align: center;
    padding-top: 1.24rem;
    padding-bottom: 0.62rem;
  }
  .part-seven-left h1 {
    font-size: 0.68rem;
  }
  .part-seven-line {
    justify-content: center;
    margin-top: 0.44rem;
    margin-bottom: 0.86rem;
  }
  .part-seven-line img {
    width: 0.4rem;
  }
  .part-seven-line h2 {
    font-size: 0.32rem;
  }
  .part-seven-container a {
    width: 90%;
    max-width: 6.7rem;
    margin: 0 auto;
    height: 0.96rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.36rem;
    border-radius: 0.16rem;
  }
  .part-seven-left .risk-warning {
    font-size: 0.24rem;
  }
  .part-seven-right img {
    border-radius: 0 0 0.32rem 0.32rem;
    width: 100%;
  }
  .part-eight-container {
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
  }
  .payment-logo1 {
    width: 1rem;
  }
  .payment-logo2 {
    width: 1.22rem;
  }
  .payment-logo3 {
    width: 2.46rem;
  }
  .payment-logo4 {
    width: 1.38rem;
  }
  .payment-logo5 {
    width: 2.46rem;
  }
  .part7-bg {
    display: none;
  }
}

.bg4 {
  background: url(../images/main_bg4.jpg) no-repeat center;
  background-size: cover;
  padding-top: 56px;
  padding-bottom: 116px;
}

.part-nine h1 {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: white;
}

.part-nine-button-container {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 532px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  margin-bottom: 64px;
}

.part-nine-button {
  flex: 1;
  padding-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
  opacity: 0.25;
  transition: opacity 0.3s;
  background: transparent;
  border: none;
  color: white;
}

.part-nine-button-active {
  opacity: 1;
  border-bottom: 4px solid #635af0;
}

.part-nine-inner-container {
  display: flex;
  gap: 32px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.part-nine-card {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
  gap: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  background: rgba(19, 18, 27, 0.64);
  backdrop-filter: blur(4px);
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
}

.part-nine-card h3 {
  background: linear-gradient(139deg, #8ab9ff 24%, #b8b8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  text-align: center;
  margin-bottom: 24px;
}

.part-nine-card p {
  font-size: 16px;
  font-weight: 400;
  color: white;
  text-align: center;
  line-height: 1.5;
}

.part-nine-card a {
  font-size: 18px;
  font-weight: 600;
  gap: 6px;
  margin-top: auto;
  display: flex;
  color: white;
}

.part-nine-bottom-card {
  border-radius: 16px;
  background: rgba(19, 18, 27, 0.64);
  backdrop-filter: blur(4px);
  display: flex;
  padding-left: 55px;
  padding-top: 35px;
  padding-bottom: 35px;
  max-width: 1280px;
  margin: 0 auto;
  padding-right: 100px;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.part-nine-bottom-card h2 {
  background: linear-gradient(139deg, #8ab9ff 24%, #b8b8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  text-align: left;
}

.part-nine-bottom-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-top: 16px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.part-nine-button-bottom {
  padding: 16px 42px;
  color: white;
  border-radius: 8px;
  background: #635af0;
  margin-bottom: 16px;
  width: fit-content;
}

.part-nine-risk-warning {
  color: white;
  font-size: 14px;
  font-weight: 400;
}

.part-nine-bottom-right {
  flex-shrink: 0;
}

.part-nine-bottom-left {
  max-width: 460px;
}

.part-nine-bottom-mobile {
  display: none;
}

.part-nine-bottom-mobile a {
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
  font-size: 0.36rem;
  font-weight: 600;
  border-radius: 0.16rem;
  background: #635af0;
  color: white;
  text-align: center;
  margin-top: 0.32rem;
  margin-bottom: 0.32rem;
}

.part-nine-bottom-mobile p {
  font-size: 0.24rem;
  font-weight: 400;
  color: white;
  text-align: center;
}

.part-nine-container {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1100px) {
  .part-nine-container {
    padding-left: 0;
    padding-right: 0;
  }
  .part-nine-bottom-mobile {
    display: block;
  }
  .bg4 {
    background: url(../images/mobile_bg4.jpg);
    background-size: cover;
    padding-bottom: 1rem;
  }
  .part-nine h1 {
    font-size: 0.68rem;
  }
  .part-nine {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .part-nine-button-container {
    width: 100%;
    max-width: 7.5rem;
    margin-top: 0.16rem;
    margin-bottom: 0.8rem;
  }
  .part-nine-button {
    font-size: 0.32rem;
    padding-top: 0.16rem;
    padding-bottom: 0.32rem;
  }
  .part-nine-inner-container {
    flex-direction: column;
    gap: 16px;
  }
  .part-nine-card {
    padding-left: 0px;
    padding-right: 0px;
  }
  .part-nine-card h3 {
    font-size: 0.32rem;
  }
  .part-nine-card p {
    font-size: 0.32rem;
    padding-left: 50px;
    padding-right: 50px;
  }
  .part-nine-card a {
    font-size: 0.32rem;
  }
  .part-nine-bottom-card {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    margin-top: 16px;
  }
  .part-nine-bottom-card h2 {
    font-size: 0.32rem;
    text-align: center;
    margin-top: 0.48rem;
    margin-bottom: 0.48rem;
  }
  .part-nine-bottom-card h3 {
    font-size: 0.32rem;
    text-align: center;
  }
  .part-nine-button-bottom,
  .part-nine-risk-warning {
    display: none;
  }
  .part-nine-bottom-left {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .part-nine-bottom-right {
    width: 6rem;
  }
}
