@import "base.css";
@import "fonts.css";
:root {
    --content-width: 1440px;
    --main-cl: #facc15;
    --b-cl: #0c0c0c;
    --w-cl: #fff;
    --lh: 1.8em;
    --font-family: "Poppins", sans-serif;
    --body-color: #333333;
    --heightHeader: 100px;
}
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);
    color: #fff;
}
li::marker {
    display: none;
}
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.216em;
}
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 {
    margin-bottom: 15px;
    line-height: 1.222em;
}
p: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: var(--b-cl);
}
body.page-template {
    font-size: 10px;
}

#wrapper {
    margin: 0 auto;
    overflow: hidden;
    /*background-color: var(--b-cl);*/
    background: #000000;
}
#main {
    /*background-color: var(--b-cl) !important;*/
    background-color: #000 !important;
}
#content {
    /*background-color: var(--b-cl) !important;*/
    background-color: #000 !important;
    margin-top: 0 !important;
}
.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);
}
.to-top {
    position: fixed;
    bottom: 40px;
    right: 30px;
    cursor: pointer;
    z-index: 98;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.to-top.show {
    opacity: 1;
    visibility: visible;
}
.to-top:hover {
    opacity: 0.8;
}
.to-top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--main-cl);
    border: 1px var(--main-cl) solid;
    border-radius: 4px;
    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 !important;
}
.right {
    text-align: right !important;
}
.bold {
    font-weight: 700;
}
#header {
    padding: 20px 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: var(--heightHeader);
    transition: all 0.3s ease;
    z-index: 99;
    position: absolute;
}
#header h1 {
    display: none;
}
#header .logo a {
    display: flex;
    align-items: center;
    height: 100%;
}
#header.fix {
    position: fixed;
    background-color: #0c0c0c;
    box-shadow: 0 0 10px hsla(0, 0%, 100%, 0.2);
    top: 0;
}

.open-nav #header {
    background-color: #0c0c0c;
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1722px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
}
.header-main .header-nav > .menu-item > a {
    color: #fff !important;
}
.header-act {
    display: flex;
    align-items: center;
    gap: 55px;
    flex-shrink: 0;
}
.header-act ul {
    flex-shrink: 0;
}
.header-login-resister {
    display: flex;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 40px;
}
.header-login-resister p {
    margin-bottom: 0;
}
.header-login-resister p.active a {
    background-color: var(--main-cl);
    border-radius: 40px;
    color: #0c0c0c;
}
.header-login-resister p a {
    display: block;
    width: 100%;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
}
.menu-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 40px;
}
.menu-list .menu-tt {
    padding: 0;
    line-height: 1.8;
    color: var(--w-cl);
    font-weight: 500;
    font-size: 18px;
}
.menu-list .menu-tt.active {
    padding: 10px 16px 8px;
    border-radius: 40px;
    line-height: 23px;
    position: relative;
    z-index: 1;
    top: 1px;
    font-weight: 400;
}
.menu-list .menu-tt.active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.2;
    top: 0;
    left: 0;
    border-radius: 40px;
    z-index: -2;
}
.menu-list .menu-tt.active::after {
    content: "";
    position: absolute;
    background-color: #242424;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top: 2px;
    left: 2px;
    border-radius: 40px;
    z-index: -1;
}
.menu-list p {
    margin-bottom: 0;
}
.menu-list a {
    position: relative;
    display: block;
}
.dropdown {
    position: relative;
}
.hsub-menu {
    width: 100%;
    background-color: #fff;
}
.hsub-menu a {
    padding: 15px;
}
.header-content {
    display: flex;
    gap: 127px;
}
.header-region .menu-tt {
    color: var(--w-cl);
    font-size: 15px;
    line-height: 24px;
    padding-right: 12px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.header-region .menu-tt::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/arrow-down.svg") center no-repeat;
    background-size: cover;
    top: 2px;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 5px;
    margin: auto;
    z-index: -1;
}
.header-region .menu-tt .flag {
    display: flex;
    flex-shrink: 0;
}
.mainvisual {
    position: relative;
    z-index: 1;
    height: 900px;
    display: flex;
    align-items: center;
    padding-top: 16px;
}
.mainvisual__custombg::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/mainvs_img_comparison_dc.png") center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
    pointer-events: none;
}
.mainvisual__custombg2 {
    height: auto;
    padding: 9.3% 0 0;
    margin-bottom: 108px;
}
.mainvisual__custombg2::before {
    display: none;
}
.mainvisual__custombg2::after {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/ourteam_dc.png") center no-repeat;
    background-size: cover;
    width: 100%;
    height: 653px;
    top: calc(var(--heightHeader) * -1);
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
}
.mainvisual__custombg2 h2 {
    margin-bottom: 21px;
}
.mainvisual__custombg2 .mainvisual__content {
    width: 100%;
    margin: 0;
}
.mainvisual__custombg2 .mainvisual__desc {
    margin-bottom: 30px;
}
.mainvisual__custombg2 .mainvisual__desc p {
    font-size: 20px;
    line-height: 1.35em;
}
.mainvisual__content > *:last-child {
    margin-bottom: 0;
}
.mainvisual__img {
    position: absolute;
    top: 0;
    right: calc(50% - 960px);
    z-index: -1;
    pointer-events: none;
}
.mainvisual__list {
    margin-bottom: 40px;
}
.mainvisual__list li {
    font-size: 20px;
    padding-left: 45px;
    position: relative;
    line-height: 35px;
}
.mainvisual__list li i {
    cursor: pointer;
    font-weight: 600;
    border-bottom: 1px dashed var(--main-cl);
    position: relative;
    z-index: 2;
    text-align: right;
}
.mainvisual__list li i::before {
    content: attr(hover-tooltip);
    text-align: left;
    left: 50%;
    min-width: 300px;
    max-width: 100%;
    bottom: calc(100% + 10px);
    transform: translate(-50%);
    animation: 0.3s fade-in;
    background: #272727;
    border-radius: 4px;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 27px;
    display: none;
}
.mainvisual__list li i::after {
    content: "";
    left: 50%;
    width: 0;
    height: 0;
    bottom: calc(100% + 6px);
    margin-left: -3px;
    border: 1px solid #000;
    border-color: #272727 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    border-width: 4px 6px 0;
    animation: 0.3s fade-in;
    display: none;
}
.mainvisual__list li:not(:last-child) {
    margin-bottom: 20px;
}
.mainvisual__list li::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/mainvs_ic_list.png") center no-repeat;
    width: 35px;
    height: 35px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
}
.mainvisual__desc {
    margin-bottom: 30px;
}
.mainvisual__desc p {
    font-size: 20px;
    line-height: 1.35em;
}
[hover-tooltip]:hover::before,
[hover-tooltip]:hover::after {
    position: absolute;
    display: block;
    z-index: 2;
}
[hover-tooltip][tooltip-position="bottom"]:hover::before {
    bottom: auto;
    top: calc(100% + 10px);
}
[hover-tooltip][tooltip-position="bottom"]:hover::after {
    bottom: auto;
    top: calc(100% + 6px);
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #272727;
    border-width: 0 6px 4px;
}
h2 {
    font-size: 70px;
    margin-bottom: 20px;
    line-height: 1.213em;
}
h2 span {
    font-weight: bold;
    color: var(--main-cl);
}
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.border__glassed {
    --radius: 20px;
    position: relative;
    z-index: 1;
}
.border__glassed::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: var(--radius);
    z-index: -1;
}
.border__glassed::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 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;
    border-radius: var(--radius);
    opacity: 0.2;
}
.have__sticky footer,
.have__sticky .mainvisual,
.have__sticky section {
    overflow: hidden;
}
.clr {
    color: var(--main-cl);
}
.red {
    color: red;
}
.block992 {
    display: none !important;
}
.link_full {
    position: absolute;
    inset: 0;
    z-index: 2;
}
input,
textarea,
select {
    margin-bottom: 0;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
    color: #fff !important;
    opacity: 1 !important;
}
select {
    appearance: none;
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_arrow.png") right center/20px no-repeat;
}
.custom_inputs input,
.custom_inputs select {
    padding: 12px 48px 12px 24px;
    background-color: hsla(0, 0%, 100%, 0.1) !important;
    border: 0;
    border-radius: 660px;
    color: #fff !important;
    height: auto;
    font-size: 18px;
}
.btn {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.btn p {
    margin-bottom: 0;
}
.btn.center {
    justify-content: center;
}
.btn.right {
    justify-content: flex-end;
}
.btn .btn_border {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--main-cl);
    color: var(--main-cl);
}
.btn a,
.btn__viewmore {
    font-size: 18px;
    display: flex;
    align-items: center;
    border-radius: 40px;
    background-color: var(--main-cl);
    color: var(--b-cl);
    font-weight: 500;
    padding: 14px 24px 12px;
    line-height: 1;
    word-break: break-all;
}
.btn a span,
.btn__viewmore span {
    padding-right: 33px;
    position: relative;
    z-index: 1;
}
.btn a span::before,
.btn__viewmore span::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/arrow_btn.png") center/cover no-repeat;
    width: 24px;
    height: 24px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    filter: invert(1);
    z-index: -1;
    transition: 0.3s all;
}
.btn a.btn_w,
.btn__viewmore.btn_w {
    background-color: rgba(0, 0, 0, 0);
    color: var(--w-cl);
    border: 1px solid var(--w-cl);
}
.btn a.btn_w span::before,
.btn__viewmore.btn_w span::before {
    filter: none;
}
.btn.not_icon a span,
.btn .not_icon a span {
    padding-right: 0;
}
.btn.not_icon a span::before,
.btn .not_icon a span::before {
    display: none;
}
.btn .btn__mail span {
    padding: 0 0 0 35px;
}
.btn .btn__mail span::before {
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_mail.svg") center/cover no-repeat;
    width: 20px;
    height: 15px;
    left: 2px;
    right: unset;
    filter: none;
    transform: none !important;
}
.btn__download a span::before {
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_download.svg") center/cover no-repeat;
    filter: none;
}
.btn__subscribe a {
    background-color: red;
    border-radius: 40px;
    padding: 16px 24px;
    font-size: 18px;
    color: var(--w-cl);
}
.btn__subscribe a span {
    padding: 0 0 0 35px;
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_youtube.png") left center/30px no-repeat;
}
.btn__subscribe a span::before {
    display: none;
}
.btn__watch p {
    margin-bottom: 0 !important;
}
.btn__watch a {
    font-size: 18px;
    color: var(--main-cl);
    line-height: 54px;
    display: inline-block;
}
.btn__watch a span {
    position: relative;
    z-index: 1;
    padding-left: 88px;
}
.btn__watch a span::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_play.png") center/cover no-repeat;
    width: 77px;
    height: 78px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    border-radius: 50%;
    transition: 0.3s all ease;
}
.btn__facebook a {
    padding: 7px 8px;
    background-color: #0766fe;
    border-radius: 40px;
    font-size: 18px;
    line-height: 1.22;
    width: 176px;
    height: 44px;
    display: flex;
    align-items: center;
}
.btn__facebook a span {
    padding-left: 41px;
    position: relative;
    z-index: 1;
}
.btn__facebook a span::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_btn_facebook.png") center/cover no-repeat;
    width: 31px;
    height: 31px;
    inset: 0 auto 0 0;
    margin: auto;
    z-index: -1;
}
.swiper-button {
    display: none;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--main-cl);
    transition: 0.25s;
    top: 14px !important;
    z-index: 10;
    margin-top: 0 !important;
}
.swiper-button svg {
    width: 10px;
    color: var(--b-cl);
}
.swiper-button-next {
    left: 0 !important;
    right: unset !important;
}
.swiper-button-prev {
    right: 0 !important;
    left: unset !important;
}
.swiper-pagination {
    position: relative;
    margin-top: 5px;
}
.swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--main-cl);
    opacity: 0.3;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}
.title {
    margin-bottom: 30px;
}
.title__sub {
    font-size: 16px;
    color: var(--main-cl);
    padding: 8px 16px;
    position: relative;
    z-index: 1;
    display: inline-block;
    border-radius: 40px;
    line-height: 22px;
    overflow: hidden;
    margin-bottom: 6px;
    background-color: hsla(0, 0%, 100%, 0.1);
}
.title__sub::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(to bottom, rgba(250, 204, 21, 0.2) 0%, rgba(250, 204, 21, 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;
    border-radius: 40px;
    z-index: 1;
}
.title__sub::after {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/title_sub_dc.png") center/cover no-repeat;
    width: 114px;
    height: 36px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}
.title h3 {
    font-size: clamp(50px, 3.13vw, 60px);
    margin-bottom: 20px;
}
.title h3 span {
    font-weight: bold;
    color: var(--main-cl);
    display: inline;
}
.title .txt {
    font-size: 20px;
    line-height: 1.2;
}
.desc p {
    font-size: 18px;
    line-height: 1.22;
    font-weight: 400;
}
.desc p:not(:last-child) {
    margin-bottom: 22px;
}
.link {
    display: flex;
    gap: 30px;
}
.link p {
    margin-bottom: 0;
    line-height: 1.22;
}
.link p a {
    font-size: 18px;
    display: block;
    color: var(--main-cl);
    text-decoration: underline;
    font-weight: 500;
    text-underline-offset: 2px;
}
.menuChild {
    padding: 6px;
    display: flex;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    background-color: hsla(0, 0%, 100%, 0.1);
}
.menuChild::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.23) 0%,
        rgba(255, 255, 255, 0) 15%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 85%,
        rgba(255, 255, 255, 0.28) 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;
}
.menuChild p {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.2;
    padding: 12px 24px;
    border-radius: 48px;
    font-weight: 500;
    cursor: pointer;
}
.menuChild p.active {
    color: var(--b-cl);
    background-color: var(--main-cl);
}
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 10px;
}
.pagination.center {
    justify-content: center;
}
.pagination li {
    width: 40px;
    height: 40px;
}
.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.pagination li.active a {
    background-color: var(--main-cl);
    color: #0c0c0c;
    border-radius: 5px;
}
.lightbox-item {
    position: relative;
    z-index: 1;
    cursor: pointer;
}
.lightbox-item::before,
.lightbox-item::after {
    opacity: 0;
    pointer-events: none;
    transition: 0.3s all ease-in-out;
}
.lightbox-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.lightbox-item::after {
    content: "Zoom out";
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border-radius: 50%;
    z-index: 2;
    font-size: 18px;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.05;
}
.list {
    margin-bottom: 43px;
    font-size: 18px;
}
.list li {
    font-size: 1em;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    padding-left: 45px;
}
.list li:not(:last-child) {
    margin-bottom: 24px;
}
.list li::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_check_black.png") center/cover no-repeat;
    width: 35px;
    height: 35px;
    z-index: -1;
    top: -5px;
    left: 0;
}
.list_logo {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.boxcopy {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    gap: 30px;
}
.boxcopy__list {
    margin-bottom: 37px;
}
.boxcopy .item {
    width: 50%;
    max-width: 688px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 20px;
}
.boxcopy .item h4 {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
    padding: 28px 15px 25px;
    margin-bottom: 0;
}
.boxcopy .item h4 span {
    padding-left: 22px;
    position: relative;
    z-index: 1;
}
.boxcopy .item h4 span::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--main-cl);
    top: 10px;
    left: 0;
    z-index: -1;
}
.boxcopy .cnt {
    padding: 38px 30px 65px;
}
.boxcopy .row {
    display: block !important;
}
.boxcopy .row:not(:last-child) {
    margin-bottom: 21px;
}
.boxcopy .row__txt {
    font-size: 1em;
    line-height: 1.22;
    margin-bottom: 7px;
}
.boxcopy .row__input {
    position: relative;
    z-index: 1;
    font-size: 1em;
}
.boxcopy .row__input input {
    height: 50px;
    font-size: 100%;
    color: #fff;
}
.boxcopy .row__input .copy_btn {
    position: absolute;
    top: 5px;
    right: 3px;
}
.boxcopy .btn.btn__download span {
    padding: 0 0 0 33px;
}
.boxcopy .btn.btn__download span::before {
    background: url(/wp-content/themes/flatsome/uk-template/images/ic_download.svg) center/cover no-repeat;
    filter: none;
    right: unset;
    left: 0;
}
.boxcopy .btn.btn__download .btn_w span::before {
    filter: invert(1);
    transform: rotate(-90deg);
}
@keyframes ripple-white {
    0% {
        box-shadow:
            0 0 0 0 hsla(0, 0%, 100%, 0.3),
            0 0 0 10px hsla(0, 0%, 100%, 0.3),
            0 0 0 20px hsla(0, 0%, 100%, 0.3);
    }
    100% {
        box-shadow:
            0 0 0 10px hsla(0, 0%, 100%, 0.3),
            0 0 0 20px hsla(0, 0%, 100%, 0.3),
            0 0 0 30px hsla(0, 0%, 100%, 0);
    }
}
.certificates {
    padding: 38px 0 152px;
}

