* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif !important;
    box-sizing: border-box;
    color: #192444;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    color: #192444;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    padding: 0;
    list-style: none;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Figtree", sans-serif;
}

.btn {
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    padding: 7px 15px;
    border: 1px solid #00A453;
    background: linear-gradient(180deg, #00A453 0.86%, #00572C 180.86%);
    color: #fff;
    min-height: 55px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: all 0.3s ease-in-out;

}

.btn img {
    margin-left: 12px;
}

.btn::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background-color: #fff;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.btn:hover {
    color: #00A453;
}

.btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/*.btn::after{
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    background-color: #4C4898;
    width: 0;
    height: 100%;
    transition:  all 0.3s ease-in-out;
    z-index: -1;
}
.btn:hover::before , .btn:hover::after{
    width: 51%;
} */
.btn.btn-fill {
    min-width: 150px;
    min-height: 55px;
    padding: 7px 25px;
    background: linear-gradient(180deg, #00A453 0.86%, #00572C 180.86%);

}

.btn.btn-fill img {
    filter: invert(1) brightness(5);
    transition: all 0.2s ease-in-out;
}

.btn.btn-fill:hover img {
    filter: none;
}

/* .btn.btn-fill::before , .btn.btn-fill::after{
    background-color: #fff;
}
.btn.btn-fill:hover{
    color: #00A453;
    box-shadow: 0px 4px 15px 0px rgb(76, 72, 152,0.3);
} */



.btn.btn-secondary {
    min-width: 107px;
    min-height: 45px;
    background: #192444;
    border: 1px solid #192444;
    padding: 7px 25px;
    font-size: 15px;
}

.btn.btn-secondary:hover {
    color: #192444;
}

.btn.btn-secondary img {
    filter: invert(1) brightness(5);
    transition: all 0.2s ease-in-out;
}

.btn.btn-secondary:hover img {
    filter: none;
}

/* .btn.btn-secondary::before , .btn.btn-secondary::after{
    background-color: #fff;
}
.btn.btn-secondary:hover{
    color: #192444;
    box-shadow: 0px 4px 15px 0px rgb(76, 72, 152,0.3);
} */


.btn.btn-primary {
    min-width: 100px;
    min-height: 45px;
    background: #192444;
    border: 1px solid #00A453;
    /* font-size: 15px; */
    padding: 7px 25px;
}

.btn.btn-primary img {
    filter: invert(1) brightness(5);
    transition: all 0.2s ease-in-out;
}

.btn.btn-primary:hover img {
    filter: none;
}

.btn.btn-primary::before,
.btn.btn-primary::after {
    background-color: #fff;
}

.btn.btn-primary:hover {
    color: #00A453;
    box-shadow: 0px 4px 15px 0px rgb(76, 72, 152, 0.3);
}



.btn.btn-outline {
    min-width: 107px;
    min-height: 45px;
    background: #EDFDF5;
    border: 1px solid #192444;
    font-size: 15px;
    color: #192444;
}

.btn.btn-outline img {
    filter: invert(1) brightness(5);
    transition: all 0.2s ease-in-out;
}

.btn.btn-outline:hover img {
    filter: none;
}

.btn.btn-outline::before,
.btn.btn-outline::after {
    background-color: #00A453;
}

.btn.btn-outline:hover {
    color: #fff;
    border-color: #00A453;
    box-shadow: 0px 4px 15px 0px rgb(76, 72, 152, 0.3);
}



header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    transition: all 0.3s ease-in-out;
}

header.fixed {
    border-bottom: 1px solid #ddd;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

header .container {
    max-width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
}

.header-inner .left-header {
    display: flex;
    align-items: center;
}

.header-nav {
    margin-left: 43px;
}

.header-nav ul {
    display: flex;
    align-items: center;
    position: relative;
}

.header-nav ul li.accordion-item {
    position: initial;
    border: none;
    box-shadow: none;
    padding: 32px 0;
    background-color: transparent;
}

.header-nav ul li.accordion-item .accordion-button {
    padding: 0;
    box-shadow: none;
    margin-left: 5px;
    width: 17px;
    height: 17px;
    transition: all 0.3s ease-in-out;
}

.header-nav ul li.accordion-item:hover>a {
    color: #00A453;
}

.header-nav ul li.accordion-item .accordion-button::after {
    background-size: 13px !important;
    background-position: center !important;
    transition: all 0.3s ease-in-out;
    background-image: url(../images/arrow-bottom-green.svg);
    filter: invert(0) brightness(0);
}

.header-nav ul li.accordion-item:hover .accordion-button::after {
    filter: none;
}

.header-nav ul li.accordion-item .accordion-collapse .submenu {
    /* display: block; */
    align-items: start;
    flex-wrap: wrap;
    margin: 0 -12px;
    width: 50%;
    padding-right: 15px;
}

.header-nav ul li.accordion-item .accordion-collapse .submenu li {
    margin-right: 0;
    margin-bottom: 4px;
    width: 100%;
    padding: 0 12px;
}

.header-nav ul li.accordion-item .accordion-collapse .submenu li a {
    font-size: 14px;
    padding: 8px 0;
    width: 100%;
    display: block;
    transition: all 0.2s ease-in-out;
    border-radius: 5px;
}

.header-nav ul li.accordion-item .accordion-collapse .submenu li a:hover {
    background-color: rgb(0, 164, 83, 0.1);
    padding: 8px 5px 8px 10px;
}

.header-nav ul li.accordion-item .accordion-collapse .submenu li small {
    /* font-size: 13px; */
    opacity: 0.8;
}

.header-nav ul li:not(:last-child) {
    margin-right: 21px;
}

.header-nav ul li a {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    text-transform: capitalize;
    transition: all 0.2s ease-in-out;
}

.header-nav ul li a:hover {
    color: #00A453;
}

.header-inner .right-header {
    display: flex;
    align-items: center;
}

.need-enquiry {
    display: flex;
    align-items: center;
}

.need-enquiry span {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-right: 12px;
}

.need-enquiry a {
    font-size: 18px;
    font-weight: 600;
    font-family: "Figtree", sans-serif;
    color: #192444;
    min-height: 45px;
    border: 1px solid #192444;
    background-color: #EDFDF5;
    padding: 5px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.need-enquiry a:hover {
    background-color: rgb(0 164 83 / 15%);
    border-color: #00A453;
    color: #00A453;
}

.need-enquiry a img {
    margin-right: 5px;
}

.need-enquiry a:hover img {
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out !important;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out !important;
}

@keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg)
    }
}

.home-banner-section {
    background-color: #fff;
    padding: 50px 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.home-banner-section::before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    content: "";
    background-image: url(../images/green-circle-bottom.svg);
    width: 766px;
    height: 766px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
}

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

.banner-inner .banner-content {
    width: 50%;
    position: relative;
    z-index: 1;
}

.banner-inner .banner-content span {
    font-size: 13px;
    font-weight: 500;
    color: #B0B2B9;
    min-height: 40px;
    border: 1px solid #A3A7B4;
    background-color: transparent;
    padding: 5px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-bottom: 15px;
}

.banner-inner .banner-content span img {
    margin-right: 8px;
    flex: 0 0 auto;
}

.banner-inner .banner-content h1 {
    font-size: 63px;
    font-weight: 700;
    color: #192444;
    max-width: 650px;
}

.banner-inner .banner-content h1 strong {
    color: #00A453;
    font-weight: 700;
}

.banner-content .trust-tag {
    position: absolute;
    right: 20px;
    top: 60px;
    filter: drop-shadow(5px 6px 8px #8d8d8d);
}

.banner-inner .banner-content p {
    font-size: 18px;
    font-weight: 500;
    color: #192444;
    max-width: 435px;
    margin-bottom: 50px;
}

.banner-inner .banner-content ul {
    display: flex;
    flex-wrap: wrap;
}

.banner-inner .banner-content ul li {
    font-size: 18px;
    font-weight: 500;
    color: #192444;
    margin-bottom: 15px;
    padding: 10px 20px;
    min-height: 91px;
    display: flex;
    flex: 1;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #E2E2E2;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 4px 40px 0px #0000000F;
    margin-right: 18px;
    font-family: "Figtree", sans-serif;
}

.banner-inner .banner-content ul li small {
    font-size: 15px;
    font-weight: 600;
    color: #8D8D8D;
    margin-bottom: 1px;
    text-transform: uppercase;
}

.banner-inner .banner-content ul li p {
    font-size: 24px;
    line-height: 31px;
    font-weight: 500;
    color: #192444;
    margin-bottom: 0;
    text-transform: capitalize;
}

.banner-inner .banner-right {
    width: 42%;
}

.banner-form {
    background-color: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 30px;
    padding: 20px 30px 29px;
    position: relative;
    box-shadow: 0px 25px 50px 0px #00000026;

}

.banner-form h2 {
    font-size: 24px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.banner-form span {
    margin-top: 33px;
    font-size: 13px;
    font-weight: 400;
    color: #8d8d8d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-form p {
    font-size: 15px;
    font-weight: 400;
    color: #8d8d8d;
    margin-bottom: 20px;
}

.offer-tag {
    position: absolute;
    right: 0;
    top: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #825100;
    background-color: #F59E0B;
    padding: 8px 3px;
}

.offer-tag::before {
    position: absolute;
    left: -15px;
    top: 0px;
    content: "";
    background-image: url(../images/left-arrow.png);
    width: 15px;
    height: 37px;
    background-size: contain;
    background-repeat: no-repeat;
}

.offer-tag::after {
    position: absolute;
    right: -35px;
    top: 0px;
    content: "";
    background-image: url(../images/tag-curve.png);
    width: 35px;
    height: 53px;
    background-size: contain;
    background-repeat: no-repeat;
}

.form-group {
    margin-bottom: 20px;
}

.form-select {
    box-shadow: none;
    outline: none;
}

.form-select:focus {
    box-shadow: none;
    outline: none;
}

.form-control {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    border: 1px solid #D0D0D0;
    background-color: #fff;
    border-radius: 15px;
    min-height: 55px;
    padding: 5px 21px;
    box-shadow: none;
    outline: none;
}

.form-control::placeholder {
    color: #8D8D8D;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    border-color: #ddd;
}

.number-field {
    position: relative;
}

.number-field .form-select {
    position: absolute;
    width: 45px;
    top: 50%;
    left: 21px;
    color: #000000;
    transform: translateY(-50%);
    border: none;
    border-right: 1px solid #ddd;
    border-radius: 0;
    background-image: none;
    padding: 0;
}
.number-field .country-code {
    position: absolute;
    width: 45px;
    top: 17px;
    left: 21px;
    border: none;
    border-right: 1px solid #ddd;
    border-radius: 0;
    background-image: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    z-index: 1;
}

.heading {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.number-field .form-control {
    padding-left: 80px;
}

.membership-section {
    padding: 45px 0;
    border-top: 1px solid rgb(25 36 68 / 10%);
}

.membership-section .heading {
    font-size: 24px;
    color: #8D8D8D;
    font-weight: 600;
}

.membership-slider {
    margin-top: 30px;
}

.membership-slider h3 {
    font-weight: 700;
    font-size: 26px;
    color: #192444;
    text-align: center;
}

.ecosystem-section {
    border-top: 1px solid rgb(25 36 68 / 10%);
    background-color: #F9FAFB;
    padding: 45px 0;
}

.section-head p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #192444;
    max-width: 760px;
    margin: 0 auto;
}

.ecosystem-section .tab-section {
    margin-top: 40px;
}

.tab-section .nav-tabs {
    justify-content: center;
    border: none;
    box-shadow: none;
}

.tab-section .nav-tabs li:not(:last-child) {
    margin-right: 10px;
}

.tab-section .nav-tabs li button {
    background-color: #fff;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #192444;
    border: 1px solid #19244457;
    box-shadow: 0px 4px 40px 0px #0000000F;
    font-family: "Figtree", sans-serif;
    padding: 9px 30px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.tab-section .nav-tabs li button:hover {
    background-color: #192444;
    border-color: #192444;
    color: #fff;
}

.tab-section .nav-tabs li button::before {
    position: absolute;
    left: 50%;
    bottom: -11px;
    transform: translateX(-50%) rotate(45deg);
    width: 22px;
    height: 22px;
    background-color: transparent;
    border-radius: 2px;
    content: "";
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;


}

.tab-section .nav-tabs li button.active {
    background-color: #192444;
    border-color: #192444;
    color: #fff;
    font-weight: 700;
}

.tab-section .nav-tabs li button.active::before {
    opacity: 1;
    visibility: visible;
    background-color: #192444;

}

.tab-section .tab-content {
    margin-top: 50px;
}

.tab-section .content-card {
    margin-bottom: 30px;
}

.content-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.content-card-box {
    background-color: #fff;
    border: 1px solid #E2E2E2;
    padding: 32px;
    border-radius: 10px;
    /* box-shadow: 0px 4px 40px 0px #0000000F; */
    transition: all 0.2s ease-in-out;
}

.content-card-box:hover {
    background-color: rgb(25, 36, 68, 0.05);
    border-color: rgb(25, 36, 68, 0.20);
}

.content-card-box figure {
    width: 63px;
    height: 63px;
    background-color: #F2F3F5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-bottom: 20px;
}

.content-card-box:hover figure {
    background-color: #fff;
}

.content-card-box h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 7px;
}

.content-card-box span {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #8D8D8D;
    text-transform: uppercase;
    font-family: "Figtree", sans-serif;
}

.content-card-box p {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    color: #192444;
}

.tab-section .tab-content ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

}

.tab-section .tab-content ul li {
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    line-height: 22px;
    color: #8D8D8D;
    font-weight: 500;
    position: relative;
    z-index: 0;
}

.tab-section .tab-content ul li::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    background-color: #8d8d8d;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.tab-section .tab-content ul li:not(:last-child) {
    margin-right: 25px;
}

.trade-section {
    padding: 45px 0 60px;
}

.trade-slider {
    margin-top: 50px;
}

.trade-slider .content-card-box:hover {
    background-color: rgb(0, 164, 83, 0.05);
    border-color: rgb(0, 164, 83, 0.20);
}

.trade-slider .content-card-box figure {
    width: auto;
    height: auto;
    background-color: transparent;
    display: block;
    padding: 0;
}

.trade-slider .content-card-box:hover figure {
    background-color: transparent;
}

.trade-slider .slick-track {
    display: flex;
}

.trade-slider .items {
    padding: 12px 6px;
    display: flex;
    height: auto;
}

.sbj-feature-section {
    background: #192444;
    padding: 45px 0 62px;
    position: relative;
}

.sbj-feature-section::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background-image: url(../images/feature-box-vector.svg);
    width: 100%;
    height: 360px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.sbj-feature-section .section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.sbj-feature-section .section-head h2 {
    color: #fff;
}

.sbj-feature-section .section-head p {
    color: #fff;
}

.feature-list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.feature-list li {
    background: #293D6180;
    border: 1px solid #E2E2E233;
    backdrop-filter: blur(6px);
    padding: 23px;
    border-radius: 15px;
    transition: all 0.2s ease-in-out;
}

.feature-list li:has(span.bg-blue):hover {
    background: rgb(59 130 246 / 7%);
    border-color: rgb(59 130 246 / 30%);
}

.feature-list li:has(span.bg-green):hover {
    background: rgb(16 185 129 / 7%);
    border-color: rgb(16 185 129 / 30%);
}

.feature-list li:has(span.bg-purple):hover {
    background: rgb(106 16 185 / 7%);
    border-color: rgb(106 16 185 / 30%);
}

.feature-list li:has(span.bg-yellow):hover {
    background: rgb(245 158 11 / 7%);
    border-color: rgb(245 158 11 / 30%);
}

.feature-list li span {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    background: #293D6180;
    display: inline-block;
}

.feature-list li span.bg-blue {
    background: #3B82F680;
}

.feature-list li span.bg-green {
    background: #10B98180;

}

.feature-list li span.bg-purple {
    background: #6A10B980;

}

.feature-list li span.bg-yellow {
    background: #F59E0B80;

}

.feature-list li h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 0;
}

.pricing-section {
    padding: 55px 0 98px;
}

.pricing-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 890px;
    margin: 0 auto;
    margin-top: 45px;
}

.pricing-list>li {
    padding: 30px 35px;
    border: 1px solid #00A453;
    border-radius: 15px;
    box-shadow: 0px 25px 50px -12px #00FF811A;
    position: relative;
    display: flex;
    flex-direction: column;

}

.pricing-list>li .btn {
    margin-top: auto;
}

.pricing-list>li:last-child {
    background-color: #192444;
    border-color: #192444;
    box-shadow: none;
}

.pricing-list>li .heading {
    margin-bottom: 5px;
}

.pricing-list>li:last-child .heading {
    color: #fff;
}

.pricing-list>li p {
    font-size: 15px;
    font-weight: 400;
    color: #192444;
}

.pricing-list>li:last-child p {
    color: #fff;
}

.pricing-list>li .top-section {
    padding-bottom: 28px;
    margin-bottom: 23px;
    border-bottom: 1px solid #1924441C;
}

.pricing-list>li:last-child .top-section {
    border-color: #FFFFFF1C;
}

.pricing-list>li:last-child .btn {
    background: transparent;
    border: 1px solid #00A453;
}

.pricing-list>li ul {
    margin-top: 25px;
    margin-bottom: 35px;
}

.pricing-list>li .popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: #00A4532B;
    border-radius: 0 14px 0 14px;
    padding: 6px 15px;
    color: #00A453;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.pricing-list>li h4 {
    font-size: 30px;
    line-height: 39px;
    font-weight: 700;
    color: #00A453;
    display: flex;
    align-items: center;
}

.price-box h3 {
    font-size: 40px;
    line-height: 35px;
    font-weight: 700;
    color: #192444;
    display: flex;
    align-items: baseline;
}

.price-box h3 span {
    font-size: 15px;
    display: block;
    line-height: normal;
    font-weight: 400;
    color: #192444;
}

.pricing-list>li .price-box p {
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
    color: #192444;
}

.pricing-list>li ul li {
    font-size: 15px;
    line-height: normal;
    font-weight: 400;
    color: #192444;
    padding-left: 25px;
    position: relative;
}

.pricing-list>li ul li::before {
    position: absolute;
    left: 0;
    top: 3px;
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/sparkle_icon.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.pricing-list>li ul li:not(:last-child) {
    margin-bottom: 12px;
}

.pricing-list>li:last-child ul li {
    color: #fff;
}



.slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0 !important;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-items: center;
    border: 1px solid #D0D0D0;
    background-color: #fff;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
}

.slick-arrow:hover {
    background-color: #00A453;
    border-color: #00A453;
}

.slick-arrow::before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
    background-size: 100%;
    transform: translate(-50%, -50%);
    background-position: center;
}

.slick-arrow:hover::before {
    filter: invert(1) brightness(5);
}

.slick-arrow.slick-prev {
    left: 0;
}

.slick-arrow.slick-prev::before {
    background-image: url(../images/arrow-left-gray.svg);
}

.slick-arrow.slick-next {
    right: 0;
}

.slick-arrow.slick-next::before {
    background-image: url(../images/arrow-right-gray.svg);
}


.trade-slider .slick-arrow.slick-prev {
    left: -40px;
}

.trade-slider .slick-arrow.slick-next {
    right: -40px;
}

.why-chooseus-section {
    padding: 55px 0 30px;
}

.chooseus-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.Proposition-slider.chooseus-listing {
    display: block;
    gap: 0;
    margin-top: 0;
}

.Proposition-slider.chooseus-listing .slick-track {
    display: flex;
}

.Proposition-slider.chooseus-listing .items {
    padding: 0 16px;
    height: auto;
}

.Proposition-slider.chooseus-listing .items .content-card-box {
    height: 100%;
}


.chooseus-listing .content-card-box {
    background-color: #F9FAFB;
    border-color: transparent;
}

.chooseus-listing .content-card-box:hover {
    background-color: rgb(25, 36, 68, 0.05);
    border-color: rgb(25, 36, 68, 0.20);
}

