@font-face {
    font-family: slick;
    src: url(../fonts/slick.eot);
    src: url(../fonts/slick.eot?#iefix) format("embedded-opentype"), url(../fonts/slick.woff) format("woff"), url(../fonts/slick.ttf) format("truetype"), url(../fonts/slick.svg#slick) format("svg");
    font-weight: 400;
    font-style: normal
}

/********** CSS variables **********/
:root {
    --index: calc(1vw + 1vh);

    --primary: #8DC63F !important;
    --secondary: #006838;
    --black: #000000;
    --white: #FFFFFF;
    --transparent: transparent;

    --primary-soft: #FFF2F3;

    --Text-secondary: #595959;

    --neutrals-50: #FCFCFC;
    --neutrals-100: #F5F5F5;
    --neutrals-200: #F0F0F0;
    --neutrals-300: #D9D9D9;
    --neutrals-400: #BFBFBF;
    --neutrals-500: #8C8C8C;
    --font-family-regular: 'Noto Sans', sans-serif;
    --font-family-medium: 'Noto Sans Medium', sans-serif;
    --font-family-bold: 'Noto Sans Bold', sans-serif;


    --transition: ease-out .3s;
}

/********** CSS variables **********/

body {
    font-family: 'Noto Sans', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 16px !important;
    line-height: 26px;
    color: var(--Text-secondary) !important;
    font-weight: 400;
}

img {
    display: block;
    box-sizing: border-box;
}

main {
    /* margin-left: 320px;
    width: calc(100% - 320px); */
    width: 100%;
}

@media (max-width: 1024px) {
    main {
        margin-left: 0;
        width: 100%;
    }
}

.section {
    /* padding: 128px 0; */
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .section {
        /* padding: 96px 0; */
    }
}

@media (max-width: 640px) {
    .section {
        /* padding: 80px 0; */
        padding: 32px 0;
    }
}

.heading-1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 62px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.5px;
    color: var(--black);
}

.heading-2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.5px;
    color: var(--black);
}

.heading-3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.5px;
    color: var(--black);
}

.heading-4 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 110%;
    color: var(--black);
}

.heading-5 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
    color: var(--black);
}

.heading-6 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    color: var(--black);
}

.heading-7 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.25px;
    color: var(--black);
}

.heading-8 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.25px;
    color: var(--black);
}


.dropdown-item.active,
.dropdown-item:active {
    color: var(--white);
    text-decoration: none;
    background-color: var(--primary);
}

@media (max-width: 640px) {
    .heading-1 {
        font-size: 40px;
        line-height: 48px;
    }

    .heading-3 {
        font-size: 28px;
    }
}

#cookie-banner {
    display: none;
}


/********** Btn start **********/
.btn {
    font-family: 'Noto Sans', sans-serif;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 100%;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
}

