@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;
	display: inline;
}
footer p {
  margin-bottom: 10px;
}
.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 fadeIn_up {
  0% {
    transform: translate(0, 1.5rem);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes fadeInL {
  0% {
    transform: translate(-1.5rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fadeInR {
  0% {
    transform: translate(1.5rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

::-ms-clear {
  display: none;
}
.logo {
  width: 2rem;
}

footer {
  background-color: #161717;
  color: #acafaf;
  padding-top: 30px;
  padding-bottom: 90px;
  border-radius: 24px 24px 0px 0px;
  margin-top: -25px;
  font-size: 16px;
  font-weight: 500;
}

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,
footer a:visited {
  color: #09c6f9;
}
footer p {
  margin-bottom: 10px;
}
.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 strong {
  color: #fff;
}

@media only screen and (max-width: 750px) {
  footer .container {
    font-size: 0.24rem;
  }
  footer p {
    line-height: 1.5;
  }
  .footer-links a {
    font-size: 0.24rem;
  }
}

header {
  height: 1.03rem;
}

.header-container {
  max-width: 1260px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 0.4rem;
}

.logo {
  width: 2rem;
}
.banner {
  background: url(../images/banner_bg.png) no-repeat center;
  background-size: cover;
  height: 8.5rem;
  background-position: bottom center;
  position: relative;
}

.banner-container {
  max-width: 1315px;
  margin: 0 auto;
  padding-top: 1rem;
  display: flex;
  align-content: center;
}

.banner-left {
  width: 6.9rem;
  color: white;
  text-align: center;
  padding-top: 0.5rem;
  display: block;
  box-sizing: border-box;
}

.banner-line1-container {
  font-size: 32px;
  font-weight: 600;
  padding: 8px 90px;
  border: 1px solid white;
  border-radius: 35px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.2rem;
}

.banner-left h1 {
  font-weight: 600;
  font-size: 70px;
  line-height: 1.1;
}

.banner-button-container {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-top: 0.44rem;
  margin-bottom: 0.22rem;
}
.cta-button {
  width: 300px;
  height: 70px;
  line-height: 70px;
  font-weight: 600;
  font-size: 26px;
  background: #13121b;
  border-radius: 8px;
  text-align: center;
  color: white;
  margin-left: auto;
  margin-right: auto;
}

.banner-left .terms-link {
  font-weight: 400;
  font-size: 20px;
  text-decoration: underline;
  color: white;
}

.banner-left .banner-warning {
  font-weight: 400;
  font-size: 14px;
  margin-top: 0.68rem;
}

.banner-right {
  display: flex;
  flex: 1;
  align-items: center;
}
main {
  background: url(../images/part1_bg2.jpg) no-repeat left top 3rem;
}

.warning {
  font-weight: 400;
  font-size: 14px;
  margin-top: 0.2rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.part-one-container {
  width: 90%;
  max-width: 1535px;
  background: #ffffff;
  border: 1px solid #e6e6ef;
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.part-one {
  background-image: url(../images/part1_bg1.jpg);
  background-repeat: no-repeat;
  background-position: right top -6rem;
  margin-top: -3rem;
  padding-top: 1.66rem;
  text-align: center;
}

.part-one-container h2 {
  font-weight: 600;
  font-size: 60px;
  color: #635af0;
  max-width: 8.1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.part-one-container h3 {
  font-weight: 600;
  font-size: 26px;
  color: #13121b;
  margin-bottom: 0.32rem;
}
.part-one-grid-wrapper-top {
  margin-top: 0.76rem;
}
.part-one-grid-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #13121b;
  font-weight: 400;
  border: 1px solid #e6e6ef;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}
.part-one-grid {
  display: grid;
  text-align: left;
  grid-template-columns: 367px 300px 1fr;
  background: white;
}

.part-one-grid-title {
  font-size: 20px;
  height: 0.7rem;
  display: flex;
  align-items: center;
}

.part-one-grid-column-first {
  padding-left: 0.67rem;
}

.part-one-grid-box {
  font-size: 24px;
  height: 0.8rem;
  display: flex;
  align-items: center;
}

.part-one-grid-bold {
  font-weight: 700;
  font-size: 32px;
  color: #635af0;
}

.part-one-grid:first-child {
  background: rgba(244, 244, 245, 0.7);
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #e6e6ef;
}

.part-one-grid:last-child {
  border-radius: 0 0 16px 16px;
}

.part-one-grid:not(:last-child) {
  border-bottom: 1px solid #e6e6ef;
}

.part-one-grid-wrapper-special {
  margin-top: 0.88rem;
  position: relative;
}

.part-one-grid-wrapper-special
  .part-one-grid-container
  .part-one-grid:not(:first-child) {
  background: url(../images/grid_box_bg.jpg) no-repeat right;
}

.part-one-grid-wrapper-special .part-one-grid:first-child {
  background: #635af0;
  color: white;
}
.part-one-grid-container-wrapper {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  width: 9.4rem;
  animation-name: fadeIn_right_s;
}
.fadeIn_right_s {
  animation-name: fadeIn_right_s;
}
.fadeIn_left_s {
  animation-name: fadeIn_left_s;
}
@keyframes fadeIn_right_s {
  0% {
    transform: translate(2rem , 0);
    opacity: 0;
  }
  100% {
    transform: translate(0 , 0);
    opacity: 1;
  }
}
@keyframes fadeIn_left_s {
  0% {
    transform: translate(-2rem , 0);
    opacity: 0;
  }
  100% {
    transform: translate(0 , 0);
    opacity: 1;
  }
}
.part-one-grid-wrapper-special .part-one-grid-container-wrapper {
  animation-name: fadeIn_left_s;
}
.part-one-grid-wrapper-special .part-one-grid-container-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 21px;
  right: 17px;
  background: #635af0;
  opacity: 0.1;
  border-radius: 16px;
}
.part-one-button-container {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.9rem;
}

.part-one-button-container .cta-button {
  margin-left: auto;
  margin-right: auto;
}
.part-one-button-container .warning {
  font-weight: 400;
  font-size: 14px;
  margin-top: 0.2rem;
}

.part-one .br-mobile {
  display: none;
}

.bottom-section-title {
  font-weight: 600;
  font-size: 60px;
  text-align: center;
  color: #13121b;
  margin-top: 0.8rem;
}

.bottom-section-title .purple {
  color: #635af0;
}

.bottom-section {
  max-width: 12.66rem;
  margin-left: auto;
  margin-right: auto;
}

.bottom-container {
  background: rgba(244, 244, 245, 1);
  border: 1px solid #e6e6ef;
  border-radius: 20px;
  position: relative;
  color: #13121b;
  padding-left: 80px;
  padding-top: 70px;
  padding-bottom: 64px;
  position: relative;
  padding-right: 100px;
}

.bottom-container h4 {
  font-weight: 700;
  font-size: 40px;
}

.bottom-container h5 {
  font-weight: 400;
  font-size: 26px;
  margin-top: 0.05rem;
  line-height: 1.36;
}

.part-two {
  margin-top: 0.7rem;
}

.part-two-flex-container {
  display: flex;
  justify-content: space-between;
}

.part-two-flex-container > div {
  text-align: center;
  padding-top: 0.68rem;
}

.part-two-flex-container > div:first-child {
}

.part-two-flex-container > div h6 {
  font-weight: 600;
  font-size: 32px;
  margin-top: 0.3rem;
}

.part-two-flex-container > div p {
  font-weight: 400;
  font-size: 26px;
  max-width: 2.72rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.14rem;
  line-height: 1.36;
}

.part-two-flex-container > div.part-two-flex-column2 {
}

.part2-img1,
.part2-img2,
.part2-img3 {
  width: 2.7rem;
  margin-left: auto;
  margin-right: auto;
}

.purple-circle {
  background: linear-gradient(
      314.46deg,
      rgba(114, 107, 224, 0.8) 14.32%,
      rgba(114, 107, 224, 0) 142.42%
    ),
    #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 40px;
  color: white;
  line-height: 80px;
  position: absolute;
  top: 0.44rem;
  left: -0.38rem;
  text-align: center;
}

.part-three h5 .purple ,
.purple {
  color: #635af0;
}

.part-three-flex-container {
  display: flex;
  flex: 1;
  margin-top: 0.8rem;
  justify-content: center;
  gap: 0.48rem;
}

.part-three-flex-container > div {
  width: 230px;
}

.part-three-flex-container p {
  font-weight: 600;
  font-size: 32px;
  text-align: center;
}

.part-three-flex-container img {
  width: 2.3rem;
  margin-left: auto;
  margin-right: auto;
}

.part-three-flex-container2 {
  margin-top: 0.22rem;
}

.part-two-button-container {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.7rem;
}

.part-three {
  margin-top: 0.66rem;
}

.part-three-logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  border-top: 1px solid #e6e6ef;
  margin-top: 0.58rem;
  padding-top: 0.46rem;
}
.part-three-logos-container .break {
  display: none;
}
.part-three-logos-container img {
  width: 1rem;
}

.part3-img-mobile {
  display: none;
}

.part-three-button-container {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.8rem;
}

.part-four {
  margin-top: 0.66rem;
}

.part-four-card {
  padding-top: 0.5rem;
  padding-bottom: 0.1rem;
  padding-left: 0.32rem;
  padding-right: 0.34rem;
  font-weight: 400;
  font-size: 20px;
  background: white;
  border: 1px solid #e6e6ef;
  border-radius: 20px;
  flex: 1;
}
.part-four-card-mobile-btn {
  display: none;
}

.part-four-card h4 {
  font-weight: 600;
  font-size: 40px;
  text-align: center;
}

.part-four-card-line {
  display: flex;
  justify-content: space-between;
  padding-top: 0.18rem;
  padding-bottom: 0.18rem;
  border-bottom: 1px solid #e6e6ef;
  align-items: center;
}

.part-four-card-line:last-of-type {
  border: none;
  padding-top: 0.12rem;
}

.part-four-card-inner-container {
  border: 1px solid #e6e6ef;
  border-radius: 10px;
  padding: 0.3rem 0 0.25rem 0.17rem;
  position: relative;
  margin-top: 0.2rem;
  margin-bottom: 0.12rem;
}

.part-four-card-inner-container p:first-child {
  margin-bottom: 0.46rem;
}

.part-four-card-inner-container p:last-of-type {
  margin-top: 0.16rem;
}
.part-four-card-container {
  margin-top: 0.66rem;
  display: flex;
  justify-content: space-between;
  gap: 0.24rem;
}

.part-four-card img {
  position: absolute;
  right: 0.18rem;
  top: 0.3rem;
  width: 2.05rem;
}

.part-four-card2 {
  background: url(../images/part4_card_bg.png) no-repeat center;
  background-size: cover;
}

.part-four-card .purple {
  color: #635af0;
  font-weight: 600;
}

.part-four-card-line:last-child p:last-child {
  font-weight: 600;
  font-size: 32px;
}

.part-four-button-container {
  margin-top: 0.7rem;
}


.part-five {
  text-align: center;
  background: url(../images/part5_bg1.jpg) no-repeat top right,
    url(../images/part5_bg2.jpg) no-repeat bottom left;
  margin-top: 0.78rem;
  padding-top: 0.82rem;
  padding-bottom: 0.84rem;
}

.part-five h2 {
  color: #635af0;
  font-weight: 600;
  font-size: 60px;
}

.part-five h3 {
  font-weight: 400;
  font-size: 30px;
}

.part-five-grid {
  display: grid;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 300px 1fr 300px;
  gap: 0.2rem;
  max-width: 1260px;
  margin-top: 0.7rem;
}

.part-five-card {
  height: 1.4rem;
  font-weight: 400;
  font-size: 20px;
  padding-left: 15px;
  text-align: left;
  border: 1px solid #e6e6ef;
  border-radius: 9px;
  padding-top: 22px;
  margin-bottom: 20px;
}

.part-five-card:last-child {
  height: 1.6rem;
}
.part-five-card h3 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 0.1rem;
}

.part-five-card p {
  width: 95%;
}

.part-five-img-container {
  display: flex;
  align-items: center;
}

.part-five-button-container {
  margin-top: 0.5rem;
}



.banner-box1-container {
  display: block;
  margin: 0 0 0 auto;
  position: relative;
  max-width: 560px;
  width: 100%;
}
.banner-box1-container .box {
  display: block;
  position: relative;
  width: 100%;
}
.banner-box1-container .box img {
  display: block;
  width: 100%;
  animation-duration: 8s;
  animation-iteration-count: infinite;
}
.banner-box1-container .box img+img {
  position: absolute;
  top: 0;
  left: 0;
}
.banner-box1-container .box img:nth-child(1) {
  animation-name: banner_box1;
}
.banner-box1-container .box img:nth-child(2) {
  animation-name: banner_box2;
}
.banner-box1-container .box img:nth-child(3) {
  animation-name: banner_box3;
  z-index: 10;
}
.banner-box1-container .box .shadow {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  z-index: 8;
  animation-name: banner_box2;
  animation-duration: 8s;
  animation-iteration-count: infinite;
}
.banner-box1-container .box .shadow span {
  display: block;
  position: absolute;
  width: 10%;
  height: 10%;
  background: rgba(0,0,0,0.75);
  margin: -5%;
  left: 47%;
  top: 62%;
  border-radius: 100%;
  filter: blur(0.2rem);
  animation-name: banner_box_shadow;
  animation-duration: 8s;
  animation-iteration-count: infinite;
}
@keyframes banner_box_shadow {
  0% , 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(0.7);
  }
}
@keyframes banner_box1 {
  0% , 100% {
    transform: translate(0 , -3%);
  }
  50% {
    transform: translate(0 , 3%);
  }
}
@keyframes banner_box2 {
  0% , 100% {
    transform: translate(0 , -2%);
  }
  50% {
    transform: translate(0 , 2%);
  }
}
@keyframes banner_box3 {
  0% , 100% {
    transform: translate(0 , -6%);
  }
  50% {
    transform: translate(0 , 6%);
  }
}
.banner-box1-container .stars {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}
.banner-box1-container .stars p {
  display: block;
  position: absolute;
  filter: drop-shadow(0 0 0 #FCFF7D);
  opacity: 0;
}
.banner-box1-container .stars p.flash_show {
  animation: banner_stars_flash 2s 1; 
}
@keyframes banner_stars_flash {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  30% , 60%{
    transform: scale(1);
    opacity: 1;
    filter: brightness(1)  drop-shadow(0 0 0 #FCFF7D);
  }
  35% {
    transform: scale(1.2);
    filter: brightness(1.5) drop-shadow(0 0 0.1rem #FCFF7D);
  }
  100% {
    opacity: 0;
  }
}
.banner-box1-container .stars p img {
  display: block;
  width: 100%;
}
.banner-box1-container .stars p.star1 {
  width: 12.2%;
  margin: -6.1%;
  top: 60%;
  left: -5%;
}
.banner-box1-container .stars p.star2 {
  width: 3.8%;
  margin: -1.9%;
  top: 55%;
  left: 1%;
}
.banner-box1-container .stars p.star3 {
  width: 6.2%;
  margin: -3.1%;
  top: 66%;
  left: 10%;
}
.banner-box1-container .stars p.star4 {
  width: 12.2%;
  margin: -6.1%;
  top: 3%;
  left: 57%;
}
.banner-box1-container .stars p.star5 {
  width: 12.2%;
  margin: -6.1%;
  top: 85%;
  left: 95%;
}
.banner-box1-container .stars p.star6 {
  width: 5.8%;
  margin: -2.9%;
  top: 78%;
  left: 103%;
}


@media (max-width: 1920px) {
.part-one {
  background-size: 70%;
}
}

@media (max-width: 1260px) {
  .part-one .br-mobile {
    display: block;
  }
  .part-one-container {
    width: 94.5%;
  }
  .part-one-container h2 {
    font-size: 0.6rem;
    width: 6.46rem;
  }
  .part-one-container h3 {
    font-weight: 700;
    font-size: 0.4rem;
    width: 6.6rem;
    margin-left: auto;
    margin-right: auto;
  }
  .part-one-grid-title {
    height: 1.24rem;
    font-size: 0.24rem;
  }
  .part-one-grid-box {
    font-size: 0.32rem;
  }
  .part-one-grid {
    grid-template-columns: 30% 34.5% 28.5%;
    padding-left: 7%;
  }
  .part-one-grid-column-first {
    padding-left: 0;
  }
  .part-one-grid-container-wrapper {
    width: 90%;
  }
  .part-one-grid-bold {
    font-size: 0.4rem;
  }

  .part-one-grid-wrapper-special .part-one-grid {
    height: 1.2rem;
    background-size: cover !important;
  }
  .part-one-grid-wrapper-special .part-one-grid-box {
    height: 1.2rem;
  }
  .part-one-button-container .warning {
    font-size: 0.24rem;
    width: 6.32rem;
  }
  .bottom-container h4 {
    text-align: center;
  }
  .bottom-container h5 {
    text-align: center;
  }

  .bottom-section-title {
    width: 6.26rem;
    font-size: 0.6rem;
    margin-left: auto;
    margin-right: auto;
  }
  .purple-circle {
    width: 1.04rem;
    height: 1.04rem;
    font-size: 0.48rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: -0.6rem;
    line-height: 1.04rem;
  }
  .bottom-container {
    width: 94.5%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1rem;
  }
  .part-two .bottom-container {
    text-align: center;
  }

  .part-two .bottom-container h4 {
    width: 6rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.48rem;
  }
  .part-two .bottom-container h5 {
    width: 6.26rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.36rem;
    margin-top: 0.2rem;
  }
  .part-two-flex-container {
    flex-direction: column;
    padding-left: 0;
  }
  .part-two-flex-container > div:first-child {
    margin-right: 0;
  }
  .part-two-flex-container > div.part-two-flex-column2 {
    margin-right: 0;
  }
  .part2-img1,
  .part2-img2,
  .part2-img3 {
    width: 4rem;
  }
  .part-two-flex-container > div h6 {
    font-size: 0.4rem;
  }
  .part-two-flex-container > div p {
    font-size: 0.32rem;
    max-width: none;
  }
  .warning {
    font-size: 0.24rem;
    width: 6.32rem;
  }
  .part-three h5 {
    width: 6.26rem;
    margin-left: auto;
    margin-right: auto;
  }
  .part-three-flex-container {
    flex-direction: column;
    margin-top: 0.6rem;
    gap: 0.3rem;
  }
  .part-three-flex-container > div {
    width: 87.5%;
    border-radius: 0.12rem;
    border: 1px solid #e6e6ef;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .part3-img-pc {
    display: none;
  }
  .part-three-flex-container img {
    width: 2.7rem;
    margin: 0;
  }
  .part3-img-mobile {
    display: block;
  }
  .part-three .bottom-container h4 {
    width: 6rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.48rem;
  }
  .part-three .bottom-container h5 {
    width: 6.26rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.36rem;
    margin-top: 0.2rem;
    line-height: 1.24;
  }
  .part-three-flex-container p {
    font-size: 0.4rem;
    margin-left: 0.56rem;
    margin-top: 0.08rem;
  }
  .part-three-flex-container2 {
    margin-top: 0.3rem;
  }
  .part-three-logos-container .break {
    flex-basis: 100%;
    height: 0;
  }

.part-four-card-container {
    margin-top: 0.66rem;
    display: block;
    position: relative;
}
.bottom-container h5 {
  text-align: center;
  width: 90%;
  margin: 0.1rem auto;
}
.part-four-card-container.page1 .part-four-card1,
.part-four-card-container.page2 .part-four-card2 {
    display: block;
}
.part-four-card-container.page1 .part-four-card2,
.part-four-card-container.page2 .part-four-card1 {
    display: none;
}
.part-four-card-mobile-btn {
  display: flex;
  width: 6rem;
  margin: 0 auto 0.4rem auto;
  justify-content: space-between;
  text-align: center;
  cursor: pointer;
}
.part-four-card-mobile-btn p {
  display: block;
  width: 48.5%;
  font-size: 0.28rem;
  height: 0.84rem;
  border: 1px solid;
  border-radius: 0.1rem;
  box-sizing: border-box;
  line-height: 1.1;
  padding: 0.1rem 0 0 0;
  transition-duration: 0.5s;
}
.part-four-card-container.page2 .part-four-card-mobile-btn p:nth-child(1),
.part-four-card-container.page1 .part-four-card-mobile-btn p:nth-child(2) {
  border-color: #E6E6EF;
  background: #fff;
}
.part-four-card-container.page1 .part-four-card-mobile-btn p:nth-child(1) ,
.part-four-card-container.page2 .part-four-card-mobile-btn p:nth-child(2) {
  border-color: #635AF0;
  background: #635AF0;
  color: #fff;
}
.part-four-card {
  font-size: 0.32rem;
  border: 1px solid #e6e6ef;
  border-radius: 0.2rem;
  width: 6rem;
  margin: auto;
  padding: 0.5rem 0.3rem 0.3rem 0.3rem;
}
.bottom-container .part-four-card h4 {
  width: 100%;
}
.part-four-card img {
  position: absolute;
  top: auto;
  right: 0.18rem;
  bottom: 0.2rem;
  width: 2.3rem;
}
.part-four-card-line {
  align-items: baseline;
  padding: 0.2rem 0 ;
}
.part-four-card-line p:nth-child(2) {
  text-align: right;
}
.part-four-card-line:last-child p:last-child {
  font-size: 0.4rem;
}

.mobile_br {
  display: block;
}

.part-five {
  background: url(../images/part5_bg1.jpg) no-repeat top right -2rem,
    url(../images/part5_bg2.jpg) no-repeat bottom left;
    padding-bottom: 1.6rem;
  background-size: 150%;
}
.part-five-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0.7rem;
  grid-template-areas: "img"  "text1" "text2";
  padding: 0 0.5rem;
}
.part-five-img-container {
  grid-area: img;
  margin-bottom: 0.3rem;
}
.part-five-img-container img {
  margin: auto;
}
.part-five-cards:first-child {
  grid-area: text1
}
.part-five-cards:last-child {
  grid-area: text2;
}
.part-five h2 {
  font-size: 0.8rem;
}
.part-five h3 {
  font-size: 0.36rem;
}
.part-five-card {
  height: 1.6rem;
  font-size: 0.32rem;
  text-align: left;
  border-radius: 0.15rem;
  margin-bottom: 0.25rem;
  padding: 0 0.3rem;
  background: #fff;
  display: flex;
  align-items: center;
}
.part-five-card div {
  display: block;
  width: 100%;
}


}


@media(max-width: 1024px){
.cta-button {
  width: 6.4rem;
  height: 1.08rem;
  line-height: 1.08rem;
  font-size: 0.32rem;
}
.logo {
  width: 3.5rem;
}
.banner {
  background-image: url(../images/banner_bg_m.png);
  height: 16.5rem;
}
.banner-container {
  padding-top: 0.9rem;
  display: block;
}
.banner-line1-container {
  font-size: 0.32rem;
  line-height: 0.68rem;
  padding: 0;
  width: 6.2rem;
  height: 0.7rem;
  margin: auto;
  margin-bottom: 0.4rem;
}
.banner-left {
  width: 100%;
  text-align: center;
  padding-top: 0;
}
.banner-left h1 {
  font-size: 0.72rem;
  line-height: 1.2;
}
.banner-button-container {
  margin-top: 6rem;
}
.banner-right {
  display: block;
  position: absolute;
  top: 3.9rem;
  width: 75%;
  left: 14%;
}
.banner-left .terms-link {
  font-size: 0.32rem;
}
.part-one {
  margin-top: -3rem;
  padding-top: 0;
  background-size: 50% auto;
  background-position: right top 1rem;
}
.part-one-container {
  padding: 0.5rem 0 0.8rem 0;
}
.part-one-grid-container {
  border-radius: 0.15rem;
}
.part-one-grid:first-child {
  border-radius: 0.15rem 0.15rem 0 0;
}
.part-one-grid:last-child {
  border-radius: 0 0 0.15rem 0.15rem;
}
.part-one-grid-wrapper-special .part-one-grid-container-wrapper::after {
  top: 0.1rem;
  right: 0.1rem;
  opacity: 0.1;
  border-radius: 0.15rem;
}
main {
  background: url(../images/part1_bg2_m.jpg) no-repeat left top 3rem;
  background-size: 40% auto;
}
.part-three {
  margin-top: 1rem;
}
.part-three-logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: none;
}
.part-three-logos-container img {
  width: 2rem;
  margin: 0 0.1rem;
}
.part-three-logos-container .break {
  flex-basis: 100%;
  height: 0.15rem;
  display: block;
  width: 100%;
}
.part-four {
  margin-top: 1rem;
}
.bottom-container h4 {
  font-size: 0.48rem;
  width: 80%;
  margin:0 auto ;
}
.bottom-container h5 {
  text-align: center;
  font-size: 0.36rem;
  width: 90%;
  margin: 0.4rem auto 0.1rem auto;
}

}

.pdf-wrapper{
	position: fixed;
	top: 0; left: 0;
	height: 100vh; 
	width: 100vw;
	background: #fff;
	z-index: 500;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	visibility: hidden;
}
.pdf-wrapper .modal-body{
width: 100%; box-sizing: border-box; height: calc(100vh - 30px);
}
.pdf-wrapper .pdf-frame iframe{
width: 100%; border: none; height: calc(100vh - 30px);
}
.pdf-wrapper .modal-header{
position: absolute; top: 0; left: 0; width: 100%;
display: flex; justify-content: flex-end; box-sizing: border-box; padding-right: 6px; align-items: center;
}
.pdf-wrapper .modal-header .icon-close {
height: 30px; width: 30px;
background: url(../../../pdfjs/web/images/icon-close-light.html) no-repeat center center;
background-size: 18px;
cursor: pointer; 
}
.noscroll{
height: 100%; width: 100%; overflow: hidden;
}