:root {
    --theme-color: #0054A5;
    --secondary-color: #3EA54E;
}

body {
    background: rgb(255, 255, 255);
    color: rgb(68, 68, 68);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

a {
    color: var(--theme-color);
    text-decoration: none;
    transition: all 0.5s ease 0s;
}

a:hover,
a:active,
a:focus {
    color: rgb(81, 216, 175);
    outline: none;
    text-decoration: none;
}

p {
    padding: 0px;
    margin-bottom: 0px;
    line-height: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0px 0px 20px;
    padding: 0px;
    /* font-size: 14px; */
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--theme-color);
    width: 40px;
    height: 40px;
    transition: all 0.4s ease 0s;
}

.back-to-top i {
    font-size: 28px;
    color: rgb(255, 255, 255);
    line-height: 0;
}

.back-to-top:hover {
    background: rgb(113, 223, 190);
    color: rgb(255, 255, 255);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

#topbar {
    background-image: -webkit-linear-gradient(180deg, rgb(1 166 84) 0%, rgb(1 80 162) 100%);
    border-bottom: 1px solid rgb(238, 238, 238);
    font-size: 14px;
    padding: 0px;
    height: 40px;
}

#topbar a:hover {
    color: #fff !important;
    opacity: 0.9;
}

#topbar .contact-info i {
    font-style: normal;
    color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: all 0.3s ease 0s;
}

#topbar .contact-info i a:hover {
    color: var(--theme-color);
}

#topbar .social-links a {
    color: #fff;
    padding: 0px 8px;
    display: inline-block;
    line-height: 1px;
    border-left: 1px solid rgb(233, 233, 233);
    font-size: 12px;
}

#topbar .social-links a:hover {
    color: var(--theme-color);
}

#topbar .social-links a:first-child {
    border-left: 0px;
}

.contact-info {
    font-size: 12px;
}

#header {
    height: 80px;
    transition: all 0.5s ease 0s;
    z-index: 997;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.06) 0px 6px 9px 0px;
}

#header #logo h1 a {
    color: var(--secondary-color);
}

#header #logo h1 a span {
    color: var(--theme-color);
}

#header #logo img {
    padding: 0px;
    margin: 0px;
    width: 242px;
}

@media (max-width: 768px) {
    #header {
        height: 60px;
    }
    #header #logo h1 {
        font-size: 34px;
    }
    #header #logo img {
        max-height: 40px;
    }
    #header #logo img {
        padding: 0px;
        margin: 0px;
        width: 142px;
    }
}

.scrolled-offset {
    margin-top: 70px;
}

.navbar {
    padding: 0px;
}

.navbar ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px 10px 15px;
    font-family: Raleway, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgb(68, 68, 68);
    white-space: nowrap;
    transition: all 0.3s ease 0s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--theme-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0px;
    padding: 10px 0px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgb(255, 255, 255);
    box-shadow: rgba(127, 137, 161, 0.25) 0px 0px 30px;
    transition: all 0.3s ease 0s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--theme-color);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0px;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0px;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

