@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --theme: #24B124;
    /* --theme: #F55702; */
    /* --light_theme: #F8F3F2; */
    --theme2: #282F26;
    /* --theme2: #1E1E1E; */
    --light: #a8b0a6;
    --dark: #0D0D0D;
    --gray: #8f948f;
    --secondary_color: #a8b0a6;
    --border-color: rgba(255, 255, 255, 50%);
    --bg-opacity: rgba(0, 0, 0, 50%);
    --txt-color: rgba(255, 255, 255, 80%);
}

a,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--white);
}


body {
    font-family: "Poppins", sans-serif;
    background-color: var(--white);
    color: var(--black);
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
    top: 0px !important;
}

section {
    overflow: hidden;
}

ul {
    margin: 0px;
    list-style-type: none;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    font-family: "Chakra Petch", sans-serif;
}

.main_heading {
    font-size: 45px;
    white-space: normal;
    font-weight: 600;

}

.main_heading>span {
    color: var(--theme);
    font-weight: 500;
    white-space: nowrap;
}

.sub_title {
    color: var(--theme);
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 15px;
}

button {
    border: none;
    transition: all 0.3s linear;
}

select,
textarea {
    border: 2px solid var(--border-color) !important;
    max-width: 100%;
    color: var(--white) !important;
    background-color: var(--black) !important;
}

input:focus,
textarea:focus,
.form-select:focus,
textarea:focus {
    box-shadow: none !important;
    outline: none;
}

.bg-dark {
    background-color: var(--black) !important;
}

.bg-secondary {
    background-color: var(--dark) !important;
}

.radius_20 {
    border-radius: 20px;
}

.space_100 {
    padding-block: 100px;
}

.text_24 {
    font-size: 24px;
}

.text_14 {
    font-size: 14px;
}

.text_20 {
    font-size: 20px;
}

.text_22 {
    font-size: 22px;
}

.text_18 {
    font-size: 18px;
}

.white_txt {
    color: var(--txt-color);
}

.pera_txt {
    color: var(--gray);
}

.text_light {
    color: var(--light);
}

.text_secondary {
    color: var(--secondary_color);
}

.bg-primary {
    background: var(--theme) !important;
}

.text-primary {
    color: var(--theme) !important;
}

::-webkit-scrollbar {
    width: 5px;
    height: 2px
}

::-webkit-scrollbar-thumb {
    background: var(--theme);
    background: var(--theme);
    background: var(--theme);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px
}

html {
    overscroll-behavior-x: none;
    overscroll-behavior-y: none;
    scroll-behavior: smooth;
}

/* ------------------- header css -------------- */
.septa_btn,
.septa_btn:focus+.septa_btn,
.septa_btn:focus,
.septa_btn:hover {
    padding: 16px 30px 16px 30px;
    background-color: var(--theme);
    font-size: 14px;
    line-height: 24px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border: none;
    color: var(--white);
    box-shadow: none;
    outline: none;
}

.septa_btn:hover {
    background-color: #ecf6ed;
    color: var(--theme);
}
.septa_btn2,
.septa_btn2:focus+.septa_btn2,
.septa_btn2:focus {
    padding: 16px 30px 16px 30px;
    background-color: #ecf6ed;
    font-size: 14px;
    line-height: 24px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border: none;
    color: #24b124;
    box-shadow: none;
    outline: none;
}
.septa_btn2:hover {
    background-color: var(--light_theme);
    color: var(--theme);
}
/* -------------------- hero section start -------------- */
.hero_content {
    padding-inline: 100px;
}

.hero_title {
    font-size: 72px;
    color: var(--white);
    font-weight: 800;
    opacity: 0;
    transform: translateY(60px);
    transition: 0.8s ease;
}

.swiper-slide-active .hero_title {
    opacity: 1;
    transform: translateY(0);
}

.hero_content p {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s ease;
}

.swiper-slide-active p {
    opacity: 1;
    transform: translateY(0);
}

.image-layer {
    transform: scale(1.1);
    transition: transform 2s ease;
}

.swiper-slide-active .image-layer {
    transform: scale(1);
}