.certificates__content .frame {
    opacity: 1;
}
.certificates .container {
    width: 100%;
}
.certificates .title {
    text-align: center;
}
.certificates .title .btn {
    justify-content: center;
}
.certificates__frame {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 68px;
    max-width: 1410px;
    margin: 0 auto 156px;
}
.certificates__line {
    flex-shrink: 0;
    display: none;
}
.certificates__bnr {
    display: flex;
    width: 100%;
    max-width: 1058px;
    gap: min(max(5.21vw, 50px), 100px);
    align-self: center;
    justify-content: center;
}
.certificates__bnr li {
    width: max(30%, 130px);
    max-width: 197px;
    flex-shrink: 0;
}
.certificates__info {
    position: relative;
    z-index: 1;
    padding: 89px 80px 0;
    max-width: 1650px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(10px);
    border-radius: 100px;
}
.certificates__info::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(to bottom, #facc15 -80%, rgba(250, 204, 21, 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;
    border-radius: 100px;
    z-index: -1;
    opacity: 0.2;
}
.certificates__info::after {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/certificates_dc.png") center/cover no-repeat;
    width: 1570px;
    height: 728px;
    top: -34%;
    right: -8%;
    z-index: -1;
}
.certificates__content {
    max-width: 1443px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
}
.certificates__content .desc {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}
.certificates__content .desc > p {
    margin-bottom: 0;
}
.certificates__content .desc .txt {
    font-size: 30px;
    line-height: 37px;
    letter-spacing: 0.008em;
}
.certificates__content .desc .symb {
    flex-shrink: 0;
}
.certificates__content .desc .symb.bottom {
    align-self: flex-end;
}
.certificates__content .btn__download {
    margin-top: 45px;
}
.certificates__ceo {
    display: flex;
    gap: 10px;
    font-size: 18px;
    color: var(--main-cl);
}
.certificates__ceo img {
    align-self: center;
}
.certificates__video {
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: 0.3s all ease;
    text-align: center;
}
.certificates__video::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_play_youtube.png") center/cover no-repeat;
    width: 50px;
    height: 50px;
    inset: 0;
    margin: auto;
    pointer-events: none;
    border-radius: 10px;
    animation: 3s linear infinite ripple-white;
    opacity: 1;
    pointer-events: all;
}
.certificates__video::after {
    display: none;
}
.whyus {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}
.whyus::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/whyus_dc.png") center/cover no-repeat;
    width: 729px;
    height: 1305px;
    left: 0;
    top: 17%;
    z-index: -1;
    pointer-events: none;
}
.whyus .container {
    width: 1430px;
}
.whyus .title {
    text-align: center;
    margin-bottom: 50px;
}
.whyus__list {
    position: relative;
    z-index: 1;
}
.whyus__list::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/whyus_img_dc.png") center/cover no-repeat;
    width: 1522px;
    height: 1305px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}
.whyus__item {
    display: flex;
    gap: 34px;
    padding: 30px 24px;
}
.whyus__item .icon {
    flex-shrink: 0;
}
.whyus__item h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--main-cl);
    margin-bottom: 14px;
    line-height: 29px;
}
.whyus__item .desc {
    font-size: 18px;
}
.whyus__item .desc * {
    font-size: 100%;
    line-height: 22px;
}
.whyus__img {
    text-align: center;
}
.hiw {
    margin-bottom: 80px;
}
.hiw__content {
    margin-bottom: 30px;
}
.hiw__content .title {
    flex-shrink: 0;
    margin-bottom: 35px;
}
.hiw__content .desc p {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 36px;
    letter-spacing: 0.01em;
}
.hiw__step {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}
.hiw__step::before {
    content: "";
    position: absolute;
    background: linear-gradient(to right, #facc15 0%, #facc15 50%, rgba(250, 204, 21, 0) 100%);
    width: 100%;
    height: 1px;
    top: 50px;
    left: 0;
    z-index: -1;
    opacity: 0.6;
}
.hiw__step .title {
    margin-bottom: 33px;
}
.hiw__step .title__sub {
    font-size: 18px;
    padding: 8px 24px;
}
.hiw__step .icon {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin-bottom: -106px;
    transform: translateX(-20%);
}
.hiw__step h4 {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 26px;
}
.hiw__step .cnt ul li {
    padding-left: 30px;
    position: relative;
    z-index: 1;
    line-height: 22px;
    font-size: 18px !important;
}
.hiw__step .cnt > ul > li::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/hiw_list_ic.svg") center/cover no-repeat;
    width: 16px;
    height: 18px;
    top: 0;
    left: -1px;
    z-index: -1;
}
.hiw__step .cnt > ul > li:not(:last-child) {
    margin-bottom: 20px;
}
.hiw__step .cnt > ul > li a {
    color: var(--main-cl);
    text-decoration: underline;
}
.hiw__step .ul__sub li {
    position: relative;
    z-index: 1;
    padding-left: 28px;
}
.hiw__step .ul__sub li::before {
    content: "";
    position: absolute;
    width: 3px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #fff;
    top: 11px;
    left: 12px;
    z-index: -1;
}
.package {
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}
.package__dc1 {
    position: absolute;
    top: -50%;
    left: 0;
    z-index: 2;
    pointer-events: none;
}
.package__dc2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}
.package .container {
    width: 1430px;
}
.package .title {
    text-align: center;
    margin-bottom: 44px;
}
.package__tabs {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 720px;
    padding: 6px;
    margin: 0 auto 60px;
    background-color: hsla(0, 0%, 100%, 0.1);
    border-radius: 40px;
    position: relative;
    z-index: 1;
}
.package__tabs::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        90deg,
        #fff 0%,
        rgba(255, 255, 255, 0) 10%,
        rgba(255, 255, 255, 0.8) 55%,
        rgba(255, 255, 255, 0) 71%,
        rgba(255, 255, 255, 0) 95%,
        #fff 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.2;
}
.package__tabs .item {
    padding: 12px 22px;
    line-height: 24px;
    font-size: 20px;
    margin-bottom: 0;
    border-radius: 40px;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: 0.3s all ease;
}
.package__tabs .item.active {
    background-color: var(--main-cl);
    color: var(--b-cl);
}
.package__scroll {
    margin-bottom: 60px;
}
.package__content {
    background-color: hsla(0, 0%, 100%, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: none;
}
.package__content.active {
    display: block;
}
.package__content--title {
    display: flex;
    position: relative;
    z-index: 1;
}
.package__content--title .item {
    padding: 37px 30px 33px 60px;
    display: block !important;
}
.package__content--title .item .phase {
    background-color: #fff;
    display: inline-block;
    color: var(--b-cl);
    border-radius: 28px;
    padding: 5px 16px 3px;
    line-height: 20px;
}
.package__content--title .item .price {
    font-size: 16px;
    font-weight: 400;
    color: hsla(0, 0%, 100%, 0.32);
    line-height: 1.2em;
}
.package__content--title .item .price span {
    font-size: 250%;
    color: var(--main-cl);
    font-weight: bold;
    margin-right: 10px;
    line-height: 1em;
}
.package__content--option .item {
    display: flex;
    min-height: 60px;
    position: relative;
    z-index: 1;
}
.package__content--option .item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.package__content--option .item .row {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    padding: 0 34px 0 60px;
    margin: 0 !important;
}
.package__content--option .item .row::after {
    display: none !important;
}
.package__content--option .item .row .clr {
    font-weight: bold;
}
.package__content--option .item .row:first-child {
    flex-grow: 1;
    padding: 0 28px 0 50px;
}
.package__content--option .item .row:not(:first-child) {
    flex-shrink: 0;
}
.wchoose {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}
.wchoose .title {
    margin-bottom: 64px;
}
.wchoose__content {
    width: 100%;
    max-width: 1187px;
    margin: 0 auto;
    transform: translateX(58px);
    position: relative;
    z-index: 1;
}
.wchoose__content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.wchoose__content .item {
    min-height: 206px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    position: relative;
    z-index: 1;
    opacity: 0.5;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.wchoose__content .item.active {
    opacity: 1;
}
.wchoose__content .item.active::after {
    opacity: 1;
}
.wchoose__content .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.wchoose__content .item::after {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/wchoose_dc.png") center/cover no-repeat;
    width: 500px;
    height: 500px;
    z-index: -1;
    top: 0;
    bottom: 0;
    right: -20%;
    opacity: 0;
    margin: auto;
    transition: 0.3s all ease;
    pointer-events: none;
}
.wchoose__content .item__no {
    font-size: 120px;
    color: hsla(0, 0%, 100%, 0.15);
    font-weight: 500;
    width: 100%;
    max-width: 233px;
    margin-bottom: 0;
    line-height: 1;
}
.wchoose__content .item .cnt {
    width: 100%;
    max-width: 712px;
}
.wchoose__content .item .cnt h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    color: var(--main-cl);
    margin-bottom: 15px;
}
.wchoose__content .item .cnt .desc p {
    font-size: 18px;
    line-height: 22px;
}
.features {
    margin-bottom: 80px;
}
.features .container {
    width: 1430px;
}
.traders {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}
.traders__dc {
    position: absolute;
    top: -110%;
    left: 0;
    z-index: -1;
    pointer-events: none;
}
.traders .txt {
    font-size: 20px;
    line-height: 24px;
    margin: 0 auto 50px;
}
.traders .title {
    margin-bottom: 27px;
}
.traders .title h3 {
    margin-bottom: 0;
}
.traders__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 49px;
}
.traders__content .item {
    flex: 1 1 320px;
    max-width: 434px;
    overflow: hidden;
    border-radius: 20px;
    transition:
        transform 0.3s,
        border 0.3s;
    cursor: pointer;
}
.traders__content .item::before,
.traders__content .item::after {
    display: none;
}
.traders__content p {
    margin-bottom: 0;
}
.subscribe {
    margin-bottom: 162px;
}
.subscribe .container {
    width: 1430px;
}
.subscribe__content {
    background-color: var(--main-cl);
    border-radius: 20px;
    padding: 66px 0 66px 75px;
    display: flex;
    position: relative;
    z-index: 1;
}
.subscribe__content .cnt {
    width: 100%;
    max-width: 470px;
    flex-shrink: 0;
}
.subscribe__content h3 {
    color: var(--b-cl);
    font-size: 50px;
    margin-bottom: 12px;
}
.subscribe__content h3 span {
    font-weight: bold;
    display: inline;
}
.subscribe__content .desc {
    margin-bottom: 40px;
}
.subscribe__content .desc p {
    font-size: 18px;
    line-height: 22px;
    color: var(--b-cl);
    font-weight: 500;
}
.subscribe__img {
    width: 67%;
    max-width: 937px;
    right: -67px;
    bottom: 0;
    position: absolute;
}
.payouts {
    margin-bottom: 120px;
}
.payouts .container {
    width: 1430px;
}
.payouts__content {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 63px;
}
.payouts__content .desc {
    width: 55%;
    max-width: 770px;
    margin-top: 45px;
}
.payouts__content .desc .txt {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
}
.payouts__content .desc .info {
    display: flex;
    justify-content: center;
}
.payouts__content .desc .info p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
html:not([dir="rtl"]).payouts__content .desc .info p:not(:last-child) {
    padding-right: 70px;
    margin-right: 70px;
}
[dir="rtl"] .payouts__content .desc .info p:not(:last-child) {
    padding-left: 70px !important;
    margin-left: 70px !important;

}
[dir="rtl"] .payouts__content .desc .info p:not(:last-child) {
    margin-right: 0;
    padding-right: 0;
}
[dir="rtl"] .payouts__content .desc .info p:not(:last-child)::before {
    right: unset;
    left: 0;
}
.payouts__content .desc .info p:not(:last-child)::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.19) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    top: 0;
    right: 0;
    z-index: -1;
}
.payouts__content .desc .info p span {
    display: block;
    font-size: 333.33%;
    color: var(--main-cl);
    font-weight: 600;
    line-height: 73px;
}
.payouts__card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 57px;
}
.payouts__card .item {
    width: 33%;
    max-width: 450px;
    flex: 1 1 400px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    min-height: 180px;
    overflow: hidden;
}
.payouts__card .item::before {
    content: "";
    position: absolute;
    top: -52%;
    left: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(40px);
    background: radial-gradient(circle at center, rgba(250, 204, 21, 0.4) 0%, rgba(250, 204, 21, 0) 100%);
}
.payouts__card .item .cnt {
    width: 75%;
    max-width: 290px;
}
.payouts__card .item h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 10px;
}
.payouts__card .item .desc p {
    line-height: 20px;
}
.payouts__list h4 {
    font-size: 40px;
    font-weight: bold;
    line-height: 49px;
    margin-bottom: 40px;
    color: var(--main-cl);
}

