/* ==============================================
   LAYOUT SHIFT (CLS) PREVENTION
   ============================================== */

/* Main container - reserve minimum viewport height */
main {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: block;
    contain: layout style;
    /* margin-top: -76px; */
}

/* Hero section - reserve space for video/background content */
main > section:first-of-type {
    padding-top: 100px;
}

.page-template-pg28-platforms-fxt-trading-app main > section:first-of-type,
.page-template-pg27-platforms-fxt-webtrader main > section:first-of-type,
.page-template-pg25-platforms-mt4 main > section:first-of-type,
.page-template-pg26-platforms-mt5 main > section:first-of-type {
    /* padding-top: 200px; */
}

header > div:first-of-type {
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
}

#nav-bar {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 46px;
    gap: 1rem;
}

#logo img {
    height: 26.48px;
}

/* Ensure hero video/poster doesn't cause reflow */
.section-hero video,
.section-hero > video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .section-hero {
    min-height: 457px;
    contain: layout style;
}

.home .section-hero .hero-content {
    min-height: 838px;
}

.home .section-hero .hero-inner-content {
    min-height: 312px;
}
    
.section-hero {
    min-height: 635px;
    contain: layout style;
}

.section-hero .hero-content {
    min-height: 838px;
}

.section-hero .hero-inner-content {
    min-height: 442px;
}

.section-hero-landing {
    min-height: 838px;
}

.section-hero-landing .hero-content {
    padding-top: 100px;
}

.section-hero-landing .txt-note {
    color: #C3BEAC;
    font-size: 16px;
}

.page-template-pg73-landing-all-in-one .section-hero-landing {
    background-position: 60% !important;
}

.page-template-pg75-landing-trade-global-markets .section-hero-landing {
    background-position: 85% !important;
}

.section-hero-landing .hero-inner-content {
    min-height: 330px;
}

/* Hero stats container - reserve space on desktop to prevent CLS */
@media (min-width: 768px) {
    .home .section-hero {
        min-height: 635px;
        contain: layout style;
    }

    .home .section-hero .hero-content {
        min-height: 838px;
    }

    .home .section-hero .hero-inner-content {
        min-height: 442px;
    }

    .home .hero-stats-container {
        min-height: 104.5px;
        contain: style;
    }

    .page-template-pg73-landing-all-in-one .section-hero-landing {
        background-position: top right !important;
    }

    .page-template-pg75-landing-trade-global-markets .section-hero-landing {
        background-position: top right !important;
    }
}

/* @media (min-width: 768px) {
    .section-hero {
        min-height: 600px;
    }
} */

/* Header container - prevent layout recalculation affecting main */
#header {
    contain: layout style;
    position: fixed;
    /* position: -webkit-sticky; */
    background-color: transparent;
}

#main-container {
    contain: style;
}

/* Mega menu - prevent CLS from menu items loading */
/* Note: Using contain: style only (not layout) to allow nav-submenu-container full viewport width */
#mega-menu-full {
    contain: style;
    min-height: 48px;
}

/* Navigation menu list - ensure visibility on initial paint */
/* .nav-menu-list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-list .nav-list-item {
    display: flex;
    align-items: center;
    position: relative;
} */

/* Navigation submenu - initially hidden */
.nav-menu-dropdown {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Help center container - reserve space to prevent CLS */
.help-center-container {
    min-height: 20px;
    contain: style;
}

/* Device images - add aspect-ratio to prevent CLS "unsized image" warning */
/* aspect-ratio allows browser to reserve space even with width/height: auto */
/* #device-laptop {
    aspect-ratio: 1080 / 958;
}

#device-tablet,
#device-tablet-2 {
    aspect-ratio: 947 / 786;
}

#device-mobile,
#device-mobile-2 {
    aspect-ratio: 642 / 728;
} */

/* ==============================================
   END LAYOUT SHIFT PREVENTION
   ============================================== */

/* ==============================================
   FORCED REFLOW PREVENTION - Navigation Animations
   Use will-change to hint browser about upcoming transforms
   ============================================== */

/* Desktop submenu - prepare for opacity/transform animations */
.nav-menu-dropdown {
    will-change: opacity, visibility;
    backface-visibility: hidden;
    transform: translateZ(0); /* Force GPU layer */
}

.nav-menu-dropdown .submenu-list li {
    will-change: opacity, transform;
    backface-visibility: hidden;
}

/* Mobile navigation - prepare for animations */
.mobile-nav-sheet {
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.mobile-nav-item {
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.mobile-submenu-panel {
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.mobile-submenu-item,
.mobile-submenu-category,
.mobile-submenu-links li {
    will-change: opacity, transform;
    backface-visibility: hidden;
}

/* ==============================================
   END FORCED REFLOW PREVENTION
   ============================================== */

strong {
    color: var(--color-gray-900);
}

.mark-t-code {
    background-color: yellow !important;
    color: red !important;
    -webkit-text-fill-color: red !important;
}


/* MENU */

/* LANGUAGE DROPDOWN */

[id^="dropdown-language-button-"] {
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    padding-left: 0px;
    padding-right: 5px;
}

/* Hide default details/summary disclosure triangle */
details.language-dropdown-container summary::-webkit-details-marker,
details.language-dropdown-container summary::marker {
    display: none;
    content: '';
}

/* Show dropdown panel when details is open */
details.language-dropdown-container:not([open]) .dropdown-language-panel {
    display: none;
}

details.language-dropdown-container[open] .dropdown-language-panel {
    display: block;
}

/* [id^="dropdown-language-button-"]:hover {
    background-color: #f3f4f6;
} */

[id^="dropdown-language-"] {
    max-height: 350px;
    overflow-y: auto;
}

[id^="dropdown-language-"] ul {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

[id^="dropdown-language-"] li {
    margin: 0;
    padding: 0px 5px;
}

[id^="dropdown-language-"] li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    background: none;
    border-radius: 6px;
}

[id^="dropdown-language-"] li a:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

[id^="dropdown-language-"].hidden {
    display: none;
}

/* Active language item styling */
[id^="dropdown-language-"] li.lang-active a {
    font-weight: 600;
    color: #1f2937;
}

#dropdown-language-mobile {
    max-height: 130px;
    left: 0;
}

/* Ensure dropdown container has relative positioning */
/* Reserve explicit width to prevent CLS */
.language-dropdown-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 50px;
    min-height: 40px;
    overflow: visible;
}

/* Language dropdown button - reserve consistent width to prevent CLS */
[id^="dropdown-language-button-"] {
    min-width: 50px;
    min-height: 40px;
    justify-content: center;
}

.language-dropdown-container [id^="dropdown-language-button-"] {
    border: 1px solid #EDEBE7;
    padding: 0;
    justify-content: center;
    padding: 0 5px;
}

#header .language-dropdown-container {
    min-height: 27px;
}

#header .language-dropdown-container [id^="dropdown-language-button-"] {
    border: none;
    background-color: transparent;
    height: 27.11px;
    min-height: 27px;
    min-width: 30px;
}