.advantage-section {
    background-color: #F9FAFB;
    padding: 50px 50px 50px 60px;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.advantage-section .left-wrap {
    width: 49%;
    padding-right: 100px;
}

.advantage-section .left-wrap span {
    font-size: 13px;
    font-weight: 500;
    color: #192444;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid #192444;
    margin-bottom: 20px;
    display: inline-block;
}

.advantage-section .left-wrap p {
    margin-bottom: 35px;
}

.advantage-section .right-wrap {
    width: 51%;
}

.advantage-section .right-wrap ul li {
    border: 1px solid #192444;
    padding: 30px;
    padding-right: 23px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.advantage-section .right-wrap ul li:hover {
    /* border: 1px solid #192444; */
    border-color: rgb(25 36 68 / 50%);
    background-color: rgb(25 36 68 / 5%);
}

.advantage-section .right-wrap ul li:not(:last-child) {
    margin-bottom: 20px;
}

.advantage-section .right-wrap ul li figure {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #1924440F;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: all 0.3s ease-in-out;

}

.advantage-section .right-wrap ul li:hover figure {
    background-color: #fff;
}

.advantage-section .right-wrap ul li h3 {
    font-size: 20px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 7px;
}

.advantage-section .right-wrap ul li p {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    color: #192444;
}

.philosophy-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #F9FAFB;
    padding: 35px 29px 30px 57px;
    border-radius: 15px;
    margin: 60px 0 50px;
    background-image: url(../images/sbj-vector.svg);
    background-position: right 100px center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

/* .philosophy-section::before {
    position: absolute;
    left: 0px;
    top: 0px;
    content: "";
    background-image: url(../images/green-circle-top.svg);
    width: 500px;
    height: 400px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
} */

.philosophy-section .left-section {
    width: 30%;
}

.philosophy-section .left-section span {
    font-size: 13px;
    font-weight: 500;
    color: #192444;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid #192444;
    margin-bottom: 20px;
    display: inline-block;
}

.philosophy-section .left-section .heading {
    color: #192444;
    position: relative;
    padding-bottom: 20px;
}

.philosophy-section .left-section .heading::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background-color: #00A453;
    width: 70px;
    height: 5px;
    border-radius: 50px;
}

.philosophy-section .left-section .section-head p {
    font-size: 16px;
    padding-right: 25px;
}

.philosophy-section .right-section {
    width: 70%;
}


.philosophy-section .right-section ul {
    display: flex;
    flex-wrap: wrap;
}

.philosophy-section .right-section ul li {
    border: 1px solid rgb(25, 36, 68, 0.2);
    padding: 20px;
    background: #fff;
    padding-right: 23px;
    border-radius: 15px;
    display: flex;
    /* align-items: center; */
    backdrop-filter: blur(24.5px);
    width: calc(50% - 15px);
}

.philosophy-section .right-section ul li:first-child {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0 !important;
}

.philosophy-section .right-section ul li:not(:last-child) {
    margin-right: 30px;
}

.philosophy-section.capabilities-section .right-section ul li:nth-child(odd) {
    margin-right: 30px !important;
}

.philosophy-section.capabilities-section .right-section ul li:nth-child(even) {
    margin-right: 0 !important;
}

.philosophy-section .right-section ul li figure {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #1924440F;
    border: 1px solid #FFFFFF1A;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.philosophy-section .right-section ul li h3 {
    font-size: 20px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 7px;
}

.philosophy-section .right-section ul li p {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    color: #192444;
}

.testimonial-section {
    padding: 60px 0;
    background-color: #F9FAFB;

}

.testimonial-slider {
    margin-top: 40px;
    max-width: 900px;
    margin: 40px auto 0;
}

.testimonial-slider .items {
    padding: 0px 60px 27px;
}

.testimonial-box {
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px; */
    box-shadow: 0px 4px 40px 0px #0000000F;
    border: 1px solid #D0D0D0;
    background-color: #fff;
    padding: 27px;
    border-radius: 15px;
    overflow: hidden;

}

.testimonial-box .top-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 37px;
}

.testimonial-box .top-head .user-profile {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    flex: 0 0 auto;
    margin-right: 20px;
}

.testimonial-box .top-head h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.testimonial-box .top-head p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
    color: #8D8D8D;
}

.testimonial-box .top-head .user-rating {
    display: flex;
    align-items: center;
}

.testimonial-box .top-head .user-rating figure {
    display: flex;
    align-items: center;
}

.testimonial-box .top-head .user-rating figure img {
    margin-right: 4px;
}

.testimonial-box strong {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.testimonial-box p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}

.author-detail {
    padding-top: 13px;
    margin-top: 23px;
    border-top: 1px solid #E9EFF5;
}

.author-detail span {
    font-size: 13px;
    font-weight: 400;
    color: #8D8D8D;
}

.advantage-section.partner-section {
    background-color: transparent;
    padding: 65px 0;
}

.advantage-section.partner-section .left-wrap {
    width: 45%;
}

.advantage-section.partner-section .right-wrap {
    width: 55%;
    padding-right: 100px;
}

.partner-section .left-wrap ul {
    margin-top: 30px;
}

.partner-section .left-wrap ul li:not(:last-child) {
    padding-right: 20px;
    margin-right: 20px;
}

.partner-section .left-wrap ul li {
    font-size: 16px;
    font-weight: 600;
    color: #8D8D8D;
    position: relative;
}

.partner-section .left-wrap ul li:not(:last-child)::before {
    position: absolute;
    right: 0;
    top: 9px;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #8D8D8D;
}

.partner-section .right-wrap ul li {
    border-color: #E2E2E2;
    box-shadow: 0px 4px 40px 0px #0000000F;

}

.partner-section .right-wrap ul li:nth-of-type(2) {
    margin-left: 100px;
    margin-right: -100px;
}

.onehub-section {
    padding: 69px 0;
    background-color: #F9FAFB;
}

.onehub-section .left-box {
    width: calc(100% - 676px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .onehub-section .left-box figure{
    animation: bounce 3s infinite ease-in-out;
} */
/* @keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
} */

.onehub-section .right-box {
    width: 676px;
    padding-left: 50px;
}

.onehub-section .right-box h2 {
    margin-bottom: 3px;
}

.onehub-section .right-box p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 19px;
}

.onehub-section .right-box ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 29px;
    margin-top: 38px;
}