.mobile-nav-toggle {
    color: var(--secondary-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: all 0.5s ease 0s;
}

.mobile-nav-toggle.bi-x {
    color: rgb(255, 255, 255);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    inset: 0px;
    background: rgba(8, 30, 91, 0.9);
    transition: all 0.3s ease 0s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    inset: 55px 15px 15px;
    padding: 10px 0px;
    background-color: rgb(255, 255, 255);
    overflow-y: auto;
    transition: all 0.3s ease 0s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--secondary-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--theme-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0px;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: rgb(255, 255, 255);
    box-shadow: rgba(127, 137, 161, 0.25) 0px 0px 30px;
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: var(--theme-color);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.btn-get-started,
.btn-projects {
    font-family: Raleway, sans-serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 2px;
    transition: all 0.5s ease 0s;
    margin: 10px;
    color: rgb(255, 255, 255);
}

.btn-get-started {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-get-started:hover {
    background: none;
    color: var(--secondary-color);
}

.btn-projects {
    background: var(--theme-color);
    border: 2px solid var(--theme-color);
}

.btn-projects:hover {
    background: none;
    color: var(--theme-color);
}

.btn-theme {
    background: var(--theme-color);
    border: 2px solid var(--theme-color);
    color: #fff;
}

.btn-theme:hover {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: #fff;
}

section {
    padding: 40px 0px;
    overflow: hidden;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--theme-color);
    bottom: 0px;
    left: 0px;
}

.section-header p {
    padding: 0px;
    margin: 0px;
}

.hero .owl-nav {
    position: absolute;
    top: calc(50% - 21px);
    width: 107%;
}

.hero .owl-nav div {
    position: absolute;
    top: 50%;
    border: 1px solid var(--theme-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.hero .owl-prev {
    left: 34px;
    display: flex;
    background: #fff;
}

.hero .owl-next {
    right: 134px;
    display: flex;
    background: #fff;
}

.hero .owl-prev i,
.hero .owl-next i {
    margin: auto;
}

.z-9 {
    z-index: 9;
}

@media(min-width:900px) {
    .hero-carousel img {
        height: 400px;
        object-fit: cover;
    }
}


/* product list  */

.product_list {
    background: rgb(0 166 84 / 22%);
    border-radius: 50%;
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
}

.featured_product:hover p {
    color: var(--secondary-color);
}

.featured_product:hover .product_list {
    transform: translateY(-5px);
    box-shadow: 0 4px 4px hsla(0, 2%, 61%, .25);
}

li.featured_product {
    /* text-align: center; */
    margin: auto;
}

.hero+* {
    margin-top: -4.875rem;
}

.section-heading h3:before {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--theme-color);
    display: inline-flex;
    position: absolute;
    left: 95px;
    bottom: -8px;
}

.section-header .section-heading h3:after {
    content: "";
    width: 80px;
    height: 3px;
    background-color: var(--theme-color);
    display: block;
    margin-top: 20px;
}

.section-heading h3 {
    font-weight: 600;
    position: relative;
    font-size: 35px;
    color: var(--theme-color);
}


/* services */

.service_box {
    box-shadow: 0 0 1px 2px #0070ba2b;
    transition: .5s;
}

.service_box h3 {
    font-weight: 600;
    font-size: 18px;
}

.card_icon {
    margin-bottom: 20px;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #0070ba;
    color: #fff;
    font-size: 40px;
    transition: .5s;
}

.service_box:hover .card_icon {
    background-color: var(--secondary-color);
    color: var;
    border-radius: 50%;
}

.service_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 4px hsla(0, 2%, 61%, .25);
}

.service_box h3 a {
    color: #000;
}

.service_box h3 a:hover {
    color: var(--theme-color);
}

.fpay {
    width: 120px;
}

.main_title.text-start h1 {
    font-weight: 600;
    color: #000;
    font-size: 33px;
}

.mainimg {
    object-fit: contain;
    width: 20rem !important;
}

.bg-section {
    background: #f0f5f6;
}

section.myapp.bg-section {
    padding: 100px 0;
}


/* testimonial */

.customers-single-item {
    position: relative;
    padding-left: 130px;
}

.customers-single-item .quote {
    line-height: 1;
    font-size: 100px;
    color: #ee6a3e;
    position: absolute;
    top: 0;
    left: 0;
}

.customers-single-item p {
    margin-bottom: 35px;
    font-size: 15px;
    color: #141414;
    font-weight: 500;
}

.customers-single-item ul {
    padding-left: 0;
    margin-bottom: 10px;
    list-style-type: none;
}

.customers-single-item ul li {
    display: inline-block;
}

.customers-single-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.customers-single-item span {
    color: #ee6a3e;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
}

.testimonials.owl-theme .owl-dots {
    margin-top: 0;
    position: absolute;
    right: 0;
    bottom: 0;
}

.testimonials.owl-theme .owl-dots .owl-dot.active span {
    background-color: #ee6a3e;
}

.testimonials.owl-theme .owl-dots .owl-dot span {
    border-radius: 0;
    background-color: #f7b22c;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.loan-calculator {
    margin: 24px auto;
    background: #fff;
    box-shadow: 0 12px 50px -11px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    color: #14213d;
    overflow: hidden;
}

.loan-calculator,
.loan-calculator * {
    box-sizing: border-box;
}

.loan-calculator .top {
    background: #14213d;
    color: #fff;
    padding: 32px;
    background-image: -webkit-linear-gradient(180deg, rgb(1 166 84) 0%, rgb(1 80 162) 100%);
}

.loan-calculator form input {
    font-size: 20px;
    padding: 8px 24px;
    width: 100%;
    margin-bottom: 15px;
}

.loan-calculator .result .left {
    width: 100%;
    padding: 8px 32px;
}

.loan-calculator .left h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    padding-top: 10px;
}

.loan-calculator .result .value {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(20, 33, 61, 0.2);
    /* color: var(--theme-color); */
}

.loan-calculator .result .value::before {
    content: "NRs";
    font-size: 24px;
    font-weight: 400;
    margin-right: 6px;
    opacity: 0.4;
}

.loan-calculator .calculate-btn {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 8px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    margin: 24px 0;
}

@media (max-width: 650px) {
    .loan-calculator {
        width: 90%;
        max-width: 500px;
    }
    .loan-calculator form {
        flex-direction: column;
        gap: 20px;
    }
    .loan-calculator .result {
        flex-direction: column;
        text-align: center;
    }
}

.no-bottom-border {
    border-bottom: none;
}

.downloads {
    /* background: #0453a447; */
    padding: 15px;
    border-radius: 15px;
    background-image: -webkit-linear-gradient(180deg, rgb(1 166 84 / 37%) 0%, rgb(1 80 162 / 35%) 100%);
}

.newtext .section-heading h3:before {
    content: "";
    width: 20px;
    height: 20px;
    background: #fff;
    display: inline-flex;
    position: absolute;
    left: 95px;
    bottom: -8px;
}

.newtext .section-header .section-heading h3:after {
    content: "";
    width: 80px;
    height: 3px;
    background-color: #fff;
    display: block;
    margin-top: 20px;
}


/* digital */

.dinance_image_gallery {
    position: relative;
}

.finance_thumbnail .thumbnail img {
    border-radius: 5px;
    /* height: 43rem; */
}

.finance_content {
    position: relative;
}

.finance_content {
    box-shadow: 0 10px 50px 0 rgba(26, 46, 85, .1);
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
    border-radius: 0 5px 5px 5px;
    padding: 60px 50px 60px 70px;
    background-color: #fff;
    /* background-color: var(--color-white); */
    margin-left: -120px;
    margin-top: 90px;
}

.finance_content .features-box {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    display: block;
    /* text-align: left; */
    margin-bottom: 24px;
    transition: 0.3s;
}

.features-box.color-secondary-style .icon {
    background-color: rgba(238, 74, 98, .1);
    color: #ee4a62;
    color: var(--theme-color);
}

.finance_content .features-box .icon {
    font-size: 38px;
    /* margin-right: 20px; */
    margin-bottom: 0;
}

.features-box .icon {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 28px;
}

.finance_content .features-box .content {
    flex: 1;
    text-align: center;
}

.finance_content .features-box .content .title {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}

.finance_content .features-box .content p {
    font-size: 13px;
}

.features-list {
    box-shadow: 0 0 1px 2px #0070ba2b;
    padding: 5px;
    height: 100%;
    /* gap: 5px; */
    transition: .5s;
}

.features-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 4px hsla(0, 2%, 61%, .25);
    border-radius: 5px;
}