.payouts__list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    overflow-y: auto;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.payouts__list .payouts__frame {
    position: relative;
    z-index: 1;
}
.payouts__list .payouts__frame::before {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, #000000 0%, rgba(12, 12, 12, 0.76) 52%, rgba(12, 12, 12, 0) 100%);
    width: 1920px;
    height: 70%;
    z-index: 2;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.payouts__list ul::-webkit-scrollbar {
    width: 2px;
}
.payouts__list ul::-webkit-scrollbar-track {
    background: hsla(0, 0%, 100%, 0.2);
    border-radius: 4px;
}
.payouts__list ul::-webkit-scrollbar-thumb {
    background: var(--main-cl);
    border-radius: 4px;
}
.payouts__list ul li {
    display: flex;
    gap: 25px;
}
.payouts__list ul li .img {
    margin-bottom: 0;
    cursor: pointer;
    transition: 0.3s all ease;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}
.payouts__list ul li .img img {
    outline: 1px solid hsla(0, 0%, 100%, 0.5);
    outline-offset: -1px;
    border-radius: 10px;
}
.payouts__list ul li .price {
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 10px;
}
.payouts__list ul li .name {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.payouts__list ul li .location {
    color: #777;
}
.payouts__list ul li .location span {
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_location.svg") left center/16px no-repeat;
    padding-left: 20px;
}
.testimonials {
    margin-bottom: 100px;
}
.testimonials .title {
    margin-bottom: 18px;
}
.testimonials .title h3 {
    margin-bottom: 0;
}
.testimonials .txt {
    font-size: 20px;
    letter-spacing: 0.005em;
    margin-bottom: 25px;
}
.testimonials__widget {
    margin-bottom: 30px;
}
.testimonials__widget img {
    width: 1920px;
    height: 643px;
}
.join {
    position: relative;
    z-index: 1;
    padding: 50px 0;
    margin-bottom: 8px;
}
.join__bg {
    position: relative;
    z-index: -1;
    text-align: center;
}
.join__bg img {
    min-height: 380px;
}
.join__title {
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
    height: max-content;
}
.wmtinfo p {
    line-height: 25px;
}
.wmtinfo .desc p {
    font-size: 15px;
}
.wmtinfo .container {
    width: 1430px;
}
.wmtinfo__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
.wmtinfo__head {
    margin-bottom: 30px;
}
.wmtinfo__head .desc p {
    font-size: 15px;
}
.wmtinfo__logo {
    margin-bottom: 20px;
}
.wmtinfo__body .ttl {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.wmtinfo__body .item {
    padding-left: 25px;
    position: relative;
    z-index: 1;
}
.wmtinfo__body .item:not(:last-child) {
    margin-bottom: 43px;
}
.wmtinfo__body .item::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 42px;
    background-color: var(--main-cl);
    top: 0;
    left: 0;
    z-index: -1;
}
.wmtinfo__body .item::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 0.2);
    top: 0;
    left: 0;
    z-index: -1;
}
.table__frame {
    background-color: hsla(0, 0%, 100%, 0.1);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 20px;
    padding: 50px;
}
.table__frame h4 {
    font-size: 40px;
    line-height: 1.225;
    font-weight: 500;
    width: auto;
}
.table__frame .inputs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}
.table__frame .head {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 26px;
    gap: 20px;
}
.table__frame .head .limit {
    width: 118px;
    max-width: 100%;
}
.table__frame .head .limit select {
    width: 100%;
}
.table__frame .head .search {
    max-width: 451px;
}
.table__frame table th,
.table__frame table td {
    border: 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
    padding: 22px 0 !important;
}
.table__frame table th {
    font-size: 20px;
    color: hsla(0, 0%, 100%, 0.6);
    font-weight: 400;
    text-align: left;
}
.table__frame table td {
    font-size: 18px;
}
.table__frame table tr > *:last-child {
    text-align: center;
}
.table__frame table tbody tr > *:first-child {
    padding: 20px 0 !important;
}
.table__content .blog__pagination {
    margin-top: 14px;
    border-top: 0;
}
.table__scroll.col4 th {
    width: 25%;
}
.table__scroll.col5 th {
    width: 20%;
}
.symbols__content > *:last-child {
    margin-bottom: 0 !important;
}
.currencies__content .boxcopy {
    margin-bottom: 133px;
}
.instant__page.mainvisual::after {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/instant_main_dc.png") center no-repeat;
    background-size: cover;
    width: 1496px;
    height: 1507px;
    top: -70%;
    left: -30%;
    pointer-events: none;
    z-index: -1;
}
.benefit {
    padding-top: 12px;
    margin-bottom: 50px;
}
.benefit__list {
    position: relative;
    z-index: 2;
    width: max-content;
    margin: 0 auto 54px;
}
.benefit__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.125;
    color: var(--main-cl);
}
.benefit__list li:not(:last-child) {
    margin-bottom: 10px;
}
.benefit__list li span {
    display: block;
}
.benefit__list li .ic {
    width: 51px;
    height: 50px;
    overflow: hidden;
}
.benefit__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.benefit__boxs {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    width: calc(100% - 100px);
}
.benefit__boxs .item {
    position: relative;
    z-index: 1;
}
.benefit__boxs .item:nth-child(even) {
    align-self: flex-end;
}
.benefit__boxs .item__dc img {
    position: absolute;
    top: 98px;
    right: 100%;
    pointer-events: none;
}
.benefit__boxs .item .border__glassed {
    padding: 38px 45px 52px;
}
.benefit__boxs .item h4 {
    font-size: 32px;
    font-weight: 600;
    color: var(--main-cl);
    padding-bottom: 25px;
    background: url("/wp-content/themes/flatsome/uk-template/images/line_h4.png") center bottom/258px 28px no-repeat;
    display: inline-block;
    margin-bottom: 18px;
}
.benefit__boxs .item .cnt * {
    font-size: 18px;
    line-height: 1.22;
}
.benefit__boxs .item .cnt > *:not(:last-child) {
    margin-bottom: 20px;
}
.benefit__boxs .item .cnt ul li {
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_check.svg") left top 2px/20px no-repeat;
    padding-left: 32px;
}
.benefit__boxs .item .cnt ul li:not(:last-child) {
    margin-bottom: 10px;
}
.benefit__img {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    width: 50%;
}
.benefit__img::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/benefit_img_dc.png") center/cover no-repeat;
    width: 162.2%;
    height: 158.65%;
    top: -37%;
    left: -45%;
    z-index: -1;
    pointer-events: none !important;
}
.benefit__img::after {
    display: none;
}
.benefit__img img {
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}
.trading {
    position: relative;
    z-index: 2;
    padding-top: 14px;
    margin-bottom: 50px;
}
.trading .title {
    margin-bottom: 47px;
}
.trading .label {
    font-size: 18px;
    opacity: 0.5;
    line-height: 1.22;
    margin-bottom: 0;
}
.trading__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.trading__content > div {
    background-color: hsla(0, 0%, 100%, 0.1);
    border-radius: 20px;
}
.trading__capital {
    width: 100%;
    padding: 20px;
}
.trading__capital h4 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    padding-bottom: 18px;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}
.trading__capital h4::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    bottom: 0;
    left: 0;
    z-index: -1;
}
.trading__capital--tabs .item {
    font-size: 20px;
    line-height: 1.2;
    padding: 8px 16px;
    border-radius: 40px;
    cursor: pointer;
    color: #919191;
}
.trading__capital--tabs .item:not(:last-child) {
    margin-bottom: 10px;
}
.trading__capital--tabs .item.active {
    color: var(--main-cl);
    background-color: hsla(0, 0%, 100%, 0.1);
}
.trading__market {
    padding: 20px;
}
.trading__market .item {
    display: none;
}
.trading__market .item.active {
    display: block;
}
.trading__market--label {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}
.trading__market--size {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 40px;
}
.trading__market--price {
    display: none;
    flex-grow: 1;
    gap: 42px;
}
.trading__market--price.active {
    display: flex;
}
.trading__market--price > p {
    width: 15%;
    max-width: 100px;
    min-height: 34px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.22;
    color: hsla(0, 0%, 100%, 0.3);
    border-bottom: 2px solid hsla(0, 0%, 100%, 0.3);
    margin-bottom: 0;
    padding-bottom: 10px;
    cursor: pointer;
}
.trading__market--price > p.active {
    color: var(--main-cl);
    border-color: var(--main-cl);
}
.trading__market--badge {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    padding: 12px 95px;
    margin: 0 0 19px -95px;
    background-color: hsla(0, 0%, 100%, 0.1);
    border-radius: 0 53px 53px 0;
}
.trading__market--content {
    margin-bottom: 40px;
    display: none;
}
.trading__market--content.active {
    display: block;
}
.trading__market--content .item dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 0 11px;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}
.trading__market--content .item dt,
.trading__market--content .item dd {
    font-size: 18px;
    line-height: 1.22;
}
.trading__market--content .item dt {
    display: flex;
    align-items: center;
    gap: 27px;
    color: hsla(0, 0%, 100%, 0.92);
}
.trading__market--content .item dd {
    font-weight: 600;
}
.trading__market--content .item dd small {
    font-size: 80%;
    color: hsla(0, 0%, 100%, 0.92);
    font-weight: 500;
    margin-right: 29px;
}
.trading__market--content .item .total {
    padding-bottom: 27px;
}
.trading__market--content .item .total .clr {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.225;
}
.trading__market--btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.unique {
    position: relative;
    z-index: 1;
    margin-bottom: 152px;
}
.unique__title {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 59px;
    text-align: center;
}
.unique__title h3 {
    margin-bottom: 15px;
}
.unique__title .desc {
    max-width: 638px;
}
.unique__title .desc p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}
.unique__list {
    counter-reset: section;
}

.unique__list .item .lightbox-item::before,
.unique__list .item .lightbox-item::after {
    display: none;
}
.unique__list .item {
    font-size: 18px;
    padding-left: 4.17em;
    position: relative;
    z-index: 1;
    min-height: 60px;
    cursor: pointer;
}
[dir="rtl"] .unique__list .item {
    padding-right: 4.17em;
    padding-left: unset;
}
[dir="rtl"] .unique__list .item::before {
    right: -0.625em;
    left: unset;
}
.unique__list .item::before {
    counter-increment: section;
    content: counter(section, decimal-leading-zero);
    position: absolute;
    color: hsla(0, 0%, 100%, 0.92);
    font-size: 1.33em;
    width: 2.5em;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: hsla(0, 0%, 100%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    left: -0.625em;
    top: -0.75em;
}
.unique__list .item:not(:last-child) {
    margin-bottom: 1.67em;
}
.unique__list .item.active {
    margin-bottom: 2.22em;
}
.unique__list .item.active h4,
.unique__list .item.active::before {
    color: var(--main-cl);
}
.unique__list .item.active .desc {
    display: block;
}
.unique__list .item h4 {
    font-size: 1.33em;
    line-height: 1.125;
    font-weight: 600;
    color: hsla(0, 0%, 100%, 0.92);
    position: relative;
    z-index: 1;
}
.unique__list .item .desc {
    font-size: 100%;
    margin-top: 1.11em;
    display: none;
}
.unique__list .item .desc > p {
    font-size: 1em;
    line-height: 1.22;
    margin-bottom: 0.72em;
}
.unique__img {
    position: relative;
    z-index: 1;
}
.unique__img::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/unique_img_dc.png") center/cover no-repeat;
    width: 150%;
    height: 128%;
    top: -15%;
    right: -55%;
    z-index: -1;
    pointer-events: none;
}
.master {
    margin-bottom: -107px;
}
.master .menuChild {
    width: max-content;
    margin: 0 auto 40px;
}
.master__content {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 5px 393px;
    position: relative;
    z-index: 1;
}
.master__content.active {
    display: grid;
}
.master__content::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/master_bg.png") center/cover no-repeat;
    width: 1920px;
    height: 1255px;
    z-index: -1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    display: block !important;
}
.master__content .item__no {
    margin-bottom: 25px;
}
.master__content .item__cnt {
    padding: 45px 22px 41px 24px;
}
.master__content .item__user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.master__content .item__user--avt {
    width: 60px;
    aspect-ratio: 1;
    position: relative;
    z-index: 1;
}
.master__content .item__user--avt img {
    border-radius: 50%;
}
.master__content .item__user--avt .region {
    position: absolute;
    bottom: 0;
    right: 0;
}
.master__content .item__user--avt .region img {
    height: 20px;
}
.master__content .item__info--name {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-cl);
    line-height: 1.22;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.master__content .item__info .desc {
    display: flex;
}
.master__content .item__info .desc p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.21;
}
.master__content .item__info .desc p:not(:last-child) {
    padding-right: 12px;
    margin-right: 12px;
    border-right: 1px solid hsla(0, 0%, 100%, 0.1);
}
.master__content .item__chart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 29px;
}
.master__content .item__chart .name {
    font-size: 14px;
    line-height: 1.21;
    color: hsla(0, 0%, 100%, 0.5);
}
.master__content .item__chart .percent {
    color: #22c55e;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
}
.master__content .item__table {
    margin-bottom: 40px;
}
.master__content .item__table dl {
    display: flex;
    justify-content: space-between;
}
.master__content .item__table dl:not(:last-child) {
    margin-bottom: 17px;
}
.master__content .item__table dl dt,
.master__content .item__table dl dd {
    font-size: 14px;
    line-height: 1.21;
}
.master__content .item__table dl dt,
.master__content .item__table dl dd:last-child {
    flex-shrink: 0;
}
.master__content .item__table dl .attend {
    color: #22c55e;
    font-weight: 600;
}
.master__content .item__table--line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed hsla(0, 0%, 100%, 0.2);
    align-self: flex-end;
    margin: 0 10px 3px;
}
.master__content .item .btn p {
    width: 100%;
}
.master__content .item .btn p a {
    justify-content: center;
}
.comparison__page.mainvisual {
    height: 865px;
}
.comparison__page.mainvisual .mainvisual__img {
    top: 205px;
    bottom: 0;
    right: 106px;
    margin: auto;
    height: max-content;
    pointer-events: none;
    width: 57%;
    max-width: 1068px;
}
.comparison__content {
    margin: 0 5px;
}
.comparison__head {
    min-height: 132px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background-color: hsla(0, 0%, 100%, 0.1);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-bottom: 0;
    margin-bottom: 6px;
}
.comparison__head .item {
    padding: 29px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.comparison__head .item:not(:last-child) {
    border-right: 1px solid hsla(0, 0%, 100%, 0.1);
}
.comparison__head .item .name {
    font-size: 22px;
    font-weight: bold;
    color: var(--main-cl);
    margin-bottom: 20px;
}
.comparison__head .item .tryon {
    font-size: 16px;
    padding: 6px 10px;
    border-radius: 40px;
    position: relative;
    z-index: 1;
    background-color: hsla(0, 0%, 100%, 0.1);
    max-width: 143px;
}
.comparison__head .item .tryon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        90deg,
        #fff 0%,
        rgba(255, 255, 255, 0) 10%,
        rgba(255, 255, 255, 0.8) 55%,
        rgba(255, 255, 255, 0) 71%,
        rgba(255, 255, 255, 0) 95%,
        #fff 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.2;
}
.comparison__body .item {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.comparison__body .item .col {
    padding: 8px 10px;
    margin-bottom: 0;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    font-size: 16px;
    display: flex;
    align-items: center;
    font-weight: 600;
    min-height: 60px;
    background-color: hsla(0, 0%, 100%, 0.08);
}
.comparison__body .item .col:not(:first-child) {
    text-align: center;
    justify-content: center;
}
.comparison__body .item .col.name {
    background-color: var(--main-cl);
    color: var(--b-cl);
    border-color: rgba(0, 0, 0, 0.1);
    padding: 8px 20px;
}
.comparison__body .item .col.merge {
    grid-column: span 4;
}
.testimonials__page .mainvisual__img {
    top: -62px;
    bottom: 0;
    margin: auto;
    height: max-content;
    right: 149px;
    width: 58%;
    max-width: 1098px;
}
[dir="rtl"] .testimonials__page .mainvisual__img {
    transform: unset;
    left: 0;
    right: unset;
}
.testimonials__page .testimonials {
    margin-bottom: 50px;
}
.testimonials__benefit {
    margin-bottom: 50px;
}
.testimonials__benefit .title {
    margin-bottom: 73px;
}
.testimonials__benefit .title .desc p {
    font-weight: 500;
}
.testimonials__benefit--content {
    position: relative;
    z-index: 1;
    margin: 0 auto 50px;
    max-width: 1685px;
    overflow: hidden;
}
.testimonials__benefit--content::before,
.testimonials__benefit--content::after {
    content: "";
    position: absolute;
    width: 30%;
    max-width: 500px;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}
.testimonials__benefit--content::before {
    left: 0;
    background: linear-gradient(90deg, #0c0c0c 0%, rgba(12, 12, 12, 0.76) 52%, rgba(12, 12, 12, 0) 100%);
}
.testimonials__benefit--content::after {
    right: 0;
    background: linear-gradient(90deg, rgba(12, 12, 12, 0) 0%, rgba(12, 12, 12, 0.76) 52%, #0c0c0c 100%);
}
.testimonials__benefit--list {
    padding: 0;
    margin: 0;
    gap: 39px;
    flex-shrink: 0;
}
.testimonials__benefit--list li {
    margin: 15px 20px !important;
}
.stories {
    margin-bottom: 50px;
}
.stories .container {
    width: 1467px;
}
.stories .title {
    margin-bottom: 98px;
}
.stories .title .desc p {
    font-size: 20px;
}
.stories__content .item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stories__content .item:not(:last-child) {
    margin-bottom: 94px;
}
.stories__content .item:nth-child(even) {
    flex-direction: row-reverse;
}
.stories__content .cnt {
    width: 100%;
    max-width: 475px;
    flex-shrink: 0;
}
.stories__content .cnt h4 {
    font-size: 40px;
    line-height: 1.225;
    margin-bottom: 37px;
}
.stories__content .cnt .desc {
    margin-bottom: 37px;
}
.stories__img img {
    border-radius: 20px;
}
.stories .txt__marquee {
    padding-top: max(10.26vw, 100px);
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1rem;
}
.stories .txt__marquee::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/stories_marquee.png") center no-repeat;
    width: 100%;
    height: 88.4%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}
.stories .txt__marquee p {
    display: inline-block;
    color: #0c0c0c;
    text-shadow:
        #facc15 1px 0 0,
        #facc15 0.54px 0.84px 0,
        #facc15 -0.42px 0.91px 0,
        #facc15 -0.99px 0.14px 0,
        #facc15 -0.65px -0.76px 0,
        #facc15 0.28px -0.96px 0,
        #facc15 0.96px -0.28px 0;
    font-size: max(4.69vw, 40px);
    font-weight: 700;
    animation: scroll-left 80s linear infinite;
    white-space: nowrap;
    text-transform: uppercase;
    opacity: 0.5;
    line-height: 1.566;
}
.stories .txt__marquee p::after {
    content: attr(data-text);
    margin-left: 2rem;
}
.proofs {
    margin-bottom: 50px;
}
.proofs .title {
    margin-bottom: 70px;
}
.proofs .title .desc p {
    font-size: 20px;
}
.proofs__content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px 24px;
    margin: 0 5px 10px;
    position: relative;
    z-index: 1;
}
.proofs__content.active {
    margin-bottom: 40px;
}
.proofs__content.active::before {
    display: none;
}
.proofs__content::before {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, #000 0%, rgba(12, 12, 12, 0.76) 52%, rgba(12, 12, 12, 0) 100%);
    width: 1920px;
    height: 70%;
    z-index: 2;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.proofs__content .item.hidden {
    display: none;
}
.proofs__content .lightbox-item {
    max-width: 260px;
    max-height: 260px;
    aspect-ratio: 1/1;
    margin: 0 auto;
}
.proofs__content img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 1px solid hsla(0, 0%, 100%, 0.3);
}
.joinus {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.joinus__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.joinus .title {
    flex-shrink: 0;
    padding-bottom: 32px;
    position: relative;
    z-index: 1;
}
.joinus .title::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/joinus_dc1.png") center/cover no-repeat;
    width: 800px;
    height: 580px;
    top: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
}
.joinus .title .txt {
    margin-bottom: 42px;
}
.joinus__img {
    width: 65%;
    max-width: 908px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    right: 0;
    z-index: 1;
}
.joinus__img::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/joinus_dc2.png") center/cover no-repeat;
    width: 87.445%;
    height: 151%;
    right: -12.3%;
    top: -18%;
    z-index: -1;
    pointer-events: none;
}
.joinus__img img {
    width: 908px;
}
.joinus__list {
    margin: 0 5px;
    overflow: visible;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}