#header .language-dropdown-container:hover {
    background-color: transparent;
}

#header .language-dropdown-container:hover [id^="dropdown-language-button-"] {
    background-color: rgba(255, 255, 255, 0.3);
}

#header .language-dropdown-container [id^="dropdown-language-button-"] .flag-icon path {
    fill: #FFFEFA;
}

#header .mobile-nav .language-dropdown-container [id^="dropdown-language-button-"] .flag-icon path {
    fill: #1C1C1C;
}

#footer .dropdown-language-panel {
    bottom: 50px;
    top: auto !important;
}

#footer [id^="dropdown-language-button-"] {
    color: #1C1C1C;
}

#mobileNav [id^="dropdown-language-button-"] {
    color: #1C1C1C;
}

@media (max-width: 768px) {
    #footer .dropdown-language-panel {
        left: 0;
    }
}

/* Flag icon styling */
.language-dropdown-container .flag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.language-dropdown-container .flag-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Button text styling */
[id^="dropdown-language-button-"] span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.language-select-block {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.language-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.language-select-block .block-opener {
    padding: 0 5px 0 9px;
    border-radius: 4px;
    min-height: 30px;
    border: 1px solid var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
}

.language-select-block .block-opener .btn-icon {
    width: 16px;
    height: 16px;
    margin-right: 3px;
    fill: currentcolor;
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.language-select-block .block-opener .btn-text {
    font-size: 14px;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 500;
    color: var(--white);
}

.language-select-block .block-list {
    width: auto;
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    border-radius: 4px;
    background: var(--white);
    z-index: 10;
    -webkit-transition: all var(--t);
    -o-transition: all var(--t);
    transition: all var(--t);
    -webkit-transform: translateY(16px);
    -ms-transform: translateY(16px);
    transform: translateY(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

.language-select-block .block-list:before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 100%;
}

.lang-item {
    white-space: nowrap;
}

.language-select-block .block-list li a {
    font-size: 14px;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 500;
    color: var(--white);
    color: var(--text-dark);
    padding: 0 10px;
    text-align: center;
    display: block;
}

.language-selector svg {
    vertical-align: middle;
    max-width: 20px;
}


/* Help Center */
.link-help-center {
    padding: 0 5px;
}


/* SWIPER */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}


/* HOME */

.easy-access-col-img {
    position: relative;
}

.easy-access-col-img img {
    height: auto;
    margin: auto;
    position: relative;
    max-width: 300px;
}

.easy-access-col-img {
    /* height: 320px; */
    /* overflow: hidden; */
}

@media (min-width: 576px) and (max-width: 1024px) {

    .easy-access-col-img {
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
        grid-column: span 2;
        position: relative;
    }

    .easy-access-col-img img {
        margin: auto;
        position: relative;
    }

}

@media (min-width: 1024px) {

    .easy-access-col-img {
        height: auto;
    }

    .easy-access-col-img img {
        /* position: absolute;
        bottom: 0; */
        max-width: 100%;
        width: 100%;
    }

}

@media (max-width: 576px) {

    .easy-access-col-img img {
        max-width: 180px;
    }

}


/* FOOTER */

#footer .language-selector {
    justify-content: left;
}

@media (min-width: 768px) {

    #footer .footer-content-right {
        text-align: right;
    }

    #footer .language-selector {
        justify-content: right;
    }

}



/* FAQ */
#section-faqs button[aria-expanded="true"] svg.icon-question {
    color: var(--color-primary-600);
}

#section-faqs button[aria-expanded="false"] svg.icon-question {
    color: var(--color-primary-500);
}



/* PAYMENT PARTNERS */
.container-payment-partners-logos {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
}

/* Container for both rows */
.payment-partners-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* First row: 5 columns */
.payment-partners-row-1 {
    justify-self: center;
    max-width: 100%;
}

/* Second row: 4 columns */
.payment-partners-row-2 {
    justify-self: center;
    /* max-width: 80%;  */
    /* Slightly narrower to center the 4 items */
    margin: 0 auto;
}

/* Payment partner items */
.payment-partners-item {
    width: 100%;
    max-width: 140px;
    height: 60px;
    transition: all 0.3s ease;
}

.payment-partners-row-3 .payment-partners-item {
    background: none;
}