/* location */

.location-area {
    position: relative;
    display: block;
    background-color: rgb(1 80 162);
}

.location-content-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 75px 0;
    z-index: 1;
}

.location-content-box-bg {
    position: absolute;
    top: 0;
    left: 300px;
    bottom: 0;
    right: 100px;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    background-color: #1a1c23;
    background-blend-mode: luminosity;
    z-index: -1;
}

.location-content-box-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(26, 28, 35);
    background: linear-gradient(270deg, rgb(10 72 156) 0%, rgb(4 76 159) 5%, rgb(1 166 84 / 31%) 40%, rgb(4 76 159) 95%, rgb(4 76 159) 100%);
}

.location-content-box .inner-title {
    position: relative;
    display: block;
}

.location-content-box .inner-title h2 {
    color: #ffffff;
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    margin: 0 0 7px;
}

.location-content-box .inner-title p {
    color: #b8b4b1;
}

.h-40px {
    height: 40px;
}


/* footer */

footer.footer h6 {
    font-weight: 600;
}

footer .nav li a {
    color: #737373;
    padding-left: 0;
}

.footer .nav {
    margin: 0;
}

.bg-foot {
    background: var(--theme-color);
    padding: 9px;
    border-radius: 10px;
}

.pay_partner img {
    width: 80px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
}

.btn-icon.btn-xs {
    font-size: .75rem;
    height: 1.75rem;
    width: 1.75rem;
}

.btn-icon {
    align-items: center;
    display: inline-flex;
    flex-shrink: 0;
    font-size: .92969rem;
    font-weight: 400;
    height: 2.5rem;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 2.5rem;
}

.btn-social {
    border: 1px solid #5C6C74;
    border-radius: 0.5rem;
    color: #5C6C74;
}

.card.card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 4px hsla(0, 2%, 61%, .25);
    border-radius: 5px;
    border: 0;
}

.card.card-product {
    transition: .5s;
    height: 100%;
}


/* breadcrumb */

.breadcrumb-area {
    position: relative;
    display: block;
    background-color: var(--theme-color);
    padding: 50px;
    padding-top: 0;
    z-index: 11;
}