.joinus__list img {
    border-radius: 20px;
}
.joinus__list .swiper__arrow {
    position: absolute;
    width: 90px;
    height: 40px;
    display: flex;
    gap: 10px;
    bottom: -19px;
    right: 0;
    z-index: 2;
    background-color: #0c0c0c;
    padding-left: 20px;
}
.joinus__list .swiper__arrow .swiper-button {
    position: static;
    display: flex;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--main-cl);
    flex-shrink: 0;
}
.joinus__list .swiper__arrow .swiper-button svg {
    display: none;
}
.joinus__list .swiper-slide {
    width: 332px;
    max-width: 100%;
    padding-bottom: 89px;
}
.joinus__list .swiper-slide.swiper-slide-active {
    border-bottom: 1px solid var(--main-cl);
}
.award {
    padding-bottom: 50px;
}
.award .title {
    margin-bottom: 67px;
}
.award__content {
    width: 365px;
    margin: 0 auto;
}
.award__content.swiper {
    overflow: visible !important;
}
.award__content .swiper-pagination {
    margin-top: 35px;
}
.award__content .item {
    text-align: center;
    padding: 101px 40px;
    border-radius: 200px;
}
.award__content .item.swiper-slide-active {
    background-color: #000;
    backdrop-filter: blur(40px);
    position: relative;
    z-index: 1;
}
.award__content .item.swiper-slide-active::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(
        to bottom,
        rgba(250, 204, 21, 0.6) 0%,
        rgba(250, 204, 21, 0.2) 40%,
        rgba(250, 204, 21, 0.03) 66%,
        rgba(250, 204, 21, 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;
    border-radius: 200px;
    z-index: -1;
}
.award__content .item.swiper-slide-active::after {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/award_active_slide.png") center/cover no-repeat;
    width: 258.36%;
    height: 174.74%;
    top: -48%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
    pointer-events: none;
}
.award__content .item__logo {
    margin-bottom: 40px;
}
.award__content .item h4 {
    font-size: 25px;
    line-height: 1.28;
    font-weight: bold;
    margin-bottom: 4px;
}
.award__content .item .desc {
    margin-bottom: 24px;
}
.award__content .item .desc p {
    font-size: 15px;
    line-height: 2.13;
}
.award__content .item .link.center {
    justify-content: center;
}
.award__content .item .link a {
    font-size: 15px;
}
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.promotions__content .item:not(:last-child) {
    margin-bottom: 80px;
}
.promotions__content .item__bnr {
    cursor: pointer;
}
.promotions__content .item__bnr img {
    border-radius: 20px 20px 0 0;
}
.promotions__content .item__cnt {
    padding: 46px 46px 61px;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid #2e2e2e;
    border-radius: 0 0 30px 30px;
}
.promotions__content .item__cnt h3 {
    font-size: 35px;
    line-height: 1.14;
    font-weight: bold;
    margin-bottom: 25px;
}
.promotions__content .item__cnt .desc {
    margin-bottom: 22px;
}
.promotions__content .item__cnt h4 {
    font-size: 20px;
    font-weight: bold;
}
.promotions__content .item__cnt ol {
    counter-reset: section;
}
.promotions__content .item__cnt ol > li:not(:last-child) {
    margin-bottom: 22px;
}
.promotions__content .item__cnt ol > li .ttl {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
}
.promotions__content .item__cnt ol > li .ttl::before {
    content: counter(section) ".";
    counter-increment: section;
    margin: 0 10px 0 7px;
}
.promotions__content .item__cnt ol > li ul li {
    position: relative;
    z-index: 1;
    padding-left: 26px;
}
.promotions__content .item__cnt ol > li ul li::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}
.promotions__content .item__cnt .note {
    margin-top: 22px;
}
.promotions__content .item__list {
    margin-bottom: 30px;
}
.promotions__content .item .btn {
    gap: 10px;
}
.affiliate__page .mainvisual__content {
    text-align: center;
    width: 100%;
    padding-top: 20px;
}
.affiliate__page .mainvisual__custombg::before {
    background: url("/wp-content/themes/flatsome/uk-template/images/mainvs_img_affiliate_dc.png") center/cover no-repeat;
    width: 1920px;
    height: 1146px;
}
.affiliate__main .btn a {
    width: 261px;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
}
.affiliate__range {
    position: relative;
    width: 688px;
    max-width: 100%;
    margin: 93px auto 38px;
}
.affiliate__range--value {
    position: absolute;
    top: -35px;
    color: var(--main-cl);
    font-size: 20px;
    font-weight: 500;
    transform: translateX(-50%);
    pointer-events: none;
}
.affiliate__range--progress {
    position: absolute;
    height: 3px;
    background: var(--main-cl);
    border-radius: 10px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 1;
}
.affiliate__earned {
    margin-bottom: 52px;
}
.affiliate__earned .txt {
    font-size: 15px;
}
.affiliate__earned .num {
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    margin-top: -3px;
    color: var(--main-cl);
}
.range {
    appearance: none;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0);
    position: relative;
}
.range::-webkit-slider-runnable-track {
    height: 3px;
    background: rgba(217, 217, 217, 0.2);
    border-radius: 20px;
}
.range::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    background: var(--main-cl);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -10px;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 20px #fc0;
}
.best {
    margin: -6% 0 7.7%;
}
.best__bg {
    margin-bottom: -15.5%;
}
.best .title {
    margin-bottom: 92px;
}
.best__content {
    counter-reset: best_couter;
    position: relative;
    z-index: 1;
}
.best__content::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/best_dc.png") center/cover no-repeat;
    width: 51.85%;
    height: 94.75%;
    top: -44.5%;
    left: -18.5%;
    z-index: -1;
    pointer-events: none;
}
.best__content .item {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 58px 0 53px;
}
.best__content .item:first-child {
    border-top: 1px solid rgba(119, 119, 119, 0.5);
}
.best__content .item:not(:last-child) {
    border-bottom: 1px solid rgba(119, 119, 119, 0.5);
}
.best__content .item h4 {
    width: 32%;
    max-width: 451px;
    font-size: 35px;
    line-height: 1.23;
    padding-left: 8.51%;
    position: relative;
    z-index: 1;
}
.best__content .item h4::before {
    counter-increment: best_couter;
    content: counter(best_couter, decimal-leading-zero) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
}
[dir="rtl"] .best__content .item h4 {
    padding-right: 8.51%;
    padding-left: unset;
}
[dir="rtl"] .best__content .item h4::before {
    right: 0;
    left: unset;
}
.best__content .item .cnt {
    width: 59%;
    max-width: 820px;
}
.best__content .item .cnt > *:not(:last-child) {
    margin-bottom: 32px;
}
.best__content .item .cnt p {
    font-size: 18px;
    line-height: 1.39;
}
.best__content .item .cnt li {
    padding-left: 37px;
    position: relative;
    z-index: 1;
    font-size: 18px;
}
[dir="rtl"] .best__content .item .cnt li {
    padding-left: unset !important;
    padding-right: 37px;
}
[dir="rtl"] .best__content .item .cnt li::before {
    left: unset;
    right: 0;
}
.best__content .item .cnt li:not(:last-child) {
    margin-bottom: 20px;
}
.best__content .item .cnt li::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_checked.svg") center/cover no-repeat;
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
    z-index: -1;
    pointer-events: none;
}
.video {
    padding: 0;
    margin-bottom: 50px;
}
.video__content {
    position: relative;
    z-index: 1;
}
.video__content::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/video_dc.png") center/cover no-repeat;
    width: 121.84%;
    height: 191.72%;
    top: -110%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}
.video__iframe {
    max-width: 1400px;
    border-radius: 30px;
    margin: 0 auto;
    display: block !important;
    text-align: center;
    position: relative;
    z-index: 1;
}

.video__iframe::before {
    content: "";
    position: absolute;
    background: url(/wp-content/themes/flatsome/uk-template/images/ic_play_youtube.png) center / cover no-repeat;
    width: 50px;
    height: 50px;
    inset: 0;
    margin: auto;
    pointer-events: none;
    border-radius: 10px;
    animation: 3s linear infinite ripple-white;
    opacity: 1;
    pointer-events: all;
}

.video__iframe::after, .ceo__intro::after {
    display: none;
}
.ceo__intro::before {
    background: none;
}

.commission {
    margin-bottom: 172px;
}
.commission__content {
    max-width: 1690px;
    padding: 0 15px;
    margin: 0 0 -6.25% auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}
[dir="rtl"] .commission__content {
    margin: 0 auto -6.25% 0;
}
[dir="rtl"] .local__main--img {
    margin: -67% 0 0 -75%;
    align-self: center;
}
.commission__content > .title h3 {
    margin-bottom: 25px;
}
.commission__content > .title .txt {
    font-size: 18px;
}
.commission__level {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
}
.commission__level::before {
    content: "";
    position: absolute;
    background: linear-gradient(to left, #facc15 0%, #facc15 50%, rgba(250, 204, 21, 0) 100%);
    width: 100%;
    height: 1px;
    top: 78px;
    left: 0;
    z-index: -1;
    opacity: 0.6;
}
.commission__level .item {
    text-align: center;
    width: 30%;
    max-width: 302px;
}
.commission__level .item .title {
    padding-bottom: 42px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.commission__level .item .title::before {
    content: "";
    position: absolute;
    background-color: var(--main-cl);
    width: 11px;
    aspect-ratio: 1;
    border-radius: 50%;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
}
.commission__level .item .title::after {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/level_dc_dot.png") center/cover no-repeat;
    width: 150px;
    height: 150px;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}
.commission__level .item .title__sub {
    padding: 8px 25px;
    font-size: 18px;
}
.commission__level .item .percent {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.225 !important;
    margin-bottom: 10px;
    color: var(--main-cl);
}
.commission__partner {
    margin-bottom: 179px;
    position: relative;
    z-index: 1;
}
.commission__partner::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/partner_dc.png") center/cover no-repeat;
    width: 112.84%;
    height: 122.93%;
    top: -11.3%;
    right: -62.7%;
    z-index: -1;
    pointer-events: none;
}
.commission__lifetime {
    position: relative;
    z-index: 1;
}
.commission__lifetime::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/lifetime_dc.png") center/cover no-repeat;
    width: 73.33%;
    height: 269.05%;
    left: -18.4%;
    top: -119%;
    z-index: -1;
    pointer-events: none;
}
.multilevel {
    /*margin-bottom: -5.5%;*/
}
.multilevel .title {
    margin-bottom: 57px;
}
.multilevel .whyus__list {
    flex-shrink: 0;
}
.multilevel .whyus__list::before {
    display: none;
}
.multilevel .whyus__item {
    position: relative;
    z-index: 1;
}
.multilevel .whyus__item:nth-child(1)::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/multilevel_img_dc.png") center/cover no-repeat;
    width: 101.69%;
    height: 539.6%;
    top: -220%;
    left: -37%;
    z-index: -1;
    pointer-events: none;
}
.multilevel__img {
    text-align: center;
    position: relative;
    z-index: 1;
    pointer-events: none;
}
.multilevel__img::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/multilevel_dc.png") center/cover no-repeat;
    width: 131.24%;
    height: 169.04%;
    top: -55%;
    left: -45%;
    z-index: -1;
    pointer-events: none;
}
.contact__page .mainvisual__img {
    top: 163px;
    right: 148px;
}
.contact {
    margin: -2.2% 0 50px;
}
.contact__frame {
    display: flex;
    flex-direction: column;
}
.contact__info {
    border-radius: 30px;
    border: 1px solid #2e2e2e;
    padding: 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.8;
}
.contact__info::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/contact_info_dc.png") center/cover no-repeat;
    width: 144.483%;
    height: 150.313%;
    bottom: -55%;
    left: -45%;
    z-index: -1;
    pointer-events: none;
}
.contact__info .item {
    display: flex;
    align-items: center;
    gap: 25px;
}
.contact__info .item:not(:last-child) {
    margin-bottom: 45px;
}
.contact__info .item .icon {
    flex-shrink: 0;
    width: 70px;
}
.contact__info .item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-cl);
    margin-bottom: 14px;
}
.contact__info .item .desc p {
    font-size: 18px;
}
.contact__info .item .desc p:not(:last-child) {
    margin-bottom: 12px;
}
.contact__info .item .link a {
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-all;
}
.contact__info .item .link__location a {
    font-size: 15px;
    font-weight: bold;
    padding-left: 28px;
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_location_clr.svg") left center/18px 17px no-repeat;
}
.contact__form .title {
    margin-bottom: 51px;
}
.contact__form .title h3 {
    margin-bottom: 23px;
}
.contact__form .form tr {
    display: flex;
    gap: 48px;
}
.contact__form .form tr:not(:last-child) {
    margin-bottom: 20px;
}
.contact__form .form td {
    width: 50%;
    padding: 0;
    border: 0;
    flex-grow: 1;
}
.contact__form .form input,
.contact__form .form textarea,
.contact__form .form select {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    border-bottom: 1px solid #777;
    font-size: 18px;
    padding: 0 0 16px;
    outline: none;
    color: #fff;
}
.contact__form .form textarea {
    resize: none;
    height: 80px;
}
.contact__form .form .upload__btn {
    flex-shrink: 0;
}
.contact__form .form .upload__text {
    font-size: 13px;
    display: block;
}
.contact__form .form .row_submit {
    margin-top: -12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.contact__form .form .btn {
    flex-shrink: 0;
}
.support {
    padding: 111px 0;
    position: relative;
    z-index: 1;
    margin-bottom: -9.4%;
}
.support::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/support_bg.png") center/cover no-repeat;
    width: 100%;
    height: 779px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}
