@import "base.css";
@import "fonts.css";
:root {
    --content-width: 1804px;
    --main-cl: #cf9b21;
    --sec-cl: #211161;
    --b-cl: #0c0c0c;
    --w-cl: #fff;
    --lh: 1.8em;
    --font-family: "Wix Madefor Display", sans-serif;
    --font-jakarta: "Plus Jakarta Sans", sans-serif;
    --font-mont: "Montserrat", sans-serif;
    --f-lato: "Lato", sans-serif;
    --f-popin: "Poppins", sans-serif;
    --body-color: #0c0c0c;
    --heightHeader: 85px;
}
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
    font-size: 180%;
    -webkit-text-size-adjust: none;
    font-family: var(--font-family);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
    width: 100%;
    border: solid 1px #999;
    padding: 16px 20px;
}
::placeholder {
    opacity: 0.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.222em;
}
a {
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-family);
    color: var(--w-cl);
}
select {
    visibility: visible !important;
}
[href^="tel:"] {
    word-break: keep-all;
    white-space: nowrap;
}
img {
    vertical-align: middle;
    max-width: 100%;
    flex-shrink: 0;
    height: auto;
    object-fit: cover;
}
table {
    width: 100%;
}
p {
    line-height: 1.444em;
}
p:last-child {
    margin-bottom: 0;
}
li {
    line-height: 1.666em;
}
li:last-child {
    margin-bottom: 0;
}
button {
    cursor: pointer;
    border: solid 1px #333;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}
*,
::before,
::after {
    box-sizing: border-box;
    outline: none;
}
html {
    background: #fff;
}
body {
    min-width: 320px;
    -webkit-text-size-adjust: none;
    color: var(--body-color);
    background-color: #fef9ed;
}
#wrapper {
    margin: 0 auto;
    overflow: hidden;
}
.container {
    width: var(--content-width);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.lk-full {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.hamburger-btn {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 99;
    margin-left: 20px;
    background-color: #000;
}
.hamburger-btn .bar {
    width: 30px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--main-cl);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger-btn .bar::before,
.hamburger-btn .bar::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    border-radius: 2px;
    background-color: var(--main-cl);
    transition: all 0.3s ease;
}
.hamburger-btn .bar::before {
    top: -8px;
}
.hamburger-btn .bar::after {
    top: 8px;
}
.hamburger-btn.--active .bar {
    background-color: rgba(0, 0, 0, 0);
}
.hamburger-btn.--active .bar::before {
    top: 0;
    transform: rotate(45deg);
}
.hamburger-btn.--active .bar::after {
    top: 0;
    transform: rotate(135deg);
}
.floating-contact {
    position: fixed;
    bottom: 90px;
    right: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.to-top {
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
}
.to-top.show {
    opacity: 1;
    visibility: visible;
}
.to-top:hover {
    opacity: 0.8;
}
.to-top a {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    background-color: var(--main-cl);
    border: 1px var(--main-cl) solid;
    border-radius: 50%;
    z-index: 1;
}
.to-top a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 14px 20px 14px;
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fff rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
}
.d-flex {
    display: flex;
}
.d-flex-column {
    display: flex;
    flex-direction: column;
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.flex-center-all {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.left {
    text-align: left;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
.bold {
    font-weight: 700;
}
#header {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    height: var(--heightHeader);
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    z-index: 99;
    transition: margin-top 0.3s;
}
#header .logo a {
    display: flex;
    align-items: center;
    height: 100%;
}
#header.fix {
    top: 0;
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100% !important;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
}
.header-main .logo {
    width: max(11%, 140px);
    max-width: 181px;
}
.header-act {
    display: flex;
    align-items: center;
}
.menu-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
}
.menu-list .menu-tt {
    padding: 14px 0 0;
}
.menu-list li.active a::before {
    opacity: 1;
}
.menu-list p {
    margin-bottom: 0;
}
.menu-list > li > a {
    position: relative;
    display: block;
    font-weight: 500;
}
.menu-list > li > a::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    top: 2px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #facc15;
    opacity: 0;
}
.dropdown {
    position: relative;
    z-index: 1;
    padding-right: 15px;
}
.dropdown::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #fff transparent transparent transparent;
    transform: rotate(0deg);
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.sub-menu a {
    padding: 10px 15px;
    display: block;
    width: 100%;
    white-space: nowrap;
    background-color: var(--main-cl) !important;
    color: #fff !important;
    border-bottom: 1px solid #fff;
}
.sub-menu .col2 {
    display: flex;
    width: 390px;
    gap: 10px;
}
.sub-menu .col2 > ul {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.sub-menu .col2 > ul .ttl {
    color: #211161;
    position: relative;
    z-index: 1;
    padding: 10px 15px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}
.sub-menu .col2 > ul .ttl::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.sub-menu li:last-child a {
    border-bottom: 0;
}
.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
}
.video-loader .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--main-cl);
    border-top: 5px solid rgba(0, 0, 0, 0);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.video-ready .video-loader {
    display: none;
}
.index-visual {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: flex-end;
}
.mainvs__h1 h1 {
    animation: reveal 2s ease forwards;
}
.mainvs__video {
    position: absolute;
    width: 100%;
    height: 100%;
}
.mainvs__video::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    background: linear-gradient(
        180deg,
        rgb(0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 20%,
        rgba(0, 0, 0, 0) 41%,
        rgba(0, 0, 0, 0.69) 64%,
        rgb(0, 0, 0) 100%
    );
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}
.mainvs__video video {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
}
.mainvs__h1 {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    padding: 0 15px;
    max-width: 1920px;
    margin: 0 auto 8.2%;
}
.mainvs__h1 h1 {
    font-size: max(min(135/1920 * 100vw, 135px), 52px);
    flex-direction: column;
    line-height: 1.2em;
    color: #fff;
    letter-spacing: -5px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    width: 100%;
    clip-path: inset(0 100% 0 0);
    overflow: hidden;
}
.mainvs__h1 h1 .ttl2 {
    text-align: right;
}
.mainvs__h1 .btn {
    position: absolute;
    left: 30px;
    bottom: 30px;
}
.mainvs__h1 .btn a {
    text-transform: uppercase;
}
.hide__icon.btn a span {
    padding-right: 0;
    transition: all 0.3s ease-in-out;
}
.hide__icon.btn a span::before {
    display: block;
    opacity: 0;
}
@keyframes reveal {
    to {
        clip-path: inset(0 0 0 0);
    }
}
.footer-warning {
    bottom: 0;
    width: 100%;
    background-color: #1e1e1e;
    color: #fff;
    position: relative;
    z-index: 99;
    -webkit-box-shadow: 0 -10px 8px -6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 -10px 8px -6px rgba(0, 0, 0, 0.1);
    padding: 10px 30px;
    text-align: center;
    display: none;
}
.footer-warning p {
    font-size: 12px;
}
.footer-warning .btn_close {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 16px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3px;
    font-weight: 400;
}
.mb30 {
    margin-bottom: 30px !important;
}
.ttl_sub {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-cl);
    margin-bottom: 10px;
}
h2 {
    font-family: "Plus Jakarta Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    letter-spacing: -1px;
    text-transform: capitalize;
    color: #211161;
}
.title .ttl_sub {
    margin-bottom: 15px;
}
.title .desc p {
    font-size: 22px;
    line-height: 1.363em;
}
.btn a, .btn input {
    --clr-btn: linear-gradient(130deg, #cf9b21 0%, #c8a759 50%, #e7d1a4 100%);
    color: #fff;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 19px 27px;
    background: var(--clr-btn);
    background-size: 200% 100%;
    background-position: 0% 0%;
    transition: background-position 0.3s ease-in;
    border-radius: 100px;
    font-size: 16px;
    line-height: 1.125em;
    text-transform: uppercase;
    cursor: pointer;
}.btn .wpcf7-spinner {
    display: block;
    margin: 0 auto;
}
.wpcf7-response-output {
    margin-top: 0 !important;
    font-size: 16px;
}
.btn a span {
    position: relative;
    z-index: 1;
    padding-right: 36px;
}
.btn a span::before {
    content: "";
    position: absolute;
    background: url("../images/ic_arrow.png") center no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}
.btn .btn_w {
    background: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
}
.btn .btn_w span::before {
    display: none;
}
.readmore a {
    text-transform: uppercase;
    color: var(--main-cl);
    font-size: 16px;
}
.readmore a span {
    padding-right: 38px;
    position: relative;
    z-index: 1;
}
.readmore a span::before {
    content: "";
    position: absolute;
    background: url("../images/ic_readmore.png") center no-repeat;
    width: 38px;
    height: 38px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}
.list li {
    padding-left: 40px;
    position: relative;
    z-index: 1;
}
.list li:not(:last-child) {
    margin-bottom: 11px;
}
.list li::before {
    content: "";
    position: absolute;
    background: url("../images/ic_check.png") center no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
    top: 4px;
    left: 0;
    z-index: -1;
}
.list__count {
    counter-reset: section;
}
.list__count li {
    position: relative;
    z-index: 1;
    line-height: 1.444em;
}
.list__count li::before {
    counter-increment: section;
    content: counter(section, decimal-leading-zero);
    font-family: var(--font-jakarta);
    letter-spacing: -1px;
}
.pc992 {
    display: none;
}
.sp1200 {
    display: block;
}
.pc1200 {
    display: none;
}
.button {
    position: relative;
    flex-shrink: 0;
    width: 110px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid var(--main-cl);
    background-color: var(--main-cl);
    overflow: hidden;
    margin-left: auto;
}
.button,
.button__icon,
.button__text {
    transition: all 0.3s;
}
.button .button__text {
    transform: translateX(9px);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.button .button__icon {
    position: absolute;
    transform: translateX(78px);
    height: 100%;
    width: 30px;
    background-color: var(--main-cl);
    display: flex;
    align-items: center;
    justify-content: center;
}
.button .svg {
    width: 16px;
    fill: #fff;
}
.button:hover .button__text {
    color: rgba(0, 0, 0, 0);
}
.button:hover .button__icon {
    width: 100%;
    transform: translateX(0);
}
.gold {
    padding: 158px 0 0;
    position: relative;
    z-index: 1;
}
.gold::before {
    content: "";
    position: absolute;
    background: url("../images/gold_dc1.png") center no-repeat;
    background-size: cover;
    width: 349px;
    height: 356px;
    top: -110px;
    right: max(-140px, 50% - 1100px);
    z-index: -1;
}
.gold::after {
    content: "";
    position: absolute;
    background: url("../images/gold_dc_bg.png") center no-repeat;
    background-size: cover;
    width: 143px;
    height: 160px;
    bottom: -40px;
    left: 40%;
    transform: translate(-50%, 0);
    z-index: -1;
}
.gold__frame {
    max-width: 1649px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}
.gold__frame::before {
    content: "";
    position: absolute;
    background: url("../images/gold_dc2.png") center no-repeat;
    background-size: cover;
    width: 185px;
    height: 188px;
    top: 60px;
    bottom: 0;
    margin: auto;
    left: 0;
    z-index: -1;
}
.gold .ttl_sub {
    flex-shrink: 0;
}
.gold__content .desc {
    margin-bottom: 66px;
}
.gold__info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.gold__info .col {
    font-size: max(1.5vw, 14px);
}
.gold__info p {
    line-height: 1em;
}
.gold__info .num {
    font-weight: 300;
    font-size: 5.555em;
    color: var(--main-cl);
    font-family: var(--font-jakarta);
    margin-bottom: 0.16em;
}
.gold__info .txt {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 3.333em;
}
.gold__info .ttl {
    color: var(--main-cl);
    font-size: 1.388em;
    line-height: 1.2em;
    font-weight: bold;
}
.gold__bg {
    margin: -4% auto 0;
    text-align: center;
    position: relative;
    z-index: -1;
}
.gold__bg img {
    width: 100%;
}
.about {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}
.about.sec__animation .about__card .item.item2 .avatar__list .avt {
    opacity: 1;
    transform: translateX(0);
}
.about.sec__animation .about__card .item.item3::before {
    animation: zoomup 1s ease forwards;
}
.about::before {
    content: "";
    position: absolute;
    background: url("../images/about_bg.png") top left repeat;
    background-size: cover;
    width: 100%;
    height: 1236px;
    z-index: -1;
    top: -110px;
    left: 0;
}
.about__frame {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 73px;
}
.about__content .title h2 {
    margin-bottom: 20px;
}
.about__card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 128px;
    border-bottom: 1px solid rgba(38, 37, 42, 0.2);
}
.about__card .item {
    --bg-item-1: linear-gradient(135deg, rgba(33, 17, 97, 1) 0%, rgba(45, 8, 191, 1) 100%);
    --bg-item-3: #cf9b21;
    --space-left-right: 30px;
    position: relative;
    z-index: 1;
    width: calc(33.3333333333% - 22px);
    max-width: 570px;
    min-width: 300px;
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}
.about__card .item.item1 {
    background: var(--bg-item-1);
}
.about__card .item.item2 {
    justify-content: flex-start;
}
.about__card .item.item2 * {
    color: var(--bg-item-3);
}
.about__card .item.item2 .cnt {
    margin-bottom: 30px;
}
.about__card .item.item2 .img {
    padding: 0 var(--space-left-right) 30px;
}
.about__card .item.item2 .avatar__list {
    display: flex;
    gap: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}
.about__card .item.item2 .avatar__list .avt {
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.4s ease;
}
.about__card .item.item2 .avatar__list .avt:nth-child(2) {
    transition-delay: 0.8s;
}
.about__card .item.item2 .avatar__list .avt:nth-child(3) {
    transition-delay: 0.95s;
}
.about__card .item.item2 .avatar__list .avt:nth-child(4) {
    transition-delay: 1.05s;
}
.about__card .item.item2 .transactions {
    font-size: 22px;
}
.about__card .item.item2 .transactions .num {
    font-size: 4.545em;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 600;
}
.about__card .item.item2 .transactions .txt {
    font-size: 1em;
}
.about__card .item.item3 {
    background: var(--bg-item-3);
}
.about__card .item.item3::before {
    content: "";
    position: absolute;
    background: url("../images/about_card3_dc.png") center no-repeat;
    background-size: cover;
    width: 73.944%;
    aspect-ratio: 1/0.89;
    bottom: -250px;
    left: -250px;
    z-index: -1;
}
.about__card .item.item3 * {
    color: #fff;
}
.about__card h3 {
    font-size: 30px;
    line-height: 1.2em;
    margin-bottom: 21px;
    font-weight: bold;
}
.about__card .cnt {
    padding: 61px var(--space-left-right) 0;
}
.about__card .cnt * {
    color: #eab333;
}
.about__card .cnt p {
    font-size: 17px;
}
.about__card .cnt .btn {
    text-align: left !important;
}
.about__card .cnt .btn a {
    font-size: 15px !important;
    padding: 10px 24px !important;
}
@keyframes zoomup {
    to {
        bottom: 0;
        left: 0;
    }
}
.products__frame {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 20px;
    margin-bottom: 20px;
}
.products__tabs .ttl_sub {
    margin-bottom: 40px;
}
.products__tabs .tabs {
    display: flex;
    gap: 64px;
}
.products__tabs .tabs .item {
    font-size: 14px;
    padding-bottom: 5px;
    cursor: pointer;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
}
.products__tabs .tabs .item span {
    font-size: 1.285em;
    display: block;
    font-weight: 800;
    color: var(--main-cl);
}
.products__tabs .tabs .item.active {
    border-color: var(--main-cl);
}
.products .tabs__content {
    display: none;
}
.products .tabs__content .tradingview-widget-container,
.products .tabs__content iframe {
    max-width: 100%;
}
.products .tabs__content.active {
    display: block;
}
.products__content {
    padding: 15px;
    border-radius: 20px;
    background-color: #fff;
}
.simple.sec__animation .simple__img::before {
    animation: showDecor 2s ease forwards;
}
.simple__frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 166px 19px 0 30px;
    position: relative;
    z-index: 1;
}
.simple__frame::before {
    content: "";
    position: absolute;
    background: #cf9b21;
    background: linear-gradient(
        180deg,
        rgba(207, 155, 33, 0) 0%,
        rgba(207, 155, 33, 0.01) 17%,
        rgba(207, 155, 33, 0.06) 41%,
        rgba(207, 155, 33, 0.28) 63%,
        rgba(207, 155, 33, 0.35) 100%
    );
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}
.simple__content {
    padding-bottom: 30px;
}
.simple__content .title {
    margin-bottom: 74px;
}
.simple__content .tabs {
    display: flex;
    gap: 43px;
    margin-bottom: 43px;
}
.simple__content .tabs .item {
    font-family: var(--font-jakarta);
    font-size: 25px;
    line-height: 1em;
    color: var(--main-cl);
    font-weight: 500;
    opacity: 0.5;
}
.simple__content .tabs .item.active {
    opacity: 1;
    border-bottom: 1px solid var(--main-cl);
}
.simple__content .tabs__content {
    padding-bottom: 58px;
    margin-bottom: 54px;
    position: relative;
    z-index: 1;
}
.simple__content .tabs__content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(207, 155, 33, 0.5);
    bottom: 0;
    left: 0;
    z-index: -1;
}
.simple__content .tabs__content .item > *:not(:last-child) {
    margin-bottom: 21px;
}
.simple__bnr {
    display: flex;
    justify-content: center;
    gap: 23px;
}
.simple__bnr p {
    transition: all 0.2s ease-in-out;
    border: 1px solid #a67936;
    border-radius: 13px;
}
.simple__img {
    position: relative;
    z-index: 2;
    pointer-events: none;
    align-self: flex-end;
    width: 240px;
    max-width: 100%;
    margin: 0 auto;
}
.simple__img::before {
    content: "";
    position: absolute;
    background: url("../images/simple_dc.png") center no-repeat;
    background-size: cover;
    width: 0;
    height: 0;
    bottom: 0;
    left: -10%;
    z-index: -1;
    pointer-events: none;
}
.copy {
    position: relative;
    z-index: 1;
    padding-top: 150px;
}
.copy__frame {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(38, 37, 42, 0.2);
}
.copy__content {
    width: 71%;
    max-width: 994px;
    margin-left: auto;
}
.copy__img {
    margin-left: max((100vw - 100%)/-2, 50% - 960px);
    margin-top: -12%;
    width: 45%;
    max-width: 790px;
    position: relative;
    z-index: 1;
}
.copy__img--dc img {
    position: absolute;
    animation: upDown 2s ease-in-out infinite alternate;
    z-index: -1;
    pointer-events: none;
}
.copy__img--dc .dc1 {
    top: 54%;
    left: 14%;
}
.copy__img--dc .dc2 {
    top: 0;
    left: 38%;
}
.copy__img--dc .dc3 {
    right: 12%;
    top: 63%;
    animation: upDown2 2s ease-in-out infinite alternate;
}
.copy .title {
    margin-bottom: 51px;
}
.copy .title h2 {
    margin-bottom: 17px;
}
.copy__plan {
    display: flex;
    counter-reset: section;
}
.copy__plan .item {
    width: 50%;
}
.copy__plan .item:not(:last-child) {
    padding-right: 40px;
    margin-right: 40px;
    border-right: 1px solid #e3e3e3;
}
.copy__plan .item .ttl {
    font-size: 22px;
    line-height: 1.1363em;
    color: var(--main-cl);
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}
.copy__plan .item .ttl::before {
    counter-increment: section;
    content: counter(section, decimal-leading-zero);
    font-size: 75px;
    font-weight: bold;
    font-family: var(--font-jakarta);
    top: -10px;
    left: 0;
    z-index: -1;
    line-height: 1em;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #211161;
    margin-right: 10px;
}
.copy__plan .item .ttl h3 {
    font-size: 1em;
}
.copy__plan .item .ttl span {
    display: block;
    font-size: 80%;
    line-height: 1.667em;
    color: initial;
    font-weight: 400;
}
.copy__plan .item .list {
    margin-bottom: 30px;
}
.copy__plan .item .normal__link a {
    color: var(--main-cl);
    font-weight: 600;
    font-size: 16px;
    padding-right: 37px;
    position: relative;
    z-index: 1;
    display: block;
}
.copy__plan .item .normal__link a::before {
    content: "";
    position: absolute;
    background: url("../images/ic_arrow_right.png") center no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
    z-index: -1;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
@keyframes upDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-80px);
    }
}
@keyframes upDown2 {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-150px);
    }
}
.multiply {
    padding-top: 88px;
}
.multiply .title {
    margin-bottom: 40px;
}
.multiply__boxs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}
.multiply__boxs .item {
    width: 100%;
    max-width: 100%;
    background-color: rgba(252, 243, 221, 0.5);
    border: 1px solid rgba(255, 235, 204, 0.5);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.multiply__boxs .item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #211161;
}
.partner {
    padding-top: 30px;
}
.partner__frame {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 40px;
}
.partner__title .title {
    margin-bottom: 30px;
}
.partner__title .cnt {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}
.partner__title .cnt .item h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #211161;
    font-weight: bold;
}
.partner__content .partner__list {
    counter-reset: section_partner;
}
.partner__content .partner__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding-bottom: 17px;
}
.partner__content .partner__list li:not(:last-child) {
    margin-bottom: 17px;
    border-bottom: 1px solid rgba(38, 37, 42, 0.2);
}
.partner__content .partner__list li .num {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    width: 60px;
    overflow: hidden;
    flex-shrink: 0;
}
.partner__content .partner__list li .num::before {
    counter-increment: section_partner;
    content: counter(section_partner, decimal-leading-zero);
    font-family: var(--font-jakarta);
    letter-spacing: -1px;
    color: var(--main-cl);
    font-size: 30px;
    width: 60px;
    display: block;
    flex-shrink: 0;
    font-weight: 400;
}
.partner__img {
    margin-top: -17%;
    margin-bottom: -10%;
    width: 160vw;
    margin-left: max((100vw - 100%)/-2, 50% - 960px);
    mix-blend-mode: multiply;
    pointer-events: none;
    position: relative;
    z-index: 1;
}
.partner__img svg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100vw;
    height: auto;
}
.partner__slide {
    display: flex;
    gap: 185px;
}
.partner__slide li {
    color: #e5d6b3;
    font-size: 100px;
    letter-spacing: -5px;
    font-weight: bold;
    line-height: 1.35em;
    white-space: nowrap;
}
.partner svg {
    direction: rtl;
}
.partner.sec__animation path {
    animation: dash 1.5s linear forwards;
}
.partner path {
    fill: none;
    stroke-dasharray: 1830;
    stroke-dashoffset: -1830;
    opacity: 1;
}
@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes partner_hover {
    from {
        opacity: 1;
        transform: translateX(0px);
    }
    to {
        opacity: 0;
        transform: translateX(60px);
    }
}
.empowered {
    padding-top: 50px;
}
.empowered__frame {
    position: relative;
    z-index: 1;
    padding: 112px 30px 30px;
    height: 100%;
    min-height: 936px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 50px;
}
.empowered__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
}
.empowered__bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 30px;
}
.empowered__bg video {
    height: 100%;
    z-index: -1;
    pointer-events: none;
    object-fit: cover;
    border-radius: 30px;
}
.empowered__bg .btn {
    position: absolute;
    top: 82px;
    right: 15px;
}
.empowered__content {
    position: relative;
    z-index: 2;
}
.empowered .title {
    margin-bottom: 89px;
}
.empowered .title * {
    color: #fff;
}
.empowered__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.empowered__list .item {
    color: #fff;
    font-size: 18px;
    font-family: var(--font-jakarta);
}
.empowered__slide {
    position: relative;
    z-index: 2;
    padding-top: 40px !important;
}
.empowered__slide::before {
    content: "";
    position: absolute;
    background-color: hsla(0, 0%, 100%, 0.3);
    width: 100vw;
    height: 1px;
    z-index: -1;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
}
.empowered__logo li {
    margin: 0 58px !important;
}
.transactions {
    padding-top: 50px;
    margin-bottom: 50px;
}
.transactions__frame {
    position: relative;
    z-index: 1;
}
.transactions .title {
    margin-bottom: 30px;
}
.transactions__step {
    position: relative;
    z-index: 1;
    padding: 30px 0;
    margin-bottom: 30px;
}
.transactions__step::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: rgba(207, 155, 33, 0.2);
    top: 0;
    left: 54px;
}
.transactions__step li {
    display: flex;
}
.transactions__step li:not(:last-child) {
    margin-bottom: 20px;
}
.transactions__step li::before {
    font-size: 30px;
    line-height: 1.111em;
    font-weight: 500;
    color: #211161;
    margin-right: 9px;
    width: 41px;
    flex-shrink: 0;
}
.transactions__step li .cnt {
    padding-left: 30px;
}
.transactions__step li h3 {
    color: #211161;
    font-size: 20px;
    line-height: 1.4em;
    font-weight: bold;
    position: relative;
    z-index: 1;
}
.transactions__step li h3::before {
    content: "";
    position: absolute;
    background-color: var(--main-cl);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 13px;
    left: -30px;
    z-index: -1;
}
.transactions__img {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 1;
    width: max(35%, 280px);
    max-width: 607px;
    margin: 30px auto 0;
}
.transactions__img::before {
    content: "";
    position: absolute;
    background: url("../images/transactions_img_dc.png") center no-repeat;
    background-size: cover;
    width: 218px;
    height: 222px;
    top: 48%;
    left: -218px;
    transform: translate(0, -50%);
    pointer-events: none;
    z-index: -1;
}
.transactions__img .img1 {
    animation: upDownPhone 2s ease-in-out infinite alternate;
    width: 52%;
    max-width: 312px;
}
.transactions__img .img2 {
    animation: upDownPhone2 2s ease-in-out infinite alternate;
    width: 49%;
    max-width: 297px;
}
.transactions .btn {
    text-align: center;
}
@keyframes upDownPhone {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-40px);
    }
}
@keyframes upDownPhone2 {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-30px);
    }
}
.traders.sec__animation .traders__img::before {
    animation: showDecor2 2s ease forwards;
}
.traders__frame {
    position: relative;
    z-index: 1;
    padding: 50px 30px;
    min-height: 1073px;
    overflow: hidden;
}
.traders__frame::before {
    content: "";
    position: absolute;
    background: #cf9b21;
    background: linear-gradient(
        180deg,
        rgba(207, 155, 33, 0.35) 0%,
        rgba(207, 155, 33, 0.28) 37%,
        rgba(207, 155, 33, 0.06) 59%,
        rgba(207, 155, 33, 0.01) 83%,
        rgba(207, 155, 33, 0) 100%
    );
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}
.traders__frame::after {
    content: "";
    position: absolute;
    background: url("../images/traders_dc1.png") center no-repeat;
    background-size: cover;
    width: 96px;
    height: 204px;
    top: 60px;
    right: 0;
    z-index: -1;
}
.traders__content {
    margin-left: auto;
    position: relative;
    z-index: 1;
}
.traders__content::before {
    content: "";
    position: absolute;
    background: url("../images/traders_dc2.png") center no-repeat;
    background-size: cover;
    width: 164px;
    height: 165px;
    bottom: -5%;
    left: 50%;
    z-index: -1;
    pointer-events: none;
}
.traders__content .title {
    margin-bottom: 26px;
}
.traders__content .cnt {
    margin-bottom: 27px;
}
.traders__list h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 7px;
}
.traders__list li {
    position: relative;
    z-index: 1;
    padding-left: 34px;
}
.traders__list li:not(:last-child) {
    margin-bottom: 22px;
}
.traders__list li::before {
    content: "";
    position: absolute;
    background-color: var(--main-cl);
    width: 19px;
    height: 19px;
    border-radius: 50%;
    top: 2px;
    left: 0;
    z-index: -1;
}
.traders__list li::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid rgba(207, 155, 33, 0.2);
    top: -1px;
    left: -3px;
    z-index: -1;
}
.traders__img {
    width: calc(100% + 60px);
    margin-left: -30px;
    position: relative;
    z-index: 1;
}
.traders__img::before {
    content: "";
    position: absolute;
    background: url(../images/simple_dc.png) center no-repeat;
    background-size: cover;
    width: 0;
    height: 0;
    bottom: 120px;
    left: 40px;
    z-index: -1;
    pointer-events: none;
}
@keyframes showDecor2 {
    from {
        width: 0;
        height: 0;
        opacity: 0;
    }
    to {
        width: 80%;
        height: 80%;
        opacity: 1;
    }
}
.faq {
    position: relative;
    z-index: 2;
}
.faq__frame {
    background-color: #fff;
    border-radius: 30px;
}
.faq__content {
    margin: 30px;
}
.faq__content .title {
    margin-bottom: 24px;
}
.faq__img {
    width: 50%;
}
.faq__img img {
    border-radius: 30px;
}
.faq__list .item {
    border-top: 1px solid rgba(38, 37, 42, 0.2);
    padding: 16px 0;
}
.faq__list h3 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.59em;
}
.faq__list .cnt {
    margin-top: 14px;
    display: none;
}
.faq__list .cnt.active {
    display: block;
}
.faq__list .cnt > * {
    font-size: 16px;
}
.faq__list .cnt > *:not(:last-child) {
    margin-bottom: 15px;
}
.our {
    position: relative;
    z-index: 1;
    padding: 141px 0;
}
.our::before {
    content: "";
    position: absolute;
    background: url("../images/our_dc.png") center no-repeat;
    background-size: cover;
    width: 235px;
    height: 239px;
    top: 3%;
    left: 18%;
}
.our__title {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.our__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.our__content .item__main {
    --space-bottom: 30px;
    position: relative;
    z-index: 1;
    background-color: var(--main-cl);
    border-radius: 30px;
    overflow: hidden;
    padding: 30px 30px var(--space-bottom);
    display: flex;
    flex-direction: column;
}
.our__content .item__main .link_full {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
}
.our__content .item__main::before {
    content: "";
    position: absolute;
    background: url("../images/our_main_dc.png") center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    border-radius: 30px;
}
.our__content .item__main * {
    color: #fff;
}
.our__content .item__main h3 {
    font-size: 45px;
    line-height: 1.222em;
    margin-bottom: 17px;
    font-weight: bold;
}
.our__content .item__main .img {
    text-align: center;
    margin-bottom: calc(var(--space-bottom) * -1);
    margin-left: 30%;
    margin-top: auto;
}
.our__content .item__main .desc p {
    font-size: 22px;
}
.our__content .item__sub {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px 17px;
}
.item__sub > .box:nth-child(1),
.item__sub > .box:nth-child(2) {
    grid-column: span 3;
}
.item__sub > .box:nth-child(n + 3) {
    grid-column: span 2;
}
.our__content .item__sub .box {
    border: 1px solid rgba(207, 155, 33, 0.5);
    border-radius: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}
.our__content .item__sub .box h3 {
    font-size: 25px;
    line-height: 1.4em;
    margin-bottom: 10px;
    font-weight: bold;
    color: #211161;
}
@keyframes showDecor {
    from {
        width: 0;
        height: 0;
        opacity: 0;
    }
    to {
        width: 130%;
        height: 100%;
        opacity: 1;
    }
}
.licenses {
    padding: 50px 0;
}
.licenses__content {
    display: flex;
    gap: 20px;
    border: 1px solid rgba(207, 155, 33, 0.2);
    border-radius: 20px;
    overflow: hidden;
}
.licenses__content:not(:last-child) {
    margin-bottom: 50px;
}
.licenses__img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    gap: 20px;
    padding: 20px;
    background-color: rgba(207, 155, 33, 0.2);
}
.licenses__img a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #fff;
    height: 100%;
}
.licenses__img a img {
    border-radius: 20px;
}
.licenses__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    background-color: rgba(207, 155, 33, 0.2);
}
.licenses__slide .licenses__img {
    display: block;
    width: auto;
    background-color: rgba(0, 0, 0, 0);
}
.licenses__slide .licenses__img a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.licenses__slide .licenses__img a img {
    width: auto;
    max-height: 500px;
}
.licenses__slide .licenses__img .swiper-wrapper {
    margin-bottom: 20px;
}
.licenses__desc {
    width: 50%;
    padding: 20px;
    flex-grow: 1;
    align-self: center;
}
.licenses__desc h2 {
    margin-bottom: 15px;
}
.licenses__desc .desc p:not(:last-child) {
    margin-bottom: 10px;
}
.contact__page .mainvs__h1 {
    max-width: 1774px;
    justify-content: space-between;
}
.contact__page .mainvs__video img {
    height: 100%;
}
.contact__page .mainvs__h1 h1 {
    width: auto;
}
.ready {
    position: relative;
    z-index: 1;
    padding: 157px 0 0;
}
.ready::before {
    content: "";
    position: absolute;
    background: url(../images/gold_dc1.png) center no-repeat;
    background-size: cover;
    width: 349px;
    height: 356px;
    top: -110px;
    right: max(-140px, 50% - 1100px);
    z-index: 1;
}
.ready__frame {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 0;
}
.ready__content .title {
    margin-bottom: 82px;
}
.ready__content .title h2 {
    margin-bottom: 16px;
}
.ready__company {
    display: flex;
}
.ready__company ul {
    min-width: 300px;
    max-width: 345px;
}
.ready__company ul li:not(:last-child) {
    margin-bottom: 20px;
}
.ready__company ul li a {
    color: #26252a;
}
.ready__company ul li .ttl {
    font-size: 25px;
    font-weight: bold;
    line-height: 1.4em;
    margin-bottom: 8px;
    color: #211161;
}
.ready__form {
    background-color: var(--main-cl);
    border-radius: 30px;
    padding: 52px 40px;
}
.ready__form h3 {
    color: #fff;
    font-family: var(--font-jakarta);
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2em;
    margin-bottom: 21px;
}
.ready__form .desc {
    margin-bottom: 20px;
}
.ready__form .desc p {
    color: #fff;
}
.ready__map {
    position: relative;
    z-index: 1;
}
.ready__map::before {
    content: "";
    position: absolute;
    background: #fef9ed;
    background: linear-gradient(180deg, rgba(254, 249, 237, 0) 0%, rgb(254, 249, 237) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
.ready__map iframe {
    width: 100%;
    height: 500px;
    filter: grayscale(1);
    border-radius: 30px;
}
.ready__slide {
    position: absolute !important;
    z-index: 2;
    bottom: 0;
}
.ready__slide .endless_slide {
    display: flex;
    gap: 185px;
}
.ready__slide .endless_slide li {
    white-space: nowrap;
    color: #e5d6b3;
    font-size: 100px;
    font-weight: bold;
    line-height: 1em;
}
.contact__form td {
    border: 0;
    padding: 0 0 20px;
}
.contact__form td input,
.contact__form td textarea {
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    border-bottom: 1px solid #fff;
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-jakarta);
    padding-bottom: 23px;
    line-height: 2em;
    color: #fff;
}
.contact__form td input::placeholder,
.contact__form td textarea::placeholder {
    color: #fff;
    opacity: 1;
}
.contact__form .btn a {
    text-transform: uppercase;
}
.platform__page {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.platform__page .mainvs__video img {
    width: 100%;
    height: 100%;
}
.platform__page .mainvs__video::before {
    display: none;
}
.platform__page .mainvs__h1 {
    flex-direction: column;
    margin-bottom: 0;
}
.platform__page .mainvs__h1 h1 {
    margin-bottom: 24px;
}
.platform__page .mainvs__h1 .desc p {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.454em;
    text-align: center;
}
.platform {
    position: relative;
    z-index: 1;
    margin-top: -235px;
}
.platform__content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}
.platform__content .img {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.platform__content ul {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
}
.platform__content ul li {
    width: calc(33.3333333333% - 20px);
    max-width: 300px;
    padding: 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4em;
}
.platform__content ul li:nth-child(odd) {
    background-color: var(--main-cl);
    color: #fff;
    border: 1px solid #a67936;
}
.platform__content ul li:nth-child(even) {
    background-color: #fff;
    color: var(--main-cl);
    border: 1px solid #ffebcc;
}
.platform__content ul li span {
    display: block;
}
.platform__content ul li .icon {
    margin-bottom: 20px;
}
.download {
    --space-top-bot: 70px;
    --space-left-right: 30px;
    padding: 100px 0;
}
.download__frame {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    padding: 35px var(--space-left-right);
}
.download__frame::before {
    content: "";
    position: absolute;
    background: url("../images/download_bg.jpg") center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 30px;
    z-index: -1;
    pointer-events: none;
}
.download__content {
    width: 50%;
    max-width: 725px;
    margin-left: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: calc(var(--space-top-bot) * 2);
}
.download__content .simple__bnr p {
    background: rgba(255, 236, 206, 0.2);
}
.download__content .title {
    margin-bottom: 20px;
}
.download__content .title h2 {
    font-size: 64px;
    line-height: 1.25em;
}
.download__content .desc {
    margin-bottom: 40px;
}
.download__content * {
    color: #fff;
}
.download__slide {
    margin: auto calc(var(--space-left-right) * -1) 0;
    padding: var(--space-top-bot) 0 calc(var(--space-top-bot) - 20px);
}
.download__slide li {
    margin: 0 58px !important;
}
.download .copy__img {
    position: absolute;
    left: 0;
    width: 54%;
    max-width: 1050px;
    bottom: 0;
    top: 16%;
}
.download .copy__img > img {
    width: 970px;
}
/* Platform Trading */
.platformtrade__page .mainvs__h1 h1 {
    flex-direction: column;
    max-width: max(min(calc(1318 / 1920 * 100vw), 1318px), 680px);
}
.platformtrade__page .mainvs__h1 h1 .ttl2 {
    margin-left: 0;
    letter-spacing: 0;
}
.platformtrade__page .mainvs__video {
    overflow: hidden;
}
.platformtrade__page .mainvs__video img {
    height: 100%;
}
.platformtrade__page .mainvs__h1 .btn {
    position: static;
}
.platformtrade__page .mainvs__h1 .desc {
    align-self: flex-end;
    padding-bottom: 30px;
}
.platformtrade__page .mainvs__h1 {
    gap: 100px;
}
.copytrading {
    padding: 195px 0;
}
.copytrading__frame {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.copytrading__frame::before {
    content: "";
    position: absolute;
    background: url("../images/copytrading_dc.png") center no-repeat;
    background-size: cover;
    width: 915px;
    height: 878px;
    bottom: -180px;
    left: 45%;
    transform: translateX(-50%);
    z-index: -1;
    animation: copytradingupDown 2s ease-in-out infinite alternate;
}
@keyframes copytradingupDown {
    from {
        transform: translate(-50%, 0);
    }
    to {
        transform: translate(-50%, -80px);
    }
}
.copytrading__frame .title {
    max-width: 515px;
    width: 30%;
}
.copytrading__frame .title h2 {
    margin-bottom: 40px;
}
.copytrading__content {
    width: 57%;
    max-width: 1007px;
    border-top: 1px solid rgba(38, 37, 42, 0.2);
}
.copytrading__content .item {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(38, 37, 42, 0.2);
    padding: 45px 0;
}
.copytrading__content .item .txt {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.333em;
    color: #26252a;
}
.copytrading__content .item .num {
    color: var(--main-cl);
    font-size: 120px;
    font-family: var(--font-jakarta);
    font-weight: 600;
    line-height: 1.258em;
}
.aboutCopyTrading {
    position: relative;
    z-index: 1;
    padding-bottom: 404px;
}
.aboutCopyTrading__frame {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.aboutCopyTrading::before {
    content: "";
    position: absolute;
    background: url("../images/aboutcopytrading_bg.png") center no-repeat;
    background-size: cover;
    width: 1920px;
    height: 1267px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
}
.aboutCopyTrading::after {
    content: "";
    position: absolute;
    background: url("../images/aboutcopytrading_dc.png") center no-repeat;
    background-size: cover;
    width: 528px;
    height: 510px;
    bottom: 0;
    left: -150px;
    z-index: -1;
}
.aboutCopyTrading__content {
    width: 70%;
    max-width: 1024px;
}
.aboutCopyTrading__content .title {
    margin-bottom: 50px;
}
.aboutCopyTrading__content .title h2 {
    margin-bottom: 28px;
}
.aboutCopyTrading__boxs {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.aboutCopyTrading__boxs .item {
    max-width: 484px;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
}
.aboutCopyTrading__boxs .item .info {
    --space-left: 24px;
    padding: 35px;
}
.aboutCopyTrading__boxs .item .info > .ttl {
    font-size: 25px;
    font-weight: bold;
    color: #211161;
    position: relative;
    z-index: 1;
    padding-left: var(--space-left);
}
.aboutCopyTrading__boxs .item .info > .ttl::before {
    content: "";
    position: absolute;
    background-color: #211161;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 30%;
    left: 0;
    z-index: -1;
}
.aboutCopyTrading__boxs .item .info .desc {
    margin-bottom: 25px;
    padding-left: var(--space-left);
}
.aboutCopyTrading__boxs .item .info .list .ttl {
    font-size: 22px;
    font-weight: 600;
    color: var(--main-cl);
    text-decoration: underline;
    margin-bottom: 20px;
}
.aboutCopyTrading__boxs .item .info .list {
    padding-left: var(--space-left);
}
.aboutCopyTrading__boxs .item .info .list li {
    font-size: 16px;
    line-height: 1.25em;
    padding-left: 40px;
    position: relative;
    z-index: 1;
}
.aboutCopyTrading__boxs .item .info .list li::before {
    content: "";
    position: absolute;
    background: url("../images/ic_check.png") center no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
    left: 0;
    top: -2px;
    z-index: -1;
}
.aboutCopyTrading__boxs .item .info .list li:not(:last-child) {
    margin-bottom: 14px;
}
.stepCopyTrading__tabs--content {
    position: relative;
    z-index: 1;
}
.stepCopyTrading .cnt {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.stepCopyTrading .cnt .item {
    display: none;
}
.stepCopyTrading__tabs {
    margin-bottom: 70px;
}
.stepCopyTrading .cnt .item.active {
    display: grid;
}
.stepCopyTrading__tabs--content .col2 {
    max-width: 264px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.stepCopyTrading__tabs--content .col2 .swiper {
    border-radius: 50px;
    margin-bottom: 60px;
}
.stepCopyTrading__tabs--content .col2 .drag {
    text-align: center;
}
.stepCopyTrading__tabs--content .col2 .drag span {
    position: relative;
    z-index: 1;
    padding-left: 64px;
}
.stepCopyTrading__tabs--content .col2 .drag span::before {
    content: "";
    position: absolute;
    background: url("../images/ic_drag.png") center no-repeat;
    background-size: cover;
    width: 56px;
    height: 30px;
    top: -4px;
    left: 0;
    z-index: -1;
}
.step-pagination {
    display: flex;
    gap: 20px;
    align-items: center;
}
.step-pagination__item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.step-pagination__item .num {
    font-weight: 600;
    opacity: 0.4;
    transition: 0.3s;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-jakarta);
    font-size: 18px;
    font-weight: 500;
}
.step-pagination__item .text {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transition: 0.4s ease;
    font-size: 18px;
    font-family: var(--font-jakarta);
    font-weight: 500;
    color: #fff;
}
.step-pagination__item:hover .text,
.step-pagination__item.active .text {
    max-width: 300px;
    opacity: 1;
}
.step-pagination__item.active .num {
    opacity: 1;
}
.step-pagination__item .text {
    transform: translateX(-10px);
}
.step-pagination__item:hover .text,
.step-pagination__item.active .text {
    transform: translateX(0);
}
.stepCopyTrading__tabs--content {
    display: none;
}
.stepCopyTrading__tabs--content.active {
    display: block;
}
.stepCopyTrading__tabs--content .item .col1 {
    margin-top: 67px;
    padding-top: 40px;
    border-top: 1px solid #fff;
    max-width: 450px;
}
.stepCopyTrading__tabs--content .item .col3 {
    max-width: 450px;
}
.stepCopyTrading__tabs--content .item .col3 .btn,
.stepCopyTrading__tabs--content .item .col1 .btn {
    margin-top: 30px;
}
.stepCopyTrading .cnt .item[data-index="0"] .col3 {
    position: absolute;
    bottom: 0;
    right: 0;
}
.stepCopyTrading .cnt .item[data-index="1"] {
    grid-column: 3;
}
.stepCopyTrading .cnt .item[data-index="0"] .col3 {
    position: absolute;
    bottom: 100px;
    right: 0;
}
.stepCopyTrading .cnt .item[data-index="1"] .col3 {
    position: absolute;
    bottom: 100px;
    left: 0;
}
.stepCopyTrading .cnt .item[data-index="2"] .col3 {
    position: absolute;
    bottom: 100px;
    right: 0;
}
.stepCopyTrading__tabs--content .col2::before {
    content: "";
    position: absolute;
    background: url("../images/mockup.png") center no-repeat;
    background-size: cover;
    width: 298px;
    height: 588px;
    top: 43.3%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.stepCopyTrading__tabs--content .ttl__step {
    font-size: 16px;
    margin-bottom: 10px;
}
.stepCopyTrading__tabs--content h3 {
    font-size: 30px;
    font-weight: bold;
    font-family: var(--font-jakarta);
    margin-bottom: 20px;
}
.stepCopyTrading {
    padding: 69px 125px;
    background: #211161;
    background: linear-gradient(130deg, rgba(33, 17, 97, 1) 0%, rgba(45, 8, 191, 1) 100%);
}
.stepCopyTrading .title {
    margin-bottom: 30px;
}
.stepCopyTrading .title h2 {
    color: #fff;
}
.stepCopyTrading__tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.stepCopyTrading__tabs .item {
    display: block;
    padding: 12px 24px;
    font-family: var(--font-jakarta);
    font-weight: 500;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 60px;
    opacity: 0.5;
}
.stepCopyTrading__tabs .item.active {
    opacity: 1;
}
.stepCopyTrading__tabs--content p,
.stepCopyTrading__tabs--content a {
    color: #fff;
}
.stepCopyTrading__tabs--content .ttl__step {
    font-size: 16px;
    font-family: var(--font-jakarta);
    opacity: 0.7;
}
.stepCopyTrading__tabs--content h3 {
    color: #fff;
    font-size: 30px;
    font-family: var(--font-jakarta);
    font-weight: bold;
}
.stepCopyTrading__tabs--content .col1 {
    max-width: 450px;
}
.whyCopyTrading {
    padding: 84px 0;
    border-bottom: 1px solid rgba(38, 37, 42, 0.2);
}
.whyCopyTrading__title {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.whyCopyTrading__title .tabs {
    display: flex;
    align-items: center;
    align-self: flex-end;
    gap: 20px;
}
.whyCopyTrading__title .tabs .youare {
    margin-right: 20px;
    align-self: flex-end;
    flex-shrink: 0;
}
.whyCopyTrading__title .tabs .item {
    font-family: var(--font-jakarta);
    font-weight: 500;
    border: 1px solid #26252a;
    color: #26252a;
    border-radius: 60px;
    padding: 12px 24px;
    opacity: 0.3;
    margin-bottom: 0;
    cursor: pointer;
}
.whyCopyTrading__title .tabs .item.active {
    opacity: 1;
    border: 1px solid var(--main-cl);
    color: var(--main-cl);
}
.whyCopyTrading__content {
    background-color: rgba(255, 235, 204, 0.3);
    padding: 40px 50px;
    display: none;
}
.whyCopyTrading__content.active {
    display: block;
}
.whyCopyTrading__title {
    margin-bottom: 70px;
}
.whyCopyTrading__content table th,
.whyCopyTrading__content table td {
    border: 0;
    padding: 20px 30px;
}
.whyCopyTrading__content table td strong {
    margin-bottom: 10px;
    display: block;
}
.whyCopyTrading__content table tbody tr:nth-child(odd) {
    background-color: rgba(255, 235, 204, 0.5);
}
.whyCopyTrading__content th {
    color: #211161;
    font-size: 25px;
    font-weight: bold;
}
.whyCopyTrading__content td strong {
    font-size: 111.111%;
}
.topTrader {
    padding: 84px 0 0;
}
.topTrader__content {
    padding-bottom: 94px;
    border-bottom: 1px solid rgba(38, 37, 42, 0.2);
}
.topTrader .title .ttl_sub {
    flex-shrink: 0;
}
.topTrader .title h2 {
    max-width: 1120px;
}
.topTrader .title {
    margin-bottom: 30px;
}
.howCopyTrading {
    padding: 94px 0;
}
.howCopyTrading .container {
    padding-bottom: 140px;
    border-bottom: 1px solid rgba(38, 37, 42, 0.2);
}
.howCopyTrading__content {
    max-width: 575px;
}
.howCopyTrading__frame {
    border-radius: 50px;
    background: #ffebcc;
    background: linear-gradient(180deg, rgba(255, 235, 204, 1) 0%, rgba(255, 235, 204, 0) 100%);
    display: flex;
    gap: 124px;
    padding: 96px 125px 0;
}
.howCopyTrading__content .title {
    margin-bottom: 28px;
}
.howCopyTrading__content .desc {
    margin-bottom: 50px;
}
.howCopyTrading__content .desc p {
    font-size: 22px;
    line-height: 1.454em;
}
.faqCopyTrading__frame {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.faqCopyTrading__content {
    max-width: 1195px;
    width: 100%;
}
.faqCopyTrading__content .item {
    background-color: #fff;
    border-radius: 30px;
    padding: 30px 50px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.faqCopyTrading__content .item.open {
    background-color: #211161;
}
.faqCopyTrading__content .item.open * {
    color: #fff;
}
.faqCopyTrading__content .item:not(:last-child) {
    margin-bottom: 10px;
}
.faqCopyTrading__content .item .ttl {
    font-size: 22px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    padding-right: 45px;
}
.faqCopyTrading__content .item .ttl::before {
    content: "+";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    background: #cf9b21;
    background: linear-gradient(
        145deg,
        rgba(207, 155, 33, 1) 0%,
        rgba(200, 167, 89, 1) 50%,
        rgba(231, 209, 164, 1) 100%
    );
    color: #fff;
    font-weight: 300;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2px;
}
.faqCopyTrading__content .item.open .ttl::before {
    content: "-";
    padding-bottom: 8px;
}
.faqCopyTrading__content .item .desc {
    display: none;
    margin-top: 20px;
}
.faqCopyTrading__content .item .desc > *:not(:last-child) {
    margin-bottom: 15px;
}
.faqCopyTrading__content .item .desc ul li {
    position: relative;
    z-index: 1;
    padding-left: 30px;
}
.faqCopyTrading__content .item .desc ul li::before {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 14px;
    left: 10px;
    z-index: -1;
}
/* End Platform Trading */
/* Platform List */
.promotionsList__page {
    display: block;
    height: calc(100vh + 17px);
    background-color: #fcebcf;
}
.promotionsList__page .mainvs__img {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: 1920px;
    margin: 0 auto;
}
.promotionsList__page .mainvs__img img {
    height: 100%;
}
.promotionsList__page .mainvs__h1 {
    --space-left-right: 140px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: calc(100% - var(--space-left-right) * 2);
    display: block;
    margin: auto;
    height: max-content;
}
.promotionsList__page .mainvs__h1--date {
    color: #fff;
    padding: 4px 16px 4px 4px;
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    border-radius: 60px;
    margin-bottom: 24px;
}
.promotionsList__page .mainvs__h1--date span {
    padding-left: 48px;
    position: relative;
    z-index: 1;
    display: block;
    min-height: 40px;
    padding-top: 9px;
}
.promotionsList__page .mainvs__h1--date span::before {
    content: "";
    position: absolute;
    background: url("../images/ic_calendar.png") center no-repeat;
    background-size: cover;
    width: 40px;
    height: 40px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.promotionsList__page .mainvs__h1 h1 {
    justify-content: flex-start;
    margin-bottom: 10px;
    font-size: max(min(calc(70 / 1920 * 100vw), 70px), 40px);
    letter-spacing: 0;
    line-height: 1.257em;
}
.promotionsList__page .mainvs__h1--sub {
    color: #fff;
    margin-bottom: 30px;
}
.promotionsList__page .mainvs__h1 .btn {
    position: static;
}
.promotionsList {
    padding: 150px 0 70px;
}
.promotionsList .title h2 {
    text-align: center;
    margin-bottom: 56px;
}
.promotionsList__cate {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 68px;
}
.promotionsList__cate .item {
    padding: 11px 20px 9px;
    font-weight: 600;
    color: #26252a;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    cursor: pointer;
}
.promotionsList__cate .item.active {
    color: var(--main-cl);
    border-color: var(--main-cl);
}
.promotionsList__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px;
    margin-bottom: 89px;
}
.promotionsList__list:last-child {
    margin-bottom: 0;
}
.promotionsList__list .img {
    border-radius: 30px;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--main-cl);
}
.promotionsList__list .img picture {
    width: 100%;
    height: 100%;
}
.promotionsList__list .img img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.promotionsList__list .cate p {
    font-size: 14px;
    color: #666666;
    line-height: 1.785em;
    margin-bottom: 4px;
}
.promotionsList__list .ttl {
    color: #211161;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
}
.promotionsList__list .ttl span {
    text-decoration: underline;
}
.promotionsList__list .desc {
    margin-bottom: 20px;
}
.promotionsList__list .desc p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.promotionsList__list .date {
    display: inline-block;
    padding: 4px 16px 4px 4px;
    background-color: rgba(231, 209, 164, 0.2);
    border-radius: 60px;
    font-size: 16px;
    margin-top: auto;
}
.promotionsList__list .date span {
    padding-left: 42px;
    padding-top: 3px;
    position: relative;
    z-index: 1;
    display: inline-block;
    min-height: 30px;
}
.promotionsList__list .date span::before {
    content: "";
    position: absolute;
    background: url("../images/ic_calendar.png") center no-repeat;
    background-size: cover;
    width: 30px;
    height: 30px;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.promotionsList__list .item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.promotionsList__list .item .cnt {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.promotionsList__list .item > a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 30px;
}
.promotionsList__content .btn a {
    padding: 19px 45px;
    text-transform: uppercase;
    border: 0 !important;
    background: #cf9b21;
    background: linear-gradient(
        125deg,
        rgba(207, 155, 33, 1) 0%,
        rgba(200, 167, 89, 1) 50%,
        rgba(231, 209, 164, 1) 100%
    );
}
.promotionsList__tabs--content {
    display: none;
}
.promotionsList__tabs--content.active {
    display: block;
}
/* .promotionsList__list .item {
    display: none;
} */
/* End Platform List */
/* Product */
.product {
    padding-top: 101px;
}
.product__title {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 53px;
}
.product__title--tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.product__title--tabs .item {
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #26252a;
    font-weight: 600;
}
.product__title--tabs .item.active {
    color: var(--main-cl);
    border: 1px solid var(--main-cl);
}
.product__title--tabs .item .icon {
    display: block;
}
.product__title--tabs .item .icon img {
    width: 35px;
    height: 35px;
}
.product__tabs--title {
    display: flex;
    align-self: flex-end;
    gap: 30px;
}
.product__tabs--title .item {
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 20px;
    border-radius: 15px;
    min-width: 120px;
    cursor: pointer;
}
.product__tabs--title .item.active {
    border-color: var(--main-cl);
    color: var(--main-cl);
}
.product__tabs--title .item .icon {
    display: block;
    margin-bottom: 5px;
}
.product__banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 0;
}
.product__banner--left {
    position: relative;
    z-index: 2;
    margin-top: 10%;
}
.product__banner--center {
    margin: 0 -15% 0 -7%;
    position: relative;
    z-index: 1;
}
.product__banner--right {
    position: relative;
    margin-top: 5%;
}
/* ============New */
.product__content--tabs,
.dynamic__content {
    padding: 40px 50px;
    background-color: rgba(255, 235, 204, 0.3);
    border-radius: 30px;
}
.product__content--tabs .item,
.dynamic__content .item {
    display: none;
}
.product__content--tabs .item.active {
    display: block;
}
.product__content--tabs th,
.dynamic__content th {
    text-align: left;
    font-size: 25px;
    font-weight: bold;
    color: #211161;
}
.product__content--tabs th,
.product__content--tabs td,
.dynamic__content th,
.dynamic__content td {
    border: 0;
    padding: 20px 30px;
}
.product__content--tabs tbody tr:nth-child(odd),
.dynamic__content tbody tr:nth-child(odd) {
    background-color: rgba(255, 235, 204, 0.5);
}
/* End Product */
.dynamic {
    padding-top: 110px;
}
.dynamic__content + .note {
    margin-top: 30px;
}
.tbl__scroll {
    overflow-x: auto;
    max-height: 790px;
    padding-right: 25px;
}
.tbl__scroll::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
.tbl__scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
.tbl__scroll::-webkit-scrollbar-thumb {
    background: #211161;
}
.dynamic__content {
    padding: 40px 25px 40px 50px;
}
.dynamic__frame .title {
    margin-bottom: 40px;
}
/* Indices */
.indices__page .desc p {
    font-size: 24px;
}
.indices__page .mainvs__h1 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    margin: auto;
}
.indices__page .mainvs__video::before {
    display: none;
}
.indices__page .mainvs__h1 h1 {
    max-width: max(min(calc(810 / 1920 * 100vw), 810px), 600px);
    font-size: max(min(100 / 1920 * 100vw, 100px), 52px);
    letter-spacing: 0;
}
.indices__page .mainvs__h1 .desc {
    align-self: flex-start;
    gap: 40px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    color: #fff;
}
.indices__page {
    flex-direction: row-reverse;
    align-items: center;
}
.indices__page .mainvs__video {
    text-align: right;
    width: 69%;
    max-width: 1324px;
    display: flex;
}
.indices__page .mainvs__video img {
    margin-top: auto;
    height: auto;
}
.indices__page::after {
    content: "";
    position: absolute;
    background: url("../images/mainvs_indices.jpg") left center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    z-index: -1;
}
/* End Indices */
/* Advantage */
.advantage {
    padding-top: 141px;
}
.advantage__frame .title {
    margin-bottom: 119px;
}
.advantage__content {
    background: #211161;
    background: linear-gradient(135deg, rgba(33, 17, 97, 1) 0%, rgba(45, 8, 191, 1) 100%);
    padding: 0 0 0 5%;
    display: flex;
    justify-content: space-between;
    border-radius: 50px;
}
.advantage__list {
    padding: 79px 0;
}
.advantage__list li {
    color: #fff;
    width: 50%;
    max-width: 405px;
    padding-left: 60px;
    flex-shrink: 0;
}
.advantage__list ul {
    display: flex;
    gap: 10%;
}
.advantage__list ul:not(:last-child) {
    margin-bottom: 47px;
}
.advantage__list li .ttl {
    font-size: 25px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 10px;
}
.advantage__img {
    margin-top: -48px;
    display: flex;
    align-items: flex-end;
    width: 47%;
    max-width: 782px;
    position: relative;
    z-index: 1;
}
.advantage__img > div {
    position: relative;
    z-index: 1;
}
.advantage__img > div a {
    position: absolute;
    width: 28%;
    height: 8%;
    top: 59.5%;
    left: 32.5%;
    border-radius: 60px;
    font-size: 0.8vw;
    z-index: 3;
    text-transform: uppercase;
    transform: scale(1);
    transition: transform 0.3s ease;
    animation: scalePulse 1.2s ease-in-out infinite;
    padding: 2% !important;
    line-height: 1em;
}
.advantage__img > div a span {
    padding-right: 1.5vw;
}
.advantage__img > div a span::before {
    width: 14.64%;
    height: 75%;
}
@keyframes scalePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
/* End Advantage */
/* Symbol */
.symbol {
    padding-top: 119px;
    position: relative;
    z-index: 1;
}
.symbol::before {
    content: "";
    position: absolute;
    background: url("../images/symbol_dc1.png") center no-repeat;
    background-size: cover;
    width: 454px;
    height: 463px;
    right: -7%;
    top: 0%;
    z-index: -1;
}
.symbol__frame .title {
    margin-bottom: 40px;
}
.symbol__content {
    position: relative;
    z-index: 1;
}
/* End Symbol */
/* Gold */
.gold__page .mainvs__video {
    max-width: 955px;
    width: 51% !important;
    margin-right: 121px;
}
.advantageGold {
    padding-top: 154px;
}
.advantageGold__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 88px;
    margin-bottom: 60px;
}
.advantageGold__content .cnt {
    width: 50%;
    max-width: 450px;
}
.advantageGold__content .cnt ul {
    display: flex;
    flex-direction: column;
    gap: 85px;
}
.advantageGold__content .cnt ul li {
    position: relative;
    z-index: 1;
    padding-bottom: 28px;
}
.advantageGold__content .cnt ul li::before {
    content: "";
    position: absolute;
    background-color: #cf9b21;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    bottom: -2px;
    z-index: -1;
}
.advantageGold__content .cnt ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
}
.advantageGold__content .cnt__left ul li::after {
    background: linear-gradient(to left, #cf9b21, rgba(0, 0, 0, 0));
}
.advantageGold__content .cnt__right ul li::after {
    background: linear-gradient(to right, #cf9b21, rgba(0, 0, 0, 0));
}
.advantageGold__content .cnt .ttl {
    font-size: 25px;
    font-weight: bold;
    color: #211161;
    margin-bottom: 16px;
}
.advantageGold__content .cnt .desc p {
    font-family: var(--font-mont);
}
.advantageGold__content .cnt__left {
    text-align: right;
}
.advantageGold__content .img {
    max-width: 698px;
}
.advantageGold__frame .title {
    margin-bottom: 50px;
}
/* End Gold */
/* wgproducts */
.wgproducts {
    position: relative;
    z-index: 1;
    margin-top: 110px;
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: -77px;
}
.wgproducts__title {
    position: absolute;
    color: #fff;
    max-width: 425px;
    top: 10%;
    left: 4%;
    z-index: 3;
    pointer-events: none;
}
.wgproducts__title h2 {
    color: #fff !important;
    margin-bottom: 24px;
}
.wgproducts__content {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.wgproducts__content .item {
    position: relative;
    z-index: 1;
}
.wgproducts__content .item {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    color: #fff;
    padding: 0 50px 130px;
}
.wgproducts__content .item .txt {
    font-size: 32px;
    font-family: var(--font-jakarta);
    font-weight: bold;
}
.wgproducts__content .item.active::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.wgproducts__content .item .icon {
    width: 60%;
    display: block;
}
.wgproducts__bg .bg.active {
    opacity: 1 !important;
    transform: scale(1);
}
.wgproducts__bg {
    overflow: hidden;
}
.wgproducts__bg .bg:not(.base) {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.wgproducts__bg .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.wgproducts__bg .bg {
    width: 100%;
    height: auto;
    display: block;
    transition:
        opacity 0.45s ease,
        transform 0.6s ease;
}
.bg-img--next {
    opacity: 0;
}
/* End Wgproducts */
/* Forex */
.forex__page {
    background: #c2901e;
    background: linear-gradient(120deg, rgba(194, 144, 30, 1) 0%, rgba(249, 233, 195, 1) 100%);
}
.forex__page::after {
    display: none;
}
.forex__page .mainvs__h1 {
    max-width: 765px;
    margin-left: 0 !important;
}
.advantageForex {
    padding-top: 148px;
}
.advantageForex .title {
    margin-bottom: 110px;
}
.advantageForex__content {
    position: relative;
    z-index: 1;
}
.advantageForex__content .btn {
    margin-bottom: -50px;
    position: relative;
    z-index: 4;
}
.advantageForex__img {
    max-width: 1168px;
    margin: 0 auto;
    padding-top: 8%;
}
.advantageForex__img > div {
    position: absolute;
}
.advantageForex__img .dc1 {
    top: 15%;
    left: 5%;
    width: 6%;
    height: 20%;
    animation: moveUpDown 1.5s ease-in-out infinite;
}
.advantageForex__img .dc2 {
    top: 18%;
    left: 15%;
    width: 9.761%;
    height: 28.733%;
    animation: moveUpDown 2s ease-in-out infinite;
    animation-delay: -0.4s;
}
.advantageForex__img .dc3 {
    top: 36%;
    left: 40%;
    width: 11.816%;
    height: 39.44%;
    animation: moveUpDown 2s ease-in-out infinite;
    animation-delay: -0.8s;
}
.advantageForex__img .dc4 {
    top: 5%;
    right: 33%;
    width: 5.48%;
    height: 18.03%;
    animation: moveUpDown 2s ease-in-out infinite;
    animation-delay: -1.2s;
}
.advantageForex__img .dc5 {
    top: 23%;
    right: 22%;
    width: 7.706%;
    height: 27.324%;
    animation: moveUpDown 2s ease-in-out infinite;
    animation-delay: -1.6s;
}
.advantageForex__img .dc6 {
    top: 3%;
    right: 0;
    width: 9%;
    height: 30.144%;
    animation: moveUpDown 2s ease-in-out infinite;
    animation-delay: -2s;
}
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}
.advantageForex__img {
    position: relative;
    z-index: 1;
}
.advantageForex__boxs {
    display: flex;
    gap: 45px;
    margin-bottom: 40px;
}
.advantageForex__boxs .item {
    max-width: 410px;
    width: 100%;
    min-height: 427px;
    border-radius: 30px;
    background-color: rgba(255, 239, 214, 0.6);
    padding: 40px 40px 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    opacity: 0;
    transform: translateX(0) scale(0.8);
    transition:
        transform 0.8s ease,
        opacity 0.6s ease;
}
.advantageForex__boxs:not(.active) .item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.7);
}
.advantageForex__boxs.active .item {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
}
.advantageForex__boxs.active .item:nth-child(1) {
    transform: translateX(0);
}
.advantageForex__boxs.active .item:nth-child(2) {
    transform: translateX(0);
}
.advantageForex__boxs.active .item:nth-child(3) {
    transform: translateX(0);
}
.advantageForex__boxs.active .item:nth-child(4) {
    transform: translateX(0);
}
.advantageForex__boxs .item h3 {
    font-size: 25px;
    font-weight: bold;
    color: #211161;
    margin-bottom: 20px;
}
.advantageForex__boxs .item .cnt {
    margin-top: auto;
}
.advantageEnergy__content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}
.advantageEnergy__content::before {
    content: "";
    position: absolute;
    background-color: #cf9b21;
    opacity: 0.65;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
}
.advantageEnergy__content--sticky {
    position: sticky;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 70%;
    text-align: center;
    z-index: 2;
    pointer-events: none;
}
.advantageEnergy__frame {
    position: relative;
    z-index: 1;
}
.no-hidden {
    overflow: visible !important;
}
.no-hidden main section {
    overflow: hidden;
}
.advantageEnergy .title {
    margin-bottom: 90px;
}
.advantageEnergy__content .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.advantageEnergy__content .item:not(:last-child) {
    margin-bottom: 100px;
}
.advantageEnergy__content .item .img {
    max-width: 345px;
    width: 100%;
}
.advantageEnergy__content .cnt {
    max-width: 345px;
    width: 100%;
}
.advantageEnergy__content .cnt .desc p:not(:last-child) {
    margin-bottom: 30px;
}
.advantageEnergy__content .cnt .num {
    font-size: 50px;
    font-family: var(--font-jakarta);
    color: #211161;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
.advantageEnergy__content .cnt h3 {
    color: #211161;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}
.advantageEnergy__content .item:nth-child(odd) .cnt {
    text-align: right;
}
.advantageEnergy__mockup {
    position: relative;
    z-index: 1;
    padding-top: 200px;
}
.advantageEnergy__mockup .box {
    width: 173px;
    height: 77px;
    border-radius: 15px;
    background: #211161;
    background: linear-gradient(90deg, rgba(33, 17, 97, 1) 0%, rgba(45, 8, 191, 1) 100%);
    color: #fff;
    padding: 18px;
    position: absolute;
    text-align: left;
}
.advantageEnergy__mockup .box:nth-child(1) {
    top: 10%;
    left: 0;
}
.advantageEnergy__mockup .box:nth-child(2) {
    top: 33%;
    right: 0;
}
.advantageEnergy__mockup .box .ttl {
    font-weight: 600;
}
.advantageEnergy__mockup .box .desc p {
    font-size: 11px;
}
.advantageEnergy__mockup--icon {
    margin-bottom: -30px;
    text-align: center;
    display: inline-block;
    position: relative;
    z-index: 1;
}
.advantageEnergy__mockup--icon .box {
    transform: scale(0);
    transition: all 1s ease-in-out;
    z-index: 2;
}
.advantageEnergy__mockup--icon > img {
    transform: scale(0);
    transition: all 0.8s ease-in-out;
}
.mockup__section.sec__animation .advantageEnergy__mockup--icon .box,
.mockup__section.sec__animation .advantageEnergy__mockup--icon > img {
    transform: scale(1);
}
.img_mockup {
    margin-top: -8%;
}
/* End Forex */
/* Energy */
.advantageEnergy {
    padding-top: 148px;
    position: relative;
    z-index: 1;
}
.no-hidden main section.advantageEnergy {
    overflow: visible;
}
.advantageEnergy__box--sticky::after {
    content: "";
    position: absolute;
    background: url("../images/advantageenergy_dc1.png") center no-repeat;
    background-size: cover;
    width: 634px;
    height: 663px;
    right: -400px;
    top: 22%;
    z-index: -1;
}
.advantageEnergy::after {
    content: "";
    position: absolute;
    background: url("../images/advantageenergy_dc2.png") center no-repeat;
    background-size: cover;
    width: 419px;
    height: 425px;
    top: 10%;
    left: -250px;
    z-index: -1;
}
.advantageEnergy__box--sticky {
    position: relative;
    z-index: 1;
    margin-top: -100px;
    overflow: hidden;
}
.energy__page .mainvs__video {
    width: 82%;
    max-width: 1554px;
}
.energy__page .mainvs__h1 {
    max-width: 765px;
    margin-left: 0 !important;
}
.indices__page.energy__page::after {
    background: url(../images/mainvs_energy.jpg) center no-repeat;
    background-size: cover;
}
.advantageEnergy__mockup--dc {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: -20%;
    width: 35.377%;
    height: 108.777%;
    opacity: 0;
}
.mockup__section.sec__animation .advantageEnergy__mockup--dc {
    animation: slideDownForward 0.8s ease-out forwards;
}
@keyframes slideDownForward {
    from {
        transform: translate(-50%, -40px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}
/* End Energy */
.products__page {
    margin-top: 50px;
}
/* Cryptocurrency */
.cryptocurrency__page::after {
    background: url(../images/mainvs_cryptocurrency.jpg) center no-repeat;
    background-size: cover;
}
.advantageGold.style__cryptocurrency .title {
    margin-bottom: 224px;
}
.advantageGold.style__cryptocurrency .img {
    position: relative;
    z-index: 1;
    width: 30%;
    max-width: 444px;
    margin-bottom: -7%;
}
.advantageGold.style__cryptocurrency .img::before {
    content: "";
    position: absolute;
    background: url("../images/advantageCryptocurrency_dc.png") center no-repeat;
    background-size: cover;
    width: 25.453%;
    aspect-ratio: 1 / 1;
    top: 0;
    right: -5%;
    z-index: 2;
    pointer-events: none;
}
.advantageGold.style__cryptocurrency img {
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 1s ease-in-out;
}
.advantageGold.style__cryptocurrency.sec__animation img:nth-child(1) {
    transform: translateY(-60%);
}
.advantageGold.style__cryptocurrency.sec__animation img:nth-child(2) {
    transform: translateY(-30%);
}
.advantageGold.style__cryptocurrency img:nth-child(1) {
    transform: translateY(-14%);
    position: absolute;
    z-index: 1;
}
.advantageGold.style__cryptocurrency img:nth-child(2) {
    transform: translateY(-7%);
    position: absolute;
}
/* End Cryptocurrency */
/* Stock */
.stock__page .mainvs__video {
    width: 63%;
    max-width: 1189px;
}
.advantageStock {
    padding-top: 150px;
    margin-bottom: 80px;
}
.stock__page::after {
    background: url(../images/mainvs_stock.jpg) left center no-repeat;
    background-size: cover;
}
.advantageStock__frame {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}
.advantageStock__img {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    width: 50%;
    max-width: 875px;
}
.advantageStock__img .dc img {
    position: absolute;
    z-index: 1;
}
.advantageStock__img .dc img:nth-child(1) {
    left: -6%;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 28%;
    max-width: 245px;
}
.advantageStock__img .dc img:nth-child(2) {
    top: 4%;
    left: 33%;
    width: 48%;
    max-width: 413px;
}
.advantageStock__img .dc img:nth-child(3) {
    right: 18%;
    bottom: -12%;
    width: 14%;
    max-width: 116px;
}
.advantageStock__content {
    width: 56%;
    max-width: 985px;
    margin-right: -73px;
}
.advantageStock__content .swiper-slide {
    width: 338px;
    max-width: 100%;
    padding-top: 50px;
}
.advantageStock__content .swiper-slide::before {
    content: "";
    position: absolute;
    background-color: #cf9b21;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    left: 0;
    top: 0;
}
.advantageStock__slide {
    position: relative;
    z-index: 1;
}
.advantageStock__slide::after {
    content: "";
    position: absolute;
    background-color: rgba(207, 155, 33, 0.35);
    width: calc(100% + 98px);
    height: 1px;
    border-radius: 50%;
    left: -76px;
    top: 146px;
}
.advantageStock__content .swiper-slide .ttl {
    font-size: 25px;
    font-weight: bold;
    color: #211161;
    margin-bottom: 16px;
}
.advantageStock__content .swiper-slide .desc p {
    line-height: 1.277em;
    color: #26252a;
}
.advantageStock__title {
    margin-bottom: -55px;
}
.advantageStock__arrow > div {
    width: 40px;
    height: 40px;
    border: 1px solid var(--main-cl);
    border-radius: 50%;
    position: static;
    margin-top: 0 !important;
}
.advantageStock__arrow > div svg {
    display: none;
}
.advantageStock__arrow {
    width: 90px;
    height: 40px;
    position: absolute;
    z-index: 1;
    gap: 10px;
    display: flex;
    top: 0;
    right: 73px;
}
.advantageStock__arrow .swiper-button-prev {
    right: 0;
}
.advantageStock__content .swiper {
    padding-top: 141px;
}
/* End Stock */
.ourProducts__content {
    padding: 46px 0 107px;
    display: flex;
    flex-direction: column-reverse;
    gap: 46px;
    justify-content: space-between;
}
.ourProducts__img {
    margin: 0 auto;
}
.ourProducts__img img {
    border-radius: 30px;
}
.ourProducts__table {
    background-color: #fff;
    padding: 31px 28px 18px;
    border-radius: 30px;
    flex-grow: 1;
}
.ourProducts__table th,
.ourProducts__table td {
    border: 0;
    text-align: center;
    font-size: 14px;
    padding: 19px 20px;
}
.ourProducts__table th:first-child,
.ourProducts__table td:first-child {
    text-align: left;
}
.ourProducts__table th {
    font-weight: 600;
    color: #fff;
    background-color: var(--main-cl);
}
.ourProducts__table th:first-child {
    width: 20%;
}
.ourProducts__table td {
    color: #1b2128;
}
.ourProducts__table tr:not(:last-child) td {
    border-bottom: 1px solid #e1e1e1;
}
.ourProducts__tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 18px;
}
.ourProducts__tabs .item {
    padding: 8px 15px;
    font-size: 16px;
    border: 1px solid #e6e6e6;
    background-color: #fafafa;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: #1e3150;
    font-weight: 500;
    flex-grow: 1;
    text-align: center;
    cursor: pointer;
}
.ourProducts__tabs .item.active {
    color: var(--main-cl);
    background-color: #fff;
    border-bottom: 0;
}
.ourProducts__tabs--content {
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
}
.ourProducts__tabs--content .item {
    display: none;
    overflow-y: auto;
    max-height: 674px;
}
.ourProducts__tabs--content .item.active {
    display: block;
}
.ourProducts__tabs--pagination ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.ourProducts__tabs--pagination ul li {
    width: 32px;
    height: 32px;
    font-size: 12px;
    color: #1b2128;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
}
.ourProducts__tabs--pagination ul li.active {
    border: 1.5px solid #e4e4e4;
    background-color: #f9fafc;
}
.overview {
    padding-bottom: 77px;
}
.overview__title {
    max-width: 1000px;
    margin-bottom: 42px;
}
.overview__title h2 {
    margin-bottom: 16px;
}
.overview__content {
    display: flex;
    gap: 25px;
}
.overview__content--right .item {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 30px;
}
.overview__content .txt {
    font-size: 14px;
    text-align: right;
    margin-top: auto;
    color: #1b2128;
}
.overview__content .txt a {
    color: inherit;
    text-decoration: underline;
}
.overview__table {
    border: 1px solid #e1e1e1;
    border-radius: 12px;
}
.overview__table:not(:last-child) {
    margin-bottom: 18px;
}
.overview__table th {
    text-transform: uppercase;
}
.overview__table th,
.overview__table td {
    padding: 19px 15px;
}
.overview__table th:first-child,
.overview__table td:first-child {
    width: auto !important;
}
.overview__table th:not(:first-child),
.overview__table td:not(:first-child) {
    width: 11.1111111111% !important;
}
.overview__table tbody tr:nth-child(odd) td {
    background-color: #f9fafc;
}
.overview__table.col2 th {
    width: 50% !important;
}
.overview .ourProducts__table .ttl {
    color: var(--main-cl);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.overview .ourProducts__table table {
    border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
}
.w30 {
    width: 30%;
}
.regulations {
    padding: 100px 0;
}
.regulations__frame {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}
.regulations__tabs {
    width: 40%;
    max-width: 580px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}
.regulations__content h2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 15px;
    color: #211161 !important;
}
.regulations__content h2.left {
    text-align: left;
}
.regulations__content h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #211161 !important;
}
.regulations__content .group__count {
    counter-reset: section;
}
.regulations__content .group__count > *:not(:last-child) {
    margin-bottom: 15px;
}
.regulations__content .uList li {
    padding-left: 20px;
    position: relative;
    z-index: 1;
}
.regulations__content .uList li::before {
    content: "";
    position: absolute;
    background-color: #111;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    top: 13px;
    left: 0;
    z-index: -1;
}
.regulations__content ol {
    margin-top: 15px;
}
.regulations__content ol > li {
    position: relative;
    z-index: 1;
    padding-left: 30px;
}
.regulations__content ol > li:not(:last-child) {
    margin-bottom: 15px;
}
.regulations__content ol > li::before {
    counter-increment: section;
    content: counter(section) ".";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.regulations .partner__content {
    width: 100%;
}
.regulations .partner__list h2 {
    font-size: 18px;
    color: #26252a;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.666em;
}
.regulations .partner__list li.active h2 {
    color: var(--main-cl);
}
.regulations .partner__list li.active .num::before,
.regulations .partner__list li.active img {
    transform: translateX(60px);
}
.regulations__content .item {
    display: none;
}
.regulations__content .item.active {
    display: block;
}
.regulations__content .item .cnt h3 {
    font-weight: bold;
}
.regulations__content .item .cnt .desc h2,
.regulations__content .item .cnt .desc .ttl {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #211161;
}
.regulations__content .item .cnt .desc h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}
.regulations__content .item .cnt .desc:not(:last-child) {
    margin-bottom: 20px;
}
.regulations__content .item .cnt .desc p {
    font-size: 22px;
    line-height: 1.6em;
    margin-bottom: 20px;
}
.regulations__content .item .cnt .desc p + ul {
    margin-bottom: 20px;
}
.regulations__content .item .cnt .desc a {
    color: #0c0c0c;
}
.regulations__content .item .cnt .desc a:hover {
    color: var(--main-cl);
}
.regulations__content .item .cnt .desc ul li {
    font-size: 22px;
    position: relative;
    z-index: 1;
    padding-left: 20px;
}
.regulations__content .item .cnt .desc ul li::before {
    content: "";
    position: absolute;
    background-color: #0c0c0c;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    top: 18px;
    left: 5px;
    z-index: -1;
}
.promotions__page {
    display: block;
    background-color: #f0cf9a;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.promotions__page .mainvs__img {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}
.promotions__page .mainvs__video {
    width: auto;
    height: auto;
    bottom: 0;
    right: 0;
}
.promotions__page .mainvs__img {
    background: url("../images/mainvs_promotions.jpg") right top no-repeat;
    background-size: cover;
}
.promotions__page .mainvs__video::before {
    display: none;
}
.promotions__page .mainvs__h1 {
    --space-left-right: 140px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    margin: auto;
    max-width: 1804px;
    height: max-content;
    z-index: 2;
}
.promotions__page .mainvs__h1 h1 {
    display: block;
    color: #fff;
    font-size: max(min(4.1666666667vw, 80px), 52px);
    animation: unset;
    clip-path: none;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 10px 0 20px;
    font-weight: 900;
}
.promotions__page .mainvs__h1 .btn {
    position: static;
}
.promotions__page .mainvs__h1 .btn a {
    background-color: #211161;
    border: 1px solid rgba(0, 0, 0, 0);
}
.promotions__page .mainvs__h1 .btn a:hover {
    background: #cf9b21 !important;
}
.promotions__page .mainvs__h1 .btn a span {
    padding-right: 36px;
}
.promotions__page .mainvs__h1 .btn a span::before {
    display: block;
    opacity: 1;
}
.promotions__page .mainvs__h1--sub {
    font-size: 27px;
    color: #fff;
}
.promotions__page .mainvs__h1--date {
    font-size: 18px;
    font-family: var(--font-mont);
    color: #fff;
    margin-bottom: 40px;
    display: inline-block;
    padding: 14px 24px;
    background: linear-gradient(to right, rgba(231, 209, 164, 0.3) 0%, rgba(231, 209, 164, 0) 100%);
    width: 100%;
    max-width: 528px;
    border-radius: 60px 0 0 60px;
    position: relative;
}
.promotions__page .mainvs__h1--date::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to right, rgba(231, 209, 164, 1) 0%, rgba(231, 209, 164, 0) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}
.todo .title {
    margin-bottom: 82px;
}
.todo__frame {
    display: flex;
    align-items: center;
    width: calc(100% + 65px);
}
.todo__list {
    position: relative;
    z-index: 1;
}
.todo__list ul {
    display: flex;
    position: relative;
    z-index: 1;
}
.todo__list ul::before {
    content: "";
    position: absolute;
    width: calc(100vw + 70px);
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    left: -70px;
    top: 26px;
    z-index: -1;
}
.todo__list li {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 289px;
    padding-right: 58px;
    position: relative;
    z-index: 1;
    gap: 40px;
}
.todo__list li::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 26px;
    left: 0;
    z-index: -1;
}
.todo__list li::after {
    content: "";
    position: absolute;
    background-color: var(--main-cl);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    top: 21px;
    left: 0;
    z-index: -1;
}
.todo__list li:hover .num {
    transform: scale(1);
}
.todo__list li.active::before {
    background: #cf9b21;
}
.todo__list li.active .num,
.todo__list li.active + li .num {
    transform: scale(1);
}
.todo__list li > span span {
    color: var(--main-cl);
    text-decoration: underline;
}
.todo__list li .num {
    padding-top: 3px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fef9ed;
    border: 1px solid var(--main-cl);
    color: var(--main-cl);
    font-size: 18px;
    font-weight: 500;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    transform: scale(0);
    flex-shrink: 0;
}
.todo__list li .txt {
    font-size: 20px;
    color: #26252a;
}
.todo__list--btn {
    position: absolute;
    top: -130px;
    right: 0;
    display: flex;
    gap: 10px;
}
.todo__list--btn button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--main-cl);
    background-color: rgba(0, 0, 0, 0);
    padding-bottom: 2px;
}
.todo__list li .desc {
    margin-top: -20px;
}
.todo__list li .desc p {
    font-size: 16px;
}
.todo__list.todo__ladi .txt {
    font-size: 22px;
    color: #1f175e;
    font-weight: bold;
}
.todo__list--btn button:hover {
    background-color: var(--main-cl);
}
.todo__list--btn button:hover img {
    filter: brightness(0) invert(1);
}
.todo__img {
    margin-left: auto;
    position: relative;
    z-index: 2;
}
.goldrush {
    position: relative;
    z-index: 1;
    padding: 100px 0 80px;
}
.goldrush::before {
    content: "";
    position: absolute;
    background: url("../images/goldrush_line.png") center no-repeat;
    background-size: cover;
    width: 1920px;
    height: 270px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
}
.goldrush .decore {
    position: absolute;
    z-index: 3;
    animation: upDown 2s ease-in-out forwards alternate;
}
.goldrush .decore.dc1 {
    width: 31%;
    max-width: 589px;
    left: 0;
    bottom: 20px;
}
.goldrush .decore.dc2 {
    width: 26%;
    max-width: 491px;
    right: 0;
    bottom: 0;
}
.goldrush__phone {
    position: relative;
    z-index: 1;
    width: max(53%, 540px);
    max-width: 936px;
    margin: 0 auto;
}
.goldrush__phone--img {
    text-align: center;
    width: 87%;
    max-width: 808px;
    margin: 0 auto;
    position: relative;
}
.goldrush__phone--img a {
    position: absolute;
    width: 55%;
    height: 7%;
    top: 59%;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 30px;
    z-index: 2;
}
.goldrush__phone--bnr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #211161;
    background: linear-gradient(130deg, rgb(33, 17, 97) 0%, rgb(45, 8, 191) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    padding: 4.755% 15px;
    top: 18.1%;
    font-size: max(min(16/1920 * 100vw, 16px), 10px);
}
.goldrush__phone--bnr .txt1 {
    font-size: 1em;
    font-family: var(--font-jakarta);
    color: #faf8f0;
    text-transform: uppercase;
    line-height: 1em;
    margin-bottom: 18px;
}
.goldrush__phone--bnr .num,
.goldrush__phone--bnr .txt2 {
    font-size: 4.375em;
    font-weight: bold;
    color: #faf8f0;
    text-transform: uppercase;
    line-height: 1em;
}
.goldrush__phone--bnr .item {
    font-size: 1em;
}
.goldrush__phone--bnr .item:not(:last-child) {
    border-right: 1px solid rgba(250, 248, 240, 0.2);
    padding-right: 3.75em;
    margin-right: 3.75em;
}
.bonus {
    padding-bottom: 50px;
}
.bonus .container {
    width: 1493px;
}
.bonus__title {
    font-size: 25px;
    font-weight: bold;
    color: #211161;
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.bonus__content .txt {
    font-weight: bold;
}
.bonus__content ol li {
    font-size: 18px;
    color: #666;
}
.bonus__content ol li p {
    color: #666;
}
.bonus__content ol li:not(:last-child) {
    margin-bottom: 30px;
}
.bonus__content ol li > *:not(:last-child),
.bonus__content ol li .sub > *:not(:last-child) {
    margin-bottom: 30px;
}
.bonus__content ol li .clr {
    color: var(--main-cl);
    font-weight: bold;
}
.bonus__content ol li .note {
    font-size: 15px;
    color: #666;
}
.note {
    color: #666666;
}
.note a {
    color: var(--main-cl);
    font-family: var(--font-mont);
}
.bonus__content ol li ul:not(.normal) li::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #666;
    left: 4px;
    top: 12px;
    z-index: -1;
}
.bonus__content ol li ul li {
    position: relative;
    z-index: 1;
    padding-left: 20px;
}
.bonus__content ol li ul li ul li {
    margin-top: 10px;
}
.bonus__content ol li ul li:not(:last-child) {
    margin-bottom: 10px;
}
.bonus__content ol li .frame {
    background-color: rgba(255, 235, 204, 0.3);
    border-radius: 30px;
    border: 1px solid rgba(207, 155, 33, 0.2);
    padding: 48px 53px;
}
.breadcrumbs {
    position: absolute;
    top: 115px;
    padding: 0 15px;
    z-index: 2;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1804px;
}
.breadcrumbs li {
    display: inline;
    padding-right: 12px;
    margin-right: 12px;
    position: relative;
    z-index: 1;
    color: rgba(51, 51, 51, 0.2);
    text-transform: uppercase;
    font-weight: 500;
}
.breadcrumbs li a {
    color: rgba(51, 51, 51, 0.2);
}
.breadcrumbs li span {
    color: #333;
}
.breadcrumbs li:not(:last-child)::before {
    content: "";
    position: absolute;
    background-color: rgba(51, 51, 51, 0.2);
    width: 1px;
    height: 13px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}
#footer {
    margin: 77px 0 0;
    background: url("../images/ft_bg.jpg") center top 77px / cover repeat-y;
}
#footer .ft__info a {
    color: #333;
}
address {
    color: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 1;
    line-height: 1.2em;
}
.funded {
    position: relative;
    z-index: 1;
    margin-bottom: 77px;
}
.funded__bg {
    width: 100%;
    max-width: 1920px;
    height: 450px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.funded__bg::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.funded__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.funded__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: max-content;
    margin: auto;
    z-index: 2;
}
.funded__content h2 {
    color: #fff;
    margin-bottom: 22px;
}
.funded__content .desc {
    margin-bottom: 21px;
}
.funded__content .desc p {
    color: #fff;
}
.address__copy {
    background-color: var(--main-cl);
}
.address__copy .container {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.address__copy .terms {
    display: flex;
    align-items: center;
    gap: 40px;
}
.address__copy .terms p {
    margin-bottom: 0;
    white-space: nowrap;
}
.address__copy .terms a {
    color: #fff !important;
}
.link-full {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 3;
}
.ft__info {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 48px;
    border-bottom: 1px solid #d1cdc4;
    margin-bottom: 35px;
}
.ft__info--right .input__mail {
    padding-top: 28px;
    margin-bottom: 69px;
    border-top: 1px solid #d1cdc4;
}
.ft__info--right .input__mail .ttl {
    font-size: 35px;
    line-height: 1.2em;
    font-weight: bold;
    color: #211161;
    margin-bottom: 25px;
}
.ft__info--right .input__mail input {
    height: 63px;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    padding: 0 40px 20px 0;
    border-bottom: 1px solid #d1cdc4;
    background: url("../images/arrow_input.png") right top 5px/33px 29px no-repeat;
    font-family: var(--font-jakarta);
    font-weight: 500;
    font-size: 20px;
}
.ft__info--right .input__mail input:focus {
    border-color: var(--main-cl);
}
.ft__info--web {
    margin-bottom: 47px;
}
.ft__info--web .ttl {
    color: var(--main-cl);
    font-size: 18px;
    font-weight: 600;
}
.ft__info--web .ttl span {
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}
.ft__info--web .desc p {
    font-size: 13px;
}
.ft__info--web .col2 {
    display: flex;
    gap: 150px;
    margin-top: 36px;
}
.ft__info--web .col2 .item {
    max-width: 750px;
}
.ft__company {
    display: flex;
    gap: 50px;
}
.ft__company .ttl {
    color: #26252a;
    font-weight: 600;
    line-height: 2.222em;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #d3cfc6;
}
.ft__address {
    max-width: 274px;
}
.ft__address .txt {
    font-size: 14px;
    line-height: 1.571em;
}
.ft__menu {
    display: flex;
    gap: 25px;
    flex-grow: 1;
}
.ft__menu .item {
    flex-grow: 1;
    max-width: 125px;
}
.ft__menu .item li {
    line-height: 1.571em;
    font-size: 14px;
}
@-moz-document url-prefix() {
}
/* Theme */
.theme-admonition-warning {
    background-color: #ffede6;
    border-left: 5px solid #ff7336;
    padding: 24px 32px;
    border-radius: 8px;
    display: inline-block;
}
.theme-admonition-danger {
    background-color: #fff1f3;
    border-left: 5px solid #f56570;
    padding: 24px 32px;
    border-radius: 8px;
}
.ladi__content a {
    color: var(--main-cl);
}
.ladi__content h2 {
    font-size: 48px;
}
.ladi__content h3 {
    font-size: 32px;
    font-weight: bold;
}
.ladi__content .theme-doc-markdown > *:not(:last-child) {
    margin-bottom: 20px;
}
.ladi__content .theme-doc-markdown p + h3 {
    margin-top: 55px;
}
/* End Theme */
/* IB Page */
.ladi__page {
    background-image: linear-gradient(157deg, rgb(240, 209, 140), rgb(174, 128, 20));
    display: flex;
    align-items: center;
}
.ladi__page .mainvs__img {
    background: unset !important;
    width: 45%;
    max-width: 844px;
    margin-right: unset;
    align-items: center;
    height: auto;
    top: 5%;
}
.ladi__page .mainvs__img > img {
    margin-right: 23%;
    animation-name: pulse;
    animation-delay: 0s;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
.ladi__page .mainvs__img::before {
    content: "";
    position: absolute;
    background: url("../images/ladi_dc2.png") center no-repeat;
    background-size: cover;
    width: 604px;
    height: 239px;
    display: block !important;
    bottom: 0;
    right: 10%;
    mix-blend-mode: screen;
}
.ladi__page .mainvs__img::after {
    content: "";
    position: absolute;
    background: url("../images/ib_dc1.png") center no-repeat;
    background-size: cover;
    width: 134.716%;
    height: 134.524%;
    right: 0;
    top: -7%;
}
@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
.ladi__page .mainvs__img::before {
    display: none;
}
.ladi__page .mainvs__h1 h1 {
    font-size: max(min(calc(61 / 1920 * 100vw), 61px), 40px);
}
.ladi__page .todo__img {
    margin-right: 15%;
}
.ladi__page .mainvs__h1--sub {
    font-size: 25px;
}
.ladi__page .mainvs__h1--date {
    font-size: 21px;
}
.todo__ladi {
    margin-bottom: 50px;
}
.structure .title {
    margin-bottom: 30px;
}
.structure__title h2 {
    text-align: center;
    margin-bottom: 30px;
}
.structure__content {
    max-width: 960px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}
.structure__content th,
.structure__content td {
    border-color: #2d2a24 !important;
    padding: 15px;
}
.structure__content thead th {
    background-color: var(--main-cl);
    color: #fff;
}
.structure__content tbody th {
    background-color: #eedbaf;
}
.structure__content tbody td {
    background-color: #fff;
}
.structure__txt {
    margin-bottom: 50px;
}
.structure .goldrush__phone {
    z-index: 2;
    text-align: center;
}
.structure .goldrush {
    padding: 120px 0 0px;
    margin-bottom: 80px;
}
.structure .goldrush__phone a {
    font-size: 28px;
    padding: 17px 52px;
    background-image: linear-gradient(90deg, rgb(31, 23, 94), rgb(45, 9, 189));
    transition: 0.2s linear;
}
.structure .goldrush__phone a:hover {
    transform: scale(1.1);
}
.structure__txt > *:not(:last-child) {
    margin-bottom: 30px;
}
.structure__frame2 {
    max-width: 960px;
    margin: 0 auto;
}
.structure__content .tbl__scroll {
    padding-right: 0;
    margin-bottom: 30px;
}
.list_dot li {
    padding-left: 15px;
    position: relative;
    z-index: 1;
    font-size: 18px;
    color: #000;
}
.list_dot li::before {
    content: "";
    position: absolute;
    background-color: #666666;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    top: 14px;
    left: 0;
    z-index: -1;
}
/* End IB Page */
.pagination {
    margin-top: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.pagination .page-numbers {
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
    background-color: #383838;
    font-size: 15px;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: var(--main-cl);
    color: #fff;
}
.pagination .page-numbers.disabled {
    display: none;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    position: relative;
    font-size: 0;
}
.pagination .page-numbers.prev::before,
.pagination .page-numbers.next::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    border: 0px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}
.pagination .page-numbers.next::before {
    border-width: 1px 1px 0 0;
    left: 48%;
}
.pagination .page-numbers.prev::before {
    left: 53%;
    border-width: 0 0 1px 1px;
}
.sp992 {
    display: none;
}
.product-page #footer {
    padding-top: 77px;
}
.aboutus__page .desc {
    max-width: 600px;
}
.aboutus__page .desc p {
    color: #fff;
}
.aboutus__page .desc .btn {
    margin-top: 40px;
    position: static;
}
.aboutus__page .mainvs__h1 {
    max-width: 1803px;
}
.aboutus__page .mainvs__h1 h1 {
    justify-content: flex-start;
}
.aboutus__page .mainvs__video img {
    height: 100%;
}
.aboutus {
    padding: 182px 0 0;
}
.aboutus__frame {
    gap: 30px;
    justify-content: space-between;
    display: flex;
}
.aboutus__title {
    width: 100%;
    max-width: 750px;
}
.aboutus__title .title {
    margin-bottom: 35px;
}
.aboutus__title .desc {
    margin-bottom: 40px;
}
.aboutus__title .desc p:not(:last-child) {
    margin-bottom: 20px;
}
.aboutus__img {
    margin-top: -50px;
    margin-left: -200px;
    width: 63%;
    max-width: 1107px;
}
.mission_vision {
    width: 82%;
    max-width: 1437px;
    margin: 0 auto;
    background: #211161;
    background: linear-gradient(135deg, rgba(33, 17, 97, 1) 0%, rgba(45, 8, 191, 1) 100%);
    border-radius: 50px;
    padding: 6.652% 4.9%;
    position: relative;
    z-index: 1;
    display: flex;
    margin-bottom: 250px;
}
.mission_vision::before {
    content: "";
    position: absolute;
    background: url("../images/mission_vision_dc1.png") center no-repeat;
    background-size: cover;
    width: 59.43%;
    height: 22.657vw;
    top: 0;
    right: 0;
    z-index: -1;
}
.mission_vision_content .item {
    display: flex;
    justify-content: space-between;
    gap: 8%;
}
.mission_vision_content .item:not(:last-child) {
    margin-bottom: 80px;
}
.mission_vision_content .ttl {
    font-size: 32px;
    font-weight: bold;
    padding-left: 20px;
    position: relative;
    z-index: 1;
}
.mission_vision_content .ttl::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 71px;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    left: 0;
    top: 0;
    opacity: 0.5;
    z-index: -1;
}
.mission_vision_content .desc {
    width: 69%;
    max-width: 475px;
    flex-shrink: 0;
}
.mission_vision_content .desc p:not(:last-child) {
    margin-bottom: 20px;
}
.mission_vision .item p {
    color: #fff;
}
.mission_vision_img {
    position: absolute;
    right: -11%;
    bottom: -1px;
    width: 48%;
    max-width: 686px;
}
.mission_vision_img::before {
    content: "";
    position: absolute;
    background: url("../images/mission_vision_dc2.png") center no-repeat;
    background-size: cover;
    width: 35.57%;
    height: 34.966%;
    bottom: -20.575%;
    right: -2%;
    z-index: 1;
}
.mission_vision_img::after {
    content: "";
    position: absolute;
    background: url("../images/mission_vision_dc3.png") center no-repeat;
    background-size: cover;
    width: 21.866%;
    height: 22.1%;
    top: 0;
    right: -15%;
    z-index: -1;
}
.mission_vision_content {
    width: 55%;
    max-width: 694px;
}
.active__user {
    display: flex;
    align-items: center;
}
.active__user .txt {
    border-radius: 50%;
    width: 153px;
    height: 153px;
    background: #211161;
    background: linear-gradient(135deg, rgba(33, 17, 97, 1) 0%, rgba(45, 8, 191, 1) 100%);
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 5px;
}
.active__user .txt span {
    display: block;
    font-size: 228%;
    font-weight: bold;
    margin-bottom: 10px;
}
.roadmap__title {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.roadmap__title .desc {
    max-width: 750px;
    align-self: flex-end;
}
.roadmap__title {
    margin-bottom: 68px;
}
.roadmap__content {
    position: relative;
    z-index: 1;
    overflow: visible;
}
.roadmap__content::before {
    content: "";
    position: absolute;
    width: 1920px;
    height: 1px;
    left: 50%;
    transform: translate(-50%, 0);
    top: 268px;
    background-color: rgba(0, 0, 0, 0.1);
}
.roadmap__content .item {
    max-width: 300px;
    display: flex;
    flex-direction: column;
}
.roadmap__content .item:nth-child(even) {
    flex-direction: column-reverse;
}
.roadmap__content .item:nth-child(even) .cnt {
    justify-content: flex-end;
}
.roadmap__content .item:nth-child(even) .img {
    padding-top: 44px;
    margin-top: 44px;
}
.roadmap__content .item:nth-child(even) .img::before {
    top: -5px;
}
.roadmap__content .item:nth-child(odd) .img {
    padding-bottom: 44px;
    margin-bottom: 44px;
}
.roadmap__content .item:nth-child(odd) .img::before {
    bottom: -5px;
}
.roadmap__content .item .img {
    min-height: 224px;
    position: relative;
    z-index: 1;
}
.roadmap__content .item .img img {
    border-radius: 20px;
}
.roadmap__content .item .img::before {
    content: "";
    position: absolute;
    background-color: var(--main-cl);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    left: 0;
    z-index: -1;
}
.roadmap__content .item .cnt {
    min-height: 224px;
    display: flex;
    flex-direction: column;
}
.roadmap__content .item .cnt .year {
    color: #211161;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.25em;
    transition: all 0.3s ease-in-out;
}
.wegolden__sec {
    padding: 100px 0 0;
    margin-bottom: -100px;
}
.wegolden__slide li {
    font-size: 100px;
    color: var(--main-cl);
    line-height: 1.35em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 45px;
    margin: 0 27px !important;
}
.wegolden__img {
    margin-top: 128px;
    position: relative;
    z-index: 1;
}
.wegolden__img .img {
    width: 84%;
    max-width: 1587px;
    margin: 0 auto;
}
.wegolden__img .dc img {
    position: absolute;
    animation: upDown 2s ease-in-out infinite alternate;
}
.wegolden__img .dc img:nth-child(1) {
    bottom: 0;
    left: 0;
    width: 13%;
    max-width: 239px;
}
.wegolden__img .dc img:nth-child(2) {
    top: -3%;
    left: 20%;
    width: 7%;
    max-width: 121px;
}
.wegolden__img .dc img:nth-child(3) {
    bottom: 23%;
    left: 35%;
    width: 8%;
    max-width: 142px;
}
.wegolden__img .dc img:nth-child(4) {
    right: 16%;
    top: 36%;
    width: 4%;
    max-width: 69px;
}
.wegolden__img .dc img:nth-child(5) {
    top: 8%;
    right: 1%;
    width: 16%;
    max-width: 299px;
}
.why {
    padding-bottom: 107px;
}
.why__frame .title {
    margin-bottom: 110px;
}
.why__content {
    overflow: visible;
    margin-bottom: 60px;
}
.why__content .item {
    max-width: 390px;
}
.why__content .item {
    font-size: 18px;
    background-color: #fef2dc;
    border-radius: 25px;
    padding: 2.2222222222222223em 1.8333333333333333em;
    min-height: 308px;
    display: flex;
    flex-direction: column;
}
.why__content .item .ttl {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1em;
}
.why__content .item .desc p {
    font-size: 1em;
}
.why__content .item .num {
    margin-top: auto;
    text-align: right;
    font-weight: 600;
    font-size: 3.333333em;
    color: var(--main-cl);
    line-height: 1em;
}
.aboutstep__content {
    display: flex;
    max-width: 1543px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.aboutstep__content .item {
    --width-item: 287px;
    text-align: center;
    max-width: var(--width-item);
    width: 100%;
}
.aboutstep__content .line1 {
    align-self: center;
}
.aboutstep__content .line2 {
    align-self: flex-start;
    margin-top: 40px;
}
.aboutstep__frame {
    padding: 90px 30px 0;
    background: #ffebcc;
    background: linear-gradient(
        0deg,
        rgba(255, 235, 204, 0) 0%,
        rgba(255, 235, 204, 0.01) 17%,
        rgba(255, 235, 204, 0.06) 41%,
        rgba(255, 235, 204, 0.28) 63%,
        rgba(255, 235, 204, 0.5) 100%
    );
    border-radius: 50px;
}
.aboutstep__frame .title {
    margin-bottom: 55px;
}
.aboutstep__content .item .img {
    margin-bottom: 30px;
}
.aboutstep__content .item .step {
    font-size: 16px;
    line-height: 1.5625em;
    padding: 4px 14px;
    border-radius: 60px;
    width: 85px;
    height: 33px;
    margin: 0 auto 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.aboutstep__content .item h4 {
    font-weight: bold;
    font-size: 25px;
    color: #211161;
    margin-bottom: 8px;
}
.aboutstep__content .item .desc * {
    font-family: var(--font-mont);
    line-height: 1.3888em;
}
.ib__page {
    background: #c2901e;
    background: linear-gradient(145deg, rgba(194, 144, 30, 1) 0%, rgba(249, 233, 195, 1) 100%);
    /* height: auto; */
}
.ib__page .mainvs__video {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.ib__page .mainvs__video::before {
    display: none;
}
.ib__page .mainvs__h1 {
    flex-direction: column;
    justify-content: flex-start;
    max-width: 785px;
    margin-left: unset;
    margin: 150px 0 8.2%;
    left: 15px;
}
.ib__page .mainvs__h1 h1 {
    justify-content: flex-start;
    font-size: max(min(calc(100 / 1920 * 100vw), 100px), 52px);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}
.ib__page .mainvs__h1 .desc * {
    color: #fff;
}
.ib__page .mainvs__h1 .btn {
    position: static;
}
.ib__page .mainvs__h1 .desc .percent {
    font-size: 20px;
    font-weight: 500;
    margin: 38px 0 0;
}
.ib__page .mainvs__h1 .desc .percent span {
    font-size: 480%;
    font-weight: 900;
    display: inline-block;
    line-height: 1em;
}
.ib__page .mainvs__h1 .partners {
    font-size: 24px;
    margin-bottom: 50px;
}
.ibTotal {
    padding: 155px 0;
}
.ibTotal__frame {
    font-size: max(min(calc(20 / 1920 * 100vw), 20px), 12px);
    display: flex;
    gap: 30px;
    justify-content: space-between;
    width: 95%;
    max-width: 1525px;
    margin: 0 auto;
}
.ibTotal__frame .item {
    font-size: 1em;
}
.ibTotal__frame .item .num {
    font-family: var(--font-jakarta);
    font-size: 5em;
    color: var(--main-cl);
    font-weight: 600;
    line-height: 1.26em;
}
.ibTotal__frame .item .txt {
    font-size: 1em;
    line-height: 1.25em;
    font-weight: 500;
}
.potential {
    padding-bottom: 131px;
}
.potential__frame {
    padding: 90px 150px 54px;
    background-color: #fef5e3;
    border-radius: 50px;
    margin-bottom: 40px;
}
.potential__frame .note {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-jakarta);
    color: #808080;
    margin-bottom: 30px;
}
.potential__frame .title {
    margin-bottom: 30px;
}
.potential__frame .title h2 {
    margin-bottom: 20px;
}
.potential__tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 65px;
}
.potential__tabs .item {
    font-family: var(--font-jakarta);
    border: 1px solid #26252a;
    color: #26252a;
    opacity: 0.3;
    padding: 12px 24px;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.potential__tabs .item.active {
    color: var(--main-cl);
    border-color: var(--main-cl);
    opacity: 1;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #d9a441 0%, #d9a441 20%, #e1e1e1 20%, #e1e1e1 100%);
    border-radius: 2px;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 4px solid #d9a441;
    border-radius: 50%;
    cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: #fff;
    border: 4px solid #d9a441;
    border-radius: 50%;
    cursor: pointer;
}
.scale {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #666666;
}
.potential__content {
    margin-bottom: 60px;
}
.potential__content .item {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
}
.potential__content .item__left {
    width: 100%;
    max-width: 750px;
}
.potential__content .item__left .ttl {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    margin-bottom: 20px;
}
.potential__content .item__left .ttl .txt {
    font-family: var(--font-mont);
    color: #666666;
    font-size: 1em;
}
.potential__content .item__left .ttl .num {
    font-size: 2.22222em;
    color: #211161;
    line-height: 1em;
    font-weight: 600;
}
.potential__content .item__left .traders {
    margin-bottom: 60px;
}
.potential__content .item__right {
    width: 100%;
    max-width: 625px;
    background-color: #fff;
    border-radius: 30px;
    padding: 50px 35px;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.08);
}
.potential__content .item__right .group {
    background-color: rgba(255, 235, 204, 0.5);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 50px;
}
.potential__content .item__right .group .txt {
    font-family: var(--font-mont);
}
.potential__content .item__right .group .num {
    font-weight: bold;
    font-size: 60px;
    font-family: var(--font-mont);
    color: #211161;
    line-height: 1.2166em;
}
.potential__content .item__right .item__right--sub {
    display: flex;
    gap: 20px;
}
.potential__content .item__right .item__right--sub > p {
    font-family: var(--font-mont);
    font-weight: 500;
    text-align: center;
    width: 50%;
    font-size: 16px;
}
.potential__content .item__right .item__right--sub p span {
    font-size: 222.222%;
    display: block;
    margin-top: 20px;
}
.advantages {
    padding-bottom: 132px;
}
.advantages__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.advantages__content .item__center {
    position: relative;
    z-index: 1;
    width: 62%;
    max-width: 916px;
    margin-right: -30px;
}
.advantages__content .item__center .playvideo {
    font-size: 160%;
    font-weight: 500;
    line-height: 1.125em;
    position: absolute;
    top: 54%;
    left: 47%;
    transform: translate(-50%, -50%);
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
    text-align: center;
}
.advantages__content .item__center .playvideo span {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}
.advantages__content .item__center .playvideo span img {
}
.advantages__content .item__center .playvideo span::before {
    content: "";
    position: absolute;
    width: 106px;
    height: 106px;
    background: #ffebcc;
    background: radial-gradient(
        circle,
        rgba(255, 235, 204, 1) 0%,
        rgba(255, 235, 204, 0) 40%,
        rgba(255, 235, 204, 1) 100%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.8;
}
@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0;
    }
}
.advantages__content .item__left,
.advantages__content .item__right {
    min-height: 70px;
    font-family: var(--font-mont);
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.advantages__content .item__right p {
    text-align: right;
    flex-direction: row-reverse;
}
.advantages__content .item__left p,
.advantages__content .item__right p {
    font-size: 20px;
    position: relative;
    padding-bottom: 21px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #211161;
    font-weight: 600;
}
.advantages__content .item__left p::before,
.advantages__content .item__right p::before {
    content: "";
    position: absolute;
    background-color: #cf9b21;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    bottom: -2px;
    z-index: -1;
}
.advantages__content .item__right p::before {
    right: 0;
}
.advantages__content .item__left p::after,
.advantages__content .item__right p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    left: 0;
}
.advantages__content .item__right p::after {
    background: linear-gradient(to left, #cf9b21, rgba(0, 0, 0, 0));
}
.advantages__content .item__left p::after {
    background: linear-gradient(to right, #cf9b21, rgba(0, 0, 0, 0));
}
.chooseus {
    padding-bottom: 167px;
}
.chooseus__frame .title {
    margin-bottom: 54px;
}
.chooseus__content {
    background: #211161;
    background: linear-gradient(135deg, rgba(33, 17, 97, 1) 0%, rgba(45, 8, 191, 1) 100%);
    border-radius: 30px;
    padding: 102px 70px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 33px;
}
.chooseus__content .item {
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 205px;
    position: relative;
    z-index: 1;
}
.chooseus__content .item .icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.chooseus__content .item:not(:last-child)::before {
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    width: 1px;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.chooseus__content .item:not(:last-child) {
    padding-right: 33px;
}
.referring__content .title {
    margin-bottom: 100px;
}
.referring__list {
    display: flex;
    gap: 125px;
    max-width: 1175px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}
.referring__list::before {
    content: "";
    position: absolute;
    width: 1920px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    left: -80px;
    top: 30px;
}
.referring__list .item {
    max-width: 300px;
}
.referring__list .item .icon {
    margin-bottom: 35px;
}
.referring__list .item h3 {
    font-size: 25px;
    font-weight: bold;
    color: #211161;
    line-height: 1.4em;
    margin-bottom: 8px;
}
.referring__list .item .desc p {
    font-family: var(--font-mont);
    color: #26252a;
}
.referring__frame {
    display: flex;
    gap: 24px;
}
.referring__img {
    position: relative;
    z-index: 1;
    width: 48%;
    max-width: 842px;
    flex-shrink: 0;
    margin-left: -11%;
    padding-bottom: 50px;
    align-self: flex-end;
    margin-top: -65px;
}
.referring__content {
    width: 72%;
    max-width: 1175px;
    flex-shrink: 0;
}
.referring.sec__animation .img__animate > img {
    animation: scaleUpDown 1.5s ease-in-out forwards;
}
.img__animate > img {
    position: absolute;
    right: 19%;
    bottom: 40%;
    transform: scale(0);
    transform-origin: center bottom;
    max-width: 430px;
    width: 52%;
}
@keyframes scaleUpDown {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
.img__animate .dc img {
    position: absolute;
}
.img__animate .dc img:nth-child(1) {
    left: 27%;
    top: 12%;
    width: 12%;
    max-width: 95px;
}
.img__animate .dc img:nth-child(2) {
    left: 30%;
    top: 37%;
    width: 19%;
    max-width: 156px;
}
.system {
    padding-bottom: 95px;
}
.system__content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 157px;
    margin-bottom: 50px;
}
.system__list {
    width: 43%;
    max-width: 750px;
    gap: 30px;
}
.system__frame .title {
    margin-bottom: 14px;
}
.system__list .item {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.system__list .item:not(:last-child) {
    margin-bottom: 24px;
}
.system__list .item h3 {
    font-weight: bold;
    font-size: 25px;
    line-height: 1.4em;
    margin-bottom: 10px;
}
.system__img {
    width: 53%;
    max-width: 940px;
    margin-left: -5%;
    position: relative;
    z-index: 1;
}
.system__img::before {
    content: "";
    position: absolute;
    background: url("../images/system_img_dc.png") center no-repeat;
    background-size: cover;
    width: 36%;
    max-width: 333px;
    aspect-ratio: 1/1;
    bottom: 0;
    left: -15%;
    z-index: -1;
}
.btn.col2 {
    display: flex;
    gap: 18px;
}
.btn.col2.center {
    justify-content: center;
}
.btn.col2 a {
    width: 260px;
}
.system__frame .btn a.btn_w {
    border-color: var(--main-cl);
    color: var(--main-cl);
}
.system__frame .btn a.btn_w span {
    position: relative;
    z-index: 1;
}
.system__frame .btn a.btn_w span::before {
    content: "";
    position: absolute;
    background: url(../images/ic_arrow_right.png) center no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    display: block;
}
.testimonials {
    padding-bottom: 135px;
}
.contests__content {
    position: relative;
    z-index: 1;
    padding: 54px;
}
.contests__content::before {
    content: "";
    position: absolute;
    background: url("../images/contests_bg.jpg") center no-repeat;
    background-size: cover;
    width: 1920px;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}
.contests__info {
    margin-bottom: 30px;
}
.contests__info h3 {
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
}
.contests__info--time {
    display: flex;
    justify-content: center;
}
.contests__info--time p {
    padding-right: 25px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #fff;
}
.contests__info--time p.participants span {
    font-size: 500%;
    font-weight: 400;
}
.contests__info--time p span {
    display: block;
    font-weight: 500;
    font-size: 250%;
}
.contests__info--time p:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.contests__frame .title {
    margin-bottom: 54px;
}
.contests__frame .title h2 {
    margin-bottom: 20px;
}
.range__info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
    gap: 20px;
}
.range__info .status {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    text-align: center;
    padding: 10px 42px;
    color: #fff;
    white-space: nowrap;
}
.range__info .start,
.range__info .end {
    color: #fff;
}
.range__info .start span,
.range__info .end span {
    opacity: 0.8;
}
.range__info .status span {
    color: #63fd84;
    font-size: 1405;
    font-weight: 900;
    display: block;
    margin-top: 5px;
}
.contests__fund {
    position: relative;
    z-index: 1;
}
.contests__content .range {
    max-width: 1082px;
    margin: -250px auto 50px;
    position: relative;
    z-index: 2;
}
.contests__fund--prize {
    position: absolute;
    color: rgba(255, 255, 255, 0.9);
    top: 4%;
    text-align: center;
    left: 0;
    right: 0;
}
.contests__fund--img {
    max-width: 516px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.contests__fund--prize span {
    position: relative;
    font-size: 355.5555%;
    font-weight: 900;
    line-height: 1.265em;
    color: #fff;
    z-index: 2;
    display: block;
}
.contests__fund--prize span::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    z-index: -2;
    color: transparent;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}
.contests__fund--prize span::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    z-index: -1;
    color: transparent;
    text-shadow:
        rgb(207, 155, 33) 2px 0 0,
        rgb(207, 155, 33) -2px 0 0,
        rgb(207, 155, 33) 0 2px 0,
        rgb(207, 155, 33) 0 -2px 0,
        rgb(207, 155, 33) 2px 2px 0,
        rgb(207, 155, 33) -2px 2px 0,
        rgb(207, 155, 33) 2px -2px 0,
        rgb(207, 155, 33) -2px -2px 0;
}
.contests__content .btn {
    position: relative;
    z-index: 2;
}
.reward {
    padding: 150px 0 75px;
}
.reward__page {
    background: url(../images/mainvs_reward.jpg) right top no-repeat !important;
    background-size: cover !important;
    /* height: 100% !important; */
}
.reward__page .mainvs__img {
    background: unset !important;
}
.reward__page .mainvs__img::before {
    content: '';
    position: absolute;
    background: url('../images/mainvs_reward_dc.png') center no-repeat;
    background-size: cover;
    width: 53.176%;
    /* height: 92.71%; */
    height: auto;
    aspect-ratio: 1 / 0.84107;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.reward__page .mainvs__img::after {
    content: '';
    position: absolute;
    background: url('../images/mainvs_reward_dc2.png') center no-repeat;
    background-size: cover;
    width: 81.575%;
    height: auto;
    aspect-ratio: 1 / 0.37903;
    bottom: 0;
    right: 0;
    z-index: -2;
}
.reward__frame .title {
    margin-bottom: 50px;
}
.reward__frame .title h2 {
    margin-bottom: 20px;
}
/*.reward__content table tr:first-child th:first-child {*/
/*    border-top-left-radius: 30px;*/
/*}*/
.reward__content .tbl__scroll {
    max-height: unset;
}
/*.reward__content table tr:last-child th:first-child {*/
/*    border-bottom-left-radius: 30px;*/
/*}*/
.reward__content table {
    border-radius: 30px;
    overflow: hidden;
}
.reward__content table tbody tr th,
.reward__content table tbody tr td {
    padding: 15px 30px;
    font-weight: 500;
}
.reward__content table thead th:first-child {
    border-top-left-radius: 30px;
}
.reward__content table tbody tr:last-child th {
    border-bottom-left-radius: 30px;
}
.reward__content table th {
    font-size: 20px;
    font-weight: bold;
}
.reward__content table thead th {
    background-color: #fef1d8;
}
.reward__content table tbody tr:nth-child(odd) {
    background-color: #fef5e3;
}
.reward__content table th,
.reward__content table td {
    border: 0;
    padding: 30px;
}
.reward__content table th {
    width: 323px;
    color: #211161;
}
.reward__content table td {
    width: 290px;
    text-align: center;
    color: #28272c;
}
/*.reward__content table tr > *:nth-child(1) {*/
/*    background-color: #fef1d8;*/
/*}*/
/*.reward__content table tr > *:nth-child(2) {*/
/*    background-color: #fef5e3;*/
/*}*/
/*.reward__content table tr > *:nth-child(3) {*/
/*    background-color: #fef9ed;*/
/*}*/
/*.reward__content table tr > *:nth-child(4) {*/
/*    background-color: #fef5e3;*/
/*}*/
/*.reward__content table tr > *:nth-child(5) {*/
/*    background-color: #fef9ed;*/
/*}*/
/*.reward__content table tr > *:nth-child(6) {*/
/*    background-color: #fef5e3;*/
/*}*/
.ic_rank {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-left: 16%;
    font-size: 18px;
    color: #28272c;
}
.reward__content table tbody tr:nth-child(even) th:first-child,
.reward__content table tbody tr:nth-child(even) td:last-child {
    position: relative;
}
.reward__content table tbody tr:nth-child(even) th:first-child:before,
.reward__content table tbody tr:nth-child(even) td:last-child:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fef1d8;
    width: 1px;
    height: 100%;
}
.reward__content table tbody tr:nth-child(even) td:last-child:before {
    right: 0;
    left: inherit;
}
.become {
    padding-top: 140px;
}
.become__content {
    width: 55%;
    max-width: 750px;
}
.become__content h2 {
    color: #fff;
    margin-bottom: 20px;
}
.become__content .desc {
    margin-bottom: 31px;
}
.become__content .desc p {
    color: #fff;
    font-family: var(--font-mont);
}
.become__frame {
    background: #c2901e;
    background: linear-gradient(135deg, rgba(194, 144, 30, 1) 0%, rgba(249, 233, 195, 1) 100%);
    padding: 92px 0 137px 125px;
    border-radius: 50px;
    display: flex;
    position: relative;
    z-index: 1;
}
.become__frame::before {
    content: "";
    position: absolute;
    background: url("../images/become_dc1.png") center no-repeat;
    background-size: cover;
    width: 24%;
    max-width: 421px;
    aspect-ratio: 1 / 0.5;
    top: 0;
    left: 50%;
    z-index: -1;
}
.become__frame::after {
    content: "";
    position: absolute;
    background: url("../images/become_dc2.png") center no-repeat;
    background-size: cover;
    width: 13%;
    max-width: 230px;
    aspect-ratio: 1 / 0.8131;
    z-index: -1;
    bottom: 0;
    right: 0;
    border-bottom-right-radius: 50px;
}
.become__img {
    position: absolute;
    right: 9%;
    bottom: 0;
    width: 38%;
    max-width: 659px;
}
.become__img::before {
    content: "";
    position: absolute;
    background: url("../images/become_img_dc1.png") center no-repeat;
    background-size: cover;
    width: 19%;
    aspect-ratio: 1/1;
    bottom: -7%;
    left: -7%;
    z-index: -1;
}
.become__img::after {
    content: "";
    position: absolute;
    background: url("../images/become_img_dc2.png") center no-repeat;
    background-size: cover;
    width: 10%;
    max-width: 61px;
    aspect-ratio: 1 / 1;
    right: -5%;
    top: 60%;
    z-index: -1;
}
.become__logo {
    position: absolute;
    top: 35%;
    right: -10%;
    width: 34%;
    max-width: 219px;
}
.awards {
    padding-top: 175px;
}
.awards__content {
    max-width: 508px;
}
.awards__content .title h2 {
    margin-bottom: 20px;
}
.awards__content .title .desc {
    margin-bottom: 40px;
}
.awards__slide {
    width: 1470px;
    margin-right: -3%;
}
.awards__slide .item {
    text-align: center;
    width: 36%;
    max-width: 450px;
    padding-bottom: 100px;
}
.link__download a,
.link__download button {
    color: var(--main-cl);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    background-color: transparent;
    outline: 0;
    border: 0;
}
.link__download a span,
.link__download button span {
    display: flex;
    align-items: center;
    gap: 10px;
}
.awards__frame {
    display: flex;
    gap: 92px;
    border-radius: 30px;
}
.awards__frame .ttl {
    margin-bottom: 15px;
    margin-top: -60%;
}
.leaderboard__content {
    background-color: rgba(255, 235, 204, 0.3);
    border-radius: 30px;
    padding: 30px 50px;
}
.leaderboard__frame .title {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}
.leaderboard__frame .title h2 {
    width: 64%;
    max-width: 1127px;
}
.leaderboard__head {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 -50px 30px;
    padding: 0 50px 20px;
}
.leaderboard__head .ttl {
    font-size: 25px;
    font-weight: bold;
    color: #211161;
}
.leaderboard__head--button {
    display: flex;
    align-items: center;
    gap: 30px;
}
.leaderboard__tools {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}
.leaderboard__tools .select {
    position: relative;
    z-index: 1;
}
.leaderboard__tools .select::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
}
.leaderboard__tools > div {
    display: flex;
    align-items: center;
    gap: 30px;
}
.leaderboard__tools .select select {
    background-color: transparent;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 60px;
    appearance: none;
}
.leaderboard__tools > div > div > p {
    display: flex;
    align-items: center;
    gap: 8px;
}
.leaderboard__tools .sort span,
.leaderboard__tools .filter span {
    position: relative;
    top: -1px;
    flex-shrink: 0;
}
.leaderboard__tools .filter p,
.leaderboard__tools .find p {
    color: var(--main-cl);
}
.leaderboard__tools .find {
    width: 24px;
    height: 24px;
    border-radius: 22px;
    transition: width 0.35s ease;
    cursor: pointer;
}
.leaderboard__tools .find span {
    flex-shrink: 0;
    display: flex;
}
.leaderboard__tools .find img {
    width: 24px;
    height: 24px;
}
.leaderboard__tools .find .txt {
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-6px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
    padding: 0;
    background-color: transparent;
    border: 0;
}
.leaderboard__tools .find.open {
    width: 208px;
}
.leaderboard__tools .find.open .txt {
    opacity: 1;
    transform: translateX(0);
}
.leaderboard__tools .group2 .grid img,
.leaderboard__tools .group2 .list img {
    filter: brightness(0) invert(0);
    cursor: pointer;
}
.leaderboard {
    padding-bottom: 162px;
}
.leaderboard__tools .group2 .find input::placeholder {
    color: #cf9b21;
    opacity: 1;
}
.style__list {
    /*overflow-y: auto;*/
    /*max-height: 690px;*/
}
.style__list .btn a {
    width: 189px;
    border: 0 !important;
    margin-bottom: 8px;
}
.style__list .btn a span {
    padding-right: unset !important;
}
.style__list .btn a span::before {
    display: none !important;
}
.style__list .score {
    display: flex;
    align-items: center;
}
.style__list thead tr th {
    text-align: left;
    color: #808080;
    font-weight: 400;
    white-space: nowrap;
}
.style__list thead tr th:first-child {
    width: 600px;
}
.style__list th,
.style__list td {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
}
.style__list td {
    font-weight: 600;
    font-size: 22px;
}
.style__list .col_user {
    display: flex;
    gap: 26px;
}
.style__list .col_user .user {
    display: flex;
    align-items: center;
    gap: 23px;
    width: 100%;
    max-width: 300px;
}
.user .avt {
    position: relative;
    flex-shrink: 0;
    width: 82px;
    height: 82px;
}
.user .avt .region {
    position: absolute;
    bottom: 0;
    right: 0;
}
.style__list .col_user .user .info {
    max-width: 180px;
}
.style__list .col_user .user .info .sub__name,
.style__list .col_user .user .info .name {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.style__list .col_user .user .info .sub__name {
    font-size: 20px;
}
.style__list .col_user .user .info .name {
    font-size: 12px;
    margin-bottom: 10px;
}
.style__list .col_user .user .info .date {
    font-size: 16px;
    color: #808080;
    font-weight: 400;
}
.style__list .col_user .chart {
    display: flex;
    align-items: center;
    gap: 30px;
}
.style__list .col_user .risk {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    align-self: flex-end;
    gap: 6px;
}
.style__list .col_user .risk span {
    display: block;
    position: relative;
    top: -3px;
    flex-shrink: 0;
}
.style__list .chart_img {
    flex-shrink: 0;
}
.style__list .txt {
    font-size: 18px;
    color: #808080;
    font-weight: 500;
}
.danger {
    color: #bf3838;
}
.safe {
    color: #36a323;
}
.warning {
    color: #e6c202;
}
.leaderboard__body {
    margin: 0 -50px;
}
.style__list .tbl__scroll {
    padding-right: 0;
    max-height: unset;
}
.style__list tbody td:first-child {
    padding: 20px 20px 20px 50px;
}
.style__list,
.style__grid {
    display: none;
}
.style__list.active,
.style__grid.active {
    display: block;
}
.leaderboard__tools > div > div > p.active img {
    filter: unset !important;
}
.style__grid {
    padding: 0 50px;
}
.style__grid--frame {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    max-height: unset;
    overflow-x: hidden;
    overflow-y: auto;
}
.style__grid--frame > .item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 30px;
}
.style__grid--head .user {
    display: flex;
    align-items: center;
    gap: 23px;
    max-width: 264px;
}
.style__grid--head .user .name {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.style__grid--head {
    margin-bottom: 30px;
}
.style__grid--head .user .date {
    font-size: 16px;
    color: #808080;
}
.style__grid--percent .item {
    color: #808080;
}
.style__grid--percent {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 30px;
}
.style__grid--percent .item span {
    color: #26252a;
    font-size: 122.222%;
    font-weight: 600;
    display: block;
    margin-top: 12px;
}
.style__grid--chart {
    margin-bottom: 30px;
}
.style__grid--frame .btn {
    margin-bottom: 12px;
}
.style__grid--frame .btn a {
    width: 100%;
    border: 0 !important;
}
.style__grid--frame .btn a span {
    padding-right: 0 !important;
}
.style__grid--frame .btn a span::before {
    display: none !important;
}
.style__grid--frame .txt {
    color: #808080;
}
.further__content {
    display: flex;
    justify-content: center;
    gap: 30px 77px;
    flex-wrap: wrap;
}
.further {
    padding-top: 50px;
    margin-bottom: 157px;
}
.further__frame .title {
    margin-bottom: 68px;
}
.further__content .item {
    width: 100%;
    max-width: 540px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: #fef1d8;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    z-index: 1;
}
.further__content .item .ttl {
    color: #211161;
    font-size: 25px;
    font-weight: bold;
}
.underline {
    text-decoration: underline;
}
.faqPage__content {
    display: none;
}
.faqPage__content.active {
    display: block;
}
.faqPage .faqCopyTrading__frame {
    flex-direction: column;
}
.faqPage__page {
    display: flex;
    gap: 125px;
}
.faqPage__tabs {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.faqPage__tabs .item {
    font-weight: bold;
    line-height: 1.944em;
    background-color: #fff;
    border-radius: 10px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.faqPage__tabs .item.active {
    background: #211161;
    background: linear-gradient(135deg, rgba(33, 17, 97, 1) 0%, rgba(45, 8, 191, 1) 100%);
    color: #fff;
}
.faqPage__page .faqCopyTrading__content {
    background-color: #fff;
    padding: 60px 50px;
    flex-grow: 1;
    width: calc(300px + 125px);
    max-width: 100%;
    flex-grow: 1;
}
.faqPage__page .faqCopyTrading__content .faqPage__content h3 {
    font-weight: bold;
    font-size: 25px;
    color: #211161;
    border-left: 2px solid var(--main-cl);
    padding-left: 24px;
    line-height: 1.944em;
    margin-bottom: 30px;
}
.faqPage__page .faqCopyTrading__content .item.open {
    background-color: rgba(255, 235, 204, 0.3);
    border: 0;
}
.faqPage__page .faqCopyTrading__content .item * {
    color: #26252a;
}
.faqPage__page .faqCopyTrading__content .item:not(:last-child) {
    margin-bottom: 20px;
}
.faqPage__page .faqCopyTrading__content .item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}
.faq__page .mainvs__video img {
    height: 100%;
}
.faqPage {
    padding-top: 136px;
    position: relative;
    z-index: 1;
}
.faqPage::before {
    content: "";
    position: absolute;
    background: url("../images/faqPage_dc.png") center no-repeat;
    background-size: cover;
    width: 475px;
    height: 465px;
    top: 70%;
    left: -200px;
    transform: translate(0, -50%);
    z-index: -1;
}
.faqPage::after {
    content: "";
    position: absolute;
    background: url("../images/faqPage_dc2.png") center no-repeat;
    background-size: cover;
    width: 260px;
    height: 264px;
    top: 50%;
    right: -80px;
    transform: translate(0, -50%);
    z-index: -1;
}
.faq__page::before {
    content: "";
    position: absolute;
    background: url("../images/faqPage_dc3.png") center no-repeat;
    background-size: cover;
    width: 155px;
    height: 158px;
    bottom: -90px;
    right: 25%;
    z-index: 2;
}
.certification {
    padding-top: 232px;
}
.certification__frame .item {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.certification__frame .item:not(:last-child) {
    margin-bottom: 50px;
}
.certification__frame .item:nth-child(even) {
    flex-direction: row-reverse;
}
.certification__frame .item .img {
    margin-bottom: -15%;
    max-width: 714px;
    position: relative;
    z-index: 1;
}
.certification__frame .item .img .dc {
    position: absolute;
    top: 34%;
    right: 7%;
    z-index: 2;
    width: 25%;
    max-width: 175px;
}
.certification__frame .item .img img {
    pointer-events: none;
}
.certification__frame .item .item__content {
    width: 51%;
    max-width: 625px;
}
.certification__frame .item h2 {
    margin-bottom: 30px;
}
.certification__frame .item .desc {
    margin-bottom: 30px;
}
.certification__frame .item .desc p:not(:last-child) {
    margin-bottom: 20px;
}
.certification__frame .item .link__download a {
    --clr-btn: linear-gradient(130deg, #cf9b21 0%, #c8a759 50%, #e7d1a4 100%);
    padding: 19px 24px;
    background: var(--clr-btn);
    color: #fff;
    border-radius: 100px;
}
.certification__frame .item .link__download a img {
    filter: brightness(0) invert(1);
}
.certification__frame {
    width: 100%;
    max-width: 1525px;
    margin: 0 auto;
}
.certification__frame .item .img {
    position: relative;
    z-index: 1;
}
.certification__frame .item .img::before {
    content: "";
    position: absolute;
    background: url("../images/certification_animate.png") center no-repeat;
    background-size: cover;
    width: 758px;
    height: 425px;
    top: 10%;
    left: 45%;
    transform: translate(-50%, -50%) scale(0.2);
    transition: transform 0.8s ease;
    z-index: -1;
}
.certification__frame .item .img.active::before {
    transform: translate(-50%, -50%) scale(1);
}
.legal__page .mainvs__h1 h1 {
    width: 100%;
}
.legal {
    padding-top: 197px;
    position: relative;
    z-index: 1;
}
.legal::before {
    content: "";
    position: absolute;
    background: url("../images/legal_dc1.png") center no-repeat;
    background-size: cover;
    width: 28%;
    max-width: 521px;
    aspect-ratio: 1/0.84;
    bottom: -18%;
    left: 5%;
    z-index: -1;
}
.legal::after {
    content: "";
    position: absolute;
    background: url("../images/legal_dc2.png") center no-repeat;
    background-size: cover;
    width: 28%;
    max-width: 427px;
    aspect-ratio: 1 / 0.9;
    bottom: -4%;
    right: -7%;
    z-index: -1;
}
.legal.sec__animation::before,
.legal.sec__animation::after {
    animation: upDown 1s ease-in-out forwards alternate;
}
.legal__frame h2 {
    text-align: center;
    font-size: max(min(calc(80 / 1920 * 100vw), 80px), 40px);
    line-height: 1.2625em;
    font-family: var(--font-family);
    position: relative;
    padding-top: 108px;
    z-index: 1;
    margin-bottom: 38px;
}
.legal__frame h2::before {
    content: "";
    position: absolute;
    background: url("../images/legal_dc.png") center no-repeat;
    background-size: cover;
    width: 103px;
    height: 70px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}
.legal__logo {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 245px;
}
.legal__logo::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    width: 1px;
    height: 190px;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: -1;
}
.documents {
    padding-top: 137px;
}
.documents__frame {
    background: #cf9b21;
    background: linear-gradient(
        0deg,
        rgba(207, 155, 33, 0) 0%,
        rgba(207, 155, 33, 0.01) 17%,
        rgba(207, 155, 33, 0.01) 41%,
        rgba(207, 155, 33, 0.28) 63%,
        rgba(207, 155, 33, 0.3) 100%
    );
    border-radius: 50px;
    padding: 88px;
}
.documents__frame .title {
    margin-bottom: 67px;
}
.documents__frame h2 {
    margin-bottom: 30px;
}
.documents__frame .desc p {
    color: #26252a;
}
.documents__content {
    margin: 0 auto;
    width: 100%;
    max-width: 1225px;
    display: flex;
    gap: 82px;
    flex-wrap: wrap;
}
.documents__content .item {
    max-width: 353px;
    width: 100%;
    display: block;
    position: relative;
}
.documents__content .item .button_full {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: transparent;
    border: 0;
}.documents__content .item .link__download {
    position: relative;
    z-index: 3;
}
.documents__content .item h2 {
    color: #fff;
    margin-top: auto;
    font-weight: 400;
}
.documents__content .item .img {
    min-height: 450px;
    position: relative;
    z-index: 1;
    border-radius: 25px;
    overflow: hidden;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.documents__content .item .img::before {
    content: "";
    position: absolute;
    background: url("../images/documents_img1.png") center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}
.documents__content .item h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: bold;
    color: #26252a;
}
.documents__content .item .link__download a {
    font-weight: 700;
    font-size: 16px;
}
.documents__content .item .link__download a img {
    position: relative;
    top: -2px;
}
.whatmt5__page .mainvs__h1 {
    justify-content: space-between;
    align-items: flex-end;
}
.whatmt5__page h1 {
    max-width: 1125px;
}
.whatmt5__page .desc {
    max-width: 325px;
    text-align: right;
}
.whatmt5__frame {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.whatmt5__content {
    width: 30%;
    max-width: 515px;
    padding: 50px 0;
}
.whatmt5__content .title {
    margin-bottom: 34px;
}
.whatmt5__img {
    width: 64%;
    max-width: 1125px;
    margin-right: -4%;
    position: relative;
    z-index: 1;
}
.whatmt5__img > .dc img:nth-child(1) {
    position: absolute;
    z-index: 0;
    top: 20%;
    right: -12%;
    width: 38%;
    max-width: 417px;
    aspect-ratio: 1/1;
}
.whatmt5__img > .dc img:nth-child(2) {
    position: absolute;
    z-index: 0;
    top: 10%;
    left: -14%;
    width: 25%;
    max-width: 276px;
    aspect-ratio: 1/1;
}
.whatmt5__img .bg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 20%;
    opacity: 1;
}
.whatmt5__img .bg .dc img {
    position: absolute;
    width: 45%;
    max-width: 497px;
    /* height: 222px; */
    top: 36%;
    left: 5%;
}
.whatmt5__img .bg > img {
    width: 81%;
    max-width: 901px;
}
.whatmt5__img .bg::before {
    content: "";
    position: absolute;
    background: url("../images/mt5_img_bg.png") left center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: -1;
}
.choosemt5 {
    padding-top: 150px;
}
.choosemt5__frame .title {
    margin-bottom: 60px;
}
.choosemt5__content {
    display: flex;
    gap: 64px;
    justify-content: center;
}
.choosemt5__content .item {
    --bg-color1: #ffebcc;
    --bg-color2: linear-gradient(135deg, rgba(33, 17, 97, 1) 0%, rgba(45, 8, 191, 1) 100%);
    --bg-color3: #fff;
    border-radius: 30px;
    width: 31%;
    max-width: 550px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.choosemt5__content .item.item1 {
    background: var(--bg-color1);
}
.choosemt5__content .item.item2 {
    background: var(--bg-color2);
}
.choosemt5__content .item.item3 {
    background: var(--bg-color3);
}
.choosemt5__content .item .img {
    height: max(16.875vw, 250px);
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 85px;
}
.choosemt5__content .item .img .dc img {
    position: absolute;
}
.choosemt5__content .item.item1 .img__main {
    position: relative;
    z-index: 0;
    max-width: 428px;
    width: 79%;
}
.choosemt5__content .item.item1 .img__main .chart__main {
    position: absolute;
    left: 39%;
    top: 15%;
    width: 37%;
    max-width: 157px;
}
.choosemt5__content .item.item1 .dc img:nth-child(1) {
    top: -34%;
    left: 22%;
    width: 34%;
    max-width: 143px;
}
.choosemt5__content .item.item1 .dc img:nth-child(2) {
    bottom: -6%;
    left: -30%;
    width: 50%;
    max-width: 213px;
}
.choosemt5__content .item.item1 .dc img:nth-child(3) {
    top: 30%;
    right: -3%;
    width: 25%;
    max-width: 103px;
}
.choosemt5__content .item .info h3 {
    font-size: 25px;
    font-weight: bold;
    color: #211161;
    margin-bottom: 16px;
}
.choosemt5__content .item .info {
    padding: 0 58px 58px;
}
.choosemt5__content .item .info .desc p {
    font-family: var(--font-mont);
}
.choosemt5__content .item.item2 h3,
.choosemt5__content .item.item2 .desc p {
    color: #fff;
}
.choosemt5__content .item.item3 .img .dc img {
    top: 30px;
    right: 32%;
    z-index: -1;
}
.choosemt5__content .item.item2 .rocket {
    position: absolute;
    top: 21%;
    right: 100%;
}
.choosemt5__content .item.item2 img:not(.rocket) {
    width: 72%;
    max-width: 394px;
}
.choosemt5__content .item.item3 .img > img {
    width: 85%;
    max-width: 463px;
}
.choosemt5__content .item.item3 .img .dc img {
    width: 53%;
    max-width: 289px;
}
.choosemt5__content {
    gap: 20px;
}
.key {
    padding-top: 150px;
}
.key__frame .title {
    margin-bottom: 60px;
}
.key__content .item {
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px 100px;
    border-radius: 30px;
}
.key__content .item:not(:last-child) {
    margin-bottom: -60px;
}
.key__content .item__frame {
    margin: 0 auto;
    width: 100%;
    max-width: 652px;
}
.key__content .item .icon {
    margin-bottom: 15px;
}
.key__content .item h3 {
    font-size: 32px;
    font-weight: bold;
    color: #211161;
    margin-bottom: 15px;
}
.key__metatrader {
    margin-top: -100px;
    position: relative;
    z-index: 1;
}
.key__metatrader .dc img {
    position: absolute;
    z-index: 1;
}
.key__metatrader .dc img:nth-child(1) {
    width: 23%;
    max-width: 391px;
    top: 0%;
    left: 0%;
}
.key__metatrader .dc img:nth-child(2) {
    width: 8%;
    max-width: 139px;
    bottom: 25%;
    left: 28%;
}
.key__metatrader .dc img:nth-child(3) {
    width: 6%;
    max-width: 92px;
    top: 16%;
    right: 34%;
}
.key__metatrader .dc img:nth-child(4) {
    width: 15%;
    max-width: 250px;
    right: 5%;
    top: 27%;
}
.key__metatrader .img__main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1920;
}
.key__metatrader .img__main .dc img {
    position: absolute;
    top: 0;
    width: 13%;
    max-width: 222px;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.comparison {
    padding-top: 140px;
    padding-bottom: 157px;
}
.comparison__content table th,
.comparison__content table td {
    border: 0;
}
.comparison__content table thead th {
    font-size: 25px;
    font-weight: bold;
    color: #211161;
    padding: 0;
}
.comparison__content table thead th p {
    padding: 60px 30px 20px;
}
.comparison__content table thead th:nth-child(2) p {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.comparison__content table thead th:first-child {
    text-align: left;
}
.comparison__content table tbody tr:nth-child(odd) td {
    background-color: rgba(255, 235, 204, 0.5);
}
.comparison__content table tbody td {
    padding: 0;
}
.comparison__content table tbody td p {
    padding: 24px 30px;
}
.comparison__content table tbody tr:last-child td {
    padding-bottom: 64px;
}
.comparison__content table tbody td:not(:first-child) {
    text-align: center;
    font-weight: bold;
}
.comparison__content table tbody td:nth-child(2) {
    border-left: 1px solid #cf9b21;
    border-right: 1px solid #cf9b21;
}
.comparison__content table thead th:nth-child(2) {
    border: 1px solid #cf9b21;
    border-bottom: 0;
}
.comparison__content table tbody tr:last-child td:nth-child(2) {
    border-bottom: 1px solid #cf9b21;
    border-bottom-left-radius: 30px;
}
.comparison__content {
    background-color: rgba(255, 235, 204, 0.3);
    padding: 0 50px;
}
.comparison__content .tbl__scroll {
    padding-right: 0;
    max-height: unset;
}
.comparison__content .tbl__scroll table {
    min-width: 800px;
}
.comparison__frame .title {
    margin-bottom: 55px;
}
.metatrader {
    background: #211161;
    background: linear-gradient(135deg, rgba(33, 17, 97, 1) 0%, rgba(45, 8, 191, 1) 100%);
}
.metatrader__content {
    width: 37%;
    max-width: 640px;
    padding: 124px 0;
}
.metatrader__content h2 {
    color: #fff;
    margin-bottom: 50px;
    font-size: max(min(calc(45 / 1920 * 100vw), 45px), 28px);
    letter-spacing: 0;
}
.metatrader__content .desc p {
    color: #fff;
    font-size: 16px;
    max-width: 488px;
    line-height: 1.25em;
}
.metatrader__frame {
    display: flex;
    position: relative;
    z-index: 1;
}
.metatrader__img {
    align-self: flex-end;
    width: 50%;
    max-width: 875px;
}
.metatrader__download {
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 31px;
    margin-left: 32px;
}
.metatrader__frame::before {
    content: "";
    position: absolute;
    background: url("../images/metatrader_bg_dc1.png") center no-repeat;
    background-size: cover;
    width: 20%;
    max-width: 339px;
    aspect-ratio: 1 / 0.5;
    top: 0;
    left: 37%;
    z-index: -1;
}
.metatrader__frame::after {
    content: "";
    position: absolute;
    background: url("../images/metatrader_bg_dc2.png") center no-repeat;
    background-size: cover;
    width: 24%;
    max-width: 421px;
    aspect-ratio: 1 / 0.44;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.howmt5 {
    padding-top: 157px;
}
.howmt5__frame .title {
    margin-bottom: 58px;
}
.howmt5__content {
    display: flex;
    gap: 25px;
}
.howmt5__content > div {
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.8);
}
.howmt5__step {
    width: 40%;
    max-width: 575px;
}
.howmt5__step {
    padding: 80px 50px;
}
.howmt5__step .item {
    font-size: 25px;
    font-weight: bold;
    line-height: 1.4em;
    color: #666666;
    display: inline-flex;
    gap: 12px;
    padding-bottom: 45px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.howmt5__step .item::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    left: 25px;
    top: 0;
    background-color: #D1D1D1;
    z-index: -1;
}
.howmt5__step .item.active::before {
    background-color: #211161;
}
.howmt5__step .item:last-child::before {
    display: none;
}
.howmt5__step .item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #666666;
    border: 1px solid #666666;
    background-color: #fff;
    position: relative;
    top: -7px;
}
.howmt5__step .item:last-child {
    padding-bottom: 0;
}
.howmt5__step .item.active {
    color: #211161;
}
.howmt5__step .item.active span {
    background: #211161;
    background: linear-gradient(135deg, rgba(33, 17, 97, 1) 0%, rgba(45, 8, 191, 1) 100%);
    color: #fff;
}
.howmt5__step--content {
    width: 50%;
    max-width: 1174px;
    padding: 88px 125px;
    flex-grow: 1;
}
.howmt5__step--content .item {
    display: none;
}
.howmt5__step--content .item p:not(:last-child) {
    margin-bottom: 40px;
}
.howmt5__step--content .item.active {
    display: block;
}
.mt5faqs {
    padding-top: 166px;
}
.mt5faqs .faqCopyTrading__frame {
    position: relative;
    z-index: 1;
    padding-bottom: 178px;
}
.mt5faqs .faqCopyTrading__frame::before {
    content: '';
    position: absolute;
    background: url('../images/mt5faqs_dc1.png') center no-repeat;
    background-size: cover;
    width: 25%;
    max-width: 431px;
    aspect-ratio: 1 / 1.13;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.contactus__page .ready__company {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contactus__page .ready__company ul {
    display: flex;
    gap: 62px;
    width: 100%;
    min-width: none;
    max-width: 100%;
}
.contactus__page .ready__company ul li {
    margin-bottom: 0;
}
.contactus__page .ready__company ul li .ttl {
    color: #26252A;
}
.title__company {
    font-size: 25px;
    font-weight: bold;
    color: var(--main-cl);
    margin-bottom: 30px;
}
.contactus__page .ready__frame {
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.contactus__page .ready__form {
    width: 60%;
    max-width: 1050px;
    background-color: #fff;
    box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}
.contactus__page .ready__form::before {
    content: '';
    position: absolute;
    background: url('../images/contactus_dc1.png') center no-repeat;
    background-size: cover;
    width: 266px;
    height: 356px;
    left: -17%;
    bottom: 0;
    z-index: -1;
}
.contactus__page .ready__content {
    width: 30%;
    max-width: 521px;
}
.contactus__page .ready__form h3 {
    color: #211161;
}
.contactus__page .ready__form .desc p {
    color: #26252A;
}
.contactus__page .contact__form td {
    width: 100%;
}
.contactus__page .contact__form td input, .contactus__page .contact__form td textarea,
.contactus__page .contact__form td select {
    color: #999999;
    background-color: rgba(255, 235, 204, 0.3);
    border: 1px solid rgba(207, 155, 33, 0.3);
    padding: 11px 28px !important;
    border-radius: 60px;
    font-size: 18px;
    line-height: 2em;
}
.contactus__page .contact__form td select {
    width: 100%;
    height: 60px;
    color: #26252A;
}
.contactus__page .contact__form td textarea {
    border-radius: 20px;
    width: 100%;
    height: 150px;
    resize: none;
}
.contactus__page .contact__form td textarea::placeholder,
.contactus__page .contact__form td input::placeholder {
    color: #999999;
}
.contactus__page .contact__form tr {
    display: flex;
    gap: 20px;
}
.contactus__page .contact__form td {
    display: block;
}
.w20 {
    width: 20% !important;
}
.w50 {
    width: 50% !important;
}
.w80 {
    width: 80%;
}
.contactus__page .ready__form--ttl {
    max-width: 818px;
    margin: 0 auto;
}
.phone-code .iti__flag-container {
    width: 100%;
    padding: 11px 28px !important;
}
.phone-code .iti__selected-flag {
    background-color: transparent !important;
    border-radius: 60px;
    padding: 0;
}
.official h2 {
    font-size: 25px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 35px;
}
.official__content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 38px 35px;
}
.official__content ul li {
    width: calc(25% - 27px);
}
.branch {
    padding-top: 153px;
}
select {
    color: #999999;
    background-color: rgba(255, 235, 204, 0.3);
    border: 1px solid rgba(207, 155, 33, 0.3);
    padding: 11px 28px !important;
    border-radius: 60px;
    font-size: 18px;
    line-height: 2em;
}
.select__country {
    display: flex;
    gap: 20px;
}
.branch .title {
    margin-bottom: 60px;
}
.branch__frame {
    background-color: #fff;
    border-radius: 30px;
    padding: 45px 30px;
}
.branch__content {
    display: flex;
    gap: 24px;
}
.branch__list {
    width: 41%;
    max-width: 725px;
}
.branch__map {
    width: 58%;
    max-width: 1025px;
}
.branch__map .item {
    display: none;
}
.branch__map .item.active {
    display: block;
}
.branch__map iframe {
    width: 100%;
    height: 770px;
    border-radius: 30px;
}
.select__country {
    padding-right: 56px;
    margin-bottom: 29px;
}
.select__country select {
    width: 100%;
}
.branch__frame .list {
    display: flex;
    flex-direction: column;
    max-height: 586px;
    overflow-y: auto;
}
.branch__frame .list .item {
    padding: 25px 30px;
    border-radius: 20px;
}
.branch__frame .list .item .btn_contact {
    text-align: right;
}
.branch__frame .list .item .sub {
    margin-bottom: 8px;
}
.branch__frame .list .item .name {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #211161;
}
.branch__frame .btn_contact a {
    font-weight: 600;
    color: var(--main-cl);
    text-decoration: underline;
}
.branch__frame .list .item.active {
    background-color: rgba(255, 235, 204, 0.3);
}
.certification__slide {
    position: absolute;
    width: 48%;
    /* height: 44%; */
    height: 51%;
    top: 2.66%;
    left: 25.7%;
    z-index: 1;
    padding-bottom: 10%;
}
.certification__slide .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}
.certification__slide img {
    height: 100%;
    object-fit: contain;
}
.certification__slide .swiper-wrapper {
    align-items: center;
}
.custom-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}
.custom-popup.active {
    display: block;
}
.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.popup-content {
    position: relative;
    width: 1000px;
    max-width: 90%;
    margin: 3% auto;
    background: #fff;
    padding: 40px;
    z-index: 2;
    border-radius: 8px;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.popup-body {
    height: 80vh;
    overflow-y: auto;
}
.popup-content {
    transform: translateY(-30px);
    opacity: 0;
    transition: all 0.3s ease;
}
.custom-popup.active .popup-content {
    transform: translateY(0);
    opacity: 1;
}
.over_hide {
    overflow: hidden;
}
.popup-body .regulations__content .item {
    max-width: 100%;
}
.reward__page h1 .ttl_m {
    display: block;
    font-size: 50%;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 10px;
}
.reward__page .mainvs__h1--sub {
    font-size: 24px;
    margin-bottom: 15px;
}
.reward__page .mainvs__h1 {
    width: 730px;
    max-width: 100%;
    right: unset;
    left: 70px;
}
/*.reward__page .mainvs__h1 h1 {*/
/*    font-size: max(min(5.4vw, 100px), 52px);*/
/*}*/
.reward__page .mainvs__h1--date span {
    color: #62FD84;
}
.reward__page .mainvs__h1--date::before {
    display: none;
}
.rewardToDo__frame .title {
    margin-bottom: 60px;
}
.rewardToDo__content {
    display: flex;
    gap: 85px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.rewardToDo__content::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 1px;
    background-color: #EBE6DB;
    top: 10px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
}
.rewardToDo__content .item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #211161;
    margin-bottom: 10px;
}
.rewardToDo__content .item {
    padding-top: 50px;
    position: relative;
    z-index: 1;
    width: calc(25% - 20px);
    display: flex;
    flex-direction: column;
}
.rewardToDo__content .item::before {
    content: '';
    position: absolute;
    background-color: #211161;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.rewardToDo__content .item .img {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #f5f5f5;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    margin-top: auto;
}
.rewardToDo__content .item .img .num {
    font-size: 80px;
    font-weight: 600;
    position: absolute;
    bottom: 10px;
    right: 30px;
    line-height: 1em;
}
.rewardTodo {
    overflow: hidden;
    padding-top: 100px;
}
.rewardToDo__content .item .desc {
    margin-bottom: 30px;
}
.monthly {
    padding-top: 100px;
    overflow: hidden;
    margin-bottom: 50px;
}
.monthly__frame .title {
    max-width: 750px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}
.monthly__frame .title::before {
    content: '';
    position: absolute;
    background: url('../images/monthly_title_dc1.png') center no-repeat;
    background-size: cover;
    width: 414px;
    height: 319px;
    left: -414px;
    top: 0;
    z-index: -1;
}
.monthly__frame .title::after {
    content: '';
    position: absolute;
    background: url('../images/monthly_title_dc2.png') center no-repeat;
    background-size: cover;
    width: 324px;
    height: 245px;
    right: -324px;
    top: -30px;
    z-index: -1;
}
.monthly__frame h2 {
    margin-bottom: 25px;
}
.monthly__content {
    position: relative;
    z-index: 1;
}
.monthly__content::before {
    content: '';
    position: absolute;
    background: url('../images/monthly_title_dc3.png') center no-repeat;
    background-size: cover;
    width: 534px;
    height: 266px;
    bottom: 0;
    right: -120px;
    z-index: -1;
}
.monthly__table {
    margin-bottom: 30px;
}
.monthly__table table th, .monthly__table table td {
    border: 0;
    padding: 20px;
}
.monthly__table table thead th:first-child {
    text-align: left;
}
.monthly__table table thead th {
    font-size: 26px;
    color: #211161;
}
.monthly__table table tbody td:first-child {
    font-weight: bold;
}
.monthly__table table tbody tr:nth-child(odd) td {
    background-color: #FFF0D8;
}
.monthly__table table tbody tr td:not(:first-child) {
    text-align: center;
}
.monthly__table {
    background-color: #FEF5E3;
    padding: 30px 50px;
    border-radius: 30px;
}
.monthly__list li {
    color: #666666;
    font-size: 20px;
}
.program {
    padding-top: 80px;
    position: relative;
    z-index: 1;
}
.program::before {
    content: '';
    position: absolute;
    background: url('../images/reward_conditions_dc.png') center no-repeat;
    background-size: cover;
    width: 100%;
    height: 270px;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    z-index: -1;
}
.program__frame {
    max-width: 1525px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 120px 0 0;
    position: relative;
    z-index: 1;
}
/*.program__bg {*/
/*    background: #ffebcc;*/
/*    background: linear-gradient(180deg, rgba(255, 235, 204, 0.3) 0%, rgba(255, 235, 204, 0) 100%);*/
/*    border-radius: 60px;*/
/*}*/
.program__frame .title {
    width: 100%;
    max-width: 100%;
    text-align: center;
}
.program__frame .title h2 {
    margin-bottom: 20px;
}
.program__frame .title .desc {
    margin-bottom: 30px;
}
.program__frame .title .desc p {
    font-size: 16px;
    color: #8C8B87;
}
.program__content {
    /*width: 61%;*/
    /*max-width: 925px;*/
    width: 100%;
    max-width: 100%
    flex-direction: column;;
}
.program__content .desc strong span {
    color: var(--main-cl) !important;
}
quote {
    padding: 30px;
    background-color: #FEF5E3;
    border-radius: 30px;
    border: 1px solid #F4E3BB;
    display: block;
}
.program__content > *:not(last-child) {
    margin-bottom: 25px;
}
.program__content * {
    color: #70706F !important;
}
.program__content > p {
    padding-left: 30px;
    position: relative;
    z-index: 1;
}
.program__content > p > span {
    position: absolute;
    left: 0;
    top: 0;
    text-align: right;
}
.program__tabs .item.active {
    background-color: #FFF1DC;
    border-radius: 20px;
    border: 1px solid #F4E3BB;
    padding: 30px;
}
.program__tabs .item .sub {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    padding-left: 28px;
}
.program__tabs .item .sub::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('../images/program_arrow.png') center no-repeat;
    background-size: cover;
    left: 0;
    top: 2px;
    z-index: -1;
}
.program__tabs .item h3 {
    font-size: 20px;
    color: #211161;
    font-weight: 600;
    font-family: var(--font-mont);
    display: flex;
    align-items: center;
    gap: 20px;
}
.program__tabs .item h3 .icon {
    flex-shrink: 0;
}
.align-center {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}
.earn {
    padding-top: 62px;
}
.earn .title {
    margin-bottom: 118px;
}
.earn__frame {
    --radius: 50px;
    background: linear-gradient(-5deg, rgba(45, 8, 191, 1) 0%, rgba(33, 17, 97, 1) 100%);
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    /* min-height: 475px; */
    padding: 104px 0;
}
.earn__frame {
}
.earn__frame::before {
    content: '';
    position: absolute;
    background: url('../images/earn_dc1.png') center no-repeat;
    background-size: cover;
    width: 243px;
    height: 321px;
    left: 0;
    bottom: 0;
    z-index: -1;
    border-bottom-left-radius: var(--radius);
}
.earn__frame::after {
    content: '';
    position: absolute;
    background: url('../images/earn_dc2.png') center no-repeat;
    background-size: cover;
    width: 40.53%;
    aspect-ratio: 1 / 0.48957;
    height: auto;
    bottom: 0;
    right: 0;
    z-index: -2;
    border-bottom-right-radius: var(--radius);
}
.earn__img {
    position: absolute;
    bottom: 0;
    left: 54px;
    max-width: 432px;
    width: 25%;
}
.earn__img::before {
    content: '';
    position: absolute;
    background: url('../images/earn_logo.png') center no-repeat;
    background-size: cover;
    width: 106.485%;
    height: 95.177%;
    top: 65px;
    bottom: 0;
    left: 65%;
    margin: auto;
    z-index: -1;
}
.earn__content {
    width: 57%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: 87px;
    color: #fff;
    display: flex;
    gap: 40px;
}
.earn__content ul {
    max-width: 480px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.earn__content ul::before {
    content: '';
    position: absolute;
    background: #2A0AA9;
    background: linear-gradient(0deg,rgba(42, 10, 169, 1) 0%, rgba(207, 155, 33, 1) 33%, rgba(244, 189, 61, 1) 52%, rgba(207, 155, 33, 1) 70%, rgba(42, 11, 164, 1) 100%);
    width: 1px;
    height: 100%;
    opacity: 0.2;
    left: 73px;
    top: -35px;
}
.earn__content ul li {
    display: flex;
    gap: 53px;
}
.earn__content ul li .num {
    font-size: 45px;
    font-weight: 500;
    position: relative;
    top: -15px;
    z-index: 1;
    width: 51px;
}
.earn__content ul li .num::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--main-cl);
    border-radius: 100%;
    left: calc(100% + 18px);
    top: 25px;
}
.earn__content ul li .desc {
    max-width: 348px;
}
.earn__content ul li .desc p {
    color: rgba(255, 255, 255, 0.92);
}
.earn__content h3 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 5px;
}
/* Ranking */
.ranking__page .mainvs__img {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
}
.ranking__page .mainvs__img img {
    height: 100%;
    object-position: bottom right;
}
.ranking__page {
    height: 1112px;
    align-items: center;
}
.ranking__page .mainvs__h1 {
    flex-direction: column;
    padding: 0 120px;
}
.ranking__page .mainvs__h1 .btn {
    position: static;
    text-align: left;
}
.ranking__page .mainvs__h1 h1 {
    color: #4e4e4e;
    display: block;
    font-size: max(min(115 / 1920 * 100vw, 135px), 38px);
    letter-spacing: 0;
    margin-bottom: 30px;
}
.ranking__page .mainvs__h1 h1 span {
    color: #cf9b21;
}
.ranking__page .mainvs__h1 .desc p {
    color: #4e4e4e !important;
    font-size: 31px;
    line-height: 1.2em;
    color: var(--font-mont);
}
.ranking__page .mainvs__h1 .desc .cash {
    margin: 24px 0 57px;
}
.ranking__page .mainvs__h1 .desc .cash span {
    color: #fff !important;
    padding: 5px 20px;
    border-radius: 27px;
    background-color: #cf9b21;
    font-weight: 600;
    display: inline-block;
}
.ranking__page .mainvs__h1 .btn a {
    font-size: 34px;
    color: var(--main-cl);
    font-family: var(--f-lato);
    border-color: var(--main-cl);
    font-weight: bold;
    padding: 15px 52px;
    border-width: 2px;
    text-align: center;
}
.ranking__page .mainvs__h1 .btn a span {
    background: url('../images/ic_arrow_ranking.png') center right no-repeat;
    background-size: 21px 24px;
}
/* End ranking */
/* Join Ranking */
.join {
    padding-top: 120px;
}
.join__frame {
    display: flex;
}
.join__left {
    width: 100%;
    max-width: 740px;
    padding-right: 90px;
}
.title__ranking h2 {
    font-size: 70px;
    line-height: 1.1em;
    font-family: var(--f-popin);
    margin-bottom: 60px;
    font-weight: 600;
}
.title__ranking h2 span {
    font-size: 71.4286%;
}
.join__left .desc p {
    font-size: 18px;
    font-family: var(--font-mont);
}
.join__frame {
    background-color: #fef3de;
    border-radius: 36px;
    padding: 56px 95px;
}
.join__right {
    flex-grow: 1;
    padding-left: 40px;
    position: relative;
    z-index: 1;
}
.join__right::before {
    content: '';
    position: absolute;
    background-color: #cf9b21;
    width: 1px;
    height: 100%;
    top: 0;
    left: -5px;
    z-index: -1;
    opacity: 0.2;
}
.join__step .item {
    display: flex;
    align-items: center;
}
.join__step .item:not(:last-child) {
    margin-bottom: 36px;
}
.join__step .item .cnt {
    background-color: #fef9ed;
    border-radius: 23px;
    flex-grow: 1;
    padding: 25px 40px 25px 93px;
    box-shadow: 7px 7px 7px rgba(207, 155, 37, 0.22);
    border: 2px solid #fff;
}
.join__step .item .cnt h3 {
    font-size: 30px;
    color: #1f175e;
    font-family: var(--f-popin);
    font-weight: 500;
}
.join__step .item .cnt .desc p {
    font-size: 21px;
    font-family: var(--font-mont);
}
.join__step .item .num .txt {
    display: flex;
    align-items: center;
    font-size: 25px;
    font-weight: 300;
    color: var(--main-cl);
    gap: 14px;
    position: relative;
    z-index: 1;
}
.join__step .item .num .txt::before {
    content: '';
    position: absolute;
    background-color: var(--main-cl);
    width: 7px;
    height: 7px;
    border-radius: 100%;
    top: 2px;
    bottom: 0;
    left: -48px;
    margin: auto;
}
.join__step .item .num .txt span {
    width: 88px;
    height: 88px;
    border-radius: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--main-cl);
    font-weight: 400;
    font-family: var(--f-popin);
    box-shadow: 7px 7px 7px rgba(207, 155, 37, 0.22);
}
.join__step .item .num {
    margin-right: -45px;
    position: relative;
    z-index: 2;
}
/* End Join Ranking */
/* Ranking section */
.ranking {
    padding-top: 220px;
    position: relative;
    z-index: 1;
}
.ranking::before {
    content: '';
    position: absolute;
    background: url('../images/ranking_dc.png') center no-repeat;
    background-size: cover;
    width: 19.6855%;
    aspect-ratio: 1 / 0.9627;
    top: 0;
    left: 0;
    z-index: -1;
}
.ranking .title__ranking {
    margin-bottom: 90px;
}
.ranking .title__ranking h2 {
    font-size: 62px;
    margin-bottom: 40px;
}
.ranking .title__ranking h2 img {
    filter: brightness(0) invert(0);
}
.ranking__table {
    background-color: #fff;
    border-radius: 80px;
    padding: 45px;
    box-shadow: 0 -20px 20px #fef3de;
    position: relative;
    z-index: 1;
}
.ranking__table::before {
    content: '';
    position: absolute;
    background: url('../images/ranking_dc.png') center no-repeat;
    background-size: cover;
    width: 19.6855%;
    aspect-ratio: 1 / 0.9627;
    top: -15%;
    right: 0;
    z-index: -1;
}
.ranking__table .note {
    font-style: italic;
    font-size: 18px;
    font-family: var(--font-mont);
    color: #4e4e4e;
    text-align: right;
    margin-bottom: -65px;
}
.ranking__table .note span {
    background: #fff;
    display: inline-block;
    margin-bottom: -15px;
    height: 80px;
    border: 1px solid var(--main-cl);
    border-top: 0;
    border-right: 0;
    border-bottom-left-radius: 40px;
    padding-left: 110px;
    position: relative;
    z-index: 1;
    width: 50%;
    max-width: 897px;
}
.ranking__table .note span::before {
        content: "";
        position: absolute;
        top: 0;
        width: 28px;
        height: 28px;
        background-color: rgba(0, 0, 0, 0);
        border-radius: 50%;
        left: 0;
        box-shadow: 12px 18px #fff;
        font-family: var(--f-popin);
}
.ranking__table .tbl__scroll {
    max-width: 1820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 60px;
}
.ranking__table .ranking__table--bg {
    position: relative;
    z-index: 1;
    border-radius: 56px;
    overflow: hidden;
    margin-bottom: 52px;
}
.ranking__table .ranking__table--bg::before {
    content: '';
    position: absolute;
    background: url('../images/ranking_table_bg.jpg') center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.ranking__table .tbl__scroll table {
    min-width: 1000px;
    overflow-y: auto;
    max-height: unset;
}
.ranking__table .ranking__table--bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.88;
    z-index: -1;
}
.ranking__table .tbl__scroll th,
.ranking__table .tbl__scroll td {
    border: 0;
    color: #ffff;
    text-align: center;
    font-family: var(--font-mont);
}
.ranking__table .tbl__scroll th {
    color: #fadc98;
    font-size: 33px;
    font-weight: 600;
}
.ranking__table .tbl__scroll td {
    font-size: 29px;
    font-weight: 300;
}
.ranking__table--box {
    border: 1px solid var(--main-cl);
    padding: 45px 60px;
    border-radius: 40px;
}
.ranking__table--box li {
    font-size: 21px;
    color: #4e4e4e;
    padding-left: 10px;
    position: relative;
    z-index: 1;
}
.ranking__table--box li::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background-color: #4e4e4e;
    top: 17px;
    left: 0;
    z-index: -1;
}
.ranking__table--box li:not(:last-child) {
    margin-bottom: 5px;
}
/* End Ranking section */
/* Term Ranking */
.termRanking {
    padding-top: 125px;
}
.termRanking__frame {
    display: flex;
    gap: 30px;
}
.termRanking__left {
    flex-shrink: 0;
}
.termRanking__left .title__ranking--sub {
    font-size: max(min(calc(34 / 1920 * 100vw), 34px) , 24px);
    color: #5a5a5a;
    font-family: var(--f-popin);
    font-weight: 600;
}
.termRanking__left h2 {
    font-size: 50px;
}
.termRanking__right {
    width: 60%;
    max-width: 940px;
    margin-left: auto;
}
.termRanking__right--content {
    counter-reset: section;
}
.termRanking__right--content ol > li {
    padding-left: 30px;
    position: relative;
    z-index: 1;
    font-size: 21px;
    color: #6d6d6d;
}
.termRanking__right--content ol:not(:last-child) {
    margin-bottom: 40px;
}
.termRanking__right--content > ol > li::before {
    counter-increment: section;
    content: counter(section) ". ";
    position: absolute;
    left: 0;
    top: -1px;
    font-weight: 600;
}
.termRanking__right--content > ol > li ul li {
    border: 1px solid rgba(255, 236, 193, 0.4);
    background-color: rgba(254, 242, 220, 0.4);
    border-radius: 12px;
    padding: 10px 24px;
}
.termRanking__right--content > ol > li ul li:not(:last-child) {
    margin-bottom: 10px;
}
.termRanking__right--content > ol > li > p + ul {
    margin-top: 15px;
}
/* End Term Ranking */
/* Influencer Program */
.container__small {
    width: 1630px;
}
.programPage__title h2 {
    font-size: 48px;
    margin-bottom: 28px;
}
.clr {
    color: var(--main-cl);
}
.program__page {
    height: auto !important;
    min-height: 794px;
    align-items: center;
    flex-direction: row-reverse;
    margin-top: var(--heightHeader);
    padding: 50px 0;
    overflow: hidden;
}
.program__page::before {
    content: '';
    position: absolute;
    background: url('../images/program_mainvs_dc1.png') center no-repeat;
    background-size: cover;
    width: 346px;
    height: 352px;
    bottom: -180px;
    left: -160px;
    z-index: -1;
    filter: blur(60px);
}
.program__page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #CF9B21;
    background: linear-gradient(180deg,rgba(207, 155, 33, 0) 0%, rgba(207, 155, 33, 0.17) 1%, rgba(207, 155, 33, 0.41) 6%, rgba(207, 155, 33, 0.63) 28%, rgba(207, 155, 33, 1) 100%);
    opacity: 0.15;
}
.program__page .mainvs__video {
    position: static;
    margin-left: -24px;
    max-width: 752px;
    width: 53%;
}
.program__page .mainvs__video::before {
    display: none;
}
.program__page--frame {
    display: block;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0 20px;
}
.program__page .mainvs__h1 {
    display: block;
    padding: 0;
    margin: 0;
    width: 70%;
    max-width: 832px;
}
.program__page .mainvs__h1 h1 {
    font-size: 64px;
    font-size: max(min(calc(64 / 1920 * 100vw), 64px) , 51px);
    color: #211161;
    margin-bottom: 16px;
    letter-spacing: 0;
}
.program__page .mainvs__h1--sub {
    font-size: 32px;
    font-weight: bold;
    color: #0C0C0C;
    line-height: 1.25em;
    margin-bottom: 36px;
}
.program__page .mainvs__h1 .clr {
    color: var(--main-cl);
}
.program__page .mainvs__h1 .desc {
    margin-bottom: 36px;
}
.program__page .mainvs__h1 p {
    color: #0C0C0C;
}
.program__page .mainvs__h1 .btn {
    position: static;
}
.programAbout {
    padding: 64px 0;
}
.programAbout .title .desc {
    max-width: 684px;
    margin: 0 auto;
}
.programAbout .title .desc p {
    font-size: 18px;
}
.programAbout .title .desc > *:not(:last-child) {
    margin-bottom: 30px;
}
.programAbout__content {
    display: flex;
    gap: 34px;
}
.programAbout__item {
    width: 100%;
    max-width: 375px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    padding: 28px 15px;
    border-radius: 16px;
    border-top: 3px solid #CF9B21;
}
.programAbout__item .icon {
    margin-bottom: 24px;
}
.programAbout__item h3 {
    font-size: 16px;
    line-height: 1.5em;
    color: #0C0C0C;
    font-weight: 600;
}
.programAbout .title {
    margin-bottom: 64px;
}
.collaborate {
    padding: 64px 0;
}
.collaborate__ways .btn a {
    color: #211161;
    border-color: #211161;
    font-size: 28px;
    font-weight: bold;
    text-transform: capitalize;
    padding: 15px;
}
.collaborate .btn a:hover {
    color: #fff;
    background: #211161 !important;
}
.collaborate__ways {
    position: relative;
    z-index: 1;
    padding: 49px 0;
    min-height: 304px;
    border-top: 1px solid #ECE3D0;
    border-bottom: 1px solid #ECE3D0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 64px;
}
.collaborate__ways::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/collaborate_bg.png') center top repeat-y;
    background-size: contain;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
}
.collaborate .title h2 {
    margin-bottom: 28px;
}
.collaborate .title .desc {
    margin-bottom: 28px;
}
.title__h3 h3 {
    font-size: 32px;
    line-height: 1.25em;
    font-weight: bold;
    color: #211161;
    margin-bottom: 18px;
}
.collaborate__option--content {
    margin-bottom: 45px;
}
.collaborate__option {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}
.collaborate__option--item {
    border-radius: 16px;
    border: 1px solid #C7C7C7;
    padding: 36px 64px 48px;
    width: 100%;
    max-width: 783px;
    display: flex;
    flex-direction: column;
}
.collaborate__option--item .title__h3 {
    margin-bottom: 28px;
}
.collaborate__option--item h4 {
    font-size: 24px;
    font-weight: bold;
    color: #0C0C0C;
    margin-bottom: 18px;
    line-height: 1.25em;
}
.collaborate__option--item ul li {
    padding-left: 40px;
    position: relative;
    z-index: 1;
    line-height: 1.444em;
}
.collaborate__option--item ul li:not(:last-child) {
    margin-bottom: 12px;
}
.collaborate__option--item ul li::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: url('../images/program_list_icon.png') center no-repeat;
    background-size: cover;
    top: 2px;
    left: 0;
    z-index: -1;
}
.collaborate__option--cnt:not(:last-child) {
    margin-bottom: 60px;
}
.collaborate__option--note p {
    display: inline-block;
    border: 1px solid var(--main-cl);
    border-radius: 16px;
    padding: 20px 8px;
    letter-spacing: -1px;
    font-weight: 500;
    font-style: italic;
}
.started {
    padding: 64px 0;
    position: relative;
    z-index: 1;
}
.started::before {
    content: '';
    position: absolute;
    background: url('../images/started_dc1.png') center no-repeat;
    background-size: cover;
    width: 60px;
    height: 156px;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.started__step {
    display: flex;
    justify-content: space-between;
}
.started__frame {
    position: relative;
    z-index: 1;
}
.started__frame h2 {
    margin-bottom: 28px;
}
.started__frame::before {
    content: '';
    position: absolute;
    background: url('../images/started_dc2.png') center no-repeat;
    background-size: cover;
    width: 135px;
    height: 137px;
    top: 0;
    right: 0;
    z-index: -1;
}
.started__frame .title {
    margin-bottom: 64px;
}
.started__step h3 {
    font-size: 24px;
    font-weight: bold;
    color: #0C0C0C;
    margin-bottom: 16px;
    text-align: center;
}
.started__step .desc {
    text-align: center;
}
.started__step .item {
    max-width: 376px;
}
.started__step .item .icon {
    margin-bottom: 24px;
}
.started__step--arrow {
    align-self: center;
}
.programPartner {
    padding: 64px 0;
}
.programPartner .title {
    margin-bottom: 64px;
}
.programPartner .title h2 {
    margin-bottom: 28px;
}
.programPartner__item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}
.programPartner__content {
    display: flex;
    gap: 33px;
}
.programPartner__item {
    border: 1px solid #C7C7C7;
    border-radius: 16px;
    padding: 24px 24px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.programPartner__item--img {
    background-color: #FFF2D4;
    height: 157px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 18px;
    max-width: 512px;
    width: 100%;
}
.programPartner__col {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 32%;
    max-width: 512px;
}
.programPartner__col.--main .programPartner__item--img {
    height: auto;
    display: flex;
    align-items: flex-end;
    margin-bottom: 26px;
    flex-grow: 1;
}
.programFor__content {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.programFor__item {
    width: 30%;
    max-width: 239px;
    text-align: center;
}
.programFor .title {
    margin-bottom: 64px;
}
.programFor {
    padding: 64px 0;
}
.programFor__item .icon {
    margin-bottom: 24px;
}
.programQuestion {
    padding: 64px 0;
}
.programQuestion__title {
    max-width: 445px;
}
.programQuestion__frame {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.programQuestion__title h2 {
    margin-bottom: 64px;
}
.programQuestion__item .cnt {
    display: none;
}
.programQuestion__content {
    width: 100%;
    max-width: 616px;
}
.programQuestion__item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    padding-bottom: 28px;
    position: relative;
    z-index: 1;
    padding-right: 30px;
}
.programQuestion__item h3::before {
    content: '';
    position: absolute;
    background: url('../images/accor-unactive.png') center no-repeat;
    background-size: cover;
    width: 22px;
    height: 22px;
    top: 0;
    right: 0;
    z-index: -1;
}
.programQuestion__item:not(:first-child) h3 {
    padding-top: 28px;
}
.programQuestion__item:not(:first-child) h3::before {
    top: 28px;
}
.programForm__content {
    width: 100%;
    max-width: 645px;
    margin-left: auto;
}
.programQuestion__item .accordion-button.open::before {
    background: url('../images/accor_active.png') center no-repeat;
    background-size: cover;
}
.programQuestion__item .cnt {
    margin-bottom: 22px;
}
.programQuestion__item {
    border-bottom: 1px solid var(--main-cl);
}
.programForm__form input[type="text"],
.programForm__form input[type="tel"],
.programForm__form input[type="email"],
.programForm__form textarea {
    border-radius: 60px;
    border: 1px solid var(--main-cl);
    font-size: 18px;
    padding: 18px 24px;
    width: 100%;
    background-color: #FFF9F0;
}
.programForm__form input[type="radio"] {
    accent-color: #bb8c1e;
}
.programForm__form textarea {
    resize: none;
    height: 110px;
    padding: 40px 24px;
}
.programForm__form .form__row.col2 .form__col {
    width: 100%;
    max-width: 284px;
}
.programForm__form label {
    font-size: 18px;
}
.form__row:not(:last-child) {
       margin-bottom: 24px;
}
.programForm__form .form__row.col2 {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.programForm__frame {
    padding: 64px 136px 64px 0;
    border-radius: 30px;
    border-bottom: 2px solid var(--main-cl);
    overflow: hidden;
} 
.programForm__frame {
    position: relative;
    z-index: 1;
}
.programForm__frame::before {
    content: '';
    position: absolute;
    background: url('../images/programform_bg.png') left top no-repeat;
    background-size: cover;
    width: 100%;
    height: 101%;
    top: 0;
    left: 0;
    z-index: -1;
}
.programForm__content .title {
    margin-bottom: 32px;
}
.programForm__content .title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 18px;
}
.programForm__content .title .desc p {
    font-size: 18px;
}
.programForm__note p {
    font-size: 14px;
    color: #EAB333;
    margin-top: 32px;
}
.programForm {
    padding: 64px 0;
}
/* QUIZ */
.quiz__page {
    background: #C2901E;
    background: linear-gradient(180deg,rgba(194, 144, 30, 0.1) 0%, rgba(194, 144, 30, 0.2) 50%);
    align-items: center;
}
.quiz__main--frame {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}
.quiz__page .mainvs__video {
    position: static;
}
.quiz__page .mainvs__h1 h1 {
    color: #211161;
    font-size: max(min(calc(64 / 1920 * 100vw), 64px), 52px);
    margin-bottom: 30px;
}
.quiz__page .mainvs__h1 .desc p {
    color: #446084;
}
.quiz__page .mainvs__h1 .desc p:not(:last-child) {
    margin-bottom: 20px;
}
.quiz__page .mainvs__h1 {
    max-width: 646px;
    padding: 0;
}
.quizAbout {
    padding: 48px 0;
}
.quizAbout__frame {
    max-width: 1600px;
    width: 100%;
    border-radius: 36px;
    background-color: #fff;
    padding: 36px;
    margin: 0 auto;
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.07);
}
.quizAbout__frame .title {
    margin-bottom: 24px;
}
.quizAbout__content {
    margin: 0 auto;
    max-width: 672px;
}
.quizAbout__content .desc p {
    color: #446084;
}
.quizAbout__content .desc p:not(:last-child) {
    margin-bottom: 30px;
}
.sec__bg {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    background-color: #FFF6E0;
    padding: 48px 45px;
}
.quizWhy__frame {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid #E3E3E3;
    margin-bottom: 48px;
}
.quizWhy__content .title {
    margin-bottom: 24px;
}
.quizWhy__content .title h2 {
    font-size: 48px;
}
.quizWhy__content .desc p {
    color: #446084;
    margin-bottom: 26px;
    line-height: 1.444em;
}
.quizWhy__content .desc li {
    color: #446084;
    line-height: 1.444em;
    display: flex;
    gap: 24px;
}
.quizWhy__content .desc li .icon {
    position: relative;
    top: -2px;
}
.quizWhy__content .desc li:not(:last-child) {
    margin-bottom: 24px;
}
.quizQuestion__content {
    display: flex;
    gap: 114px;
}
.quizQuestion__frame .title {
    margin-bottom: 64px;
}
.quizQuestion__content .item {
    width: 100%;
    max-width: 284px;
}
.quizQuestion__content .item .icon {
    margin-bottom: 24px;
}
.quizQuestion__content .item h3 {
    font-size: 24px;
    font-weight: bold;
    color: #211161;
    margin-bottom: 18px;
}
.quizQuestion__content .item .desc p {
    font-size: 16px;
    line-height: 1.625em;
    color: #446084;
}
.quizStart__frame .title {
   margin-bottom: 28px; 
}
.quizStart__frame .desc p {
    color: #446084;
}
.quizStart__frame .desc {
    margin-bottom: 48px;
}
.quizStart__form {
    text-align: center;
}
.quizStart__form iframe {
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.07);
}
.quizBanner__frame {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    background: #c2901e;
    background: linear-gradient(135deg, rgba(194, 144, 30, 1) 0%, rgba(249, 233, 195, 1) 100%);
    border-radius: 50px;
    position: relative;
    z-index: 1;
    padding: 106px 60px;
    min-height: 415px;
}
.quizBanner__frame .quizBanner__mascot {
    position: absolute;
    right: 0;
    bottom: 0;
}
.quizBanner__content {
    width: 100%;
    max-width: 536px;
}
.quizBanner__content .title h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 18px;
}
.quizBanner__content .desc p {
    color: #fff;
}
.quizStart {
    padding: 48px 0;
    margin-top: 48px;
}
.quizBanner {
    padding: 48px 0;
}
.leaderboard-widget .ds-text-h3-med {
    color: #211161;
}
feature-leaderboard-card-view {
    flex-direction: row !important;   
}
.overlay-scrollbars {
    overflow: hidden !important;
}
.menu-list .btn {
    padding: 0;
}
.risk-bars{
    display:flex !important;
    gap:3px;
    align-items:flex-end;
}
.risk-bars .bar{
    width:4px;
    height:6px;
    background:#ccc;
    border-radius:2px;
}
.risk-bars .bar:nth-child(2){height:9px}
.risk-bars .bar:nth-child(3){height:12px}
.risk-bars .bar:nth-child(4){height:15px}
.bar.low{background:#19c37d;}
.bar.medium{background:#ffb020;}
.bar.high{background:#ff4d4f;}
.ft__txt {
    margin-top: 20px;
}
.ft__txt p {
    font-size: 14px;
}
/* New */
.todo__list.todo__list--deposit li {
    max-width: 356px;
}
.bonus__deposit__page {
    background: #c2901e;
    background: linear-gradient(120deg, rgba(194, 144, 30, 1) 0%, rgba(249, 233, 195, 1) 100%);
    height: auto;
    flex-direction: row-reverse;
    margin-bottom: 150px;
    align-items: flex-start;
    overflow: hidden;
    padding: 0 0 70px;
    height: 936px;
}
.bonus__deposit__page .mainvs__video {
    width: 83%;
    max-width: 1266px;
    height: auto;
    margin-top: -11.5%;
    margin-right: -100px;
    margin-bottom: -13.4%;
    position: static;
}
.bonus__deposit__page .mainvs__video::before {
    display: none;
}
.bonus__deposit__page .mainvs__h1 {
    display: block;
    width: 37%;
    max-width: 700px;
    margin-left: 70px;
    margin-bottom: 0;
    padding: 10% 0 100px;
}
.bonus__deposit__page .btn p:first-child a {
    background: #231165;
    border: 1px solid #231165;
}
.bonus__deposit__page .mainvs__h1 h1 {
    font-size: max(min(100/1920 * 100vw, 100px), 52px);
    margin-bottom: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
}
.bonus__deposit__page .hide__icon.btn p:first-child a span {
    padding-right: 36px;
}
.bonus__deposit__page .hide__icon.btn p:first-child a span::before {
    opacity: 1;
}
.termConditions__tabs--content .item:nth-child(2) .list li::before {
    background: url(https://wegolden.com/wp-content/themes/wegolden/images/circle-x.png) center no-repeat;
    background-size: cover;
}
.bonus__deposit__page .mainvs__h1--sub {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}
.bonus__deposit__page .mainvs__h1 .desc p {
    font-size: 24px;
    color: #fff;
    margin-bottom: 40px;
}
.bonus__deposit__page .mainvs__h1 .btn {
    position: static;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}
.bonus__deposit__page .mainvs__h1 .btn p {
    margin-bottom: 0;
}
.mainvs__valid {
    font-size: 14px;
    color: #fff;
    position: absolute;
    bottom: 40px;
    left: 72px;
    font-family: var(--font-mont);
    color: #fff;
    margin-bottom: 40px;
    display: inline-block;
    padding: 14px 24px;
    background: linear-gradient(to right, rgba(231, 209, 164, 0.6) 0%, rgba(231, 209, 164, 0) 100%);
    width: 100%;
    max-width: 528px;
    border-radius: 60px 0 0 60px;
}
.mainvs__valid::before {
}
.hiw__frame {
    padding: 0 72px;
}
.hiw__account {
    flex-shrink: 0;
}
.hiw__account li {
    line-height: 1.5em;
}
.hiw__account li span {
    color: #CF9B21;
    font-weight: bold;
}
.hiw__box ul {
    display: flex;
    gap: 48px;
}
.hiw__box ul .ttl {
    color: #CF9B21;
    font-weight: bold;
}
.hiw__box ul .desc p {
    font-size: 14px;
}
.hiw__content {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 72px;
}
.hiw .title {
    margin-bottom: 20px;
}
.hiw .todo__list ul {
    justify-content: space-between;
    gap: 30px;
}
.hiw .todo__list ul li {
    padding-right: 0;
}
.hiw .todo__list ul li h3 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #211161;
}
.hiw .todo__list li::before {
    width: 140%;
}
/*.hiw .todo__list li.active .num {*/
/*    transform: scale(0);*/
/*}*/
.multi {
    padding-top: 87px;
}
.multi__frame {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-radius: 50px 50px 0 0;
    position: relative;
    z-index: 1;
    padding: 95px;
}
.multi__frame::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #CF9B21;
    background: linear-gradient(180deg,rgba(207, 155, 33, 0.35) 0%, rgba(207, 155, 33, 0.15) 37%, rgba(207, 155, 33, 0.06) 59%, rgba(207, 155, 33, 0.01) 83%, rgba(207, 155, 33, 0) 100%);
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50px 50px 0 0;
    opacity: 0.5;
}
.multi__frame::after {
    content: '';
    position: absolute;
    background: url('../images/multi_dc.png') center no-repeat;
    background-size: cover;
    width: 122px;
    height: 124px;
    right: 21%;
    bottom: 0;
    z-index: -1;
}
.multi__content {
    width: 60%;
    max-width: 730px;
}
.multi__content ul {
    display: flex;
    gap: 60px;
}
.multi__content li h3 {
    color: #211161;
    font-size: 25px;
    font-weight: bold;
}
.multi__img {
    width: 48%;
    max-width: 754px;
}
.multi__content .title {
    margin-bottom: 34px;
}
.calculation {
    padding-bottom: 134px;
}
.calculation .hiw__account {
    max-width: 660px;
}
.calculation .hiw__box {
    max-width: 978px;
}
.calculation__frame .title {
    margin-bottom: 21px;
}
.dynamic__content.col3 th {
    width: calc(100% / 3);
}
.dynamic__content.col4 th {
    width: calc(100% / 4);
}
.dynamic__content.col3 th,
.dynamic__content.col3 td,
.dynamic__content.col4 th,
.dynamic__content.col4 td {
    text-align: center !important;
}
.volume {
    padding-bottom: 104px;
}
.volume__frame {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.volume__img {
    width: 55%;
    max-width: 679px;
}
.volume__content {
    width: 59%;
    max-width: 1032px;
}
.volume__content h2 {
    margin-bottom: 18px;
}
.volume__content--boxs .item__title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.volume__content--boxs .item__title h3 {
    color: #CF9B21;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}
.volume__content--boxs .copy__plan .ttl h3 {
    text-transform: uppercase;
    font-weight: 900;
}
.volume__content--boxs .copy__plan .ttl h3 span {
    text-transform: none;
}
.volume__content .title {
    margin-bottom: 46px;
}
.volume__content--boxs .copy__plan .item:not(:last-child) {
    padding-right: 30px;
    margin-right: 30px;
}
.volume__content--boxs .copy__plan .list li {
    letter-spacing: -0.01em;
}
.volume__content--boxs .box__frame {
    background-color: #fff;
    border: 1px solid rgba(201, 168, 90, 0.6);
    border-radius: 16px;
    padding: 22px 24px;
}
.volume__content--boxs .box__frame .box__frame--ttl {
    color: #211161;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}
.volume__content--boxs .box__frame .desc p {
    font-size: 16px;
    color: #5A6680;
}
.volume__content--boxs .box__frame .desc p:not(:last-child) {
    margin-bottom: 12px;
}
.volume__content--boxs .box__frame.box__frame--gradient {
    background: #FFFFFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(253, 246, 227, 1) 70%);
}
.activation {
    padding-bottom: 68px;
}
.activation__frame .title {
    margin-bottom: 60px;
}
.activation__frame .title h2 {
    margin-bottom: 21px;
}
.activation__frame .title .desc p {
    font-size: 18px;
}
.activation__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 47px;
}
.activation__content .item {
    background-color: rgba(252, 243, 221, 0.5);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    min-height: 330px;
}
.activation__content .item .icon {
    flex-grow: 1;
}
.activation__content .item h3 {
    color: #211161;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 8px;
}
.termConditions {
    padding-bottom: 180px;
}
.termConditions__frame {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.termConditions__img {
    margin-left: -72px;
}
.termConditions__content {
    width: 50%;
    max-width: 712px;
}
.termConditions__content .title {
    margin-bottom: 26px
}
.termConditions__content title h2 {
    margin-bottom: 10px;
}
.termConditions__tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 37px;
}
.termConditions__tabs h3 {
    font-size: 25px;
    font-weight: 500;
    color: #CF9B21;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.termConditions__tabs h3:hover {
    text-decoration: underline;
}
.termConditions__tabs h3.active {
    text-decoration: underline;
    opacity: 1;
}
.termConditions__tabs--content {
    margin-bottom: 100px;
}
.termConditions__tabs--content .item {
    display: none;
}
.termConditions__tabs--content .item.active {
    display: block;
}
.termConditions__tabs--content .item {
    height: 235px;
    overflow-y: auto;
}
.termConditions__tabs--content .item > *:not(:last-child) {
    margin-bottom: 11px;
}
.termConditions__tabs--content .item:nth-child(2) .list li::before {
    background: url(../images/circle-x.png) center no-repeat;
    background-size: cover;
}
.banner {
    padding-bottom: 140px;
    position: relative;
    z-index: 3;
}
.banner__frame {
    display: flex;
    background: #C2901E;
    background: linear-gradient(130deg, rgba(194, 144, 30, 1) 0%, rgba(249, 233, 195, 1) 100%);
    border-radius: 50px;
    padding: 6% 7%;
    min-height: 517px;
    position: relative;
    z-index: 1;
}
.banner__frame::after {
    content: '';
    position: absolute;
    background: url('../images/banner_dc1.png') center no-repeat;
    background-size: cover;
    width: 9.583%;
    aspect-ratio: 1 / 1;
    bottom: -15%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}
.banner__content {
    width: 42%;
    max-width: 636px;
}
.banner__content .title .ttl_sub,
.banner__content .title h2,
.banner__content .title .desc p {
    color: #fff;
}
.banner__content .title .ttl_sub {
    font-weight: 400;
}
.banner__content .title h2 {
    margin-bottom: 20px;
}
.banner__content .title .desc {
    margin-bottom: 40px;
}
.banner__content .title .desc p{
    font-size: 18px;
}
.banner__content .title .btn a span {
    padding-right: 0;
}
.banner__img {
    position: absolute;
    right: 13%;
    bottom: 0;
    width: 31%;
    max-width: 535px;
}
.banner__frame::before {
    content: '';
    position: absolute;
    background: url('../images/banner_dc.png') center no-repeat;
    background-size: cover;
    width: 1049px;
    height: 100%;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-bottom-right-radius: 50px;
}
.banner__logo {
    position: absolute;
    top: 57px;
    right: 5%;
}
.bonus20__page {
    padding-bottom: 0;
    height: 936px;
    overflow: hidden;
}
.bonus20__page .mainvs__video {
    width: 98%;
    max-width: 1862px;
    margin: -11.5% -26% -13.4% -31%;
    align-self: center;
}
.bonus20__page .mainvs__h1 {
    width: 62%;
    max-width: 923px;
}
.deposit__frame .title h2 {
    margin-bottom: 20px;
}
.deposit__frame .title .desc p {
    font-size: 18px;
}
.deposit__content .item__ttl {
    padding-left: 56px;
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}
.deposit__content .btn {
    position: absolute;
    right: 36px;
    top: 0;
    z-index: 3;
}
.deposit__content .btn a {
    padding: 14px 16px;
}
.deposit__content .btn a {
    border: 1px solid rgba(0, 0, 0, 0);
}
.deposit__content .item__ttl::before {
    content: '';
    position: absolute;
    background: url('../images/icon_tier.png') center no-repeat;
    width: 40px;
    height: 40px;
    top: 2px;
    left: 0;
    z-index: -1;
}
.deposit__content .hide__icon.btn a span::before {
    display: none;
}
.deposit__content .hide__icon.btn a:hover:hover span {
    padding-right: 0;
}
.deposit__content .item__ttl h3 {
    font-size: 18px;
    color: var(--main-cl);
    font-weight: bold;
}
.deposit__content .item__ttl .item__ttl--deposit {
    font-size: 14px;
}
.deposit__content {
    display: flex;
    gap: 40px;
}
.deposit__content .item {
    background-color: #fff;
    border-radius: 30px;
    padding: 36px;
    width: calc(50% - 20px);
    position: relative;
    z-index: 1;
}
.deposit__content .item .item__rate {
    /* font-size: 96px; */
    --max-screen: 1920;
    --max-value: 96;
    --min-screen: 769;
    --min-value: 50;
    --value: max(min(calc((var(--max-value) - var(--min-value)) * ((100vw - var(--min-screen) * 1px) / (var(--max-screen) - var(--min-screen))) + calc(var(--min-value) * 1px)), calc(var(--max-value) * 1px)), calc(var(--min-value) * 1px));
    font-size: var(--value);
    text-align: center;
    color: var(--main-cl);
    margin-bottom: 32px;
}
.deposit__content .item .item__rate .percent {
    font-size: 208.333%;
    font-weight: bold;
    font-family: var(--font-mont);
    line-height: 1em;
}
.deposit__content .item .item__rate .txt {
    font-size: 100%;
    font-family: var(--font-mont);
    line-height: 1em;
    font-weight: 400;
}
.deposit__content .item .item__rate {
    padding: 30px;
    text-align: center;
    background-color: rgba(255, 235, 204, 0.3);
    border-radius: 20px;
}
.deposit__content .item__example--frame {
    padding: 20px;
    border: 1px solid #E1E1E1;
    border-radius: 20px;
}
.deposit__content .item__example--frame .tbl__scroll {
    padding-right: 0;
}
.deposit__content .item .item__example h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--main-cl);
    font-family: var(--font-mont);
    margin-bottom: 12px;
}
.deposit__content .item .item__example--frame th,
.deposit__content .item .item__example--frame td {
    border: 0;
    padding: 0;
}
.deposit__content .item .item__example--frame th {
    padding-bottom: 10px;
}
.deposit__content .tbl__scroll table {
    width: 753px;
}
/* Feature */
.feature {
    margin-bottom: 138px;
}
.feature__frame {
    display: flex;
    background: #211161;
    background: linear-gradient(125deg,rgba(33, 17, 97, 1) 0%, rgba(45, 8, 191, 1) 100%);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
}
.feature__frame .item .item__ttl .icon {
    margin-bottom: 25px;
}
.feature__frame h2,
.feature__frame p {
    color: #fff;
    font-family: var(--font-mont);
    font-size: 18px;
}
.feature__frame h2 {
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.feature__frame .item {
    position: relative;
    z-index: 1;
    margin-right: 5.1%;
    padding-right: 5.1%;
    width: 100%;
    max-width: 500px;
}
.feature__frame .item::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 181px;
    background-color: rgba(255, 255, 255, 0.2);
    right: 0;
    top: 0;
    z-index: -1;
}
.feature__frame .item:last-child {
    margin-right: 0;
    padding-right: 0;
}
.feature__frame .item:last-child::before {
    display: none;
}
.rebonus {
    padding-top: 100px;
    margin-bottom: -15%;
}
.rebonus__frame {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.rebonus__left {
    width: 50%;
    max-width: 874px;
}
.rebonus__right {
    width: 41%;
    max-width: 712px;
}
.rebonus__right ul {
    counter-reset: section;
}
.rebonus__right li:not(:last-child) {
    border-bottom: 1px solid rgba(38, 37, 42, 0.2);
    padding-bottom: 32px;
    margin-bottom: 32px;
}
.rebonus__right li {
    position: relative;
    z-index: 1;
    padding-left: 124px;
}
.rebonus__right li::before {
    counter-increment: section;
    content: "0"counter(section, decimal);
    font-size: 30px;
    color: var(--main-cl);
    font-family: var(--font-jakarta);
    position: absolute;
    top: -32px;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
    display: flex;
    align-items: center;
    width: 60px;
    line-height: 1;
    flex-grow: 1;
}
.rebonus__right li h4 {
    font-size: 18px;
    font-weight: 600;
}
.rebonus__left .title h2 {
    margin-bottom: 17px;
}
.rebonus__left .title {
    margin-bottom: 51px;
}
.rebonus__content {
    display: flex;
    gap: 80px;
}
.rebonus__content .box {
    width: 50%;
}
.rebonus__content .box h3 {
    font-size: 25px;
    font-weight: bold;
    color: #211161;
    margin-bottom: 16px;
}
.bonus20__sec.termConditions .termConditions__img {
    width: 56%;
    max-width: 982px;
}
.bonus20__sec.termConditions {
    position: relative;
    z-index: 2;
    margin-bottom: -24%;
}
.deposit__frame .title {
    margin-bottom: 40px;
}
.deposit {
    padding-bottom: 40px;
}
.bonus100__page .mainvs__video {
    width: 78%;
    max-width: 1471px;
    margin: 0;
    align-self: center;
    position: absolute;
    right: -9%;
    margin-top: -1%;
}
.bonus100__page {
    height: 936px;
}
.tier {
    padding-top: 86px;
    margin-bottom: 74px;
}
.tier .title {
    margin-bottom: 40px;
}
.tier .title h2 {
    margin-bottom: 20px;
}
.tier .title .desc p {
    font-size: 18px;
}
.eligibility {
    padding-top: 0;
    margin-top: -64px;
}
.eligibility .multi__content .title h2 {
    margin-bottom: 15px;
}
.eligibility .multi__content .title .desc p {
    font-size: 18px;
}
.eligibility .multi__img {
    margin-bottom: -25%;
}
.termofuse {
    --height-dc: 270px;
    position: relative;
    z-index: 1;
    margin-top: -150px;
    padding-top: var(--height-dc) !important;
    padding-bottom: 100px;
}
.termofuse::before {
    content: '';
    position: absolute;
    background: url('../images/viewfull_bg.png') center no-repeat;
    background-size: cover;
    width: 1920px;
    height: var(--height-dc);
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    z-index: -1;
}
.bonus100.termConditions {
    padding-bottom: 0;
}
.bonus100.termConditions .termConditions__img {
    margin-right: -152px;
    margin-left: 0;
    align-self: flex-end;
}
.bonus100 .termConditions__frame {
    align-items: flex-start;
}
.bonus100 .termConditions__content {
    flex-shrink: 0;
}
.termofuse__frame .title {
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.termofuse__frame {
    width: 100%;
    max-width: 1523px;
    margin: 0 auto;
}
.mainvs__valid {
    position: static;
    font-size: 18px !important;
}
.hiw {
    padding-bottom: 120px;
}
.qualifying__frame .title {
    margin-bottom: 30px;
}
.dynamic__content.col5 th {
    width: calc(100% / 5);
}
.qualifying__frame .dynamic__content {
    margin-bottom: 30px;
}
.qualifying__list {
    display: flex;
}
.qualifying__list ul {
    width: 50%;
}
.qualifying__list ul li {
    padding-right: 20px;
}
.qualifying__list ul li:last-child {
    margin-bottom: 5px;
}
.qualifying__frame .dynamic__content .price__large {
    text-align: center;
    color: var(--main-cl);
    font-size: 30px;
    font-weight: 700;
}
.qualifying__frame .dynamic__content td[rowspan] {
    text-align: center;
}
.bonus20__page .mainvs__video {
    margin: -11.5% -26% -13.4% -31%;
}
.welcome__ib--page .mainvs__video {
    width: 90%;
    max-width: 1713px;
    right: -12%;
    margin-top: 5%;
}
.announcement__page .btn p:first-child a {
    background: transparent;
    border: 1px solid #fff;
}
.announcement__page .mainvs__h1 {
    width: 79%;
    max-width: 940px;
}
.announcement__page .mainvs__h1 h1 {
    font-size: max(min(100/1920 * 100vw, 70px), 52px);
    text-transform: none;
}
.announcement__page .hide__icon.btn p:first-child a span {
    padding-right: 0;
}
.announcement__page .hide__icon.btn p:first-child a span::before {
    opacity: 0;
}
.announcement__page .hide__icon.btn a:hover span {
    padding-right: 36px !important;
}
.announcement__page .hide__icon.btn p:first-child a:hover span::before {
    opacity: 1;
}
.announcement__page .mainvs__video {
    margin: 0;
    position: absolute;
    right: -5%;
    bottom: -21%;
    width: 75%;
    max-width: 1228px;
}
/* Announcement Tabs Styling */
.announcement__tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 56px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.announcement__tabs .item {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-jakarta);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: transparent;
    color: #26252A;
    width: 202px;
    max-width: 100%;
}
/* Custom radio-like circle dot */
.announcement__tabs .item::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1.5px solid #D6D6D6;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: transparent;
}
/* Hover state */
.announcement__tabs .item:hover {
    border-color: var(--main-cl);
    color: var(--main-cl);
}
.announcement__tabs .item:hover::before {
    border-color: var(--main-cl);
}
/* Active state */
.announcement__tabs .item.active {
    border-color: var(--main-cl);
    background-color: rgba(255, 235, 204, 0.32);
    color: var(--main-cl);
}
.announcement__tabs .item.active::before {
    border-color: var(--main-cl);
    background-color: var(--main-cl);
    box-shadow: inset 0 0 0 3px #FDF6E3;
}
.announcement__content h3 {
    font-size: 25px;
    color: var(--sec-cl);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}
/* Announcement Tab Contents & Lists */
.announcement__tabs--content {
    display: none;
}
.announcement__tabs--content.active {
    display: block;
}
.announcement__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px;
    width: 100%;
}
.announcement__box {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 24px;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
}
.announcement__box .date__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(231, 209, 164, 0.2);
    border-radius: 12px;
    padding: 20px 10px;
    min-width: 100px;
    width: 100px;
    max-width: 100px;
    flex-shrink: 0;
    height: 100%;
    box-sizing: border-box;
}
.announcement__box .date__column .day {
    font-size: 40px;
    font-weight: 500;
    color: #333333;
    line-height: 1.1;
    margin-bottom: 2px;
    font-family: var(--font-jakarta);
}
.announcement__box .date__column .month {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 2px;
}
.announcement__box .date__column .year {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
}
.announcement__box .info__column {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.announcement__box .info__column .category {
    font-size: 13px;
    font-weight: 500;
    color: #71717A;
    margin-bottom: 6px;
    display: inline-block;
}
.announcement__box .info__column .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--sec-cl);
    margin-bottom: 12px;
    font-family: var(--font-jakarta);
    line-height: 1.3;
}
.announcement__box .info__column .title a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}
.announcement__box .info__column .title a:hover {
    color: var(--main-cl);
}
.announcement__box .info__column .desc {
    font-size: 18px;
    line-height: 1.6;
    color: #52525B;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Inactive Box hover */
.announcement__box:hover {
    border-color: var(--main-cl);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    background-color: rgba(255, 235, 204, 0.32);
}
.announcement__box:hover .info__column .title a{
    color: var(--main-cl);
    text-decoration: underline;
}
.link_full {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
/* =============================================
   ANNOUNCEMENT DETAIL PAGE
   ============================================= */
.announcement__detail {
    padding-top: 100px;
    padding-bottom: 80px;
}
/* 2-column grid: main (3fr) + sidebar (1fr) */
.announcement__detail--frame {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: start;
    gap: 35px;
}
/* ---- Main Content Column ---- */
.announcement__detail--content {
    min-width: 0; /* prevent overflow */
}
.announcement__detail h1 {
    font-size: max(min(calc(60 / 1920 * 100vw), 70px), 32px);
    font-weight: 700;
    color: var(--main-cl);
    margin-bottom: 24px;
    line-height: 1.25;
    font-family: var(--font-jakarta);
    text-align: center;
}
.announcement__detail--content .thumbnail {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}
.announcement__detail--content .thumbnail img {
    width: 100%;
    height: auto;
    max-height: 660px;
    object-fit: cover;
    display: block;
}
.announcement__detail--content .cnt p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}
/* ---- Sidebar Column ---- */
.announcement__detail--article {
    position: sticky;
    top: calc(var(--heightHeader) + 24px); 
    background-color: #FEF9ED;
}
.article__sidebar {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 24px;
    background-color: #FEF9ED;
}
.article__sidebar--title {
    font-size: 25px;
    font-weight: bold;
    color: var(--sec-cl);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(38, 37, 42, 0.2);
    font-family: var(--font-jakarta);
    text-transform: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.article__sidebar--list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.article__sidebar--list li {
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.article__sidebar--list li:last-child {
    border-bottom: none;
}
.article__sidebar--list li .date {
    font-size: 14px;
    color: #A3A3A3;
    margin-bottom: 12px;
    display: block;
}
.article__sidebar--list li .desc p {
    font-size: 14px;
    color: #26252A;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.article__sidebar--list li a {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--sec-cl);
    font-weight: bold;
    transition: color 0.25s ease, padding-left 0.25s ease;
}
.article__sidebar--list li a:hover {
    color: var(--main-cl);
}
.announcement__detail {
    padding-top: 140px;
    padding-bottom: 40px;
}
.article__sidebar--list li a {
    display: -webkit-box;
    -webkit-line-clamp:  2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    margin-bottom: 12px;
}
.article__sidebar--list li:last-child {
    margin: 0;
    padding: 0;
}
.announcement__time {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.announcement__time p {
    color: var(--sec-cl);
    font-size: 24px;
}
.announcement__time span {
    display: flex;
    align-items: center;
    gap: 10px;
}
.announcement__detail--title {
    margin-bottom: 67px;
}
.announcement__detail--content {
    position: relative;
    z-index: 1;
    padding: 71px 65px;
}
.announcement__detail--content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    z-index: -1;
    background: #CF9B21;
    background: linear-gradient(0deg, rgba(207, 155, 33, 0) 0%, rgba(207, 155, 33, 0.01) 17%, rgba(207, 155, 33, 0.06) 41%, rgba(207, 155, 33, 0.28) 63%, rgba(207, 155, 33, 1) 100%);
    border-radius: 50px;
    opacity: 0.2;
}
.announcement__detail--content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 25%;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #CF9B21;
    background: linear-gradient(180deg, rgba(207, 155, 33, 0) 0%, rgba(207, 155, 33, 0.01) 17%, rgba(207, 155, 33, 0.06) 41%, rgba(207, 155, 33, 0.28) 63%, rgba(207, 155, 33, 1) 100%);
    border-radius: 50px;
    opacity: 0.1;
}
.announcement__detail--content h2 {
    margin-bottom: 12px;
}
.announcement__detail--content ul li {
    padding-left: 15px;
    position: relative;
    z-index: 1;
}
.announcement__detail--content ul li::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: #333;
    top: 13px;
    left: 0;
    z-index: -1;
}
.announcement__detail--content .cnt > *:not(:last-child) {
    margin-bottom: 20px;
}
.announcement__detail--content .cnt h2 {
    margin-top: 24px;
    margin-bottom: 12px !important;
    font-size: max(min(calc(45 / 1920 * 100vw), 45px) , 30px);
    letter-spacing: 0;
}
.announcement__detail--content .cnt table tr:first-child td {
    font-size: 25px;
    color: var(--sec-cl);
    font-weight: bold;
    width: calc(100% / 9);
}
.announcement__detail--content .cnt table tr td {
    padding: 5px 10px;
}
.announcement__detail--content .cnt table tr td {
    border: 0;
}
.announcement__detail--content .cnt table tr:nth-child(even) td {
    background-color: rgba(255, 235, 204, 0.5);
}
.announcement__detail--content .cnt table {
    position: relative;
    z-index: 1;
    width: calc(100% - 48px);
    height: auto !important;
    margin: 60px 24px !important;
}
.announcement__detail--content .cnt table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(255, 235, 204, 0.3);
    top: 0;
    left: 0;
    inset: -24px;
    border-radius: 24px;
}