/* Tablet styles */
@media (min-width: 640px) {
    .payment-partners-item {
        max-width: 160px;
        height: 70px;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .payment-partners-container {
        /* gap: 3rem;  */
        /* Larger gap between rows on desktop */
    }
    
    .payment-partners-row-1,
    .payment-partners-row-2 {
        /* gap: 2rem;  */
        /* Consistent gap between items */
    }
    
    .payment-partners-row-2 {
        /* max-width: 75%;  */
        /* Adjust width for better centering */
    }
    
    .payment-partners-item {
        max-width: 180px;
        height: 80px;
    }
    
    .payment-partners-item img {
        max-height: 70px;
    }
}

/* Tablet improvements */
@media (min-width: 640px) and (max-width: 1023px) {
    .container-payment-partners-logos {
        max-width: 600px;
        margin: 0 auto;
        /* gap: 1.5rem; */
    }
    
    .payment-partners-item img {
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .payment-partners-item {
        padding: 10px;
    }
}

/* Mobile improvements */
@media (max-width: 639px) {
    .container-payment-partners-logos {
        max-width: 400px;
        margin: 0 auto;
        /* gap: 1rem; */
    }
    
    .payment-partners-item {
        max-width: 140px !important;
        height: 60px !important;
    }
    
    .payment-partners-item img {
        max-height: 50px;
    }

    .payment-partners-row-3 {
        justify-self: center;
        max-width: 50%; 
        /* Slightly narrower to center the 4 items */
        margin: 0 auto;
    }
}

@media (max-width: 425px) {
    .payment-partners-item {
        padding: 0px;
    }
}


/* NEWSLETTER */
#newsletter-message {
    display: none;
}

#newsletter-message.success {
    display: block;
    color: var(--color-green-700);
}

#newsletter-message.error {
    display: block;
    color: var(--color-red-700);
}


.bg-top {
    background-position: top !important;
}

.format :where(a):not(:where([class~=not-format] *)) {
    color: #4535FE;
}


/* MARKETS DATA */
.section-datatable-markets-data iframe {
    width: 100%;
    height: 800px;
}

.section-datatable-markets-data-featured iframe {
    height: 530px;
}

.section-datatable-markets-data-indices iframe {
    height: 700px;
}

.section-datatable-markets-data-crypto-cfds iframe {
    height: 450px;
}

.section-datatable-markets-data-spot-metals iframe,
.section-datatable-markets-data-energies iframe {
    height: 400px;
}

@media (max-width: 768px) {
    .section-datatable-markets-data-featured iframe {
        height: 620px;
    }

    .section-datatable-markets-data-forex iframe,
    .section-datatable-markets-data-share-cfds iframe {
        height: 1100px;
    }

    .section-datatable-markets-data-indices iframe {
        height: 860px;
    }

    .section-datatable-markets-data-crypto-cfds iframe {
        height: 550px;
    }

    .section-datatable-markets-data-spot-metals iframe,
    .section-datatable-markets-data-energies iframe {
        height: 400px;
    }
}

.single-post article ul,
.single-post article li,
.single-post .list-disc ul,
.single-post .list-disc li,
.single-post ul.list-bullet,
.single-post ul.list-bullet li,
.single-post ul.list-bullet1,
.single-post ul.list-bullet1 li {
    list-style-type: disc;
}

.single-post article h2,
.single-post article h3,
.single-post article h4,
.single-post article h5,
.single-post article h6 {
    color: var(--color-gray-900);
}

body.wp-singular {
    overflow-y: auto !important;
}

/* @media (max-width: 834px) {
    body.wp-singular.mobile-nav-open {
        overflow: hidden !important;
    }
} */

.popup-modal {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Fix Flowbite modal backdrop blocking clicks */
[class*="bg-dark-backdrop"] {
    pointer-events: none !important;
    z-index: 9998 !important;
}

.popup-modal:not(.hidden) {
    z-index: 9999 !important;
    pointer-events: auto !important;
}

.popup-modal:not(.hidden) [data-modal-content] {
    pointer-events: auto !important;
    opacity: 1 !important;
    transform: scale(1) !important;
}

.popup-modal [data-modal-content] * {
    pointer-events: auto !important;
}

/* Lower header/footer z-index when modal is open */
body:has([class*="bg-dark-backdrop"]) .nav-container,
body:has([class*="bg-dark-backdrop"]) header,
body:has([class*="bg-dark-backdrop"]) footer,
body.overflow-hidden .nav-container,
body.overflow-hidden header,
body.overflow-hidden footer {
    z-index: 1 !important;
}

.tabs-header-container ul {
    border-radius: 8px;
}

.tabs-header-container button[aria-selected="true"] {
    background-color: var(--color-primary-600);
    color: var(--color-white);
}

.tabs-header-container button[aria-selected="false"] {
    background-color: var(--color-gray-100);
    color: var(--color-gray-900);
}

.tabs-header-container button:last-child {
    border-right: 1px solid var(--color-gray-200);
}

.tabs-header-container button[aria-selected="false"]:hover {
    background-color: var(--color-gray-200);
}

.table-content-container {
    padding: 0 20px 0 20px;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
}

.table-content-container table tr:last-child {
    border-bottom: none;
}

/* Branding on the banner */
a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText,
#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogHeader,
#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogHeaderLogosWrapper {
  display: none;
}

/* Branding on the Privacy trigger */
#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-main-logo {
    display: none;
}

#CybotCookiebotDialog.CybotEdge .CybotCookiebotDialogBodyBottomWrapper {
    margin-top: 0 !important;
}

#CybotCookiebotDialog.CybotEdge .CybotCookiebotDialogContentWrapper {
    align-items: center;
}

/* ==============================================
   TABLE OF CONTENTS (TOC) SHORTCODE
   ============================================== */