.hero_title,
.hero_content p,
.hero_content .btn,
.highlights-box {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* ACTIVE SLIDE */
.swiper-slide-active .hero_title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.swiper-slide-active .hero_content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.swiper-slide-active .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.swiper-slide-active .highlights-box {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.right-nav {

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: 0.3s ease;
}

.nav-btn.prev {
    left: 30px !important;
    position: absolute;
}

.nav-btn.next {
    right: 30px !important;
    position: absolute;
}

.nav-btn:hover {
    background: var(--theme);
    border-color: var(--theme);
}

.hero_sec {
    height: 750px;
}

.image-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    border-left: 1px solid var(--theme);
    z-index: -1;
}

.border-left {
    border-right: 1px solid var(--white);
}

.image-layer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000c9;
    z-index: 8;
}

.highlights-box {
    background-color: #ffffff21;
    border-radius: 15px;
    padding: 20px;
}

.single-item {
    max-width: 500px;
}

/* .highlights-box .count-text {
    font-size: 45px;
    color: var(--theme);
    font-weight: 800;
} */

/* --------------------- pricing css ---------------------- */

.pricing-top {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--theme);
    border-radius: 15px;
    padding: 22px 0px 22px;
    z-index: 1;
}

.pricing-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--theme2);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    transform-origin: left top;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.pricing_vl {
    text-overflow: ellipsis;
    overflow: hidden;
    text-wrap: nowrap;
}

.pricing_card:hover .pricing-top::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}


.pricing-top p {
    color: #a3abba;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.pricing_card:hover .pricing-top p {
    color: #b5d1fb;
}

.pricing-top-value h3 {
    color: var(--white);
    font-size: 24px;
    line-height: 38px;
    font-weight: 600;
}

.pricing-top_line {
    position: relative;
    display: block;
    padding: 7px 30px 7px;
}

.pricing-top_line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    bottom: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--white);
}

.pricing-top_line::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(50%);
    bottom: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--white)
}

.pricing-top-inner {
    position: relative;
    display: block;
    border: 1px dashed var(--theme2);
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-account-style2:hover .pricing-top-inner {
    border-color: #82b4fc;
}

.single-account-style2__top-price {
    position: relative;
    display: block;
    text-align: center;
    padding: 11px 30px 0px;
}

.pricing-top-value-price h4 {
    color: #e9ece6;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    padding-inline: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-wrap: nowrap;
}

.pricing-top-value-price h4 span {
    font-size: 24px;
}

.pricing-middle-list {
    background-color: #deede0;
    border-radius: 10px;
}

.pricing-middle-list li {
    padding: 14px 30px 14px;
}

.pricing-middle-list li.bg-color {
    background-color: #f6fbf7;
}

.pricing-middle-list li .right p {
    color: #6f7276;
    font-size: 15px;
}

.pricing-bottom {
    border-radius: 5px;
    background-color: var(--theme2);
    padding: 18px 30px 18px;
    padding-right: 140px;
}

.pricing-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--theme);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    transform-origin: left top;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: 1;
}

.pricing_card:hover .pricing-bottom::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.pricing-bottom-btn1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.pricing-bottom-btn1 i {
    color: var(--white);
    font-size: 24px;
    line-height: 0;
    margin-right: 8px;
}

.pricing-bottom-btn2 {
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
    background-color: var(--white);
    padding: 0px 27px 0px;
    color: var(--black);
    font-size: 14px;
    font-family: "Chakra Petch", sans-serif;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.pricing-bottom-btn2:hover {
    color: var(--white);
}

.pricing-bottom-btn2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--theme2);
    transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    z-index: -1;
}

.pricing-bottom-btn2:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left center;
}

/* ------------------ about page ------------------- */

.about_sec ul li .list_box {
    position: relative;
    display: flex;
    align-items: center;
    background: #ecf6ed;
    border-radius: 8px;
    padding: 12px 15px;
    column-gap: 8px;
}

/* ------------- why us css --------- */


.whyusicon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-color: #bce1b117;
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: all 0.7s ease;
}

.whyus_box:hover .whyusicon {

    box-shadow: 0px 0px 15px #50ff1a38 inset;
    transform: translatey(-10px);
}