.btn:not(:disabled):not(.disabled){
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.btn-wrap {
    display: flex;
}

.btn-lg {
    min-height: 52px;
    font-size: 18px;
    padding: 0 40px;
}

.btn-md {
    min-height: 48px;
    font-size: 16px;
    padding: 0 32px;
}

.btn-sm {
    min-height: 44px;
    font-size: 14px;
    padding: 0 24px;
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    text-decoration: none;
    color: var(--primary);
    background-color: var(--transparent);
}

.btn-primary:focus-visible {
    border: 1.5px solid var(--white);
    box-shadow: 0px 0px 0px 3px #FF515E66;
    outline: none;
}

.btn-transparent {
    color: var(--black);
    background-color: var(--transparent);
    border: 1.5px solid var(--transparent);
}

.btn-transparent:hover,
.btn-transparent:focus {
    text-decoration: none;
    border: 1.5px solid var(--black);
}

.btn-transparent:focus-visible {
    border: 1.5px solid var(--white);
    box-shadow: 0px 0px 0px 3px #00000066;
    outline: none;
}

.btn.btn-secondary {
    color: var(--primary);
    background-color: var(--transparent);
    border: 1.5px solid var(--primary);
    border-radius: var(--border-radius--button, 8px);
    min-width: 178px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
}

.btn.btn-secondary.btn-sm {
    font-weight: 400;
    font-size: 14px;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    text-decoration: none;
    color: var(--white);
    background-color: var(--primary);
    border: none;
}

.btn-secondary:focus-visible {
    border: 1.5px solid var(--white);
    box-shadow: 0px 0px 0px 3px #FF515E66;
    outline: none;
}

.btn.btn-white {
    color: var(--black) !important;
    background-color: var(--white) !important;
    border: 1.5px solid var(--white);
    border-radius: 8px;
    display: flex ! important;
    display: flex;
    height: 52px;
    padding: 0px var(--Components-Buttons-padding-button-lg, 40px);
    justify-content: center;
    align-items: center;
    color: var(--Text-primary, #000);
    text-align: center;

    /* Button/button-lg */
    font-size: var(--Font-Size-Button-button--lg, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 18px */
}

.btn-white:hover,
.btn-white:focus {
    text-decoration: none;
    color: var(--white);
    background-color: var(--transparent);
}

.btn-white:focus-visible {
    border: 1.5px solid var(--white);
    box-shadow: 0px 0px 0px 3px #FFFFFF66;
    outline: none;
}

.btn-white-outline {
    color: var(--white);
    background-color: var(--transparent);
    border: 1.5px solid var(--white);
}

.btn-white-outline:hover,
.btn-white-outline:focus {
    text-decoration: none;
    color: var(--black);
    background-color: var(--white);
}

.btn-white-outline:focus-visible {
    color: var(--black);
    background-color: var(--white);
    border: 1.5px solid var(--white);
    box-shadow: 0px 0px 0px 3px #FFFFFF66;
    outline: none;
}

@media (max-width: 1024px) {}

@media (max-width: 640px) {}

/********** Btn end **********/

/********** 404 start **********/
.section-404 {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 124px;
}

.section-404_img {
    display: block;
    max-width: 100%;
    margin: auto;
    margin-bottom: 16px;
}

.section-404_title {
    text-align: center;
    margin-bottom: 16px;
}

.section-404_text {
    text-align: center;
    margin-bottom: 40px;
}

.section-404 .btn {
    min-width: 192px;
    margin: auto;
}

/********** 404 end **********/

/********** section-ready start **********/
.section-ready {
    background: var(--primary);
}

.section-ready .btn-white {
    border-radius: 6.837px;
    background: var(--Link-light, #FFF);
    display: flex;
    height: 44.2px;
    padding: 0px var(--Components-Buttons-padding-button-lg, 40px);
    justify-content: center;
    align-items: center;
    color: var(--Text-primary, #000);
    text-align: center;

    /* Button 2  Desktop */
    font-family: "Noto Sans";
    font-size: var(--Font-Size-Button-button--md, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 16px */
}

.ready_title {
    color: var(--white);
    font-size: 60px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
    max-width: 830px;
}

.ready_text {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: var(--white);
    text-align: center;
    margin-bottom: 32px;
}

.ready_btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px 20px;
}

@media (min-width: 1025px) {
    .section-ready {
        padding: 8.889vw 0;
    }
}

@media (max-width: 1024px) {
    .ready_title {
        font-size: 54px;
    }

    .heading-1 {
        font-size: 48px;
    }

    .heading-2 {
        font-size: 36px;
    }

    .heading-3 {
        font-size: 32px;
    }

}

@media (max-width: 640px) {
    .ready_title {
        font-size: 40px;
    }

    .ready_btn-wrap {
        flex-direction: column;
    }

    .heading-2 {
        font-size: 30px;
    }
}

/********** section-ready end **********/

/********** Footer start **********/
.footer {
    background: #FAFAFA;
    padding-top: 64px;
    padding-bottom: 32px;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    gap: 56px 24px;
}

.footer .footer-body {
    margin-top: 50px;
}

.footer .custom-logo-link {
    width: 160px !important;
}

.footer_logo {}

.social-networks {
    display: flex;
    gap: 16px;
}

.footer_menu {
    width: 100%;
}

.footer_menu .menu {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px; */

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.footer_menu .menu-item-has-children {
    /* min-width: 22%; */
}

.footer_menu .menu-item a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 12px;
    transition: var(--transition);
    /* Trading Accounts */


    /* Body/Default/body-md */
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    /* identical to box height, or 21px */

    color: #595959;


    /* Inside auto layout */
    flex: none;
    order: 2;
    align-self: stretch;
    flex-grow: 0;

    /* Legal */

    width: 158px;
    height: 21px;

    /* Body/Default/body-md */
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    /* identical to box height, or 21px */

    color: #595959;


    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;


}

.footer_menu .menu-item-has-children>a {
    color: var(--black) !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    padding: 0;
    margin-bottom: 16px;
}

.footer_menu .menu-item-has-children>a:hover {
    text-decoration: none;
}

.footer_bottom {
    padding-top: 52px;
}

.footer_text {
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    text-align: justify;
    color: #8C8C8C;
    margin-bottom: 48px;
}

a {
    color: var(--secondary);
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer_text a {
    color: var(--primary);
}

.footer_menu .menu-item .sub-menu .menu-item.current-menu-item a {
    color: var(--primary) !important;
}

.footer_mwali {
    display: flex;
    justify-content: center;
    padding-bottom: 48px;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    color: var(--black);
    border-top: 1px solid #F0F0F0;
    padding: 48px 0 24px 0;
}

.up__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--neutrals-200);
    border-radius: 8px;
}

.up__btn:hover {
    background: var(--primary);
    border: 1px solid var(--primary);
    transition: var(--transition);
}

.up__btn:hover svg path {
    fill: white;
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .footer {
        padding: 48px 32px 75px 32px;
    }

    .footer_top {
        flex-direction: column;
    }

    .footer_menu {
        max-width: inherit;
    }

    .footer_menu .menu-item-has-children {
        width: calc(25% - 18px);
    }



    .footer_bottom {
        padding-top: 44px;
    }

    .footer_text {
        margin-bottom: 40px;
    }

    .footer_mwali {
        padding-bottom: 40px;
    }

    .copyright {
        padding: 40px 0 16px 0;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 48px 40px 75px 40px;
    }

    .footer_top {
        gap: 48px 24px;
    }

    .footer_menu .menu {
        flex-wrap: wrap;
    }

    .footer_menu .menu-item-has-children {
        width: 100%;
    }

    .footer_menu .menu-item-has-children:not(:last-child) {
        padding-bottom: 28px;
    }

    .footer_bottom {
        padding-top: 36px;
    }

    .footer_text {
        margin-bottom: 24px;
    }

    .footer_mwali {
        padding-bottom: 24px;
    }

    .copyright {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 12px 0;
    }
}

/********** Footer end **********/

/********** For all pages **********/
.three-line-truncate .rt-reading-time {
    display: none !important;
}

.mt-8 {
    margin-top: 8px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-24 {
    margin-top: 24px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mt-48 {
    margin-top: 48px;
}

.mt-48 {
    margin-bottom: 48px;
}

.mt-64 {
    margin-top: 64px;
}

.mb-64 {
    margin-bottom: 64px;
}

@media (max-width: 640px) {
    .mt-64 {
        margin-top: 48px;
    }

    .mb-64 {
        margin-bottom: 48px;
    }
}

tbody tr:not(.section-header-row):hover {
    background-color: #8DC63F40 !important;
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
}



/********** For all pages end **********/

.cryptoboxes .cc-ticker-round {
    border-radius: 0 !important;
}

/* hide Trading Education & Trading Central & Risk Management Tools page from all menus */
/* hide Economic Calendar, Education, Chart Analysis page from all menus */
#mainNavbar .menu-item-has-children:nth-child(5) .menu-item:not(:nth-child(5)),
.footer_menu .menu-item-has-children:nth-child(4) .menu-item:not(:nth-child(5)) {
    display: none;
}

/* Trading app hidden from the top and footer menu */
#mainNavbar .menu-item-has-children:nth-child(1) .menu-item:nth-child(2),
.footer_menu .menu-item-has-children:nth-child(1) .menu-item:nth-child(3) {
    display: none;
}