@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
body {
    font-family: "Poppins", serif;
}

:root {
    /* Primary Colors */
    --color-primary: #007bff;
    /* Blue */
    --color-primary-light: #66b3ff;
    --color-primary-dark: #0056b3;

    /* Secondary Colors */
    --color-secondary: #6c757d;
    /* Gray */
    --color-secondary-light: #a6acaf;
    --color-secondary-dark: #494f54;

    /* Success Colors */
    --color-success: #28a745;
    /* Green */
    --color-success-light: #5cd65c;
    --color-success-dark: #1e7e34;

    /* Danger Colors */
    --color-danger: #dc3545;
    /* Red */
    --color-danger-light: #ff6f6f;
    --color-danger-dark: #a71d2a;

    /* Warning Colors */
    --color-warning: #ffc107;
    /* Yellow */
    --color-warning-light: #ffdd57;
    --color-warning-dark: #d39e00;

    /* Info Colors */
    --color-info: #17a2b8;
    /* Cyan */
    --color-info-light: #5bc0de;
    --color-info-dark: #117a8b;

    /* Light and Dark */
    --color-light: #f8f9fa;
    --color-dark: #343a40;

    /* Background and Text */
    --color-bg: #ffffff;
    --color-bg-secondary: #f1f3f5;
    --color-text-primary: #212529;
    --color-text-secondary: #6c757d;

    /* theme colors */
    --theme-color: #DA2518;
}

/* --------------------------------------Mobile Menu CSS Start------------------------------------------- */
.hamburger-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 43px;
    cursor: pointer;
    z-index: 9998;
    background: white;
    height: 95px;
    padding: 10px;
}

.hamburger-menu .bar {
    color: var(--theme-color);
    font-size: 24px;
    font-weight: 700;
}

.hamburger-menu .bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger-menu .menu-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger-menu img {
    margin-left: auto;
}

.mobile-menu ul {
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    overflow: hidden;
    padding: 5px;
    position: relative;
    text-align: left;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--theme-color);
}

.mobile-menu li:first-child {
    margin-top: 20px;
}

.custom-gutter {
    --bs-gutter-x: 0rem;
}

.mobile-menu .download_app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80%;
}

.mobile-menu li:hover {
    background: white;
}

.mobile-menu li a {
    text-decoration: none;
    color: var(--theme-color);
}

.mobile-menu {
    top: 0;
    max-width: 90%;
    left: -100%;
    width: 100%;
    background: white;
    height: 100%;
    position: fixed;
    z-index: 9997;
    overflow-y: auto;
    -webkit-transform: translate3d(0, 0, 205px);
    -moz-transform: translate3d(0, 0, 205px);
    transform: translate3d(0, 0, 205px);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.mobile-menu.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.has-children:hover {
    cursor: hand;
}

.children {
    display: none;
}

.mobile-menu .children li:first-child {
    margin-top: 0px;
}

.menu_mobile {
    font-size: larger;
    font-weight: 700;
}

.mobile-menu .mob_view_collapse {
    margin-top: 90px;
    background-color: var(--theme-color);
    padding: 0.5rem 0.5rem;
    color: white;
}

.mobile-menu .mob_view_collapse .apply_now_btn {
    font-size: 10px;
    font-weight: 700;
    background-color: white;
    color: var(--theme-color);
    border-radius: 5px;
    padding: 4px 20px 4px 20px;
    margin-top: 14px;
}

/* --------------------------------------Mobile Menu CSS End------------------------------------------- */
/* --------------------------------------Header CSS Start------------------------------------------- */
.navbar-toggler {
    color: var(--theme-color);
    font-size: 20px;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0 !important;
}

.navbar-top {
    background-color: var(--theme-color);
    color: white;
    position: sticky;
    top: 0px;
    z-index: 50;
}

.navbar-bottom {
    background-color: white;
    position: sticky;
    top: 3.6rem;
    z-index: 50;
}

.navbar-top-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
}

.apply_now_btn {
    font-size: 16px;
    font-weight: 700;
    background-color: white;
    color: var(--theme-color);
    border-radius: 14px;
    padding: 8px 22px 8px 22px;
}

.navbar-bottom .navbar-nav .nav-item {
    padding: 0px 50px;
    font-size: 18px;
    font-weight: 500;
}

.navbar-bottom .navbar-nav .nav-item .nav-link {
    color: var(--color-dark);
}

.navbar-bottom .navbar-nav .nav-item .btn {
    font-size: 18px;
    font-weight: 500;
    border-radius: 14px;
}

