@font-face {
    font-family: "Poppins", sans-serif;
    font-display: swap;
}

:root {
    --primary-color: #30af85;
    --primary-color-dark: #1f6e54;
    --primary-color-light: #c1e6da;
    --primary-color-lighter: #d5eee6;

    --secondary-color: #01337f;
    --secondary-color-darker: #0a2e64;
    --secondary-color-dark: #213c83;
    --secondary-color-light: #ccd6e5;
    --secondary-color-lighter: #e5eaf2;

    --neutral-color-darker: #191a1a;
    --neutral-color-dark: #6682a0;
    --neutral-color: #d8d9da;
    --neutral-color-light: #d8d9da;
    --neutral-color-lighter: #f9f9f9;
    --light-color-grey: #f1f1f1;

    --error-color-dark: #b42318;
    --error-color: #d92d20;
    --error-color-light: #fecdca;
    --error-color-lighter: #fee4e2;

    --success-color-dark: #05603a;
    --success-color: #039855;
    --success-color-light: #a6f4c5;
    --success-color-lighter: #ecfdf3;

    --jp-font-color: black;

    --search-width: 580px;
    --text-grey: #81858b;
    --light-blue: #e6ebf2;
    --light__grey: #707070;
}

header {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.select2-container,
.select2-results__options {
    padding: 12px;
    border-radius: 8px;
    background-color: var(--light-color-grey) !important;
    color: var(--secondary-color-dark) !important;
    border: none !important;
}

.country-select-wrapper {
    position: relative;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ced4da;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 300px;
    overflow: hidden;
}

.country-search-box {
    padding: 10px;
    border-bottom: 1px solid #e9ecef;
}

.country-options {
    max-height: 250px;
    overflow-y: auto;
}

.country-option {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
}

.country-option:hover {
    background-color: #f8f9fa;
}

.country-option:last-child {
    border-bottom: none;
}

.country-option.selected {
    background-color: #007bff;
    color: white;
}

#country-search {
    cursor: pointer;
    background-color: white;
}

#country-search:focus {
    cursor: text;
}

/* Ensure intl-tel-input displays properly */
.iti {
    width: 100% !important;
}

.iti__country-list {
    z-index: 1001;
}

[dir="rtl"] .intl-tel-input {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] #crm-registration-form .iti--separate-dial-code .iti__selected-flag {
    right: 0;
    left: auto;
}

[dir="rtl"] .intl-tel-input .iti__country-list {
    right: 0;
    left: auto;
    text-align: right;
}

[dir="rtl"] #registration-form .custom-select {
    background-position: 2%;
}

.document_group_1__text a {
    color: var(--secondary-color-dark) !important;
    font-weight: 500 !important;
}

#crm-registration-form h3 {
    font-size: 32px !important;
}

#crm-registration-form label,
#crm-registration-form p {
    font-size: 14px !important;
}

#crm-registration-form label::first-letter {
    text-transform: capitalize;
}

.input__group {
    margin-bottom: 16px;
}

.custom-select {
    appearance: none;
    background-image: url("../svgs/filter-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 30px;
}

/* Hide Select2 default arrow */
.select2-container--bootstrap-5 .select2-selection__arrow {
    display: none !important;
}

/* Add custom arrow as a pseudo-element */
.select2-container--bootstrap-5 .select2-selection--single {
    position: relative;
}

.select2-container--bootstrap-5 .select2-selection--single::after {
    content: "";
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    width: 10px;
    height: 10px;
    background-image: url("../svgs/filter-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.2s;
    pointer-events: none;
}

/* Rotate only the arrow when open */
.select2-container--bootstrap-5.select2-container--open .select2-selection--single::after {
    transform: translateY(-50%) rotate(180deg);
}

.select2-container--bootstrap-5 .select2-results__options {
    max-height: 220px;
    overflow-y: auto !important;
}

.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.password-toggle-icon:hover {
    opacity: 1;
}

[dir="rtl"] #registration-form .password-toggle-icon {
    right: 95%;
}

[dir="rtl"] #registration-form [type="email"] {
    direction: rtl;
}

.rigesterImage {
    background-image: url("../img/registerImg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.box-shaddow-0:focus {
    box-shadow: none !important;
}

.custom-select:focus {
    background-image: url("../svgs/filter-arrow-rotated.svg");
}

.form__items {
    padding: 12px;
    border-radius: 8px;
    background-color: var(--light-color-grey) !important;
    color: var(--secondary-color-dark) !important;
    border: none !important;
}

#crm-registration-form .iti--separate-dial-code .iti__selected-flag {
    background-color: var(--light-color-grey) !important;
    border-right: 0.75px solid var(--neutral-color) !important;
}

.form__items::placeholder {
    color: var(--secondary-color-dark);
}

.form__items:focus {
    box-shadow: none !important;
}

.radius-start-20 {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

[dir="rtl"] .radius-start-20 {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

@media (max-width: 992px) {
    .rigesterImage {
        min-height: 500px;
    }

    .radius-start-20,
    [dir="rtl"] .radius-start-20 {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

.clock-bg {
    background-color: var(--light-blue);
    border-radius: 4px;
}

.bordered-container {
    border: 1px solid var(--neutral-color-light) !important;
    padding: 16px;
    border-radius: 8px;
}

.table-tabs li,
.filter-container {
    padding: 8px 16px;
    margin: 0px 5px;
    border-radius: 8px;
    background-color: var(--neutral-color-lighter) !important;
}

.filter-container label {
    color: var(--text-grey) !important;
    font-weight: 400 !important;
    font-size: 12px;
}

.filter-container select {
    background-color: transparent;
    border: none;
    padding: 0;
    color: var(--secondary-color);
    font-size: 12px;
}

.filter-container select:focus {
    outline: none !important;
    box-shadow: none !important;
}

.table-tabs {
    margin: 0px 5px;
}

.table-tabs .tab-item:hover .nav-link {
    color: var(--primary-color) !important;
}

.table-tabs .tab-item:has(.active) {
    border: 1px solid var(--primary-color) !important;
}

.table-tabs .nav-link.active {
    background-color: transparent !important;
}

.table-tabs li a {
    color: var(--secondary-color-dark);
    font-weight: 500;
}

table.dynamic-leverage-table__v2 {
    table-layout: auto !important;
}

.dynamic-leverage-table__v2 th {
    background-color: var(--primary-color) !important;
}

#assetClassDropdownMenu .dropdown-item:not(.activeScondary) {
    color: var(--text-grey) !important;
}

#accordionDynamicLeverage-hmrClass li,
#accordionDynamicLeverage-assetClass li {
    text-align: start !important;
}

.dynamic-leverage-table__v2 .left-corner {
    border-radius: 8px 0 0 8px;
}

.dynamic-leverage-table__v2 .right-corner {
    border-radius: 0 8px 8px 0;
}

[dir="rtl"] .dynamic-leverage-table__v2 .left-corner {
    border-radius: 0 8px 8px 0;
}

[dir="rtl"] .dynamic-leverage-table__v2 .right-corner {
    border-radius: 8px 0 0 8px;
}

.dynamic-leverage-table__v2 p {
    color: var(--text-grey);
    font-weight: 400;
}

.mobile-accordon__v2 .accordion-button {
    color: var(--secondary-color-dark) !important;
}

.mobile-accordon__v2 .accordion-button::before {
    display: none;
}

.mobile-accordon__v2.accordion .accordion-item:not(:last-child) {
    border-bottom: 1px solid var(--neutral-color-light) !important;
}

/* Ensure tabs are below the filter dropdown */
.table-tabs {
    margin-top: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
}

.table-tabs .nav-link {
    flex: 0 0 auto;
    padding: 0.5rem 1rem;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
}

.table-tabs .nav-link.active {
    background-color: #f8f9fa;
    border-color: #dee2e6 #dee2e6 #fff;
}

/* Add spacing for mobile view */
@media (max-width: 992px) {
    .filter-container {
        margin-bottom: 1rem;
    }

    div.filters_cont {
        flex-direction: column !important;
    }
}

.filters_cont {
    display: flex;
    flex-direction: row !important;
}

.mobile-accordon__v2.accordion .accordion-item .accordion-button {
    border-bottom: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    display: flex;
    justify-content: space-between;
    border-radius: 0;
    background-color: transparent !important;
}

.dropdown-menu a.activeScondary {
    color: var(--secondary-color-dark) !important;
    background-color: var(--light-color-grey);
}

.mobile-accordon__v2.accordion .dropdown-menu a {
    color: var(--text-grey) !important;
}

.text__grey {
    color: var(--text-grey) !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.mobile-accordon__v2 ul {
    display: flex;
    justify-content: space-between;
}

/* .mobile-accordon__v2 li:nth-of-type(even){
    text-align: end;
} */

.dynamic-leverage-table__v2 tr:nth-of-type(even) td.text__secondary,
.dynamic-leverage-table__v2 tr:nth-of-type(odd) td.text__secondary {
    color: var(--secondary-color-dark) !important;
    font-weight: 700 !important;
}

.dynamic-leverage-table__v2 tr:nth-of-type(odd) td {
    background-color: #fff !important;
    color: var(--text-grey) !important;
}

.dynamic-leverage-table__v2 tr:nth-of-type(even) td {
    background-color: var(--neutral-color-lighter) !important;
    color: var(--text-grey) !important;
}

table.dynamic-leverage-table__v2 tr td.bg__white {
    background-color: #fff !important;
}

table.dynamic-leverage-table__v2 tr td.bg__grey {
    background-color: var(--neutral-color-lighter) !important;
}

.dynamic-leverage-table__v2 td,
.dynamic-leverage-table__v2 th {
    border: none !important;
    max-width: 95px !important;
}

.dynamic-leverage-table__v2#dynamic-leverage-table__example1 tr th:first-child,
.dynamic-leverage-table__v2#dynamic-leverage-table__example1 tr td:first-child,
.dynamic-leverage-table__v2#dynamic-leverage-table__example2 tr th:first-child,
.dynamic-leverage-table__v2#dynamic-leverage-table__example2 tr td:first-child,
.dynamic-leverage-table__v2#dynamic-leverage-table__example3 tr th:first-child,
.dynamic-leverage-table__v2#dynamic-leverage-table__example3 tr td:first-child {
    max-width: 50px !important;
    width: 50px !important;
}

.table-tabs .tab-item:hover {
    border: 1px solid var(--primary-color) !important;
}

.dynamic-leverage-table__v2 th {
    font-weight: 500;
}

.dynamic-leverage-table__v2 td {
    font-weight: 400;
}

.dynamic-leverage-table__v2 thead {
    border-color: transparent !important;
}

#assetClassDropdown * {
    padding: 8px 12px;
    background-color: var(--neutral-color-lighter);
}

#assetClassDropdownBtn {
    min-width: 220px;
}