.post-content .fxt-toc,
.fxt-toc {
    background-color: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0.5rem !important;
    margin-bottom: 1.5rem !important;
    overflow: hidden !important;
    padding: 0 !important;
}

.fxt-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
}

.fxt-toc-header:hover {
    background-color: #f3f4f6;
}

.fxt-toc-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.fxt-toc-toggle {
    color: #6b7280;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.fxt-toc-toggle.rotate-180 {
    transform: rotate(180deg);
}

.fxt-toc-nav {
    display: block;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    padding: 0 1.25rem 1rem;
    opacity: 1;
}

.fxt-toc.collapsed .fxt-toc-nav {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    visibility: hidden;
}

.fxt-toc-list {
    list-style: decimal;
    margin: 0;
    padding-left: 1.25rem;
}

.fxt-toc-item {
    margin-bottom: 0.5rem;
}

.fxt-toc-item:last-child {
    margin-bottom: 0;
}

.fxt-toc-link {
    color: #4535FE;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.fxt-toc-link:hover {
    color: #4535FE;
    text-decoration: underline;
}

/* Dark mode support */
.dark .fxt-toc {
    background-color: #1f2937;
    border-color: #374151;
}

.dark .fxt-toc-header:hover {
    background-color: #374151;
}

.dark .fxt-toc-title {
    color: #f9fafb;
}

.dark .fxt-toc-toggle {
    color: #9ca3af;
}

.dark .fxt-toc-link {
    color: #60a5fa;
}

.dark .fxt-toc-link:hover {
    color: #93c5fd;
}

/* Scroll margin for TOC anchor targets - ensures headings appear below sticky header */
[id^="toc-heading-"] {
    scroll-margin-top: 150px;
}

[id^="register"] {
    scroll-margin-top: 150px;
}


.txt-primary {
    font-family: "ABCOtto", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.2em;
}

.txt-secondary {
    font-family: "ArtificTrial", sans-serif;
}

.text-base {
    line-height: 1.3em;
}

h1, h2 {
    font-family: "ABCOtto", "Helvetica Neue", Arial, sans-serif;
}

body {
    font-family: "ArtificTrial", sans-serif !important;
}

html, main {
    line-height: 0;
}

section, div {
    line-height: 1.3em;
}

.w-fit {
    height: 60px;
    font-size: 21px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    font-weight: normal;
}

.btn-accent-fill {
    background-color: #E6FC70;
    color: #1c1c1c;
}

.btn-accent-outline {
    background-color: transparent;
    color: #E6FC70;
    border: 1px solid #E6FC70;
}

.btn-action-steps-to-join {
    width: 300px;
    max-width: 100%;
}

.btn-mobile-app {
    width: 159px;
}

.btn-action-header {
    font-size: 14.45px;
    height: 32.65px;
    padding: 5px 20px;
    border-radius: 8px;
}

.mobile-nav .btn-action-header {
    color: #4535fe;
}

.mobile-nav .btn-action-header {
    background-color: transparent;
}

.mobile-nav .btn-action-header.btn-accent-fill {
    background-color: #E6FC70;
}

:lang(vi) .btn-action-header {
    font-size: 12px;
    line-height: 1;
}

:lang(vi) #header .language-dropdown-container [id^="dropdown-language-button-"] {
    font-size: 12px !important;
}

.nav-submenu-container {
    background-color: rgba(255, 255, 255, 0.95);
    max-width: 1244px;
    left: 50% !important;
    transform: translate(-50%, 0%) !important;
    border-radius: 7px 7px;
    margin-top: 0 !important;
}

/* Blurred backdrop shown behind the desktop submenu panel */
.nav-submenu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: rgba(17, 17, 17, 0.15);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.nav-submenu-open .nav-submenu-backdrop {
    opacity: 1;
    visibility: visible;
}

.sub-menu-item {
    color: var(--color-primary-600);
    font-size: 16px;
    font-weight: normal;
}

.mobile-nav-actions,
.mobile-nav-sheet,
.mobile-submenu-panel {
    /* background-color: rgba(255, 255, 255, 0.95) !important; */
    background-color: #fafafc !important;
}

.mobile-submenu-panel {
    min-height: auto !important;
    height: auto !important;
}

.mobile-submenu-links li {
    margin-bottom: 0 !important;
}

.mobile-nav-item>a {
    font-size: 20px !important;
    font-weight: 700;
}


.mobile-menu-toggle span {
    background-color: #ffffff !important;
}

.mobile-menu-toggle span:first-child {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 6px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 12px;
}

.mobile-nav {
    width: 95% !important;
    left: 50% !important;
    transform: translate(-50%, 0%) !important;
    border-radius: 7px 7px;
    position: relative;
    background: #fafafc !important;
}

@media screen and (min-width: 769px) {
    .mobile-nav {
        width: 97% !important;
        max-width: 77.75rem;
    }
}


.nav-menu-list .nav-menu-item-btn {
    padding: 14px 10px !important;
    /* font-size: 0.9rem; */
    /* font-weight: 500; */
    color: #FFFEFA;
    font-size: 16.4px;
    font-weight: normal;
    line-height: 1;
}

#mega-menu-full {
    margin-left: 10px;
}

:lang(vi) #mega-menu-full {
    padding: 0;
}

.nav-menu {
    gap: 10px;
}

:lang(vi) .nav-menu {
    gap: 5px;
}

:lang(vi) .nav-menu-list .nav-menu-item-btn {
    padding: 14px 2px 14px 2px !important;
    font-size: 1em;
}

:lang(ja-JP) .nav-menu-list .nav-menu-item-btn {
    font-size: 1em;
    padding: 14px 12px 14px 0 !important;
}