/* --------------------------------------Header CSS End------------------------------------------- */
/* --------------------------------------Footer CSS Start------------------------------------------- */
.footer-section {
    background-color: #000;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.footer-section .footer_heading {
    font-weight: 700;
    font-size: 25px;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-section .footer_app_div img {
    padding: 3px 8px;
}

.footer-section .footer_socialmedia_icon_div a {
    font-size: 20px;
    padding: 10px 10px;
}

.footer-section .footer_certification_div img {
    padding: 1px 1px;
    width: 20%;
}

/* --------------------------------------Footer CSS End------------------------------------------- */

/* --------------------------------------Home Page CSS Start------------------------------------------- */
.slide_section #carouselIndicators {
    padding: 2rem 3rem;
    background-color: white;
    border-radius: 20px;
}

.slide_section #carouselIndicators .first_col_div {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.slide_section #carouselIndicators .carousel_bank_icon img {
    padding: 4px 3px;
    width: 31%;
    height: auto;
}

.slide_section #carouselIndicators .get_started .btn {
    font-size: 18px;
    font-weight: 500;
    border-radius: 14px;
    background-color: var(--theme-color);
    color: white;
}

.slide_section #carouselIndicators .carousel-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    width: 12%;
    text-align: center;
}
.slide_section .carousel-control-next,.slide_section .carousel-control-prev {
    width: 35%;
}
.slide_section #carouselIndicators #carousel-counter {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.slide_section .btn-check:active+.btn-outline-secondary, .slide_section .btn-check:checked+.btn-outline-secondary, .slide_section .btn-outline-secondary.active,
.slide_section .btn-outline-secondary.dropdown-toggle.show, .slide_section .btn-outline-secondary:active,.slide_section .btn-outline-secondary:hove {
    color: #fff;
    background-color: transparent !important;
    border-color: transparent !important;
}
.slide_section .btn-outline-secondary:hover,.slide_section .btn-outline-secondary:active,.slide_section .btn-outline-secondary:focus{
    color: #fff;
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
.slide_section .btn-check:active+.btn-outline-secondary:focus, .slide_section .btn-check:checked+.btn-outline-secondary:focus, 
.slide_section .btn-outline-secondary.active:focus,.slide_section .btn-outline-secondary.dropdown-toggle.show:focus, 
.slide_section .btn-outline-secondary:active:focus {
    box-shadow: none !important;
}
.get_more_section .card {
    background-color: #f7f7f7;
    border: 0px;
    width: 15rem;
}

.get_more_section .card img {
    width: 80%;
}

.get_more_section .card .card-body .card-title {
    color: var(--theme-color);
}

.get_more_section .card .card-body .card-title {
    color: var(--theme-color);
    font-size: x-large;
}

.get_more_section .card .card-body .card-text {
    color: black;
}

.section_counter .counter_div {
    background-color: white;
    border-radius: 20px;
    padding: 3rem 3rem;
}

.section_counter .counter_div h1 {
    color: var(--theme-color);
    font-size: xxx-large;
}

.section_bank_partners {
    margin-top: 110px;
}

.section_bank_partners .row {
    padding-bottom: 11rem;
}

.section_bank_partners .bank_partner_img_div {
    text-align: left;

}

.section_bank_partners .bank_partner_img_div img {
    width: 40%;
    margin-top: -190px;
    margin-left: -37px;
}

.section_bank_partners .div_bank_partners {
    background-color: white;
    border-radius: 20px;
    padding-bottom: 150px;
}

.section_bank_partners .div_bank_partners h1 {
    color: var(--theme-color);
}

.section_bank_partners .div_bank_partners .card {
    padding: 3rem 2rem;
    width: 100%;
    background-color: #F6F7F9;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.section_bank_partners .div_bank_partners .card img {
    width: 50%;
}

.safe_secure {
    background-color: var(--theme-color);
}

.safe_secure .safe_secure_right_img {
    position: absolute;
    right: 0%;
    width: 24%;
    margin-top: -390px;
}

.safe_secure .step-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.safe_secure .step-circle-last {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.safe_secure .step-circle:after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background-color: #fff;
}

.safe_secure .step:last-child .safe_secure .step-circle:after {
    display: none;
}

.safe_secure .step-title {
    margin-top: 0.5rem;
    font-weight: bold;
}

.questions .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url(/uploads/image/downward_icon.png);
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.payment_app {
    background-color: white;
}

.payment_app .owl-theme .owl-nav {
    margin-top: 10px;
    display: none !important;
}

.payment_app .owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: black;
    margin-top: 15px;
    font-weight: 700;
}

.payment_app .owl-theme .owl-dots .owl-dot.active span,
.payment_app .owl-theme .owl-dots .owl-dot:hover span {
    background: #000000;
}

.payment_app .owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 3px 3px;
}


.payment_app #carousel .card {
    background-color: #f7f7f7;
    border-radius: 20px;
    border: 0px;
}

.payment_app #carousel .card:hover {
    background-color: var(--theme-color);
    border-radius: 20px;
    color: white;
}

.payment_app #carousel .card .img_div_carousel {
    padding: .5rem .5rem;
    background-color: white;
    border-radius: 20px;
}

.payment_app #carousel .card .img_div_carousel img {
    border-radius: 20px;
    object-fit: cover;
}