#selectedAssetLabel {
    font-size: 14px;
    color: var(--text-grey);
}

#dropdownArrow {
    transition: transform 0.3s ease;
}

#assetClassDropdownMenu {
    height: auto !important;
    width: auto !important;
    background-color: var(--neutral-color-lighter) !important;
    color: var(--secondary-color-dark);
    box-shadow: 0px 4px 10px 0px #00000026;
    border-radius: 8px !important;
    padding: 8px 12px;
}

.btn-group.show #dropdownArrow,
button:not(.collapsed) #dropdownArrowAccordion {
    transform: rotate(180deg);
}

#assetClassDropdownBtn i {
    font-size: 16px;
}

.fs-12 {
    font-size: 12px !important;
}

.table_contaier_border {
    border-radius: 8px;
}

.sub-menu-title {
    font-size: 16px;
}

.footer-text-grey {
    font-size: 20px;
    color: var(--text-grey) !important;
}

.blog-description img {
    min-height: auto !important;
    height: auto !important;
    max-width: 100% !important;
}

.radius-20 {
    border-radius: 20px;
}

.fa-chevron-down {
    font-size: 12px;
    transform: rotate(0deg);
    transition-timing-function: ease-in;
    transition: 0.2s;
    font-weight: 900 !important;
    left: 25px;
}

.rotate-arrow {
    transform: rotate(-180deg);
}

#sitemap-toggle-left,
#sitemap-toggle-right {
    height: fit-content;
}

.mts-ics {
    top: -70px;
    position: relative;
}

#lang-changer-btn:focus,
.nav-link:focus .fa-chevron-down {
    transform: rotate(-180deg);
}

.nav-link:focus .fa-chevron-down {
    transform: rotate(-180deg);
}

.rotate-arr:focus .fa-chevron-down {
    transform: rotate(-180deg);
}

.dropdown-item.active,
.dropdown-item.active * {
    color: #30af85 !important;
    background-color: transparent !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #30af85 !important;
    background-color: transparent !important;
}

.tabs-container .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: transparent !important;
    color: var(--secondary-color) !important;
}

.grey-bg {
    background-color: #f6f6f6;
}

.white-contact-bg {
    background-color: #fff;
    box-shadow: 0px 44px 98px 0px #0000001a;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-radius-50 {
    border-radius: 70px;
}

.contact-svg {
    width: 130px;
}

.select-container {
    position: relative;
    display: inline-flex;
    /* background-color: #F9F9F9; */
    padding: 12px 5px;
    padding-top: auto;
    border-radius: 10px;
    white-space: nowrap;
}

.lang-changer-arrow.open {
    transform: rotate(180deg);
    /* Rotate the arrow */
}

/* Position the icon */

.select-container i {
    position: absolute;
    top: 47%;
    right: 10px;
    transform: translateY(-50%);
    color: #30af85;
}

@media (max-width: 992px) {
    .licenses-flags1__footer {
        width: 19px !important;
    }

    .select-container {
        padding: 7px;
        margin-top: 5px;
    }

    .lang-changer-custom {
        padding: 0px 10px !important;
    }
}

/* Hide the default arrow on the select */

select.changeLang {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 50%;
    padding-right: 2rem;
    /* Make space for the icon on the right */
}

.account-icon {
    width: 40px;
}

.navbar-toggler-icon::before {
    font-size: 25px;
}

.login-btn {
    font-weight: 700;
    border-radius: 100px 100px 100px 100px;
    color: #30af85;
}

.login-btn-mobile {
    font-weight: 700;
    border-radius: 100px 100px 100px 100px;
    color: #30af85;
    position: absolute;
    right: 65px;
    top: 45px;
    border: 2px solid #30af85;
    padding-left: 10px;
    padding-right: 10px;
}

.login-btn:hover {
    background-color: white !important;
    /* border-color: #30af85 !important; */
    /* border-color: #30af85 !important; */
    color: #30af85 !important;
}

.dropdown-item {
    color: #707070 !important;
}

@media (max-width: 992px) {
    .dropdown-item {
        color: var(--secondary-color) !important;
    }
}

.nav-item .nav-link:hover {
    color: #30af85 !important;
}

.fs-22 {
    font-size: 22px;
}

.nav-link.no-arrow::after {
    display: none;
}

.hom-title {
    color: #30af85;
    width: max-content !important;
    font-size: 40px !important;
    font-weight: 800;
}

.hero-sep {
    font-family: "Poppins" !important;
    font-weight: 500 !important;
    color: #30af85 !important;
    text-transform: lowercase !important;
}

.hom-sub {
    color: var(--secondary-color);
    font-size: 40px;
    font-weight: 800;
}

.hom-desc {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
}

.hero-section {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 80vh;
}

.hero-sec .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-info-container {
    position: relative;
    z-index: 2;
}

.numb {
    color: #30af85;
    font-size: 45px;
    font-weight: 600;
    margin-right: 10px;
}

.bg-gray {
    background-color: #f6f6f6;
    margin-top: -5px;
}

.rounded-full-sides {
    border-radius: 100px !important;
}

.easy-text {
    color: #01337f;
    font-size: 25px;
    font-weight: 600;
}

.fas.fa-check {
    color: #30af85;
    transition: color 0.3s;
    font-weight: 900;
    font-size: 30px;
}

.easy-section,
.market-leader {
    padding: 50px 0px;
}

.market-leader p {
    font-size: 20px;
    font-weight: 700;
    color: #626262;
    margin-bottom: 30px;
}

.adv-btn {
    font-weight: 600;
    background-color: white;
    border-color: #30af85;
    border-radius: 29px 29px 29px 29px;
    padding: 10px 30px 10px 30px;
    color: #30af85;
}