.support .title {
    margin-bottom: 91px;
}
.support .title h3 {
    margin-bottom: 24px;
}
.support__content {
    max-width: 844px;
    margin: 0 auto;
}
.support__content ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 27px 45px;
}
.support__content ul li:is(:nth-child(2), :nth-child(3)) {
    margin-right: -14px;
}
.upload__wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}
.upload__btn {
    width: 115px;
    height: 36px;
    font-size: 14px;
    background-color: hsla(0, 0%, 100%, 0.2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aboutus__page.mainvisual {
    /*align-items: flex-start;*/
    padding-top: 0;
    height: 100vh !important;
    /*height: auto;*/
}

.aboutus__page.mainvisual::before {
    display: block;
    background: url("/wp-content/themes/flatsome/uk-template/images/aboutus_main_dc2.png") center no-repeat;
    background-size: cover;
    width: 1073px;
    height: 1898px;
    bottom: -100%;
    left: 0;
    top: unset;
    right: unset;
    transform: unset;
    z-index: 2;
    opacity: 0.5;
}

.aboutus__page.mainvisual::after {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/aboutus_main_dc1.png") center no-repeat;
    background-size: cover;
    width: 1920px;
    height: 801px;
    bottom: -40%;
    left: 50%;
    top: unset;
    right: unset;
    transform: translate(-50%, 0);
    z-index: 1;
}

.aboutus__page .mainvisual__content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}
.aboutus__page.mainvisual::before {
    /*display: none;*/
}
.aboutus__page .mainvisual__img {
    /*position: relative;*/
    position: absolute !important;
    z-index: 1;
    /*right: 0;*/
}
.aboutus__page .mainvisual__img::before {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, rgb(12, 12, 12) 0%, rgba(12, 12, 12, 0.75) 41%, rgba(12, 12, 12, 0) 100%);
    width: 100%;
    height: 210px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.aboutus__page .mainvisual__img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.aboutus__page .mainvisual__img img {
    filter: blur(6px);
}
.aboutus {
    padding: 12% 0 0;
    margin-bottom: 137px;
}
.aboutus__content {
    flex-shrink: 0;
}
.aboutus__content .title {
    text-align: center;
}
.aboutus__frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.aboutus__img {
    margin: -20% 0;
}
.aboutceo {
    margin-bottom: 125px;
}
.aboutceo__img {
    position: relative;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 30px;
}
.aboutceo__img::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/aboutceo_dc_img.png") center no-repeat;
    width: 227%;
    height: 205%;
    right: -80%;
    top: -50%;
    z-index: -1;
    pointer-events: none;
}
.aboutceo__img .label {
    position: absolute;
    bottom: 0;
    display: flex;
    gap: 11px;
}
.aboutceo__img .label .name {
    --radius: 60px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    padding: 18px 19px;
    color: var(--main-cl);
}
.aboutceo__content .title {
    margin-bottom: 40px;
}
.aboutceo__content .intro {
    padding: 40px 50px;
    margin-bottom: 26px;
}
.aboutceo__content .intro h4 {
    font-size: 20px;
    line-height: 1.35;
    font-weight: bold;
    margin-bottom: 25px;
}
.aboutceo__content .intro .desc {
    margin-bottom: 19px;
}
.aboutceo__content .intro .note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
}
.aboutceo__content .intro .note img {
    margin-top: 6px;
}
.aboutceo .cnt .item {
    --radius: 8px;
    padding: 16px 50px;
}
.aboutceo .cnt .item:not(:last-child) {
    margin-bottom: 31px;
}
.aboutceo .cnt .item .accordion-button {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 0;
    cursor: pointer;
}
.aboutceo .cnt .item .desc {
    display: none;
    padding-top: 30px;
}
.helping {
    margin-bottom: -6.5%;
    position: relative;
    z-index: 1;
}
.helping::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/helping_im_dc.png") center no-repeat;
    background-size: cover;
    width: 802px;
    height: 1801px;
    top: 70%;
    transform: translate(0, -50%);
    left: calc(50% - 960px);
    z-index: -1;
    pointer-events: none;
}
.helping .title {
    margin-bottom: 110px;
}
.helping__content {
    flex-shrink: 0;
}
.helping__content .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 130px;
    padding-bottom: 29px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.helping__content .item:not(:first-child) {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
.helping__content .item:first-child {
    margin-bottom: 13px;
}
.helping__content .item p {
    margin-bottom: 0;
}
.helping__content .item .ttl {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}
.helping__content .item .txt {
    font-size: 18px;
    line-height: 1.22;
    position: relative;
    z-index: 1;
}
.helping__content .item .arrow {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 34px;
    height: 34px;
}
.helping__content .item > * {
    width: 50%;
}
.helping__frame {
    display: flex;
    flex-direction: column;
}
.helping__img {
    margin-top: -10%;
    pointer-events: none;
}
.problems {
    --size: 320px;
}
.problems .title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 30px;
}
.problems .title::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: var(--size);
    height: var(--size);
    background: linear-gradient(270deg, white 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
    opacity: 0.1;
}
.problems__content {
    text-align: center;
}
.problems__content .item:not(:last-child) {
    margin-bottom: 50px;
}
.problems__content .item h4 {
    font-size: 24px;
    line-height: 1.2;
    color: var(--main-cl);
    font-weight: 500;
    margin-bottom: 11px;
}
.traditional {
    padding: 128px 0 122px;
    position: relative;
    z-index: 1;
}
.traditional::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/traditional_dc1.png") center no-repeat;
    background-size: cover;
    width: 790px;
    height: 1801px;
    left: calc(50% - 960px);
    top: 50%;
    transform: translate(0%, -50%);
    z-index: -1;
    pointer-events: none;
}
.traditional::after,
.local::after {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/traditional_dc2.png") center no-repeat;
    background-size: cover;
    width: 1063px;
    height: 1801px;
    right: calc(50% - 960px);
    top: 50%;
    transform: translate(0%, -50%);
    z-index: -1;
    pointer-events: none;
}
.traditional .title {
    margin-bottom: 38px;
}
.traditional__content {
    padding: 50px 40px 20px;
    position: relative;
    z-index: 1;
    border-radius: 60px;
}
.traditional__content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.8) 15%, rgba(255, 255, 255, 0) 25%, #fff 200%, #fff 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.2;
}
.traditional__content table th,
.traditional__content table td {
    padding: 30px 0;
    border: 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
.traditional__content table tr:last-child th,
.traditional__content table tr:last-child td {
    border-bottom: 0;
}
.traditional__content table th {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
}
.traditional__content table td {
    font-size: 18px;
    line-height: 1.2;
    padding: 30px 21px;
}
.traditional__content table td .icon {
    display: flex;
    align-items: flex-start;
}
.traditional__content table td .icon img {
    margin: 2px 10px 0 0;
}
.traditional__content table thead th {
    padding-top: 0;
    text-align: center;
}
.traditional__content table thead th:first-child {
    width: 248px;
}
.traditional__content table thead th:not(:first-child) {
    width: 470px;
}
.traditional__content table tbody th,
.traditional__content table tbody td {
    text-align: left;
}
.earnings {
    margin-bottom: 110px;
    position: relative;
    z-index: 1;
}
.earnings::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/earning_dc1.png") center no-repeat;
    background-size: cover;
    width: 1022px;
    height: 1616px;
    top: 90%;
    right: 0;
    transform: translate(0%, -50%);
    pointer-events: none;
    z-index: -1;
}
.earnings .title {
    margin-bottom: 40px;
}
.earnings__content {
    display: flex;
    flex-direction: column;
}
.earnings__content .item {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 56px 50px 30px;
    border-radius: 20px;
}
.earnings__content .item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.1;
}
.earnings__content .item::after {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/earnings_item_dc.png") center no-repeat;
    width: 100%;
    height: 665px;
    top: 0;
    left: 0;
    z-index: -2;
    pointer-events: none;
}
.earnings__content .item .title {
    margin-bottom: 15px;
}
.earnings__content .item .title__sub {
    font-size: 18px;
    color: #fff;
    padding: 8px 25px;
}
.earnings__content .item .title__sub::before {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(250, 204, 21, 0) 100%);
}
.earnings__content .item .title__sub::after {
    display: none;
}
.earnings__content .item h4 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 24px;
}
.earnings__content .item .desc {
    margin-bottom: 55px;
}
.office {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.office::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/traditional_dc1.png") center no-repeat;
    background-size: cover;
    width: 790px;
    height: 1801px;
    left: calc(50% - 960px);
    top: 50%;
    transform: translate(0%, -50%);
    z-index: -1;
    pointer-events: none;
}
.office .container {
    width: 1690px;
}
.office__content {
    width: 1400px;
    max-width: 100%;
}
.office__frame {
    padding: 65px 15px 50px;
}
.office__frame.border__glassed::after {
    background: linear-gradient(430deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.office .title {
    max-width: 1032px;
    margin: 0 auto 57px;
}
.office .item {
    position: relative;
    z-index: 1;
}
.office .item::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 0.1);
    right: -32px;
    top: 0;
}
.office .item .img {
    margin-bottom: 33px;
    text-align: center;
}
.office .item .img img {
    border-radius: 10px;
}
.office .item .ttl {
    margin-bottom: 20px;
}
.office .item .ttl .sub {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.25;
    color: #fff;
    opacity: 0.5;
}
.office .item .ttl h4 {
    color: var(--main-cl);
    font-size: 24px;
    line-height: 1.2;
}
.office .item .desc p:not(:last-child) {
    margin-bottom: 20px;
}
.office .swiper-pagination {
    margin-top: 30px;
}
.background {
    /*margin-bottom: -1.5%;*/
}
.background .title {
    margin-bottom: 60px;
}
.background .title .desc {
    max-width: 1060px;
    margin: 0 auto;
}
.background .title .desc .txt {
    font-size: 18px;
    font-weight: 400 !important;
}
.background .title .desc .txt:not(:last-child) {
    margin-bottom: 25px;
}
.background__content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 53px;
}
.ourteam {
    margin-bottom: 1.5%;
}
.ourteam__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
.ourteam__content .item {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}
.ourteam__content .item::before {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.8) 0%, rgba(250, 204, 21, 0) 100%);
    width: 0;
    height: 0;
    border-radius: 50%;
    filter: blur(50px);
    bottom: -33%;
    left: -36%;
    transition: 0.3s all ease-in-out;
}
.ourteam__content .item .img {
    margin-bottom: 0;
}
.ourteam__content .item__mail {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: 38px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsla(0, 0%, 100%, 0.1);
    border-radius: 50px;
}
.ourteam__content .item__mail img {
    filter: brightness(0) invert(1);
}
.ourteam__content .item .info {
    position: absolute;
    bottom: 33px;
    left: 40px;
}
.ourteam__content .item .info .name {
    font-size: 24px;
    margin-bottom: 7px;
}
.ourteam__content .item .info .position {
    font-size: 14px;
}
.mainvisual.seminar__page {
    height: auto !important;
}
.seminar__page .mainvisual::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/seminar_main_bg.png") center/cover no-repeat;
    display: block !important;
    width: 1920px;
    height: 842px;
    top: 21.5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}
.seminar__page .mainvisual__desc {
    margin-bottom: 82px;
}
.seminar__page .mainvisual__custombg2 {
    margin-bottom: 73px;
}
.list_flag ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 57px;
}
.seminar__content {
    margin: 0 5px;
}
.seminar__content .title {
    margin-bottom: 56px;
}
.seminar__content .item:not(:last-child) {
    margin-bottom: 82px;
}
.seminar__list {
    margin-bottom: 27px;
}
.seminar__list ul {
    /*display: grid;*/
    /*gap: 10px;*/
}
.seminar__list ul img {
    border-radius: 5px;
}
.seminar-swiper-wrap {
    position: relative;
    padding: 0 60px 36px;
}
.seminar-swiper-wrap .swiper-button-prev, .seminar-swiper-wrap .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}
.swiper-button-next, .swiper-button-prev {
    color: #f4b400;
}
/* pagination xuống thấp hơn slide 1 chút */
.seminar-swiper-wrap .swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}
.js-seminar-swiper {
    overflow: hidden;
}
.seminar__list ul li {
    height: 150px;
}
.seminar__list ul li img {
    width: 100%;
    height: 100%;
}
.seminar__list .certificates__video img {
    border: 1px solid #f4b400;
}
.blog__page.mainvisual::before {
    display: none;
}
.blog__page.mainvisual .mainvisual__img::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/mainvs_img_blog_dc.png") center/cover no-repeat;
    width: 1496px;
    height: 1503px;
    top: -80%;
    right: calc(50% - 960px);
    pointer-events: none;
    z-index: 1;
}
.blog {
    margin-bottom: 2.8%;
    position: relative;
    z-index: 1;
}
.blog::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/blog_dc.png") center no-repeat;
    background-size: cover;
    width: 1021px;
    height: 995px;
    z-index: -1;
    left: -23%;
    top: -10%;
    pointer-events: none;
}
.blog__category {
    display: flex;
    flex-wrap: wrap;
    gap: 31px;
    justify-content: center;
    margin-bottom: 50px;
}
.blog__category a {
    font-size: 18px;
    font-weight: 500;
    color: var(--main-cl);
    border: 1px solid var(--main-cl);
    border-radius: 40px;
    padding: 10px 24px;
    cursor: pointer;
}
.blog__category a.active {
    background-color: var(--main-cl);
    color: #0c0c0c;
}
.blog__content {
    /*display: grid;*/
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 78px 23px;
    margin: 0 5px 67px;
}
.blog__content.active {
    display: grid;
}
.blog__content .item .img {
    margin-bottom: 34px;
    text-align: center;
}
.blog__content .item .img img {
    border-radius: 10px;
}
.blog__content .item h4 {
    font-size: 25px;
    line-height: 1.28em;
    font-weight: bold;
    letter-spacing: 0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 14px;
}
.blog__content .item .desc {
    margin-bottom: 20px;
}
.blog__content .item .desc p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog__pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid hsla(0, 0%, 100%, 0.24);
    padding-top: 15px;
    font-size: 10px;
}
.blog__pagination .txt {
    opacity: 0.6;
    margin-bottom: 0;
}
.capital_profit__page.mainvisual {
    padding-top: 9.3%;
    height: auto;
    flex-direction: column-reverse;
}
.capital_profit__page.mainvisual::before {
    display: none;
}
.capital_profit__page.mainvisual .mainvisual__content {
    width: 100%;
    max-width: 788px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.capital_profit__page.mainvisual .mainvisual__content::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/mainvs_img_capital_profit_dc.png") center/cover no-repeat;
    width: 1920px;
    height: 1048px;
    top: 130%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}