.section_light_app {
    background-color: white;
    padding-top: 120px;
    padding-bottom: 55px;
}

.section_light_app .light_app_inner_div {
    background-color: #FDF2F3;
    border-radius: 20px;
}

.section_light_app .light_app_inner_div .download_now_btn {
    font-size: 18px;
    font-weight: 700;
    background-color: var(--theme-color);
    color: white;
    border-radius: 14px;
    margin-top: 30px;
}

.section_light_app .light_app_inner_div .bank_icon {
    display: flex;
    margin-top: 17px;
}

.section_light_app .light_app_inner_div .bank_icon img {
    padding: 7px 7px;
    width: 25%;
    object-fit: fill;
}

.section_light_app .light_app_inner_div .first_col_div h1,
.section_light_app .light_app_inner_div .first_col_div h5 {
    margin-top: 0px;
}

.section_light_app .light_app_inner_div .first_col_div {
    padding-left: 2rem;
    padding-top: 5rem;
}

.section_light_app .light_app_inner_div .third_col_div {
    display: grid;
    text-align: end;
    justify-content: end;
    padding: 2rem;
}

.section_light_app .light_app_inner_div .third_col_div img {
    margin-bottom: 10px;
}

.section_light_app .light_app_inner_div .light_app_img {
    margin-top: -130px;
}

.section_questions {
    background-color: white;
}

.section_questions .btn:focus {
    box-shadow: none;
}

.section_questions .card {
    border-radius: 20px;
    box-shadow: #000000;
}

.section_questions .card-header {
    padding: 0.3rem 0.3rem;
    border-radius: 20px;
    background-color: white;
}

.section_questions .card-header .btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section_questions #accordion_questions .card .card-header #toggle-icon {
    color: var(--theme-color);
    font-size: 25px;
    font-weight: bold;
}

.section_questions #accordion_questions .card .card-header .btn {
    color: black;
    font-size: 20px;
    font-weight: 500;
}

/* --------------------------------------Home Page CSS End------------------------------------------- */

/* --------------------------------------About Page CSS Start------------------------------------------- */

.about_Cities {
    background-color: #FDF2F3;
    border-radius: 20px;
    border: 0px;
}

.about_Cities h3 {
    color: var(--theme-color);
    font-weight: 700;
    font-size: xx-large;
}

.main_heading {
    font-weight: 700;
}

.sub_heading {
    font-weight: 700;
}

.Cities_section .card-container {
    position: relative;
    text-align: -webkit-center;
}

.Cities_section .card-image {
    width: 60%;
    height: auto;
    display: block;
}

.Cities_section .card {
    position: relative;
    margin-top: -20px;
    z-index: 1;
    border: 0px !important;

}

.Cities_section .card-body {
    background-color: #FDF2F3;
    border: 0px !important;
    border-radius: 20px !important;
    padding: 2rem 2rem;
}

.Cities_section .card-body h3 {
    font-weight: 700;
    color: var(--theme-color);
    margin: 0;
}

.spends_section .card {
    background-color: var(--theme-color);
    color: white;
    border-radius: 20px;
    font-weight: 700;
    font-size: 24px;
}

.spends_section .card-body {
    padding: 2rem 2rem;
}

.spends_section .row .col-md-4 {
    z-index: 1;
}

.spends_section .row .col-md-4 img {
    margin-top: -200px;
}

.spends_section .transacted_body .transacted h1 {
    margin-top: -104px;
}

.spends_section .transacted_body .transacted h1 {
    margin-top: -104px;
}

.spends_section .transacted_body .transacted_img img {
    margin-top: -39px;
}

.Co-founders_section .co_founders_section_dv {
    background-color: #F7F7F7;
    border-radius: 20px;
    padding: 15px;
}

.Co-founders_section .co_founders_section_dv .card .card-body {
    text-align: center;
    padding: 15px;
}

.Co-founders_section .co_founders_section_dv .card .card-body img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.Co-founders_section .co_founders_section_dv .card .card-body p {
    margin-top: 10px;
    font-weight: bold;
    color: var(--theme-color);
    font-size: 20px;
}

.Co-founders_section .co_founders_section_dv .card .card-body span {
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
    color: var(--theme-color);
}

.Co-founders_section .card {
    border-radius: 20px;
}

/* --------------------------------------About Page CSS End------------------------------------------- */