.adv-btn:focus,
.adv-btn:hover {
    background-color: #30af85;
    color: white;
    box-shadow: none;
}

.object-contain {
    object-fit: contain;
    aspect-ratio: 16 / 9;
}

.square-ratio {
    aspect-ratio: 1/1;
}

.border-radius-30 {
    border-radius: 30px;
}

.col-gap {
    column-gap: 25px;
    padding-left: 25px;
    padding-right: 25px;
}

.join-btn {
    font-weight: 600;
    background-color: #30af85;
    border-style: none;
    border-radius: 100px 100px 100px 100px;
    padding: 10px 30px 10px 30px;
    color: white;
    max-width: 350px;
}

/* .join-btn:hover,
.join-btn:focus {
  background-color: white;
  color: #30AF85;
  border-color: #30AF85;

} */

.color-white {
    color: #fff;
}

.text-green {
    color: #30af85;
}

.border-rad-40 {
    border-radius: 40px;
    border: none;
}

.min-h-180 {
    min-height: 180px;
    height: 180px;
}

.card-body-bet {
    display: flex;
    flex-direction: column;
}

.storyImg {
    width: 250px;
}

/* body p{
  font-size: 14px!important;
} */
.logo-image-news {
    height: 25px !important;
}

.logo-image {
    max-width: 150px;
}

@media (max-width: 767px) {
    HEAD .navbar-toggler-icon {
        display: block !important;
        color: #30af85;
    }

    #theinstitutions-btn {
        margin-top: -5px;
        font-size: 16px;
    }

    #theinstitutions-btn>.flag-icon {
        height: auto !important;
        background-size: cover !important;
    }

    .logo-image {
        height: auto;
        margin-top: 20px;
        margin-left: 20px;
    }

    #mobileMenu {
        display: none;
    }

    .navbar-toggler-icon {
        height: 1.5rem !important;
    }

    .sponsorship-second-row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .leaderboard-font {
        font-size: 10px !important;
    }
}

.logo-image-2 {
    height: 15px !important;
    margin-right: 10px;
}

html[lang="ar"] .logo-image-2 {
    height: 15px !important;
    margin-right: 0px;
    margin-left: 10px;
}

@media (max-width: 992px) {
    .logo-image {
        height: auto;
        margin-top: 20px;
        margin-left: 20px;
    }
}

.navbar-toggler-icon {
    display: none;
    display: block !important;
}

.changeLang,
.changeLang:focus {
    border: 0;
    box-shadow: unset;
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler-icon::before {
    font-family: FontAwesome;
    content: "\f0c9";
    /* fa-bars, fa-navicon */
}

.market-leader {
    background-color: #f6f6f6;
}

/* multi assets section  */

.border-primary {
    border-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-paragraph {
    color: #626262 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.btn-outline-primary {
    color: var(--secondary-color) !important;
    font-size: 16px;
    border-radius: 29px !important;
    border-color: var(--primary-color) !important;
    background-color: white !important;
}

/* multi assets section  */

/* global markets  */

@media (max-width: 1200px) {
    .navbar-expand-lg .navbar-nav .last-dropdown {
        width: 500px !important;
    }
}

@media (min-width: 993px) {
    .border-right-md__footer {
        border-right: 1px solid #ddd;
    }

    .footer-pr-flag__footer {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
    }

    .footer-px-flag__footer {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .footer-pl-flag__footer {
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .why-choose-data {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.5s ease, max-height 0.5s ease;
    }

    .hover-container:hover .why-choose-data {
        opacity: 1;
        max-height: 500px;
    }

    .col-lg-35 {
        width: calc(100% / 5);
    }

    .navbar-toggler-icon {
        display: none;
    }

    .leaderboard-font {
        font-size: 16px !important;
    }
}

/* global markets  */

footer {
    background-color: #f3f2f2;
}

.text-navy {
    color: #01337f !important;
}

.text-darkgrey {
    color: #707070 !important;
}

p {
    color: #626262;
}

footer a {
    text-decoration: none;
}

.mt-10 {
    margin-top: 6rem;
}

.fs-30 {
    font-size: 30px !important;
    padding: 10px;
}

footer p.fs-14 {
    font-size: 16px !important;
}

footer a.fs-30 {
    font-size: 30px !important;
}

footer p.lh-15 {
    line-height: 1.5 !important;
}

.search-container .form-control:focus {
    box-shadow: none !important;
    background-color: #f9f9f9 !important;
}

@media (max-width: 545px) {
    input.search-input {
        width: 100% !important;
    }

    img.contact-svg {
        width: 70px !important;
    }

    html[lang="jp"] .award-text,
    html[lang="ar"] .award-text {
        width: 60% !important;
        margin-inline: auto;
    }
}

@media (max-width: 991px) {
    .content-between-mob__footer {
        justify-content: space-between;
    }

    .cust-font-1__common {
        font-size: 18px !important;
    }

    .cust-font-2__common {
        font-size: 16px !important;
    }

    button.slick-prev__awards,
    button.slick-next__awards {
        display: none !important;
    }

    .contact-svg {
        width: 90px !important;
    }

    .hide-ipad {
        display: none !important;
    }

    .center-text-wrapper {
        display: flex;
        align-items: left;
        justify-content: center;
        flex-direction: column;
        justify-content: flex-start;
    }

    .sitemap {
        display: none;
    }

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

    .max-cont {
        width: max-content;
    }
}

footer a:hover {
    color: #fff;
    cursor: pointer;
}

.tech-icon {
    width: 100px;
}

.fw-900 {
    font-weight: 900 !important;
}

.mt-icons {
    aspect-ratio: 1/1;
    width: 55px;
    object-fit: contain;
}

.quest-ic {
    color: #30af85;
    font-weight: 800;
}

@media (min-width: 768px) {
    .cust-ms__footer {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .licenses-flags__footer {
        width: 22px;
        aspect-ratio: 1/1;
    }

    #footer-logo {
        width: 150px !important;
    }

    .logo-image-2 {
        height: 15px !important;
    }

    .cust-container {
        max-width: 1320px !important;
    }
}

@media (max-width: 767px) {
    .licenses-flags__footer {
        width: 17px;
        height: 17px;
    }

    #navbarSupportedContent {
        position: fixed;
        top: 0;
        left: 15px;
        z-index: 99;
        width: 280px;
        height: 100%;
        background-color: #ddd;
        overflow: auto;
    }

    .cust-ft-footer {
        font-size: 9px !important;
    }

    .menu-overlay {
        display: none;
        background-color: #000;
        bottom: 0;
        left: 0;
        opacity: 0.5;
        filter: alpha(opacity=50);
        /* IE7 & 8 */
        position: fixed;
        right: 0;
        top: 0;
        z-index: 49;
    }

    .center-footer-sm {
        text-align: center;
    }

    .m-auto-sm {
        margin: auto;
    }
}

.navbar-toggler-icon::before {
    font-size: 22px;
}

.offcanvas-end {
    width: 280px !important;
}

/* Burger Menu */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: opacity 0.3s ease;
}

.offcanvas-menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    max-height: 80%;
    background: #f9f9f9;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 99999999;
    transition: bottom 0.3s ease, max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-radius: 10px;
    padding-bottom: 30px;
}

.offcanvas-menu .menu-header {
    padding: 2rem 1rem;
}

.offcanvas-menu .logo {
    max-width: 85px;
}

.offcanvas-menu .menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background-color: #f9f9f9;
}

.offcanvas-menu .menu-item {
    margin-bottom: 1rem;
}

.offcanvas-menu .menu-link {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: bold;
}

/* Submenu */
.submenu {
    display: none;
    padding-left: 20px;
}

.submenu.open {
    display: block;
}

.menu-link {
    cursor: pointer;
}

.offcanvas-menu .menu-footer {
    padding: 1rem;
    border-top: 1px solid #ddd;
}

@media (max-width: 992px) {
    .nav-link {
        padding: 0 !important;
    }

    .dropdown-item {
        padding: 0.25rem 0;
    }
}

/* Active States */
.offcanvas-menu.open {
    bottom: 0;
}

.offcanvas-menu.expanded {
    max-height: 100%;
}

.overlay.show {
    display: block;
    opacity: 1;
}

@media (min-width: 991px) {
    #burger-btn {
        display: none;
    }
}