:lang(ja-JP) #header .language-dropdown-container [id^="dropdown-language-button-"],
:lang(ja-JP) #header .help-center-text {
    font-size: 14px !important;
}

:lang(vi) #header .language-dropdown-container [id^="dropdown-language-button-"],
:lang(vi) #header .help-center-text {
    font-size: 13px !important;
}


:lang(en) .nav-container .hidden.md\:inline-flex,
:lang(en-SG) .nav-container .hidden.md\:inline-flex,
:lang(en-AU) .nav-container .hidden.md\:inline-flex,
:lang(zh-CN) .nav-container .hidden.md\:inline-flex,
:lang(zh-TW) .nav-container .hidden.md\:inline-flex,
:lang(ja-JP) .nav-container .hidden.md\:inline-flex,
:lang(ko-KR) .nav-container .hidden.md\:inline-flex,
:lang(vi) .nav-container .hidden.md\:inline-flex,
:lang(hi-IN) .nav-container .hidden.md\:inline-flex {
    display: inline-flex;
}

:lang(en) .mobile-menu-toggle,
:lang(en-SG) .mobile-menu-toggle,
:lang(en-AU) .mobile-menu-toggle,
:lang(zh-CN) .mobile-menu-toggle,
:lang(zh-TW) .mobile-menu-toggle,
:lang(ja-JP) .mobile-menu-toggle,
:lang(ko-KR) .mobile-menu-toggle,
:lang(vi) .mobile-menu-toggle,
:lang(hi-IN) .mobile-menu-toggle {
    display: none;
}

@media (max-width: 1260px) {
    :lang(en) .nav-container .hidden.md\:inline-flex,
    :lang(en-SG) .nav-container .hidden.md\:inline-flex,
    :lang(en-AU) .nav-container .hidden.md\:inline-flex {
        display: none;
    }

    :lang(en) .mobile-menu-toggle,
    :lang(en-SG) .mobile-menu-toggle,
    :lang(en-AU) .mobile-menu-toggle {
        display: block;
    }

    :lang(en) .nav-container > div.w-xl,
    :lang(en-SG) .nav-container > div.w-xl,
    :lang(en-AU) .nav-container > div.w-xl {
        padding: 15px 20px;
    }
}

@media (max-width: 1248px) {
    :lang(zh-CN) .nav-container .hidden.md\:inline-flex {
        display: none;
    }

    :lang(zh-CN) .mobile-menu-toggle {
        display: block;
    }

    :lang(zh-CN) .nav-container > div.w-xl {
        padding: 15px 20px;
    }

    :lang(zh-TW) .nav-container .hidden.md\:inline-flex {
        display: none;
    }

    :lang(zh-TW) .mobile-menu-toggle {
        display: block;
    }

    :lang(zh-TW) .nav-container > div.w-xl {
        padding: 15px 20px;
    }
}

@media (max-width: 1300px) {
    :lang(ja-JP) .nav-container .hidden.md\:inline-flex {
        display: none;
    }

    :lang(ja-JP) .mobile-menu-toggle {
        display: block;
    }

    :lang(ja-JP) .nav-container > div.w-xl {
        padding: 15px 20px;
    }
}

@media (max-width: 1248px) {
    :lang(ko-KR) .nav-container .hidden.md\:inline-flex {
        display: none;
    }

    :lang(ko-KR) .mobile-menu-toggle {
        display: block;
    }

    :lang(ko-KR) .nav-container > div.w-xl {
        padding: 15px 20px;
    }
}

@media (max-width: 1320px) {
    :lang(vi) .nav-container .hidden.md\:inline-flex {
        display: none;
    }

    :lang(vi) .mobile-menu-toggle {
        display: block;
    }

    :lang(vi) .nav-container > div.w-xl {
        padding: 15px 20px;
    }
}

@media (max-width: 1300px) {
    :lang(hi-IN) .nav-container .hidden.md\:inline-flex {
        display: none;
    }

    :lang(hi-IN) .mobile-menu-toggle {
        display: block;
    }

    :lang(hi-IN) .nav-container > div.w-xl {
        padding: 15px 20px;
    }
}


@media (max-width: 768px) {
    .nav-container > div.w-xl {
        background-color: var(--color-primary-600) !important;
        padding: 15px 20px;
        width: 95%;
    }
    
    .nav-submenu-container {
        width: 95%;
    }
}


.hero-content {
    background: #1C1C1C;
    background: linear-gradient(0deg, rgba(28, 28, 28, 1) 0%, rgba(28, 28, 28, 0.3) 50%, rgba(28, 28, 28, 0.1) 100%);
}

.page-template-pg70-trading-accounts-standard .hero-content {
    background: linear-gradient(225deg, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.64) 47%);
}

.hero-content-blue-gradient {
    background: linear-gradient(180deg,rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0.2) 20%, rgba(164, 179, 231, 0.2) 50%, rgba(58, 101, 245, 0.5) 80%, rgba(15, 30, 83, 1) 100%);
}

.hero-content-transparent {
    background: transparent;
}

.hero-content-no-overlay {
    background: none;
}

.page .section-hero {
    padding-top: 0;
}

.hero-content div {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content div button,
.hero-content div .btn,
.hero-content div [class*="button"] {
    text-shadow: none;
}


@media (max-width: 576px) {
    .section-hero-short {
        min-height: 500px;
    }

    .section-hero-short .hero-content {
        min-height: 500px;
    }

    .section-hero-short .hero-inner-content {
        min-height: auto;
    }

    .hero-content-mobile-overlay {
        background-color: rgba(0, 0, 0, 0.6);
    }

    .home .section-hero {
        background: #4535FE;
    }

    /* .home .section-hero > video {
        position: relative;
        object-fit: contain;
        height: auto;
        margin-top: 100px;
    } */

    .home .section-hero .hero-content {
        /* min-height: auto;
        padding-top: 30px;
        background: #4535FE; */
        background: linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, rgba(164, 179, 231, 0.7) 30%, rgba(58, 101, 245, 0.7) 60%, rgba(15, 30, 83, 1) 100%);
    }
}