/* --------------------------------------Contact-Us Page CSS start------------------------------------------- */
.section_contactus {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.section_contactus .contactus_inner_div {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.section_contactus .contactus_inner_div .row {
    align-items: center;
}

.section_contactus .contactus_inner_div .first_col_div .chat_with_us {
    margin-bottom: 40px;
    margin-top: 25px;
}

.section_contactus .contactus_inner_div .first_col_div .chat_with_us h1 {
    font-weight: 700;
}

.section_contactus .contactus_inner_div .first_col_div .support_cares .p1 {
    font-size: 20px;
    margin-bottom: 0rem;
    margin-top: 1rem;
    font-weight: 600;
}

.section_contactus .contactus_inner_div .first_col_div .support_cares .p2 {
    font-size: 25px;
    font-weight: 700;
}

.section_contactus .contactus_inner_div .buttons_row {
    margin-top: 65px;
}

.section_contactus .contactus_inner_div .chat_now_btn img,
.section_contactus .contactus_inner_div .call_now_btn img {
    width: 15%;
}

.section_contactus .contactus_inner_div .chat_now_btn {
    font-size: 18px;
    font-weight: 700;
    background-color: var(--theme-color);
    color: white;
    border-radius: 16px;
    width: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_contactus .contactus_inner_div .call_now_btn {
    font-size: 18px;
    font-weight: 700;
    background-color: black;
    color: white;
    border-radius: 16px;
    width: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* --------------------------------------Contact-Us Page CSS end------------------------------------------- */

/* Extra small devices (phones, less than 576px) */
@media only screen and (max-width: 575.98px) {

    /* Your CSS for extra small devices */
    .spends_section .card {
        margin-top: 115px;
    }

    .spends_section .transacted_body .transacted_img img {
        margin-top: -171px;
    }

    .spends_section .transacted_body .transacted h1 {
        margin-top: -48px;
    }

    .about_section {
        margin-top: 6rem;
    }

    /* ----------------------------------- Home ------------------------------------ */
    .slide_section {
        margin-top: 7rem;
    }
    .section_light_app {
        padding-top: unset;
    }
    .section_questions #accordion_questions .card .card-header .btn {
        font-size: 15px;
        text-align: left;
    }

    .section_light_app .light_app_inner_div .download_now_btn {
        font-size: 16px;
        margin-top: 10px;
    }
    .section_questions #accordion_questions .card .card-header #toggle-icon {
        font-size: 16px;
    }
    .slide_section #carouselIndicators {
        text-align: center;
    }

    .slide_section #carouselIndicators .first_col_div {
        display: unset;
        flex-wrap: wrap;
        align-content: center;
        padding: 5rem;
    }

    .slide_section #carouselIndicators .carousel-controls {
        bottom: 185px;
        right: 22%;
        width: 56%;
    }

    .section_bank_partners .bank_partner_img_div img {
        width: 90%;
        margin-top: -329px;
        margin-left: 20px;
    }

    .section_bank_partners .row {
        padding-bottom: 6.5rem;
    }

    .section_counter .counter_div {
        background-color: white;
        border-radius: 20px;
        padding: 3rem 3rem 13rem 3rem;
    }

    .section_bank_partners {
        margin-top: 100px;
    }

    .section_bank_partners .div_bank_partners .card {
        padding: 2rem 2rem;
    }

    .safe_secure {
        margin-top: 235px;
    }

    .safe_secure .safe_secure_right_img {
        position: absolute;
        right: 16%;
        width: auto;
        margin-top: -350px;
    }

    .section_bank_partners .div_bank_partners {
        padding-bottom: unset;
    }

    .section_light_app .light_app_inner_div {
        background-color: #FDF2F3;
        border-radius: 20px;
        text-align: center;
    }

    .section_light_app .light_app_inner_div .bank_icon {
        display: flex;
        margin-top: 22px;
        flex-direction: row;
        justify-content: center;
    }

    .section_light_app .light_app_inner_div .bank_icon img {
        padding: 7px 7px;
        width: 20%;
        object-fit: fill;
    }

    .section_light_app .light_app_inner_div .first_col_div {
        padding-left: unset;
        padding-top: 1rem;
    }

    .section_counter .counter_div h1 {
        font-size: xx-large;
    }

    .section_light_app .light_app_inner_div .light_app_img {
        margin-top: 0px;
        text-align: end;
    }

    .section_light_app .light_app_inner_div .light_app_img img {
        width: 80%;
    }

    .section_light_app .light_app_inner_div .third_col_div {
        display: unset;
        text-align: unset;
        justify-content: unset;
    }

    /* ----------------------------------- Contact-Us ------------------------------------ */
    .section_contactus {
        margin-top: 8rem;
        margin-bottom: 3rem;
    }

    .section_contactus .contactus_inner_div {
        background-color: white;
        border-radius: 20px;
        padding: 2rem;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .section_contactus .contactus_inner_div .chat_now_btn img,
    .section_contactus .contactus_inner_div .call_now_btn img {
        width: 20%;
    }
}

@media only screen and (min-width: 375px) and (max-width: 575px) {
    .footer-section .footer_certification_div img {
        padding: 1px 1px;
        width: 48%;
    }

    .about_section {
        margin-top: 6rem;
    }
}

