* {
    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: 8px 12px;
}

.header-inner .left-header {
    display: flex;
    align-items: center;
}

.header-nav {
    margin-left: 43px;
}

.header-nav ul {
    display: flex;
    align-items: center;
}

.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: #00112F;
    padding: 62px 0;
    position: relative;
    z-index: 0;
}

.home-banner-section::before {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    background-image: url(../images/banner-vector.svg);
    width: 1010px;
    height: 960px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom 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;
}

.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: #fff;
    max-width: 430px;
}

.banner-inner .banner-content h1 strong {
    color: #00A453;
    font-weight: 700;
}

.banner-content .trust-tag {
    position: absolute;
    right: 80px;
    top: 150px;
}

.banner-inner .banner-content p {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    max-width: 435px;
    margin-bottom: 20px;
}

.banner-inner .banner-content ul {
    display: flex;
    flex-wrap: wrap;
}

.banner-inner .banner-content ul li {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    padding: 8px 14px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(226 226 226 / 40%);
    border-radius: 5px;
    background-color: rgb(168 177 194 / 15%);
    margin-right: 10px;
    font-family: "Figtree", sans-serif;

}

.banner-inner .banner-content ul li img {
    margin-right: 12px;
    flex: 0 0 auto;
}

.banner-inner .banner-right {
    width: 42%;
}

.banner-form {
    background-color: rgb(168 177 194 / 15%);
    border: 1px solid rgb(226 226 226 / 40%);
    border-radius: 30px;
    padding: 20px 30px 40px;
    position: relative;
    backdrop-filter: blur(5px)
}

.banner-form h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.banner-form span {
    margin-top: 33px;
    font-size: 13px;
    font-weight: 400;
    color: #A5AEBE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-form p {
    font-size: 15px;
    font-weight: 400;
    color: #A5AEBE;
    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;
}
.banner-form span {
    display: inline !important;
}
.banner-form span.wpcf7-not-valid-tip {
    color: #ff3333;
    width: 100%;
    text-align: start !important;
    display: block !important;
    margin-top: 5px !important;
}
input.btn.btn-fill:hover {
    background: #fff !important;
    border-color: #00A453;
}
.banner-form .wpcf7-spinner {
    display: none !important;
}
.wpcf7 form.invalid .wpcf7-response-output , .wpcf7 form.sent .wpcf7-response-output{
    color: #fff;
    text-align: center;
    font-size: 15px;
}

.heading {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: #192444;
    margin-bottom: 10px;
}

.number-field .form-control {
    padding-left: 80px;
}

.membership-section {
    padding: 45px 0;
}

.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 / 20%);
    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: 5px;
}

.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;
}


/* Footer */
.footer {
    background: #192444;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.footer-top p {
    font-size: 16px;
    margin-top: 7px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.footer-middle {
    margin-bottom: 48px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-middle h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 9px;
}

.footer-middle p {
    font-size: 14px;
    line-height: 25px;
    color: #A8AFC5;
    opacity: 0.8;

}

.footer-middle ul {
    display: flex;
    align-items: center;
    margin-top: 3px;
}

.footer-middle ul li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #A8AFC5;
}

.footer-middle ul li,
.footer-middle ul li a {
    font-size: 14px;
    line-height: 20px;
    color: #A8AFC5;
    display: flex;
    align-items: center;
    opacity: 0.8;

}

.footer-middle ul li a {
    padding-left: 5px;
}

.footer-middle ul li a:hover {
    color: #00A453;
    text-decoration: underline;
}

.disclaimer p {
    margin-bottom: 25px;
    color: #A8AFC5 !important;
    font-size: 12px;
    line-height: 25px;
    opacity: 0.8;
}

.disclaimer p a {
    color: #00A453;
}

.disclaimer {
    color: #A8AFC5 !important;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #293D6180;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E2E2E233;
    backdrop-filter: blur(6px);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.social-icon:hover {
    background: #fff;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #A8AFC5 !important;
    font-size: 12px;
    line-height: 25px;
    opacity: 0.8;
}

.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;
}
a.logo img {
    height: 69px;
    max-width: 74px;
}
.banner-form span.banner_terms_text{
    display: flex !important;
    margin-top: 15px !important;
}

@media(min-width:1200px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
}

@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;
    }
}

@media(max-width:1250px) {
    .banner-inner .banner-right {
        width: calc(43% - 20px);
        margin-right: 20px;
    }
}

@media(max-width:1199px) {
    .banner-inner .banner-content h1 {
        font-size: 50px;
        line-height: 58px;
        max-width: 330px;
    }

    .banner-inner .banner-content p {
        max-width: 335px;
    }

    .banner-content .trust-tag {
        right: 30px;
        top: 110px;
    }

    .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-inner .banner-right {
        width: calc(48% - 20px);
    }

    .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;
    }

    .content-card-box h3 {
        font-size: 18px;
    }

    .content-card-box p {
        font-size: 14px;
    }

    .footer-links {
        gap: 13px;
    }

    .footer-links a {
        font-size: 14px;
    }
}

@media(max-width:991px) {
    .container {
        max-width: 100%;
    }

    .header-inner {
        padding: 8px 0;
    }

    .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: 42px;
        line-height: 50px;
    }

    .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: 20px;
        top: -35px;
        max-width: 71px;
    }

    .home-banner-section {
        padding: 45px 0 45px;
    }
}

@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;
    }
}

@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: 32px;
        line-height: 40px;
    }

    .banner-inner .banner-content p {
        font-size: 16px;
    }

}


.form-group span {
    margin: 0 !important;
}

.number-field .iti.iti--allow-dropdown {
    width: 100%;
}

.number-field .iti.iti--allow-dropdown .iti__flag-container .iti__selected-flag {
    border-right: 1px solid #ddd !important;
    border-radius: 12px 0 0 12px !important;
}





.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 .tab-section .nav-tabs li button{
    color: #000 !important;
}
body.access-bg-active .tab-section .nav-tabs li button.active{
    color: #fff !important;
}
body.access-bg-active .tab-section .nav-tabs li button:hover{
    color: #fff !important;
}
body.access-bg-active.access-black-theme .need-enquiry a{
    background-color: #00A451 !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;
}
}