[dir="rtl"] .copy__img {
    transform: scaleX(-1);
    margin-right: -12%;
    margin-left: unset;
}

[dir="rtl"] .list li::before {
    left: unset;
    right: 0;
}

[dir="rtl"] .list li {
    padding-right: 40px;
    padding-left: unset;
}

[dir="rtl"] .partner__img {
    margin-right: max((100vw - 100%) / -2, 50% - 960px);
    margin-left: unset;
}

[dir="rtl"] .partner__img img {
    transform: scaleX(-1);
}

[dir="rtl"] .lang-dropdown .sub-menu li a .lang-flag {
    margin-right: unset;
    margin-left: 10px;
}

[dir="rtl"] .lang-dropdown .lang-flag {
    margin-right: unset;
    margin-left: 8px;
}
.dropdown.lang-dropdown::before {
    display: none;
}

.dropdown.lang-dropdown .sub-menu {
    min-width: 200px;
    left: unset;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding: 10px;
    gap: 5px;
    background-color: var(--main-cl);
    border-radius: 10px;
}

.lang-dropdown .sub-menu li a {
    border-bottom: unset;
    padding: 8px !important;
    line-height: 1.3em;
}

[dir="rtl"] .dropdown.lang-dropdown .sub-menu {
    left: 0;
    right: unset;
}