/* Small devices (phones, 576px and up) */
@media only screen and (min-width: 576px) and (max-width: 767.98px) {

    /* Your CSS for small devices */
    .spends_section .card {
        margin-top: 115px;
    }

    .spends_section .transacted_body .transacted_img img {
        margin-top: -171px;
    }

    .spends_section .transacted_body .transacted h1 {
        margin-top: -48px;
    }

    .about_section {
        margin-top: 6rem;
    }

    /* ----------------------------------- Home ------------------------------------ */
    .slide_section {
        margin-top: 7rem;
    }

    .slide_section #carouselIndicators {
        text-align: center;
    }

    .slide_section #carouselIndicators .first_col_div {
        display: unset;
        flex-wrap: wrap;
        align-content: center;
        padding: 5rem;
    }

    .slide_section #carouselIndicators .carousel-controls {
        bottom: 250px;
        right: 22%;
        z-index: 10;
        width: 56%;
    }

    .section_bank_partners .bank_partner_img_div img {
        width: 90%;
        margin-top: -365px;
        margin-left: 20px;
    }

    .section_bank_partners .row {
        padding-bottom: 6.5rem;
    }

    .section_counter .counter_div {
        background-color: white;
        border-radius: 20px;
        padding: 3rem 3rem 13rem 3rem;
    }

    .section_bank_partners {
        margin-top: 100px;
    }

    .section_bank_partners .div_bank_partners .card {
        padding: 2rem 2rem;
    }

    .safe_secure {
        margin-top: 235px;
        border-radius: 20px;
    }

    .safe_secure .safe_secure_right_img {
        position: absolute;
        right: 16%;
        width: auto;
        margin-top: -350px;
    }

    .section_bank_partners .div_bank_partners {
        padding-bottom: unset;
    }

    .section_light_app .light_app_inner_div {
        background-color: #FDF2F3;
        border-radius: 20px;
        text-align: center;
    }

    .section_light_app .light_app_inner_div .bank_icon {
        display: flex;
        margin-top: 15px;
        flex-direction: row;
        justify-content: center;
    }

    .section_light_app .light_app_inner_div .bank_icon img {
        padding: 7px 7px;
        width: 20%;
        object-fit: fill;
    }

    .section_light_app .light_app_inner_div .first_col_div {
        padding-left: unset;
        padding-top: 3rem;
    }

    .section_light_app .light_app_inner_div .light_app_img {
        margin-top: 0px;
        text-align: end;
    }

    .section_light_app .light_app_inner_div .light_app_img img {
        width: 80%;
    }

    .section_light_app .light_app_inner_div .third_col_div {
        display: unset;
        text-align: unset;
        justify-content: unset;
    }

    /* ----------------------------------- Contact-Us ------------------------------------ */
    .section_contactus {
        margin-top: 8rem;
        margin-bottom: 3rem;
    }

    .section_contactus .contactus_inner_div {
        background-color: white;
        border-radius: 20px;
        padding: 2rem;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .section_contactus .contactus_inner_div .chat_now_btn img,
    .section_contactus .contactus_inner_div .call_now_btn img {
        width: 20%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 827px) {

    /* Your CSS for medium devices */
    .spends_section .card {
        margin-top: 49px;
    }

    .spends_section .transacted_body .transacted_img img {
        margin-top: -171px;
    }

    .spends_section .transacted_body .transacted h1 {
        margin-top: -48px;
    }

    .spends_section .row .col-md-4 img {
        margin-top: -96px;
    }

    .navbar-bottom .navbar-nav {
        display: flex;
        flex-direction: unset;
    }

    .navbar-bottom .navbar-nav .nav-item {
        padding: 0px 20px;
        font-size: 20px;
        font-weight: 500;
    }

    /* ----------------------------------- Home ------------------------------------ */
    .slide_section {
        margin-top: 5rem;
    }

    .slide_section #carouselIndicators {
        text-align: center;
    }

    .slide_section #carouselIndicators .first_col_div {
        display: unset;
        flex-wrap: wrap;
        align-content: center;
        padding: 16px;
    }

    .slide_section #carouselIndicators .first_col_div h1 {
        font-size: 20px;
        text-align: left;
    }

    .slide_section #carouselIndicators .carousel-controls {
        bottom: 15px;
        right: 22%;
        width: 56%;
    }

    .slide_section #carouselIndicators .get_started .btn {
        font-size: 20px;
        border-radius: 14px;
    }

    .section_bank_partners .bank_partner_img_div img {
        width: 80%;
        margin-top: -520px;
        margin-left: 60px;
    }

    .section_bank_partners .row {
        padding-bottom: 6.5rem;
    }

    .section_counter .counter_div {
        background-color: white;
        border-radius: 20px;
        padding: 3rem 3rem 13rem 3rem;
    }

    .section_bank_partners {
        margin-top: 190px;
    }

    .section_bank_partners .div_bank_partners .card {
        padding: 2rem 2rem;
    }

    .safe_secure {
        margin-top: 235px;
        border-radius: 20px;
    }

    .safe_secure .safe_secure_right_img {
        position: absolute;
        right: 0%;
        width: auto;
        margin-top: -410px;
    }

    .section_bank_partners .div_bank_partners {
        padding-bottom: unset;
    }

    .section_light_app {
        background-color: white;
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .section_light_app .light_app_inner_div {
        background-color: #FDF2F3;
        border-radius: 20px;
        text-align: center;
    }

    .section_light_app .light_app_inner_div .bank_icon {
        display: flex;
        margin-top: 17px;
        flex-direction: row;
        justify-content: center;
    }

    .section_light_app .light_app_inner_div .bank_icon img {
        padding: 7px 7px;
        width: 20%;
        object-fit: fill;
    }

    .section_light_app .light_app_inner_div .first_col_div {
        padding-left: 1rem;
        padding-top: 1rem;
    }

    .section_light_app .light_app_inner_div .light_app_img {
        margin-top: -74px;
        text-align: end;
    }

    .section_light_app .light_app_inner_div .light_app_img img {
        width: 100%;
    }

    .section_light_app .light_app_inner_div .third_col_div {
        display: unset;
        text-align: unset;
        justify-content: unset;
        padding-bottom: 0px;
        padding-top: 1rem;
    }

    .section_light_app .light_app_inner_div .third_col_div img {
        margin-bottom: 6px;
    }

    .section_light_app .light_app_inner_div .first_col_div h1 {
        margin-top: 0px;
        font-size: 14px;
    }

    .section_light_app .light_app_inner_div .first_col_div h5 {
        margin-top: 0px;
        font-size: 12px;
    }

    .section_light_app .light_app_inner_div .third_col_div h4 {
        font-size: medium;
    }

    .section_light_app .light_app_inner_div .download_now_btn {
        font-size: 14px;
        font-weight: 700;
        background-color: var(--theme-color);
        color: white;
        border-radius: 20px;
        padding: .5rem 1rem;
        margin-top: 25px;
    }

    /* ----------------------------------- Contact-Us ------------------------------------ */
    .section_contactus {
        margin-top: 8rem;
        margin-bottom: 3rem;
    }

    .section_contactus .contactus_inner_div {
        background-color: white;
        border-radius: 20px;
        padding: 2rem;
        display: flex;
        justify-content: center;
        text-align: start;
    }

    .section_contactus .contactus_inner_div .chat_now_btn {
        font-size: 17px;
        font-weight: 700;
        background-color: var(--theme-color);
        color: white;
        border-radius: 16px;
        width: -webkit-fill-available;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section_contactus .contactus_inner_div .call_now_btn {
        font-size: 17px;
        font-weight: 700;
        background-color: black;
        color: white;
        border-radius: 16px;
        width: -webkit-fill-available;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section_contactus .contactus_inner_div .chat_now_btn img,
    .section_contactus .contactus_inner_div .call_now_btn img {
        width: 20%;
    }

    .section_contactus .contactus_inner_div .buttons_row {
        margin-top: auto;
    }

    .section_contactus .contactus_inner_div .first_col_div .chat_with_us {
        margin-bottom: 0px;
        margin-top: 0px;
    }

    .section_contactus .contactus_inner_div .first_col_div .chat_with_us h1 {
        font-size: xx-large;
        font-weight: 700;
    }

    .section_contactus .contactus_inner_div .first_col_div .support_cares .p2 {
        font-size: 20px;
        font-weight: 700;
    }

    .section_contactus .contactus_inner_div .first_col_div .support_cares .p1 {
        font-size: 18px;
        margin-bottom: 0rem;
        margin-top: 1rem;
        font-weight: 600;
    }
}

/* Large devices (desktops, 992px and up) */
@media only screen and (min-width: 828px) and (max-width: 991px) {

    /* Your CSS for large devices */
    .spends_section .transacted_body .transacted_img img {
        margin-top: -40px;
        width: 49%;
    }

    .spends_section .transacted_body .transacted h1 {
        margin-top: -75px;
    }

    .navbar-bottom .navbar-nav {
        display: flex;
        flex-direction: unset;
    }

    .navbar-bottom .navbar-nav .nav-item {
        padding: 0px 20px;
        font-size: 20px;
        font-weight: 500;
    }

    /* ----------------------------------- Home ------------------------------------ */
    .slide_section {
        margin-top: 5rem;
    }

    .slide_section #carouselIndicators {
        text-align: center;
    }

    .slide_section #carouselIndicators .first_col_div {
        display: unset;
        flex-wrap: wrap;
        align-content: center;
        padding: 16px;
    }

    .slide_section #carouselIndicators .first_col_div h1 {
        font-size: 20px;
        text-align: left;
    }

    .slide_section #carouselIndicators .carousel-controls {
        bottom: 15px;
        right: 22%;
        width: 56%;
    }

    .slide_section #carouselIndicators .get_started .btn {
        font-size: 20px;
        border-radius: 14px;
    }

    .section_bank_partners .bank_partner_img_div img {
        width: 80%;
        margin-top: -520px;
        margin-left: 60px;
    }

    .section_bank_partners .row {
        padding-bottom: 6.5rem;
    }

    .section_counter .counter_div {
        background-color: white;
        border-radius: 20px;
        padding: 3rem 3rem 13rem 3rem;
    }

    .section_bank_partners {
        margin-top: 190px;
    }

    .section_bank_partners .div_bank_partners .card {
        padding: 2rem 2rem;
    }

    .safe_secure {
        margin-top: 235px;
        border-radius: 20px;
    }

    .safe_secure .safe_secure_right_img {
        position: absolute;
        right: 0%;
        width: auto;
        margin-top: -410px;
    }

    .section_bank_partners .div_bank_partners {
        padding-bottom: unset;
    }

    .section_light_app {
        background-color: white;
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .section_light_app .light_app_inner_div {
        background-color: #FDF2F3;
        border-radius: 20px;
        text-align: center;
    }

    .section_light_app .light_app_inner_div .bank_icon {
        display: flex;
        margin-top: 17px;
        flex-direction: row;
        justify-content: center;
    }

    .section_light_app .light_app_inner_div .bank_icon img {
        padding: 7px 7px;
        width: 20%;
        object-fit: fill;
    }

    .section_light_app .light_app_inner_div .first_col_div {
        padding-left: 1rem;
        padding-top: 1rem;
    }

    .section_light_app .light_app_inner_div .light_app_img {
        margin-top: -74px;
        text-align: end;
    }

    .section_light_app .light_app_inner_div .light_app_img img {
        width: 100%;
    }

    .section_light_app .light_app_inner_div .third_col_div {
        display: unset;
        text-align: unset;
        justify-content: unset;
        padding-bottom: 0px;
        padding-top: 1rem;
    }

    .section_light_app .light_app_inner_div .third_col_div img {
        margin-bottom: 6px;
    }

    .section_light_app .light_app_inner_div .first_col_div h1 {
        margin-top: 0px;
        font-size: 14px;
    }

    .section_light_app .light_app_inner_div .first_col_div h5 {
        margin-top: 0px;
        font-size: 12px;
    }

    .section_light_app .light_app_inner_div .third_col_div h4 {
        font-size: medium;
    }

    .section_light_app .light_app_inner_div .download_now_btn {
        font-size: 14px;
        font-weight: 700;
        background-color: var(--theme-color);
        color: white;
        border-radius: 20px;
        padding: .5rem 1rem;
        margin-top: 25px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

    /* Your CSS for extra large devices */
    .spends_section .transacted_body .transacted h1 {
        margin-top: -97px;
    }

    .spends_section .transacted_body .transacted_img img {
        margin-top: -40px;
        width: 49%;
    }

    /* ----------------------------------- Home ------------------------------------ */
    .slide_section {
        margin-top: 5rem;
    }

    .slide_section #carouselIndicators {
        text-align: center;
    }

    .slide_section #carouselIndicators .first_col_div {
        display: unset;
        flex-wrap: wrap;
        align-content: center;
        padding: 16px;

    }

    .slide_section #carouselIndicators .first_col_div h1 {
        font-size: 20px;
        text-align: left;
    }

    .slide_section #carouselIndicators .carousel-controls {
        bottom: 15px;
        right: 22%;
        width: 56%;
    }

    .slide_section #carouselIndicators .get_started .btn {
        font-size: 20px;
        border-radius: 14px;
    }

    .section_bank_partners .bank_partner_img_div img {
        width: 80%;
        margin-top: -520px;
        margin-left: 60px;
    }

    .section_bank_partners .row {
        padding-bottom: 6.5rem;
    }

    .section_counter .counter_div {
        background-color: white;
        border-radius: 20px;
        padding: 3rem 3rem 13rem 3rem;
    }

    .section_bank_partners {
        margin-top: 190px;
    }

    .section_bank_partners .div_bank_partners .card {
        padding: 2rem 2rem;
    }

    .safe_secure {
        margin-top: 235px;
        border-radius: 20px;
    }

    .safe_secure .safe_secure_right_img {
        position: absolute;
        right: 0%;
        width: auto;
        margin-top: -410px;
    }

    .section_bank_partners .div_bank_partners {
        padding-bottom: unset;
    }

    .section_light_app {
        background-color: white;
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .section_light_app .light_app_inner_div {
        background-color: #FDF2F3;
        border-radius: 20px;
        text-align: center;
    }

    .section_light_app .light_app_inner_div .bank_icon {
        display: flex;
        margin-top: 17px;
        flex-direction: row;
        justify-content: center;
    }

    .section_light_app .light_app_inner_div .bank_icon img {
        padding: 5px 5px;
        width: 22%;
        object-fit: fill;
    }

    .section_light_app .light_app_inner_div .first_col_div {
        padding-left: 1rem;
        padding-top: 1rem;
    }

    .section_light_app .light_app_inner_div .light_app_img {
        margin-top: -74px;
        text-align: end;
    }

    .section_light_app .light_app_inner_div .light_app_img img {
        width: 100%;
    }

    .section_light_app .light_app_inner_div .third_col_div {
        display: unset;
        text-align: unset;
        justify-content: unset;
        padding-bottom: 0px;
        padding-top: 1rem;
    }

    .section_light_app .light_app_inner_div .third_col_div img {
        margin-bottom: 6px;
    }

    .section_light_app .light_app_inner_div .first_col_div h1 {
        margin-top: 0px;
        font-size: 25px;
    }

    .section_light_app .light_app_inner_div .first_col_div h5 {
        margin-top: 0px;
        font-size: 18px;
    }

    .section_light_app .light_app_inner_div .third_col_div h4 {
        font-size: 25px;
        font-weight: 500;
    }

    .section_light_app .light_app_inner_div .download_now_btn {
        font-size: 18px;
        font-weight: 700;
        background-color: var(--theme-color);
        color: white;
        border-radius: 20px;
        padding: .5rem 1rem;
        margin-top: 25px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {

    /* Your CSS for extra large devices */
    .spends_section .transacted_body .transacted h1 {
        margin-top: -104px;
    }

    .spends_section .transacted_body .transacted_img img {
        margin-top: -55px;
        width: 47%;
    }

    /* ----------------------------------- Home ------------------------------------ */
    .slide_section {
        margin-top: 5rem;
    }

    .slide_section #carouselIndicators {
        text-align: center;
    }

    .slide_section #carouselIndicators .first_col_div {
        display: unset;
        flex-wrap: wrap;
        align-content: center;
        padding: 16px;
    }

    .slide_section #carouselIndicators .first_col_div h1 {
        font-size: 20px;
        text-align: left;
    }

    .slide_section #carouselIndicators .carousel-controls {
        bottom: 15px;
        right: 22%;
        width: 56%;
    }

    .slide_section #carouselIndicators .get_started .btn {
        font-size: 20px;
        border-radius: 14px;
    }

    .section_bank_partners .bank_partner_img_div img {
        width: 80%;
        margin-top: -520px;
        margin-left: 60px;
    }

    .section_bank_partners .row {
        padding-bottom: 6.5rem;
    }

    .section_counter .counter_div {
        background-color: white;
        border-radius: 20px;
        padding: 3rem 3rem 13rem 3rem;
    }

    .section_bank_partners {
        margin-top: 190px;
    }

    .section_bank_partners .div_bank_partners .card {
        padding: 2rem 2rem;
    }

    .safe_secure {
        margin-top: 235px;
        border-radius: 20px;
    }

    .safe_secure .safe_secure_right_img {
        position: absolute;
        right: 0%;
        width: auto;
        margin-top: -410px;
    }

    .section_bank_partners .div_bank_partners {
        padding-bottom: unset;
    }

    .section_light_app {
        background-color: white;
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .section_light_app .light_app_inner_div {
        background-color: #FDF2F3;
        border-radius: 20px;
        text-align: center;
    }

    .section_light_app .light_app_inner_div .bank_icon {
        display: flex;
        margin-top: 17px;
        flex-direction: row;
        justify-content: center;
    }

    .section_light_app .light_app_inner_div .bank_icon img {
        padding: 5px 5px;
        width: 22%;
        object-fit: fill;
    }

    .section_light_app .light_app_inner_div .first_col_div {
        padding-left: 1rem;
        padding-top: 1rem;
    }

    .section_light_app .light_app_inner_div .light_app_img {
        margin-top: -74px;
        text-align: end;
    }

    .section_light_app .light_app_inner_div .light_app_img img {
        width: 100%;
    }

    .section_light_app .light_app_inner_div .third_col_div {
        display: unset;
        text-align: unset;
        justify-content: unset;
        padding-bottom: 0px;
        padding-top: 1rem;
    }

    .section_light_app .light_app_inner_div .third_col_div img {
        margin-bottom: 6px;
    }

    .section_light_app .light_app_inner_div .first_col_div h1 {
        margin-top: 0px;
        font-size: 25px;
    }

    .section_light_app .light_app_inner_div .first_col_div h5 {
        margin-top: 0px;
        font-size: 18px;
    }

    .section_light_app .light_app_inner_div .third_col_div h4 {
        font-size: 25px;
        font-weight: 500;
    }

    .section_light_app .light_app_inner_div .download_now_btn {
        font-size: 18px;
        font-weight: 700;
        background-color: var(--theme-color);
        color: white;
        border-radius: 20px;
        padding: .5rem 1rem;
        margin-top: 25px;
    }
}

/* Extra-extra large devices (larger screens, 1400px and up) */
@media only screen and (min-width: 1400px) and (max-width: 1800px) {
    .safe_secure .safe_secure_right_img {
        position: absolute;
        right: 0%;
        width: 20%;
        margin-top: -311px;
    }
}