@media (max-width: 991px) {
    #burger-btn {
        position: relative;
        background-color: #f9f9f9;
        padding: 1px 10px;
        border-radius: 10px;
        margin-top: 5px;
    }

    .navbar-toggler-icon {
        width: 1.5em !important;
        height: auto !important;
    }
}

.dropdown-menu {
    border-radius: 10px !important;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 10px;
    height: 390px;
    width: 67%;
    left: 50%;
    top: 130px;
    transform: translateX(-50%);
}

@media (max-width: 992px) {
    .dropdown-menu {
        padding: 10px;
        height: auto;
        width: 100%;
        left: auto;
        transform: none;
        background-color: #f9f9f9;
    }
}

.dropdown-menu ul {
    background-color: white !important;
    margin-top: 0px !important;
    height: 390px;
    border-radius: 10px;
}

.border-right {
    border-right: 1px solid #ddd;
    /* padding-right: 40px; */
}

.border-left-green {
    border-left: 1px solid #30af85;
    /* padding-right: 40px; */
}

.border-left {
    border-left: 1px solid #ddd;
    /* padding-left: 40px; */
}

html[lang="ar"] .header-content .border-left {
    border-left: 1px solid #ddd !important;
    height: auto !important;
}

.border-left-cust {
    border-left: 1px solid #ddd;
}

.slick-slide {
    height: auto !important;
}

.green-hr {
    border-top: 2px solid #30af85;
}

.page-content {
    margin-top: 140px;
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .page-content {
        margin-top: 130px;
    }
}

@media (max-width: 991px) {
    footer h6 {
        font-size: 14px !important;
    }

    .page-content {
        margin-top: 170px;
    }
}

@media screen and (min-width: 770px) and (max-width: 991px) {
    .page-content {
        margin-top: 170px;
    }
}

.header-content {
    background-color: #fff;
}

#company-dropdown,
#trading-dropdown,
#investors-dropdown,
#partners-dropdown,
#institutions-dropdown,
.dropdown-menu {
    border: 0px;
    box-shadow: none;
    padding: 0px;
}

.dropdown-menu a {
    text-decoration: none !important;
    /* color: var(--secondary-color); */
    /* margin-bottom: ; */
}

.dropdown-toggle::after {
    content: none !important;
}

.rtl {
    direction: rtl !important;
}

[dir="rtl"] .flag-icon {
    margin-left: 0px;
    margin-right: 0 !important;
}

[dir="rtl"] {
    direction: rtl !important;
}

.decoration-none {
    text-decoration: none !important;
}

p.text-lg {
    font-size: 20px !important;
}

.defualt-btn {
    font-weight: 700;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: transparent;
    border-radius: 15px;
}

.dark-divider {
    border-bottom: 1px solid #626262;
}

/* language Changer */

.dropdown {
    /* position: relative; */
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 600px;
    border-radius: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 10px;
    top: 35px;
}

.dropdown-content-direction {
    right: -5px;
}

.dropdown-content-direction-rtl {
    left: -5px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

#lang-changer-btn {
    cursor: pointer;
    font-weight: 400;
    /* color: #30af85; */
    white-space: nowrap;
}

.grey-hr {
    border-top: 2px solid #626262;
}

.text-left {
    text-align: left !important;
}

.flag-icon {
    margin-right: 0px;
}

@media (min-width: 991px) {
    .left-lg-2 {
        position: relative;
        left: 30px;
    }
}

.price-font {
    font-size: 30px !important;
}

.eco-cal {
    width: 100%;
    min-height: 700px;
}

.onhover-showborder {
    border: 1px solid transparent;
}

.onhover-showborder:hover {
    border-color: #000;
}

.onhover-bg-primary:hover {
    background-color: var(--primary-color) !important;
}

.onhover-bg-primary:hover a {
    color: white !important;
}

.onhover-text-white:hover * {
    color: white !important;
}

.cat-filter {
    border: 2px solid #30af85;
    border-radius: 20px;
}

.cat-filter.active {
    background-color: #f0efef;
    border-color: #f0efef !important;
    /* color: var(--secondary-color) !important; */
    /* font-weight: 900 !important; */
}

.text-dark-grey {
    color: #626262;
}

.awardsImg {
    max-height: 120px;
}

.heigth-160 {
    height: 140px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    transform: scale(0.8);
}

.local-img {
    transform: scale(1.75) !important;
}

.fa-chevron-down {
    transition: all 0.4s ease;
}

.fa-chevron-down.active {
    transform: rotate(180deg);
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none !important;
}

.object-fit-cover {
    object-fit: cover;
}

.close-btn {
    font-size: 26px;
    width: 40px;
    height: 40px;
    line-height: 1;
}

.onClickOpenPopup {
    cursor: pointer;
}

.placeholder-primary::placeholder {
    color: var(--primary-color);
}

.placeholder-fw-700::placeholder {
    font-weight: 700;
}

input.border-primary:focus {
    outline: none !important;
}

.border-solid {
    border-style: solid !important;
}

.placeholder-align-center::placeholder {
    text-align: center;
}

.position-y-center {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.ratio-1x78::before {
    padding-top: 78% !important;
}

.page-item.active .page-link {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    color: #fff !important;
}

.page-link,
.page-link:hover {
    color: var(--secondary-color) !important;
}

@media (min-width: 992px) and (max-width: 1299px) {
    .cust-center-container {
        position: relative;
        left: 3%;
    }

    .cust-center-container-ar {
        position: relative;
        right: 3%;
    }
}

@media (min-width: 1300px) and (max-width: 1599px) {
    .cust-center-container {
        position: relative;
        left: 5%;
    }

    .cust-center-container-ar {
        position: relative;
        right: 5%;
    }
}

@media (min-width: 1600px) {
    .cust-center-container {
        position: relative;
        left: 4%;
    }

    .cust-center-container-ar {
        position: relative;
        right: 4%;
    }
}

@media (max-width: 500px) {
    .hero-sec {
        height: 110vh;
    }

    .hero-section {
        height: 100vh;
    }
}

.link-hover:hover,
.link-hover.active {
    color: #30af85 !important;
}

.account-type-btn {
    color: #30af85 !important;
}

.account-type-btn:hover {
    background-color: #30af85 !important;
    color: #fff !important;
}

.defualt-opacity {
    opacity: 0.7;
}

.defualt-opacity:hover {
    opacity: 1;
}

.ribbon {
    position: absolute;
    height: 100px;
}

.join-us-btn {
    background: #30af85;
}

.no-deco {
    color: white;
    text-decoration: none;
}

svg.platforms:hover {
    fill: #30af85;
}

.slick-prev,
.slick-next {
    position: absolute !important;
    top: 50%;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-prev {
    transform: translate(-100%, -50%);
    left: 0;
}

.slick-next {
    transform: translate(100%, -50%);
    right: 0;
}

.global-award .slick-next,
.mobile-arrows .slick-next,
.mobile-arrows .slick-next-assets,
.mobile-arrows .slick-next-accounts {
    right: 0px !important;
}

.global-award .slick-prev,
.mobile-arrows .slick-prev,
.mobile-arrows .slick-prev-assets,
.mobile-arrows .slick-prev-accounts {
    left: 0px !important;
}

.mobile-arrows .slick-next-global {
    right: 1rem !important;
}

.mobile-arrows .slick-prev-global {
    left: 1rem !important;
}

.global-award .slick-prev,
.global-award .slick-next,
.mobile-arrows .slick-prev,
.mobile-arrows .slick-next .mobile-arrows .slick-prev-assets,
.mobile-arrows .slick-next-assets,
.mobile-arrows .slick-prev-global,
.mobile-arrows .slick-next-global,
.mobile-arrows .slick-prev-accounts,
.mobile-arrows .slick-next-accounts,
.mobile-arrows .slick-prev-why-choose,
.mobile-arrows .slick-next-why-choose,
.mobile-arrows .slick-prev-why-choose-cash,
.mobile-arrows .slick-next-why-choose-cash {
    background-color: transparent !important;
}

.global-award i::before,
.mobile-arrows i::before {
    color: #30af85 !important;
}

@media (max-width: 991px) {
    #assets-section .nav-pills .nav-link {
        margin: auto;
        width: 150px !important;
    }
}

@media (max-width: 480px) {

    /* #assets-section .slick-slide{
        width: 358px!important;
    } */
    #assets-section .nav-pills .nav-link {
        width: 200px !important;
    }
}