.bgcolor-light-blue {
    background-color: rgba(189, 198, 232, 0.3);
}

#ambient_video_intro {
    display: block;
}

#ambient_video_intro_mobile {
    display: none;
}

@media (max-width: 752px) {
    #ambient_video_intro {
        display: none;
    }

    #ambient_video_intro_mobile {
        display: block;
    }
}


.card-gradient-container {
    width: 100%;
    height: 250px;
    position: absolute;
    bottom: 0;
    background: #1C1C1C;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}

.card-gradient-container-light {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    background: #1C1C1C;
    background: linear-gradient(0deg, rgba(28, 28, 28, 0.1) 0%, rgba(28, 28, 28, 0.1) 30%, rgba(28, 28, 28, 0) 100%);
}

.card-feature-highlight {
    font-size: 28px;
    line-height: 1.2em;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Reserve equal space for the description so the action button aligns
   across all CFD highlight cards regardless of description length. */
.cards-features-highlight-cfds .card-feature-highlight-desc {
    min-height: 5.25rem; /* ~3 lines at text-xl (1.75rem line-height) */
    width: 100%;
}

@media (max-width: 640px) {
    /* .cards-features-highlight-cfds .card-feature-highlight-desc {
        min-height: 0;
    } */
}

@media (min-width: 1160px) {
    #card-feature-highlight-forex .card-feature-highlight-desc {
        width: 90%;
    }

    #card-feature-highlight-spot-metals .card-feature-highlight-desc {
        width: 80%;
    }

    #card-feature-highlight-energies .card-feature-highlight-desc {
        width: 85%;
    }

    #card-feature-highlight-stocks .card-feature-highlight-desc {
        width: 80%;
    }
}

.card-feature-highlight:hover .icon-arrow-diagonal {
    background-color: var(--color-primary-600);
}

.icon-arrow-diagonal {
    cursor: pointer;
}

#card-feature-highlight-fxt-ai .card-feature-highlight-image-container img {
    /* max-height: 600px;
    width: auto; */
}

#card-feature-highlight-fxt-ai .card-feature-highlight-image-container {
    /* width: 140%; */
    /* margin-left: -20%; */
}

#card-feature-highlight-copy-trading .card-feature-highlight-image-container {
    width: 120%;
    margin-bottom: -20px;
    justify-content: start;
    margin-left: 20px;
}

#card-feature-highlight-mt4mt5 .card-feature-highlight-image-container {
    width: 120%;
    margin-bottom: -20px;
    justify-content: start;
    margin-left: 20px;
}

#card-feature-highlight-rewards .card-feature-highlight-image-container {
    margin: auto;
}

.section-usps-cards-group-landing .card-feature-highlight-image-container {
    /* height: 518px; */
    aspect-ratio: 1 / 1;
}

.section-usps-cards-group .card-feature-highlight-image-container {
    aspect-ratio: 1 / 1;
}

.section-usps-cards-group h2 {
    line-height: 1em;
}

/* #card-feature-highlight-fxt-ai-analysis {
    max-height: 450px;
} */


#card-feature-highlight-fxt-ai-analysis .card-feature-highlight-image-container .card-feature-highlight-video-wrapper {
    margin-top: 40px;
}

#card-feature-highlight-fxt-ai-analysis .card-feature-highlight-image-container .card-feature-highlight-video-wrapper-2 {
    margin-top: 40px;
}

#card-feature-highlight-fxt-ai-analysis .card-feature-highlight-image-container {
    aspect-ratio: 1 / 1;
}

@media (max-width: 576px) {
    #card-feature-highlight-fxt-ai .card-feature-highlight-image-container {
        width: 120%;
        margin-left: -10%;
    }

    #card-feature-highlight-fxt-ai .card-feature-highlight-image-container .card-feature-highlight-video-wrapper {
        max-height: 450px;
    }

    #card-feature-highlight-fxt-webtrader .card-feature-highlight-image-container {
        width: 120%;
        margin-left: -10%;
    }

    :lang(en-AU) #card-feature-highlight-fxt-webtrader .card-feature-highlight-image-container {
        width: 130%;
        margin-left: 0;
    }

    #card-feature-highlight-fxt-webtrader .card-feature-highlight-image-container .card-feature-highlight-video-wrapper {
        max-height: 450px;
    }

    #card-feature-highlight-fxt-ai-analysis .card-feature-highlight-image-container .card-feature-highlight-video-wrapper {
        margin-top: 30px;
    }

    #card-feature-highlight-fxt-ai-analysis .card-feature-highlight-image-container .card-feature-highlight-video-wrapper-2 {
        margin-top: 30px;
    }
}

@media (max-width: 1024px) {
    .section-usps-cards-group-landing .card-feature-highlight-image-container {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    #card-feature-highlight-fxt-ai-analysis .card-feature-highlight-image-container {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

/* #card-feature-highlight-fxt-webtrader .card-feature-highlight-image-container img {
    width: 320px;
} */

:lang(en-AU) #card-feature-highlight-fxt-webtrader .card-feature-highlight-image-container img {
    width: 100%;
}

.swiper-cards-features-overview #card-feature-highlight-fxt-webtrader .card-feature-highlight-image-container img {
    width: 100%;
}

@media (max-width: 768px) {
    #card-feature-highlight-fxt-webtrader .card-feature-highlight-image-container img {
        width: 100%;
    }
}

