/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-family: "Noto Sans TC", "Apple LiGothic Medium", "Microsoft JhengHei", "LiHei Pro Medium", "STHeiti", "Microsoft YaHei", arial;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  overflow-x: hidden;
  background-color: #e9eeff;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}

main {
  overflow: hidden;
  padding-top: 98px;
}
@media all and (max-width: 1024px) {
  main {
    padding-top: 64px;
  }
}

.container {
  width: 100%;
  height: auto;
  position: relative;
  box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
}

.bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

section {
  min-height: 500px;
}

.section-title {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
}
.section-title .section-title-img {
  width: auto;
  height: 68px;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
.section-title .section-title-img.web {
  display: block;
}
@media all and (max-width: 1024px) {
  .section-title .section-title-img.web {
    display: none;
  }
}
.section-title .section-title-img.mob {
  display: none;
  height: 106px;
  max-width: 100vw;
}
@media all and (max-width: 1024px) {
  .section-title .section-title-img.mob {
    display: block;
  }
}
.section-title .section-title-text {
  position: relative;
  box-sizing: border-box;
  top: -10px;
  padding: 20px 40px;
  font-size: 24px;
  color: white;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  border-radius: 50px;
  border: 5px solid #f200ca;
  background: #02124B;
}
@media all and (max-width: 1024px) {
  .section-title .section-title-text {
    max-width: calc(100vw - 30px);
    top: -12px;
    padding: 20px;
    border-radius: 16px;
    border-width: 4px;
    font-size: 20px;
  }
}
.section-title .section-title-text br {
  display: none;
}
@media all and (max-width: 1024px) {
  .section-title .section-title-text br {
    display: block;
  }
}

header {
  width: 100%;
  height: 98px;
  position: fixed;
  z-index: 1000;
  background-color: white;
}
@media all and (max-width: 1024px) {
  header {
    height: 64px;
  }
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  margin: auto;
}
header .logo {
  width: 183px;
  height: 66px;
  margin-left: 20px;
}
@media all and (max-width: 1024px) {
  header .logo {
    width: 122px;
    height: 44px;
  }
}
header .mainMenu {
  box-sizing: border-box;
  position: relative;
  height: 100%;
  text-align: right;
  flex: 1;
}
@media all and (max-width: 1024px) {
  header .mainMenu {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: auto;
    max-height: 0;
    top: 64px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    transition: opacity 0.2s, max-height 0.2s;
    pointer-events: none;
    overflow: hidden;
  }
}
header .mainMenu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}
@media all and (max-width: 1024px) {
  header .mainMenu ul {
    height: auto;
    justify-content: center;
    flex-direction: column;
  }
}
header .mainMenu li {
  height: 100%;
}
@media all and (max-width: 1024px) {
  header .mainMenu li {
    width: 136px;
    height: 64px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.2s, transform 0.2s;
  }
  header .mainMenu li:nth-child(1) {
    transition-delay: 0ms;
  }
  header .mainMenu li:nth-child(2) {
    transition-delay: 50ms;
  }
  header .mainMenu li:nth-child(3) {
    transition-delay: 100ms;
  }
  header .mainMenu li:nth-child(4) {
    transition-delay: 150ms;
  }
  header .mainMenu li:nth-child(5) {
    transition-delay: 200ms;
  }
  header .mainMenu li:nth-child(6) {
    transition-delay: 250ms;
  }
}
header .mainMenu li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  padding: 0 20px;
  color: #02124B;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
}
@media all and (max-width: 1024px) {
  header .mainMenu li a {
    color: #02124B;
  }
}
header .mainMenu li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
  background: #f200ca;
  transform-origin: 0;
  transform: scaleX(0);
  transition: transform 0.2s;
}
header .mainMenu li.active a, header .mainMenu li:hover a {
  color: #f200ca;
  font-weight: 700;
}
header .mainMenu li.active a::after, header .mainMenu li:hover a::after {
  transform: scaleX(1);
}
@media all and (max-width: 1024px) {
  header .mainMenu li:hover a {
    color: white;
    font-weight: 400;
  }
  header .mainMenu li:hover a::after {
    transform: scaleX(0);
  }
}
@media all and (max-width: 1024px) {
  header .mainMenu.open {
    opacity: 1;
    pointer-events: auto;
    max-height: 400px;
  }
}
@media all and (max-width: 1024px) {
  header .mainMenu.open li {
    opacity: 1;
    transform: translateX(0);
  }
}