.join-us-button {
    border-radius: 18px !important;
    border: 2px solid #30af85 !important;
}

.join-us-button-large {
    color: #203c83;
    border: 2px solid #30af85;
    border-radius: 20px;
    font-weight: 700;
    width: 300px !important;
    background: white;
}

.join-us-button:hover,
.join-us-button-large:hover {
    color: #203c83;
}

.btn-icon {
    width: 25px !important;
    object-fit: contain;
}

.box-shadow {
    box-shadow: 0px 0px 7px 0px rgba(48, 48, 48, 0.75);
    -webkit-box-shadow: 0px 0px 7px 0px rgba(48, 48, 48, 0.75);
    -moz-box-shadow: 0px 0px 7px 0px rgba(48, 48, 48, 0.75);
}

.td-image {
    width: 100px;
}

.td-box {
    width: 320px !important;
}

.popup .slick-list,
.popup .slick-track {
    height: 100% !important;
}

.popup .slick-track {
    display: flex !important;
    align-items: center !important;
}

.size-40 {
    font-size: 40px !important;
}

.text-justify * {
    text-align: justify !important;
}

.blog-description p,
.small-desc p,
.takeaways p,
.blog-description ul li {
    font-size: 19px;
    color: #626262;
}

.takeaways-title {
    font-size: 25px !important;
    font-weight: 700;
    color: #01337f !important;
}

.start-your-journey-title {
    font-size: 1.5rem !important;
}

.author-name {
    font-size: 1.8rem !important;
}

.category-title {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
}

.no-risk-title {
    font-size: 2.5rem !important;
    font-weight: 900;
    color: #01337f !important;
}


#withdraw-section-btn,
#deposit-section-btn {
    cursor: pointer;
}

.text-primary-hover {
    color: #30af85 !important;
}

#withdraw-section-btn:hover>div,
#deposit-section-btn:hover>div {
    background-color: #30af85;
}

#withdraw-section-btn:hover .text-primary-hover,
#deposit-section-btn:hover .text-primary-hover {
    color: white !important;
}

.story-box {
    margin-left: 15px;
    margin-right: 15px;
}

#myDropdown {
    margin-top: 10px !important;
}

/* p {
    margin-right: 0.5rem!important;
    margin-left: 0.5rem!important;
} */

/* Account Type Responsive */
#flush-headingOne {
    padding: 0px !important;
}

.account-table-image {
    max-width: 100px;
}

@media (max-width: 767px) {
    #footer-logo {
        width: 100px !important;
    }

    #account-table-title {
        font-size: 15px;
        padding: 0px;
    }

    .narrow-padding {
        padding: 5px;
    }

    .account-table-image {
        max-width: 40px !important;
    }

    .th-image {
        width: 86px;
    }

    #account-content .py-4 {
        font-size: 13px;
    }

    #account-content .py-4:nth-of-type(2),
    #account-content .py-4:nth-of-type(3) {
        width: 90px;
    }

    .border-bottom-none {
        padding: 0px;
    }
}

.xs-link {
    color: #30af85;
    font-weight: 700;
    text-decoration: none;
}

.media-center-banner {
    background-color: #30af85;
    box-shadow: 0px 0px 91px 24px rgba(32, 59, 131, 0.75) inset;
    -webkit-box-shadow: 0px 0px 91px 24px rgba(32, 59, 131, 0.75) inset;
    -moz-box-shadow: 0px 0px 91px 24px rgba(32, 59, 131, 0.75) inset;
}

.media-contact-container {
    border-radius: 18px;
    box-shadow: 10px 10px 30px 10px rgba(32, 59, 131, 0.69);
    -webkit-box-shadow: 10px 10px 30px 10px rgba(32, 59, 131, 0.69);
    -moz-box-shadow: 10px 10px 30px 10px rgba(32, 59, 131, 0.69);
}

.border-rad-20 {
    border-radius: 20px;
}

.fa {
    color: #30af85;
}

/* .share-widget {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.share-widget a {
    margin-bottom: 10px;
} */

.other-courses {
    border: 3px solid #30af85;
    border-radius: 35px !important;
}

.pe-6 {
    padding-right: 6rem;
}

.list-style-none {
    list-style-type: none;
    /* Remove default bullet point */
    padding: 0;
    /* Remove default padding */
}

.list-style-none>li:before {
    content: none;
    /* Hide the bullet point */
}

.btn-green {
    background-color: #30af85 !important;
    border-radius: 30px !important;
    color: white !important;
    padding: 15px;
}

.text-grey {
    color: lightgray;
}

.border-grey-swaps-free {
    border: 1px solid lightgray;
    border-radius: 10px;
}

@media (max-width: 567px) {
    .page-content {
        margin-top: 150px;
    }

    .hero-sec {
        background: url("/img/mobile-banner-hero.webp");
        background-size: cover;
        background-position: center center;
    }

    .market-leader p {
        font-size: 15px !important;
    }

    p {
        font-size: 15px !important;
    }

    a>div>span {
        font-size: 16px !important;
    }

    .size-40,
    .market-leader h2 {
        font-size: 25px !important;
    }

    .partner-text-align {
        text-align: center !important;
    }

    .on-desktop {
        display: none !important;
    }

    .grey-bg-desktop {
        background: white;
    }

    .grey-bg-mobile {
        background: #f6f6f6;
    }

    .contract-specs-points {
        text-align: center;
        border-radius: 99px;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }

    #header-mobile-padding {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .navbar {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (max-width: 991px) {
    footer {
        margin-bottom: 100px !important;
    }

    footer .footer-text-grey {
        color: var(--text-grey) !important;
        font-size: 12px !important;
    }

    footer p {
        font-size: 14px !important;
    }
}

@media (min-width: 567px) and (max-width: 767px) {
    #header-mobile-padding {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .cust-font-1__common {
        font-size: 24px !important;
    }

    .cust-font-2__common {
        font-size: 18px !important;
    }

    .py-3-desktop {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .partner-text-align {
        text-align: left !important;
    }

    .px-5-desktop {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .on-desktop {
        display: block !important;
    }

    .grey-bg-desktop {
        background: #f6f6f6;
    }

    .grey-bg-mobile {
        background: white;
    }

    footer .footer-text-grey {
        font-size: 14px !important;
    }

    footer p {
        font-size: 16px !important;
    }
}

header .sub-menu-title {
    color: var(--primary-color);
}

:root {
    --dark-footer-grey: rgba(112, 112, 112, 1);
}

header,
header ul,
header ol,
header .sub-menu-title,
header .btn {
    font-size: 16px;
}

@media (max-width: 1199px) {
    header {
        font-size: 14px;
    }
}

/* Tablet Styles */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .cust-ft-footer {
        font-size: 10px !important;
    }

    .market-leader p {
        font-size: 16px !important;
    }

    .size-40,
    .market-leader h2 {
        font-size: 30px !important;
    }

    p {
        font-size: 16px !important;
    }

    a>div>span {
        font-size: 16px !important;
    }

    .hom-title {
        font-size: 30px !important;
    }

    #header-mobile-padding {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

.k-grid-header-wrap .k-cell-inner {
    background: #30af85;
    padding-top: 5px;
    padding-bottom: 5px;
}

.k-grid-header-wrap .k-column-title {
    color: white;
}

/* .k-grid-header{
    padding: 0px !important;
  } */

html[lang="ar"] .k-grid-header th:first-child,
html[lang="ar"] .k-grid-header th:last-child {
    border-radius: 0px;
}

html[lang="ar"] .k-grid-header {
    padding-inline-end: 0;
}

.ft-cust {
    font-size: 18px !important;
}

.cust-font-16 {
    font-size: 16px !important;
}

.homepage-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5rem;
    vertical-align: middle;
    border-top: 0.6em solid;
    border-right: 0.6em solid transparent;
    border-bottom: 0;
    border-left: 0.6em solid transparent;
    margin-top: auto;
    margin-bottom: auto;
    color: #30af85 !important;
}

.homepage-arrow.down {
    transform: rotate(180deg);
}

.btn-close {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%2301337f' d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    opacity: 20;
}

.cust-max-w {
    max-width: 125%;
}

.font-light {
    font-weight: 400 !important;
}