.whyus_bg {
    animation-name: float-bob-right;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    filter: contrast(0.5);
    opacity: 0.2;
}

.why_banner::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 18px;
    width: 295px;
    height: 255px;
    background-color: transparent;
    border-radius: 10px;
    transform: rotate(10deg);
}

.why_banner-content {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #c2f5c108;
    border-radius: 10px;
    padding: 50px 40px 50px;
    padding-right: 60px;
}

.why_banner-content .shape1 {
    position: absolute;
    top: -25px;
    right: -25px;
}

.why_banner-content .shape2 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}


@keyframes float-bob-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
}

/* ----------- how css --------- */
.how_bg {
    position: absolute;
    top: 0px;
    right: 0px;
    opacity: 0.1;
    z-index: 0;
}

.how_box {
    position: relative;
    overflow: hidden;
    /* background-color: #ecf6ed; */
    background: linear-gradient(180deg, #ecf6ed, #dae3da);
    border-radius: 10px;
    clip-path: polygon(91% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
    padding: 23px 30px 32px;
    height: 320px;
}

.how_shape {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.how-text {
    margin-top: 62px;
}

.howicon {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 110px;
    background-color: #ffffff;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.howicon-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 90px;
    background-color: var(--theme);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    font-size: 40px;
    line-height: 0;
    transition: all 450ms linear;
    transition-delay: 0.1s;
}

.how_box:hover .howicon .howicon-inner {
    transform: scale(1.0) rotateY(180deg);
}

/* -------------platform css ------------- */
.plateform_sec .image-box .image-shape .shape-1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 0;
}

.plateform_sec .image-box .image-shape .shape-2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-repeat: no-repeat;
    z-index: 0;
}

.image-box {
    margin-top: 80px;
}

.rotate-me {
    animation-name: rotateme;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

}

@keyframes rotateme {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.plateform_list {
    position: relative;
    max-width: max-content;
    width: 100%;
    border-radius: 31px;
    background-color: var(--white);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
}

.right_icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--theme2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-apps li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: #292929;
    border: 1px solid #e7ebea;
    border-radius: 50%;
    text-align: center;
    transition: all 0.4s linear;
}

.download-apps li a:hover {
    background-color: var(--theme);
    border: 1px solid var(--theme);
}

.download-apps li a:hover i {
    color: var(--white);
}

.download_box {
    background-color: var(--white);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10196078431372549);
    border-radius: 10px;
}

.mt5_download {
    position: relative;
    margin-top: -100px;
    z-index: 3;
    padding-bottom: 60px;
}

/* ---------------- trading section start --------- */


.tradingtab-btn .trading_tab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;
    background-color: transparent !important;
    border-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 0px 0px 20px;
    color: #fff !important;
    z-index: 3;

}

.tradingtab-btn .nav-pills::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 20px;
    bottom: 0;
    width: 2px;
    background-color: #dddddd1f ;
    z-index: -1;
}

.nav-pills .trading_tab.active,
.nav-pills .show>.trading_tab {
    color: #fff;
    background-color: transparent !important;
}

/* .tradingtab-btn .trading_tab h4 {
    color: var(--light);
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    transform: translateY(0%) rotate(180deg);
    writing-mode: vertical-rl;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 3;
} */

.tradingtab-btn .trading_tab.two {
    border-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;

}