[dir="rtl"] .traders__list li {
    padding-left: unset;
    padding-right: 34px;
}

[dir="rtl"] .traders__list li::before {
    right: 0;
    left: unset;
}

[dir="rtl"] .traders__list li::after {
    left: unset;
    right: -3px;
}

[dir="rtl"] .product__content--tabs th, 
[dir="rtl"] .product__content--tabs td, 
[dir="rtl"] .dynamic__content th, 
[dir="rtl"] .dynamic__content td {
    text-align: right;
}

[dir="rtl"] .gold__page .mainvs__video {
    margin-left: 121px;
}

[dir="rtl"] .forex__page .mainvs__h1,
[dir="rtl"] .energy__page .mainvs__h1{
    margin-left: auto !important;
    margin-right: 0 !important;
}

[dir="rtl"] .indices__page .mainvs__video,
[dir="rtl"] .promotions__page .mainvs__img{
    transform: scaleX(-1);
}

[dir="rtl"] .goldrush__phone--bnr .item:not(:last-child) {
    padding-left: 3.75em;
    margin-left: 3.75em;
    padding-right: 0;
    margin-right: 0;
    border-left: 1px solid rgba(250, 248, 240, 0.2);
    border-right: 0;
}

[dir="rtl"] .bonus__content ol li ul li {
    padding-right: 20px;
    padding-left: 0;
}