.breadcrumb-area-bg {
    position: absolute;
    top: 0;
    left: 50px;
    bottom: 50px;
    right: 50px;
    background: #646464;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-blend-mode: luminosity;
    z-index: -1;
}

.breadcrumb-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0.15;
}

.breadcrumb-area .inner-content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 360px 0 0px;
    z-index: 10;
}

.breadcrumb-area .title {
    position: absolute;
    left: 0;
    bottom: -50px;
    background: #ffffff;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.12);
    padding: 22px 30px 22px;
}

.breadcrumb-area .title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-image: -moz-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(1 80 162) 0%, rgb(0 166 83) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(138, 15, 61) 0%, rgb(207, 23, 60) 100%);
}

.breadcrumb-area .title h2 {
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -0.02em;
}

.breadcrumb-menu {
    position: absolute;
    bottom: -37px;
    right: 0;
    color: #fff;
}

.breadcrumb-menu ul {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.breadcrumb-menu ul li {
    position: relative;
    display: block;
    float: left;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-transform: capitalize;
    padding-right: 24px;
    margin-right: 13px;
}

.breadcrumb-menu ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcrumb-menu ul li:before {
    font-family: 'bootstrap-icons';
    content: "\F231";
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0px;
    font-size: 12px;
}

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

.breadcrumb-menu ul li a {
    color: #fff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.breadcrumb-menu ul li:hover a,
.breadcrumb-menu ul li.active {
    color: #fff;
}

.overview-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 100px 0 100px;
    z-index: 1;
}

.service_box {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    margin-right: 20px;
}

.service_box ul {
    position: relative;
    display: block;
    padding: 0;
}

.service_box ul li {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    border-right: 1px solid #f2ece7;
    border-bottom: 1px solid #f2ece7;
}

.service_box ul li:nth-child(2) {
    border-right: none;
}

.service_box ul li:nth-child(3) {
    border-bottom: none;
}

.service_box ul li:last-child {
    border-right: none;
    border-bottom: none;
}

.service_box_card {
    position: relative;
    display: block;
    text-align: center;
    padding: 30px 0 22px;
}

.service_box_card .icon {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid var(--theme-color);
    margin: 0 auto;
    border-radius: 50%;
    color: var( --theme-color);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service_box_card .title {
    position: relative;
    display: block;
    padding-top: 18px;
}

.service_box_card .title h3 {
    font-size: 18px;
    line-height: 28px;
}

@media only screen and (max-width: 767px) {
    .service_box {
        margin-right: 0px;
    }
    .service_box ul li {
        float: none;
        width: 100%;
        border-right: 0px solid;
    }
    .breadcrumb-area-bg {
        left: 15px;
        right: 15px;
        bottom: 100px;
    }
    .breadcrumb-area {
        padding: 0px;
        padding-top: 0;
        padding-bottom: 100px;
    }
    .breadcrumb-area .inner-content {
        padding: 250px 0 0px;
    }
    .breadcrumb-area .title {
        display: none;
    }
    .breadcrumb-menu {
        position: absolute;
        bottom: -73px;
        right: 0;
    }
}


/* deposit tab */

.deposit_tab .nav-tabs .nav-link.active {
    border-color: transparent;
    background-color: #fff !important;
    color: var(--theme-color) !important;
    border-bottom: 4px solid var(--theme-color) !important
}

.deposit_tab .nav-tabs .nav-link {
    border-top-left-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    font-weight: 600;
    color: #000;
}

.deposit_tab .nav-tabs .nav-link.active {
    border-color: transparent;
    color: #fff;
    font-weight: 600
}

.table>:not(caption)>*>* {
    padding: 12px;
}

.main_deposit {
    background-image: -webkit-linear-gradient(180deg, rgb(1 166 84) 0%, rgb(1 80 162) 100%);
    padding: 15px;
    /* color: #fff; */
}

.main_deposit td,
.main_deposit tr,
.main_deposit .table-striped>tbody>tr:nth-of-type(odd)>* {
    color: #fff;
}

.bg-box {
    background: #0150a2;
    padding: 5px;
    color: #fff;
}

.innerpills .nav-pills .nav-link {
    color: #fff;
    background-color: var(--theme-color);
    font-weight: 600;
    position: relative;
    display: block;
    background: #ffffff;
    color: #000;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    padding: 14px 40px 14px;
    padding-right: 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
    border-radius: 0;
    border: 0;
    margin-bottom: 6px;
}

.innerpills .nav-pills .nav-link.active {
    color: #fff;
    background: var(--theme-color);
}

.menu_left {
    background-color: rgb(212 244 233);
    padding: 15px;
}

.single-box .icon-box {
    width: 80px;
    height: 80px;
    background: #F5FAFF;
    border-radius: 40px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-box h5 {
    margin: 23px 0 9px;
}

.content-feature-list li {
    position: relative;
    padding-left: 25px;
    margin: 0 0 18px;
    display: flex;
}

.content-feature-list li i {
    margin-right: 5px;
}

.sidebar-widget.style2 {
    background: 0 0;
    box-shadow: 0 0 25px rgba(85, 85, 85, .1);
}

.sidebar-widget {
    margin: 0 0 30px;
    background-color: #f9f9f9;
    position: relative;
    z-index: 1;
    padding: 25px;
}

.sidebar-widget.style2 h4 {
    padding-bottom: 0;
}

.sidebar-widget h4 {
    margin: 0 0 25px;
    font-size: 22px;
    line-height: 1;
    position: relative;
    padding-bottom: 20px;
}

.category-box.style2 ul li {
    margin: 0 0 15px;
    padding-left: 0;
}

.category-box.style2 ul {
    list-style: none;
    padding: 0
}

.category-box.style2 ul li a {
    display: block;
    background: #f9f9f9;
    padding: 17px 18px 18px;
    border-radius: 5px;
    color: #666;
    font-weight: 500;
    transition: .4s;
}

.category-box.style2 ul li a span i {
    position: relative;
    font-size: 10px;
    font-weight: 600;
    line-height: .8;
    color: #000;
    margin: 0 auto;
    top: 0;
}

.category-box.style2 ul li a:hover {
    background: var(--theme-color);
    color: #fff;
}

@media(max-width:767px) {
    .finance_content {
        box-shadow: 0 10px 50px 0 rgba(26, 46, 85, .1);
        box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.1);
        border-radius: 0 5px 5px 5px;
        padding: 45px 23px 37px 23px;
        background-color: #fff;
        /* background-color: var(--color-white); */
        margin-left: unset;
        margin-top: 90px;
    }
    .mainimg {
        object-fit: contain;
        width: 14rem;
        margin: auto;
        display: flex;
        margin-top: 20px;
    }
    .main_title.text-start h1 {
        text-align: center;
    }
    .navbar .dropdown ul {
        left: -50px;
    }
}


/* about us */

.nepal_fin_about {
    position: relative;
}

@media (max-width: 991px) {
    .nepal_fin_about {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .nepal_fin_about {
        margin-bottom: 140px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .nepal_fin_about {
        margin-bottom: 100px;
    }
}

.nepal_fin_about .nepal_fin_exp {
    position: absolute;
    right: 0;
    top: 50%;
    height: 180px;
    width: 180px;
    background-color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    border: 10px solid #fff;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    color: #fff;
}

@media (max-width: 767px) {
    .nepal_fin_about .nepal_fin_exp {
        top: auto;
        right: 50%;
        bottom: 0;
        -webkit-transform: translate(50%, 50%);
        -ms-transform: translate(50%, 50%);
        transform: translate(50%, 50%);
    }
}

@media (max-width: 575px) {
    .nepal_fin_about .nepal_fin_exp {
        width: 130px;
        height: 130px;
        border-width: 6px;
        font-size: 13px;
    }
}

.nepal_fin_about .nepal_fin_exp .big {
    display: block;
    font-size: 80px;
    position: relative;
    color: #fff;
}

@media (max-width: 575px) {
    .nepal_fin_about .nepal_fin_exp .big {
        font-size: 42px;
    }
}

.nepal_fin_about .nepal_fin_exp .big::after {
    content: "+";
    font-size: 16px;
}


/* mission vision */

.missionvision {
    position: relative;
    z-index: 1;
}

.missionvision {
    padding-top: 100px;
    padding-bottom: 100px;
}

.missionvision::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: var(--theme-color);
    opacity: 0.8;
    z-index: -1;
}

.missionvision_item {
    padding-left: 70px;
    position: relative;
    padding-bottom: 61px;
    margin-bottom: 10px;
}

.missionvision_item span {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0px;
    top: 0px;
    text-align: center;
    border-radius: 50px;
    background: rgb(185, 7, 23);
    font-size: 16px;
    font-weight: 500;
    padding-top: 10px;
}

.missionvision_item h5 {
    font-weight: 400;
    margin-bottom: 10px;
}

.missionvision_item::after {
    position: absolute;
    content: "";
    height: calc(100% - 45px);
    left: 20px;
    top: 48px;
    border-left: 1px dashed rgb(108, 110, 112);
}

.missionvision_item:last-child::after {
    border-left: 0px;
}

.missionvision_list h5 {
    font-size: 22px;
    font-weight: 600;
}


/* team */

.ourteam {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.ourteam .img-holder {
    position: relative;
    display: block;
}

.ourteam .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #646464;
    z-index: 1;
}

.ourteam .img-holder .inner img {
    width: 100%;
    /* mix-blend-mode: luminosity; */
    transition: all 500ms linear;
    transition-delay: 0.2s;
}

.ourteam:hover .img-holder .inner img {
    transform: scale(1.1) rotate(0deg);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    /* mix-blend-mode: luminosity; */
}

.ourteam .text-holder {
    position: relative;
    display: block;
    padding-top: 19px;
    padding-bottom: 22px;
    text-align: center;
    z-index: 1;
}

.ourteam .text-holder:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background-color: var(--theme-color);
    transform: scaleY(0.1);
    transform-origin: top;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.ourteam:hover .text-holder:before {
    transform: scaleY(1.0);
    height: 100%;
}

.ourteam .text-holder h3 {
    font-size: 18px;
    line-height: 30px;
    color: var(--theme-color);
    margin-bottom: 0;
}

.ourteam .text-holder h5 {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 5px 0 0;
}

.ourteam:hover .text-holder {
    color: #fff;
}

.ourteam:hover .text-holder h3 {
    color: #fff;
}

.ceomessage_image {
    position: relative;
    z-index: 5;
    max-width: 342px;
    width: 100%;
}

.ceomessage_image::before {
    position: absolute;
    content: '';
    background-image: -webkit-linear-gradient(180deg, rgb(1 166 84) 0%, rgb(1 80 162) 100%);
    width: 80%;
    height: 100%;
    bottom: 19px;
    left: -19px;
    z-index: -1;
}

.ceomessage_image::after {
    position: absolute;
    /* content: ''; */
    background-color: var(--theme-color);
    width: 80%;
    height: 70%;
    bottom: 60px;
    right: 0;
    z-index: -1;
}

.ceomessage_image img {
    width: 100%;
    object-fit: contain;
}

@media(max-width:767px) {
    .ceomessage_image::before {
        bottom: 0;
        left: -19px;
        z-index: -1;
    }
}

.brochures-widget ul>li>a {
    background: #ebedef;
    display: block;
    font-size: 14px;
    line-height: 50px;
    margin-bottom: 1px;
    padding: 0 30px;
}

.brochures-widget ul>li>a span {
    line-height: 50px;
    transition: 0.3s all ease-in-out;
    /* -webkit-transition: 0.3s all ease-in-out; */
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

.brochures-widget ul>li>a:hover,
.brochures-widget ul>li>a:focus,
.brochures-widget ul>li>a:hover .text-color,
.brochures-widget ul>li>a:focus .text-color {
    color: #fff !important;
    background-image: -webkit-linear-gradient(180deg, rgb(1 166 84) 0%, rgb(1 80 162) 100%);
}


/* gallery */

.mygallery .card {
    background-color: #f0f4f9;
    border-radius: 0.8rem;
    padding: 15px;
    border: unset;
    margin-bottom: 15px;
    transition: 0.5s;
}

.mygallery .card img {
    height: 23em;
    object-fit: cover;
}

.mygallery .card img {
    border-radius: 0.8rem;
}

.mygallery .card-text {
    opacity: 0.8;
    text-align: center;
    padding: 0.1rem 2rem;
    background-color: var(--theme-color);
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
}

.mygallery .card:hover {
    box-shadow: 0 4px 4px hsla(0, 2%, 61%, .25);
}

.gallery_single img {
    width: 100%;
    height: 17em;
    object-fit: cover;
    object-position: top;
    margin-bottom: 21px;
    box-shadow: 0 4px 4px hsla(0, 2%, 61%, .25);
}

.location_tab .nav-tabs {
    width: fit-content;
}

.bank_details li {
    margin-bottom: 10px;
}

.bg-theme.bg1 {
    border-radius: 5px;
    background: var(--theme-color);
    padding: 6px;
    color: #fff;
}

.location_box {
    max-height: 470px;
    overflow-y: auto;
    padding: 0px 8px;
}

.location_box::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
    display: none;
}

.location_box::-webkit-scrollbar-corner {
    background-color: transparent;
}

.location_box::-webkit-scrollbar-thumb {
    height: 6px;
    border: 4px solid transparent;
    background-clip: padding-box;
    border-radius: 7px;
    background-color: var(--theme-color);
    box-shadow: rgba(0, 0, 0, 0.05) -1px -1px 0px inset, rgba(0, 0, 0, 0.05) 1px 1px 0px inset;
}

.location_box::-webkit-scrollbar {
    width: 4px;
    background-color: var(--theme-color);
}

.location_box::-webkit-scrollbar-thumb {
    height: 50px;
    background: var(--secondary-color);
}

button.btn.btn-location {
    margin: 10px 5px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 6px;
    /* height: 30px; */
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .2);
    font-weight: 600;
}

button.btn.btn-location:hover {
    background: #0150a2;
    color: #fff;
}

.pagination-box ul li a {
    font-size: 15px;
    color: var(--theme-color);
}

.pagination-box ul li a.active {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}


/* news single */

.blog-entry-meta-link {
    display: inline-block;
    color: #7d879c !important;
    font-weight: normal;
}

.blog-entry-meta-divider {
    display: inline-block;
    width: 1px;
    height: 1rem;
    margin: 0 1rem;
    background-color: #d9e1e9;
    vertical-align: middle;
}

.blog-entry-meta-link {
    display: inline-block;
    color: #7d879c !important;
    font-weight: normal;
}

.fs-sm {
    font-size: 0.875rem !important;
}

.blog-entry-title>a {
    color: #373f50;
    text-decoration: none !important;
    line-height: 1.3;
}


/* money exchange */

.forex {
    position: relative;
    display: block;
    border: 1px solid rgba(255, 255, 255, .20);
    padding-top: 30px;
    margin-bottom: 30px;
    background: #fff;
}

.forex .forex_flag {
    position: relative;
    display: block;
    width: 84px;
    height: 84px;
    margin: 0 auto;
    /* border: 1px solid #eee; */
    border-radius: 50%;
    /* padding: 5px; */
}

.forex .forex_flag .forex_flag_inner {
    position: relative;
    display: block;
    overflow: hidden;
    /* border-radius: 50%; */
}

.forex .forex_flag .forex_flag_inner img {
    width: 100%;
}

.forex h3 {
    color: var(--theme-color);
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    margin: 5px 0 11px;
    font-weight: 600;
}

.forex ul {
    padding: 0;
    position: relative;
    display: block;
    margin: 0;
}

.forex ul li {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #0054a5;
    line-height: 50px;
    border-top: 1px solid #eee;
    padding: 0 15px;
}

.forex ul li:first-child {
    border-top: none;
}

.forex ul li .left {
    position: relative;
    display: flex;
    align-items: center;
}

.forex ul li .left p {
    position: relative;
    display: block;
    width: 70px;
    color: #fff;
}

.forex ul li .left p span {
    position: relative;
    display: inline-block;
}

.forex ul li .right {
    position: relative;
    display: block;
}

.forex ul li .right p {
    color: #fff;
}

.bg-theme {
    background: var(--theme-color);
    /* color: #fff; */
}

.d-flex.justify-content-between.align-items-center.breaking-news.bg-theme a {
    color: #fff;
}

.news {
    width: 160px
}

.news-scroll a {
    text-decoration: none
}

.dot {
    height: 10px;
    width: 10px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 2px !important;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block
}

@media(max-width:767px) {
    .hero .owl-nav {
        display: none;
    }
    .hero+* {
        margin-top: 0;
    }
}

.mobapp .owl-item.active.center .item {
    transform: scale(1.15);
    opacity: 1;
    color: #fff;
}

.mobapp .item {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 15px 45px -20px rgb(0 0 0 / 73%);
    transform: scale(0.9);
    opacity: 0.5;
    transition: all 0.3s;
}

.mobapp .owl-carousel .owl-stage-outer {
    /* override */
    overflow: initial;
}

.mobapp .owl-item {
    opacity: 0;
}

.mobapp .owl-item.active {
    opacity: 1;
}

@media(max-width:767px) {
    .mobapp .owl-item.active.center .item {
        transform: unset;
        opacity: 1;
        color: #fff;
    }
    .mobapp .item {
        border-radius: 5px;
        transform: scale(0.9);
        opacity: 0.5;
        transition: all 0.3s;
    }
}

.button_sticky {
    width: 30px;
    min-height: 250px;
    transition: width 0.5s, height 1s;
    position: fixed;
    right: -32px;
    z-index: 9;
    top: 150px;
}

.button_sticky:hover {
    width: 202px;
    height: 300px;
}

.button_sticky:after {
    content: "";
    clear: both;
}

.button_card {
    padding: 20px 25px;
    float: left;
    background: #fff;
    width: 172px;
    min-height: 157px;
    box-shadow: 0 0 5px #0000001c;
}

.button_card ul {
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
}

.button_card ul li {
    list-style: none;
    border-bottom: 1px solid #eee;
    padding: 9px 0;
}

.button_card ul li a {
    font-size: 15px;
    /* margin-bottom: 15px; */
    display: block;
    color: #0054a5;
    /* border-bottom: 1px solid; */
}

.button_card ul li:last-child a {
    margin-bottom: 0;
}

.button_card ul li a:hover {
    opacity: 0.9;
}

.button_card ul li a span {
    font-size: 13px;
    color: #0c569f;
    animation: blink 1s linear infinite;
    margin-left: 5px;
}

.apply_btn {
    background: -webkit-linear-gradient(180deg, rgb(1 166 84) 0%, rgb(1 80 162) 100%);
    color: #fff;
    padding: 13px 10px 15px 10px;
    font-size: 15px;
    float: left;
    border-radius: 5px 5px 0 0;
    position: relative;
    left: -104px;
    top: 104px;
    width: 158px;
    transform: rotate(-90deg);
    box-shadow: 0 0 5px #00000024;
    text-align: center;
}

.apply_btn i {
    margin-right: 5px;
    font-weight: 600;
    font-size: 13px;
}

.button_card ul li:first-child {
    padding-top: 0;
}

.button_card ul li:last-child {
    padding-bottom: 0;
    border-bottom: unset;
}

.cta {
    position: fixed;
    width: 100px;
    height: 100px;
    bottom: 10px;
    left: 18px;
    z-index: 1;
}

.cta__button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--theme-color);
    cursor: pointer;
    color: #ffffff;
    border: 0;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    z-index: 2;
    box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.3);
    transition: background-color 300ms ease;
}

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