#card-feature-highlight-earth {
    background-color: #000D21;
}

#card-feature-highlight-forex {
    background-color: #02CED5;
}

#card-feature-highlight-spot-metals {
    background-color: #F59E0B;
}

#card-feature-highlight-stocks {
    background-color: #00A86C;
}

#card-feature-highlight-crypto {
    background-color: #8B5CF6;
}

#card-feature-highlight-indices {
    background-color: #7C7A64;
}

#card-feature-highlight-energies {
    background-color: #FC5748;
}

.swiper-button-prev-arrow,
.swiper-button-next-arrow {
    cursor: pointer;
}

.swiper-button-prev-arrow:hover,
.swiper-button-next-arrow:hover {
    opacity: 0.8;
}

.swiper-cards-features-highlight-cfds .swiper-slide {
    height: auto;
}

.swiper-button-prev-cfds,
.swiper-button-next-cfds {
    cursor: pointer;
}

.swiper-button-prev-cfds:hover,
.swiper-button-next-cfds:hover {
    opacity: 0.8;
}

.swiper-cards-features-highlight-reviews .swiper-slide {
    height: auto;
}

.swiper-button-prev-reviews,
.swiper-button-next-reviews {
    cursor: pointer;
}

.swiper-button-prev-reviews:hover,
.swiper-button-next-reviews:hover {
    opacity: 0.8;
}

.card-feature-highlight-image-container-reviews .review-stars .s0 {
    fill: #04da8d;
}

.card-feature-highlight-image-container-reviews .review-stars .s0:nth-child(4) {
    fill: #D9D9D9;
}

.card-feature-highlight-image-container-reviews .review-score {
    line-height: 1;
}

.cards-features-highlight-reviews .review-stars-orange .s0 {
    fill: #FF8E00;
}

.swiper-cards-features-highlight-reviews .card-feature-highlight {
    width: 282px;
    margin-right: 28px;
    max-width: 100%;
    display: flex;
}

.swiper-cards-account-types .swiper-wrapper {
    padding-bottom: 20px !important;
}

.swiper-cards-account-types .swiper-slide {
    display: flex;
    height: auto;
    justify-content: space-between;
}

.swiper-cards-why-fxt .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.5rem;
}

.swiper-cards-features-details .swiper-slide {
    /* width: 80%; */
    max-width: 550px;
}

.card-feature-highlight figcaption .text-lg {
    line-height: 1.2em;
}

.review-platform-logo div {
    line-height: 1.2em;
    font-family: Helvetica, sans-serif;
}

.div-card-gradient {
    background: linear-gradient(180deg, #F3F2F1 0%, #EDEBE7 50%, var(--color-primary-300, #BDC6E8) 90%, var(--color-primary-300, #BDC6E8) 100%);
}

.div-card-gradient-light {
    background: linear-gradient(180deg, white 50%, var(--Light-Blue, #BDC6E8) 100%);
}

.card-feature-highlight-video-wrapper {
    max-height: 610px;
    top: -20px;
}

.card-feature-highlight-video-wrapper-2 {
    max-height: 610px;
    aspect-ratio: 1 / 1;
}

.card-feature-highlight.bg-black {
    background-color: #000000;
}

.page-template-pg74-landing-copy-trading .card-feature-highlight.bg-black {
    background-color: rgb(28, 28, 28);
}

#card-feature-highlight-fund .card-feature-highlight-video-wrapper {
    max-height: 450px;
    max-width: 260px;
    margin: auto;
}


/* swiper-cards-features-left-right-link: Desktop grid layout */
@media (min-width: 769px) {
    .swiper-cards-features-left-right-link .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        align-items: stretch;
        transform: none !important;
        max-width: 1280px;
        margin: 0 auto;
    }

    .swiper-cards-features-left-right-link .swiper-slide {
        flex-shrink: 1 !important;
        flex-grow: 0;
        min-width: 0;
        height: auto;
    }

    /* Row 1: 2 columns */
    .swiper-cards-features-left-right-link .swiper-slide:nth-child(1),
    .swiper-cards-features-left-right-link .swiper-slide:nth-child(2) {
        width: calc(50% - 0.75rem);
    }

    /* Row 2: 3 columns */
    .swiper-cards-features-left-right-link .swiper-slide:nth-child(3),
    .swiper-cards-features-left-right-link .swiper-slide:nth-child(4),
    .swiper-cards-features-left-right-link .swiper-slide:nth-child(5) {
        width: calc(33.333% - 1rem);
    }

    /* Row 3: 2 columns (1/3 + 2/3) */
    .home .swiper-cards-features-left-right-link .swiper-slide:nth-child(6) {
        width: calc(33.333% - 0.75rem);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .home .swiper-cards-features-left-right-link .swiper-slide:nth-child(7) {
        width: calc(66.666% - 0.75rem);
    }

    .swiper-cards-features-left-right-link .swiper-pagination {
        display: none;
    }

    .swiper-cards-features-left-right .swiper-wrapper {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }

    .swiper-cards-features-left-right .swiper-slide {
        width: 100% !important;
    }

    .swiper-cards-features-left-right .swiper-pagination {
        display: none;
    }
}

@media (max-width: 1024px) {
    .card-feature-highlight-video-wrapper {
        top: -10px;
    }
}

@media (max-width: 768px) {
    .swiper-cards-features-left-right .swiper-slide {
        width: 80%;
    }

    .swiper-cards-features-left-right-link .swiper-slide {
        width: 80vw;
        max-width: 100%;
        height: auto;
    }

    .swiper-cards-features-left-right-link #card-feature-highlight-2 {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .swiper-cards-account-types .swiper-slide {
        width: 90%;
    }

    .swiper-cards-why-fxt .swiper-wrapper {
        display: flex;
        gap: 0;
        align-items: stretch;
    }

    .swiper-cards-why-fxt .swiper-slide {
        width: 90%;
        height: auto !important;
    }

    .swiper-cards-1 .swiper-slide,
    .swiper-cards-2 .swiper-slide,
    .swiper-cards-3 .swiper-slide {
        width: 90%;
        height: auto !important;
    }

    .swiper-pagination-light .swiper-pagination-bullet {
        background-color: #BDC6E8 !important;
    }

    .swiper-pagination-light .swiper-pagination-bullet-active {
        background-color: #FFFEFA !important;
    }

    #btn-subscribe-newsletter .txt-subscribe {
        display: none;
    }

    #section-hero-page-markets-forex {
        background-position: 80% !important;
    }
}