.tradingtab-btn .trading_tab .count {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #ffffff46;
    backdrop-filter: blur(20px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.trading_icon .icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 90px;
    cursor: pointer;
    background-color: #24b12452;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    font-size: 42px;
    line-height: 0;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.nav-pills .trading_tab.active .trading_icon .icon,
.nav-pills .show>.trading_tab {
    color: #fff;
    background-color: var(--theme) !important;
}

.nav-pills .trading_tab.active .count,
.nav-pills .show>.trading_tab {
    background-color: var(--theme) !important;
}

.tradingtab-btn .trading_tab:hover h4,
.tradingtab-btn .trading_tab.active-btn-item h4 {
    color: var(--thm-white-color);
}

.trading_content {
    position: relative;
    inset: 0px;
    margin: auto 40px;
    background-color: #363e34;
    padding: 60px;
    height: auto;
    border-radius: 10px;
}

.trading_img {
    position: absolute;
    left: 0;
    height: 150px;
    opacity: 0.88;
    overflow: hidden;
    background-size: auto;
    background-repeat: repeat-x;
    background-attachment: scroll;
    background-position: center center;
    z-index: 0;
}

.trading_img.chart1 {
    top: 0;
    right: 0;
    animation: slide1 40s linear infinite;
    -webkit-animation: slide1 40s linear infinite;
}

.trading_img.chart2 {
    bottom: 0;
    right: 0;
    animation: slide2 40s linear infinite;
    -webkit-animation: slide2 40s linear infinite;
}

.trading_bgimg {
    filter: contrast(1);
}

@keyframes slide1 {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1920px 0;
    }
}

@keyframes slide2 {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -1920px 0;
    }
}


/* ------------------- footer section start ------------- */

.footer_link li a {
    transition: all 0.5s linear;
}

.footer_link li a:hover {
    color: var(--white) !important;
}

.social_icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 56px;
    overflow: hidden;
    border-radius: 5px;
    background: #363e34;
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
    width: 50px;
    height: 50px;
}

.social_icon:hover {
    background-color: var(--theme);
}

.social_icon svg {
    width: 18px !important;
    height: 18px !important;
    fill: white !important;
}

/* ------------------ blog section start --------------- */

.single-account-style1 {
    position: relative;
    margin-bottom: 40px;
    border-radius: 10px;
    -webkit-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    background-color: #f1f7f3;
    z-index: 1;
}

.single-account-style1 .content-box {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 32px 30px 32px;
}

.single-account-style1:hover {
    background-color: var(--white);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}


.single-account-style1 .content-box h3 a {
    color: var(--black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-account-style1 .content-box h3 a:hover {
    color: var(--theme);
}

.single-account-style1 .img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    clip-path: polygon(43.9% 0%, 44% 19.5%, 99.9% 0%, 100% 70%, 100% 100%, 0% 100%, 0% 70%, 0% 30%);
}

.single-account-style1 .img-box .inner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    opacity: 0;
    background: #24B124;
    background: linear-gradient(180deg, rgba(80, 250, 123, 0) 0%, rgba(80, 250, 123, 0.5298494397759104) 31%,
            #24b124cb 80%);
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    transition: all 0.5s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0.2s;
    z-index: 4;
    border-bottom: 5px solid var(--thm-black-bg);
}

.single-account-style1:hover .img-box .inner::before {
    opacity: 1;
}


.single-account-style1 .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-account-style1:hover .img-box img {
    transform: scale(1.07) rotate(0deg);
}

.single-account-style1 .img-box .overlay-icon {
    position: absolute;
    top: 0;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #e7ebea;
    border: 2px solid var(--white);
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    font-size: 30px;
    z-index: 5;
}

.single-account-style1 .bottom-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    padding: 16px 30px 16px;
    -webkit-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    z-index: 5;
}

.single-account-style1:hover .bottom-box {
    box-shadow: none;
    background-color: var(--theme);
}

.single-account-style1 .bottom-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-account-style1 .bottom-box a:hover {
    color: var(--white);
}

.single-account-style1 .bottom-box a i {
    position: relative;
    top: 1px;
    font-size: 10px;
    margin-left: 10px;
}

.trading_blog .right-nav .nav-btn.prev {
    right: 20px !important;
    left: auto !important;
    top: -100px;
    z-index: 99;
}

.trading_blog .right-nav .nav-btn.next {
    right: 0px !important;
    left: auto !important;
    top: -100px;
    z-index: 99;
}

.trading_blog {
    height: max-content !important;
}

.truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Change this number to truncate at 1, 3, etc. */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-buttons-wrapper button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #cccccc;
    background: transparent;
    color: var(--theme);
    cursor: pointer;
    transition: 0.3s;
}

.nav-buttons-wrapper button:hover {
    background: #24B124;
    color: #fff;
}

.btn-prev-custom.swiper-button-disabled,
.btn-next-custom.swiper-button-disabled {
    opacity: 0.3;
    cursor: auto;
}