[dir="rtl"] .bonus__content ol li ul:not(.normal) li::before {
    left: unset;
    right: 4px;
}

[dir="rtl"] .bonus__content li ul {
    margin-right: 0;
}

[dir="rtl"] .bonus20__page .mainvs__video {
    /*margin: -11.5% -26% -13.4% -31%;*/
    margin: -11.5% -31% -13.4% -26%;
    transform: scaleX(-1);
}

[dir="rtl"] .mission_vision_img {
    left: -11%;
    right: unset;
    transform: scaleX(-1);
}

.indices__page .desc p {
    text-align: center;
}

.advantageEnergy::after {
    display: none;
}

.advantageEnergy__content {
    padding-left: 15px;
    padding-right: 15px;
}

@media screen and (min-width: 769px) {
    [dir="rtl"] .empowered__bg .shadow1 {
        left: -1px;
        right: unset;
        border-bottom-right-radius: 30px;
    }
    [dir="rtl"] .empowered__bg .shadow1::before {
        right: -30px;
        left: unset;
        transform: scaleX(-1);
    }
    [dir="rtl"] .empowered__bg .shadow1::after {
        left: 0;
        right: unset;
        bottom: -30px;
        transform: scaleX(-1);
        box-shadow: 10px -20px 0px 10px #fef9ed;
    }
}

@media screen and (min-width: 993px) {
    [dir="rtl"] .transactions .title .ttl_sub {
        left: unset;
        right: 0;
    }
    [dir="rtl"] .transactions__step li .cnt {
        padding-left: unset;
        padding-right: 52px;
    }

    [dir="rtl"] .transactions__step li h3::before {
        right: -52px;
        left: unset;
    }

    [dir="rtl"] .transactions__step::before {
        right: 73px;
        left: unset;
    }

    [dir="rtl"] .transactions__img::before {
        left: unset;
        right: -218px;
    }
    
    [dir="rtl"] .transactions .btn {
        text-align: right;
    }
}

@media screen and (min-width: 769px) and (max-width: 1560px) {
    [dir="rtl"] .empowered__bg .shadow1 {
        width: 20%;
    }
}

@media screen and (max-width: 992px) {
    .partner__img svg {
        left: unset;
        right: 0;
    }
}