.green-hover>a>svg:hover {
    /* fill: #30af85; */
    stroke: #30af85 !important;
}

@media (min-width: 992px) and (max-width: 1122px) {
    #navbarDropdown6 {
        display: flex !important;
        align-items: flex-end !important;
    }

    .nav-item {
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

    .navbar-brand {
        margin: 0px !important;
        padding: 0px !important;
    }

    .homepage-register {
        width: 100px !important;
    }

    .logo-image {
        max-width: 100px;
    }
}

.object-fit-contain-cust {
    object-fit: contain;
}

.flag-icon {
    clip-path: circle();
}

.hero-banner-image {
    background-image: url(https://www.xs.com/webp/hero-banner.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px !important;
}

.width-fit {
    width: fit-content;
}

.homepage-login>a {
    width: 100px !important;
}

.btn-hero {
    background-color: #ffffff;
    font-weight: 700;
    color: #30af85;
    border-radius: 50px;
    border: 1px solid #707070;
    box-shadow: 0px 6px 13px 0px #0000001a;
}

.account-type-title {
    font-size: 16px !important;
}

@media screen and (max-width: 767px) {
    #fc_frame {
        bottom: 120px !important;
    }
}

.event-desc {
    text-align: justify !important;
}

.green-link {
    color: #30af85 !important;
    text-decoration: none;
    font-size: 16px !important;
}

.key-radius {
    border-radius: 30px;
    min-height: 290px;
}

#grace-period-table thead {
    background-color: rgba(241, 241, 241, 1);
    color: #30af85;
}

.swaps-cust thead {
    background-color: rgba(241, 241, 241, 1);
    color: #30af85;
}

#grace-period-table td {
    color: rgba(112, 112, 112, 1);
}

.swaps-cust td {
    color: rgba(112, 112, 112, 1);
}

@media (min-width: 992px) {
    .cust-font-footer {
        font-size: 16px;
    }

    .overflow-x-xl-scroll {
        overflow-x: scroll;
        scroll-behavior: smooth;
    }

    .overflow-x-xl-scroll::-webkit-scrollbar {
        height: 2px;
    }

    .overflow-x-xl-scroll::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
}

.overflow-x-scroll {
    overflow-x: scroll;
    scroll-behavior: smooth;
}

.overflow-x-scroll::-webkit-scrollbar {
    height: 2px;
}

.overflow-x-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

[dir="rtl"] .ar-scale {
    transform: scaleX(-1) !important;
}

.half-border-top-left {
    position: relative;
}

/* .half-border-top-left::before {
    content:'';
    position: absolute;
    top: 0;
    left: 0%;
    width: 20%;
    height: 5px;
    background-color: rgb(241, 206, 140);
}

.half-border-top-left::after {
    content:'';
    position: absolute;
    top: 0%;
    left: 0;
    width: 5px;
    height: 50%;
    background-color: rgb(241, 206, 140);
    transform: translateY (-50%);
} */

.half-border-all {
    position: relative;
}

.half-border-all::before,
.half-border-all::after,
.half-border-all div::before,
.half-border-all div::after {
    content: "";
    position: absolute;
    background-color: #dfcf77;
}

/* Top Border */
.half-border-all::before {
    top: 0;
    left: 0%;
    width: 40%;
    height: 3px;
}

/* Right Border */
.half-border-all::after {
    bottom: 0%;
    right: 0;
    width: 3px;

    height: 20%;
    transform: translateY (-50%);
}

/* Bottom Border */
.half-border-all div::before {
    bottom: 0;
    right: 0%;
    width: 40%;
    height: 3px;
}

/* Left Border */
.half-border-all div::after {
    top: 0;
    left: 0;
    width: 3px;
    height: 20%;
    transform: translateY (-50%);
}

.sponsorship-img,
.lucky-draw-img {
    border-radius: 18px !important;
}

/* Modal location  */
.closeModalBtn {
    background-color: #30af85 !important;
    border: none !important;
}

.closeModalBtn:hover {
    color: #01337f !important;
}

.modal-title {
    color: #01337f !important;
}

.modal-button {
    border: 1px solid;
    border-radius: 25px;
    font-size: 16px !important;
}

.k-link {
    justify-content: center !important;
}

.border-top-15 {
    border-radius: 15px 15px 0px 0px !important;
}

.border-all-15 {
    border-radius: 15px 15px 15px 15px !important;
}

.accordion-button {
    border: 0px !important;
}

.accordion-item:not(:first-of-type) {
    border: 0px !important;
}

.accordion-item {
    border: 0px !important;
}

.accordion-item span {
    margin-left: 30px;
}

.accordion-item:first-of-type .accordion-button {
    border: 0px !important;
}

/* BY BILAL */
.blog-category {
    color: #30af85;
}

.blog-inner-item .blog-title {
    font-size: 45px;
}

.latest-title {
    font-size: 1.6rem;
    color: #01337f;
}

.box-shadow {
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.03),
        0 0 30px 5px rgba(0, 0, 0, 0.03), 0 0 30px 5px rgba(0, 0, 0, 0.03);
}

.moreBtn {
    border-radius: 20px;
    background-color: #30af85;
    border-color: #30af85;
    width: 130px;
}

.moreBtn:hover {
    color: inherit;
    background-color: #30af85 !important;
    border-color: #30af85 !important;
}

.grey-text {
    color: #707070 !important;
}

.cat-filter {
    text-decoration: none !important;
}

.sticky-screen-form {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    z-index: 1000;
    transition: 0.3s;
}

.sticky-screen-form.is-sticky {
    position: fixed;
    width: 22%;
    top: 70px;
    z-index: 1000;
    transition: 0.3s;
}

.sticky-screen-form.stopped {
    position: absolute;
    width: 22%;
    top: auto;
    transition: 0.3s;
}

.animated-link {
    position: relative;
    text-decoration: none;
    color: #30af85;
}

.animated-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #30af85;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.animated-link:hover::after {
    transform: scaleX(1);
}

.journey-ic {
    width: 100px;
}

.blog-description a {
    color: #30af85 !important;
    text-decoration: none;
    transition: all ease-in-out 0.2s;
}

.blog-description a:hover {
    border-bottom: solid 2px #30af85 !important;
    padding-bottom: 1px;
}

.accordion-button {
    border: 0px !important;
}

.accordion-item:not(:first-of-type) {
    border: 0px !important;
}

.accordion-item {
    border: 0px !important;
}

.accordion-item span {
    margin-left: 30px;
}

.accordion-item:first-of-type .accordion-button {
    border: 0px !important;
}

/* BY BILAL */
.blog-category {
    color: #30af85;
}

.blog-inner-item .blog-title {
    font-size: 45px;
}

.latest-title {
    font-size: 1.6rem;
    color: #01337f;
}

.box-shadow {
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.03),
        0 0 30px 5px rgba(0, 0, 0, 0.03), 0 0 30px 5px rgba(0, 0, 0, 0.03);
}

.moreBtn {
    border-radius: 20px;
    background-color: #30af85;
    border-color: #30af85;
    width: 220px;
}

.moreBtn:hover {
    color: inherit;
    background-color: #30af85 !important;
    border-color: #30af85 !important;
}

#blog-content .icon-h2,
#blog-content .icon-h3 {
    width: 10px;
    height: 10px;
    margin-right: 5px;
    vertical-align: middle;
}

.grey-text {
    color: #707070 !important;
}

.cat-filter {
    text-decoration: none !important;
}

.animated-link {
    position: relative;
    text-decoration: none;
    color: #30af85;
}

.animated-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #30af85;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.animated-link:hover::after {
    transform: scaleX(1);
}

.journey-ic {
    width: 100px;
}

.blog-description a {
    color: #30af85 !important;
    text-decoration: none;
    transition: all ease-in-out 0.2s;
}

.blog-description a:hover {
    border-bottom: solid 2px #30af85 !important;
    padding-bottom: 1px;
}

.blog-description td {
    border-width: 1px !important;
}

.blog-description td,
.blog-description th {
    border-width: 1px !important;
    padding: 5px !important;
}

.blog-description td {
    border-width: 1px !important;
}

.blog-description td,
.blog-description th {
    border-width: 1px !important;
    padding: 5px !important;
}

#blog-content .blog-description table {
    width: 100% !important;
    table-layout: auto !important;
}