.mt5_img {
    max-width: 55%;
    height: 100%;
}

.faq_section {
    background-color: #ecf6ed3d;
}

.download_box .col-lg-4:not(:last-child)>div {
    border-right: 1px solid #EDF4FB;
}

.faq_bg {
    border-radius: 8px;
    border: 1px solid #fff;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
    padding: 29px 29px 29px;
    max-width: 770px;
    width: 100%;
    height: 576px;
    position: absolute;
    z-index: 9999;
}

.faq_bg .accordion-item {
    margin-top: 15px;
    border: none;
    border-radius: 10px;
}

.faq_bg .accordion-item .accordion-button {
    border-radius: 8px;
    background: #fff;
    border: 1px solid #d9dfe7;
    padding: 21px 30px 21px;
    font-size: 20px;
    font-weight: 600;
}

.faq_bg .accordion-item .accordion-button:focus:not(:focus-visible) {
    box-shadow: none;
}

.faq_bg .accordion-item .accordion-body {
    border: 1px solid #d9dfe7;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: #fff;
    padding: 22px 30px 22px;
    padding-right: 45px;
    font-size: 15px;
}

.faq_bg .accordion-item .accordion-button.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: #0569fd !important;
}

.accordion-button:not(.collapsed) {
    color: #0569fd !important;
}

.contact_us {
    background-color:#ecf6ed;
    padding-top: 260px !important;
    max-width: 90%;
    margin-inline: auto;
    padding-inline: 20px;
    border-radius: 10px;
}

.contact_us p {
    color: var(--light);
    z-index: 9999;
    position: relative;

}

.contact_us h2 {
    z-index: 9999;
    position: relative;
}

.contact_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 5px;
    background-color: #ffffff;
    font-size: 26px;
    line-height: 0;
    margin-bottom: 22px;
    z-index: 9999;
}

.contact_img {
    position: absolute;
    bottom: 0%;
    left: 5%;
    /* transform: translate(-50%, -50%); */
}
.contact_img img{
   max-width: 90%;
}

.shap {
    position: relative;
    display: block;
    overflow: hidden;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    transition: all 450ms linear;
    transition-delay: 0.1s;
    min-width: 70px !important;
    height: 80px !important;
}

.tool_box {
    position: relative;
    display: block;
    overflow: hidden;
    background: #EAF3FB;
    background: linear-gradient(0deg, rgba(234, 243, 251, 1) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #e3e8ef;
    border-radius: 10px;
    padding: 19.5px 0px 18.5px;
    padding-inline: 30px;
}

.tool_box:hover::before,
.maintool_box:hover .tool_box::before {
    opacity: 1;
    transform: scale(1, 1);
    transform-origin: bottom center;
}

.maintool_box:hover .shap,
.tool_box:hover .shap::before {
    transform: rotateY(180deg);
    opacity: .7;
}

.shap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: #131d30;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.tool_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: #EAF3FB;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    transform-origin: left top;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.tool_box h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 14px;
}

.icon_maintoolbox {
    font-size: 25px;
}

.about_sec {
    background-color: #ecf6ed;
}

.about_img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    text-align: center;
}

.about_img img {
    border: none;
    border-radius: 0px;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    margin: 0 auto;
}


.about_imgsection {
    position: relative;
}

.about_imgsection .about-style2__award .shape1 {
    position: absolute;
    top: 11px;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.elementor img {
    border: none;
    border-radius: 0px;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}

.about_sec .icon_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 80px;
    background: #fff;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}

.about_sec h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.about_list {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 10%;
}

.about_list ul li {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--theme2);
    border-radius: 8px;
    padding: 20px 20px 20px;
    color: #ffffff;
    margin-top: 10px;
}



.awword {
    position: absolute;
    top: 60px;
    left: -20px;
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #f7f5fd;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px 0px 61px;
    z-index: 2;
}

.awword_img {
    position: absolute;
    text-align: center;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
}

.awword h5 {
    font-size: 12px;
    font-weight: 600;
}

.awword p {
    font-size: 12px;
    font-weight: 400;
}