.capital_profit__page.mainvisual .mainvisual__img {
    position: relative;
    margin: -13.6% 38px -29.2% 0;
    right: unset;
    z-index: 2;
    pointer-events: none;
}
.capital_profit__page.mainvisual .mainvisual__desc {
    margin-bottom: 33px;
}
.profit {
    margin-bottom: 109px;
}
.profit .container {
    padding-bottom: 116px;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
.profit__frame {
    max-width: 1192px;
    margin: 0 auto;
}
.profit .title {
    margin-bottom: 45px;
}
.profit .boxs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
    margin-bottom: 43px;
}
.profit .boxs .item {
    font-size: max(1.5vw, 16px);
    position: relative;
    z-index: 1;
    max-width: 20.5555em;
    text-align: center;
    padding: 40px 40px 50px;
}
.profit .boxs .item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.5) 100%);
    opacity: 0.05;
    border-radius: 20px;
    z-index: -1;
}
.profit .boxs .txt1 {
    font-size: 1em;
    font-weight: 800;
    background: linear-gradient(to right, #f67b00 0%, #facc15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.profit .boxs .percent {
    font-size: 5.222em;
    line-height: 1.223;
    font-weight: bold;
    margin-bottom: -0.1914em;
}
.profit .boxs .txt2 {
    font-size: 1em;
}
.payment {
    margin-bottom: -20.6%;
}
.payment__frame {
    display: flex;
}
.payment__content {
    width: 50%;
    max-width: 713px;
    flex-shrink: 0;
}
.payment__content .title {
    margin-bottom: 52px;
}
.payment__content .note ul {
    margin-bottom: 55px;
}
.payment__img {
    display: flex;
    align-self: center;
    margin: -13.8% 0 0 -25%;
    width: 93%;
    max-width: 1308px;
    position: relative;
    z-index: 1;
    pointer-events: none;
}
.payment__img::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/payment_img_dc.png") center/cover no-repeat;
    width: 79.205%;
    height: 82.378%;
    top: 10%;
    right: -25%;
    z-index: 4;
    pointer-events: none;
}
.note > p {
    font-size: 20px;
    margin-bottom: 18px;
}
.note ul li {
    padding-left: 35px;
    position: relative;
    z-index: 1;
    font-size: 18px;
}
[dir="rtl"] .note ul li {
    padding-right: 35px;
    padding-left: unset;
}
[dir="rtl"] .note ul li::before {
    left: unset;
    right: 0;
}
.note ul li:not(:last-child) {
    margin-bottom: 15px;
}
.note ul li::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_check_bg.png") center/cover no-repeat;
    width: 20px;
    height: 20px;
    top: 2px;
    left: 0;
    z-index: -1;
}
.link_nomal {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.aml__page .aml__dc img {
    position: absolute;
    top: 0;
    z-index: -1;
}
.aml__page .aml__dc img:nth-child(1) {
    left: -96px;
    width: max(30%, 250px);
    max-width: 562px;
}
.aml__page .aml__dc img:nth-child(2) {
    right: -7px;
    width: max(25%, 150px);
    max-width: 472px;
}
.aml__page .mainvisual {
    margin-bottom: 34px;
}
.aml__page .mainvisual__content {
    max-width: 1200px;
    margin: 0 auto;
}
.frame__glassed {
    max-width: 1162px;
    margin: 0 auto;
    padding: 76px 94px;
    position: relative;
    z-index: 1;
}
.frame__glassed::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 46%,
        rgba(255, 255, 255, 0.4) 100%
    );
    opacity: 0.2;
    z-index: -1;
    border-radius: 20px;
}
.frame__glassed::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 52%, #fff 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;
    border-radius: 20px;
    opacity: 0.2;
}
.policy__content {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.policy__content::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/aml_content_dc1.png") center/cover no-repeat;
    width: 1055px;
    height: 1082px;
    top: -190px;
    left: -470px;
    z-index: -1;
    pointer-events: none;
}
.policy__content .item:not(:last-child) {
    margin-bottom: 44px;
}
.policy__content .item h4 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.35;
    margin-bottom: 13px;
}
.policy__content .item .desc p {
    line-height: 1.5;
}
.policy__content .item .desc p:not(:last-child) {
    margin-bottom: 27px;
}
.policy__content .item .desc .list {
    margin-top: -27px;
    margin-bottom: 0;
}
.policy__content .item .desc .list li {
    font-size: 18px;
    line-height: 1.5;
    padding-left: 27px;
    position: relative;
    z-index: 1;
    margin-bottom: 0 !important;
}

[dir="rtl"] .policy__content .item .desc .list li {
    padding-right: 27px;   
    padding-left: unset;
}

[dir="rtl"] .policy__content .item .desc .list li::before {
    right: 10px;
    left: unset;
}

.policy__content .item .desc .list li::before {
    content: "• ";
    position: absolute;
    font-size: 18px;
    top: 0;
    left: 10px;
    z-index: -1;
    background: unset;
}
.policy__note {
    border-top: 1px solid hsla(0, 0%, 100%, 0.16);
    font-size: 16px;
    padding-top: 15px;
    line-height: 1.69;
    color: hsla(0, 0%, 100%, 0.92);
}
.handbook__page .mainvisual__custombg2 {
    padding: 5% 0 0;
    flex-direction: row;
    margin-bottom: 0;
}
.handbook__page .mainvisual__content {
    width: 51%;
    max-width: 712px;
    margin-left: auto;
}
.handbook__page .mainvisual__content .contact__form {
    width: 100%;
}
.handbook__page .mainvisual__content .contact__form .form {
    margin-bottom: 50px;
}
.handbook__page .mainvisual__img {
    right: unset;
    width: 48%;
    max-width: 905px;
    position: absolute !important;
}
.support__page .mainvisual__custombg2::before {
    content: "";
    position: absolute;
    display: block !important;
    background: url("/wp-content/themes/flatsome/uk-template/images/support_main_dc.png") center/cover no-repeat;
    width: 1250px;
    height: 673px;
    top: 100px;
    right: 48px;
    z-index: -1;
}
.supportpage .title {
    margin-bottom: 21px;
}
.supportpage .title h3 {
    margin-bottom: 0;
}
.supportpage__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
}
.supportpage .group {
    font-size: 14px;
}
.supportpage .group:not(:last-child) {
    margin-bottom: 32px;
}
.supportpage .group .txt {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 10px;
}
.supportpage .group .txt2 {
    font-size: 1.25em;
    font-weight: bold;
}
.supportpage .complaint p {
    font-size: 18px;
}
.supportpage .complaint p:not(:last-child) {
    margin-bottom: 30px;
}
.sendmessage__content {
    padding: 76px 121px 64px;
    max-width: 926px;
    margin: 0 auto;
    background: linear-gradient(146.53deg, rgba(255, 255, 255, 0.09) 2.21%, rgba(255, 255, 255, 0.02) 74.69%);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    backdrop-filter: blur(17px);
    border-radius: 20px;
}
.sendmessage__content .contact__form {
    width: 100%;
    max-width: 100%;
}
.sendmessage__content .title {
    margin-bottom: 40px;
}
.sendmessage__content .title h3 {
    font-size: 50px;
    margin-bottom: 15px;
}
.sendmessage__content .title .txt {
    font-weight: 400;
}
.certification__page.mainvisual {
    height: auto;
    flex-direction: column-reverse;
    padding-top: 14.1%;
}
.certification__page.mainvisual::before {
    /*display: none;*/
}
.certification__page.mainvisual .mainvisual__content {
    max-width: 495px;
}
.certification__page.mainvisual .mainvisual__img {
    position: static;
    width: 98%;
    max-width: 1861px;
    margin: -23.2% auto 0;
}
.certification {
    position: relative;
    z-index: 2;
}
.certification__content {
    margin: 0 5px;
}
.certification__content .item {
    display: flex;
    gap: 118px;
    align-items: center;
}
.certification__content .item:nth-child(even) {
    flex-direction: row-reverse;
}
.certification__content .item:not(:last-child) {
    margin-bottom: 242px;
}
.certification__content .item .cnt {
    max-width: 688px;
}
.certification__content .item h3 {
    font-size: 40px;
    color: var(--main-cl);
    font-weight: bold;
    margin-bottom: 22px;
}
.certification__content .item .img {
    max-width: 593px;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 1;
}
.certification__content .item .img::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/certification_img_dc.png") center/cover no-repeat;
    width: 976px;
    height: 746px;
    top: -69%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: -1;
}
.certification__content .item .img p {
    cursor: pointer;
    margin-bottom: 0;
}
.certification__content .item .img img {
    border-radius: 20px;
}
.certification__content .item .link_normal {
    color: var(--main-cl);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.account {
    position: relative;
    z-index: 1;
    margin: 3.5% 0 30px;
}
.account::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/account_dc2.png") center/cover no-repeat;
    width: 100%;
    height: 232px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}
.account .title {
    margin-bottom: 55px;
}
.account .title h3 {
    margin-bottom: 40px;
}
.account__frame {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.account__img {
    width: 79%;
    max-width: 1113px;
    position: relative;
    top: -43px;
}
.account__content {
    text-align: center;
}
.account .btn {
    justify-content: center;
}
.account__brand ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 25px;
}
.account__brand ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.platform__page.mainvisual {
    padding-top: 9.3%;
    height: auto;
    flex-direction: column-reverse;
}
.platform__page.mainvisual::before {
    display: none;
}
.platform__page.mainvisual .mainvisual__content {
    max-width: 788px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.platform__page.mainvisual .mainvisual__content::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/mainvs_img_capital_profit_dc.png") center/cover no-repeat;
    width: 1920px;
    height: 1048px;
    top: 130%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}
.platform__page.mainvisual .mainvisual__img {
    position: relative;
    right: unset;
    z-index: 2;
    pointer-events: none;
    margin: -4% 0 -1.6%;
}
.member {
    position: relative;
    z-index: 1;
    margin-bottom: 156px;
}
.member::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/member_bg.png") center/cover no-repeat;
    width: 100%;
    height: 801px;
    top: 215px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.member__btn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 689px;
    margin: 0 auto 176px;
    gap: 40px;
}
.member__btn a {
    display: block;
    border-radius: 100px;
}
.member__content .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
    font-size: 18px;
}
.member__content .item:not(:last-child) {
    margin-bottom: 192px;
}
.member__content .item h4 {
    font-size: 1.944em;
    color: var(--main-cl);
    margin-bottom: 20px;
}
.member__content .item .desc {
    margin-bottom: 19px;
}
.member__content .item .desc p {
    font-size: 1em;
}
.member__content .item .img {
    display: flex;
    width: 50%;
    max-width: 713px;
}
.member__content .item .cnt {
    width: 50%;
    max-width: 703px;
    flex-shrink: 0;
}
.member__content .item:nth-child(even) {
    flex-direction: row-reverse;
}
.member__content .item:nth-child(even) .img {
    margin-right: -10%;
    width: 52%;
    max-width: 721px;
}
.member__content .item:nth-child(odd) .img {
    margin-left: -4%;
}
.member__content .item:nth-child(3) .img {
    width: 46%;
    max-width: 639px;
}
.download .title {
    margin-bottom: 45px;
}
.download__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 43px 79px;
    max-width: 1154px;
    margin: 0 auto;
}
.payout__page.mainvisual {
    padding-bottom: 60px;
    height: 855px;
}
.payout__page.mainvisual .mainvisual__img {
    top: -56px;
    right: calc(50% - 1250px);
}
[dir="rtl"] .payout__page.mainvisual .mainvisual__img {
    left: calc(50% - 880px);
    right: unset;
    transform: unset;
}
.payout__page.mainvisual .mainvisual__desc {
    margin-bottom: 32px;
}
.meet {
    margin-bottom: 117px;
}
.meet .tab a {
    border: 1px solid var(--main-cl);
    background-color: transparent;
    color: var(--main-cl);
    opacity: 0.6;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.meet .tab a:hover {
    opacity: 1;
}
.meet .tab.active a {
    background-color: var(--main-cl);
    color: var(--b-cl);
    opacity: 1;
}
.meet .title {
    margin-bottom: 66px;
}
.meet .title h3 {
    margin-bottom: 19px;
}
.meet .title .txt {
    margin-bottom: 53px;
}
.meet__content--tab {
    display: none;
}
.meet__content--tab.active {
    display: block;
}
.meet__content--tab .btn {
    margin: 0 auto;
    width: max-content;
}
.meet__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px 55px;
    margin-bottom: 72px;
}
.meet__content .lightbox-item::before {
    display: none;
}

.meet__content .lightbox-item::after {
    display: none;
}
.meet__content .lightbox-item:hover .meet__video::after {
    content: "Zoom out";
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 50%;
    z-index: 2;
    font-size: 18px;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.05;
}
.meet__title {
    display: flex;
}
.meet__title img {
    width: 30px;
    height: 30px;
}
.meet__content h4 {
    padding-right: 10px;
    font-size: 17px;
    position: relative;
    z-index: 1;
}
.meet__video {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.table__frame.payouts__performance {
    margin-bottom: 77px;
}
.academy__page .mainvisual__img {
    top: 130px;
    right: calc(50% - 898px);
}
.academy {
    margin: -5.85% 0 132px;
    position: relative;
    z-index: 1;
}
.academy::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/academy_dc_bottom.png") center/cover no-repeat;
    width: 1920px;
    height: 611px;
    left: 50%;
    bottom: -20%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}
.academy .container {
    position: relative;
    z-index: 1;
}
.academy .container::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/academy_dc1.png") center no-repeat;
    background-size: cover;
    width: 1627px;
    height: 1666px;
    left: calc(50% - 1520px);
    top: -40%;
    z-index: -1;
    pointer-events: none;
}
.academy .container::after {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/academy_dc1.png") center no-repeat;
    background-size: cover;
    width: 1627px;
    height: 1666px;
    right: calc(50% - 1520px);
    bottom: 0%;
    z-index: 1;
    pointer-events: none;
}
.academy__frame {
    padding: 72px 215px 0;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 30px 30px 0 0;
}
.academy__frame::before {
    display: none;
}
.academy__content {
    width: 100%;
    max-width: 970px;
    margin-bottom: 60px;
}
.academy .title .txt {
    font-size: 18px;
    font-weight: 400;
}
.academy__img {
    display: flex;
    justify-content: center;
    gap: 47px;
    margin-bottom: 40px;
}
.academy__img p {
    background: linear-gradient(180deg, rgba(250, 204, 21, 0.2) 0%, rgba(250, 204, 21, 0) 100%);
    padding: 14px 15px;
    border-radius: 20px;
    margin-bottom: 0;
}
.academy__img img {
    border-radius: 20px;
}
.academy__txt {
    margin-bottom: 40px;
}
.academy__txt p {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
}
.spreads {
    margin-bottom: 130px;
}
.courses {
    padding-top: 89px;
    position: relative;
    z-index: 1;
}
.courses__dc {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}
.courses__dc img {
    position: absolute;
}
.courses__dc .dc1 {
    left: -30%;
    top: -90%;
}
.courses__dc .dc2 {
    right: -30%;
    top: -90%;
}
.courses::before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 100%;
    border-radius: 250px 250px 0 0;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.courses__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 53px;
}
.courses__content .item {
    width: 31%;
    max-width: 430px;
    position: relative;
    z-index: 1;
}
.courses__content .item:hover .btn {
    opacity: 1;
}
.courses__content .item .img {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.courses__content .item .img::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/ic_play_video.png") center no-repeat;
    width: 76px;
    height: 76px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.courses__content .item .img img {
    border-radius: 20px;
}
.courses__content .item h4 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 12px;
}
.courses__content .item .desc {
    margin-bottom: 30px;
}
.courses__content .item .btn {
    opacity: 0;
}
.localpay__page.mainvisual {
    height: auto;
    flex-direction: column-reverse;
    padding-top: 9.3%;
}
.localpay__page.mainvisual::before {
    display: none;
}
.localpay__page.mainvisual .mainvisual__img {
    position: static;
    margin: -22% 0 -36.8%;
}
.localpay__page.mainvisual .mainvisual__content {
    width: 100%;
}
.payments {
    position: relative;
    z-index: 1;
    margin-bottom: 140px;
}
.payments__logo {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 20px;
    max-width: 1150px;
    margin: 0 auto;
}
.local {
    position: relative;
    z-index: 2;
}
.local__flag {
    margin-bottom: 90px;
}
.local__flag ul {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 10px;
    font-size: 10px;
}
.local__flag ul li {
    background-color: hsla(0, 0%, 100%, 0.1);
    border-radius: 50px;
    padding: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}