.menu-btn {
  width: 64px;
  height: 64px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  display: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media all and (max-width: 1024px) {
  .menu-btn {
    display: flex;
  }
}
.menu-btn .menu-btn__burger::before, .menu-btn .menu-btn__burger::after, .menu-btn .menu-btn__burger {
  width: 32px;
  height: 3px;
  position: absolute;
  background: #02124B;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
.menu-btn .menu-btn__burger::before, .menu-btn .menu-btn__burger::after {
  content: "";
}
.menu-btn .menu-btn__burger::before {
  transform: translateY(-11px);
}
.menu-btn .menu-btn__burger::after {
  transform: translateY(11px);
}
.menu-btn.open .menu-btn__burger {
  background: transparent;
}
.menu-btn.open .menu-btn__burger::before {
  transform: rotate(45deg);
}
.menu-btn.open .menu-btn__burger::after {
  transform: rotate(-45deg);
}

footer {
  width: 100%;
  height: auto;
  position: relative;
  background: white;
  text-align: center;
}
@media all and (max-width: 768px) {
  footer {
    padding-bottom: 64px;
  }
}
@media all and (max-width: 640px) {
  footer {
    padding-top: 14px;
  }
}
footer .selection {
  box-sizing: border-box;
  display: block;
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  padding: 10px 15px;
}
@media all and (max-width: 640px) {
  footer .selection {
    display: inline-block;
    padding: 6px 20px;
    font-size: 12px;
    line-height: 18px;
    text-align: left;
  }
}
footer .selection .copyRight {
  position: relative;
  width: 12px;
  height: 12px;
  display: inline-block;
  filter: invert(1);
  margin-right: 4px;
}
@media all and (max-width: 640px) {
  footer .selection .copyRight {
    top: 2px;
  }
}

aside {
  position: fixed;
  z-index: 1000;
  right: 10px;
  bottom: calc(50% - 50px);
}
@media all and (max-width: 1024px) {
  aside {
    bottom: 18px;
  }
}
@media all and (max-width: 768px) {
  aside {
    width: 100%;
    height: 64px;
    right: 0;
    bottom: 0;
  }
}
aside .aside-button {
  display: block;
  width: 100px;
  height: 100px;
  background-image: url("../img/nav/aside_button.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  cursor: pointer;
}
@media all and (max-width: 1024px) {
  aside .aside-button {
    width: 70px;
    height: 70px;
  }
}
aside .aside-button:hover {
  transform: scale(1.1);
}
aside .aside-button-mob-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: #02124B;
  display: none;
}
aside .aside-button-mob {
  width: 197px;
  height: 64px;
  box-sizing: border-box;
  padding: 4px;
}
aside .aside-button-mob-1 {
  background-image: url("../img/nav/aside_button_1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
aside .aside-button-mob-2 {
  background-image: url("../img/nav/aside_button_2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 768px) {
  aside .aside-button {
    display: none;
  }
  aside .aside-button-mob-area {
    display: flex;
  }
}

.main-vision {
  width: 100%;
  height: 860px;
  position: relative;
  background-image: url("../img/kv/bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media all and (max-width: 1024px) {
  .main-vision {
    height: 576px;
    background-image: url("../img/kv/bg_mb.jpg");
  }
}
.main-vision .container .title {
  width: 878px;
  height: 265px;
  position: absolute;
  left: calc(50% - 430px);
  top: 93px;
  background-image: url("../img/kv/title.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0;
}
@media all and (max-width: 1024px) {
  .main-vision .container .title {
    width: 340px;
    height: 240px;
    position: absolute;
    left: calc(50% - 170px);
    top: 24px;
    background-image: url("../img/kv/title_mb.png");
  }
}
.main-vision .container .car {
  width: 969px;
  height: 404px;
  position: absolute;
  left: calc(50% - 340px);
  top: 344px;
  background-image: url("../img/kv/car.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0;
}
@media all and (max-width: 1024px) {
  .main-vision .container .car {
    width: 562px;
    height: 234px;
    position: absolute;
    left: calc(50% - 217px);
    top: 274px;
  }
}
.main-vision .bg {
  background-image: url("../img/kv/bg_mask.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
}
@media all and (max-width: 2560px) {
  .main-vision .bg {
    background-size: 2560px auto;
  }
}
@media all and (max-width: 1024px) {
  .main-vision .bg {
    background-image: url("../img/kv/bg_mask_mb.png");
    background-size: 1200px 160px;
  }
}
.main-vision .bg .coin {
  opacity: 0;
}
.main-vision .bg .coin.left {
  width: 572px;
  height: 740px;
  position: absolute;
  left: calc(50% - 689px);
  top: 55px;
  background-image: url("../img/kv/coin_left.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .main-vision .bg .coin.left {
    width: 262px;
    height: 306px;
    position: absolute;
    left: calc(50% - 222px);
    top: 7px;
  }
}
.main-vision .bg .coin.right {
  width: 356px;
  height: 750px;
  position: absolute;
  left: calc(50% + 346px);
  top: 28px;
  background-image: url("../img/kv/coin_right.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .main-vision .bg .coin.right {
    width: 132px;
    height: 280px;
    position: absolute;
    left: calc(50% + 71px);
    top: 7px;
  }
}
.main-vision .bg .sparkle {
  width: 40px;
  height: 40px;
  position: absolute;
  background-image: url("../img/kv/sparkle.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.main-vision .bg .sparkle.sparkle-1 {
  left: calc(50% - 606px);
  top: 663px;
}
.main-vision .bg .sparkle.sparkle-2 {
  width: 31px;
  height: 31px;
  position: absolute;
  left: calc(50% + 548px);
  top: 28px;
}
@media all and (max-width: 1024px) {
  .main-vision .bg .sparkle {
    display: none;
  }
}

.gift {
  width: 100%;
  height: 888px;
  position: relative;
  box-sizing: border-box;
  background-image: url("../img/gift/bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  padding-top: 60px;
}
@media all and (max-width: 2560px) {
  .gift {
    background-size: 2560px auto;
  }
}
@media all and (max-width: 1024px) {
  .gift {
    height: 2020px;
    padding-top: 40px;
    background-image: url("../img/gift/bg_mb.jpg");
    background-size: 1200px auto;
  }
}
.gift .container .section-title {
  width: 1105px;
  height: 172px;
  background-image: url("../img/gift/section_title.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0 auto 40px auto;
}
@media all and (max-width: 1024px) {
  .gift .container .section-title {
    width: 363px;
    height: 213px;
    margin: 0 auto 40px auto;
    background-image: url("../img/gift/section_title_mb.png");
  }
}
.gift .card-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
}
@media all and (max-width: 1024px) {
  .gift .card-area {
    flex-direction: column;
    gap: 20px;
  }
}
.gift .card-area .gift-card {
  width: 282px;
  height: 452px;
  perspective: 1000px;
  cursor: pointer;
}
@media all and (max-width: 1024px) {
  .gift .card-area .gift-card {
    width: 332px;
    height: 377px;
  }
}
.gift .card-area .gift-card .card-front,
.gift .card-area .gift-card .card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform ease-in-out 0.6s;
}
.gift .card-area .gift-card .card-front {
  transform: rotateY(0deg);
}
.gift .card-area .gift-card .card-back {
  transform: rotateY(-180deg);
}
.gift .card-area .gift-card:hover .card-front {
  transform: rotateY(180deg);
}
.gift .card-area .gift-card:hover .card-back {
  transform: rotateY(0deg);
}
.gift .card-area .gift-card-1 .card-front {
  background-image: url("../img/gift/card_1_1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .gift .card-area .gift-card-1 .card-front {
    background-image: url("../img/gift/card_1_1_mb.png");
  }
}
.gift .card-area .gift-card-1 .card-back {
  background-image: url("../img/gift/card_1_2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .gift .card-area .gift-card-1 .card-back {
    background-image: url("../img/gift/card_1_2_mb.png");
  }
}
.gift .card-area .gift-card-2 .card-front {
  background-image: url("../img/gift/card_2_1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .gift .card-area .gift-card-2 .card-front {
    background-image: url("../img/gift/card_2_1_mb.png");
  }
}
.gift .card-area .gift-card-2 .card-back {
  background-image: url("../img/gift/card_2_2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .gift .card-area .gift-card-2 .card-back {
    background-image: url("../img/gift/card_2_2_mb.png");
  }
}
.gift .card-area .gift-card-3 .card-front {
  background-image: url("../img/gift/card_3_1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .gift .card-area .gift-card-3 .card-front {
    background-image: url("../img/gift/card_3_1_mb.png");
  }
}
.gift .card-area .gift-card-3 .card-back {
  background-image: url("../img/gift/card_3_2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .gift .card-area .gift-card-3 .card-back {
    background-image: url("../img/gift/card_3_2_mb.png");
  }
}
.gift .card-area .gift-card-4 .card-front {
  background-image: url("../img/gift/card_4_1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .gift .card-area .gift-card-4 .card-front {
    background-image: url("../img/gift/card_4_1_mb.png");
  }
}
.gift .card-area .gift-card-4 .card-back {
  background-image: url("../img/gift/card_4_2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .gift .card-area .gift-card-4 .card-back {
    background-image: url("../img/gift/card_4_2_mb.png");
  }
}

.quick {
  width: 100%;
  height: 1272px;
  position: relative;
  box-sizing: border-box;
  padding-top: 44px;
  background-color: #8890ff;
}
@media all and (max-width: 1024px) {
  .quick {
    height: 840px;
    padding-top: 40px;
  }
}
.quick .container .section-title {
  width: 1105px;
  height: 172px;
  background-image: url("../img/quick/section_title.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0 auto 40px auto;
}
@media all and (max-width: 1024px) {
  .quick .container .section-title {
    width: 363px;
    height: 213px;
    margin: 0 auto 20px auto;
    background-image: url("../img/quick/section_title_mb.png");
  }
}
.quick .container .buttons-area {
  width: 1160px;
  height: 108px;
  background-image: url("../img/quick/buttons.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0 auto -8px auto;
}
@media all and (max-width: 1024px) {
  .quick .container .buttons-area {
    width: 367px;
    height: 152px;
    margin: 0 auto 20px auto;
    background-image: url("../img/quick/buttons_mb.png");
  }
}
.quick .container .video-area {
  width: 1176px;
  height: 676px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 8px;
  background: linear-gradient(180deg, #7a5df8 0%, #2606ba 100%);
  border-radius: 20px;
  border: 8px solid white;
}
@media all and (max-width: 1024px) {
  .quick .container .video-area {
    width: 360px;
    height: 211px;
    border-width: 3px;
    padding: 7px;
  }
}
.quick .container .video-button {
  width: 298px;
  height: 78px;
  background-image: url("../img/quick/button.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 40px auto;
}
@media all and (max-width: 1024px) {
  .quick .container .video-button {
    width: 260px;
    height: 68px;
    margin: 20px auto;
  }
}
.quick .container .video-button:hover {
  transform: scale(1.1);
}
.quick .bg {
  background-image: url("../img/quick/bg_mask.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
}
@media all and (max-width: 2560px) {
  .quick .bg {
    background-size: 2560px auto;
  }
}
@media all and (max-width: 1024px) {
  .quick .bg {
    background-image: url("../img/quick/bg_mask_mb.png");
    background-size: 1200px 160px;
  }
}
.quick .bg .light {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("../img/quick/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media all and (max-width: 1024px) {
  .quick .bg .light {
    background-image: url("../img/quick/bg_mb.png");
  }
}
.quick .bg .coin {
  width: 1527px;
  height: 873px;
  position: absolute;
  left: calc(50% - 764px);
  top: 165px;
  background-image: url("../img/quick/bg_coin.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .quick .bg .coin {
    display: none;
  }
}

.invest {
  width: 100%;
  height: auto;
  position: relative;
  box-sizing: border-box;
  min-height: 800px;
  background-image: url("../img/invest/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .invest {
    height: auto;
    background-image: none;
  }
}
.invest .container .section-title {
  width: 1105px;
  height: 172px;
  background-image: url("../img/invest/section_title.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0 auto 40px auto;
}
@media all and (max-width: 1024px) {
  .invest .container .section-title {
    width: 363px;
    height: 213px;
    margin: 0 auto 40px auto;
    background-image: url("../img/invest/section_title_mb.png");
  }
}
.invest .container .invest-card-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px 24px;
}
@media all and (max-width: 1024px) {
  .invest .container .invest-card-area {
    flex-direction: column;
    gap: 20px;
  }
}
.invest .container .invest-card-area .invest-card {
  width: 384px;
  height: 200px;
}
@media all and (max-width: 1024px) {
  .invest .container .invest-card-area .invest-card {
    width: 332px;
    height: 172px;
  }
}
.invest .container .invest-card-area .invest-card:nth-child(1) {
  background-image: url("../img/invest/card_1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .invest .container .invest-card-area .invest-card:nth-child(1) {
    background-image: url("../img/invest/card_1_mb.png");
  }
}
.invest .container .invest-card-area .invest-card:nth-child(2) {
  background-image: url("../img/invest/card_2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .invest .container .invest-card-area .invest-card:nth-child(2) {
    background-image: url("../img/invest/card_2_mb.png");
  }
}
.invest .container .invest-card-area .invest-card:nth-child(3) {
  background-image: url("../img/invest/card_3.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .invest .container .invest-card-area .invest-card:nth-child(3) {
    background-image: url("../img/invest/card_3_mb.png");
  }
}
.invest .container .invest-card-area .invest-card:nth-child(4) {
  background-image: url("../img/invest/card_4.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .invest .container .invest-card-area .invest-card:nth-child(4) {
    background-image: url("../img/invest/card_4_mb.png");
  }
}
.invest .container .invest-card-area .invest-card:nth-child(5) {
  background-image: url("../img/invest/card_5.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .invest .container .invest-card-area .invest-card:nth-child(5) {
    background-image: url("../img/invest/card_5_mb.png");
  }
}
.invest .container .invest-card-area .invest-card:nth-child(6) {
  background-image: url("../img/invest/card_6.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media all and (max-width: 1024px) {
  .invest .container .invest-card-area .invest-card:nth-child(6) {
    background-image: url("../img/invest/card_6_mb.png");
  }
}

.note {
  width: 100%;
  height: auto;
  position: relative;
  box-sizing: border-box;
  padding-top: 32px;
  padding-bottom: 60px;
  background-image: url("../img/note/bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media all and (max-width: 1024px) {
  .note {
    padding-top: 120px;
    padding-bottom: 40px;
    background-image: url("../img/note/bg_mb.png");
    background-repeat: no-repeat;
    background-position: center -154px;
    background-size: 1200px 375px;
  }
}
.note .container {
  max-width: 900px;
}
.note .container .note-title {
  width: 479px;
  height: 106px;
  position: relative;
  background-image: url("../img/note/note_title.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0 auto -42px auto;
  z-index: 1;
}
@media all and (max-width: 1024px) {
  .note .container .note-title {
    width: 340px;
    height: 54px;
    margin: 0 auto -14px auto;
    background-image: url("../img/note/note_title_mb.png");
  }
}
.note .container .level {
  width: 482px;
  height: 175px;
  background-image: url("../img/note/level.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 12px auto 0 auto;
}
@media all and (max-width: 1024px) {
  .note .container .level {
    width: 100%;
    height: 120px;
    max-width: 346px;
    margin: 12px auto 0 auto;
    background-image: url("../img/note/level_mb.png");
  }
}
.note .note-content-border {
  box-sizing: border-box;
  padding: 6px;
  border-radius: 20px;
  background-image: linear-gradient(90deg, #b50072 0%, #bf0081 15%, #db00a9 45%, #f200ca 65%);
}
@media all and (max-width: 1024px) {
  .note .note-content-border {
    padding: 4px;
    margin: 0 15px;
  }
}
@media all and (max-width: 360px) {
  .note .note-content-border {
    margin: 0 10px;
  }
}
.note .note-content {
  width: 100%;
  height: auto;
  position: relative;
  box-sizing: border-box;
  padding: 62px 44px 54px 44px;
  border-radius: 15px;
  background: #071248;
  display: grid;
  gap: 28px;
}
@media all and (max-width: 1024px) {
  .note .note-content {
    padding: 45px 16px 39px 16px;
  }
}
.note .note-card-area:nth-child(1) {
  transition-delay: 0ms;
}
@media all and (max-width: 1024px) {
  .note .note-card-area:nth-child(1) {
    transition-delay: 0ms;
  }
}
.note .note-card-area:nth-child(2) {
  transition-delay: 100ms;
}
@media all and (max-width: 1024px) {
  .note .note-card-area:nth-child(2) {
    transition-delay: 0ms;
  }
}
.note .note-card-area:nth-child(3) {
  transition-delay: 200ms;
}
@media all and (max-width: 1024px) {
  .note .note-card-area:nth-child(3) {
    transition-delay: 0ms;
  }
}
.note .note-card-area:nth-child(4) {
  transition-delay: 300ms;
}
@media all and (max-width: 1024px) {
  .note .note-card-area:nth-child(4) {
    transition-delay: 0ms;
  }
}
.note .note-card-area:nth-child(5) {
  transition-delay: 400ms;
}
@media all and (max-width: 1024px) {
  .note .note-card-area:nth-child(5) {
    transition-delay: 0ms;
  }
}
.note .note-card-area .note-card-title {
  padding: 5px 8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  background-color: #f200ca;
  border-radius: 40px;
  font-size: 16px;
  color: white;
  font-weight: 700;
  line-height: 26px;
}
@media all and (max-width: 1024px) {
  .note .note-card-area .note-card-title {
    border-radius: 10px;
  }
}
.note .note-card-area .note-card-title span {
  display: inline-block;
  width: 26px;
  height: 26px;
  min-width: 26px;
  background-color: white;
  border-radius: 50%;
  font-size: 16px;
  color: #f200ca;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  font-family: Rubik;
}
.note .note-card-area .note-card-title a {
  text-decoration: underline;
  color: white;
}
.note .note-card-area .note-card-text {
  padding: 12px 20px 0 20px;
  font-size: 16px;
  color: white;
  font-weight: 400;
  line-height: 23px;
}
@media all and (max-width: 1024px) {
  .note .note-card-area .note-card-text {
    padding: 12px 0 0 0;
  }
}
.note .note-card-area .note-card-text ul {
  list-style: decimal;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.001);
  }
  20% {
    opacity: 1 !important;
  }
  80% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.aos-animate[data-aos=bounce-in] {
  animation-name: bounce-in;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}

[data-aos-delay="300"] {
  animation-delay: 0.3s;
}

[data-aos-delay="600"] {
  animation-delay: 0.6s;
}