.cta__button .lp-icon {
    font-size: 36px;
}

.cta .pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta .pulse {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    border-color: var(--theme-color);
    border-style: solid;
}

.cta .pulse-1 {
    height: 74px;
    width: 74px;
    border-width: 3px;
    -webkit-animation: 1.5s ease-out 0s infinite pulsate;
    animation: 1.5s ease-out 0s infinite pulsate;
}

.cta .pulse-2 {
    height: 84px;
    width: 84px;
    border-width: 2px;
    -webkit-animation: 1.5s ease-out 0s infinite pulsate;
    animation: 1.5s ease-out 0s infinite pulsate;
}

.cta .pulse-3 {
    height: 94px;
    width: 94px;
    border-width: 1px;
    -webkit-animation: 1.5s ease-out 0s infinite pulsate;
    animation: 1.5s ease-out 0s infinite pulsate;
}

@-webkit-keyframes pulsate {
    0% {
        transform: scale(1, 1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

.nepse {
    /* margin-top: 45px; */
    background-image: -webkit-linear-gradient(180deg, rgb(1 166 84) 0%, rgb(1 80 162) 100%);
    color: #fff;
    border: 0;
    height: 100%;
}

.bg-soft-success {
    background-color: #ccf5e7!important;
}

.bg-soft-danger {
    background-color: #ffd6e0!important;
}

.btn-head {
    background: -webkit-linear-gradient(180deg, rgb(1 166 84) 0%, rgb(1 80 162) 100%);
}

.financenotice::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
    display: none;
}

.financenotice::-webkit-scrollbar-corner {
    background-color: transparent;
}

.financenotice::-webkit-scrollbar-thumb {
    height: 6px;
    border: 4px solid transparent;
    background-clip: padding-box;
    border-radius: 7px;
    background-color: var(--theme-color);
    box-shadow: rgba(0, 0, 0, 0.05) -1px -1px 0px inset, rgba(0, 0, 0, 0.05) 1px 1px 0px inset;
}

.financenotice::-webkit-scrollbar {
    width: 4px;
    background-color: var(--theme-color);
}

.financenotice::-webkit-scrollbar-thumb {
    height: 50px;
    background: var(--secondary-color);
}

a.btn.btn-xs.btn-social.btn-icon:hover {
    color: var(--theme-color);
}

@media(max-width:767px) {
    #topbar .social-links i {
        display: block;
        align-items: center;
        text-align: center;
        padding-bottom: 9px;
    }
}


/* contact us */


/* contact us */

.spacing-7 {
    padding-top: 60px !important;
    padding-right: 65px !important;
    padding-bottom: 50px !important;
    padding-left: 50px !important;
}

.bgcolor {
    background: -webkit-linear-gradient(180deg, rgb(1 166 84) 0%, rgb(1 80 162) 100%);
}

.form-control {
    font-size: 13px;
    padding: 9px;
}