#blog-content table[border="1"]{
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
}

#blog-content .blog-description table {
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
    table-layout: auto;
    border-collapse: collapse;
    word-break: break-word;
}

#blog-content .blog-description table td,
#blog-content .blog-description table th {
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 772px) {
    #blog-content .blog-description table {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        border: inherit;
    }
}

#blog-content .blog-description ul {
    padding-left: 2rem !important;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 30px;
    height: 30px;
    background: #ddd;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    z-index: 1;
}

.slick-prev {
    left: -40px;
}

.slick-next {
    right: -40px;
}

@media (max-width: 567px) {
    .expos .slick-next {
        right: -20px !important;
    }

    .expos .slick-prev {
        left: -20px !important;
    }
}

.slick-prev:hover,
.slick-next:hover {
    background: #aaa;
}

.search-bar-form {
    width: 100%;
}

.search-bar-form button {
    background-color: transparent;
    outline: none;
    border: none;
}

.search-bar {
    border-radius: 30px;
    background-color: #fff;
    color: #30af85;
    outline: none;
    border: 1px solid #30af85;
    width: 70%;
    padding: 10px 50px 10px 20px;
}

.search-bar-ar {
    padding: 10px 20px 10px 50px !important;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.home-search-icon,
.cancel-icon {
    cursor: pointer;
}

.cancel-icon {
    display: none;
    position: absolute;
    right: 0px;
    top: -10px;
}

.on-mobile {
    display: none !important;
}

@media (max-width: 992px) {
    .on-mobile {
        display: block !important;
    }
}

@media (max-width: 992px) {
    .cancel-icon {
        display: none;
        position: absolute;
        right: 10px;
        top: 10px;
    }
}

.search-input {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 54px;
    padding: 8px 15px;
    font-size: 16px;
    border-radius: 5px;
    outline: none;
    border: none;
    background-color: #f9f9f9;
    opacity: 0;
    z-index: 10;
    transition: width 0.3s ease, opacity 0.3s ease;
    z-index: 9999;
}

[dir="rtl"] .search-input {
    right: auto;
    left: 50px;
}

.search-container.active .search-input {
    width: 580px;
    opacity: 1;
}

@media (min-width: 1270px) {
    .search-container.active .search-input {
        width: 650px;
    }
}

[dir="rtl"] .search-container.active .search-input {
    left: 50px;
}

.search-container.active .navbar-items {
    opacity: 0;
    pointer-events: none;
}

.search-container.active .home-search-icon {
    display: none;
}

.search-container.active .cancel-icon {
    display: block;
}

@media (max-width: 992px) {
    .cust-font-footer {
        font-size: 12px;
    }

    .search-container {
        display: block;
        text-align: right;
    }

    .home-search-icon {
        padding-right: 10px;
    }

    [dir="rtl"] .home-search-icon {
        left: 0 !important;
    }

    .search-input {
        position: absolute;
        right: 50px;
        top: 25px;
        transform: translateY(-50%);
        width: 70% !important;
        padding: 7px 10px;
        font-size: 16px;
        border-radius: 5px;
        outline: none;
        border: none;
        background-color: #f9f9f9;
        opacity: 0;
        z-index: 10;
        transition: width 0.3s ease, opacity 0.3s ease;
    }

    /* #homesearchicon{
        display: none;
    } */
    #cancel-icon {
        display: none;
    }

    .search-container {
        width: 95%;
        height: auto;
        margin-top: 5px;
        background-color: #f9f9f9;
        border-radius: 10px;
    }

    html[lang="ar"] .search-container {
        width: 90%;
    }

    .search-input {
        opacity: 1;
        position: static;
        transform: none;
        height: auto;
        width: 100% !important;
    }
}

.sub-menu-title {
    margin-bottom: 0px;
    padding: 0.25rem 0rem;
    color: #30af85;
}

@media (max-width: 767px) {
    .search-bar {
        margin: 0 auto;
    }
}

.search-bar::placeholder {
    color: #30af85;
}

.btn-search {
    position: relative;
}

.search-icon {
    width: 25px;
    height: 25px;
    position: absolute;
    top: -10px;
    left: -50px;
}

.search-icon-ar {
    left: 50px;
}

.search-icon:hover {
    cursor: pointer;
}

@media (max-width: 767px) {
    .search-icon {
        left: -100px;
    }

    .search-icon-ar {
        left: 100px;
    }
}

#helpcenter .category {
    border: 1px solid #eaeaea;
    margin: 10px 0;
    padding: 15px;
    background-color: #f5f5f5;
    cursor: pointer;
}

#helpcenter .category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #003e6b;
    font-size: 20px;
}

#helpcenter .subcategory-list {
    margin-top: 10px;
    padding-left: 20px;
}

#helpcenter .toggle-icon {
    font-size: 14px;
    color: #0e8a45;
}

#helpcenter .category {
    border-radius: 10px;
    background-color: #f3f3f3;
}

#helpcenter .arrow-down {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

#helpcenter .rotate {
    transform: rotate(180deg);
}

#helpcenter li {
    text-decoration: none !important;
    list-style: none !important;
    color: #707070 !important;
}

#helpcenter li a {
    text-decoration: none !important;
    color: #707070 !important;
}

#helpcenter li a:hover {
    text-decoration: underline !important;
    list-style: none !important;
    color: #30af85 !important;
}

#helpcenter-subcategory .subCategory-container {
    background-color: #30af851a;
    border-radius: 10px;
    padding: 20px 40px;
}

#helpcenter-subcategory .title h1 {
    font-weight: 400 !important;
    color: #003e6b !important;
    font-size: 26px !important;
}

#helpcenter-subcategory li {
    list-style: none;
}

#helpcenter-subcategory ul {
    padding: 0;
}

#helpcenter-subcategory li a {
    text-decoration: none !important;
    color: #707070 !important;
}

#helpcenter-subcategory li a:hover {
    text-decoration: underline !important;
    list-style: none !important;
    color: #30af85 !important;
}

#helpcenter-question h1 {
    font-weight: 600;
    color: #003e6b;
    font-size: 26px;
}

#helpcenter-search .no-result {
    border-radius: 10px;
}

#helpcenter-search li a {
    text-decoration: none !important;
    color: #707070 !important;
}

#helpcenter-search li a:hover {
    text-decoration: underline !important;
    list-style: none !important;
    color: #30af85 !important;
}

#helpcenter-search .search-results {
    font-size: 20px;
}

.top-round {
    border-radius: 10px 10px 0px 0px;
}

.modal-header .btn-close {
    margin: 0px !important;
}

.arrow {
    transition: transform 0.5s ease;
}

.flipped {
    transform: rotate(180deg);
}

.justify-content-lg-between {
    justify-content: unset !important;
}

.leverage-table .justify-content-lg-between,
#account-section .justify-content-lg-between {
    justify-content: space-between !important;
}

/* NEW ACCOUNT TYPES STYLES */

.account-types h2 {
    font-size: 2rem;
    margin-bottom: 0 !important;
}