.local__flag ul li.active {
    background-color: var(--main-cl);
    color: var(--b-cl);
}
.local__content {
    display: flex;
    justify-content: space-between;
    max-width: 1382px;
    margin: 0 auto;
}
.local__name {
    text-align: center;
    font-size: max(1.56vw, 20px);
}
.local__name .txt {
    font-size: 1em;
    line-height: 1;
}
.local__name .name {
    font-size: 2.5em;
    color: var(--main-cl);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
}
.local__main {
    display: flex;
    flex-direction: column;
    margin-bottom: -20%;
}
.local__main--img {
    width: 331%;
    max-width: 1562px;
    align-self: flex-end;
    margin: -67% -70% 0 0;
    pointer-events: none;
}
.local__method .item {
    background-color: hsla(0, 0%, 100%, 0.1);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 20px;
}
.local__method .item:not(:last-child) {
    margin-bottom: 47px;
}
.local__method .item .list {
    font-size: 16px;
}
.local__method .item .list li {
    padding-left: 28px;
}
.local__method .item .list li:not(:last-child) {
    margin-bottom: 10px;
}
.local__method .item .list li::before {
    width: 18px;
    height: 18px;
    top: 3px;
}
.local__method .item .desc {
    padding: 20px;
}
.local__method .item .desc > *:last-child {
    margin-bottom: 0;
}
.local__method .item__method {
    background-color: var(--main-cl);
    width: 184px;
    height: 52px;
    color: #000;
    font-size: 20px;
    font-weight: 800;
    border-radius: 45px 60px 60px 0;
    margin: -20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.local__method .item ol {
    counter-reset: section;
}
.local__method .item ol li::before {
    counter-increment: section;
    content: counter(section) ". ";
    font-size: 16px;
    margin-right: 5px;
}
.local__method .item ol li:not(:last-child) {
    margin-bottom: 8px;
}
.qr__icon {
    position: relative;
    z-index: 1;
    margin-left: 5px;
}
.qr__icon:hover .qr__hover {
    opacity: 1;
}
.qr__hover {
    position: absolute;
    width: 140px;
    min-width: 140px;
    height: 140px;
    inset: 0 auto 0 calc(100% + 10px);
    margin: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.item_logo {
    flex-shrink: 0;
}
.scaleUpPlan__page.mainvisual {
    padding-bottom: 0;
}
.scaleUpPlan__page.mainvisual::before {
    display: none;
}
.scaleUpPlan__page.mainvisual .mainvisual__img {
    right: calc(50% - 487px);
    top: -37px;
    width: 84%;
    max-width: 1612px;
}
.scale .tabs {
    display: flex;
    gap: 6px;
}
.scale .tabs .item {
    padding: 17px 48px;
    font-size: 20px;
    font-weight: 500;
    height: 58px;
    margin-bottom: 0;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    color: hsla(0, 0%, 100%, 0.2);
}
.scale .tabs .item.active {
    background-color: hsla(0, 0%, 100%, 0.1);
    color: var(--main-cl);
}
.scale .tabs__content {
    margin-bottom: 60px;
}
.scale .tabs__content th,
.scale .tabs__content td {
    border: 0;
    border-bottom: 1px solid rgba(235, 235, 235, 0.1);
    padding: 17px 0;
    font-size: 18px;
}
.scale .tabs__content tr:last-child td {
    border-bottom: 0;
}
.scale .tabs__content .item {
    padding: 10px 54px 0;
    background-color: hsla(0, 0%, 100%, 0.1);
    border-radius: 0 10px 10px 10px;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-top: 0;
    position: relative;
    z-index: 1;
    display: none;
}
.scale .tabs__content .item.active {
    display: block;
}
.scale .tabs__content .item .dc1 {
    position: absolute;
    inset: auto auto 0 0;
    margin-bottom: 0;
    z-index: -1;
    pointer-events: none;
}
.scale .tabs__content .item .dc2 {
    position: absolute;
    inset: 0 0 auto auto;
    margin-bottom: 0;
    z-index: -1;
    pointer-events: none;
}
.scale .tabs__content .item th {
    color: hsla(0, 0%, 100%, 0.3);
    font-weight: 400;
    width: 25%;
}
.scale .tabs__content .item thead th:first-child,
.scale .tabs__content .item tbody td:first-child {
    text-align: left;
}

.scale .tabs__content .item tbody td:not(:first-child) {
    text-align: center;
}
.overview__page.mainvisual {
    padding-top: 10.1%;
    height: auto;
    flex-direction: column-reverse;
}
.overview__page.mainvisual .mainvisual__content {
    max-width: 788px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.overview__page.mainvisual .mainvisual__img {
    position: relative;
    right: unset;
    z-index: 2;
    pointer-events: none;
    margin: -1.1% 0 -1.6%;
}
.symbols__btn {
    max-width: 1380px;
    margin: 0 auto 70px;
}
.symbols__btn ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.symbols__btn ul li {
    position: relative;
    z-index: 1;
    max-width: 263px;
}
.symbols__btn ul li.active::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/symbols_active.png") center/cover no-repeat;
    width: 301px;
    height: 299px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}
.symbols__btn ul li.active .txt {
    color: var(--main-cl);
}
.symbols__btn ul li a {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.symbols__btn .txt {
    display: block;
    font-size: 17px;
    font-weight: 500;
    margin-top: 20px;
}
.symbols__content h3 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 35px;
}
#footer {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}
#footer::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/footer_dc1.png") center no-repeat;
    background-size: cover;
    width: 1256px;
    height: 1528px;
    bottom: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}
#footer::after {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/footer_dc2.png") center no-repeat;
    background-size: cover;
    width: 504px;
    height: 728px;
    bottom: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
}
#footer p {
    line-height: 25px;
}
.footer__frame {
    --size-radius: 45px;
    background: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) -150%, rgba(255, 255, 255, 0) 100%);
    border-top-left-radius: var(--size-radius);
    border-top-right-radius: var(--size-radius);
    padding: 50px 0;
    position: relative;
    z-index: 1;
}
.footer__frame::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/footer_dc.png") center no-repeat;
    background-size: cover;
    width: 1919px;
    height: 379px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.footer__frame::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 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;
    border-top-left-radius: var(--size-radius);
    border-top-right-radius: var(--size-radius);
    top: 0;
    left: 0;
}
.footer__content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-direction: column-reverse;
}
.footer__social {
    text-align: center;
}
.footer__social--logo {
    margin-bottom: 61px;
}
.footer__social--follow {
    margin-bottom: 45px;
}
.footer__social .txt {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer__social ul {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.footer__info--box:not(:last-child) {
    margin-bottom: 20px;
}
.footer__info--box .sub__text {
    font-size: 14px;
    line-height: 17px !important;
    color: hsla(0, 0%, 100%, 0.5);
    margin-bottom: 5px;
}
.footer__info--box .name {
    font-size: 20px;
    color: var(--main-cl);
    font-weight: bold;
}
.footer__info--box .txt {
    font-weight: 500;
    font-size: 18px;
}
.footer__menu li:not(:last-child) {
    margin-bottom: 20px;
}
.footer__menu a {
    font-size: 18px;
    font-weight: 600;
    display: block;
    line-height: 25px;
}
.size16 {
    font-size: 16px !important;
}
address {
    color: #fff;
    font-size: 14px;
    color: hsla(0, 0%, 100%, 0.5);
    line-height: 1.5em;
}
.page-template-uk-template {
    font-size: 10px !important;
}

.fx-widget.text-center {
    text-align: center !important;
    margin-top: 30px;
}

.pll-parent-menu-item .sub-menu {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px !important;
}
.pll-parent-menu-item .sub-menu li a {
    padding: 8px 10px;
    display: flex;
}
.pll-parent-menu-item .sub-menu li a span {
    white-space: nowrap;
}

.mobile-nav.nav > li > a i.icon-menu,
.nav > li > a > i.icon-search {
    color: #fff;
}

.popupWmt-close {
    font-size: 22px;
    min-height: unset;
    height: 34px;
    width: 34px;
    line-height: 1em;
    padding: 6px 5px 5px;
}
.footer-warning-close {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1px;
    line-height: 1em;
}
@-moz-document url-prefix() {
}

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #fff;
    position: absolute;
    display: block !important;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.loader:before,
.loader:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}
.loader:after {
    color: var(--main-cl);
    transform: rotateY(70deg);
    animation-delay: 0.4s;
}

#youtube-playlist-loadmore .loader{
    display:none !important;
}

.expanded::before {
    display: none !important;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {
    0%,
    100% {
        box-shadow: 0.2em 0px 0 0px currentcolor;
    }
    12% {
        box-shadow: 0.2em 0.2em 0 0 currentcolor;
    }
    25% {
        box-shadow: 0 0.2em 0 0px currentcolor;
    }
    37% {
        box-shadow: -0.2em 0.2em 0 0 currentcolor;
    }
    50% {
        box-shadow: -0.2em 0 0 0 currentcolor;
    }
    62% {
        box-shadow: -0.2em -0.2em 0 0 currentcolor;
    }
    75% {
        box-shadow: 0px -0.2em 0 0 currentcolor;
    }
    87% {
        box-shadow: 0.2em -0.2em 0 0 currentcolor;
    }
}

.custom_inputs select option {
    color: #000 !important;
    background: #fff !important;
}
.wmt-tx {
    color: var(--main-cl);
    text-decoration: none;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 0.375rem;
    transition: 0.15s;
}

.wmt-tx:hover {
    color: #000000;
    background-color: var(--main-cl);
    opacity: 1;
}

.transactionH {
    color: #121214;
    background: #facc15;
    border-radius: 0.25rem;
    padding: 6px 12px;
    width: 100%;
    font-size: 12px;
    line-height: 18px;
}

.wmt-table td img {
    width: 50px;
    cursor: pointer;
    border-radius: 4px;
}

.wmt-modal[hidden] {
    display: none;
}

.wmt-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.wmt-modal__body {
    max-width: 90vw;
    max-height: 85vh;
}

.wmt-modal__img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
}

.wmt-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 6px 10px;
    font-size: 18px;
    line-height: 1;
}

