/* Fonts */
@font-face {
    font-family: 'Neue Plak Extra';
    src: url('assets/fonts/NeuePlak-ExtraBlack.woff2') format('woff2'),
        url('assets/fonts/NeuePlak-ExtraBlack.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Plak';
    src: url('assets/fonts/NeuePlak-Light.woff2') format('woff2'),
        url('assets/fonts/NeuePlak-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Plak';
    src: url('assets/fonts/NeuePlak-SemiBold.woff2') format('woff2'),
        url('assets/fonts/NeuePlak-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Plak';
    src: url('assets/fonts/NeuePlak-Bold.woff2') format('woff2'),
        url('assets/fonts/NeuePlak-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Plak';
    src: url('assets/fonts/NeuePlak-Black.woff2') format('woff2'),
        url('assets/fonts/NeuePlak-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Plak';
    src: url('assets/fonts/NeuePlak-Regular.woff2') format('woff2'),
        url('assets/fonts/NeuePlak-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neuething Sans';
        src: url('assets/fonts/NeuethingSans-MediumSemiExpanded.woff2') format('woff2'),
        url('assets/fonts/NeuethingSans-MediumSemiExpanded.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neuething Sans';
    src: url('assets/fonts/NeuethingSans-Regular.woff2') format('woff2'),
        url('assets/fonts/NeuethingSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/Manrope-Medium.woff2') format('woff2'),
        url('assets/fonts/Manrope-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #1C3A3F;
    --black00: #000000;
    --black22: #0F0C22;
    --lightE8: #DDEFE8;
    --lightDB: #D8EBDB;
    --lightF7: #D3FBF7;
    --grey: #5A667D;
    --lightGrey: #D9E2E1;
    --white: #FFFFFF;
}

*,
::before,
::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:focus-visible {
    outline: none;
}

html,
button,
input,
select,
textarea,
body {
    font-family: 'Neue Plak';
}

body {
    font-size: 16px;
    color: var(--black00);
    font-weight: 400;
    margin: 0;
    padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

iframe {
    border: 0;
    width: 100%;
}

ul {
    list-style: none;
}

a,
span {
    display: inline-block;
}

a,
a:hover,
button {
    transition: all 0.4s;
    cursor: pointer;
}

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

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

svg:not(:root) {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
    margin: 0;
    height: auto;
}

/* Button CSS */
button {
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: 0.2s all;
    cursor: pointer;
    text-align: center;
    border: 1px solid;
    height: 54px;
    line-height: 1;
}

.btn-secondary {
    background: var(--white);
    color: var(--black22);
    border: 1px solid var(--lightGrey);
}

.btn-secondary:hover {
    background: var(--lightE8);
    color: var(--primary);
    border-color: var(--lightGrey);
}

.btn-primary {
    background: var(--primary);
    color: var(--lightE8);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-light {
    background: var(--lightDB);
    color: var(--primary);
    border: 1px solid var(--lightDB);
    font-weight: 400;
}

.btn-light:hover {
    background: var(--white);
    color: var(--primary);
    /* border-color: var(--lightDB); */
    border-color: var(--lightE8);
}

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

.btn-whiteBorder:hover {
    background: var(--lightDB);
    color: var(--primary);
    border-color: var(--white);
}

.btn-primary i {
    background-color: var(--lightE8);
}

.btn-primary:hover i {
    background-color: var(--primary);
}

.btn-light i {
    background-color: var(--primary);
    rotate: 270deg;
}
.btn-secondary i{
    background-color: var(--black22);
}
.btn-secondary:hover i{
    background-color: var(--primary);
}
.container {
    max-width: 1310px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Margin Padding CSS */
.mt-90 {
    margin-top: 90px;
}

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

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.mb-0 {
    margin-bottom: 0px !important;
}
.negative-margin{
    margin-top: -255px;
}
.relative{
    position: relative;
}
.z-1{
    z-index: 1;
}
/* Typography CSS */
h1 {
    font-weight: 400;
    font-size: 110px;
    line-height: 100px;
    /* line-height: 0.9; */
    line-height: 1;
    letter-spacing: -3px;
}

h2,
.h2 {
    font-weight: 400;
    font-size: 78px;
    line-height: 90px;
    line-height: 1;
}

h3,
.h3 {
    font-weight: 400;
    font-size: 42px;
    line-height: 55px;
    line-height: 1.30;
}

h4,
.h4 {
    font-weight: 400;
    font-size: 26px;
    line-height: 32px;
    line-height: 1.23;
}

.fs-0 {
    font-size: 0px
}

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

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

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

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

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

.text-lightDB {
    color: var(--lightDB);
}

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

/* Common font family class */
.manrope-font{
    font-family: 'Manrope';
}

.neuething-sans{
    font-family: 'Neuething Sans';
}

/* Icon CSS */
.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    mask-size: cover;
    background-color: var(--black22);
    transition: all 0.4s;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-origin: content-box;
    mask-clip: content-box;
}

.icon-down-arrow {
    width: 20px;
    height: 20px;
    mask-image: url("assets/images/icons/down-arrow.svg");
    -webkit-mask-image: url("assets/images/icons/down-arrow.svg");
}

.icon-right-arrow {
    width: 20px;
    height: 20px;
    mask-image: url("assets/images/icons/right-arrow.svg");
    -webkit-mask-image: url("assets/images/icons/right-arrow.svg");
}

.icon-plus {
    mask-image: url("assets/images/icons/plus-icon.svg");
    -webkit-mask-image: url("assets/images/icons/plus-icon.svg");
}
.icon-minus{
    mask-image: url("assets/images/icons/minus-icon.svg");
    -webkit-mask-image: url("assets/images/icons/minus-icon.svg");
}

.icon-read {
    width: 22px;
    height: 22px;    
    mask-image: url("assets/images/icons/read-icon.svg");
    -webkit-mask-image: url("assets/images/icons/read-icon.svg");
}

.arrow-left{
    mask-image: url("assets/images/icons/arrow-left.svg");
    -webkit-mask-image: url("assets/images/icons/arrow-left.svg");
}

.icon-calendar {
    min-width: 16px;
    min-height: 16px;    
    mask-image: url("assets/images/icons/calendar.svg");
    -webkit-mask-image: url("assets/images/icons/calendar.svg");
    background-color: var(--white);
}

.icon-time {
    min-width: 16px;
    min-height: 16px;    
    mask-image: url("assets/images/icons/delivery-time.svg");
    -webkit-mask-image: url("assets/images/icons/delivery-time.svg");
    background-color: var(--white);
}

.icon-location {
    min-width: 16px;
    min-height: 16px;    
    mask-image: url("assets/images/icons/my-location.svg");
    -webkit-mask-image: url("assets/images/icons/my-location.svg");
    background-color: var(--white);
}

/* Header CSS */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    background-color: var(--white);
    z-index: 9;
    box-shadow: 0 0px 20px rgba(24, 22, 43, 0.08);
}

.header-inner {
    justify-content: space-between;
    gap: 10px;
}

.logo-link {
    width: 100%;
    max-width: 206px;
    display: block;
}

.logo-link img {
    width: 100%;
}

.header-inner,
.header-inner .menu,
.header-action {
    display: flex;
    align-items: center;
}

/* Menu base styles */
.header-inner .menu {
    display: flex;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.header-inner .menu .menu-item {
    position: relative;
    padding: 5px 0px;
}

.header-inner .menu > .menu-item:last-child {
    display: none;
}

.header-inner .menu a {
    text-decoration: none;
    color: var(--black22);
    font-weight: 400;
    font-size: 18px;
    /* padding: 8px 12px; */
    display: flex;
    align-items: center;
    transition: 0.2s all;
}

.header-inner .menu .menu-item a:hover,
.header-inner .menu .menu-item.active>a {
    color: var(--primary);
}

.header-inner .menu .arrow {
    margin-left: 6px;
    transition: transform 0.3s;
}

/* Dropdown styles */
.header-inner .menu .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: max-content;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(24, 22, 43, 0.08);
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 10;
    padding: 5px;
}

.header-inner .menu .menu-item-has-children:hover .sub-menu,
.header-inner .menu .menu-item-has-children.open .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.header-inner .menu .menu-item-has-children{
    position: relative;
    padding-right: 22px;
    z-index: 0;
}
.header-inner .menu .menu-item-has-children::after{
    content: '';
    position: absolute;
    right: 0;
    width: 18px;
    height: 18px;
    mask-image: url("assets/images/icons/down-arrow.svg");
    -webkit-mask-image: url("assets/images/icons/down-arrow.svg");
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-position: center;  
    -webkit-mask-position: center;
    background-color: var(--black00);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 1px;
    transition: transform 0.3s;
    z-index: -1;
}
/* .header-inner .menu .menu-item-has-children:hover::after {
    transform: rotate(180deg);
} */

.header-inner .menu .sub-menu li a {
    color: var(--black22);
    padding: 10px 18px;
    display: block;
    font-size: 18px;
    font-weight: 400;
    border-radius: 6px;
    transition: 0.2s all;
}

.header-inner .menu .sub-menu li a:hover {
    color: var(--primary);
    background-color: var(--lightE8);
}

.header-action {
    display: flex;
    gap: 10px;
    align-items: center;
}
.menu-icon{
    display: none;
}


/* Hero Section CSS */
.hero-section {
    position: relative;
    overflow-x: hidden;
}

.hero-section .hero-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    left: 45%;
}

.hero-section .hero-inner {
    padding: 115px 0px;
    background-color: var(--primary);
}

.hero-section .hero-content {
    max-width: 563px;
}

.hero-section .hero-content h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.hero-section .hero-content p {
    color: var(--lightE8);
    font-size: 18px;
    margin-bottom: 0px;
}

.hero-section .hero-content .hero-action {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.hero-section .hero-content .hero-action a i {
    rotate: 270deg;
    background-color: var(--primary);
}

.counter-wrapper {
    margin-top: 85px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
    column-gap: 60px;
}

.counter-wrapper .counter-item h4 {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

/* About Us CSS */
.aboutus-section .graph-wrapper {
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aboutus-section .about-row-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.aboutus-section .graph-wrapper .graph-content {
    padding: 60px 35px 0px 35px;
}

.aboutus-section .graph-wrapper .graph-content h2 {
    color: var(--lightE8);
}

.aboutus-section .graph-wrapper .graph-img {
    width: 100%;
}

.aboutus-section .graph-wrapper .graph-img img {
    width: 100%;
}

.aboutus-section .get-started-wrapper {
    border-radius: 0px 0px 0px 190px;
    background-color: var(--lightE8);
    padding: 60px 68px;
    height: 100%;
}

.aboutus-section .get-started-wrapper h3 {
    margin-bottom: 24px;
}

.aboutus-section .get-started-wrapper .button-wrapper {
    margin-top: 55px;
}

.aboutus-section .get-started-wrapper .button-wrapper i {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    background-color: var(--white);
}

.aboutus-section .get-started-wrapper .button-wrapper a:hover i {
    background-color: var(--primary);
}

.aboutus-section .get-started-wrapper .get-started-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 448px;
}

.aboutus-section .get-started-inner {
    position: relative;
    overflow: hidden;
}

.aboutus-section .get-started-inner .glob-img {
    position: absolute;
    max-width: 517px;
    /* bottom: -166px;
    right: -173px; */
    bottom: 0;
    right: 0;
    /* width: 100%; */
    /* height: 100%; */
    z-index: 0;
}

/* Our Services CSS */
.our-services-section .services-inner .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 27px;
}

.service-item {
    position: relative;
    transition: 0.2s all;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
    border: 1px solid var(--lightGrey);
    padding: 36px;
}

.service-item .service-icon {
    width: 56px;
    height: 56px;
}

.service-item .service-content {
    padding-top: 50px;
}

.service-item .service-content h3 {
    margin-bottom: 16px;
    font-weight: 600;
}

.service-item span {
    transition: 0.2s all;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--white);
    border: 1px solid var(--lightE8);
}

.service-item span i {
    width: 26px;
    height: 26px;
    rotate: -45deg;
    background-color: var(--primary);
}

.service-item:hover {
    border-color: var(--primary);
}

.service-item:hover span {
    background-color: var(--primary);
    border-color: var(--primary);
}

.service-item:hover span i {
    background-color: var(--white);
}

.service-item .service-link {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


/* Steps Section CSS */
.steps-section {
    overflow: hidden;
}

.steps-section .steps-header {
    position: relative;
    height: 100%;
}

.steps-section .steps-header h2 {
    margin-bottom: 42px;
}

.steps-section .steps-header .rounded-pattern-img {
    max-width: 535px;
    margin-left: -224px;
}

.steps-section .steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 36px;
    counter-reset: section;
}

.steps-section .steps-wrapper .step-item {
    position: relative;
    display: flex;
    gap: 45px;
}

.steps-section .steps-wrapper .step-item .step-content {
    padding-bottom: 27px;
    max-width: 300px;
}

.steps-section .steps-wrapper .step-item .step-content h3 {
    font-weight: 600;
    margin-bottom: 16px;
}

.steps-section .steps-wrapper .step-item::before {
    transition: 0.2s all;
    position: relative;
    counter-increment: section;
    content: counter(section) "";
    font-size: 18px;
    font-weight: 400;
    color: var(--primary);
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--white);
    border: 1px solid var(--lightE8);
    z-index: 1;
    flex-shrink: 0;
}

.steps-section .steps-wrapper .step-item.active::before {
    background-color: var(--primary);
    color: var(--white);
}

.steps-section .steps-wrapper .step-item::after {
    transition: 0.2s all;
    content: "";
    position: absolute;
    top: 0px;
    left: 30px;
    width: 1px;
    height: 100%;
    background-color: var(--lightE8);
    z-index: 0;
}

.steps-section .steps-wrapper .step-item.active::after {
    background-color: var(--primary);
}

.steps-section .steps-wrapper .step-item:last-child::after {
    display: none;
}


/* CTA Section CSS */
.cta-section .cta-inner {
    padding: 50px;
    position: relative;
    overflow: hidden;
    background-image: url("assets/images/cta-bg-img.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 180px 0px 180px 0px;
}

.cta-section .cta-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1C3F3A;
    mix-blend-mode: hue;
    z-index: 0;
}

.cta-section .cta-inner .cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: auto;
}

.cta-section .cta-inner .cta-content p {
    margin: 32px 0px;
}

.cta-section .cta-inner .cta-content .btn-primary {
    font-weight: 400;
}

.cta-section .cta-inner .cta-content .btn-primary i {
    rotate: 270deg;
}



/* Teastimonial Section CSS */
.testimonial-section .testimonial-inner {
    padding: 32px 0px;

}

.testimonial-section .testimonial-inner .testimonial-header {
    text-align: center;
}

.testimonial-section .testimonial-inner .testimonial-header p {
    margin-bottom: 12px;
    color: var(--primary);
    opacity: 70%;
    text-transform: uppercase;
}

.testimonial-slider {
    width: 100%;
    padding: 0px 40px;
    margin: 40px auto;
}

.testimonial {
    padding: 20px;
    background: var(--white);
}

.testimonial .testimonial-footer {
    border-top: 1px solid var(--lightGrey);
    padding-top: 16px;
    margin-top: 16px;
}

.testimonial .testimonial-footer h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

.stars {
    margin-bottom: 15px;
    max-width: 105px;
}

.stars img {
    width: 100%;
}

.testimonial-section .testimonial-inner .testimonial-slider .slick-prev::before,
.testimonial-section .testimonial-inner .testimonial-slider .slick-next::before {
    display: none;
}

.testimonial-section .testimonial-inner .testimonial-slider .slick-prev,
.testimonial-section .testimonial-inner .testimonial-slider .slick-next {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background-color: var(--white);
    border: 1px solid var(--lightGrey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-section .testimonial-inner .testimonial-slider .slick-prev.slick-disabled,
.testimonial-section .testimonial-inner .testimonial-slider .slick-next.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.testimonial-section .testimonial-inner .testimonial-slider .slick-prev .arrow-left{
    /* rotate: 90deg; */
    rotate: 180deg;
}

.testimonial-section .testimonial-inner .testimonial-slider .slick-next .arrow-right{
    rotate: 270deg;
}

/* Celebrate More Earning Section CSS */
.celebrate-more-earning-section .celebrate-inner {
    padding: 60px 70px;
    background-color: var(--primary);
    border-radius: 140px 0px 0px 0px;
    position: relative;
    min-height: 350px;
}

.celebrate-more-earning-section .celebrate-inner .celebrate-content {
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.celebrate-more-earning-section .celebrate-inner .celebrate-content h2 {
    color: var(--lightE8);
    margin-bottom: 12px;
}

.celebrate-more-earning-section .celebrate-inner .celebrate-content p {
    color: var(--lightE8);
    margin-bottom: 24px;
}

.celebrate-more-earning-section .celebrate-inner .line-shape-img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.celebrate-more-earning-section .celebrate-inner .coins-img {
    max-width: 410px;
    right: 100px;
    top: 50%;
    transform: translate(0px, -50%);
    position: absolute;
}

/* FAQs Section CSS */
.faqs-section .faqs-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.faqs-section .faqs-inner .faqs-header {
    max-width: 465px;
}

.faqs-section .faqs-inner .faqs-header p {
    margin-bottom: 12px;
}

.faqs-section .faqs-inner .faqs-wrapper {
    max-width: 612px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.faqs-section .faqs-inner .faqs-wrapper .faq-item .faq-item-header {
    cursor: pointer;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--lightGrey);
}

.faqs-section .faqs-inner .faqs-wrapper .faq-item .faq-item-header h3 {
    font-weight: 600;
}

.faqs-section .faqs-inner .faqs-wrapper .faq-item .faq-item-content {
    padding: 12px 22px 0px 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}


.faqs-section .faqs-inner .faqs-wrapper .faq-item.active .faq-item-content {
    max-height: 1000px;
}

.faqs-section .faqs-inner .faqs-wrapper .faq-item.active .faq-item-content p{
    margin-bottom: 16px !important;
}
.faqs-section .faqs-inner .faqs-wrapper .faq-item.active .faq-item-content p:last-child{
    margin-bottom: 0px !important;
}
.faqs-section .faqs-inner .faqs-wrapper .faq-item .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faqs-section .faqs-inner .faqs-wrapper .faq-item.active .icon {
    transform: rotate(45deg);
}


/* Open Account Section CSS */
.open-account-section {
    position: relative;
    overflow: hidden;
}

/* Gradient Layer */
.open-account-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--primary) 50%, var(--lightE8) 50%);
    z-index: 0;
}

/* Image Layer */
.open-account-section::after {
    width: 50%;
    height: 100%;
    content: '';
    position: absolute;
    right: 0;
    /* inset: 0; */
    top: 0;
    background-image: url("assets/images/open-account-img.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    /* or 'cover' depending on your design */
    z-index: 2;
}

.open-account-section .line-shape {
    position: absolute;
    bottom: 0px;
    left: 0px;
    max-width: 370px;
    z-index: 0;
    width: 100%;
}

.open-account-section .open-account-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.open-account-section .open-account-inner .open-account-content {
    padding: 105px 0px 130px 0px;
    max-width: 600px;
    position: relative;
}

.open-account-section .open-account-inner .open-account-content .open-account-content-wrapper {
    position: relative;
    z-index: 1;
}

.open-account-section .open-account-inner .open-account-content h2 {
    color: var(--white);
}

.open-account-section .open-account-inner .open-account-content p {
    color: var(--lightE8);
    margin: 24px 0px;
    max-width: 520px;
}


.open-account-section .open-account-img-wrapper {
    background-color: var(--lightE8);
    background-image: url("assets/images/open-account-img.webp");
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%;
}

.open-account-section .open-account-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Footer CSS */
footer {
    padding: 55px 0px 85px 0px;
    border-top: 1px solid var(--lightE8);
    background-color: var(--lightGrey);
}

footer .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 107px;
}

footer .footer-inner .footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

footer .footer-inner .footer-links-wrapper .footer-links h5 {
    font-size: 20px;
    margin-bottom: 16px;
}

footer .footer-inner .footer-links-wrapper .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-inner .responsibly-wrapper {
    display: flex;
    gap: 20px;
}

footer .footer-inner .responsibly-wrapper span {
    width: 27px;
    height: 27px;
    display: inline-block;
    flex-shrink: 0;
}

footer .footer-inner .responsibly-wrapper span img {
    width: 100%;
}

footer .footer-inner .responsibly-wrapper h6 {
    font-size: 16px;
    margin-bottom: 14px;
    text-transform: uppercase;
    margin-top: 5px;
}

footer .footer-inner .responsibly-wrapper p {
    font-size: 14px;
}

footer .footer-inner .responsibly-wrapper p a {
    color: #DA3838;
    text-decoration: underline;
}

footer .footer-inner .responsibly-wrapper .responsibly-content {
    max-width: 604px;
}

footer .footer-logo {
    max-width: 206px;
    margin-top: 60px;
}

footer .footer-logo img {
    width: 100%;
}



/* Plans Page CSS */
.plans-section .plans-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.plans-item{
    position: relative;
    overflow: hidden;
    border: 1px solid var(--lightGrey);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
    transition: 0.3s all;
}
.plans-item:hover{
    box-shadow: 0 8px 24px rgba(24, 22, 43, 0.08);
}
.plans-item::before{
    content: "";
    position: absolute;
    background-color: var(--primary);
    width: 24px;
    height: 24px;
    top: -12px;
    right: -12px;
    rotate: 45deg;
    transition: 0.3s all;
}
.plans-item:hover::before{
    rotate: 225deg;
}
.plans-item .plans-content .plan-tag{
    text-transform: uppercase;
}
.plans-item .plans-content{
    width: 100%;
}
.plans-item .plans-content h3{
    position: relative;
    margin: 16px 0px;
    font-weight: 300;
    color: var(--black);
}
.plans-item .plans-content h3 span{
    color: #281D1B;
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    font-weight: 400;
    position: absolute;
    bottom: 10px;
    margin-left: 4px;
}
.plans-item .plans-content  ul{
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.plans-item .plans-content  ul li{
    display: flex;
    gap: 8px;
}
.plans-item .plans-content  ul li i{
    flex-shrink: 0;
}
.plans-item .plans-footer .choose-plan-btn{
    font-weight: 400;
    width: 100%;
}
.plans-item .plans-footer .choose-plan-btn i{
    flex-shrink: 0;
    rotate: 270deg;
    background-color: var(--primary);
}
.plans-item:hover .plans-footer .choose-plan-btn{
    background-color: var(--lightE8);
}
.plans-item .plans-content  ul li.excluded-item{
    color: var(--grey);
}
.plans-item .plans-content  ul li.excluded-item i{
    background-color: var(--grey);
}

/* VIP Section CSS */
.vip-section{
    background-color: var(--lightDB);
}

.vip-section .vip-inner{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.vip-inner .vip-heading-wrap {
    max-width: 420px;
}
.vip-inner .vip-heading-wrap .sub-description{
    font-weight: 600;
}
.vip-inner .vip-heading-wrap h2{
    margin: 8px 0px;
}
.vip-inner .vip-heading-wrap .vip-content{
    margin-top: 24px;
}

.vip-content .choose-vip-btn{
    font-weight: 400;
}

.vip-inner .vip-heading-wrap .vip-content p{
    margin-bottom: 12px;
    line-height: 22px;
}
.vip-inner .vip-heading-wrap .vip-content .choose-vip-btn i{
    rotate: 270deg;
}

.vip-inner .vip-plans-list-wrap ul{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vip-inner .vip-plans-list-wrap ul li{
    display: flex;
    gap: 8px;
}
.vip-inner .vip-plans-list-wrap ul li i{
    flex-shrink: 0;
    background-color: var(--primary);
    width: 22px;
    height: 22px;
}

/* Trading Step Section CSS */
.trading-steps-section{
    position: relative;
}
.trading-steps-section .trading-step-inner{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.trading-step-inner .trading-heading-wrap {
    position: relative;
    max-width: 490px;
}

.trading-step-inner .trading-heading-wrap .rounded-squre-bg-img{
    margin-left: -200px;
    max-width: 600px;
}

.trading-step-inner .trading-steps-wrap ul{
    counter-reset: section;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 410px;
}
.trading-step-inner .trading-steps-wrap ul li{
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: var(--white);
    border-radius: 100px 0px 0px 100px;
}
.trading-step-inner .trading-steps-wrap ul li::before {
    transition: 0.2s all;
    position: relative;
    counter-increment: section;
    content: counter(section) "";
    font-size: 18px;
    font-weight: 400;
    color: var(--primary);
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--white);
    border: 1px solid var(--lightE8);
    z-index: 1;
    flex-shrink: 0;
}
.trading-step-inner .trading-steps-wrap ul li::after{
    content: "";
    position: absolute;
    width: 16px;
    height: 100%;
    border-left: 1px solid var(--lightGrey);
    border-bottom: 1px solid var(--lightGrey);
    left: 31px;
    top: 100%;
}
.trading-step-inner .trading-steps-wrap ul li:last-child::after{
    display: none;
}
.trading-step-inner .trading-steps-wrap ul li span{
    padding: 17.5px 0px;
    font-weight: 600;
    display: block;
    width: 100%;
}
.trading-step-inner .trading-steps-wrap ul li.step-active{
    background: linear-gradient(90deg, var(--lightE8) 0%, rgba(221, 239, 232, 0) 92.62%);
}
.trading-step-inner .trading-steps-wrap ul li.step-active::before{
    background-color: var(--lightE8);
}

.trading-step-inner .trading-steps-wrap ul li:nth-child(2){
    margin-left: 48px;
}
.trading-step-inner .trading-steps-wrap ul li:nth-child(3){
    margin-left: 96px;
}
.trading-step-inner .trading-steps-wrap ul li:nth-child(4){
    margin-left: 144px;
}

/* Global Banner CSS */
.global-banner-wrapper .banner-content .banner-btn{
    margin-top: 16px;
}
.global-banner-wrapper .banner-content .banner-description{
    line-height: 30px;
    font-weight: 500;
}


/* Product OverView Section CSS */
.product-overview-section{
    position: relative;
    max-width: 1900px;
    margin: auto;
    overflow: hidden;
}

.product-overview-section::after , .product-overview-section::before{
    content: "";
    position: absolute;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.product-overview-section::after {
    width: 180px;
    height: 180px;
    right: 0px;
    top: 10px;
    background-image: url("assets/images/icons/euro-icon.png");
    rotate: 25deg;
}
.product-overview-section::before {
    width: 215px;
    height: 215px;
    left: 0px;
    bottom: 15px;
    background-image: url("assets/images/icons/dollor-icon.png");
    rotate: -15deg;
}
.product-overview-section .product-overview-inner{
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    z-index: 1;
}

.product-overview-section .product-overview-inner .heading-wrap{
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}
.product-overview-section .product-overview-inner .heading-wrap h4{
    font-weight: 600;
}
.product-overview-section .product-overview-inner .heading-wrap span{
    width: 44px;
    height: 44px;
    background-color: var(--lightGrey);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    flex-shrink: 0;
}
.product-overview-section .product-overview-inner .heading-wrap span img{
    width: 24px;
}

.product-overview-section .product-overview-inner .why-product-wrap{
    max-width: 520px;
}
.product-overview-section .product-overview-inner .product-benefits-wrap{
    max-width: 520px;
    margin-left: auto;
}
.product-overview-section .product-overview-inner .product-benefits-wrap ul{
    margin: 0;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-overview-section .product-overview-inner .product-benefits-wrap ul li{
    list-style: none;
    color: var(--grey);
}
.product-overview-section .product-overview-inner .product-benefits-wrap ul li span,
.product-overview-section .product-overview-inner .product-benefits-wrap ul li strong{
    font-weight: 600;
    color: var(--black00);
    font-size: 20px;
}



/* What Product Section */
.what-product-section{
    position: relative;
    /* background-size: cover !important; */
    overflow: hidden;
}

.what-product-section-img-rightside {
    background-size: contain !important;
}

.what-product-section .what-product-inner{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.what-product-section .what-product-inner .product-img-wrap{
    position: relative;
    display: flex;
    align-items: center;
}
.what-product-section .what-product-inner .product-img-wrap::before{
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;    
    max-width: 485px;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("assets/images/product-img-bg-pattern.svg");
}
.what-product-section .what-product-inner .product-img-wrap.img-bottom {
    display: flex;
    align-items: end;
}

.what-product-section .what-product-inner .product-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.what-product-section .what-product-inner .product-content-wrap{
    padding: 30px 0px;
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 517px;
    display: flex;
}
.what-product-section .what-product-inner .product-content-wrap h2 , .why-choose-us-section .why-choose-us-inner h2{
    font-size: 54px;
    /* line-height: 60px; */
    line-height: 1.1;
    margin-bottom: 24px;
}

/* order wise img */
/* .what-product-section-img-rightside {
    background: linear-gradient(to left, var(--lightGrey) 50%, rgba(219, 227, 227, 0.4) 100%, transparent) !important;
    background-position: center left !important;
} */
.what-product-section-img-rightside .product-img-wrap{
    order: 2;
}
.what-product-section-img-rightside .product-content-wrap{
    order: 1;
}


/* Why Choose US CSS */
.why-choose-us-section .why-choose-us-inner{
    text-align: center;
}
.why-choose-us-section .why-choose-us-inner .why-choose-us-items-wrap{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    counter-reset: section;
}
.why-choose-us-section .why-choose-us-inner .why-choose-us-items-wrap .why-choose-us-item{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.why-choose-us-section .why-choose-us-inner .why-choose-us-items-wrap .why-choose-us-item .img-wrap{
    border-radius: 0px 90px 0px 0px;
    width: 170px;
    height: 170px;
    overflow: hidden;
}
.why-choose-us-section .why-choose-us-inner .why-choose-us-items-wrap .why-choose-us-item .img-wrap-content::before{
    position: absolute;
    counter-increment: section;
    content: counter(section) "";
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--primary);
    z-index: 1;
    flex-shrink: 0;
    right: 0px;
}

.why-choose-us-section .why-choose-us-inner .why-choose-us-items-wrap .why-choose-us-item .img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.why-choose-us-section .why-choose-us-inner .why-choose-us-items-wrap .why-choose-us-item h3{
    text-align: center;
    font-weight: 400;
    font-size: 26px;
    padding: 0px 8px;
    max-width: 226px;
    width: 100%;
    margin: 0 auto;
}

/* ========= Style-J CSS ========== */

/* Banner CSS */

.global-banner-wrapper{
    background-color: var(--primary) !important;    
    position: relative;
    background-position: right !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 33px 0;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
}
.banner-left-content-wrapper{
    max-width: 628px;
    width: 100%;
}

.contact-us-inner-wrapper .banner-left-content-wrapper .banner-description{
    opacity: 1;
}

.banner-title{
    color: var(--white);
    margin-bottom: 16px;
}
.banner-description{
    color: var(--white);
    opacity: 0.6;
}

.banner-img-wrapper{
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    bottom: 0;
}
.banner-img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* bread crums start */
.breadcrumb-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    row-gap: 12px;
}

.breadcrumb-wrap li {
    position: relative;
    padding-right: 12px;
    margin-right: 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.6;
}

.breadcrumb-wrap li::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.breadcrumb-wrap li a {
    color: var(--white);
}

.breadcrumb-wrap li:last-child {
    opacity: 1;
    pointer-events: none;
    margin-top: 2px;
}

.breadcrumb-wrap li:last-child::before {
    display: none;
}

/* who we are start, platform section start */
.whowe-are-wrapper-row,
.platform-row{
    display: flex;
    justify-content: space-between;
}

.who-we-are-left-content,
.platform-left-content{
    max-width: 519px;
    width: 100%;
}
.who-we-are-title{
    margin-bottom: 24px;
}
.who-we-are-left-content p,
.platform-row p{
    margin-bottom: 16px;
}
.who-we-are-right-content,
.platform-right-content{
    max-width: 519px;
    width: 100%;
    min-height: 356px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* platform section */
.Platform-wrapper{
    position: relative;
}

.Platform-wrapper::before{
    display: inline-block;
    content: '';
    position: absolute;
    background-image: url("assets/images/rounded-squre-bg-img.svg");
    max-width: 601px;
    min-height: 406px;
    background-repeat: no-repeat;
    width: 100%;
    top: -195px;
    left: 107px;
    z-index: -1;
    background-size: contain;
}
.platform-right-content{
    min-height: auto;
}

/* Your financial future start */
.your-financial-wrapper-inner{
    display: flex;
}

.mobile-hand-img-wrapper {
    max-width: 500px;
    width: 100%;
    background: linear-gradient(180deg, var(--lightGrey) 0%, var(--lightF7) 100%);
    border-top-right-radius: 180px;
    overflow: hidden;
    display: inline-flex;
    justify-content: end;
    align-items: end;
    position: relative;
    margin-right: -37px;
}

.mobile-hand-img-wrapper .mobile-hand-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.your-financial-future-right-content{
    max-width: 852px;
    width: 100%;
    background: var(--primary);
    border-bottom-right-radius: 140px;
    padding: 56px 50px;
}

.your-financial-future-content{
    max-width: 519px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: center;
}

.your-financial-future-title{
    color: var(--lightE8);
    margin-bottom: 12px;
}

.your-financial-future-paragraph{
    color: var(--lightE8);
    margin-bottom: 24px;
}

/* swap img on right side */
.your-financial-wrapper-img-rightside .mobile-hand-img-wrapper{
    order: 2;
    margin-right: 0;
}
.your-financial-wrapper-img-rightside .your-financial-future-right-content{
    order: 1;
    margin-right: -37px;
    z-index: 1;
}

/* legal document start */
.legal-docs-inner-wrapper{
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.terms-wrapper{
    border: 1px solid var(--lightGrey);
    padding: 24px;
    min-height: 250px;
    width: calc(20% - 21px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.terms-wrapper span{
    font-weight: 600;
}

.read-more-link{
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.read-more-link:hover .icon-read{
    background-color: var(--primary);
}


/* contact us */
.contact-us-inner-wrapper{
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.call-our-customer-wrapper{
    margin-top: 35px;
    color: var(--white);
}
.contact-us-wrapper{
    padding: 111px 0;
    background: linear-gradient(to right, var(--primary) 54%, var(--lightDB) 50%)
}

.call-our-customer-title{
    color: var(--white);
    margin-bottom: 19px;
}

.lines-are-open{
    opacity: 0.5;
    margin-bottom: 12px;
}


.call-our-customer-info{
    display: flex;
    gap: 38px;
    flex-direction: column;
}
.call-our-customer-info ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.call-our-customer-info ul li:last-child{
    margin-bottom: 0;
}

.call-our-customer-location-info{
    display: inline-flex;
    gap: 28px;
    flex-wrap: wrap;
}

.call-our-customer-location-info ul{
    width: calc(220px - 14px);
}

.call-our-customer-location-info ul li a:hover{
    color: var(--lightE8);
}

/* form */

.contact-form-right-wrapper{
    margin-right: -175px;
    position: relative;
    max-width: 502px;
    width: 100%;
}

.contact-form .cutom-form-label:first-child {
    margin-top: 0;
}
.contact-form .cutom-form-label {
    display: block;
    margin-bottom: 6px;
    margin-top: 18px;
}

.contact-form .wpcf7-form-control-wrap{
    width: 100%;
}

.contact-form .form-input {
    border: 1px solid var(--lightGrey);
    background-color: var(--white);
    border-radius: 8px;
    padding: 13.5px 16px;
    width: 100%;
    font-size: 16px;
}

.contact-form textarea.form-input{
    height: 108px;
    resize: none;
}

.contact-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip{
    position: absolute;
    bottom: -18px;
    font-size: 14px;
}
.contact-form-right-wrapper .wpcf7-response-output,
.contact-form-right-wrapper .wpcf7 form.invalid .wpcf7-response-output{
    margin: 8px 0 0 !important;
    font-size: 14px;
    color: red;
    border-color: red;
}
.contact-form-right-wrapper .contact-form .wpcf7-submit{
    margin-top: 15px;
    font-weight: 400;
}

.page-cfd-indices .what-product-section .what-product-inner .product-img-wrap img {
    position: absolute;
    max-width: initial;
    left: -290px;
}

.page-cfd-commodities .what-product-section .what-product-inner .product-img-wrap img {
    position: absolute;
    max-width: initial;
    top: 0;
    bottom: 0;
    left: 20px;
    max-height: initial;
    width: 100%;
}

.what-product-section.what-product-section-img-rightside .what-product-inner .product-img-wrap.img-left {
    position: absolute;
    right: 0;
    width: 50%;
    top: 0;
    bottom: 0;
}

.page-cfd-commodities .what-product-section.what-product-section-img-rightside .what-product-inner .product-img-wrap.img-left img {
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: bottom left;
}
.page-cfd-commodities .what-product-section.what-product-section-img-rightside .what-product-inner .product-img-wrap:before {
    content: none;
}

.page-crypto-fx .what-product-section.what-product-section-img-rightside .what-product-inner .product-img-wrap.img-left img {
    max-height: 100%;
    object-fit: cover;
    object-position: bottom left;
    width: 100%;
}
.page-crypto-fx .what-product-section .what-product-inner .product-img-wrap::before,
.page-mining .what-product-section .what-product-inner .product-img-wrap::before {
    left: 150px;
}
.page-mining .what-product-section.what-product-section-img-rightside .what-product-inner .product-img-wrap.img-left img {
    max-height: 100%;
    object-fit: cover;
    object-position: bottom left;
    width: 100%;
}
.page-mining .what-product-section .what-product-inner .product-img-wrap {
    display: flex;
    align-items: end;
}