.account-types .account-card {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    padding-top: 0px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.account-types .account-icon {
    position: relative;
    width: 100%;
    margin: 0 auto 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.account-types .icon {
    width: 100%;
}

.account-types .account-details h2 {
    font-size: 1.2rem;
    color: #002f6c;
    text-align: left;
    margin-bottom: 8px;
}

.account-types .subheading {
    color: #b1b1b1;
    font-size: 16px;
    margin-bottom: 16px;
}

.account-types .description {
    font-size: 16px;
}

.account-types .account-details p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
}

.account-types .account-details strong {
    color: #002f6c;
}

.account-types .details-button {
    width: fit-content;
    display: block;
    padding: 10px 40px;
    background-color: #30af85;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.account-types .details-button:hover {
    background-color: #28976f;
}

.account-types .details-button::after {
    content: "→";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.account-types .details-button:hover::after {
    right: 10px;
    opacity: 1;
}

.account-types .details-button span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.account-types .details-button:hover span {
    transform: translateX(-5px);
}

.account-types .account-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.account-types .sub-title {
    font-size: 16px;
    font-weight: 400;
}

.account-types .account-tabs {
    display: flex;
    justify-content: space-around;
    width: 70%;
    margin: 0 auto;
}

.account-types .account-tabs .tab img {
    width: 80px;
    height: 80px;
    margin-top: 10px;
}

.account-types .tab {
    text-align: center;
}

.account-types .tab:hover {
    cursor: pointer;
}

.account-types .tab p {
    font-size: 0.9rem;
    color: #333;
}

.account-types .tab .icon.active img {
    border: 2px solid #30af85;
    /* padding: 5px; */
    border-radius: 10px;
}

.account-types .tab.active p {
    color: #002f6c;
    font-weight: bold;
}

.account-types .account-content {
    display: none;
}

.account-types .account-content.active {
    display: block;
}

.account-types .account-content p {
    font-size: 16px;
}

/* .account-types .tab-menu {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
} */

.account-types .tab-menu {
    display: flex;
    flex: 0 0 auto;
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    position: relative;
    width: max-content;
    gap: 220px;
}

.account-types .tab-menu::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    /* Start from the very left of the UL */
    width: 100%;
    /* Stretches to the UL content width */
    height: 2px;
    background-color: #ccc;
}

.account-types .tab-item {
    padding: 10px 20px;
    padding-top: 0;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.account-types .tab-item .item {
    font-size: 20px;
    color: #888;
}

.account-types .tab-item a.active {
    color: #30af85;
    font-weight: bold;
}

/* .account-types .tab-menu::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: #ccc;
} */

/* .account-types .tab-menu::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 2px;
    background-color: #ccc;
} */

.account-types .tab-item a.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #30af85;
    transition: width 0.3s ease;
}

.account-types .dynamic-icon {
    width: 330px !important;
    height: 330px !important;
    border-radius: 20px;
}

.burger-tabs:hover {
    cursor: pointer;
}

@media (max-width: 992px) {
    .account-types .tab-item .item {
        font-size: 16px;
        color: #888;
    }

    .account-types .dynamic-icon {
        width: 85% !important;
        height: auto !important;
        margin-top: 20px;
    }

    .account-types .account-tabs {
        margin-top: 0px;
        margin-bottom: 15px;
        width: 100%;
    }

    .account-types .account-tabs .tab img {
        width: 60px;
        height: 60px;
        margin-top: 0;
    }

    .account-types .details-button {
        width: 100%;
        font-size: 13px;
    }

    .account-types .details-button::after {
        font-size: 18px;
    }

    .account-types .account-title {
        font-size: 22px;
    }

    .account-types h2 {
        font-size: 22px;
    }

    /* .account-types .tab-menu::before {
        left: 5%;
        width: 90%;
    } */
    .account-types .tab-menu {
        gap: 10px !important;
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .account-types .tab-menu {
        gap: 50px !important;
        width: 100%;
    }

    .dropdown-menu {
        top: 120px !important;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .account-types .tab-menu {
        gap: 50px !important;
        width: 100%;
    }
}

.slick-prev .slick-next {
    display: none !important;
}

@media screen and (min-width: 993px) and (max-width: 1024px) {
    #header-mobile-padding {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .dropdown-menu {
        width: 90%;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .dropdown-menu {
        width: 80%;
    }
}

.cust-faq__faq {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.shadow__faq {
    box-shadow: none !important;
}

@media screen and (min-width: 993px) and (max-width: 1199px) {
    .search-container.active .search-input {
        width: 400px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .search-container.active .search-input {
        width: 500px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
    .dropdown-menu {
        width: 80%;
    }
}

footer {
    font-size: 14px;
}

.text-highlight {
    color: #30af85 !important;
}

.search-results {
    display: none;
    border: 1px solid #ccc;
    background: white;
    top: 135px;
    left: calc(47% - var(--search-width) / 2);
    position: absolute;
    border-radius: 10px;
    width: var(--search-width);
}

.search-results a {
    color: black;
    border-radius: 6px;
}

.search-results a:hover {
    background-color: #f1f1f1;
}

.search-results .see-more-results {
    text-decoration: none;
}

.search-results .see-more-results:hover {
    background-color: #fff;
}

.search-results hr {
    background-color: var(--secondary-color);
}

.search-result {
    font-size: 13px !important;
}

.min-height__faq {
    min-height: 7rem;
}

.ft-14px {
    font-size: 14px;
}

.text-grey__why-choose-us {
    color: var(--text-grey) !important;
}

.text-title__why-choose-us {
    color: var(--secondary-color-dark) !important;
}

.bg-border__why-choose-us {
    background-color: var(--neutral-color-lighter) !important;
    border: none !important;
    border-radius: 8px !important;
}

.leverage__cards {
    background-color: var(--neutral-color-lighter) !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 2rem 1rem;
}

@media (max-width: 991px) {
    .leverage-table .justify-content-center {
        justify-content: center !important;
    }
}

.leverage__cards p {
    min-height: 120px;
    display: flex;
    align-items: flex-start;
}

#equity-table .green-td {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-top: solid 1px #fff !important;
}

#equity-table td {
    padding: 2rem 1rem !important;
}

table#equity-table td:not(.colOne) {
    border: solid 1px var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

table#equity-table {
    table-layout: auto !important;
    border: transparent !important;
}

.pd__whychoose {
    padding: 0 16px 16px 20px !important;
}

.pd-ar__whychoose {
    padding: 0 1rem 1rem 0 !important;
}

.rediusTpLf {
    border-radius: 40px 0 0 0 !important;
}

.rediusBtmLf {
    border-radius: 0 0 0 40px !important;
}

[dir="rtl"] .rediusTpLf {
    border-radius: 0 40px 0 0 !important;
}

[dir="rtl"] .rediusBtmLf {
    border-radius: 0 0 40px 0 !important;
}

/* CSR header */
.csr-header-container {
    gap: 5px;
}

.csr-header-image {
    flex-shrink: 0;
}

.csr-header-image img {
    object-fit: cover;
    border-radius: 5px;
}

.csr-header-text {
    flex-grow: 1;
    white-space: normal;
    word-break: break-word;
}

@media (min-width: 992px) {
    .text-with-image {
        padding-top: 10px;
    }
}

@media (max-width: 992px) {
    .search-results {
        top: 145px;
        left: 10%;
        width: 80%;
    }
}

.accordion-button__faq::before {
    background-image: url("/svgs/faq-down.svg") !important;
}

[dir="rtl"] .accordion-button::before {
    right: 90% !important;
}

.licenses-flags1__footer {
    width: 26px;
    aspect-ratio: 1/1;
}

.cust-border-radius-8 {
    border-radius: 8px !important;
}

.security-images__footer {
    width: 100%;
}

.lang-dropdown-menu {
    top: 40px;
}

@media (max-width: 374px) {
    .cust-font-footer {
        font-size: 10px;
    }

    .licenses-flags__footer {
        width: 15px;
    }

    .cust-ms__footer {
        margin-left: 0rem;
        margin-right: 0rem;
    }
}

@media (min-width: 375px) {
    .cust-ms__footer {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }
}

@media (min-width: 1123px) and (max-width: 1199px) {
    .logo-image {
        max-width: 100px;
    }

    .nav-item {
        margin: 0 !important;
    }

    .navbar-brand {
        margin-right: 5px !important;
    }
}

@media (min-width: 1025px) {
    .cust-ft-footer {
        font-size: 12px !important;
    }
}

@media (max-width: 360px) {
    .mobile-small-screen {
        padding-left: 10px !important;
    }

    html[lang="ar"] .mobile-small-screen {
        padding-left: 0px !important;
        padding-right: 5px !important;
    }
}

html[lang="jp"] .show__whychoose {
    max-height: 500px !important;
    opacity: 1 !important;
}

.equity-hmr-table td {
    border: 1px solid var(--primary-color) !important;
    text-align: center;
    padding: 12px;
    color: rgba(9, 9, 121, 1);
    font-weight: 800;
}

.equity-hmr-table th {
    width: 300px;
    color: white;
    background-color: rgb(48, 175, 133);
    padding: 12px;
    text-align: center;
    border: 1px solid white !important;
    font-weight: 800;
}

[dir="rtl"] .equity-hmr-table .left-corner {
    border-radius: 0 23px 0 0;
}

[dir="rtl"] .equity-hmr-table .right-corner {
    border-radius: 23px 0 0 0;
}

.equity-hmr-table .left-corner {
    border-radius: 23px 0 0 0;
}

.equity-hmr-table .right-corner {
    border-radius: 0 23px 0 0;
}