.payouts__daily .table__frame {
    background-color: rgba(#fff, 0.1);
    border: 1px solid rgba(#fff, 0.2);
    border-radius: 20px;
    padding: 50px;
}

.payouts__daily .table__scroll {
    overflow-x: auto;
}

.payouts__daily table {
    min-width: 1000px;
}

.payouts__daily h4 {
    font-size: 40px;
    line-height: 1.225;
    font-weight: 500;
    width: auto;
}

.payouts__daily .inputs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

.payouts__daily .head {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 26px;
    gap: 20px;
}
.payouts__daily .limit {
    width: 118px;
    max-width: 100%;
}
.payouts__daily select {
    width: 100%;
}
.payouts__daily .search {
    max-width: 451px;
}

.payouts__daily .table__content th {
    text-transform: unset;
    letter-spacing: 0;
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 18px;
}
.payouts__daily .table__content td {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.pagination li {
    list-style: none;
}

.mainvs__football {
    padding-top: var(--heightHeader);
    /* height: 1070px; */
    height: 1106px;
}

.mainvs__football .mainvisual__content {
    padding-top: 10%;
}

.mainvs__football .mainvisual__content h2 {
    white-space: nowrap;
}

.mainvs__football .mainvisual__img {
    top: unset;
    bottom: 0;
    z-index: 0;
    right: 90px;
    width: 124%;
    max-width: 1013px;
    position: static;
    margin-right: -15%;
    margin-left: -5%;
}

.mainvs__football .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row-reverse;
}

.header-main .header-inner {
    width: 100%;
    max-width: 1880px;
}

.hd__football .logo a img {
    display: none;
}

.hd__football .logo a {
    display: block;
    position: relative;
    z-index: 1;
}
.hd__football .logo a::before {
    content: "";
    background: url("/wp-content/themes/flatsome/uk-template/images/logo_2.png");
    width: 158px;
    height: 48px;
    display: block;
}

.mainvs__football::before {
    content: "";
    position: absolute;
    background: url("/wp-content/themes/flatsome/uk-template/images/mainvs_img_footballn.jpg") center no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
}

.mainvs__football.mainvisual::after {
    background: url("/wp-content/themes/flatsome/uk-template/images/mainvs_dc_football.png") center no-repeat;
    background-size: cover;
    width: 97%;
    max-width: 1840px;
    height: 76.356%;
    max-height: 817px;
    top: 0;
    bottom: 0;
    right: unset;
    left: -4%;
    margin: auto;
    transform: scaleX(-1);
}

.mainvs__football h2 span {
    background: linear-gradient(170deg, #ffffc5 35%, #ffe064 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.mainvs__football .desc p {
    line-height: 1.5em;
}

.btn__football {
    margin-top: 30px;
}

.btn__football a span {
    padding-right: 70px;
}

.btn__football a span::before {
    background: url("/wp-content/themes/flatsome/uk-template/images/mainvs_btn_football.png") center no-repeat;
    width: 60px;
    height: 19px;
    background-size: cover;
    filter: unset;
    transform: unset !important;
}

.main__football {
    margin-top: 0 !important;
}

.performance {
    position: relative;
    z-index: 1;
}

.performance::before {
    content: '';
    position: absolute;
    background: url('/wp-content/themes/flatsome/uk-template/images/performance_dc_bg.png') center no-repeat;
    background-size: cover;
    width: 98%;
    max-width: 1849px;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
    margin: auto;
}

.performance::after {
    content: '';
    position: absolute;
    background: url('/wp-content/themes/flatsome/uk-template/images/performance_dc2_bg.png') right center no-repeat;
    background-size: cover;
    width: 100%;
    height: 955px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
    pointer-events: none;
}

.performance__frame {
    position: relative;
    z-index: 1;
    padding: 170px 0;
}

.performance__frame::before {
    content: '';
    position: absolute;
    background: url('/wp-content/themes/flatsome/uk-template/images/performance_dc1.png') center no-repeat;
    background-size: cover;
    width: 932px;
    height: 947px;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
}

.performance .item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.performance .item h3 {
    color: #facc15;
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
}

.performance .item .desc p {
    font-size: 16px;
}

.performance__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    gap: 100px;
}

.performance .item__left .item {
    flex-direction: row-reverse;
    text-align: right;
}

.performance .item__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 120px;
}

.performance__cnt {
    display: flex;   
}

.performance__cnt .item {
    flex-shrink: 0;
    align-self: flex-end;
    margin-top: 40px;
}

.performance__cnt .info h2 {
    font-size: 40px;
    font-weight: 600;
    color: #facc15;
}

.vancouver {
    position: relative;
    z-index: 1;
    padding: 160px 0;
}

.vancouver::before {
    content: '';
    position: absolute;
    background: url('/wp-content/themes/flatsome/uk-template/images/vancouver_dc_bg.png') center no-repeat;
    background-size: cover;
    width: 989px;
    height: 763px;
    top: 50%;
    left: 47%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.vancouver::after {
    content: '';
    position: absolute;
    background: url('/wp-content/themes/flatsome/uk-template/images/vancouver_dc.png') right center no-repeat;
    background-size: cover;
    width: 100%;
    height: 956px;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: -1;
    pointer-events: none;
}

.vancouver .title h2 {
    color: #facc15;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vancouver .title .vancouver__sub {
    font-size: 27px;
    font-weight: 500;
}

.vancouver .title p {
    font-size: 20px;
    font-weight: 500;
}

.vancouver__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 40px;
}

.vancouver__item {
    background-color: rgba(255, 246, 212, 0.14);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.vancouver__item .icon {
    display: flex;
    height: 78px;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 25px;
}

.vancouver__item h3 {
    font-size: 33px;
    font-weight: 600;
    margin-top: auto;
}

.vancouver__item h3 span {
    font-size: 73%;
}

.vancouver__item .desc p {
    font-size: 14px;
}

.built {
    position: relative;
    z-index: 1;
    padding: 90px 0;
}

.built::before {
    content: '';
    position: absolute;
    background: url('/wp-content/themes/flatsome/uk-template/images/built_dc_bg.png') center no-repeat;
    background-size: cover;
    width: 1621px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

.built__content {
    display: flex;
}

.built__content .item {
    width: 100%;
    max-width: 335px;
    text-align: center;
    background: url('/wp-content/themes/flatsome/uk-template/images/bg_noise.png') center no-repeat;
    background-size: 100% 100%;
    padding: 40px 25px;
    position: relative;
    z-index: 1;
}
.built__content .item:nth-child(even) {
    background: url('/wp-content/themes/flatsome/uk-template/images/bg_noise_wrap.png') center no-repeat;
    background-size: 100% 100%;;
}

.built__content .item .built__sub {
    font-size: 34px;
    font-weight: 700;
}

.built__content .item .built__sub span {
    display: block;
}

.built__content .item .desc p {
    font-size: 13px;
}

.built__item--ttl {
    min-height: 540px;
}

.built__content .item h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 30px;
}

.built .container {
    width: 1700px;
}

.building {
    padding: 50px 0;
}

.building__frame {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.building__frame .title {
    margin-bottom: 0;
}

.building__frame .title h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 0;
}

.building__sub {
    font-size: 29px;
    font-weight: 700;
    color: #facc15;
    margin-bottom: 5px;
}

.building__desc {
    text-align: right;
    align-self: flex-end;
}

.building__desc p span {
    color: #facc15;
}

.building__content .item .icon {
    text-align: right;
}

.building__content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.building__content::before {
    content: '';
    position: absolute;
    background: url('/wp-content/themes/flatsome/uk-template/images/building_cnt_dc.png') center no-repeat;
    background-size: cover;
    width: 1994px;
    height: 903px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;

}

.building__content .item__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
    width: 19%;
    max-width: 264px;
}

.building__content .item__col.item__center {
    margin-top: -60px;
    margin-right: 0;
    z-index: 0;
    width: 28%;
    max-width: 314px;
}

.building__content .item__col.item__center .cnt {
    position: relative;
    z-index: 1;
    max-width: 314px;
}

.building__content .item__col.item__center .cnt::before {
    content: '';
    position: absolute;
    width: 150%;
    aspect-ratio: 1/1;
    background-color: #FBD439;
    left: 40%;
    top: 55%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 100%;
    filter: blur(100px);
    opacity: 0.4;
}

.building__content .item__col .desc {
    margin-top: auto;
}

.building__content .item__col .desc p {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.building__content .item__col .desc p:not(:last-child) {
    margin-bottom: 5px;
}

.building__content .item__col .desc p span {
    color: #facc15;
    font-weight: 600;
}

.building__content .item__col:nth-child(1) .box .desc p span {
    color: #000;
}

.building__content .item__col:nth-child(2) .box {
    background-color: #000000;
    border: 1px solid #ffffff;
}

.building__content .item__col:nth-child(5) .box {
    background: #FBD333;
    background: linear-gradient(0deg,rgba(251, 211, 51, 1) 0%, rgba(255, 251, 235, 1) 100%);
    border: 1px solid #ffffff;
}

.building__content .item__col:nth-child(4) .box .desc img {
    filter: brightness(0) invert(1);
}

.building__content .item__col:nth-child(5) .box .desc img {
    filter: brightness(0) invert(0);
}

.building__content .item__col:nth-child(4) .box {
    border: 1px solid #ffffff;
    background: url('/wp-content/themes/flatsome/uk-template/images/building_bg.png') left top no-repeat #000;
}

.building__content .item__col:nth-child(2) .box .desc p,
.building__content .item__col:nth-child(4) .box .desc p {
    color: #fff;
}

.building__content .item__col .box {
    background-color: #fff;
    width: 100%;
    min-height: 268px;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.building__content .item__col .box .icon {
    text-align: right;
}

.mainvs__football + #content {
    background-color: #000 !important;
}

.trust {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.trust::before {
    content: '';
    position: absolute;
    background: url('/wp-content/themes/flatsome/uk-template/images/trust_dc_bg.png') center no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 1811px;
    height: 75%;
    top: 50px;
    right: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    margin: auto;
}

.trust__frame {
    display: flex;
    align-items: center;
}

.trust__content {
    max-width: 600px;
    width: 43%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.trust__content .btn__football {
    margin-top: 50px;
}

.trust__content h2 {
    color: #facc15;
    font-size: 40px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 50px;
}

.trust__content .cnt .desc p {
    font-size: 20px;
    font-weight: 400;
}

.trust__content .cnt .desc {
    position: relative;
    z-index: 1;
}

.trust__content .cnt .desc:not(:last-child) {
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.trust__content .cnt .desc:not(:last-child)::before {
    content: '';
    position: absolute;
    width: 100%;
    max-width: 312px;
    height: 1px;
    background-color: #facc15;
    bottom: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.trust__content .cnt .desc:nth-child(1) {
    width: 82%;
    max-width: 487px;
}
.trust__content .cnt .desc:nth-child(2) {
    width: 88%;
    max-width: 527px;
}

.trust__img {
    width: 88%;
    flex-shrink: 0;
    max-width: 1228px;
    margin-left: -11%;
    position: relative;
    z-index: 0;
}

.proven {
    position: relative;
    z-index: 1;
    padding: 52px 0;
}

.proven::before {
    content: '';
    position: absolute;
    background: url('/wp-content/themes/flatsome/uk-template/images/proven_dc_bg.png') center no-repeat;
    background-size: cover;
    width: 1794px;
    height: 788px;
    left: 0;
    z-index: -1;
}

.proven::after {
    content: '';
    position: absolute;
    background: url('/wp-content/themes/flatsome/uk-template/images/proven_line.jpg') center no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.proven .container {
    width: 1590px;
}

.proven__frame {
    display: flex;
    flex-direction: column-reverse;
}

.proven__content h2 {
    font-size: 40px;
    font-weight: 600;
    color: #facc15;
}

.proven__list {
    display: flex;
    gap: 80px;
}

.proven__list {
    --padding-item1: 0px;
    --padding-item2: 170px;
    --padding-item3: 180px;
    --padding-item4: 270px;
}

.proven__list .item .info {
    text-align: center;
    padding: 18px;
    border-radius: 19px;
    border: 1px solid #fff;
    position: relative;
    z-index: 1;
}

.proven__list .item .info::before {
    content: '';
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 19px;
    filter: blur(32px);
    opacity: 0.7;
}

.proven__list .item .info h3 {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 28px;
}

.proven__list .item .icon {
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

.proven__list .item .icon::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 60px;
    background: repeating-linear-gradient(to bottom, #facc15 0px, #facc15 10px,transparent 5px, transparent 15px) left / 2px 100% no-repeat;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: -1;
}

.proven__list .item.item_wrap .icon::before {
    top: unset;
    bottom: 0;
}

.proven__list .item.item_wrap .icon {
    padding-bottom: 30px;
}

.proven__list .item.item_wrap {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
}

.proven__list .item:nth-child(1) {
    padding-top: var(--padding-item1);
    margin-right: -100px;
}

.proven__list .item:nth-child(2) {
    padding-top: var(--padding-item2);
}

.proven__list .item:nth-child(3) {
    padding-top: var(--padding-item3);
}

.proven__list .item:nth-child(4) {
    padding-top: var(--padding-item4);
}

.proven__list .item:nth-child(2) .info h3,
.proven__list .item:nth-child(3) .info h3 {
    font-size: 30px;
}

.proven__list .item:nth-child(4) .info h3 {
    font-size: 37px;
}

.proven__list .item .info .desc p {
    font-size: 14px;
}
.ft__football--ttl {
    text-align: center;
    font-size: max(min(calc(107 / 1920 * 100vw), 107px) , 50px);
    font-weight: 700;
    line-height: 1em;
    letter-spacing: -0.05em;
    margin-bottom: 30px;
}

.ft__football--ttl span {
    display: block;
    text-transform: uppercase;
    font-size: 32%;
    line-height: 1.8em;
    letter-spacing: 0;
}

.ft__football .container {
    width: 1700px;
}

.ft__football--btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 468px;
    height: 96px;
    padding: 10px;
    background-color: #facc15;
    border-radius: 47px;
    color: #000;
    font-weight: bold;
    font-size: 56px;
    margin: 30px auto 0;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 1);
}

.ft__football {
    height: 960px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/wp-content/themes/flatsome/uk-template/images/bg_footer_football.png') center no-repeat;
    background-size: 100% 100%;
}


/*Payout chart*/
.payouts__chart {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.payouts__chart .item {
    --padding: 50px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 680px;
    padding: var(--padding) 48px;
    overflow: hidden;
}

.payouts__chart .certificates__video {
    margin-bottom: calc(var(--padding) * -1);
}

.payouts__chart .item h4 {
    font-size: 40px;
    font-weight: 500;
    font-family: var(--f-mont);
    margin-bottom: 30px;
}

.payouts__chart .desc {
    margin-bottom: 38px;
}

.payouts__chart .video {
    margin-bottom: 0;
    text-align: center;
}

.payouts__chart .video .certificates__video::before {
    top: -50%;
}

.payouts__chart--js {
    height: 100%;
    display: none;
    position: relative;
}

.payouts__chart--js.active {
    display: block;
}

.payouts__chart--js canvas {
    width: 100% !important;
    max-width: 325px !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
}
.js-chart-area {
    height: 100%;
    position: relative;
}
.js-chart-area .loader {top: 30%;}
.payouts__chart--js .chart {
    position: relative;
    z-index: 1;
    max-width: 325px;
    margin: 0 auto 60px;
}

.payouts__chart--js .chart__total {
    position: absolute;
    font-size: 26px;
    text-align: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: max-content;
    font-weight: bold;
    z-index: -1;
    width: calc(100% - 110px);
}

.payouts__chart--js .chart__total .txt {
    display: block;
    font-size: 54%;
    opacity: 0.6;
    font-weight: 400;
}

.payouts__chart--tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 50px;
}

.payouts__chart--tabs .tab {
    border: 1px solid #FACC15;
    border-radius: 40px;
    padding: 10px 24px;
    color: #FACC15;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.222em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

.payouts__chart--tabs .tab.active {
    color: #0C0C0C;
    background-color: #FACC15;
}

.payouts__chart--table tr > *:first-child {
    text-align: left;
    width: 30%;
}

.payouts__chart--table th,
.payouts__chart--table td {
    border: 0;
    font-size: 14px;
    text-align: center;
}

.payouts__chart--table th {
    color: #9D9D9D;
    font-weight: 400;
}

.payouts__chart--table td .region {
    font-family: var(--f-inter);
    display: flex;
    align-items: center;
    gap: 8px;
}

.payouts__chart--table td .region span {
    display: block;
    width: 34px;
    height: 24px;
    border-radius: 4px;
}

.payouts__chart--table td .region .clr1 {
    background-color: #F6CC23;
}
.payouts__chart--table td .region .clr2 {
    background-color: #FF935E;
}
.payouts__chart--table td .region .clr3 {
    background-color: #ED5128;
}
.payouts__chart--table td .region .clr4 {
    background-color: #654FC5;
}
.payouts__chart--table td .region .clr5 {
    background-color: #3984FD;
}
.payouts__chart--table td .region .clr6 {
    background-color: #257471;
}
.payouts__chart--table td .region .clr7 {
    background-color: #63B96E;
}


/* Widget */
.fxwidget {
    text-align: center;
    width: max-content;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
    transition: 0.2s ease-in-out;
}
.fxwidget .txt1 {
    font-size: 14px;
    font-weight: 900;
}
.fxwidget .txt1 .txt1_bg {
    background: #15131E;
    background: linear-gradient(90deg,rgba(21, 19, 30, 1) 0%, rgba(44, 45, 49, 1) 100%);
    padding: 5px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; 
}
.fxwidget .star img {
    margin: 0 -3px;
}

.fxwidget .txt_partner {
    line-height: 1em;
    position: relative;
    top: 2px;
}

.fxwidget .txt2 {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--main-cl);
    font-weight: 500;
}


/** Change text **/
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .mainvisual__img {
    left: calc(50% - 960px);
    right: unset;
    transform: scaleX(-1);
}
[dir="rtl"] .mainvisual__list li {
    padding-right: 45px;
    padding-left: unset;
    text-align: right;
}

[dir="rtl"] .mainvisual__list li::before {
    left: unset;
    right: 0;
}
[dir="rtl"] .whyus__img {
    inset: 0 auto -45px calc(50% - 916px);
}

[dir="rtl"] .whyus .title {
    text-align: center !important;
}

[dir="rtl"] .hiw__step .cnt ul li {
    padding-right: 30px;
    padding-left: 0;
}
[dir="rtl"] .hiw__step .cnt > ul > li::before {
    left: unset;
    right: 0;
}
[dir="rtl"] .subscribe__content {
    padding: 66px 75px 66px 0;
}

[dir="rtl"] .subscribe__img {
    transform: scaleX(-1);
    left: -67px;
    right: unset;
}

[dir="rtl"] .benefit__img img {
   transform: scaleX(-1) !important;
}
[dir="rtl"] .benefit__boxs .item .cnt ul li {
    background: url(/wp-content/themes/flatsome/uk-template/images/ic_check.svg) right top 2px / 20px no-repeat;
    padding-right: 32px;
    padding-left: unset;
}

.mainvs__football.event__highlights .mainvisual__img {
    margin-left: 0;
    margin-right: 0;
}
.mainvs__football.event__highlights.mainvisual::after {
    right: -10%;
    top: 15%;
} 
.mainvs__football.event__highlights .container {
    width: 1730px;
    justify-content: space-between;
}

.desc_box span {
    border: 1px solid  #fff;
    border-radius: 10px;
    display: inline-block;
    padding: 18px 20px;
    font-size: 22px;
    font-weight: 600;
}

.mainvs__football.event__highlights .btn a {
    font-size: 24px;
    padding: 14px 44px 12px;
}

.timeline {
    --location-dot-center: -45px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.timeline::after {
    content: '';
    position: absolute;
    background-color: var(--main-cl);
    width: 1px;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: -1;
}

.timeline .item {
    display: flex;
    align-items: center;
    gap: 80px;
}
.timeline .item > * {
    width: 50%;
}
.timeline .item:nth-child(odd) .time {
    text-align: right;
}
.timeline .item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline .item .time {
    position: relative;
    z-index: 1;
}

.timeline .item .time::before {
    content: '';
    position: absolute;
    background-color: var(--main-cl);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    top: 0;
    bottom: 0;
    right: var(--location-dot-center);
    margin: auto;
    z-index: 1;
    pointer-events: none;
}

.timeline .item:nth-child(even) .time::before { 
    left: var(--location-dot-center);
    right: unset;
}

.timeline .item .time .num {
    font-size: 28px;
    color: var(--main-cl);
    font-weight: 700;
    line-height: 1em !important;
    margin-bottom: 5px;
}

.timeline .item .box {
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 15px 20px;
    text-align: justify;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.timeline .item .box p {
    line-height: 1.5em;
}

.eventReceive__content {
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.eventReceive__content .item {
    display: flex;
    align-items: center;
    gap: 50px;
}

.eventReceive__content .item .img {
    flex-shrink: 0;
    width: 600px;
    max-width: 100%;
}

.eventReceive__content .item h3 {
    font-size: 38px;
}

.eventReceive__content .item .desc {
    max-width: 460px;
}

.eventReceive__content .item .desc p:not(:last-child) {
    margin-bottom: 40px;
}

.eventReceive__content .item:nth-child(even) {
    flex-direction: row-reverse;
}

.eventReceive__content .item .desc p span {
    display: block;
    color: #FFEC9B;
    font-size: 130%;
    font-weight: 700;
    margin-bottom: 10px;
}

.eventReceive__content .item .desc p i {
    display: block;
    margin-top: 10px;
}

.eventReceive__content .item .desc .box_list {
    padding: 10px 30px;
    border: 1px solid #fff;
    border-radius: 10px;
}

.eventReceive__content .item .desc .box_list li:not(:last-child) {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.eventReceive__content .item .desc .box_list li {
    position: relative;
    z-index: 1;
    padding-left: 15px;
}

.eventReceive__content .item .desc .box_list {
    margin-bottom: 20px;
}
.eventReceive__content .item .desc .box_list li::before {
    content: '';
    position: absolute;
    background: #fff;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 11px;
    left: 0;
}

.eventReceive__content .item .desc .winner {
    font-size: 22px;
    font-weight: 600;
}


.form_event {
    max-width: 1000px;
    margin: 0 auto;
}

.eventReceive {
    padding: 100px 0;
}