@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primaryColor: #0C2780;
    --whiteColor: #fff;
    --blackColor: #000;
    --seconderColor: #C9AC7A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    ;
    font-size: 16px;
    font-weight: 400;
    background: var(--whiteColor);
    color: #5A5A5D;
    line-height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

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

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

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flex-col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gap-x-26 {
    row-gap: 26px;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor);
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primaryColor);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*======= header-area style =======*/

.header-area {
    padding-top: 35px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: 0.3s;
}

.header-area.HeaderFixed {
    padding-block: 17.5px;
    background: #F2F2F2;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.nevbarLeft {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nevbarLeft .divider {
    width: 1px;
    height: 25px;
    background: #B7BDC0;
}

.nevbarLeft ul {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nevbarLeft ul li a {
    color: #5A5A5D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    white-space: nowrap;
}

.nevbarLeft ul li a:hover {
    color: var(--primaryColor);
}

/* Dropdown Menu Styles */
.nevbarLeft ul li.has-dropdown {
    position: relative;
}

.nevbarLeft ul li.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 180px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nevbarLeft ul li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nevbarLeft ul li.has-dropdown .dropdown-menu li {
    width: 100%;
    padding: 0;
}

.nevbarLeft ul li.has-dropdown .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #5A5A5D;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 0;
}

.nevbarLeft ul li.has-dropdown .dropdown-menu li a:hover {
    background: #F5F5F5;
    color: var(--primaryColor);
}

/* Mobile Dropdown Styles */
.navbar-nav .nav-item.has-dropdown .mobile-dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 10px 0 10px 20px;
    margin-top: 0;
}

.navbar-nav .nav-item.has-dropdown.active .mobile-dropdown {
    display: block;
}