.onehub-section .right-box ul li {
    box-shadow: 0px 4px 40px 0px #0000000F;
    border: 1px solid #19244457;
    background-color: #fff;
    padding: 16px 27px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.onehub-section .right-box ul li:hover {
    background-color: rgb(25, 36, 68, 0.04);
    border-color: rgb(25, 36, 68, 0.20);
}

.onehub-section .right-box ul li h3 {
    font-size: 20px;
    font-weight: 600;
    margin-left: 21px;
}

.our-prices-section {
    padding: 45px 0 0;
}

.our-prices-section .prices-table {
    margin-top: 40px;
}

.prices-table table thead tr th {
    padding: 25px 30px;
    background-color: #fff;
    font-size: 24px;
    font-weight: 600;
    color: #192444;
    font-family: "Figtree", sans-serif;
    vertical-align: middle;
    width: 38%;

}

.prices-table table thead tr th:first-child {
    background: #FFDDDD;
}

.prices-table table thead tr th:nth-of-type(2) {
    background: #DDFFEE;
}

.prices-table table tbody tr td {
    padding: 25px 30px;
    background-color: #fff;
    vertical-align: middle;
    width: 38%;


}

.prices-table table tbody tr td h3 {
    font-size: 20px;
    font-weight: 600;
    color: #192444;
}

.prices-table table tbody tr td p {
    font-size: 15px;
    font-weight: 400;
    color: #192444;
}

.prices-table table tbody tr td:first-child {
    background: #FFFAFA;
}

.prices-table table tbody tr td:nth-of-type(2) {
    background: #F2FFF8;
}

.prices-table table tbody tr td figure {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin-right: 20px;
    flex: 0 0 auto;
}

.prices-table table tbody tr td:first-child figure {
    background-color: #FFDDDD;
}

.prices-table table tbody tr td:nth-of-type(2) figure {
    background-color: #D1F9E5;
}

.prices-table table tbody tr td:last-child h3 {
    font-size: 30px;
    font-weight: 700;
    color: #00A453;
}

.prices-table table tbody tr td:last-child p {
    font-size: 18px;
    font-weight: 600;
    color: #192444;
}

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

.slick-dots {
    padding-top: 20px;
}

.slick-dots li {
    display: flex;
}

.slick-dots li:not(:last-child) {
    margin-right: 7px;
}

.slick-dots li button {
    font-size: 0;
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background-color: #DEDEDE;
    border: none;
    transition: all 0.3s ease-in-out;
}

.slick-dots li.slick-active button {
    width: 25px;
    background-color: #192444;
}

footer {
    background-color: #F9FAFB;
    padding: 26px 0 0;
}

.footer-logo img {
    width: 128px;
}

.footer-top {
    border-bottom: 1px solid rgb(25, 36, 68, 0.2);
    padding-bottom: 25px;
    margin-bottom: 32px;
}

.footer-top p {
    font-size: 16px;
    font-weight: 600;
    color: #192444;
    margin-bottom: 15px;
    text-align: start;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links li:not(:last-child) {
    margin-right: 10px;
}

.social-links li a {
    box-shadow: 0px 0px 2px 0px #00000040;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #19244433;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.social-links li a:hover {
    background-color: #00A453;
}

.social-links li a:hover img {
    filter: invert(1) brightness(5);
}

.footer-bottom .footer-inner {
    display: flex;
    flex-wrap: wrap;
    text-align: start;
}

.footer-bottom .footer-inner .left-section {
    width: 30%;
    padding-right: 50px;
}

.footer-bottom .footer-inner .left-section ul li {
    display: flex;
}

.footer-bottom .footer-inner .left-section ul li:not(:last-child) {
    margin-bottom: 20px;
}

.footer-bottom .footer-inner .left-section ul li figure {
    flex: 0 0 auto;
    margin-right: 13px;
}

.footer-bottom .footer-inner .left-section ul li p {
    font-size: 16px;
    font-weight: 600;
    color: #192444;
}

.footer-bottom .footer-inner .left-section ul li span {
    font-size: 14px;
    font-weight: 400;
    color: rgb(25, 36, 68, 0.8);
}

.footer-bottom .footer-inner .left-section ul li a {
    font-size: 14px;
    font-weight: 400;
    color: rgb(25, 36, 68, 0.8);
    transition: all 0.2s ease-in-out;

}

.footer-bottom .footer-inner .left-section ul li a:hover {
    color: #00A453;
}

.footer-bottom .footer-inner .right-section {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-bottom .box-inner h3 {
    font-size: 16px;
    font-weight: 600;
    color: #192444;
    margin-bottom: 9px;
}

.footer-bottom .box-inner ul li:not(:last-child) {
    margin-bottom: 5px;
}

.footer-bottom .box-inner ul li a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: rgb(25, 36, 68, 0.8);
    transition: all 0.2s ease-in-out;
}

.footer-bottom .box-inner ul li a:hover {
    color: #00A453;
}

.copyright-section {
    background-color: #FFFFFF;
    padding: 19px 0;
    text-align: center;
}

.copyright-section p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: rgb(25, 36, 68, 0.8);
}

.search-bar {
    position: relative;
    max-width: 240px;
    width: 100%;
    margin-left: auto;
    margin-right: 11px;
}

.search-bar .search-btn {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
}

.search-bar input {
    border: 1px solid #192444;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    min-height: 45px;
    padding: 5px 15px 5px 40px;
    font-size: 14px;
    font-weight: 400;
    color: #8d8d8d;
    box-shadow: none;
    outline: none;
}

.investor-alert {
    background-color: #F3F6F9;
    padding: 20px 0;
}

.investor-alert .container {
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    justify-content: end;
    position: relative;
}

.investor-alert strong {
    flex: 0 0 auto;
    padding-right: 15px;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -590px;
    width: 165px;
    background: #F3F6F9;
    z-index: 1;

}

.investor-alert marquee {
    width: 81%;
}

.useful-links {
    margin: 28px 0 49px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid transparent;
}

.useful-links button {
    text-align: start;
    padding: 13px 22px;
    border-radius: 10px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    color: #192444;
    border: 1px solid #192444;
    position: relative;
    transition: all 0.2s ease-in-out;
    /* margin-bottom: 20px; */
    border-radius: 10px;
}

.useful-links button:not(.collapsed) {
    border-color: transparent !important;
    border-bottom-color: #000000 !important;
    border-radius: 10px 10px 0 0;
    background-color: #000C37;
    color: #fff;
}

.useful-links:has(button:not(.collapsed)) {
    border-color: #192444;
}

.useful-links button::before {
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background-image: url(../images/arrow-bottom-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    transition: all 0.2s ease-in-out;
    filter: invert(1) brightness(0);
}

.useful-links button:not(.collapsed)::before {
    transform: translateY(-50%) rotate(180deg);
    filter: none;
}



.useful-links-body {
    border: none;
}

.useful-links-body .box-inner:not(:last-child) {
    margin-bottom: 20px;
}

.useful-links-body .box-inner {
    display: flex;
    align-items: start;
}

.useful-links-body .box-inner ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.useful-links-body .box-inner ul li {
    display: flex;
    margin: 5px 0;
}

.useful-links-body .box-inner ul li:not(:last-child) {
    margin-right: 12px;
    padding-right: 12px;
    border-right: 2px solid #797979;

}

.useful-links-body .box-inner ul li a {
    color: rgb(25, 36, 68, 0.7);
    font-weight: 500;
    /* opacity: 0.8;     */
}

.useful-links-body .box-inner h3 {
    color: #192444;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 0;
    margin-right: 15px;
    flex: 0 0 auto;
}

.inner-banner-section {
    background-color: #00112F;
    min-height: 455px;
    display: flex;
    align-items: center;
}

.inner-banner-section::before {
    background-image: url(../images/green-circle-bottom-1.svg);
    background-position: bottom;

}

.inner-banner-section .banner-inner .banner-content h1 {
    color: #fff;
}

.inner-banner-section .banner-inner .banner-content p {
    color: #fff;
    max-width: 555px;
    margin-bottom: 30px;
}

.inner-banner-section .banner-right {
    position: absolute;
    right: 0;
    top: 0;
}

.inner-banner-section.products-banner .banner-right {
    position: relative;
    width: 45%;
}

.inner-banner-section.solution-banner .banner-right {
    position: relative;
    width: 45%;
}

/* --- Solution Page Custom Styles --- */

.pill-tag {
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    color: #192444;
    min-height: 40px;
    border: 1px solid #192444;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 7px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.rewards-section {
    padding: 60px 0;
    background-color: #fff;
}

.equity-categories-section {
    padding: 60px 0;
    background-color: #F9FAFB;
}

/* Category card style */
.categories-box {
    margin: 0 -5px;
}

.categories-box>[class*="col"] {
    padding: 0 5px 10px;
}

.category-card {
    background: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 15px;
    padding: 23px 21px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 40px 0px #0000000F;

}

/* Risk Panel */
.risk-panel {
    background-color: #192444;
    border-radius: 10px;
    padding: 36px 32px;
    height: 100%;
    color: #fff;
    margin-left: 10px;
}

.risk-panel h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.risk-panel .progress-row {
    margin-bottom: 30px;
}

.risk-panel .progress-row .d-flex {
    justify-content: space-between;
    margin-bottom: 8px;
}

.risk-panel .progress-row .top-text p {
    font-size: 15px;
    color: #fff;
}

.risk-panel .progress-row .top-text span {
    font-size: 15px;
    color: #B0B2B9;
}

.risk-panel .progress-row .bottom-text span {
    font-size: 12px;
    color: #848996;
}

.risk-panel .progress {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.risk-panel .progress-bar {
    border-radius: 5px;
}

.solutions-section {
    padding: 60px 0;
    background-color: #192444;
    color: #fff;
}

.solutions-section .pill-tag {
    background-color: #192444;
    color: #B0B2B9;
    border: 1px solid #A3A7B4;
}

.solutions-section .heading {
    color: #fff;
}

/* Solutions Grid Layout & Enhanced Tabs */
.solutions-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 19px;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .solutions-grid-wrapper {
        grid-template-columns: 429px 1fr;
        gap: 19px;
    }
}

.custom-v-tabs {
    gap: 15px;
}

.custom-v-tabs .nav-link {
    color: #a3a7b4;
    text-align: left;
    padding: 20px;
    border-radius: 15px;
    background-color: #273150;
    border: 1px solid #333C59;
    transition: all 0s ease-in-out;
    cursor: pointer;
    width: 100%;
    align-items: center;
    box-shadow: 0px 4px 20px 0px #0000000F;
    position: relative;
}

.custom-v-tabs .nav-link::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -41px;
    width: 52px;
    height: 131%;
    /* background-color: #FFF; */
    background-image: url(../images/frame-icon-01.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0s ease-in-out;
}

.custom-v-tabs .nav-link::after {
    content: "";
    position: absolute;
    bottom: auto;
    top: -21px;
    transform: rotate(90deg);
    right: -28px;
    width: 32px;
    height: 32px;
    background-image: url(../images/accordion-curve.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0s ease-in-out;
}

/* .custom-v-tabs .nav-link:last-child::before {
    top: 1px;
} */

.custom-v-tabs .nav-link:first-child::after {
    display: none;
}

.custom-v-tabs .nav-link:last-child::after {
    bottom: auto;
    top: -21px;
    transform: rotate(90deg);
    right: -28px;
}

.custom-v-tabs .nav-link:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.custom-v-tabs .nav-link.active {
    background-color: #FFFFFF;
    color: #192444;
    border-radius: 15px 0 0 15px;
    border-color: #fff;
}

.custom-v-tabs .nav-link.active::before {
    opacity: 1;
    visibility: visible;
}

.custom-v-tabs .nav-link.active::after {
    opacity: 1;
    visibility: visible;
}

.custom-v-tabs .nav-link h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 3px;
}

.custom-v-tabs .nav-link.active h4 {
    color: #192444;
}

.custom-v-tabs .nav-link p {
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
}

.custom-v-tabs .nav-link.active p {
    color: #192444;
}

.dynamics-section {
    padding: 60px 0;
    background-color: #fff;
}

.insights-section {
    padding: 60px 0;
    background-color: #F9FAFB;
}

.faq-section {
    padding: 51px 0 60px;
}

.custom-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.custom-accordion .accordion-item {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #E2E2E2 !important;
    box-shadow: 0px 4px 20px 0px #0000000F;
}

.custom-accordion .accordion-button {
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 600;
    color: #192444;
    transition: all 0.3s ease-in-out;
    box-shadow: none;

}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #fff;
    box-shadow: none;
    border-bottom: 1px solid rgb(25, 36, 68, 0.2) !important;
}

.custom-accordion .accordion-button::after {
    filter: grayscale(1) invert(1) brightness(0.5);
}


.custom-accordion .accordion-body {
    padding: 23px 30px;
}

/* SOLUTION PAGE REFAC CSS */
.category-card {
    border-radius: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
}

.badge-low-risk {
    background: #DBF8D9;
    color: #34A92C;
    font-size: 13px;
    font-weight: 500;
    padding: 11px 17px;
    border-radius: 50px;
    width: max-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-med-risk {
    background: #FFF3DE;
    color: #F59E0B;
    font-size: 13px;
    font-weight: 500;
    padding: 11px 17px;
    border-radius: 50px;
    width: max-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-diversified {
    background: #D2E3FF;
    color: #3B82F6;
    font-size: 13px;
    font-weight: 500;
    padding: 11px 17px;
    border-radius: 50px;
    width: max-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.category-card h4 {
    color: #192444;
    font-size: 20px;
    font-weight: 700;
}

.category-card p {
    color: #192444;
    font-size: 15px;
    font-weight: 400;
}


.progress-bg {
    height: 8px;
    background-color: #434c67;
}

.progress-low {
    background-color: #10B981;
}

.progress-med {
    background-color: #F59E0B;
}

.progress-high {
    background-color: #EF4444;
}

.progress-etf {
    background-color: #3B82F6;
}

.w-30 {
    width: 30%;
}

.w-60 {
    width: 60%;
}

.w-85 {
    width: 85%;
}

.note-box {
    background: #273150;
    font-size: 13px;
    color: #b0b2b9;
    padding: 22px 25px;
    border-radius: 15px;
    box-shadow: 0px 4px 40px 0px #0000000F;
    border: 1px solid #E2E2E221
}

.v-tab-icon-bg {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-v-tabs .nav-link.active .v-tab-icon-bg {
    background: #1924440F;

}

.custom-v-tabs .nav-link.active .v-tab-icon-bg img {
    filter: invert(1) brightness(0);
}

.v-tab-icon {
    width: 42px;
    filter: brightness(0) invert(1);
}

.badge-new {
    background: #00A453;
}


.solutions-content-area .tab-pane {
    transition: all 0s ease;
}

.tab-content-box {
    border-radius: 15px;
    padding: 42px 50px 30px !important;
}

.solutions-content-area .tab-pane.active:first-child .tab-content-box {
    border-radius: 0 15px 15px 15px;
}

/* .solutions-content-area .tab-pane.active:last-child .tab-content-box {
    border-radius: 15px 15px 15px 0;
} */

.tab-content-box h3 {
    color: #192444;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 7px !important;
}

.tab-content-box h3:has(.tag) {
    display: flex;
    align-items: center;
    margin-bottom: 10px !important;
}

.tab-content-box h3 .tag {
    font-size: 15px;
    font-weight: 500;
    color: rgb(0, 164, 83);
    margin-left: 13px;
    padding: 7px 13px;
    border-radius: 50px;
    background-color: rgb(0, 164, 83, 0.11);
}

/* .tab-content-box h3 .tag.blue-tag{
    background-color: ;
} */

.tab-content-box p {
    color: #192444;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
}

.calc-box {
    background: #fff;
    border: 1px solid #19244457;
    box-shadow: 0px 7px 8.6px 0px #0000001F;
    padding: 19px 22px;
    border-radius: 15px;
}

.calc-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #192444;
}

.calc-box h4 {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    color: #192444;
    margin-bottom: 17px;
}

.margin-pay-box {
    background: #DDFFEE;
    padding: 16px 20px;
    border-radius: 15px;
}

.margin-pay-box p {
    font-size: 15px;
    font-weight: 400;
    color: #192444;
    margin-bottom: 4px;
}

.margin-pay-box span {
    font-size: 20px;
    font-weight: 600;
    color: #192444;
}

.dynamics-box {
    position: relative;
    overflow: hidden;
    padding: 70px 30px 30px;
}

.dynamics-box:hover {
    background-color: rgb(0, 164, 83, 0.05) !important;
    border-color: rgb(0, 164, 83, 0.25) !important;
}

.dynamics-box .dynamics-icon-box {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    margin-bottom: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease-in-out;
}

.dynamics-box:hover .dynamics-icon-box::before {
    background-color: #fff;
}

.dynamics-icon-box::before {
    content: "";
    position: absolute;
    top: -68px;
    right: -48px;
    width: 126px;
    height: 136px;
    background-color: #DDFFEE;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease-in-out;

}

/* .dynamics-icon {
    width: 30px;
} */
.experience-section {
    padding: 60px 0;
    background: #192444 url(../images/experience-bg-vector.svg) !important;
    background-size: 100% !important;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;
}

.section-dark-bg {
    background: #192444;
}

.experience-row {
    max-width: 880px;
    margin: 0 auto;
}

.experience-row>[class*="col"] {
    padding: 0 15px;
}

.app-card {
    border-radius: 15px;
    backdrop-filter: blur(6px);
    padding: 30px;
}

.exp-delta-card {
    background-color: #fff;
}

.exp-blaze-card {
    background-color: #fff;
    border: 1px solid #E2E2E233;
}

.app-card figure {
    background: rgba(0, 0, 0, 0.07);
    padding: 5px;
    margin: 0;
    border-radius: 10px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .app-card figure img{
    filter: invert(1) brightness(0);
    opacity: 0.8;
} */

.app-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 3px;
}

.app-card p {
    font-size: 15px;
    font-weight: 400;
    color: #192444;
}

.app-card i {
    font-size: 15px;
    font-weight: 600;
    color: #192444;
    margin-bottom: 23px;
    display: block;
}

.app-card ul {
    margin-bottom: 30px;
}

.app-card ul li {
    font-size: 15px;
    font-weight: 400;
    color: #192444 !important;
    margin-bottom: 15px;
    display: block;
    position: relative;
    padding-left: 25px;
}

.app-card ul li::before {
    position: absolute;
    left: 0;
    top: 4px;
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/check_icon_green.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.app-card .btn.btn-primary {
    min-height: 55px;
    border-color: #192444;
}

.app-card .btn.btn-primary:hover {
    border-color: #00A453;
}

.app-card .btn.btn-fill:hover {
    color: #192444 !important;
    border-color: #192444 !important;
}

.checkmark-green {
    color: #00A453;
}

.slider-margin {
    margin-right: -15px;
    margin-left: -15px;
}

.insights-slider .slick-arrow {
    top: 35%;
}

.insights-slider .slick-arrow.slick-prev {
    left: -40px;
}

.insights-slider .slick-arrow.slick-next {
    right: -40px;
}

.insights-slider p {
    color: #8D8D8D;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 8px;
}

.insights-slider a {
    text-decoration: none;
    color: #192444;
    font-size: 20px;
    font-weight: 700;
    display: block;
    transition: all 0.3s ease-in-out;
}

.insights-slider a:hover {
    color: #00A453;
}

.insights-slider-img {
    width: 100%;
    height: 238px;
    border-radius: 15px !important;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.insights-slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.insights-slider-img img:hover {
    transform: scale(1.02);
}

.faq-container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-color: #e2e2e2 !important;
}

.compare-box {
    background: #fff;
    border: 1px solid #19244457;
    box-shadow: 0px 7px 8.6px 0px #0000001F;
    padding: 19px 22px;
    border-radius: 15px;
}

.compare-box p {
    font-size: 18px;
    font-weight: 600;
    color: #192444;
    margin-bottom: 2px;
}

.compare-box span {
    font-size: 15px;
    font-weight: 400;
    color: #192444;
}

.compare-box small {
    font-size: 14px;
    font-weight: 600;
    color: #192444;
    background-color: rgb(0, 164, 83, 0.20);
    padding: 5px 10px;
    border-radius: 3px;
    width: fit-content;
    margin-left: auto;
    margin-top: 5px;
}

.text-green {
    color: #00A453 !important;
}

.compare-box.bg-green {
    background: rgb(0, 164, 83, 0.1);
    border-color: rgb(0, 164, 83, 0.25);
}

.inner-banner-section .banner-inner .banner-content {
    width: 70%;
}

.graph-section #myChart {
    width: 100%;
}

.stop-scroll {
    overflow: hidden;
}

.etf-categories-box {
    background-color: rgb(0, 164, 83, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #00A453;
}

.etf-categories-box span {
    font-size: 16px;
    font-weight: 500;
    color: #767676;
    margin-bottom: 5px;
    display: block;
}

.etf-categories-box h3 {
    font-size: 23px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 5px;
}

.etf-categories-box p {
    font-size: 16px;
    font-weight: 400;
    color: #192444;
    margin-bottom: 5px;
}

.pulse-ecosystem {
    padding: 60px 0;
    background-color: #192444;

}

.pulse-ecosystem .pill-tag {
    background-color: rgb(25 36 68 / 50%);
    backdrop-filter: blur(5px);
    border: 1px solid rgb(255 255 255 / 10%);
    color: #fff;
}

.pulse-ecosystem .heading {
    color: #fff;
}

.pulse-ecosystem .heading strong {
    font-weight: 700;
    color: #00A453;
}

.pulse-ecosystem .section-head p {
    color: #fff;
    margin-bottom: 20px;
}

.pulse-card {
    background-color: rgb(255 255 255 / 2%);
    backdrop-filter: blur(5px);
    border: 1px solid rgb(255 255 255 / 10%);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
}

.pulse-card .top-box {
    padding-bottom: 25px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.pulse-card .top-box span {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.7;
}

.pulse-card .top-box h3 {
    font-size: 32px;
    font-weight: 700;
}

.pulse-card p {
    border: 1px solid rgba(0, 164, 83, 0.3);
    color: #00A453;
    background: rgba(0, 164, 83, 0.1);
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    padding: 7px 15px;
}

.pulse-card .bottom-box {
    padding-top: 25px;
    border-top: 1px solid rgb(255 255 255 / 10%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.pulse-card .bottom-box>div {
    border: 1px solid rgb(255 255 255 / 20%);
    padding: 15px;
    border-radius: 10px;
}

.pulse-card .bottom-box span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
}

.pulse-card .bottom-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #00A453;
}

.solutions-tabs-sidebar {
    height: 100%;
}

.solutions-content-area .tab-pane .tab-content-box>div {
    max-height: 326px !important;
    padding-bottom: 20px;
}

.solutions-content-area .tab-pane .tab-content-box.payoff-chart-panel>div {
    max-height: 526px !important;
}

.mCSB_scrollTools {
    height: 100%;
    top: 0;
    right: 0;
}

.badge-green {
    background-color: rgb(20 184 166 / 10%);
    color: rgb(20 184 166 / 100%);
    font-size: 13px;
    font-weight: 500;
    padding: 11px 17px;
    border-radius: 50px;
    width: max-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-blue {
    background-color: rgb(14 165 233 / 10%);
    color: rgb(14 165 233 / 100%);
    font-size: 13px;
    font-weight: 500;
    padding: 11px 17px;
    border-radius: 50px;
    width: max-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-yellow {
    background-color: rgb(250 204 21 / 10%);
    color: rgb(250 204 21 / 100%);
    font-size: 13px;
    font-weight: 500;
    padding: 11px 17px;
    border-radius: 50px;
    width: max-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-purple {
    background-color: rgba(168, 85, 247, 0.1);
    color: rgba(168, 85, 247, 1);
    font-size: 13px;
    font-weight: 500;
    padding: 11px 17px;
    border-radius: 50px;
    width: max-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-black {
    background-color: rgb(15 23 42 / 10%);
    color: rgb(15 23 42 / 100%);
    font-size: 13px;
    font-weight: 500;
    padding: 11px 17px;
    border-radius: 50px;
    width: max-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.strategy-points {
    margin-top: 20px;
    margin-bottom: 30px;
}

.strategy-points li:not(:last-child) {
    margin-bottom: 15px;
}

.strategy-points li {
    padding-left: 30px;
    position: relative;
}

.strategy-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-image: url(../images/check_icon_green.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.strategy-points li h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.strategy-points li p {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 5px;
}

.net-worth-chart {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    align-items: end;
}

.chart-bars {
    background-color: #00A453;
    border-radius: 5px;
    width: 100%;
    height: 50px;
}

.net-worth-chart .h-20 {
    height: 60px;
}

.net-worth-chart .h-40 {
    height: 90px;
}

.net-worth-chart .h-60 {
    height: 120px;
}

.net-worth-chart .h-80 {
    height: 150px;
}

.net-worth-chart .h-100 {
    height: 180px !important;
}

.net-worth-chart .h-120 {
    height: 210px;
}

.bg-gray-200 {
    background-color: rgb(229 231 235 / 100%);
    box-shadow: 0px 0px 10px 0px rgb(229 231 235 / 20%);
}

.bg-gray-400 {
    background-color: rgb(156 163 175 / 100%);
    box-shadow: 0px 0px 10px 0px rgb(156 163 175 / 20%);
}

.bg-gray-600 {
    background-color: rgb(107 114 128 / 100%);
    box-shadow: 0px 0px 10px 0px rgb(107 114 128 / 40%);
}

.bg-blue-600 {
    background-color: rgb(22 163 74 / 60%);
    box-shadow: 0px 0px 10px 0px rgb(22 163 74 / 20%);
}

.bg-blue-800 {
    background-color: rgb(22 163 74 / 80%);
    box-shadow: 0px 0px 10px 0px rgb(22 163 74 / 40%);
}

.bg-green-800 {
    background-color: rgb(22 163 74 / 100%);
    box-shadow: 0px 0px 10px 0px rgb(22 163 74 / 60%);
}

.commodity-explorer-tab {
    padding: 25px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.commodity-explorer-tab .left-wrap {
    width: 50%;
    padding-right: 25px;
}

.commodity-explorer-tab .left-wrap h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.commodity-explorer-tab .left-wrap p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
}

.commodity-explorer-tab .left-wrap ul {
    margin-top: 15px;
    display: block;
}

.commodity-explorer-tab .left-wrap ul li {
    color: #192444;
    margin-right: 0 !important;
    margin-bottom: 10px;
    font-size: 16px;
    padding-left: 20px;
}

.commodity-explorer-tab .left-wrap ul li::before {
    background-color: #00A453;
    width: 8px;
    height: 8px;
}

.commodity-explorer-tab .chart-container {
    width: 50%;
}

.section-dark-bg .pill-tag {
    background-color: #192444;
    color: #B0B2B9;
    border: 1px solid #A3A7B4;
}

.calc-box.bg-light-yellow {
    background-color: rgb(255 243 205 / 50%);
    border-color: rgb(102 77 3 / 20%);
    box-shadow: none;
}

.calc-box.bg-light-yellow h3 {
    color: #664d03;
    font-family: "Inter", sans-serif !important;
}

.calc-box.bg-light-yellow h4 {
    opacity: 0.8;
    font-family: "Inter", sans-serif !important;
}

.futures-options-banner {
    /* background-image: url(../images/banner-vector.svg); */
    background-size: 100%;
    background-repeat: no-repeat;
}

.futures-options-banner .banner-inner .banner-content h1 {
    max-width: 680px;
}

.futures-options-banner .banner-inner .banner-content {
    width: 60%;
}

.inner-banner-section.products-banner .banner-inner .banner-content {
    width: 55%;
    padding-right: 30px;
}

.inner-banner-section.solution-banner .banner-inner .banner-content {
    width: 55%;
    padding-right: 30px;
}

.futures-options-banner .banner-inner .banner-right {
    width: 40%;
    position: relative;
}


.market-data-card {
    background: rgb(0, 0, 0, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    padding: 24px;
    border: 1px solid rgb(255, 255, 255, 0.1);
}

.market-data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.market-data-left {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.market-data-left .m-title {
    font-size: 13px;
    font-weight: 500;
    color: #a9a9a9;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.market-data-left .m-value {
    font-size: 27px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.market-data-right .m-pill {
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.market-data-right .m-green {
    color: #0bd185;
    border: 1px solid rgba(11, 209, 133, 0.3);
    background: rgba(11, 209, 133, 0.08);
}

.market-data-right .m-red {
    color: #ea646f;
    border: 1px solid rgba(234, 100, 111, 0.3);
    background: rgba(234, 100, 111, 0.08);
}

.m-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 8px 0;
}

/* Market Data Card */
.market-data-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: inherit;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.market-data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.market-data-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.market-data-left .m-title {
    font-size: 12px;
    font-weight: 500;
    color: #a3a3a3;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Consolas', 'Courier New', monospace;
}

.market-data-left .m-value {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.market-data-right .m-pill {
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Consolas', 'Courier New', monospace;
}

.market-data-right .m-green {
    color: #0bd185;
    border: 1px solid rgba(11, 209, 133, 0.3);
    background: rgba(11, 209, 133, 0.08);
}

.market-data-right .m-red {
    color: #ea646f;
    border: 1px solid rgba(234, 100, 111, 0.3);
    background: rgba(234, 100, 111, 0.08);
}

.m-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 8px 0;
}

/* Payoff Chart Extract */
.payoff-chart-header h3 {
    font-weight: 700;
    font-size: 24px;
}

.payoff-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.payoff-legend-dot.profit {
    background-color: #2db371;
}

.payoff-legend-dot.loss {
    background-color: #ff4757;
}

.payoff-legend-text {
    font-weight: 600;
    font-size: 15px;
}

.payoff-legend-text.profit {
    color: #2db371;
}

.payoff-legend-text.loss {
    color: #ff4757;
}

.payoff-chart-wrapper {
    height: 350px;
}

.payoff-disclaimer {
    font-size: 13px !important;
}

/* Futures & Options Stock Cards */
.fo-stock-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.fo-stock-card:hover {
    box-shadow: 0 10px 30px rgba(0, 164, 83, 0.08);
    border-color: rgba(0, 164, 83, 0.3);
}

.fo-stock-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #00A453 0%, #00572C 100%);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.fo-stock-card:hover::before {
    opacity: 1;
    visibility: visible;
}

.fo-stock-card-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 12px;
}

.fo-stock-card-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.fo-stock-list li {
    font-size: 16px !important;
    color: #192444;
    margin-right: 0 !important;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-weight: 500;
}

.fo-stock-list li::before {
    content: '•';
    color: #00A453;
    font-size: 20px;
    margin-right: 10px;
    line-height: 1;
}

/* Light Theme App Card Overrides */
.app-card.bg-white h3,
.app-card.bg-white p,
.app-card.bg-white ul li,
.app-card.bg-white i,
.app-card.bg-white span {
    color: #192444 !important;
}

.app-card.bg-white p.text-secondary,
.app-card.bg-white .text-secondary span {
    color: #8D8D8D !important;
}

.app-card.bg-white ul li::before {
    filter: invert(48%) sepia(87%) saturate(1450%) hue-rotate(113deg) brightness(97%) contrast(101%);
}

/* Solutions Platform Cards Custom CSS */
.solution-platform-card {
    border-radius: 16px;
    padding: 35px 23px 30px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.solution-platform-card:hover {
    transform: translateY(-5px);
}

.solution-variant-light {
    background-color: #fff;
    border: 1px solid #E2E2E233;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.solution-variant-light:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.solution-variant-green {
    background: #00A453;
    border: 1px solid #00A453;
    box-shadow: 0 4px 24px rgba(0, 164, 83, 0.2);
}

.solution-variant-green:hover {
    box-shadow: 0 12px 32px rgba(0, 164, 83, 0.4);
}

.solution-platform-card .btn {
    min-height: 55px;
    font-size: 18px;
}

.solution-platform-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.solution-platform-card figure {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border: 1px solid #ddd;
    border-radius: 7px;
    background-color: #fff;
    margin-bottom: 12px;
}

.solution-platform-card figure img {
    border-radius: 7px;
    overflow: hidden;
}

.solution-platform-card .platform-subtitle {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-platform-card .platform-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.solution-variant-light h3 {
    color: #192444;
}

.solution-platform-card h3 span {
    color: #00A453;
    font-weight: 800;
}

.solution-variant-light .platform-subtitle {
    color: #192444;
}

.solution-variant-light .platform-desc {
    color: #192444;
}

.solution-variant-light ul li {
    color: #192444 !important;
}

.solution-variant-light .btn-primary {
    border-color: #192444 !important;
}

.solution-variant-light .btn-primary:hover {
    border-color: #00A451 !important;
}

.solution-variant-green h3,
.solution-variant-green .platform-desc {
    color: #ffffff;
}

.solution-variant-green .platform-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.platform-features {
    margin-bottom: 35px;
    padding-left: 0;
    list-style: none;
}

.platform-features li {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    padding-left: 25px;
    position: relative;
}

.platform-features li::before {
    position: absolute;
    left: 0;
    top: 3px;
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(../images/sparkle_icon.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.solution-variant-light .platform-features li {
    color: rgba(255, 255, 255, 0.9);
}

.solution-variant-light .platform-features li::before {
    color: #00A453;
}

.solution-variant-green .platform-features li {
    color: #ffffff;
}

.solution-variant-green .platform-features li::before {
    filter: invert(1) brightness(5);
}

.btn-platform {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    display: block;
    width: 100%;
}

.platform-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: #fff;
    color: #192444;
    font-size: 12px;
    font-weight: 800;
    padding: 9px 20px;
    border-radius: 0 16px 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.our-solution-section .experience-row {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-section {
    padding: 70px 0;
}

.comparison-section .chart-container {
    margin-top: 30px;
}


.downloads-banner .dl-banner-icon-wrap {
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: dl-float 3s ease-in-out infinite;
}

.downloads-banner .dl-banner-icon-wrap svg {
    width: 100%;
    height: 100%;
}

@keyframes dl-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.downloads-page-section {
    padding: 50px 0 70px;
    background: #f8faf9;
}

.downloads-page-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.dl-sidebar {
    border: 1px solid #E2E2E2;
    border-radius: 15px;
    background-color: #fff;
    position: sticky;
    top: 100px;
    box-shadow: 0px 4px 40px 0px #0000000F;
    width: 294px;
    height: 100%;

}

.dl-category-group {
    padding: 18px 23px 30px 18px;
    border-bottom: 1px solid rgb(25, 36, 68, 0.10);
}

.dl-sidebar-search {
    position: relative;
    max-width: 373px;
    width: 100%;
}

.dl-search-input {
    width: 100%;
    padding: 11px 16px 11px 45px;
    border: 1px solid #D0D0D04A;
    border-radius: 10px;
    min-height: 55px;
    font-size: 16px;
    font-weight: 400;
    color: #192444;
    background: #F9FAFB;
    outline: none;
    transition: border-color 0.2s;
}

.dl-search-input:focus {
    border-color: rgb(0, 164, 83, 0.6);
}

.dl-search-input::placeholder {
    color: #8D8D8D;
}

.dl-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    transform: translateY(-50%);
}



.dl-sidebar-group-title {
    font-size: 18px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 10px;
    margin-top: 5px;
}

.dl-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 350px;
    overflow-y: auto;
}

.dl-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #192444;
    transition: all 0.2s ease;
    margin-bottom: 5px;
    position: relative;
}

.dl-category-item:hover {
    background: #EDF7F2;
    color: #00A453;
}

.dl-category-item.active {
    background: #E0F4EA;
    color: #00A453;
    font-weight: 600;
}



.dl-cat-count {
    font-size: 14px;
    font-weight: 400;
    background: #F9FAFB;
    color: #192444;
    padding: 2px 8px;
    border-radius: 20px;
    width: 38px;
    height: 38px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5px;
    transform: translateY(-50%);
    top: 50%;

}

.dl-category-item.active .dl-cat-count {
    background: #00A4531C;
    color: #00A453;
    font-weight: 600;
}

.dl-support-box {
    background: #F9FAFB;
    border-radius: 15px;
    padding: 15px 20px;
}

.dl-support-label {
    font-size: 13px;
    font-weight: 600;
    color: #192444;
    margin: 0 0 5px;
}

.dl-support-val {
    font-size: 13px;
    font-weight: 400;
    color: #192444;
    text-decoration: none;
    display: block;
}

a.dl-support-val:hover {
    color: #00A453;
}

.dl-content-area {
    width: calc(100% - 294px);
    padding-left: 40px;
}

.dl-content-header {
    padding: 13px 13px 13px 30px;
    border-radius: 15px;
    background-color: #fff;
    margin-bottom: 20px;
    border: 1px solid #E2E2E2;
    box-shadow: 0px 4px 40px 0px #0000000F;
}

.dl-content-title {
    font-size: 22px;
    font-weight: 700;
    color: #192444;
    margin: 0;
    display: flex;
    align-items: center;
}

.dl-doc-count {
    font-size: 13px;
    font-weight: 600;
    color: #00A453;
    background: #E0F4EA;
    padding: 7px 14px;
    border-radius: 50px;
    margin-left: 10px;
}

.dl-sort-select {
    padding: 9px 14px;
    border: 1.5px solid #E8EFEC;
    border-radius: 8px;
    font-size: 14px;
    color: #192444;
    background: #fff;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s;
}

.dl-sort-select:focus {
    border-color: #00A453;
}

.dl-search-inline {
    max-width: 373px;
}

.dl-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dl-doc-card {
    background: #ffffff;
    border: 1.5px solid #E8EFEC;
    border-radius: 14px;
    padding: 16px 23px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    cursor: default;
}

.dl-doc-card:hover {
    border-color: #00A453;
    box-shadow: 0 6px 24px rgba(0, 164, 83, 0.08);
    transform: translateY(-2px);
}

.dl-doc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.dl-doc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dl-doc-icon svg {
    width: 22px;
    height: 22px;
}

.dl-icon-pdf {
    background: #FFF0F0;
    color: #E11D48;
}

.dl-icon-xlsx {
    background: #F0FFF4;
    color: #16A34A;
}

.dl-icon-docx {
    background: #EFF6FF;
    color: #2563EB;
}

.dl-doc-title {
    font-size: 20px;
    font-weight: 700;
    color: #192444;
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dl-doc-desc {
    font-size: 15px;
    color: #192444;
    line-height: 1.5;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.dl-doc-date {
    font-size: 13px;
    font-weight: 400;
    color: #8D8D8D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.dl-doc-meta {

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #F0F4F2;
    margin-top: auto;
}

.dl-doc-badge {
    font-size: 14px;
    font-weight: 500;
    color: #192444;
    text-transform: capitalize;
    padding: 5px 10px;
    border-radius: 5px;
    background: #F2F3F5;
}

.dl-doc-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dl-action-btn {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #F2F3F5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #5a6478;
    text-decoration: none;
}

.dl-action-btn svg {
    width: 20px;
    height: 20px;
    color: #192444;
    transition: all 0.2s ease-in-out;
}

.dl-action-btn:hover {
    background: #EDF7F2;
    color: #00A453;
}

.dl-action-btn:hover svg {
    color: #00A453;
}

.dl-download-btn svg {
    color: #00A453;
    transition: all 0.2s ease-in-out;
}

.dl-download-btn:hover {
    background: #00A453;
    color: #fff;
}

.dl-download-btn:hover svg {
    color: #fff;
}

.dl-no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
    background-color: #fff;
    border-radius: 15px;
    border: 1.5px solid #E8EFEC;
}

.dl-no-results svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 8px;
    display: block;
}

.dl-no-results h4 {
    font-size: 18px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 8px;
}

.dl-no-results p {
    font-size: 14px;
    color: #9AA5B4;
}

.downloads-banner.inner-banner-section {
    padding: 0;
}

.downloads-banner.inner-banner-section .banner-content {
    padding: 30px 0;
    width: 60%;
}

.inner-banner-section.products-banner .banner-content p {
    margin-bottom: 20px;
}

.downloads-banner.inner-banner-section .banner-right {
    position: relative;
    width: 40%;
}

.downloads-banner .banner-right figure {
    position: relative;
    text-align: center;
}

.downloads-banner .banner-right figure::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url(../images/downloads_banner-bg.svg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    mix-blend-mode: color-dodge;
}

.inner-banner-section.products-banner .banner-content figure {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    width: fit-content;
    max-width: 170px;
    margin-bottom: 10px;
}

.inner-banner-section.products-banner .banner-content h1 {
    font-size: 40px;
    line-height: 50px;
}

.inner-banner-section.products-banner .banner-content h1 strong {
    background-color: #00A453;
    color: #fff;
    padding: 0px 9px;
    border-radius: 10px;
    line-height: normal;
    margin-left: 5px;
}

.inner-banner-section.products-banner .banner-content p strong {
    color: #00A453;
}

.inner-banner-section.products-banner .banner-content ul li {
    font-size: 18px;
    font-weight: 500;
    color: rgb(255 255 255 / 80%);
    margin-bottom: 15px;
    padding: 0;
    padding-left: 17px;
    min-height: auto;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    border: none;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    margin-right: 18px;
    font-family: "Figtree", sans-serif;
    position: relative;
}

.inner-banner-section.products-banner .banner-content ul li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 8px;
    height: 8px;
    background-color: #00A453;
    border-radius: 50%;
}

.inner-banner-section.products-banner .banner-content ul li strong {
    color: #00A453;
    padding-left: 5px;
}


.custom-v-tabs .nav-link:last-child:before {
    top: 1px;
    right: -41px;
    width: 72px;
    height: 100%;
}

/* ALGO Intro Section */
.algo-intro-section {
    background-color: #FAFAFC;
    overflow: hidden;
}

.algo-badge {
    border: 1px solid #1E293B;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 500;
    color: #192444;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    background: #fafafc;
}

.algo-heading {
    font-size: 30px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: "Figtree", sans-serif;
    text-transform: capitalize;
}

.algo-desc {
    font-size: 18px;
    color: #192444;
    line-height: 1.6;
}

.future-trading-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.future-trading-section .left-section {
    width: 459px;
}

.future-trading-section .demand_excellence {
    width: calc(100% - 459px);
    padding-left: 14px;
}

.demand_excellence .top-title {
    text-align: center;
    position: relative;
    background-color: #1924440A;
    border: 1px solid #19244445;
    backdrop-filter: blur(24.5px);
    padding: 30px 20px 10px;
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto 29px;
}

.demand_excellence .top-title label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #192444;
    padding: 8px 10px;
    border-radius: 50px;
    color: #fff;
    min-width: 170px;
    font-size: 12px;
    text-transform: uppercase;
}

.demand_excellence .top-title strong {
    font-size: 21px;
    font-weight: 700;
    color: #192444;
    text-transform: uppercase;
}

.demand_excellence .top-title strong span {
    color: #00A453;
}

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

.demand_excellence .center_circle .left-panel {
    display: flex;
    flex-direction: column;
}

.demand_excellence .center_circle .box-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid #1924444D;
    box-shadow: 0px 4px 40px 0px #0000000F;
    margin-bottom: 29px;
    padding: 0 0 0 29px;
    text-align: right;
    position: relative;
    min-width: 250px;
    max-width: 250px;
}

.demand_excellence .center_circle .box-inner::before {
    content: "";
    position: absolute;
    bottom: 5px;
    right: -32px;
    width: 32px;
    height: 0;
    border: 1px dashed #00A453;
    transform: rotate(35deg);
}

.demand_excellence .center_circle .left-panel .box-inner:nth-child(1) {
    right: -25px;
}

.demand_excellence .center_circle .box-inner:last-child {
    margin-bottom: 0;
}

.demand_excellence .center_circle .left-panel .box-inner:nth-child(2)::before {
    transform: none;
    bottom: 28px;
    right: -30px;
    width: 28px;
}

.demand_excellence .center_circle .left-panel .box-inner:nth-child(3) {
    right: -25px;
}

.demand_excellence .center_circle .left-panel .box-inner:nth-child(3)::before {
    transform: rotate(-35deg);
    bottom: 48px;
    right: -31px;
    width: 28px;
}

.demand_excellence .center_circle .right-panel .box-inner {
    padding: 0 29px 0 0;
    text-align: left;

}

.demand_excellence .center_circle .right-panel .box-inner:nth-child(1) {
    left: -25px;
}

.demand_excellence .center_circle .right-panel .box-inner:nth-child(3) {
    left: -25px;
}

.demand_excellence .center_circle .right-panel .box-inner::before {
    right: auto;
    left: -32px;
    transform: rotate(-35deg);
}

.demand_excellence .center_circle .right-panel .box-inner:nth-child(2)::before {
    right: auto;
    left: -30px;
    bottom: 30px;
    transform: none;
    width: 28px;
}

.demand_excellence .center_circle .right-panel .box-inner:nth-child(3)::before {
    transform: rotate(35deg);
    bottom: 48px;
    left: -31px;
    width: 28px;
}

.demand_excellence .center_circle .box-inner figure {
    border: 1px solid #1924444D;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #F6F6F8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -1px;
    margin-left: 12px;
    flex: 0 0 auto;
}

.demand_excellence .center_circle .right-panel .box-inner figure {
    margin-right: 12px;
    margin-left: -1px;
}

.demand_excellence .center_circle .box-inner span {
    font-size: 16px;
    font-weight: 500;
    color: #192444;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.center-panel-logo {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background-color: #00A4510D;
    border: 1px solid #00A4513B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 15px;
    margin: 0 30px;
    position: relative;
    z-index: 1;
}

.center-panel-logo figure {
    background-color: #fff;
    border-radius: 50%;
    width: 124px;
    height: 124px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.center-panel-logo figure img {
    max-width: 79px;
}

.demand_excellence .bottom-panel .box-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid #1924444D;
    box-shadow: 0px 4px 40px 0px #0000000F;
    width: fit-content;
    margin: 27px auto 0;
    padding: 35px 15px 15px 15px;
    text-align: right;
    position: relative;
    min-width: 306px;
}

.demand_excellence .bottom-panel .box-inner::before {
    content: "";
    position: absolute;
    top: -51px;
    left: 50%;
    width: 32px;
    height: 0;
    border: 1px dashed #00A453;
    transform: translateX(-50%) rotate(90deg);
}

.demand_excellence .bottom-panel .box-inner figure {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -32px;
    border: 1px solid #1924444D;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #F6F6F8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

/* .activate-odin-box .left-wrap ul li */
.activate-odin-box .left-wrap ul {
    margin-top: 10px;
    margin-bottom: 30px;
}

.activate-odin-box .left-wrap ul li {
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.80);
    /* margin-bottom: 8px; */
}

.activate-odin-box .left-wrap ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-image: url(../images/check_icon_green.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.activate-tags {
    display: flex;
    flex-wrap: wrap;
}

.activate-tags span {
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    margin-right: 5px;
    margin-bottom: 10px;
    display: inline-block;
    border: 1px solid rgb(226 226 226 / 40%);
    border-radius: 50px;
    padding: 8px 19px;
    background-color: rgb(168 177 194 / 15%);
    color: #fff !important;
}

.activate-odin-box {
    align-items: center;
}

.activate-odin-box .img-box figure {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.activate-odin-box .img-box figure img {
    width: 100%;

}

.ipo-strategic-box .pill-tag {
    background-color: #f5f5f5;
    color: #192444;
}

.ipo-strategic-box ul li {
    color: #192444;
    margin-bottom: 9px;
    position: relative;
    padding-left: 30px;
}

.ipo-strategic-box ul li:last-child {
    margin-bottom: 0;
}

.ipo-strategic-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-image: url(../images/check_icon_green.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.eipo-section .pill-tag {
    color: #00A451;
}

.eipo-section .heading {
    color: #fff;
}

.eipo-section .section-head p {
    color: #fff;
}

.eipo-section .chooseus-listing .content-card-box:hover {
    background-color: rgba(255, 255, 255, 0.95);
}

.eipo-section .chooseus-listing .content-card-box h3,
.eipo-section .chooseus-listing .content-card-box p {
    color: #192444;
}

.activate-section .heading {
    color: #fff;
}

.activate-section .activate-tags span {
    color: #fff;
}

.tab-content-box:has(.graph-section) p {
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 0;
}

.mCSB_inside>.mCSB_container {
    margin-right: 20px;
    padding-bottom: 22px;
}

.ipo-apply-section {
    padding: 60px 0;
    background-image: url(../images/experience-bg-vector.svg);
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.ipo-apply-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 30px 0px 0px;
}

.ipo-apply-box .follow_steps_div {
    width: 50%;
    padding-right: 40px;
}

.ipo-apply-box .cta_row {
    max-width: 100%;
    width: 350px;
}

.ipo-apply-box .cta_row strong {
    display: block;
    font-size: 18px;
    padding: 0px 4px 5px 4px;
    color: #00A453;
}

.ipo-apply-box .cta_row span {
    font-size: 13px;
    line-height: 20px;
    display: block;
    padding: 0px 4px 0px 4px;
    color: #fff;
}

.ipo-apply-box .cta_row .cta_list_box {
    max-width: 360px;
    margin-top: 15px;

}

.ipo-apply-box .cta_row .cta_list_box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 34px 18px;
    flex: 1;
    max-width: 360px;
    margin-top: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.ipo-apply-box .cta_row .cta_list_box a {
    color: #192444;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    width: 100%;
    color: #00A451;
}

.ipo-apply-section .account_opening {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ipo-apply-section .account_opening p {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #00A453;
    margin-right: 15px;
}

.account_opening_right {
    width: calc(100% - 75px);
    text-align: left;
    padding: 0px 0px 0px 5px;
}

.ipo-apply-box .account_opening_right strong {
    font-size: 18px;
    font-weight: 600;
    padding: 1px 0;
    color: #fff;
    display: block;
}

.ipo-apply-box .account_opening_right span {
    font-size: 14px;
    font-weight: 500;
    padding: 1px 0;
    color: #fff;
    display: block;
    opacity: 0.85;

}

.ofs-section {
    padding: 60px 0px;
}

.ofs-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.ofs-wrap .ofs-left {
    width: 50%;
}

.ofs-wrap .ofs-left .chooseus-listing .content-card-box:first-child {
    grid-column: 1 / -1;
}

.ofs-wrap .ofs-left .chooseus-listing {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
}

.ofs-wrap .ofs-left .section-head {
    margin-bottom: 30px;
}

.ofs-wrap .ofs-right {
    width: 50%;
    padding-left: 40px;
}

.ofs-value-box {
    background-color: #192444;
    border-radius: 30px;
    border: 1px solid rgb(0 164 81 / 35%);
    padding: 30px 22px;
    height: 100%;
}

.ofs-value-box h3 {
    font-size: 23px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ffffff17;
    color: #fff;
}

.value-line {
    padding: 12px;
    margin-bottom: 15px;
    background: rgb(0 164 81 / 10%);
    border-radius: 6px;
    border: 1px solid rgb(0 164 81 / 30%);
}

.value-line h4 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.value-line h4.text-success {
    color: #00A451 !important;
}

.value-line strong {
    font-weight: 700;
}

.value-line p {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    opacity: 0.85;
    text-align: right;
}

.value-line p.text-success {
    color: #00A451 !important;
}

.ofs-value-box span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    opacity: 0.80;
    margin-top: 20px;
}

.fpo-section {
    padding: 60px 0;
    background-color: #F9FAFB;
}

.fpo-wrap {
    display: flex;
    flex-wrap: wrap;
}

.fpo-wrap .left-box {
    width: 50%;
    padding-right: 30px;
}

.fpo-wrap .left-box ul {
    margin-top: 30px;
}

.fpo-wrap .left-box ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.fpo-wrap .left-box ul li figure {
    flex: 0 0 auto;
    width: 30px;
}

.fpo-wrap .left-box ul li h3 {
    font-size: 20px;
    font-weight: 600;
    color: #192444;
}

.fpo-wrap .left-box ul li p {
    font-size: 15px;
    font-weight: 400;
    color: #192444;
}

.fpo-wrap .right-box {
    width: 50%;
}

.capital-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.capital-box .box-inner {
    background-color: #192444;
    border: 1px solid #ddd;
    padding: 25px 11px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.capital-box .box-inner:nth-child(2) {
    margin-top: -20px;
    background-color: #00A451;
}

.capital-box .box-inner:nth-child(3) {
    margin-bottom: 20px;
    background-color: #00A451;
}

.capital-box .box-inner:nth-child(4) {
    margin-top: -20px;
}

.capital-box .box-inner figure {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    background-color: #EDFDF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capital-box .box-inner h4 {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 21px;
    font-weight: 600;
    color: #fff;
}

.capital-box .box-inner p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    opacity: .85;
    margin-bottom: 0;
}

.about-eipo-section {
    padding: 60px 0;
    background-color: #F9FAFB;
}

.about-eipo-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-eipo-box .about-eipo-left {
    width: 60%;
    padding-right: 40px;
}

.about-eipo-box .about-eipo-left .box-head figure {
    width: 70px;
    margin-right: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.about-eipo-box .about-eipo-left .box-head h2 {
    margin-bottom: 0;
    font-size: 40px;
    line-height: normal;
}

.about-eipo-box .about-eipo-left .box-head span {
    font-size: 17px;
    font-weight: 600;
    color: #00A451;
}

.about-eipo-box .about-eipo-left p {
    font-size: 18px;
    font-weight: 400;
    color: #192444;
    margin-bottom: 0;
}

.about-eipo-box .about-eipo-right {
    width: 40%;
}

.about-eipo-box .about-eipo-right figure {
    border-radius: 15px;
    overflow: hidden;
    background: rgb(0 0 0 / 5%);
    border: 1px solid #ddd;
}

.capabilities-section.philosophy-section .right-section ul li:first-child {
    width: calc(50% - 15px);
}

.pulse-ecosystem.activate-section .right-box figure {
    border-radius: 16px;
    overflow: hidden;
    background: rgb(255 255 255 / 3%);
    border: 1px solid rgb(255 255 255 / 10%);
}

.capital-box .box-inner figure img {
    width: 32px;
}

.whatsapp-chat-section span {
    font-size: 14px;
}

.whatsapp-chat-section small {
    font-size: 13px;
    padding: 2px 10px;
    /* margin: 0 auto; */
    /* width: fit-content; */
    position: relative;
}

.whatsapp-chat-section small::after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 140px;
    height: 1px;
    background-color: #606060;
}

.whatsapp-chat-section small::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 140px;
    height: 1px;
    background-color: #606060;
}

.whatsapp-chat-section a {
    color: #00A453 !important;
    font-size: 14px;
}

.description-data {
    margin: 15px 0;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.description-data p {
    font-size: 15px;
    font-weight: 500;
    color: #192444;
    margin-bottom: 20px;
    text-align: start;
}

.description-data p:last-child {
    margin-bottom: 0;
}

.description-data p a {
    color: #00A453 !important;
}

.heading-with-logo {
    margin-bottom: 15px;
    gap: 15px;
}

.heading-with-logo figure {
    max-width: 70px;
    flex: 0 0 auto;
}

.inner-banner-section.about-us-banner {
    text-align: center;
    min-height: 500px;
    background-image: url(../images/about-us-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.inner-banner-section.about-us-banner::before {
    display: none;
}

.inner-banner-section.about-us-banner .banner-content {
    width: 100%;
}

.inner-banner-section.about-us-banner .banner-content h1 {
    max-width: 100%;
}

.inner-banner-section.about-us-banner .banner-content p {
    text-align: center;
    max-width: 75% !important;
    margin: 15px auto 0;
}

.inner-banner-section.about-us-banner .banner-content .trust-tag {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.about-us-banner .banner-content .trust-tag {
    right: 50px;
}

.about-us-banner .banner-content p {
    max-width: 480px !important;
}



.who-we-are-section .about-eipo-left {
    width: 55%;
}

.who-we-are-section .about-eipo-right {
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 15px;
    width: 45%;
}

.who-we-are-section .about-eipo-right h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.bullet-point-box {
    margin-top: 30px;
}

.bullet-point-box li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.bullet-point-box li figure {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background-color: rgb(0 164 83 / 10%);
    margin-right: 20px;
    border-radius: 12px;
}

.bullet-point-box li h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.bullet-point-box li p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.drives-us-section {
    background-color: #F9FAFB;
    padding: 60px 0;
}

.drives-grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
    margin-top: 40px;
}

.drives-grid-box .inner-box {
    padding: 30px;
    border: 1px solid #e5e7eb;
    background-color: #fff;
    border-radius: 15px;
}


.drives-grid-box .inner-box figure {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin: 0 auto 15px;
    background-color: #1924440F;
    border-radius: 12px;
}

.drives-grid-box .inner-box figure img {
    filter: invert(1) brightness(0);
    max-width: 55px;
}

.drives-grid-box .inner-box h3 {
    color: #192444;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.drives-grid-box .inner-box p {
    color: #192444;
    font-size: 17px;
    font-weight: 400;
}

.leadership-section {
    padding: 60px 0;
}

.team-section {
    display: flex;
    flex-wrap: wrap;
    /* grid-template-columns: repeat(6, 1fr); */
    /* gap: 30px; */
    margin: 40px -15px 0;
    justify-content: center;
}

.flip-card {
    /* grid-column: span 2; */
    background-color: transparent;
    width: 33.33%;
    padding: 0 15px 30px;
    min-height: 350px;
    /* perspective: 1000px; */
}

/* .flip-card:nth-last-child(2) {
    grid-column: 2 / span 2;
}

.flip-card:nth-last-child(1) {
    grid-column: 4 / span 2;
} */

.flip-card .team-profile {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.flip-card .arrow-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00A453;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.flip-card-inner h3 {
    font-size: 23px;
    font-weight: 600;
    color: #192444;
    margin-top: 15px;
    margin-bottom: 10px;
}

.flip-card-inner span {
    font-size: 15px;
    font-weight: 500;
    color: #00A453;
    display: block;
}

.flip-card:focus {
    outline: 0;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flip-card-front {
    background-color: #fff;
    color: black;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px 25px;
}

.flip-card-back {
    background: linear-gradient(to right, #192444, #192444);
    color: white;
    transform: rotateY(180deg);
    z-index: 1;
    border-radius: 12px;
    padding: 20px 20px;
    border: 1px solid #ddd;

}

.flip-card .flip-card-back .team-profile {
    width: 70px;
    height: 70px;
    border-width: 4px;
    margin-right: 15px;
    flex: 0 0 auto;
}

.flip-card .flip-card-back h3 {
    color: #fff;
    font-size: 18px;
    text-align: start;
    margin-top: 0;
    margin-bottom: 3px;
}

.flip-card .flip-card-back span {
    font-size: 16px;
    text-align: start;
}

.flip-card .flip-card-back p {
    font-size: 15px;
    line-height: 1.5;
    text-align: start;
    margin-top: 20px;
    font-weight: 400;
}


.valueplay-section-main {
    height: 100%;
}

.valueplay-card-wrap {
    height: 100%;

    max-width: 800px;
    margin: auto;
    background: radial-gradient(circle at top left, #0b3551 0%, #071f33 45%, #03131f 100%);
    border-radius: 28px;
    padding: 35px 25px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15);
}

.valueplay-header-wrap {
    text-align: center;
    margin-bottom: 45px;
}

.valueplay-top-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.valueplay-main-title {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.valueplay-title-line {
    width: 90px;
    height: 3px;
    background: #00A451;
    margin: auto;
    border-radius: 10px;
}

.valueplay-table-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.valueplay-single-row {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background:
        rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(8px);
}

.valueplay-side-border {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
}

.vp-blue {
    background: #356dff;
}

.vp-green {
    background: #00A451;
}

.vp-light {
    background: #d9fff0;
}

.valueplay-row-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
}

.valueplay-left-content {
    display: flex;
    align-items: center;
    gap: 22px;
}

.valueplay-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.valueplay-icon-box img {
    max-width: 20px;
}

.vp-blue-bg {
    background: rgba(53, 109, 255, 0.12);
}

.vp-green-bg {
    background: rgba(0, 196, 106, 0.12);
}

.vp-light-bg {
    background: rgba(217, 255, 240, 0.12);
}

.valueplay-row-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.valueplay-right-content {
    text-align: right;

}

.valueplay-row-value {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.valueplay-green-text {
    color: #00A451 !important;
}

.valueplay-footer-note {
    margin-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    font-style: italic;
}

.partner-banner.inner-banner-section .banner-inner .banner-content {
    width: 60%;
    padding-right: 40px;
}

.partner-banner.inner-banner-section .banner-inner .banner-right {
    width: 40%;
    position: relative;

}

.partner-banner .banner-inner .banner-content ul li {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    padding: 10px 10px;
    min-height: auto;
    flex: auto;
    flex-direction: row;
    justify-content: start;
    border: 1px solid rgb(255 255 255 / 20%);
    background-color: rgb(0 17 47 / 40%);
}

.partner-banner .banner-inner .banner-content ul li img {
    margin-right: 10px;
}

.rewards-section.bg-light .chooseus-listing .content-card-box {
    background-color: #fff;
    border: 1px solid #E2E2E2;
    box-shadow: 0px 4px 40px 0px #0000000F;
}

.rewards-section.bg-light .chooseus-listing .content-card-box:hover figure {
    background-color: #F2F3F5;
}

.pulse-card.bg-white {
    text-align: center;
}

.pulse-card.bg-white h4 {
    font-size: 22px;
    font-weight: 600;
    color: #192444;
    margin-bottom: 6px !important;
}

.pulse-card.bg-white span {
    font-size: 14px;
    margin-bottom: 25px !important;
    display: inline-block;
    color: #192444;
}

.ideal-partner-section {
    padding: 60px 0;
}

.ideal-partner-section .chooseus-listing {
    grid-template-columns: repeat(2, 1fr);
}

.operational-benefits-section {
    padding: 60px 0;
    background-color: #192444;

}

.operational-benefits-section ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.operational-benefits-section ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 15px;
    background: rgb(255 255 255 / 1%);
}

.operational-benefits-section ul li:hover {
    border-color: rgb(0 164 83 / 30%);
    background: rgb(0 164 83 / 5%);
}

.operational-benefits-section ul li figure {
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 12px;
    background-color: #00a453;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .operational-benefits-section ul li figure img {
    filter: invert(1) brightness(5);
} */

.operational-benefits-section ul li h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 7px;
}

.operational-benefits-section ul li p {
    font-size: 15px;
    font-weight: 300;
    color: rgb(255 255 255 / 80%);
}

.registration-section {
    padding: 60px 0;
}

.registration-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.registration-list li {
    background: #fff;
    border: 1px solid rgb(0 164 83 / 25%);
    border-radius: 15px;
    padding: 35px 25px;
    position: relative;
    background-color: #fff;
    /* padding-right: 80px; */
    box-shadow: rgb(0 164 83 / 10%) 0px 7px 29px 0px;
    transition: all 0.3s ease-in-out;
}

.registration-list li:hover {
    transform: translateY(-5px);
    box-shadow: rgb(0 164 83 / 20%) 0px 7px 29px 0px;
    background-color: #00A451;
}

.registration-list li:hover :where(h3, p) {
    color: #fff;
}

.registration-list li:hover span {
    color: #192444;
}

.registration-list li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
    width: 40px;
    height: 1px;
    border-bottom: 1px dashed #192444;
}

.registration-list li span {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 80px;
    font-weight: 700;
    color: #00A453;
    opacity: 0.1;
    line-height: 1;
}

/* .registration-list li figure {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background-color: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.registration-list li h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 32px;
}

.registration-list li p {
    font-size: 16px;
    font-weight: 400;
    color: #192444;
    margin-bottom: 0;
}

.request-callback-box {
    padding: 60px 0;
    background-color: #192444;
    text-align: center;
}

.request-callback-box ul {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 30px; */
    width: fit-content;
    margin: 30px auto 0;
    padding: 15px;
    background-color: rgb(255 255 255 / 3%);
    border-radius: 50px;
    border: 1px solid rgb(255 255 255 / 7%);
}

.request-callback-box ul li {
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid rgb(255 255 255 / 15%);
}

.request-callback-box ul li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}

.request-callback-box ul li a {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}

.request-callback-box ul li a:hover {
    color: #00A451;
}

.request-callback-box ul li a figure {
    margin: 0;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.request-callback-box ul li a figure img {
    max-width: 22px;
    filter: invert(1) brightness(0);
}

.year-tag {
    border: 1px solid #00A451;
    padding: 7px 20px;
    border-radius: 12px;
    width: fit-content;
    display: flex;
    align-items: center;
    margin: 0 auto 10px;
}

.year-tag p {
    font-size: 45px !important;
    line-height: normal;
    margin-top: 0 !important;
    font-weight: 700 !important;
    color: #00A451 !important;
}

.year-tag div {
    color: #fff;
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #00A451;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.6;
}

.year-tag strong {
    display: block;
    color: #00A451;
}
.banner-enquiry-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.banner-enquiry-box .box-inner {
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgb(255 255 255 / 10%);
    padding: 15px 10px;
    border-radius: 8px;
    border: 1px solid rgb(255 255 255 / 20%);
}
.banner-enquiry-box .box-inner figure {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 164 83 / 100%);
    border: 1px solid rgb(0 164 83 / 30%);
    border-radius: 8px;
    flex: 0 0 auto;
}
.banner-enquiry-box .box-inner figure img{
    filter: invert(1) brightness(10);
}
.banner-enquiry-box .box-inner small {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.banner-enquiry-box .box-inner p, .banner-enquiry-box .box-inner a {
    display: block;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #00a453 !important;
    margin-bottom: 0 !important;
}
.our-branch-section{
    padding: 60px 0;
}
.branch-listing{
    display: flex;
    flex-wrap: wrap;
    margin: 40px -10px 0;
}
.branch-listing li{
    width: 25%;
    padding: 0 10px;
    margin-bottom: 20px;
}
.branch-listing li .box-inner{
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 12px;
    height: 100%;
    position: relative;
}
.branch-listing li .box-inner figure{
    width: 100%;
    height: 220px;
    margin-bottom: 15px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}
.branch-listing li .box-inner .box-content {
    padding: 0 15px 15px;
    position: relative;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.branch-listing li .box-inner figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.branch-listing li .box-inner h3 {
    font-size: 20px;
    font-weight: 600;
    color: #192444;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.branch-listing li .box-inner p{
    font-size: 14px;
    font-weight: 400;
    color: #383838;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 10px;
}
.branch-listing li .box-inner a{
    font-size: 15px;
    font-weight: 400;
    color: #383838;
    display: flex;
    align-items: center;
    gap: 7px;
}
.branch-listing li .box-inner a img{
    max-width: 17px;
}
.branch-listing li .box-inner a {
    font-weight: 500;
    display: flex;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    margin-top: auto;
}
.branch-listing li .box-inner a:hover{
    color: #00A451;
}
.bg-light-grey{
    background-color: #F3F6F9 !important;
}
.contact-info-section{
    padding: 60px 0;
}
.contact-info-section table {
    margin-top: 30px;
    caption-side: bottom;
    border-collapse: collapse;
    width: 100%;
}
.contact-info-section table th:first-child{
    border-radius: 12px 0 0 0;
    border-right: 1px solid #d9d9d9;
}
.contact-info-section table th:last-child{
    border-radius: 0 12px 0 0;
}
.contact-info-section table tr:last-child td{
    border: none;
}
.contact-info-section table tr td{
    background-color: #fff;
    border-bottom: 1px solid #d9d9d9;
}
.contact-info-section table tr td:first-child{
    border-right: 1px solid #d9d9d9;
}
.contact-info-section table tr:last-child td:first-child{
    border-radius: 0 0 0 12px;
}
.contact-info-section table tr:last-child td:last-child{
    border-radius: 0 0 12px 0;
}
.contact-info-section table th{
    font-size: 16px !important;
    background-color: rgb(25 36 68 / 5%);
}
.contact-info-section table th ,.contact-info-section table td{
    vertical-align: middle;
    padding: 15px 20px;
    font-size: 15px;
}
.contact-info-section table td a{
    font-weight: 500;
    text-decoration: underline;

}
.contact-info-section table td a:hover{
    color: #00A451;
}

.investor-complaint-section{
    padding: 60px 0;
}
.investor-complaint-section table{
    margin: 30px 0;
    border: 1px solid #d9d9d9;
        width: 100%;
}
.investor-complaint-section table th{
    font-size: 15px !important;
    background-color: rgb(25 36 68 / 5%);
    vertical-align: middle;
    padding: 15px 10px;
        border-bottom: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
}
.investor-complaint-section table td{
    font-size: 14px !important;
    vertical-align: middle;
    padding: 15px 10px;
    border-bottom: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
}

.investor-complaint-section table td a{
    color: #00a453 !important;
    font-weight: 500;
}
.investor-complaint-section .alert{
    font-size: 15px;
}
.alert a{
    font-weight: 500;
    color: #00a453 !important;
}
.investor-complaint-section.border-top{
    border-top: 1px solid #ddd;
}
.registered-office{
    padding: 60px 0;
    border-bottom: 1px solid #ddd;
}
.registered-office-content{
    background-color: #F3F6F9;
    border-radius: 15px;
    margin-top: 30px;
    overflow: hidden;
    display: flex;
    flex: 1;
}
.registered-office-address{
    padding: 50px 30px;
    width: 60%;   
}
.registered-office-address h3 {
    font-size: 25px;
    font-weight: 600;
    color: #192444;
    margin-bottom: 15px;
    border-bottom: 1px solid #838383;
    padding-bottom: 15px;
}
.registered-office-address p {
    font-size: 15px;
    font-weight: 400;
    color: #192444;
    margin-bottom: 10px;
}
.registered-office-details {
    background-color: #192444;
    padding: 30px;
    max-width: 40%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}
.registered-office-details p img , .registered-office-details a img{
    filter: invert(1) brightness(5);
    max-width: 20px;
    margin-right: 10px;
    flex: 0 0 auto;
}
.registered-office-details p , .registered-office-details a{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    width: 100%;
} 
.about-us-banner.faq-banner{
    min-height: 400px;
}
.custom-faq-accordion .accordion-button{
    font-size: 18px;
    font-weight: 500;
    padding:  20px;
}
.custom-faq-accordion .accordion-button:not(.collapsed){
    color: #fff !important;
    background-color: #192444 !important;    
}
.custom-faq-accordion .accordion-button:not(.collapsed)::after{
    filter: brightness(0) invert(1);
}
.custom-faq-accordion .accordion-body{
    font-size: 16px;
    font-weight: 400;
    padding:  20px;
}
.custom-faq-accordion .accordion-body .faq-category{
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    font-weight: 500;
    font-size: 15px;
}
.custom-faq-accordion .accordion-body .faq-category span{
    color: #00A451;
}
.custom-faq-accordion .accordion-button{
    font-size: 17px;
}


@media(max-height:800px) {
    .dl-category-list {
        max-height: 250px;
    }
}

@media(max-width:1199px) and (max-height:800px) {
    .dl-category-list {
        max-height: 181px !important;
    }
}

@media(min-width:1200px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media(min-width:992px) {
    /* .useful-links-body .box-inner {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .useful-links-body .box-inner:nth-of-type(1) {
        padding-left: 0;
    }

    .useful-links-body .box-inner:nth-of-type(5) {
        padding-left: 0;
    }

    .useful-links-body .box-inner:nth-of-type(4) {
        border-right: none;
    }

    .useful-links-body .box-inner:nth-of-type(8) {
        border-right: none;
    } */

    .header-nav ul li.accordion-item .accordion-collapse.collapse:not(.show) {
        display: block;
    }

    .header-nav ul li.accordion-item {
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease-in-out;
        border-radius: 0 !important;
    }

    .header-nav ul li.accordion-item:hover {
        border-bottom: 3px solid #00A453;
    }

    /* .header-nav ul li.accordion-item::before {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        width: 100%;
        height: 3px;
        border-bottom: 3px solid #00A453;
        z-index: 1;
        opacity: 0;
        border-radius: 5px;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }

    .header-nav ul li.accordion-item:hover::before {
        opacity: 1;
        visibility: visible;
    } */
    .header-nav ul li.accordion-item .accordion-collapse .submenu {
        width: 50%;
    }

    .header-nav ul li.accordion-item .accordion-collapse .submenu+figure {
        width: 50%;
        flex: 1;
        padding-left: 20px;
        border-left: 1px solid #ddd;
    }

    .header-nav ul li.accordion-item .accordion-collapse .submenu+figure img {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }

    .header-nav ul li.accordion-item {
        cursor: pointer;
    }

    .header-nav ul li.accordion-item .accordion-collapse {
        position: absolute;
        top: 100%;
        left: -10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        display: flex !important;
        align-items: start;
        transition: all 0.3s ease-in-out;
        background: #fff;
        border: 1px solid #ddd;
        padding: 15px 17px;
        z-index: 1;
        /* min-width: 275px; */
        min-width: 830px;
        border-radius: 12px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 10px 20px 0px;
    }

    .header-nav ul li.accordion-item:hover .accordion-collapse {
        top: 80px;
        opacity: 1;
        visibility: visible;
    }

    .header-nav ul li.accordion-item .accordion-button {
        display: none;
    }

    .header-nav ul li.accordion-item .accordion-collapse .container {
        margin-left: 120px;
        margin-right: 40px;
        flex: 1;
    }
}

@media(min-width:768px) and (max-width:991px) {
    .useful-links-body .box-inner {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .useful-links-body .box-inner:nth-of-type(3) {
        border-right: none;
    }

    .useful-links-body .box-inner:nth-of-type(6) {
        border-right: none;
    }

    .useful-links-body .box-inner:nth-of-type(4) {
        padding-left: 0;
    }

    .useful-links-body .box-inner:nth-of-type(7) {
        padding-left: 0;
    }

}

@media(min-width:0px) and (max-width:767px) {}

@media(max-width:1399px) {
    .investor-alert marquee {
        width: 91%;
    }

    .header-nav {
        margin-left: 20px;
    }

    .header-nav ul li:not(:last-child) {
        margin-right: 15px;
    }

    .search-bar {
        max-width: 180px;
        text-overflow: ellipsis;
    }

    .header-nav ul li.accordion-item .accordion-button {
        width: 12px;
        height: 12px;
    }

    .header-nav ul li.accordion-item .accordion-button::after {
        background-size: 13px !important;
        width: 12px;
        height: 12px;

    }

    .insights-slider {
        padding: 0 20px;
    }

    .insights-slider .slick-arrow.slick-prev {
        left: 0px;
    }

    .insights-slider .slick-arrow.slick-next {
        right: 0px;
    }
}

@media(max-width:1299px) {
    .trade-slider {
        padding: 0 20px;
    }

    .trade-slider .slick-arrow.slick-prev {
        left: 0px;
    }

    .trade-slider .slick-arrow.slick-next {
        right: 0px;
    }

    .header-inner .btn {
        font-size: 14px;
    }

    .header-nav ul li:not(:last-child) {
        margin-right: 15px;
    }

    .header-nav {
        margin-left: 20px;
    }

    .logo {
        max-width: 70px;
    }

    .header-nav ul li a {
        font-size: 14px;
    }

    .header-nav ul li.accordion-item:hover .accordion-collapse {
        top: 78px;
    }
}

@media(max-width:1199px) {
    .banner-inner .banner-content h1 {
        font-size: 42px;
        line-height: 50px;
        max-width: 480px;
    }

    .banner-inner .banner-content p {
        max-width: 335px;
        font-size: 16px;
    }

    .banner-content .trust-tag {
        max-width: 105px;
    }

    .trade-slider {
        padding: 0 22px;
    }

    .trade-slider .slick-arrow.slick-prev {
        left: 0px;
    }

    .trade-slider .slick-arrow.slick-next {
        right: 0px;
    }

    .banner-inner .banner-content ul li {
        font-size: 15px;
    }

    .banner-form h2 {
        font-size: 20px;
    }

    .offer-tag {
        font-size: 12px;
    }

    .offer-tag::before {
        left: -14px;
        height: 34px;
    }

    .content-card-box {
        padding: 32px 18px 25px;
    }

    .dynamics-section .content-card-box {
        padding: 52px 18px 25px;
    }

    .content-card-box h3 {
        font-size: 18px;
    }

    .content-card-box p {
        font-size: 14px;
    }

    .footer-links {
        gap: 13px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 10px 0 15px;
    }

    .search-bar {
        max-width: 100%;
        /* margin-top: 20px; */
        margin-right: 0;
        order: 3;
        border-top: 1px solid #ddd;
        padding-top: 15px;
    }

    .search-bar .search-btn {
        top: calc(50% + 6px);
    }

    .banner-inner .banner-content ul li {
        padding: 10px 13px;
    }

    .banner-inner .banner-content ul li small {
        font-size: 14px;
    }

    .banner-inner .banner-content ul li p {
        font-size: 20px;
    }

    .home-banner-section {
        padding: 40px 0;
        border-top: 1px solid #ddd;
    }

    .prices-table table thead tr th {
        font-size: 20px;
    }

    .prices-table table tbody tr td h3 {
        font-size: 18px;
    }

    .prices-table table tbody tr td:last-child p {
        font-size: 16px;
    }

    .prices-table table tbody tr td:last-child h3 {
        font-size: 25px;

    }

    .advantage-section .left-wrap {
        padding-right: 50px;
    }

    .partner-section .right-wrap ul li:nth-of-type(2) {
        margin-left: 60px;
        margin-right: -60px;
    }

    .advantage-section.partner-section .right-wrap {
        padding-right: 60px;
    }

    .investor-alert strong {
        margin-left: -473px;
    }

    .inner-banner-section .banner-right {
        position: absolute;
        right: 0;
        top: 0;
        width: 520px;
        height: 455px;
    }

    .inner-banner-section .banner-right figure {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* .inner-banner-section .banner-right figure img {
        height: 100%;
        object-fit: cover;
    } */
    .dl-sidebar-search {
        max-width: 293px;
    }

    .dl-search-input {
        font-size: 14px;
    }

    .dl-doc-title {
        font-size: 18px;
    }

    .dl-sidebar {
        top: 180px;
    }

    .dl-category-list {
        max-height: 280px;
    }

    .future-trading-section .left-section {
        width: 400px;
    }

    .future-trading-section .demand_excellence {
        width: calc(100% - 400px);
        transform: scale(0.7);
    }

    .products-banner.inner-banner-section .banner-inner .banner-content {
        width: 50%;
    }

    .solution-banner.inner-banner-section .banner-inner .banner-content {
        width: 50%;
    }

    .inner-banner-section.products-banner .banner-content h1 {
        font-size: 30px;
        line-height: 40px;
        max-width: 100%;
    }

    .inner-banner-section.solution-banner .banner-content h1 {
        font-size: 30px;
        line-height: 40px;
        max-width: 100%;
    }

    .ofs-wrap .ofs-left {
        width: 100%;
    }

    .ofs-wrap .ofs-right {
        width: 100%;
        padding-left: 0;
        margin-top: 35px;
    }

    .inner-banner-section.about-us-banner {
        min-height: 420px;
    }

    .drives-grid-box {
        gap: 30px;
    }

    .drives-grid-box .inner-box {
        padding: 30px 20px;
    }

    /* .team-section {
        gap: 20px;
    } */

    .flip-card {
        min-height: 400px;
    }
        .inner-banner-section.contact-us-banner .banner-right{
        height: auto;
    }
    .banner-enquiry-box .box-inner figure{
        width: 40px;
        height: 40px;
    }
    .banner-enquiry-box .box-inner p, .banner-enquiry-box .box-inner a{
        font-size: 15px !important;
    }
    .branch-listing li{
        width: 50%;
    }
    .table-responsive{
        white-space: nowrap;
    }
    .investor-complaint-section table td p {
        min-width: 310px;
        white-space: pre-wrap;
    }
}

@media(max-width:991px) {
    .container {
        max-width: 100%;
    }

    /* .header-inner{
        border-bottom: 1px solid #ddd;
    } */
    .banner-inner .banner-content {
        width: 100%;
        text-align: center;
    }

    .banner-inner .banner-content h1 {
        max-width: 100%;
    }

    .banner-inner .banner-content p {
        max-width: 100%;
    }

    .banner-inner .banner-content ul {
        justify-content: center;
    }

    .banner-inner .banner-right {
        width: 70%;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 35px;
    }

    .banner-inner .banner-content span {
        margin: 0 auto 15px;
    }

    .content-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-list li {
        padding: 23px 14px;
    }

    .feature-list li h3 {
        font-size: 17px;
    }

    .pricing-list {
        gap: 22px;
    }

    .pricing-list>li {
        padding: 30px 20px;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-middle ul {
        flex-direction: column;
        align-items: start;
    }

    .footer-middle ul li {
        margin-right: 0;
        margin-bottom: 5px;
        padding-right: 0;
        border: none !important;
    }

    .home-banner-section {
        padding: 45px 0;
    }

    .logo {
        max-width: 70px;
    }

    .banner-inner .banner-content h1 {
        font-size: 37px;
        line-height: 45px;
        max-width: 600px;
        margin: 0 auto 10px;
    }

    .banner-inner .banner-content p {
        margin-bottom: 30px;
    }

    .banner-inner .banner-content p br {
        display: none;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 7px;
    }

    .banner-form span {
        text-align: center;
    }

    .banner-form h2 {
        text-align: center;
    }

    .banner-form p {
        text-align: center;
    }

    .offer-tag {
        top: 0;
        border-radius: 0 30px 0 15px;
        padding: 8px 13px;
    }

    .offer-tag::before,
    .offer-tag::after {
        display: none;
    }

    .banner-content .trust-tag {
        right: 0;
        top: -40px;
        max-width: 65px;
    }

    .home-banner-section {
        padding: 45px 0 45px;
        border-top: 1px solid #ddd;
    }

    /* menu bar */

    .menu-bar {
        border: 0;
        display: block;
        background-color: transparent;
        width: 30px;
        height: 25px;
        position: relative;
        transition: all 0.3s ease-in-out;
        margin-left: 20px;
        flex: 0 0 auto;
    }

    .menu-bar span {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        border-radius: 50px;
        background-color: #000C37;
        transition: all 0.3s ease-in-out;
    }

    .menu-bar span:nth-of-type(2) {
        top: 10px;
    }

    .menu-bar span:nth-of-type(3) {
        top: 20px;
    }

    .menu-bar.open span:nth-of-type(1) {
        transform: rotate(45deg);
        top: 10px;
    }

    .menu-bar.open span:nth-of-type(2) {
        width: 0;
    }

    .menu-bar.open span:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 10px;
    }

    .header-nav {
        position: absolute;
        top: 86px;
        left: 0;
        background-color: #fff;
        display: block;
        width: 100%;
        padding: 0 15px;
        z-index: 999;
        height: 0;
        border-top: 1px solid transparent;
        transition: all 0.3s ease-in-out;
        overflow-y: auto;
        margin-left: 0;
    }

    .header-nav.show {
        height: calc(100vh - 80px);
        padding: 0 0 20px;
        border-color: #ddd;
        transition: all 0.3s ease-in-out;
    }

    .header-nav ul {
        display: block;
    }

    .header-nav ul li {
        margin: 0 !important;
        margin-bottom: 20px !important;
    }

    .header-nav ul li a {
        font-size: 15px;
    }

    .onehub-section .left-box {
        width: 100%;
    }

    .onehub-section .right-box {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
    }

    .onehub-section {
        padding: 50px 0 40px;
    }

    .chooseus-listing {
        gap: 15px;
    }

    .advantage-section {
        padding: 40px 15px 40px 15px;
    }

    .advantage-section .left-wrap {
        width: 100% !important;
        padding-right: 0;
        padding-bottom: 25px;
        text-align: center;
    }

    .advantage-section .left-wrap p {
        margin-bottom: 15px;
    }

    .advantage-section .right-wrap {
        width: 100% !important;
    }

    .table-responsive {
        white-space: nowrap;
    }

    .prices-table table tbody tr td p {
        max-width: 200px;
        white-space: pre-wrap;
    }

    .philosophy-section {
        padding: 40px 20px;
    }

    .philosophy-section .left-section .heading br {
        display: none;
    }

    .philosophy-section .left-section {
        width: 100%;
        text-align: center;
        padding-bottom: 30px;
    }

    .philosophy-section .right-section {
        width: 100%;
    }

    .philosophy-section .left-section .heading::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .advantage-section.partner-section {
        padding: 45px 0;
    }

    .partner-section .left-wrap ul {
        justify-content: center;
    }

    .advantage-section.partner-section .right-wrap {
        padding-top: 20px;
        padding-right: 0;
    }

    .partner-section .right-wrap ul li:nth-of-type(2) {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-bottom .footer-inner .left-section {
        width: 100%;
        padding-right: 0;
        padding-bottom: 30px;
    }

    .footer-bottom .footer-inner .right-section {
        width: 100%;
    }

    .footer-logo img {
        width: 98px;
    }

    .investor-alert strong {
        margin-left: 0;
        position: relative;
        left: 0;
        width: auto;
    }

    .investor-alert marquee {
        width: 100%;
    }



    .search-bar {
        margin-top: 11px;
    }

    .header-nav ul li.accordion-item {
        padding: 0;
        flex-direction: column;
        justify-content: start;
        align-items: start !important;
        text-align: start;
        margin-bottom: 0 !important;
    }

    .header-nav ul li.accordion-item:not(:last-child) {
        border-bottom: 1px solid #ddd;
        top: 15px;
    }

    .header-nav ul li.accordion-item .accordion-button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        font-size: 15px;
        height: auto;
        margin: 0;
        color: #192444;
    }

    .header-nav ul li.accordion-item a {

        padding: 10px;
        color: #192444;
        font-size: 15px;
    }

    .header-nav ul li.accordion-item .accordion-button::after {
        background-size: 13px !important;
        width: 27px;
        height: 27px;
        background-position: center !important;
    }

    .header-nav ul li.accordion-item .accordion-collapse {
        background-color: rgb(0, 164, 83, 0.05);
        border: 1px solid #ddd;
        border-left: 0;
        border-right: 0;
        padding: 10px 12px;
        width: 100%;
    }

    .header-nav ul li.accordion-item .accordion-button:not(.collapsed) {
        background-color: #192444;
        color: #fff;
    }

    .header-nav ul li.accordion-item .accordion-button:not(.collapsed)::after {
        filter: invert(1) brightness(5);
    }

    .header-nav ul li a {
        width: 100%;
        padding: 10px;
    }

    .header-nav ul li.accordion-item .accordion-collapse {
        width: 100%;
    }

    .header-nav ul li.accordion-item .accordion-collapse .submenu {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .header-nav ul li.accordion-item .accordion-collapse .submenu+figure {
        display: none;
    }

    .header-nav ul li.accordion-item .accordion-collapse .submenu li {
        margin-bottom: 5px !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .header-nav ul li.accordion-item .accordion-collapse .submenu li a {
        width: 100%;
    }

    .inner-banner-section {
        flex-direction: column;
        padding-bottom: 0;
    }

    .inner-banner-section .banner-inner .banner-content {
        text-align: center;
    }

    .inner-banner-section .banner-inner .banner-content h1 {
        max-width: 100%;
    }

    .inner-banner-section .banner-inner .banner-content p {
        max-width: 100%;

    }

    .inner-banner-section .banner-right {
        position: relative;
        width: 100%;
        height: auto;
        padding-top: 40px;
    }

    .inner-banner-section .banner-right figure img {
        width: 100%;
    }

    .custom-v-tabs .nav-link::before,
    .custom-v-tabs .nav-link::after {
        display: none;
    }

    .insights-section {
        overflow: hidden;
    }

    .experience-row>[class*="col"] {
        padding: 0 12px;
    }

    .custom-v-tabs .nav-link {
        border-radius: 15px !important;
    }

    .solutions-tabs-sidebar {
        overflow-x: auto;
        padding-bottom: 15px;
    }

    .custom-v-tabs {
        display: flex;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .custom-v-tabs .nav-link {
        margin: 0 !important;
    }

    .v-tab-icon-bg {
        width: 50px;
        height: 50px;
        margin-right: 12px !important;
    }

    .custom-v-tabs .nav-link h4 {
        font-size: 17px;
    }

    .solutions-content-area .tab-pane .tab-content-box {
        border-radius: 15px !important;
        padding: 40px 30px 30px !important;
    }

    .v-tab-icon {
        width: 30px;
    }

    .dynamics-section .chooseus-listing {
        grid-template-columns: repeat(1, 1fr);
    }

    .content-card-box {
        padding: 52px 18px 25px;
    }

    .inner-banner-section .banner-inner .banner-content {
        width: 100%;
    }

    .philosophy-section {
        padding: 40px 15px;
    }

    .solutions-content-area .tab-pane:last-child .tab-content-box {
        min-height: auto;
    }

    .pulse-card {
        margin-top: 30px;
    }

    .pulse-ecosystem .heading br {
        display: none;
    }

    .commodity-explorer-tab .left-wrap h3 {
        font-size: 23px;
    }

    .commodity-explorer-tab .left-wrap p {
        font-size: 16px;
    }

    .dl-sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        bottom: 0;
        width: 50%;
        height: 100%;
        padding: 0;
        z-index: 99;
        border-radius: 0;
        overflow-y: auto;
        transition: all 0.3s ease-in-out;
    }

    .dl-sidebar.show {
        left: 0;
    }

    .dl-category-list {
        max-height: 100% !important;
    }

    .category-overlay {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        z-index: 9;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        background-color: #000000;
    }

    .category-overlay.show {
        opacity: 0.5;
        visibility: visible;
    }

    .dl-content-area {
        padding-left: 0;
        width: 100%;
    }

    .dl-docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dl-content-header {
        padding: 20px 15px;
    }

    .dl-content-header .categories-btn {
        width: 40px;
        height: 40px;
        background-color: #192444;
        color: #fff;
        padding: 8px;
        border-radius: 5px;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dl-content-header .categories-btn img {
        filter: invert(1) brightness(5);
    }

    .dl-sidebar-search {
        max-width: 100%;
    }

    .dl-search-input {

        max-width: 100%;
    }

    .inner-banner-section .banner-inner .banner-content h1 br {
        display: none;
    }

    .downloads-banner.inner-banner-section {
        min-height: auto;
        padding: 30px 0;
    }

    .downloads-banner.inner-banner-section .banner-right {
        display: none;
    }

    .category-close-btn {
        position: absolute;
        right: 25px;
        top: 15px;
        background-color: transparent;
        border: none;
        cursor: pointer;
        z-index: 10;
    }

    .category-close-btn img {
        width: 20px;
        height: 20px;
    }

    .dl-sidebar-group-title {
        margin-bottom: 20px;
    }

    .dl-category-group {
        padding: 10px 15px 30px 15px;
    }

    .products-banner.inner-banner-section .banner-inner .banner-content {
        width: 100%;
    }

    .inner-banner-section.products-banner .banner-inner .banner-content {
        padding-right: 0;
    }

    .inner-banner-section.products-banner .banner-content figure {
        margin: 0 auto 10px;
    }

    .solution-banner.inner-banner-section .banner-inner .banner-content {
        width: 100%;
    }

    .inner-banner-section.solution-banner .banner-inner .banner-content {
        padding-right: 0;
    }

    .inner-banner-section.solution-banner .banner-content figure {
        margin: 0 auto 10px;
    }

    .future-trading-section .left-section {
        width: 100%;
        text-align: center;
    }

    .algo-badge {
        margin-bottom: 15px;
    }

    .algo-heading {
        margin-bottom: 10px;
    }

    .future-trading-section .demand_excellence {
        width: 100%;
        transform: scale(1);
        padding: 50px 0 0;
    }

    .activate-odin-box .left-wrap {
        margin-top: 25px;
    }

    .solutions-content-area .tab-pane .tab-content-box>div {
        max-height: 100% !important;
        padding-bottom: 0;
    }

    .mCSB_inside>.mCSB_container {
        padding-bottom: 0;
    }

    .v-tab-icon-bg {
        display: none;
    }

    .custom-v-tabs .nav-link {
        width: auto;
    }

    .fpo-wrap .left-box {
        width: 100%;
        padding: 0 0 35px;
    }

    .fpo-wrap .right-box {

        width: 100%;
    }

    .ipo-apply-box {
        gap: 0;
    }

    .ipo-apply-box .follow_steps_div {
        width: 65%;
    }

    .ipo-apply-box .cta_row {
        width: 35%;
    }

    .philosophy-section .left-section .section-head p {
        padding-right: 0;
    }

    .pulse-ecosystem.activate-section .left-box {
        margin-top: 25px;
    }

    .inner-banner-section.products-banner .banner-right {
        width: 70%;
    }

    .inner-banner-section.solution-banner .banner-right {
        width: 70%;
    }

    .inner-banner-section .banner-inner .banner-content h1 {
        max-width: 72%;
        margin: 0 auto;
    }

    .inner-banner-section.about-us-banner .banner-content p {
        max-width: 80% !important;
    }

    .inner-banner-section.about-us-banner {
        min-height: 270px;
        justify-content: center;
        padding: 20px 0;
    }

    .who-we-are-section .about-eipo-left {
        width: 100%;
        padding-right: 0;
    }

    .inner-banner-section.about-us-banner .banner-content .trust-tag {
        top: 0;
    }

    .who-we-are-section .about-eipo-right {
        width: 100%;
    }

    .drives-grid-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .team-section {
        margin:40px -10px 0;
    }

    .flip-card {
        width: 50%;
        padding: 0 10px 20px;
    }

    /* .flip-card,
    .flip-card:nth-last-child(2),
    .flip-card:nth-last-child(1) {
        grid-column: auto;
    } */

    .operational-benefits-section ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .registration-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .registration-list li {
        padding: 30px 15px;
    }

    .registration-list li h3 {
        font-size: 19px;
        line-height: 1.3;
    }

    .registration-list li p {
        font-size: 15px;
    }

    .registration-list li span {
        font-size: 60px;
        opacity: 0.08;
    }

    .partner-banner.inner-banner-section .banner-inner .banner-content {
        width: 100%;
        padding-right: 0;
        padding-bottom: 30px;
    }

    .partner-banner.inner-banner-section .banner-inner .banner-right {
        width: 75%;
    }

    .home-banner-section.partner-banner {
        padding-bottom: 40px;
    }
    .registered-office-address{
        padding: 40px 20px;
        width: 50%;
    }
    .registered-office-address h3{
        font-size: 22px;
    }
    .registered-office-details{
        max-width: 50%;
    }
}

@media(max-width:767px) {
    .content-card {
        grid-template-columns: repeat(1, 1fr);
    }

    .feature-list {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
    }

    .pricing-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-middle {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom .social-icons {
        order: 1;
        margin-bottom: 15px;
    }

    .footer-bottom p {
        order: 2;
    }

    .need-enquiry span {
        display: none;
    }

    .need-enquiry a {
        font-size: 16px;
    }

    .need-enquiry a {
        font-size: 0;
        width: 40px;
        height: 40px;
        padding: 5px;
        min-height: 40px;
    }

    .need-enquiry a img {
        margin-right: 0;
    }

    .heading {
        font-size: 26px;
        line-height: 35px;
    }

    .section-head p {
        font-size: 16px;
        line-height: 25px;
    }

    .tab-section .tab-content ul li:not(:last-child) {
        margin-right: 12px;
    }

    .sbj-feature-section .section-head {
        justify-content: center;
        text-align: center;
    }

    .price-box h3 {
        font-size: 30px;
    }

    .pricing-list>li h4 {
        font-size: 27px;
    }

    .pricing-section {
        padding: 35px 0 58px;
    }

    .btn {
        font-size: 17px;
    }

    .content-card-box p {
        font-size: 15px;
    }

    .banner-content .trust-tag {
        right: 0;
        max-width: 51px;
    }

    .banner-inner .banner-content span {
        font-size: 12px;
    }

    .banner-inner .banner-content span img {
        max-width: 17px;
    }

    .logo {
        max-width: 60px;
    }

    .chooseus-listing {
        grid-template-columns: repeat(1, 1fr);
    }

    .advantage-section .right-wrap ul li {
        padding: 25px 13px;
        padding-right: 13px;
    }

    .advantage-section .right-wrap ul li figure {
        width: 55px;
        height: 55px;
        padding: 11px;
    }

    .prices-table table thead tr th {
        padding: 20px 15px;
        font-size: 18px;
    }

    .prices-table table tbody tr td {
        padding: 20px 15px;
    }

    .prices-table table tbody tr td:last-child h3 {
        font-size: 20px;
    }

    .philosophy-section .right-section ul {
        flex-direction: column;
    }

    .philosophy-section .right-section ul li {
        width: 100%;
        margin: 0 !important;
        padding: 20px 13px;
        padding-right: 13px;
    }

    .philosophy-section .right-section ul li:not(:last-child) {
        margin-bottom: 20px !important;
    }

    .philosophy-section .right-section ul li figure {
        width: 55px;
        height: 55px;
    }

    .philosophy-section .right-section ul li h3 {
        font-size: 18px;
    }

    .philosophy-section .right-section ul li p {
        font-size: 14px;
    }

    .testimonial-slider .items {
        padding: 0px 15px 27px;
    }

    .testimonial-box .top-head .user-profile {
        width: 50px;
        height: 50px;
        font-size: 19px;
        margin-right: 12px;
    }

    .testimonial-box {
        padding: 25px 15px;
    }

    .testimonial-box .top-head .user-rating figure img {
        max-width: 15px;
    }

    .testimonial-box strong {
        font-size: 16px;
    }

    .footer-top .right-section {
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-bottom .footer-inner .right-section {
        padding-top: 20px;
        border-top: 1px solid #ddd;
    }

    .footer-bottom .footer-inner .right-section .box-inner {
        width: 50%;
        padding-bottom: 18px;
    }

    .header-nav ul {
        margin-bottom: 20px;
    }

    .header-nav .btn {
        margin-left: 12px !important;
        margin-right: 12px !important;
        margin-bottom: 15px !important;
        width: calc(100% - 24px) !important;
    }

    .testimonial-section {
        padding: 40px 0;
    }

    .trust-tag {
        display: none;
    }

    .home-banner-section {
        padding: 30px 0 40px;
    }

    .onehub-section .right-box ul li h3 {
        margin-left: 15px;
        font-size: 17px;
    }

    .why-chooseus-section {
        padding: 40px 0 30px;
    }

    .useful-links-body .box-inner {
        width: 50%;
    }

    .useful-links-body .box-inner {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100% !important;
        flex-direction: column;
        /* padding: 20px 0 20px 0; */
    }

    .footer-bottom .box-inner ul li a {
        font-size: 13px;
    }

    .useful-links-body .box-inner ul li:not(:last-child) {
        margin-right: 8px;
        padding-right: 8px;
        border-right: 2px solid #797979;
    }

    .useful-links-body .box-inner:not(:last-child) {
        margin-bottom: 10px;
    }

    .useful-links .useful-links-body {
        margin-top: 0;
    }

    .inner-banner-section div .btn {
        width: 100%;

    }

    .btn.btn-fill {
        min-height: 45px;
    }

    .btn.btn-primary {
        min-height: 45px;
    }

    .risk-panel {
        padding: 25px 15px;
    }

    .custom-v-tabs .nav-link {
        padding: 18px 12px;
    }

    .solutions-content-area .tab-pane .tab-content-box {
        padding: 25px 15px !important;
    }

    .tab-content-box h3 {
        font-size: 20px;
    }

    .tab-content-box p {
        font-size: 15px;
    }

    .content-card-box h3 {
        padding-right: 70px;
    }

    .app-card {
        padding: 25px 15px;
    }

    .app-card p {
        padding-right: 6px;
    }

    .custom-accordion .accordion-button {
        padding: 20px 15px;
        font-size: 18px;
    }

    .custom-accordion .accordion-body {
        padding: 20px 15px;
    }

    .equity-categories-section .pill-tag {
        display: flex;
        width: fit-content;
        margin: 0 auto 10px;
    }

    .insights-slider a {
        font-size: 18px;
    }

    .compare-box {
        padding: 19px 14px;
    }

    .compare-box p {
        font-size: 15px;
    }

    .compare-box span {
        font-size: 14px;
    }

    .compare-box small {
        font-size: 13px;
    }

    .header-nav {
        top: 85px;
    }

    .header-nav.show {
        height: calc(100vh - 85px);

    }

    .pulse-ecosystem .left-box .product-btns {
        flex-direction: column;
    }

    .pulse-ecosystem .left-box .d-flex .btn {
        width: 100%;
    }

    .pulse-card {
        padding: 25px 15px;
    }

    .pulse-card .top-box span {
        font-size: 13px;
    }

    .pulse-card .top-box h3 {
        font-size: 27px;
    }

    .pulse-card p {
        font-size: 12px;
    }

    .pulse-card .top-box {
        text-align: center;
        flex-direction: column;
    }

    .pulse-card .bottom-box {
        gap: 10px !important;
        grid-template-columns: repeat(1, 1fr);
    }

    .pulse-card .bottom-box>div {
        text-align: center;
    }

    .pulse-card .bottom-box h3 {
        font-size: 18px;
    }

    .net-worth-chart .h-20 {
        height: 40px;
    }

    .net-worth-chart .h-40 {
        height: 60px;
    }

    .net-worth-chart .h-60 {
        height: 90px;
    }

    .net-worth-chart .h-80 {
        height: 120px;
    }

    .net-worth-chart .h-100 {
        height: 150px !important;
    }

    .net-worth-chart .h-120 {
        height: 180px;
    }

    .commodity-explorer-tab {
        flex-direction: column;
    }

    .commodity-explorer-tab .left-wrap {
        width: 100%;
    }

    .commodity-explorer-tab .chart-container {
        width: 100%;
    }

    .dl-docs-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .demand_excellence .center_circle {
        flex-direction: column;
    }

    .demand_excellence .center_circle .left-panel {
        width: 100%;
    }

    .demand_excellence .center_circle .right-panel {
        width: 100%;
    }

    .demand_excellence .center_circle .box-inner {
        left: 0 !important;
        right: 0 !important;
        max-width: 100%;
        min-width: 100%;
        flex-direction: row-reverse;
        padding: 0 29px 0 0;
        text-align: left !important;
        justify-content: flex-end;
        margin-bottom: 20px;
    }

    .demand_excellence .center_circle .right-panel {
        margin-top: 20px;
    }

    .demand_excellence .center_circle .right-panel .box-inner {
        flex-direction: row !important;
        justify-content: flex-start;
    }

    .demand_excellence .bottom-panel .box-inner {
        flex-direction: row !important;
        justify-content: flex-start;
    }

    .demand_excellence .center_circle .box-inner figure {
        margin: 0 12px 0 -1px;
        width: 50px;
        height: 50px;
    }

    .demand_excellence .bottom-panel .box-inner {
        min-width: auto;
        width: 100%;
        padding: 0 29px 0 0;
        flex-direction: row;
        margin: 20px 0 0;

    }

    .demand_excellence .bottom-panel .box-inner figure {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
    }

    .demand_excellence .bottom-panel .box-inner figure {
        margin: 0 12px 0 -1px;
        width: 50px;
        height: 50px;
    }

    .demand_excellence .center_circle .box-inner::before {
        right: auto !important;
        left: 7px !important;
        transform: rotate(90deg) !important;
        top: auto !important;
        bottom: -20px !important;
        z-index: -1 !important;
        width: 34px !important;
    }

    .demand_excellence .bottom-panel .box-inner::before {
        display: none;
    }

    .center-panel-logo {
        display: none;
    }

    .algo-heading {
        font-size: 26px;
        line-height: 35px;
    }

    .demand_excellence .top-title strong {
        font-size: 16px;
    }

    .activate-odin-box .left-wrap ul li {
        font-size: 16px;
    }

    .activate-odin-box .left-wrap ul li::before {
        top: 1px;
    }

    .equity-categories-section {
        padding: 40px 0;
    }

    .fo-stock-card {
        padding: 20px 15px;
    }

    .inner-banner-section.products-banner .banner-content h1 {
        font-size: 27px;
    }

    .inner-banner-section.solution-banner .banner-content h1 {
        font-size: 27px;
    }

    .rewards-section {
        padding: 40px 0 !important;
    }

    .about-eipo-box .about-eipo-left {
        width: 100%;
        order: 2;
        margin-top: 30px;
        padding: 0;
    }

    .about-eipo-box .about-eipo-right {
        width: 100%;
        order: 1;
    }

    .about-eipo-section {
        padding: 40px 0;
    }

    .about-eipo-box .about-eipo-left p {
        font-size: 16px;
    }

    .ipo-apply-box .follow_steps_div {
        width: 100%;
        padding: 0 0 30px;
    }

    .ipo-apply-box .cta_row {
        width: 100%;
    }

    .about-eipo-box .about-eipo-left .box-head h2 {
        font-size: 30px;
    }

    .capabilities-section.philosophy-section .right-section ul li:first-child {
        width: 100%;
    }

    .inner-banner-section.products-banner .banner-right {
        padding: 0;
        width: 100%;
    }

    .inner-banner-section.solution-banner .banner-right {
        padding: 0;
        width: 100%;
    }

    .ofs-wrap .ofs-left .chooseus-listing {
        grid-template-columns: repeat(1, 1fr);
    }

    .valueplay-card-wrap {
        padding: 30px 15px;
    }

    .valueplay-main-title {
        font-size: 22px;
    }

    .valueplay-icon-box {
        display: none;
    }

    .valueplay-row-title {
        font-size: 14px;
    }

    .valueplay-row-value {
        font-size: 14px;
    }

    .valueplay-row-inner {
        padding: 18px 20px;
    }

    .valueplay-footer-note {
        font-size: 14px;
    }

    .inner-banner-section .banner-inner .banner-content h1 {
        max-width: 100%;
    }

    .inner-banner-section.about-us-banner .banner-content p {
        max-width: 100% !important;
        margin-top: 12px !important;
    }

    .inner-banner-section.about-us-banner {
        min-height: 340px;
    }

    .inner-banner-section.about-us-banner .banner-content .trust-tag {
        display: block;
        top: -30px;
    }

    .who-we-are-section .about-eipo-left {
        order: 1;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .drives-grid-box .inner-box p {
        font-size: 16px;
    }

    /* .team-section {
        grid-template-columns: repeat(1, 1fr);
    } */

    .flip-card {
        min-height: 320px;
        width: 100%;
    }

    .drives-us-section {
        padding: 40px 0;
    }

    .solutions-section {
        padding: 40px 0;
    }

    .footer-top p {
        text-align: center;
    }

    .inner-banner-section.about-us-banner .banner-content .year-tag p {
        margin-top: 0 !important;
    }

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

    .year-tag div {
        font-size: 13px;
    }

    .ideal-partner-section .chooseus-listing {
        grid-template-columns: repeat(1, 1fr);
    }

    .operational-benefits-section ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .registration-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .registration-list li:not(:last-child)::before {
        top: auto;
        right: 50%;
        width: 1px;
        height: 20px;
        border-bottom: none;
        border-right: 1px dashed #192444;
        bottom: -31px;
    }

    .request-callback-box ul {
        flex-direction: column;
    }

    .request-callback-box ul {
        width: 100%;
        margin: 30px auto 0;
        border-radius: 12px;
        justify-content: start;
        align-items: start;
    }

    .request-callback-box ul li {
        padding: 0 0 15px;
        margin: 0 0 15px;
        border-right: none;
        border-bottom: 1px solid rgb(255 255 255 / 15%);
        width: 100%;
    }

    .request-callback-box ul li:last-child {
        border-bottom: 0;
        padding: 0;
        margin: 0;
    }

    .partner-banner.inner-banner-section .banner-inner .banner-right {
        width: 100%;
    }

    .partner-banner .banner-inner .banner-content ul li {
        flex: 0 0 auto;
    }
    .banner-enquiry-box .box-inner{
        width: 100%;
    }
    .banner-enquiry-box .box-inner small{
        text-align: start;
    }
    .registered-office-content{
        flex-wrap: wrap;
    }
    .registered-office-address{
        width: 100%;
        padding: 30px 20px;
    }
    .registered-office-details {
        max-width: 100%;
        padding: 30px 20px;
    }
    .branch-listing li {
        width: 100%;
    }
    .contact-info-section , .registered-office, .our-branch-section , .investor-complaint-section{
        padding: 40px 0;
    }
    .registered-office-address h3 {
        font-size: 20px;
    }
}

@media(max-width:576px) {
    .tab-section .nav-tabs {
        flex-wrap: nowrap;
        white-space: nowrap;
        justify-content: start;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 25px;
    }

    .tab-section .nav-tabs li button {
        font-size: 16px;
        padding: 9px 25px;
    }

    .tab-section .tab-content {
        margin-top: 20px;
    }

    .banner-inner .banner-right {
        width: 100%;
        padding: 35px 15px 40px;
    }

    .banner-inner .banner-content ul {
        flex-wrap: nowrap;
        white-space: nowrap;
        justify-content: start;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .banner-inner .banner-content ul li {
        font-size: 13px;
        padding: 8px 10px;
        flex: 0 0 auto;
    }

    .banner-inner .banner-content h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .banner-inner .banner-content p {
        font-size: 16px;
    }

    .onehub-section .right-box ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .investor-alert strong {
        font-size: 14px;
    }

    .dl-sidebar {
        width: 80%;
    }

    .dl-content-title {
        font-size: 20px;
    }

    .downloads-banner.inner-banner-section .banner-content {
        padding: 0;
    }

    .dl-category-list {
        grid-template-columns: 1fr;
    }

    .capital-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .capital-box .box-inner {
        margin: 0 !important;
    }

    .value-line h4 {
        font-size: 15px;
    }

    .value-line p {
        font-size: 14px;
    }

    .fpo-wrap .section-head {
        text-align: center;
    }
}

/* ============================================================
   REGULATORY & OTHER INFORMATION PAGE
   ============================================================ */

/* Banner */
.inner-banner-section.reg-info-banner{
    min-height: 370px;
}


.reg-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: dl-float 3.5s ease-in-out infinite;
}

/* Documents Grid Section */
.reg-docs-section {
    padding: 55px 0 60px;
    background: #f8faf9;
}

.reg-docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #E2E8E4;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.reg-doc-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-right: 1px solid #E8EFEC;
    border-bottom: 1px solid #E8EFEC;
    gap: 14px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.reg-doc-card:hover {
    background: #F0FAF5;
    text-decoration: none;
}

/* Remove right border on every 3rd card (last column) */
.reg-doc-card:nth-child(3n) {
    border-right: none;
}

/* Remove bottom border on last row items */
.reg-doc-card:nth-last-child(-n+3) {
    border-bottom: none;
}

/* Handle edge case for partial last rows */
.reg-doc-card:last-child,
.reg-doc-card:nth-last-child(2),
.reg-doc-card:nth-last-child(3) {
    border-bottom: none;
}

.reg-doc-title {
    font-size: 15px;
    font-weight: 500;
    color: #192444;
    line-height: 1.5;
    flex: 1;
    padding-right: 10px;
}

.reg-doc-title--link {
    color: #1a5cbe;
}

.reg-doc-card:hover .reg-doc-title {
    color: #00A453;
}

.reg-doc-card:hover .reg-doc-title--link {
    color: #00A453;
}

.reg-doc-download {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #EDFDF5;
    transition: background 0.2s ease, transform 0.2s ease;
}

.reg-doc-download img {
    width: 18px;
    height: 18px;
    color: #E4A120;
}

.reg-doc-card:hover .reg-doc-download {
    background: #00A453;
    transform: translateY(2px);
}

.reg-doc-card:hover .reg-doc-download img {
    filter: invert(1) brightness(5);
}

/* Questions CTA Section */
.reg-questions-section {
    padding: 60px 0;
    background: #fff;
}
.reg-support-btn{
    margin: 30px auto 0;
    min-width: 240px !important;
}

/* Bottom CTA box */
.reg-cta-box {
    overflow: hidden;
    position: relative;
}

.reg-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    gap: 40px;
}

.reg-cta-content {
    max-width: 500px;
}

.reg-cta-label {
    font-size: 17px;
    font-weight: 500;
}

.reg-cta-heading {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.reg-cta-hashtag {
    color: #E4A120;
    font-style: italic;
}

.reg-cta-link {
    color: #E4A120;
    font-weight: 600;
    text-decoration: none;
}

.reg-cta-link:hover {
    text-decoration: underline;
    color: #E4A120;
}

.reg-cta-btn {
    font-size: 16px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 8px;
}

.reg-cta-mockup {
    position: relative;
    flex-shrink: 0;
}

.reg-mockup-img {
    height: 300px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

@media (max-width: 1199px){
    .reg-doc-card{
        padding: 22px 15px;
    }
}
/* ── Responsive: Tablet ── */
@media (max-width: 991px) {
    .reg-docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reg-doc-card:nth-child(3n) {
        border-right: 1px solid #E8EFEC;
    }

    .reg-doc-card:nth-child(2n) {
        border-right: none;
    }

    .reg-doc-card:nth-last-child(-n+3) {
        border-bottom: 1px solid #E8EFEC;
    }

    .reg-doc-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .reg-info-banner .banner-content h1 {
        font-size: 32px;
    }

    .reg-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 50px 0;
    }

    .reg-cta-content {
        max-width: 100%;
    }
    .inner-banner-section.reg-info-banner {
        min-height: 230px;
    }
}

/* ── Responsive: Mobile ── */
@media (max-width: 575px) {
    .reg-docs-grid {
        grid-template-columns: 1fr;
    }

    .reg-doc-card {
        border-right: none;
    }

    .reg-doc-card:nth-child(2n) {
        border-right: none;
    }

    .reg-doc-card:nth-last-child(-n+2) {
        border-bottom: 1px solid #E8EFEC;
    }

    .reg-doc-card:last-child {
        border-bottom: none;
    }

    .reg-info-banner .banner-content h1 {
        font-size: 26px;
    }

    .reg-banner-icon {
        display: none;
    }

    .reg-info-banner .banner-inner {
        padding: 40px 0 35px;
    }

    .reg-questions-inner h2 {
        font-size: 24px;
    }

    .reg-cta-heading {
        font-size: 28px;
    }
}

/* ============================================================
   BLOG PAGE
   ============================================================ */

/* ── Banner ── */
.blog-banner.inner-banner-section {
    min-height: 200px;
    padding: 0;
}

.blog-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 0 44px;
    gap: 30px;
}

.blog-banner .banner-content h1 {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}

.blog-banner .banner-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.blog-banner-badge {
    flex-shrink: 0;
    animation: dl-float 4s ease-in-out infinite;
}

/* ── Main Section ── */
.blog-page-section {
    padding: 50px 0 65px;
    background: #f8faf9;
}

.blog-page-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
}

/* ── Sidebar ── */
.blog-sidebar {
    width: 264px;
    flex-shrink: 0;
}

/* Category list items */
.blog-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: none;
    overflow-y: visible;
}

.blog-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #192444;
    transition: all 0.2s ease;
    margin-bottom: 3px;
}

.blog-cat-item:hover {
    background: #EDF7F2;
    color: #00A453;
}

.blog-cat-item.active {
    background: #E0F4EA;
    color: #00A453;
    font-weight: 600;
}

.blog-cat-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-cat-icon svg {
    width: 18px;
    height: 18px;
    color: currentColor;
}

/* Subscribe box */
.blog-subscribe-box {
    padding: 4px 0 10px;
}

.blog-subscribe-title {
    font-size: 15px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 5px;
}

.blog-subscribe-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
    line-height: 1.5;
}

.blog-subscribe-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #D0D7DF;
    border-radius: 8px;
    font-size: 14px;
    color: #192444;
    background: #F9FAFB;
    outline: none;
    margin-bottom: 10px;
    transition: border-color 0.2s;
    font-family: inherit;
}

.blog-subscribe-input:focus {
    border-color: #00A453;
}

.blog-subscribe-input::placeholder {
    color: #9AA5B4;
}

.blog-subscribe-btn {
    font-size: 14px;
    min-height: 44px;
    border-radius: 8px;
}

/* ── Content Area ── */
.blog-content-area {
    width: calc(100% - 264px);
    padding-left: 32px;
}

/* Top bar */
.blog-topbar {
    padding: 10px 16px 10px 20px;
}

.blog-search-wrap {
    max-width: 340px;
    width: 100%;
    flex: 1;
}

.blog-search-input {
    max-width: 100%;
}

.blog-sort-wrap {
    flex-shrink: 0;
}

.blog-sort-label {
    font-size: 14px;
    font-weight: 500;
    color: #192444;
    white-space: nowrap;
}

.blog-sort-select {
    min-width: 120px;
}

/* ── Cards Grid ── */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 22px;
}

.blog-card {
    background: #fff;
    border: 1.5px solid #E8EFEC;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
    border-color: #00A453;
    box-shadow: 0 8px 28px rgba(0, 164, 83, 0.10);
    transform: translateY(-3px);
}

/* Card image */
.blog-card-img-wrap {
    display: block;
    overflow: hidden;
    height: 185px;
    flex-shrink: 0;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

/* Placeholder images (CSS gradient backgrounds) */
.blog-card-img-placeholder {
    width: 100%;
    height: 185px;
    margin: 0;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img-placeholder {
    transform: scale(1.04);
}

.blog-img-economy {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d6a4f 60%, #1e4d3a 100%);
    position: relative;
}

.blog-img-economy::after {
    content: '₹';
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 62px;
    font-weight: 800;
    color: rgba(249, 197, 49, 0.7);
    font-family: 'Figtree', sans-serif;
}

.blog-img-mutual {
    background: linear-gradient(135deg, #0d2b45 0%, #1c4f82 50%, #0a3d62 100%);
    position: relative;
}

.blog-img-mutual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 130' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 Q50 40 100 70 Q150 100 200 30' stroke='rgba(0,164,83,0.6)' stroke-width='3' fill='none'/%3E%3Cpath d='M0 120 Q50 70 100 90 Q150 120 200 55' stroke='rgba(255,255,255,0.2)' stroke-width='2' fill='none'/%3E%3C/svg%3E") center/cover no-repeat;
}

.blog-img-company {
    background: linear-gradient(135deg, #0d2236 0%, #1a4060 60%, #0f3052 100%);
    position: relative;
    overflow: hidden;
}

.blog-img-company::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px,
        transparent 1px, transparent 30px
    ),
    repeating-linear-gradient(
        0deg,
        rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px,
        transparent 1px, transparent 30px
    );
}

.blog-img-company::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100px;
    background: linear-gradient(180deg, #1e6fd9 0%, #1559b8 100%);
    border-radius: 4px 4px 0 0;
    box-shadow: -50px 20px 0 -5px #1a5fc4, 50px 20px 0 -5px #1a5fc4;
}

/* Card body */
.blog-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Category badges */
.blog-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    width: fit-content;
}

.blog-badge--market-news     { background: #FFF3CD; color: #92600A; }
.blog-badge--investing-basics { background: #D1FAE5; color: #065F46; }
.blog-badge--trading-strategies { background: #E0E7FF; color: #3730A3; }
.blog-badge--mutual-funds    { background: #FCE7F3; color: #9D174D; }
.blog-badge--economy         { background: #FEF3C7; color: #92600A; }
.blog-badge--company-updates { background: #D1FAE5; color: #065F46; }
.blog-badge--smart-tools     { background: #E0E7FF; color: #3730A3; }

/* Card title */
.blog-card-title {
    font-size: 21px;
    font-weight: 700;
    color: #192444;
    margin: 0 0 8px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card:hover .blog-card-title a {
    color: #00A453;
}

/* Card description */
.blog-card-desc {
    font-size: 16px;
    color: #5a6478;
    line-height: 1.6;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Card meta (date + read time) */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #F0F4F2;
    padding-top: 12px;
    margin-top: auto;
}

.blog-meta-date,
.blog-meta-read {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #8D8D8D;
    font-weight: 400;
}

.blog-meta-date svg,
.blog-meta-read svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #8D8D8D;
}

/* No results */
.blog-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #E8EFEC;
}

.blog-no-results svg {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    display: block;
}

.blog-no-results h4 {
    font-size: 18px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 6px;
}

.blog-no-results p {
    font-size: 14px;
    color: #9AA5B4;
}

/* ── Pagination ── */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 36px;
}

.blog-page-btn,
.blog-page-num {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1.5px solid #E2E8EC;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #192444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-page-btn svg {
    width: 18px;
    height: 18px;
}

.blog-page-btn:hover:not(:disabled),
.blog-page-num:hover {
    border-color: #00A453;
    color: #00A453;
}

.blog-page-num.active {
    background: #00A453;
    border-color: #00A453;
    color: #fff;
    font-weight: 700;
}

.blog-page-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.blog-page-ellipsis {
    font-size: 16px;
    color: #8D8D8D;
    padding: 0 4px;
    line-height: 38px;
}

/* ── Bottom CTA Strip ── */
.blog-cta-strip {
    background: #192444;
    padding: 32px 0;
}

.blog-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.blog-cta-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.blog-cta-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
a.logo img{
    height: 69px;
    max-width: 74px;
}
.wpcf7 form.invalid .wpcf7-response-output , .wpcf7 form.sent .wpcf7-response-output{
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}
@media (max-width: 991px){
    a.logo img {
        height: 65px;
        max-width: 74px;
    }
}


/* ── Responsive: 1200px ── */
@media (max-width: 1199px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-sidebar {
        width: 240px;
    }

    .blog-content-area {
        width: calc(100% - 240px);
        padding-left: 24px;
    }
}

/* ── Responsive: Tablet (991px) ── */
@media (max-width: 991px) {
    .blog-page-wrapper {
        flex-direction: column;
    }

    .blog-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 24px;
    }

    .blog-content-area {
        width: 100%;
        padding-left: 0;
    }

    .blog-banner .banner-content h1 {
        font-size: 34px;
    }

    .blog-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Responsive: Mobile (767px) ── */
@media (max-width: 767px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
    }

    .blog-banner .banner-content h1 {
        font-size: 28px;
    }

    .blog-banner-badge {
        display: none;
    }

    .blog-banner-inner {
        padding: 36px 0 32px;
    }

    .blog-topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .blog-search-wrap {
        max-width: 100%;
    }

    .blog-sort-wrap {
        justify-content: flex-end;
    }

    .blog-cta-text h2 {
        font-size: 19px;
    }
}

/* ── Responsive: Small Mobile (575px) ── */
@media (max-width: 575px) {
    .blog-page-section {
        padding: 36px 0 50px;
    }

    .blog-card-img-wrap,
    .blog-card-img-placeholder {
        height: 160px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-pagination {
        gap: 4px;
    }

    .blog-page-btn,
    .blog-page-num {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}


/* accessibility-css */

.accessibility-btn {
    position: fixed;
    bottom: 27px;
    left: 20px;
    width: 50px;
    height: 50px;
    z-index: 999999;
    outline: none;
    background: #192444 !important;
    border: 1px solid #ddd;
    border-radius: 50%;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.accessibility-btn img {
    filter: invert(1) brightness(5);
    background: transparent !important;
}

/* BODY ACTIVE */
body.access-bg-active {
    background: var(--access-bg) !important;
    color: var(--access-text) !important;
}

/* CHANGE BACKGROUND LIKE YOUR OLD CODE */
body.access-bg-active :is(
    div,
    section,
    article,
    aside,
    nav,
    header,
    footer,
    ul,
    li,
    table,
    thead,
    tbody,
    tr,
    td,
    th,
    form,
    input,
    textarea,
    select
):not(.accessibility-controls):not(.accessibility-controls *):not(.accessibility-btn) {
    background-color: var(--access-surface) !important;
    color: var(--access-text) !important;
    border-color: var(--access-border) !important;
}

/* TEXT CONTRAST */
body.access-bg-active :is(
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    li,
    label,
    td,
    th,
    strong,
    em,
    small,
    b
):not(.accessibility-controls):not(.accessibility-controls *) {
    color: var(--access-text) !important;
    text-shadow: none !important;
}

/* LINKS */
body.access-bg-active a:not(.btn):not(.accessibility-controls a) {
    color: var(--access-link) !important;
    text-decoration-color: var(--access-link) !important;
}

body.access-bg-active a:not(.btn):not(.accessibility-controls a):hover {
    color: var(--access-link-hover) !important;
}

/* INPUTS */
body.access-bg-active :is(input, textarea, select, .form-control, .form-select) {
    background: var(--access-input-bg) !important;
    color: var(--access-text) !important;
    border: 1px solid var(--access-border) !important;
}

body.access-bg-active input::placeholder,
body.access-bg-active textarea::placeholder {
    color: var(--access-placeholder) !important;
    opacity: 1 !important;
}

/* BUTTONS - FIXED COLOR, NO ANIMATION BREAK */
body.access-bg-active .btn,
body.access-bg-active a.btn,
body.access-bg-active .btn-fill,
body.access-bg-active .btn-secondary,
body.access-bg-active .btn-primary,
body.access-bg-active .btn-outline,
body.access-bg-active .btn-outline-primary,
body.access-bg-active input[type="submit"],
body.access-bg-active input[type="button"] {
    background: #00A453 !important;
    background-color: #00A453 !important;
    color: #ffffff !important;
    border: 2px solid #00A453 !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transform: none !important;
}

body.access-bg-active .btn:hover,
body.access-bg-active a.btn:hover,
body.access-bg-active .btn-fill:hover,
body.access-bg-active .btn-secondary:hover,
body.access-bg-active .btn-primary:hover,
body.access-bg-active .btn-outline:hover,
body.access-bg-active .btn-outline-primary:hover,
body.access-bg-active input[type="submit"]:hover,
body.access-bg-active input[type="button"]:hover {
    background: #192444 !important;
    background-color: #192444 !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
}

body.access-bg-active .btn *,
body.access-bg-active a.btn *,
body.access-bg-active .btn-fill *,
body.access-bg-active .btn-secondary *,
body.access-bg-active .btn-primary *,
body.access-bg-active .btn-outline *,
body.access-bg-active .btn-outline-primary * {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

/* HEADER TEXT FIX */
body.access-bg-active header,
body.access-bg-active nav,
body.access-bg-active .top-header,
body.access-bg-active .main-header,
body.access-bg-active .site-header,
body.access-bg-active .navbar {
    background-color: var(--access-surface) !important;
    color: var(--access-header-text) !important;
}

body.access-bg-active header a,
body.access-bg-active nav a,
body.access-bg-active .top-header a,
body.access-bg-active .main-header a,
body.access-bg-active .site-header a,
body.access-bg-active .navbar a,
body.access-bg-active .menu-item a,
body.access-bg-active .nav-link {
    color: var(--access-header-text) !important;
    /* opacity: 1 !important;
    visibility: visible !important; */
    text-shadow: none !important;
}

body.access-bg-active header a:hover,
body.access-bg-active nav a:hover,
body.access-bg-active .top-header a:hover,
body.access-bg-active .main-header a:hover,
body.access-bg-active .site-header a:hover,
body.access-bg-active .navbar a:hover,
body.access-bg-active .menu-item a:hover,
body.access-bg-active .nav-link:hover {
    color: #00A453 !important;
}

/* HEADER BUTTONS */
body.access-bg-active .btn,
body.access-bg-active a.btn,
body.access-bg-active .btn-fill,
body.access-bg-active .btn-secondary,
body.access-bg-active .btn-primary,
body.access-bg-active .btn-outline,
body.access-bg-active nav .btn,
body.access-bg-active nav a.btn {
    background: #00A453 !important;
    color: #ffffff !important;
    border: 2px solid #00A453 !important;
}

body.access-bg-active .btn:hover::before,
body.access-bg-active a.btn:hover::before,
body.access-bg-active .btn-fill:hover::before,
body.access-bg-active .btn-secondary:hover::before,
body.access-bg-active .btn-primary:hover::before,
body.access-bg-active .btn-outline:hover::before,
body.access-bg-active nav .btn:hover,
body.access-bg-active nav a.btn:hover {
    background: #192444 !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

/* DO NOT TOUCH LOGO & ICONS */
body.access-bg-active img,
body.access-bg-active svg,
body.access-bg-active path {
    background: transparent !important;
}

body.access-bg-active header img,
body.access-bg-active header svg,
body.access-bg-active header path,
body.access-bg-active nav img,
body.access-bg-active nav svg,
body.access-bg-active nav path {
    color: unset !important;
    fill: unset !important;
    stroke: unset !important;
    background: transparent !important;
}

/* SEARCH AREA */
body.access-bg-active .search-bar,
body.access-bg-active .search-form {
    background: var(--access-input-bg) !important;
    border-color: var(--access-border) !important;
}

body.access-bg-active .search-bar *,
body.access-bg-active .search-form * {
    color: var(--access-text) !important;
    border-color: var(--access-border) !important;
}

/* FOOTER */
body.access-bg-active footer button,
body.access-bg-active footer .card,
body.access-bg-active footer .card-body {
    background: var(--access-surface) !important;
    color: var(--access-text) !important;
    border-color: var(--access-border) !important;
}

/* EXCLUDE SOLUTIONS SECTION */
body.access-bg-active .solutions-section,
body.access-bg-active .solutions-section *,
body.access-bg-active .solutions-section *::before,
body.access-bg-active .solutions-section *::after {
    background: revert !important;
    color: revert !important;
    border-color: revert !important;
    box-shadow: revert !important;
}

/* KEEP ACCESSIBILITY FLOATING BUTTON SAME */
body.access-bg-active .accessibility-btn,
body.access-bg-active button.accessibility-btn {
    background: #192444 !important;
    color: #fff !important;
    border-color: #192444 !important;
}

body.access-bg-active .accessibility-btn img,
body.access-bg-active button.accessibility-btn img {
    background: transparent !important;
}

/* ACCESSIBILITY POPUP */
.accessibility-controls {
    position: fixed;
    left: 80px;
    bottom: 20px;
    z-index: 999999;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    max-width: calc(100% - 94px);
    background: #fff;
    padding: 10px 10px 35px;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    border: 1px solid #ddd;
}

.accessibility-controls button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #192444;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0,0,0,.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    line-height: 1;
}

.accessibility-controls button.active {
    outline: 3px solid #00A451;
    outline-offset: 2px;
}

.accessibility-controls .access-separator {
    width: 1px;
    height: 28px;
    background: rgba(0,0,0,.25);
}

.accessibility-controls .bg-black {
    background: #000;
    color: #fff;
}

.accessibility-controls .bg-yellow {
    background: #ffff00;
    color: #000;
}

.accessibility-controls .bg-blue {
    background: #a7d8ff;
    color: #000;
}

.accessibility-controls .bg-orange {
    background: #ffa500;
    color: #000;
}

.accessibility-controls .bg-reset {
    background: #fff;
    color: #192444;
    border: 1px solid #d7d7d7;
}

.accessibility-controls .sound-btn {
    background: #00A451;
    color: #fff;
}

.accessibility-controls .sound-btn img {
    width: 22px;
    height: 22px;
    filter: invert(1) brightness(5);
    transition: all 0.2s ease-in-out;
}

body.access-bg-active.access-black-theme :is( #mega-menu-wrap-primary .mega-menu-item>.mega-menu-link):not(.accessibility-controls):not(.accessibility-controls *){
    color: #fff !important;
}
body.access-bg-active .v-tab-icon{
    filter: invert(1) brightness(0) !important;
}
body.access-bg-active.access-black-theme .v-tab-icon{
    filter: invert(1) brightness(5) !important;
}
body.access-bg-active.access-black-theme .drives-grid-box .inner-box figure img{
    filter: none !important;
}
body.access-bg-active.access-black-theme .investor-alert strong{
    background-color: #000 !important;
}
.accessibility-powered {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 11px;
    color: #000 !important;
}
.accessibility-powered a {
    color: #000 !important;
    font-weight: 700;
    background-color: #f8c300;
    padding: 2px 5px;
    border-radius: 3px;
}
@media(max-width:991px){
    body.access-bg-active.access-black-theme :is( #mega-menu-wrap-primary #mega-menu-primary>.mega-menu-item>.mega-menu-link):not(.accessibility-controls):not(.accessibility-controls *){
        color: #fff !important;
    }
    body.access-bg-active.access-black-theme #mega-menu-wrap-primary .mega-menu-item .mega-indicator::after{
        filter: none !important;
    }
    body.access-bg-active.access-black-theme :is( .menu-bar span):not(.accessibility-controls):not(.accessibility-controls *){
        background-color: #fff !important;
    }
}
@media(max-width:767px) {
.accessibility-controls {
    left: 75px;
    right: 15px;
    bottom: 20px;
    max-width: none;
    border-radius: 20px !important;
}
}
.company-text{
	font-weight: 500;
    font-size: 13px;	
}
.company-text img{
	max-width:70px;
}