@media (max-width: 576px) {
    .card-feature-highlight-video-wrapper {
        max-height: 400px;
    }

    .card-feature-highlight-video-wrapper-2 {
        /* max-height: 400px; */
        height: auto;
    }

    #card-feature-highlight-copy-trading .card-feature-highlight-video-wrapper {
        max-height: max-content;
    }

    #card-feature-highlight-copy-trading .card-feature-highlight-image-container {
        width: 180%;
    }

    #card-feature-highlight-mt4mt5 .card-feature-highlight-video-wrapper {
        max-height: max-content;
    }

    #card-feature-highlight-mt4mt5 .card-feature-highlight-image-container {
        width: 180%;
    }

    #card-feature-highlight-fund .card-feature-highlight-video-wrapper {
        /* margin-bottom: -20px; */
        max-height: 260px;
        max-width: 160px;
    }

    .card-gradient-container {
        height: 150px;
    }
}

/* Pricing Comparison Grid - Gradient Border on Pro Column */
.pricing-grid-pro-column {
    display: grid;
    grid-template-rows: subgrid;
    position: relative;
    background: white;
    border-radius: 10px;
    z-index: 0;
}

.pricing-grid-pro-column::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 8px;
    background: linear-gradient(to bottom, var(--primary-600, #4535FE), var(--primary-300, #BDC6E8));
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.row-steps-gradient {
    background: linear-gradient(180deg, #EDEBE7 54%, var(--primary-300, #BDC6E8) 100%), var(--green-600, #E6FC70);
}

.row-steps-gradient-light-blue {
    background: linear-gradient(180deg, #ffffff 0%, #BDC6E8 100%);
}

@media (max-width: 1023px) {
    .cards-icon-content-vertical-horizontal .div-card {
        flex-direction: row;
        text-align: left;
    }

    .cards-icon-content-vertical-horizontal .div-card-image {
        width: 80px;
        margin-right: 10px;
    }

    .cards-icon-content-vertical-horizontal .div-card-image img {
        width: 80px;
    }

    .cards-icon-content-vertical-horizontal .div-card-content {
        flex: 1;
    }

    .section-heading-wrapper-mobile-left {
        text-align: left;
    }

    .btn-action-wrapper-mobile-left {
        justify-content: start;
    }
}

@media (min-width: 1024px) {
    :lang(en) .section-usps-icons-group-why .div-card:nth-child(2) .div-card-content-desc,
    :lang(en-SG) .section-usps-icons-group-why .div-card:nth-child(2) .div-card-content-desc
    :lang(en-AU) .section-usps-icons-group-why .div-card:nth-child(2) .div-card-content-desc {
        width: 150px;
    }

    :lang(en) .section-usps-icons-group-why .div-card:nth-child(4) .div-card-content-desc,
    :lang(en-SG) .section-usps-icons-group-why .div-card:nth-child(4) .div-card-content-desc
    :lang(en-AU) .section-usps-icons-group-why .div-card:nth-child(4) .div-card-content-desc {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .content-join-countries {
        font-size: 29px;
        line-height: 1.2em;
    }

    .hero-content .div-tablet-in-column img {
        width: 120px;
    }
}

@media (max-width: 752px) {
    .div-tablet-in-column {
        min-height: 50px;
    }
}

@media (min-width: 768px) and (max-width: 1248px) {
    .div-tablet-in-column {
        flex-direction: column;
    }
}


.section-open-account .steps-open-account-wrapper {
    max-width: 600px;
}

.section-open-account ul {
    margin-left: 20px;
}

.section-open-account li {
    line-height: 1.5;
}

:lang(en) .icon-group-usp-text {
    max-width: 180px
}

:lang(en) .icon-group-usp:nth-child(3) .icon-group-usp-text {
    max-width: 150px
}

.btn-action-open-account {
    padding-right: 15px;
}

@media (min-width: 768px) {
    .section-open-account .feature-image-wrapper img {
        padding: 10px;
    }
}

body #main-container:has(.mobile-nav.open) {
    overflow: hidden;
    height: 100vh;
}

/* @media (max-width: 834px) { */
    body.mobile-nav-open {
        overflow-y: scroll !important;
    }
/* } */

.mobile-nav-sheet {
    height: calc(100% - 200px) !important;
    min-height: calc(100% - 200px) !important;
}

@media (min-width: 768px) {
    #hero-heading-wrapper {
        width: 609.6px;
    }
}

.trustpilot-widget-mini-wrapper {
    height: 120px;
    width: auto;
}

.list-two-columns {
    column-count: 2;
    column-gap: 20px;
}

.list-two-columns li {
    break-inside: avoid;
}

@media (max-width: 768px) {
    .list-two-columns {
        column-count: 1;
    }
}

#section-hero-page-contact-us .hero-content > div > div > div {
    max-width: 700px;
}