.NavRight {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-Wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-btn a {
    color: #5A5A5D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.login-btn a:hover {
    color: var(--primaryColor);
}

.startBtn a {
    padding: 15px 20px;
    min-width: 182px;
    background: #C8AB7A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.SMN_effect-101 a {
    border: none;
    overflow: hidden;
    z-index: 1;
    transition: all .5s cubic-bezier(1, 0.15, 0.34, 1.03);
    position: relative;
}

.SMN_effect-101 a:before {
    content: "";
    background: #B69A69;
    border-radius: 50%;
    padding: 18%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate3d(-50%, -50%, 0) scale(0);
    transition: transform .5s cubic-bezier(1, 0.15, 0.34, 1.03);
}

.SMN_effect-101 a:hover:before {
    transform: translate3d(-50%, -50%, 0) scale(3);
}

.SMN_effect-101 a span {
    display: block;
    position: relative;
    z-index: 3;
}

.MobileNavleft {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.nav-item .nav-link {
    color: #5A5A5D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

/* header area style end hare  */

.footer-area {
    padding-top: 80px;
    padding-bottom: 20px;
}

.footer-wrapper {
    max-width: 1170px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footerTop {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.footerLeft {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 254px;
}

.footerAbout p {
    color: #7B7B7D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
}

.footerRight {
    display: flex;
    gap: 100px;
}

.footerLinkBlock {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footerLinkBlock h4 {
    color: #BC9E6F;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.footerLinkBlock ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footerLinkBlock ul li a {
    color: #5A5A5D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.footerLinkBlock ul li a:hover {
    color: var(--primaryColor);
}

.contactList li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footerBottom {
    padding-block: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #EFEFEF;
}

.footerSocial ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footerSocial ul li a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(90, 90, 93, 0.20);
}

/*============ footer style end hare =========== */

/*============ hero area start hare ======== */

.hero-area {
    background: url(../images/hero4x.png) no-repeat;
    background-color: #fff;
    background-size: 100% 100%;
}

.hero810 {
    min-height: 680px;
}

.hero-wrapper {
    position: relative;
    display: flex;
    align-items: start;
}

.indicecHero {
    padding-top: 194px;
}

.heroLeft {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 468px;
    padding-top: 26px;
}

.heroLeft h2 {
    color: #112643;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 129.63%;
    max-width: 294px;
}

.heroLeft h2 span {
    color: var(--seconderColor);
}

.heroLeft p {
    color: #112643;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.hero-image {
    position: absolute;
    right: -30px;
    top: 194px;
}

/*============ hero area end hare ========= */

/*======== what is tranding area start hare ====== */

.whatIsTranding {
    padding-top: 138px;
    padding-bottom: 80px;
}

.whatTradeTop {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #073578;
}

.whatTradeTopLeft {
    display: flex;
    flex-direction: column;
    max-width: 548px;
    flex: 1;
    gap: 20px;
}

.sectionTitle {
    color: #112643;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.sectionTitle span {
    color: var(--seconderColor);
}

.whatTradeTopLeft p {
    color: #7D8B92;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
}

.whatTradeRight {
    flex: 1;
    max-width: 456px;
}

.whyChooseTradeBlck {
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whyChooseTradeBlck h4 {
    color: #5A5A5D;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.whyChooseList {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.singleWhyChooseItem {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 238px;
}

.singleWhyChooseItem p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
}

/*========= what is trade area end hare ============ */

/*===== why trade cfds area style start hare ====== */

.whyTradeCFDs-area {
    padding-block: 135px;
    background: url(../images/tradeCFDs-bg.png) no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.titleWhite {
    color: var(--whiteColor);
}

.whyTradeCFDs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px 60px;
    padding-top: 30px;
}

.singleCFDsTradeItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.singleCFDsTradeItem p {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.CFDsTradeContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whyTradeCFDs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cfds-actions-btn {
    padding-top: 35px;
}

.action-btn {
    display: inline-flex;
    padding: 15px 45px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: linear-gradient(175deg, #D1B481 -6.09%, #B6986A 90.26%);
    box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.14);
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.demoAccountLink {
    padding-top: 30px;
}

.demoAccountLink h4 {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.demoAccountLink h4 a {
    color: var(--seconderColor);
}

/*========== why trade CFDs area end hare ======== */

/*======== plus500 markets area start hare ====== */

.plus500Market-area {
    padding-block: 90px;
}

.plus500Market-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1170px;
    margin-inline: auto;
    align-items: center;
}

.plus500MarketLeft {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    max-width: 537px;
}

.plus500MarketLeft p {
    color: #7D8B92;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
}

.plus500MarketRight {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.plus500MarketRight a {
    color: var(--seconderColor);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-decoration: underline;
}

.marketTable {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(136, 147, 153, 0.20);
    background: #FFF;
    box-shadow: 0 51px 135px 0 rgba(201, 172, 122, 0.12), 0 18.616px 49.277px 0 rgba(201, 172, 122, 0.09), 0 9.038px 23.923px 0 rgba(201, 172, 122, 0.03), 0 4.43px 11.728px 0 rgba(201, 172, 122, 0.02);
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}

.marketTable th,
.marketTable td {
    padding: 10px 5px;
}

.marketTable th:first-child,
.marketTable td:first-child {
    max-width: 45px !important;
    text-align: center;
}

.marketTable th {
    color: #606D73;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    background: #F1F7FF;
}

.marketTable td {
    color: #7D8B92;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
}

.marketTable td p {
    color: #000000;
}

.spreadDown {
    color: #F73E4A !important;
}

.spreadUp {
    color: #00B276 !important;
}

.marketTable tbody tr:nth-of-type(even) {
    background: #F1F7FF;
}

/*======== plus500 area style end hare ======= */

/* how start trading area style start hare  */

.howStartTrading-area {
    padding-top: 120px;
    padding-bottom: 60px;
    background: #F3F3F3;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 100%);
}

.howStartTrading-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.howStartBlock {
    width: 100%;
    max-width: 800px;
    margin-inline: auto;
    position: relative;
}

.singleStartItem {
    display: flex;
    gap: 130px;
}

.howStartFirst {
    width: 380px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.howStartFirst h4 {
    color: var(--seconderColor);
    text-align: right;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 96.154%;
}

.howStartContent {
    flex: 1;
}

.howStartFirst .step-one-image {
    margin-top: 5px;
}

.howStartContent p {
    color: #112643;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
    max-width: 360px;
}

.howStartBlock::before {
    content: "";
    display: block;
    width: 70px;
    height: 90%;
    position: absolute;
    left: 51%;
    top: 0;
    background: #ED3338;
}

.howStartFirst.startRight {
    max-width: 320px;
    align-items: start;
}

.howStartContent.contentLeft p {
    max-width: 380px;
    width: 380px;
    text-align: right;
}

.startTwo {
    padding-top: 76px;
}

.startThree {
    padding-top: 145px;
}

/* how to start trading area end hare  */

/*====== 3step start trading area ======== */

.ThreeStep-area {
    background: url(../images/3Step-trading.png) no-repeat;
    background-size: 100% 100%;
    padding-block: 90px;
    position: relative;
}

.topContent {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ThreeStepBox {
    margin-top: -70px;
    display: flex;
    gap: 20px;
    min-height: 580px;
    align-items: start;
    position: relative;
}

.singleStep11 {
    flex: 1;
    position: relative;
}

.ThreestepItemOne {
    position: relative;
    top: 271px;
    left: 50px;
}

.ThreeStep-wrapper {
    width: 100%;
    max-width: 1170px;
    margin-inline: auto;
}

.stepInnerBox {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stepInnerBox .icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #BC9E6F;
    border-radius: 50%;
}

.stepInnerBox h4 {
    color: #BC9E6F;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.stepInnerBox p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156.25%;
}

.singleStep11.ThreestepItemTwo {
    top: 138px;
}

.singleStep11.ThreestepItemThree {
    top: 19px;
}

.threeStepLine {
    position: absolute;
    left: 0;
    top: 0;
}

.ThreeStep-area::before {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    top: -1px;
    background: #F3F3F3;
    z-index: -1;
}

/*========== Commodities Page =========== */

.commoditiesHero .heroLeft h2 {
    max-width: 459px;
}

.whatTradeTop.commoditiesTradeTop {
    padding-bottom: 60px;
}

.howStartBlock.commoditiesHowStart::before {
    background: #6DCC4A;
}

.howStartBlock.SharesHowStart::before {
    background: #F3D52D;
}

.whatTradeRight {
    display: flex;
    align-items: center;
    justify-content: center;
}

.CryptoTradeTop .whatTradeRight img {
    max-width: 347px;
    width: 100%;
}

.whatTradeTop.CryptoTradeTop {
    padding-bottom: 45px;
    align-items: center;
}

.cryptoTreadeCds h2 {
    line-height: 137.5%;
    max-width: 677px;
}

/*======= Forex CFDs page ======= */

.forexCDFs-hero {
    background: url(../images/forexCFDs-hero-bg.png) no-repeat;
    background-size: 100% 100%;
}

.ForexTradeTop .whatTradeRight {
    flex: 1;
    max-width: 566px;
}

.ForexTradeTop {
    padding-bottom: 80px;
}

.tableSymbol {
    display: flex;
    align-items: center;
    gap: 10px;
}

.marketTable.forexTable th:first-child,
.marketTable.forexTable td:first-child {
    max-width: fit-content !important;
    text-align: left;
    padding-left: 29px;
}

/* forex buying area start hare  */

.forexBuying-area {
    background: url(../images/ForexBuing-bg.png) no-repeat;
    background-size: 100% 100%;
}

.forexBuying-wrapper {
    max-width: 1170px;
    margin-inline: auto;
    padding-bottom: 21px;
}

.forexBuying-wrapper {
    display: flex;
    align-items: center;
}

.forexBuyImage {
    flex: 1;
}

.forexBuyingContent {
    flex: 1;
    max-width: 558px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.forexBuy-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.forexBuy-text p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
}

.forexBuy-text p span {
    font-weight: 500;
    color: var(--seconderColor);
}

/* forex buying area end hare  */

/* getting area start hare  */

.gettingReady-area {
    padding-block: 90px;
}

.gettingReady-wrapper {
    max-width: 1170px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
}

.gettingReadyLeft {
    flex: 1;
    max-width: 464px;
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.gettingReadyLeft ul {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.gettingReadyLeft ul li {
    display: flex;
    align-items: start;
    gap: 10px;
}

.gettingReadyRight {
    flex: 1;
    max-width: 460px;
}

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

/*========== Commision page ======== */

.commisionHero .hero-image {
    position: unset;
}

.hero-wrapper.indicecHero.commisionHero {
    align-items: center;
    padding-top: 100px;
    justify-content: space-between;
}

.heroLeft h5 {
    color: #112643;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.commisionHero p {
    color: #7D8B92;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
}

.whatTradeTopLeft .PricingBlock {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.PricingBlock h5 {
    color: #112643;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.whatTradeTop.PricingTradeTop {
    border: none;
}

/* spreads area start hare  */

.spreads-area-sa {
    background: url(../images/spreads-bg-sa.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
}

.spreads-wrapper {
    min-height: 610px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.spreadsContent-sa {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.spreadsInnerText {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spreadsInnerText p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
}

.spreadsImage-sa {
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: -1;
}

/* spreads area end hare  */

/* our competitive area style start hare  */

.our-competitive-area-sa {
    padding-block: 90px;
}

.ourCompetitive-wrapper-sa {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.competitiveTabNav-sa ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.competitiveTabNav-sa ul li a {
    display: inline-flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid #B7BDC0;
    color: #B7BDC0;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 111.111%;
    width: 148px;
    max-width: 100%;
}

.competitiveTabNav-sa ul li a.active {
    background: #4055CE;
    color: #fff;
}

.competitiveTabContentWp {
    padding-top: 25px;
}

.CompetitiveTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    border: 1px solid rgba(136, 147, 153, 0.20);
    background: #FFF;
    box-shadow: 0 51px 135px 0 rgba(201, 172, 122, 0.12), 0 18.616px 49.277px 0 rgba(201, 172, 122, 0.09), 0 9.038px 23.923px 0 rgba(201, 172, 122, 0.03), 0 4.43px 11.728px 0 rgba(201, 172, 122, 0.02);
    overflow: hidden;
}

.CompetitiveTable th,
.CompetitiveTable td {
    min-width: 150px;
    padding: 15px 0px;
}

.CompetitiveTable th {
    padding-inline: 5px;
    background: #4055CE;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 111.111%;
}

.CompetitiveTable td {
    text-align: center;
    color: #112643;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 111.111%;
}

.CompetitiveTable td:first-child {
    text-align: left;
    padding-left: 50px;
    color: #112643 !important;
}

.CompetitiveTable .tableHead td {
    color: #C2A574 !important;
    font-weight: 500;
}

.CompetitiveTable tr td:nth-of-type(even) {
    font-weight: 500;
}

.CompetitiveTable tr td:nth-of-type(odd) {
    color: #7D8B92;
}

.CompetitiveTable tr:nth-of-type(even) {
    background: #F1F7FF;
}

.competitiveTabConten {
    display: none;
}

.competitiveTabConten.active {
    display: block;
}

/* our competitive area end hare  */

/* commission area style start hare  */

.commissionArea-sa {
    padding-top: 131px;
    padding-bottom: 71px;
    background: url(../images/commisionSec-bg-sa.png) no-repeat;
    background-size: 100% 100%;
}

.commissionLeft {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    max-width: 526px;
}

.commissionLeft p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
}

.commissionLeft p a {
    color: var(--seconderColor);
    text-decoration: underline;
}

.commissionWrapper-sa {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.commissionImageRight {
    flex: 1;
    max-width: 411px;
}

/* commission area end hare  */

/* commission scheme area start hare  */

.commissionScheme-area {
    padding-block: 90px;
}

.commissionSchemeList {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 53px;
}

.singleSchemeItem {
    display: flex;
    flex-direction: column;
    gap: 29px;
    border-radius: 10px;
    border: 1.5px solid #F3F3F3;
    background: #FFF;
    overflow: hidden;
    min-height: 430px;
}

.SchemeBorder {
    height: 13px;
}

.StandardScheme .SchemeBorder {
    background: #50BC3E;
}

.singleSchemeItem h2 {
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.StandardScheme h2 {
    color: #50BC3E;
}

.singleSchemeItem .divider {
    height: 1.144px;
    background: #F3F3F3;
}

.singleSchemeItem ul {
    display: flex;
    flex-direction: column;
    padding-inline: 22px;
}

.singleSchemeItem ul li {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #7D8B92;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    padding-block: 23px;
    border-bottom: 1.144px solid #F3F3F3;
}

.RowScheme h2 {
    color: #EA4D4D;
}

.RowScheme .SchemeBorder {
    background: #EA4D4D;
}

.PremiumScheme h2 {
    color: #EDC330;
}

.PremiumScheme .SchemeBorder {
    background: #EDC330;
}

.singleSchemeItem ul li:last-child {
    border-bottom: none;
}

/*=========== Leverage Margin page ======== */

.leverageHero {
    background: #F3F3F3;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
}

.leverageHero .hero-wrapper {
    padding-bottom: 126px;
    justify-content: space-between;
}

.leverageHero .heroLeft h2 {
    max-width: 100%;
}

.leverageHero-img {
    flex: 1;
    max-width: 624px;
}

.leverage-spreds {
    position: relative;
    /* z-index: 2; */
    background-color: #F3F3F3 !important;
}

.leverage-spreds::before {
    content: "";
    display: block;
    width: 100%;
    height: 66px;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    z-index: -2;
    clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0 0);
}

/*========== margin area start hare ===== */

.margin-area-sa {
    padding-top: 43px;
    padding-bottom: 65px;
    background: #F3F3F3;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 93%);
    position: relative;
}

.marginWrapper-sa {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.marginWp-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 580px;
}

.marginWp-left p {
    color: #7D8B92;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
}

.marginInner-cnt {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.marginImage-sa {
    flex: 1px;
    max-width: 531px;
}

/*============ Trading Hours Page ========== */

.tradingHoursHero {
    justify-content: space-between;
    padding-top: 120px;
    align-items: center;
    padding-bottom: 50px;
}

.tradingHoursHero h2 {
    max-width: 100%;
}

.singleHoursItem {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.singleHoursItem .hoursContent-sa {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-top: 5px;
}

.hoursContent-sa h5 {
    color: #112643;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.hoursContent-sa p {
    color: #7D8B92;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 128.571%;
}

.HoursGroup {
    display: flex;
    gap: 60px;
    padding-top: 50px;
}

.TradingHour-hero {
    background-color: #F3F3F3;
}

/* global market area  */

.GlobalMarket-area {
    position: relative;
}

.GlobalMarket-area::before {
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    background: #F3F3F3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0 0);
}

.GlobalMarket-area .spreads-wrapper {
    justify-content: start;
    min-height: 670px;
}

.GlobalMarket-area .spreadsImage-sa {
    right: 0;
    display: flex;
    justify-content: end;
}

.globalMarketContent {
    display: flex;
    gap: 20px;
}

.singleGlobalMarket {
    width: 130px;
    height: 116px;
    border-radius: 8px;
    background: linear-gradient(131deg, rgba(156, 198, 255, 0.15) 1.5%, rgba(156, 198, 255, 0.03) 98.46%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.singleGlobalMarket p {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 128.571%;
    opacity: 1;
}

.MarketHourHeader-sa {
    display: flex;
    align-items: center;
    padding-block: 15px;
    padding-left: 48px;
    padding-right: 36px;
    background: #4055CE;
}

.MarketHourHeader-sa p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 111.111%;
    flex: 1;
}

.MarketHourHeader-sa p:last-child {
    flex: unset;
}

.marketHourSingleList {
    display: flex;
    align-items: center;
    padding-block: 15px;
    padding-left: 48px;
    padding-right: 36px;
    background: #fff;
}

.marketHourSingleList p {
    flex: 1;
    color: #7D8B92;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 111.111%;
}

.marketHourSingleList p:last-child {
    flex: unset;
    min-width: 185px;
}

.marketHourSingleList p span {
    color: #112643;
}

.marketTab-content {
    border-radius: 12px;
    border: 1px solid rgba(136, 147, 153, 0.20);
    background: #FFF;
    box-shadow: 0 51px 135px 0 rgba(201, 172, 122, 0.12), 0 18.616px 49.277px 0 rgba(201, 172, 122, 0.09), 0 9.038px 23.923px 0 rgba(201, 172, 122, 0.03), 0 4.43px 11.728px 0 rgba(201, 172, 122, 0.02);
    overflow: hidden;
}

.tip-wp-sa {
    padding-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tip-wp-sa h4 {
    color: #112643;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 111.111%;
}

.tip-wp-sa p {
    color: #7D8B92;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
}

.strt-btn {
    padding-top: 15px;
}

/*======= account page ======== */

.header-area.account-header {
    padding-block: 27px !important;
    background: #FFF;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
    position: sticky;
}

.accountPackage-area {
    padding-top: 80px;
    padding-bottom: 90px;
}

.accountPackageTop {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accountPackageTop p {
    color: #112643;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.accountPackage-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
    padding-top: 25px;
}

.singlePackage {
    border-radius: 10px;
    border: 1px solid #E9E9E9;
    background: #FFF;
    overflow: hidden;
}

.packageTitle {
    padding-block: 8px;
}

.packageTitle h4 {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.StandardPackage .packageTitle {
    background: #50BC3E;
}

.depositeAmount {
    padding-top: 0;
    padding-bottom: 30px;
    display: flex;
    align-items: end;
    justify-content: center;
    border-bottom: 1px solid #F3F3F3;
}

.packageContent-wp {
    padding-inline: 12px;
}

.depositeAmount h2 {
    color: #112643;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 77.778%
}

.depositeAmount p {
    color: #7D8B92;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.packageFeaures {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.packageFeaures ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.packageFeaures ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5B5A5D;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.packageFeaures ul li div {
    flex: 1;
}

.packageFeaures ul li span {
    color: #112643;
}

.create-btn {
    padding-block: 25px;
    display: flex;
    justify-content: center;
}

.RawSpreadPackage .packageTitle {
    background: #EA4D4D;
}

.PackageTag {
    display: inline-flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 24px;
    border-radius: 3px;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.packagePrice {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding-top: 15px;
}

.RawSpreadPackage .PackageTag {
    background: rgba(254, 44, 58, 0.12);
    color: #FE2C3A;
}

.PremiumPackage .packageTitle {
    background: #4462C3;
}

.DynamicPackage .packageTitle {
    background: #EDC330;
}

.DynamicPackage .PackageTag {
    background: rgba(237, 195, 48, 0.12);
    color: #EDC330;
}

.packageNote {
    padding-top: 25px;
}

.packageNote p {
    color: #7D8B92;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 156%;
}

.packageNote p span {
    color: #112643;
}

.packageNote p a {
    color: var(--seconderColor);
    text-decoration: underline;
}

.newAccount-leverage {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid #073578;
}

.newAccount-leverage h4 {
    color: #112643;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.newAccount-leverage p {
    color: #7D8B92;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
}

.newAccount-leverage p a {
    color: var(--seconderColor);
    text-decoration: underline;
}

.withdrawMethod {
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.withdrawMethod h4 {
    color: #112643;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.withdrawMethod ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.withdrawMethod ul li {
    display: flex;
    width: 140px;
    height: 48px;
    padding: 15px 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid #E7E9EB;
    background: #FFF;
}

.whyTradeCFDs-area.accountTradeCFDs {
    background: url(../images/crypto-logos-bg.png) no-repeat;
    background-size: 100% 100%;
    background-color: #F6F7F7;
    margin-bottom: -60px;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 100%);
}

.accountTradeCFDs .singleCFDsTradeItem p {
    color: #7D8B92;
}

.accountTradeCFDs .demoAccountLink h4 {
    color: #7D8B92;
}

.demoAccount-hero p {
    color: #7D8B92;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
}

.demoAccount-hero .hero-wrapper {
    padding-bottom: 0px;
    justify-content: space-between;
    padding-top: 100px;
    align-items: center;
}

.demoAccount-hero {
    background: #F3F3F3;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
}

.demoAccount-hero .heroLeft h2 {
    max-width: 100%;
}

.demoAccount-features {
    padding-block: 90px;
}

.demoAccountFeatures-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.singleDemoFeatures {
    border-radius: 4px;
    border: 1.5px solid #F3F3F3;
    background: #FFF;
    box-shadow: 0 11px 35px 0 rgba(201, 172, 122, 0.12);
    min-height: 258px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.demoFeature-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.demoFeature-content h4 {
    color: #112643;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.demoFeature-content p {
    color: #7D8B92;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
}

.GlobalMarket-area.forexBeginer .spreads-wrapper {
    justify-content: start;
    min-height: 670px;
    padding-bottom: 168px;
    padding-top: 115px;
}

.forexBeginer ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.forexBeginer ul li {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.forexBeginer ul li span {
    flex: 1;
}

.forexBeginer .spreadsImage-sa {
    max-height: 100%;
}

.experiencedTraders {
    background: #fff !important;
    padding-block: 90px;
}

.experiencedTraders .spreadsInnerText p {
    color: #7D8B92;
    text-align: left !important;
}

.experiencedTraders .spreadsContent-sa {
    width: 100%;
    max-width: 620px;
}

.experiencedTraders ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.experiencedTraders ul li {
    color: #7D8B92;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.experiencedTraders ul li span {
    flex: 1;
}

.experiencedTraders .spreadsImage-sa {
    position: absolute;
    left: 0;
    bottom: 50%;
    z-index: -1;
    transform: translateY(50%);
    max-height: 100%;
}

.GlobalMarket-area .spreadsInnerText p {
    text-align: left !important;
}


/*============ Rafer a frient page ========= */


.rafer-hero {
    padding-bottom: 40px;
}

.rafer-friend-img {
    flex: 1;
    max-width: 509px;
}

.rafer-hero  .heroLeft {
	max-width: 584px;
}

.rafer-hero .hero-wrapper {
	padding-bottom: 0px;
	justify-content: space-between;
	padding-top: 150px;
	align-items: center;
}


.RaferMain-area {
    padding-block: 90px;
}

.raferMain-wrapper {
    max-width: 1070px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.raferMain-wrapper h3 {
    padding-bottom: 5px;
}
.raferMain-wrapper p {
    color: #7D8B92;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155.556%; 
}

.checkEligibility {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.checkEligibility  form {
    width: 100%;
    max-width: 555px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}
.singleInput {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}
.singleInput label {
    color: #112643;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; 
}
.singleInput input,
.singleInput select {
    border-radius: 8px;
    border: 1px solid #E7E9EB;
    height: 50px;
    padding: 15px;
    background-color: #fff;
    color: #7D8B92;
}
.singleInput input:focus {
    border-color: var(--primaryColor);
}

.submit-btn {
    padding-top: 20px;
}

.checkEligibility  form p {
    color: #112643;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.checkEligibility  form p a {
    color: var(--seconderColor);
    text-decoration: underline;
}

/* how work area start hare  */


.howWork-area {
    padding-block: 135px;
    background: #F3F3F3;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

.howWork-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.howWork-TabNav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.howWork-TabNav ul a {
    display: flex;
    width: 255px;
    max-width: 100%;
    height: 50px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid #B7BDC0;
    color: #B7BDC0;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 111.111%;
}
.howWork-TabNav ul a.active {
    background: #112643;
    color: #fff;
}

.howWork-StepList {
    display: flex;
    gap: 45px;
}

.singleWork-Step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
}
.singleWork-Step .icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--seconderColor);
    background-color: var(--seconderColor);
    border-radius: 50%;
    flex-shrink: 0;
}

.singleWork-Step .icon svg {
    width: 35px;
    height: 35px;
    max-width: 35px;
    max-height: 35px;
    display: block;
}

.singleWork-Step .icon svg path {
    fill: white !important;
}
.singleWork-Step h4 {
    color: #112643;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; 
}
.singleWork-Step .workContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.workContent p {
    color: #7D8B92;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
}

.workAction-btn {
    padding-top: 30px;
}

.howWork-StepList {
	position: relative;
}

.howWork-StepList .vector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    top: 25px;
    z-index: -2;
}

.workTab-content {
    display: none;
}
.workTab-content.active {
    display: block;
}

/* protential area start hare  */

.protential-area {
    padding-block: 90px;
}

.protentail-wrpper {
    padding: 55px;
    border-radius: 30px;
    background: linear-gradient(94deg, #063173 30.42%, #022860 100.29%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.protentail-wrpper p {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150% ; 
    max-width: 754px;
}
.protential-actions {
	gap: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
    padding-top: 15px;
}



/*======= depositss area start =======*/

.depositss-area {
    background-image: url('images/depositss-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 100px 0 127px;
    position: relative;
}

.depositss-area::after {
    content: '';
    background-image: url('images/depositss-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    display: none;
}

.depositss-item {
    display: flex;
    flex-wrap: wrap;
}

.depositss-item-content {
    padding-top: 54px;
    margin-right: 140px;
}

.depositss-item-content h2 {
    color: #112643;
    font-size: 54px;
    font-weight: 700;
    line-height: 129.63%;
    margin-bottom: 5px;
}

.depositss-item-content h2 span {
    color: #C9AC7A;
}

.depositss-item-content p {
    color: #112643;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}

.depositss-item-image img {
    max-width: 100%;
}

/*======= flexibless area start =======*/

.flexibless-area {
    padding-top: 90px;
}

.flexibless-item {
    display: flex;
    flex-wrap: wrap;
}

.flexibless-item-image {
    width: 457px;
}

.flexibless-item-image img {
    width: 100%;
}

.flexibless-item-content {
    width: calc(100% - 457px);
    padding-left: 81px;
    padding-top: 57px;
}

.flexibless-item-content h2 {
    color: #112643;
    font-size: 40px;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 15px;
}

.flexibless-item-content h2 span {
    color: #C9AC7A;
}

.flexibless-item-content p {
    color: #7D8B92;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 10px;
}

/*======= methodss area start =======*/

.methodss-area {
    padding: 90px 0;
}

.methodss-item-inner h2 {
    color: #112643;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 20px;
}

.methodss-item-inner h2 span {
    color: #C9AC7A;
}

.methodss-item-inner ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.methodss-item-inner ul li a {
    color: #B7BDC0;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #B7BDC0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.methodss-item-inner ul li:nth-of-type(1) {
    padding-right: 15px;
}

.methodss-item-inner ul li:nth-of-type(2) {
    padding-left: 15px;
}

.methodss-item-inner ul li.ui-state-active a {
    color: #fff;
    border-color: #112643;
    background-color: #112643;
}

.accordion-item {
    margin-bottom: 40px;
}

.accordion-title {
    padding: 20px;
    padding-left: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #4055CE;
    cursor: pointer;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.accordion-title.active {
    border-radius: 12px 12px 0 0;
    -webkit-border-radius: 12px 12px 0 0;
    -moz-border-radius: 12px 12px 0 0;
    -ms-border-radius: 12px 12px 0 0;
    -o-border-radius: 12px 12px 0 0;
}

.accordion-title.active i {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.accordion-title h2 {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
}

.accordion-title i {
    color: #FFF;
    font-size: 17px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    -ms-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
}

.accordion-body {
    display: none;
}

.methodss-item-inner-second table {
    width: 100%;
    position: relative;
    z-index: 9;
}

.methodss-item-inner-second table tr {
    display: flex;
    padding: 20px;
    background-color: #FFF;
    justify-content: space-between;
    border-left: 1px solid rgba(136, 147, 153, 0.20);
    border-right: 1px solid rgba(136, 147, 153, 0.20);
}

.methodss-item-inner-second table tr:last-of-type {
    border-bottom: 1px solid rgba(136, 147, 153, 0.20);
    border-radius: 0 0 12px 12px;
    -webkit-border-radius: 0 0 12px 12px;
    -moz-border-radius: 0 0 12px 12px;
    -ms-border-radius: 0 0 12px 12px;
    -o-border-radius: 0 0 12px 12px;
}

.methodss-item-inner-second table tr:nth-of-type(odd) {
    background-color: #f1f7ff;
}

.methodss-item-inner-second table tr:nth-of-type(1) {
    padding-top: 15px;
    padding-bottom: 15px;
}

.methodss-item-inner-second table tr th,
.methodss-item-inner-second table tr td {
    color: #112643;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
}

.methodss-item-inner-second table tr td img {
    max-width: 100%;
}

.methodss-item-inner-second table tr td a {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 113px;
    height: 34px;
    border-radius: 5px;
    background: linear-gradient(175deg, #D1B481 -6.09%, #B6986A 90.26%);
    box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.14);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.methodss-item-inner-second table tr th:nth-of-type(1),
.methodss-item-inner-second table tr td:nth-of-type(1) {
    width: 190px;
}

.methodss-item-inner-second table tr th:nth-of-type(2),
.methodss-item-inner-second table tr td:nth-of-type(2) {
    width: 162px;
}

.methodss-item-inner-second table tr th:nth-of-type(3),
.methodss-item-inner-second table tr td:nth-of-type(3) {
    width: 291px;
}

.methodss-item-inner-second table tr th:nth-of-type(4),
.methodss-item-inner-second table tr td:nth-of-type(4) {
    width: 192px;
}

.methodss-item-inner-second table tr th:nth-of-type(5),
.methodss-item-inner-second table tr td:nth-of-type(5) {
    width: 180px;
}

.methodss-item-inner-second table tr th:nth-of-type(6),
.methodss-item-inner-second table tr td:nth-of-type(6) {
    width: 113px;
}

.methodss-item-note {
    padding-top: 16px;
}

.methodss-item-note-inner {
    padding: 20px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    background-color: #F1F7FF;
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
}

.methodss-item-note-inner h2 {
    color: #112643;
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
}

.methodss-item-note ul {
    padding: 20px 20px 15px;
    border-radius: 0 0 8px 8px;
    border: 1.5px solid #F3F3F3;
    border-top: none;
    background: #FFF;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    -ms-border-radius: 0 0 8px 8px;
    -o-border-radius: 0 0 8px 8px;
}

.methodss-item-note ul li {
    color: #7D8B92;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    display: flex;
    align-items: start;
    margin-bottom: 15px;
}

.methodss-item-note ul li div:nth-of-type(1) {
    width: 30px;
    flex: 0 0 30px;
    padding-right: 10px;
}

.methodss-item-note ul li img {
    max-width: 100%;
}

/*======= meta-trader-04 page start =======*/

.metass-trader-area {
    padding: 65px 0 0;
}

.metass-trader-area .depositss-item-content {
    margin-right: 191px;
    padding-top: 171px;
}

.metass-trader-area .depositss-item-image img {
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
}

.flexibless-area-second {
    padding: 90px 0; 
}

.flexibless-area-second .flexibless-item-content {
    max-width: 1122px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}

.flexibless-area-second .flexibless-item-content h2 {
    margin-bottom: 20px;
}

.flexibless-area-second .flexibless-item-content p {
    margin-bottom: 25px;
}

.flexibless-area-second .flexibless-item-content img {
    max-width: 100%;
}

/*======= tradess-area start =======*/

.tradess-area {
    background-image: url('images/tradess-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 130px 0;
    position: relative;
    z-index: 9;
}

.tradess-area::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('images/tradess-mobile-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: -1;
    display: none;
}

.tradess-item {
    display: flex;
    flex-wrap: wrap;
}

.tradess-item-content {
    width: 477px;
}

.tradess-item-content h2 {
    color: #FFF;
    font-size: 40px;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 25px;
}

.tradess-item-content h2 span {
    color: #C9AC7A;
}

.tradess-item-content h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
}

.tradess-item-content ul li {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.tradess-item-content ul li div:nth-of-type(1) {
    width: 24px;
    flex: 0 0 24px;
    padding-right: 10px;
    margin-top: -2px;
}

.tradess-item-image {
    width: calc(100% - 477px);
    padding-left: 80px;
}

.tradess-item-image img {
    max-width: 100%;
}

.tradess-item-second-inner h2 {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 20px;
}

.tradess-item-second-inner-second {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 51px;
}

.tradess-item-second-inner-third {
    height: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(131deg, rgba(156, 198, 255, 0.12) 1.5%, rgba(156, 198, 255, 0.02) 98.46%);
    margin-bottom: 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.tradess-item-second-inner-third img {
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
}

.tradess-item-second-inner-third p {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
}

.tradess-item-second-inner-four {
    text-align: center;
}

.tradess-item-second-inner-four a {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    text-decoration-line: underline;
}

/*======= standoutss-area start =======*/

.standoutss-area {
    padding: 90px 0;
}

.standoutss-item-title {
    text-align: center;
    margin-bottom: 30px;
}

.standoutss-item-title h2 {
    color: #112643;
    font-size: 40px;
    font-weight: 600;
    line-height: 137.5%;
}

.standoutss-item-title h2 span {
    color: #C9AC7A;
}

.standoutss-item-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 80px;
}

.standoutss-item-inner-second img {
    max-width: 100%;
    display: block;
    margin: 0 auto 20px;
}

.standoutss-item-inner-second p {
    color: #7D8B92;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}

.standoutss-item-inner-third {
    padding-top: 45px;
    text-align: center;
}

.standoutss-item-inner-third > a {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    padding: 15px 45px;
    display: inline-block;
    border-radius: 8px;
    background: linear-gradient(175deg, #D1B481 -6.09%, #B6986A 90.26%);
    box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.14);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.standoutss-item-inner-third p {
    color: #7D8B92;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 30px;
}

.standoutss-item-inner-third p a {
    color: #C9AC7A;
}

.standoutss-item-inner-third p a:hover {
    color: #112643;
}

/*======= meta-trader-05 page start =======*/

.metass-trader-area-second {
    padding: 125px 0 0;
}

.metass-trader-area-second .depositss-item {
    justify-content: space-between;
}

.metass-trader-area-second .depositss-item-content {
    padding-top: 126px;
    margin-right: 0;
}

.metass-trader-area-second .depositss-item-image {
    transform: translateX(80px);
    -webkit-transform: translateX(80px);
    -moz-transform: translateX(80px);
    -ms-transform: translateX(80px);
    -o-transform: translateX(80px);
}

.flexibless-area-third {
    padding: 90px 0;
}

.tradess-item-second-inner-five {
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 25px;
}

/*======= mt4 vs mt5 page start =======*/

.metass-trader-area-third {
    padding: 100px 0 110px;
    background-color: #f3f3f3;
}

.metass-trader-area-third .depositss-item-image {
    transform: translateX(35px);
    -webkit-transform: translateX(35px);
    -moz-transform: translateX(35px);
    -ms-transform: translateX(35px);
    -o-transform: translateX(35px);
}

/*======= flexibless area start =======*/

.flexibless-area-four {
    background-image: url('images/flexibless-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 109px 0 35px;
    position: relative;
    z-index: 9;
    margin-top: -60px;
}

.flexibless-area-four::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('images/flexibless-mobile-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: -1;
    display: none;
}

.flexibless-area-four .flexibless-item {
    align-items: center;
}

.flexibless-area-four .flexibless-item-image {
    max-width: 100%;
    margin-left: auto;
    margin-right: 50px;
    filter: drop-shadow(1px 3px 55px rgba(0, 0, 0, 0.30));
}

.flexibless-area-four .flexibless-item-content {
    width: 607px;
    padding: 0;
}

.flexibless-area-four .flexibless-item-content h2,
.flexibless-area-four .flexibless-item-content p {
    color: #fff;
}

/*======= comparess area start =======*/

.comparess-area {
    padding: 90px 0 120px;
}

.comparess-item-title {
    text-align: center;
    margin-bottom: 30px;
}

.comparess-item-title h2 {
    color: #112643;
    font-size: 40px;
    font-weight: 600;
    line-height: 100%;
}

.comparess-item-title h2 span {
    color: #C9AC7A;
}

.comparess-item-inner {
    box-shadow: 0 51px 135px 0 rgba(201, 172, 122, 0.12), 0 18.616px 49.277px 0 rgba(201, 172, 122, 0.09), 0 9.038px 23.923px 0 rgba(201, 172, 122, 0.03), 0 4.43px 11.728px 0 rgba(201, 172, 122, 0.02);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.comparess-item-inner table {
    width: 100%;
}

.comparess-item-inner table tr {
    display: flex;
}

.comparess-item-inner table tr:nth-of-type(odd) {
    padding: 15px 0;
    background-color: #F1F7FF;
}

.comparess-item-inner table tr:nth-of-type(even) {
    padding: 20px 0;
    background-color: #fff;    
    border-left: 1px solid rgba(136, 147, 153, 0.20);
    border-right: 1px solid rgba(136, 147, 153, 0.20);
}

.comparess-item-inner table tr:nth-of-type(1) {
    background-color: #4055ce;
    border-radius: 12px 12px 0 0;
    -webkit-border-radius: 12px 12px 0 0;
    -moz-border-radius: 12px 12px 0 0;
    -ms-border-radius: 12px 12px 0 0;
    -o-border-radius: 12px 12px 0 0;
}

.comparess-item-inner table tr:last-of-type {
    border-radius: 0 0 12px 12px;
    -webkit-border-radius: 0 0 12px 12px;
    -moz-border-radius: 0 0 12px 12px;
    -ms-border-radius: 0 0 12px 12px;
    -o-border-radius: 0 0 12px 12px;
}

.comparess-item-inner table tr th,
.comparess-item-inner table tr td {
    color: #112643;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
}

.comparess-item-inner table tr th {
    color: #fff;
}

.comparess-item-inner table tr td:nth-of-type(2),
.comparess-item-inner table tr td:nth-of-type(3) {
    color: #7D8B92;
}

.comparess-item-inner table tr th:nth-of-type(1),
.comparess-item-inner table tr td:nth-of-type(1) {
    padding-left: 49px;
    width: 530px;
}

.comparess-item-inner table tr th:nth-of-type(2),
.comparess-item-inner table tr td:nth-of-type(2) {
    width: 365px;
}

.comparess-item-inner table tr th:nth-of-type(3),
.comparess-item-inner table tr td:nth-of-type(3) {
    width: 270px;
}

.comparess-item-button {
    padding-top: 45px;
    text-align: center;
}

.comparess-item-button a {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    padding: 15px 45px;
    border-radius: 8px;
    background: linear-gradient(175deg, #D1B481 -6.09%, #B6986A 90.26%);
    box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.14);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

/*======= platformss-area start =======*/

.platformss-area {
    background-image: url('images/platformss-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 125px 0 105px;
    position: relative;
    z-index: 9;
}

.platformss-area::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('images/platformss-mobile-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: -1;
    display: none;
}

.platformss-item-inner {
    text-align: center;
    margin-bottom: 25px;
}

.platformss-item-inner a {
    padding: 25px 65px;
    display: inline-block;
    border-radius: 5px;
    background: linear-gradient(94deg, rgba(255, 255, 255, 0.10) -1.63%, rgba(255, 255, 255, 0.01) 100.88%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 20px;
}

.platformss-item-inner p {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}

.platformss-item-inner-second {
    padding-top: 50px;
}

/*======= builtss-area start =======*/

.builtss-area {
    padding: 90px 0;
}

.builtss-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.builtss-item-image {
    width: 541px;
    text-align: center;
}

.builtss-item-image img {
    max-width: 100%;
}

.builtss-item-content {
    width: calc(100% - 541px);
    padding-left: 22px;
}

.builtss-item-content p {
    color: #7D8B92;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 10px;
}

.builtss-item-content ul {
    padding-top: 15px;
    display: flex;
    align-items: center;
}

.builtss-item-content ul li a {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    padding: 15px 45px;
    border-radius: 8px;
    background: linear-gradient(175deg, #D1B481 -6.09%, #B6986A 90.26%);
    box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.14);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.builtss-item-content ul li:nth-of-type(1) a {
    margin-right: 30px;
}

/*======= who we are page start =======*/

.depositss-area-four {
    padding: 80px 0 23px;
}

.depositss-area-four .depositss-item {
    justify-content: space-between;
}

.depositss-area-four .depositss-item-content {
    padding-top: 180px;
    margin-right: 0;
}

/*======= expertss area start =======*/

.expertss-area {
    padding: 90px 0;
}

.expertss-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.expertss-item-image {
    width: calc(100% - 607px);
    padding-right: 42px;
    text-align: right;
}

.expertss-item-image img {
    max-width: 100%;
}

.expertss-item-content {
    width: 607px;
}

.expertss-item-content h2 {
    color: #112643;
    font-size: 40px;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 5px;
}

.expertss-item-content h2 span {
    color: #C9AC7A;
}

.expertss-item-content p {
    color: #7D8B92;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-top: 10px;
}

/*======= joinss-area start =======*/

.joinss-area {
    background-image: url('images/joinss-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 120px 0;
    position: relative;
    z-index: 9;
}

.joinss-area::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('images/joinss-mobile-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: -1;
    display: none;
}

.joinss-title {
    text-align: center;
    margin-bottom: 25px;
}

.joinss-title h2 {
    color: #FFF;
    font-size: 40px;
    font-weight: 600;
    line-height: 137.5%;
}

.joinss-title h2 span {
    color: #C9AC7A;
}

.joinss-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 60px;
}

.joinss-item-inner {
    text-align: center;
    margin-bottom: 30px;
}

.joinss-item-inner img {
    max-width: 100%;
    display: block;
    margin: 0 auto 20px;
}

.joinss-item-inner h2 {
    color: #BC9E6F;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 10px;
}

.joinss-item-inner p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 162.5%;
}

.joinss-button {
    padding-top: 5px;
    text-align: center;
}

.joinss-button a {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    padding: 15px 45px;
    border-radius: 8px;
    background: linear-gradient(175deg, #D1B481 -6.09%, #B6986A 90.26%);
    box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.14);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

/*======= promisess-area start =======*/

.promisess-area {
    padding: 90px 0;
    padding-left: calc(calc(100% - 1194px) / 2);
}

.promisess-item {
    padding-left: 12px;
    display: flex;
}

.promisess-item-content {
    width: 590px;
    padding-top: 23px;
    padding-right: 15px;
}

.promisess-item-content h2 {
    color: #112643;
    font-size: 40px;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 10px;
}

.promisess-item-content h2 span {
    color: #C9AC7A;
}

.promisess-item-content p {
    color: #7D8B92;
    font-size: 16px;
    font-weight: 400;
    line-height: 162.5%;
}

.promisess-item-image {
    max-width: 100%;
}


/*======= joinss-area start =======*/

.valuess-area {
    background-image: url('images/valuess-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 135px 0 105px;
    position: relative;
    z-index: 9;
}

.valuess-area::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('images/valuess-mobile-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: -1;
    display: none;
}

.valuess-item {
    max-width: 780px;
    margin: 0 auto;
}

.valuess-item-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
}

.valuess-item-inner-second {
    width: 33.333%;
    padding: 0 15px 30px;
}

.valuess-item-inner-second .tradess-item-second-inner-third {
    margin: 0;
}


/*======= awardss-area start =======*/

.awardss-area {
    padding: 90px 0;
}

.awardss-area .joinss-title {
    margin-bottom: 20px;
}

.awardss-area .joinss-title h2 {
    color: #112643;
}

.awardss-item-inner ul {
    margin: 0;
    padding: 0 15px;
}

.awardss-item-inner ul li a {
    width: 140px;
    height: 40px;
    margin: 0 7.5px;
}

.awardss-item-inner.methodss-item-inner ul li:nth-of-type(1),
.awardss-item-inner.methodss-item-inner ul li:nth-of-type(2) {
    padding: 0;
}

.awardss-item-inner-second .mySwiper {
    padding-top: 25px;
    padding-left: calc(calc(100% - 1194px) / 2);
}

.awardss-item-inner-second .swiper-slide {
    width: 282.5px;
}

.awardss-item-inner-third {
    text-align: center;
}

.awardss-item-inner-four {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 162px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(241, 246, 252, 0.00) 0%, #F1F6FC 65.43%);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-bottom: 15px;
}

.awardss-item-inner-four img {
    max-width: 100%;
}

.awardss-item-inner-five {
    padding: 0 20px;
}

.awardss-item-inner-five h2 {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 5px;
}

.awardss-item-inner-five p {
    color: #B7BDC0;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
}

/*======= get in touch page start =======*/

.depositss-area-five {
    padding: 100px 0 47px;
}

.depositss-area-five .depositss-item-content {
    padding-top: 137px;
}

/*======= callbackss-area start =======*/

.callbackss-area {
    padding-top: 90px;
}

.callbackss-map {
    margin-bottom: 40px;
    text-align: center;
}

.callbackss-map img {
    max-width: 100%;
}

.callbackss-item {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.callbackss-item-left {
    width: calc(100% - 495px);
    padding-right: 80px;
}

.callbackss-item-left h2 {
    color: #112643;
    font-size: 40px;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 30px;
}

.callbackss-item-left-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 25px;
}

.callbackss-item-input {
    margin-bottom: 25px;
}

.callbackss-item-input label {
    color: #112643;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    margin: 0 0 12px;
}

.callbackss-item-input input,
.callbackss-item-input select {
    color: #bec5c8;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border-radius: 8px;
    border: 1px solid #E7E9EB;
    background-color: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.callbackss-item-input input::placeholder {
    color: #bec5c8;
}



.iti__flag { display: none !important; }

.iti__flag-container {
    padding-left: 10px !important; 
}

.iti__selected-flag { 
    padding: 0 10px !important;
}

#phone {
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
    padding-left: 87px !important;
}

.phone-field-container {
    position: relative;
}

.phone-field-container::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 30px;
    top: 50%;
    left: 77px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: #E7E9EB;
    display: block;
    z-index: 1;
}

.iti {
    width: 100% !important;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
    padding: 0 !important;
    margin: 0 !important;
    color: #bec5c8;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

.iti__arrow {
    background-image: url(../images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 14px;
    height: 14px;
    border: none;
    margin-left: 10px; 
}

.iti__arrow--up {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}

.iti__selected-dial-code {
    padding: 0 !important;
    margin: 0 !important; 
}

.iti__selected-flag {
    padding: 0;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent !important;
}

.form-group {
    display: block;
    margin-bottom: 30px;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
    color: #112643;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    align-items: start;
}

.form-group label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    width: 20px;
    flex: 0 0 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid #E7E9EB;
    background: #FFF;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    margin-top: 2px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: solid #112643;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.callbackss-item-left-button button {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    padding: 15px 45px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(175deg, #D1B481 -6.09%, #B6986A 90.26%);
    box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.14);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.SMN_effect-101 button {
    border: none;
	overflow: hidden;
	z-index: 1;
    transition: all .5s cubic-bezier(1, 0.15, 0.34, 1.03);
    position: relative;
}

.SMN_effect-101 button:before{
    content: "";
    background: #B69A69;
    border-radius: 50%;
    padding: 18%;
    position: absolute;
    top: 50%;
	left: 50%;
	z-index: -1;
    transform: translate3d(-50%, -50%, 0) scale(0);
    transition: transform .5s cubic-bezier(1, 0.15, 0.34, 1.03);
}

.SMN_effect-101 button:hover:before{
    transform: translate3d(-50%, -50%, 0) scale(3);
}

.callbackss-item-right {
    width: 495px;
    padding: 122px 25px;
    border-radius: 12px;
    background: linear-gradient(180deg, #F0F7FF 0%, #F6FBFF 100%);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.callbackss-item-right h2 {
    color: #112643;
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    margin-bottom: 5px;
}

.callbackss-item-right-inner {
    padding: 25px 5px;
    border-bottom: 1px solid #E7E9EB;
    display: flex;
    align-items: center;
}

.callbackss-item-right-inner div:nth-of-type(1) {
    width: 34px;
    flex: 0 0 34px;
    padding-right: 10px;
}

.callbackss-item-right-inner img {
    max-width: 100%;
}

.callbackss-item-right-inner p {
    color: #112643;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

.callbackss-item-right-inner p a {
    color: #C9AC7A;
    font-size: 14px;
    line-height: 100%;
    text-decoration-line: underline;
    display: inline-block;
    margin-top: 5px;
}

.callbackss-item-right-inner p a:hover {
    color: #112643;
}

.callbackss-item-right > div.callbackss-item-right-inner:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

/*======= popularfaqss-area start =======*/

.popularfaqss-area {
    padding: 90px 0;
}

.popularfaqss-item {
    max-width: 780px;
    margin: 0 auto;
}

.popularfaqss-area .joinss-title {
    margin-bottom: 20px;
}

.popularfaqss-area .joinss-title h2 {
    color: #112643;
}

.popularfaqss-item .accordion-item {
    background-color: #F1F7FF;
    margin-bottom: 20px;
}

.popularfaqss-item > div.accordion-body:last-of-type {
    margin-bottom: 0;
}

.popularfaqss-item .accordion-title {
    padding: 20px;
    background-color: transparent;
}

.popularfaqss-item .accordion-title h3 {
    color: #112643;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
}

.popularfaqss-item .accordion-title i {
    color: #112643;
}

.popularfaqss-item .accordion-title i:nth-of-type(2) {
    display: none;
}

.popularfaqss-item .accordion-title.active i:nth-of-type(1) {
    display: none;
}

.popularfaqss-item .accordion-title.active i:nth-of-type(2) {
    display: block;
}

.popularfaqss-item .accordion-body {
    padding: 20px;  
    position: relative; 
}

.popularfaqss-item .accordion-body::after {
    content: '';
    position: absolute;
    width: calc(100% - 40px);
    height: 1px;
    top: 0;
    left: 20px;
    background-color: #D6E6FC;
}

.popularfaqss-item .accordion-body p {
    color: #7D8B92;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 10px;
}


/*==============Home page ========== */

.header-area.home-header {
    position: sticky;
    top: 0;
    padding-block: 27px;
    background: #FFF;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.06);
}
.homeHero-area {
    background: url(../images/home-hero-bg.gif) no-repeat;
    background-size: 100% 100%;
}

.homeHero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 155px 0;
}

.heroTopLeft {
    flex: 1;
    max-width: 528px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.heroTopLeft h2 {
    color: #0F2641;
    font-size: 54px;
    font-style: normal;
    font-weight: 800;
    line-height: 118.519%; 
}
.tryDemo h4 {
    color: #0F2641;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 149.951%; 
}
.tryDemo h4 a {
    color: var(--seconderColor);
}

.homeHero-slider-area {
    border-radius: 20px;
    border: 1px solid rgba(136, 147, 153, 0.20);
    background: #FFF;
    box-shadow: 0 51px 135px 0 rgba(201, 172, 122, 0.15), 0 18.616px 49.277px 0 rgba(201, 172, 122, 0.10), 0 9.038px 23.923px 0 rgba(201, 172, 122, 0.04), 0 4.43px 11.728px 0 rgba(201, 172, 122, 0.03);
    padding: 32px 55px;
}

.singleSlide-content {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}
.heroSlideLeft {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    max-width: 587px;
}
.heroSlideLeft .no {
    color: #C9AC7A;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
}
.heroSlideLeft h4 {
    color: #112643;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 100% ; 
    padding-top: 5px;
}
.heroSlideLeft p {
    color: #889399;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%; 
}

.slide-image {
    flex: 1;
    max-width: 355px;
}

.heroSliderActions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.heroSliderActions button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C9AC7A;
    border-radius: 50%;
}
.heroSliderActions button svg path {
    stroke: #fff;
}
.heroSliderActions button:disabled {
    background: #F1F7FF;
}
.heroSliderActions button:disabled svg path {
    stroke: #112643;
}

.slide-image2 {
    max-width: 300px;
}
.slide-image3 {
    max-width: 269px;
}

.slide-image img {
    width: 100%;
    height: 100%;
}
.heroTopRight {
	flex: 1;
	max-width: 543px;
    display: none;
}

.realtime-update  .competitiveTabNav-sa ul li a.active {
	background: #112643;
	color: #fff;
}

.marktetUpdate-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.updateTime {
    color: #5A5A5D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; 
}

.marketUpdateInner {
    display: flex;
    gap: 40px;
}
.marketUpdateInnerLeft  {
    flex: 1;
    max-width: 575px;
}
.marketUpdateInnerRight {
    flex: 1;
    max-width: 555px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.marketUpdateInnerRight h4 {
    color: #112643;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; 
    padding-bottom: 9px;
}
.marketUpdateInnerRight p {
    color: #7D8B92;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%; 
}
.marketUpdateInnerRight p span {
    color: #5A5A5D;
}

.marketUpdateInnerLeft .marketTable td {
	color: #00B276;
}

.our-competitive-area-sa.relative {
	position: relative;
	z-index: 2;
}

.amazonRactangle {
    position: absolute;
    left: 5px;
    top: 5px;
    z-index: -1;
}

.twiterrRactangle {
    position: absolute;
    right: 5%;
    top: 40%;
    z-index: -1;
}

.netflixRactangle {
    position: absolute;
    right: 50%;
    bottom:  0%;
    z-index: -1;
}


.TradingEnvoironment {
    padding-top: 64px;
    padding-bottom: 38px;
    background: url(../images/EnvironmentBg.png) no-repeat;
    background-size: 100% 100%;
    position: relative;
    z-index: 2;
}

.tradingEnvoironment-wp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.environmentRight {
    flex: 1;
    color: #fff;
    max-width: 546px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.environmentRight h2 {
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 137.5%;
}
.environmentLeft {
	flex: 1;
	margin-top: auto;
}
.environmentRight p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%; 
}

.environmentRight ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}
.environmentRight ul li {
    display: flex;
    gap: 10px;
    align-items: baseline;
}
.environmentRight .EnvironmentInner-conten {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
} 
.environmentRight ul li .icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #C9AC7A;
}
.EnvironmentInner-conten h4 {
    color: #C9AC7A;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; 
}

.environmentRight ul::before {
    content: '';
    display: block;
    width: 2px;
    height: 80%;
    position: absolute;
    left: 14px;
    top: 20px;
    background: linear-gradient(180deg, #C9AC7A 0%, rgba(201, 172, 122, 0.00) 100%);
    z-index: -1;
}

/* found safe area start hare  */

.foundSafe-area {
    padding-block: 90px;
}

.fundSave-wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
}

.fundSafe-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 951px;
    gap: 90px 60px;
    justify-content: center;
}

.singleFundCard {
    padding: 19px;
    border-radius: 10px;
    border: 0.5px solid rgba(136, 147, 153, 0.20);
    background: #FFF;
    box-shadow: 0 0 30px 0 rgba(201, 172, 122, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    text-align: center;
    gap: 20px;
    padding-bottom: 40px;
    min-height: 165px;
    position: relative;
    width: calc(100% / 3);
    max-width: 277px;
}
.singleFundCard .icon {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(136, 147, 153, 0.20);
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}
.singleFundCard p {
    color: #5A5A5D;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155.556%; 
    min-height: 56px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.Brokers-Area {
    background: url(../images/brokerBG.png) no-repeat;
    background-size: 100% 100%;
}

.Broker-Image {
    flex: 1;
    max-width: 568px;
}
.Broker-Image img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    margin-bottom: 13px;
}


/*========== why trade area start hare ======= */

.whyTrade-area22 {
    padding-bottom: 140px;
    padding-top: 120px;
    background: #F6F7F7;
    margin-top: -80px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 93%);
    background-image: url(../images/whyTrade-ractangle.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.why-trade-list22 {
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.singleTrade22 {
    padding: 35px 30px;
}

.singleTrade22 {
    border-radius: 10px;
    border: 0.83px solid #EBF1F5;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.singleTrade22 h4 {
    color: #112643;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.singleTrade22 .tradeCOntent2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.singleTrade22 p {
    color: #7D8B92;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 166.667%; 
}


.topContent h4 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; 
}
.topContent p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
.topContent p a {
    color: var(--seconderColor);
}


/*======= toolss-area style =======*/

.toolss-area {
    background-image: url('images/toolss-bg.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top center;
    padding: 90px 0;
    position: relative;
    z-index: 9;
}

.toolss-area::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('images/toolss-mobile-bg.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top center;
    z-index: -1;
    display: none;
}

.toolss-title {
    text-align: center;
    margin-bottom: 40px;
}

.toolss-title h2 {
    color: #112643;
    font-size: 40px;
    font-weight: 600;
    line-height: 55px;
}

.toolss-title h2 span {
    background: linear-gradient(91deg, #C9AC7A 47.34%, #BC9E6F 103.02%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.toolss-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.toolss-item-inner {
    width: 524px;
    height: 386px;
    padding-left: 20px;
    overflow-y: scroll;
    direction: rtl;
    text-align: left;
}

.toolss-item::-webkit-scrollbar,
.toolss-item-inner::-webkit-scrollbar {
    width: 3px;
    border-radius: 25px;
    background: rgba(90, 90, 93, 0.10);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.toolss-item::-webkit-scrollbar-thumb,
.toolss-item-inner::-webkit-scrollbar-thumb {
    background-color: #BD9F70;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.toolss-item::-webkit-scrollbar-track,
.toolss-item-inner::-webkit-scrollbar-track {
    background: rgba(90, 90, 93, 0.10);
}

.toolss-item-inner ul li {
    margin-bottom: 75px;
    cursor: pointer;
}

.toolss-item-inner ul li:last-of-type {
    margin-bottom: 0;
}

.toolss-item-inner ul li h2 {
    color: #B7BDC0;
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 20px;
}

.toolss-item-inner ul li p {
    color: #B7BDC0;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.toolss-item-inner ul li.active h2 {
    color: #112643;
}

.toolss-item-inner ul li.active p {
    color: #7D8B92;
}

.toolss-item-inner-second {
    padding-right: 20px;
}

.toolss-item-inner-second img {
    max-width: 100%;
}

.tab-pane { 
    display: none; 
}

.tab-pane.active { 
    display: block; animation: fadeIn 0.4s; 
}

@keyframes fadeIn {
     from { opacity: 0; } to { opacity: 1; } 
}

/*======= recognitionss-area style =======*/

.recognitionss-area {
    background-image: url('images/recognitionss-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 90px 0;
    position: relative;
    z-index: 9;
    padding-top: 100px;
    margin-top: -65px;
}

.recognitionss-area::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('images/recognitionss-mobile-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: -1;
    display: none;
}

.recognitionss-item {
    text-align: center;
}

.recognitionss-item h2 {
    color: #112643;
    font-size: 40px;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 15px;
}

.recognitionss-item h2 span {
    background: linear-gradient(92deg, #C9AC7A -7.62%, #BFA171 40.81%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.recognitionss-item p {
    color: #7D8B92;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 25px;
}

.recognitionss-item ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 27px;
}

.recognitionss-item ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 164px;
    padding: 0 15px;
    border-radius: 12px;
    border: 1px solid #EBF1F5;
    background: #FFF;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.recognitionss-item ul li a img {
    max-width: 100%;
}