* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

label span {
    color: red;
}

@font-face {
    font-family: 'Boxicons';
    src: url('/assets/css/fonts/boxicons.eot');
    /* IE9 Compat Modes */
    src: url('/assets/css/fonts/boxicons.ttf') format('embedded-opentype'),
        /* IE6-IE8 */
        url('/assets/css/fonts/boxicons.woff') format('woff'),
        /* Modern Browsers */
        url('/assets/css/fonts/boxicons.woff2') format('truetype');
    /* Safari, Android, iOS */
    font-weight: normal;
    font-style: normal;
}

.icon {
    font-family: 'Boxicons' !important;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
}

.form-control {
    border-radius: 2px !important;
}

.back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--bs-primary-2);
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
}

.web-heading {
    margin-bottom: 2rem;
    text-align: center;
}

.web-heading h3 {
    font-weight: 600;
}

.web-heading h3 span {
    color: var(--bs-main);
}

.web-heading p {
    color: var(--bs-secondary);
}

/* app-breadcrumb */
.app-breadcrumb {
    margin: 2rem 0;
}

.app-breadcrumb nav {
    display: flex;
    justify-content: center;
}

.app-breadcrumb .breadcrumb {
    margin-bottom: 0;
}

.app-breadcrumb .breadcrumb .breadcrumb-item a:hover {
    color: var(--bs-primary-1);
}

.app-breadcrumb .breadcrumb .breadcrumb-item {
    font-weight: 500;
    text-transform: capitalize;
}

.app-breadcrumb .breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: var(--bs-primary-2) !important;
}

.app-breadcrumb .breadcrumb .breadcrumb-item.active {
    color: var(--bs-primary-1);
}

/* end */
/* app-navbar */
.app-navbar {
    background-color: var(--bs-white);
    z-index: 1000;
    top: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    transition: 0.5s all ease-in-out;
    position: relative;
}

.app-navbar.scrolled {
    position: sticky;
    top: 0;
}

.app-navbar .navbar .navbar-brand img {
    height: 4rem;
}

.app-navbar .navbar .nav-item .nav-link {
    margin: auto .75rem;
    font-weight: 500;
    color: var(--bs-black) !important;
    font-size: 14px;
    text-align: start;
}

.app-navbar .navbar .nav-item .nav-link:hover {
    color: var(--bs-primary-1) !important;
}

.app-navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
    border-style: none;
    border-color: inherit;
    border-width: medium;
    content: "\f078";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 900;
    margin-left: 4px;
    transition: transform 0.2s;
    vertical-align: 0;
}

.app-navbar .dropdown .dropdown-toggle.show::after {
    transform: rotate(180deg);
}

.app-navbar .dropdown .dropdown-toggle.show {
    color: var(--bs-primary-1) !important;
}

.app-navbar .navbar .contact-us .nav-link {
    background-color: var(--bs-primary-1);
    color: var(--bs-white);
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
}

.app-navbar .navbar .navbar-nav .dropdown {
    position: unset;
}

.app-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
    border: 0;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
    width: 60%;
    border-radius: 0;
    background-color: var(--bs-white);
    top: 100%;
    left: 30%;
    margin-top: 0;
    animation: animdropdown 0.4s ease-in-out 0s 1 normal forwards;
}

.app-navbar .navbar .navbar-expand-lg .navbar-nav .dropdown-menu {
    border: none;
    border-radius: 0 !important;
    box-shadow: var(--bs-box-shadow-sm);
}

.app-navbar .navbar .navbar-nav .dropdown-menu .sub-menu .nav-pills {
    background: #fff;
    z-index: 1;
    border-radius: 10px;
    width: 620px;
}

.app-navbar .navbar .navbar-nav .dropdown-menu .sub-menu .nav-pills .nav-link.active {
    background-color: rgba(0, 168, 93, 0.1) !important;
    color: var(--bs-primary-1) !important;
    box-shadow: var(--bs-box-shadow-sm);
}

.app-navbar .navbar .navbar-nav .dropdown-menu .sub-menu .nav-pills .nav-link img {
    height: 2rem;
    margin-right: 5px;
}

.app-navbar .navbar .dropdown-menu .sub-menu .nav-pills .nav-link {
    margin: .5rem 0;
    padding: 12px;
}

.app-navbar .navbar .navbar-nav .nav-item .dropdown-menu .sub-menu .tab-content .card {
    border: 0;
    box-shadow: var(--bs-box-shadow-lg);
    width: 100%;
}

.app-navbar .navbar .navbar-nav .nav-item .dropdown-menu .sub-menu .tab-content .card .card-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.app-navbar .navbar .navbar-nav .nav-item .dropdown-menu .sub-menu .tab-content .card .card-body ul li .card-title {
    font-size: 14px;
}

.app-navbar .navbar .navbar-nav .nav-item .dropdown-menu .sub-menu .tab-content p {
    color: var(--bs-secondary);
}

.app-navbar .navbar .navbar-nav .nav-item .dropdown-menu .sub-menu .tab-content .card .card-body ul .card-text {
    font-size: 12px;
}

.app-navbar .navbar .navbar-nav .nav-item .dropdown-menu .sub-menu .tab-content .card .card-body ul a {
    color: var(--bs-primary-1);
    font-size: 14px;
    font-weight: 600;
}

/* end */

/* hero-section */
.hero-section {
    padding: 3rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    font-weight: 700;
    line-height: 1.2;
    font-size: 3rem;
    letter-spacing: 1.3px;
}

.hero-section h1 span {
    color: var(--bs-main);
}

.hero-section p {
    margin: 1rem 0;
    color: var(--bs-secondary);
}

.hero-section .btn {
    padding: 10px 30px;
    background-color: var(--bs-primary-1) !important;
    color: var(--bs-white);
    margin: 1rem 0;
    border-radius: 2px;
}

.hero-section .btn:hover {
    color: var(--bs-white);
}

.counter-section {
    background-color: var(--bs-white);
    padding: 2rem 0;
}

.counter-section ul {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    list-style: none;
    gap: 1rem;
}

.counter-section .card {
    border: 0;
    background-color: transparent;
    border-radius: var(--bs-border-radius-lg);
}

.counter-section ul li p {
    margin: 0;
    color: var(--bs-secondary);
}

.counter-section ul li h5 {
    font-weight: 600;

}

.counter-section .count-left-border {
    border-left: 2px dashed var(--bs-secondary) !important;
}

/* end */

/* product */
.api-solution {
    padding: 3rem 0;
}

.api-solution .card {
    border: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: var(--bs-box-shadow-sm);
}

.api-solution .card .card-body img {
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: var(--bs-border-radius-lg);
}

.api-solution .card .card-body .card-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.4;
    text-transform: capitalize;
}

.api-solution .card .card-body .card-text {
    color: var(--bs-secondary);
}

.api-solution .card:hover {
    background-color: var(--bs-white) !important;
    transform: scale(1.01);
}

/* developer-portal */
.developer-portal {
    padding: 3rem 0;
}

.developer-portal h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
}

.developer-portal p {
    color: var(--bs-secondary);
    margin: 1rem 0 2rem 0;
}

.developer-portal .btn-1 {
    color: var(--bs-white);
    background-color: var(--bs-main);
    border-radius: 2px;
    text-decoration: none;
    padding: 10px 30px;

}

.developer-portal .btn-2 {
    color: var(--bs-white);
    background-color: var(--bs-primary-1);
    border-radius: 2px;
    padding: 10px 30px;
    text-decoration: none;
}

.developer-portal .code-wrapper {
    position: relative;
}

.developer-portal .code-wrapper .card {
    position: absolute;
    top: 32px;
    background-color: #1B2A3E;
    border: 0;
    right: 155px;
    height: 290px;
}

.developer-portal .btn:hover {
    background-color: var(--bs-primary-1);
    color: var(--bs-white);
}

/* product pages */
.product-hero {
    padding: 3rem 0;
}
.product-hero h1{
    font-weight: 600;
}
.product-hero p{
    color: var(--bs-secondary);
}

.product-home {
    padding: 3rem 0;
    background-color: var(--bs-primary-subtle);
}

.product-home h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-home h1 span {
    color: var(--bs-main);
}

.product-home p {
    color: var(--bs-secondary);
    margin-bottom: 1.5rem;
}

.product-home a {
    background-color: var(--bs-primary-1);
    cursor: pointer;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 2px;
    color: var(--bs-white);
}

.product-card {
    padding: 3rem 0;
}

.product-card .card {
    border: 0;
    box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.12);
    width: 100%;

}

.product-card .card .card-body {
    text-align: center;
    display: flex;
    padding: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-card .card .card-body p {
    color: var(--bs-secondary);
    font-size: 14px;
}

.product-card .card .card-body h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0;
}

.product-card .card .card-body img {
    height: 5rem;
}

.credit-card .card .card-body {
    padding: 1rem !important;
}

/* how-we-help */
.how-we-help {
    padding: 3rem 0;
}

.how-we-help .card {
    border: 0;
    width: 100%;
}

.how-we-help .card .card-body img {
    height: 4rem;
}

.how-we-help .card .card-body .card-title {
    margin: 1rem 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.how-we-help .card .card-body .card-text {
    color: var(--bs-secondary);
    line-height: 1.7;
}

/* our-features */
.our-features {
    padding: 3rem 0;
}

.our-features .card {
    border: 0;
    box-shadow: var(--bs-box-shadow-sm);
    height: 100%;

}

.our-features .card .card-body {
    padding: 1.5rem;
}

.our-features .card .card-body ul {
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.our-features .card .card-body ul li img {
    height: 3rem;
}

.recon .card .card-body ul li img {
    height: 2rem !important;
}

.our-features .card .card-body ul li h6 {
    font-weight: 600;
}

.our-features .card .card-body ul li p {
    color: var(--bs-secondary);
    margin: 0;
}

.core-features {
    padding: 3rem 0;
}

.core-features h3 {
    font-weight: 600;
    margin: 1rem 0;
}

.core-features .web-heading p {
    color: var(--bs-secondary);
}

.core-features .nav .nav-link {
    color: var(--bs-primary-1);
    text-align: start;
    font-weight: 5 00;
    padding: 12px;
}

.core-features .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: var(--bs-primary-1);
}

.core-features .tab-content {
    width: 100%;
    padding: 20px;
    background-color: var(--bs-white);
    box-shadow: var(--bs-box-shadow-sm);
}

.core-features .tab-content .card {
    border: 0;
}

.core-features .tab-content .card .card-text {
    color: var(--bs-secondary);
}

.why-us {
    margin: 3rem 0;
}

.key-feature {
    padding: 3rem 0;
}

.key-feature .card {
    border: 0;
    box-shadow: var(--bs-box-shadow-sm);
    border-radius: 10px;
    width: 100%;
}

.key-feature .card .card-body ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0 20px;
    margin: 0;
    justify-content: center;
}

.key-feature .card .card-body {
    padding: 2rem;
    text-align: center;
}

.key-feature .card .card-body h6 {
    font-weight: 600;
    margin: 1rem 0;
}

.key-feature .card .card-body img {
    height: 4rem;
}


/* about us */
.about-section {
    position: relative;
    padding: 10rem 0;
    background: url(../img/about-us.png);
    background-position: center -180px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity (0.5) as needed */
    z-index: 1;
}

.about-section * {
    position: relative;
    z-index: 2;
}


.about-us {
    padding: 110px 0 110px;
    background-image: url(../img/about-hero.jpg);
    position: relative;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-us .app-breadcrumb,
.about-section .app-breadcrumb {
    display: flex;
    justify-content: center;
}

.about-us .about-hero,
.about-section .about-hero {
    opacity: 1 !important;
}

.about-us .about-hero h1,
.about-section .about-hero h1 {
    color: var(--bs-white);
    font-weight: 700;
}

.about-us .about-hero .about-bg img:nth-child(1) {
    top: 0;
    position: absolute;
    left: 0;
}

.about-us .about-hero .about-bg img:nth-child(2) {
    top: 0;
    position: absolute;
    right: 0;
}

.about-us::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #03091b;
    opacity: .85;
    z-index: -1;
}

.about-us-page {
    margin: 3rem 0;
}

.about-us-page .card-title {
    font-weight: 700;
}

.about-us-page .card-text {
    color: var(--bs-secondary);
}

.why-we-best {
    background: url(../img/11.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #707d9e;
    height: 570px;
    margin-bottom: 270px;
}

.why-we-best .overlay {
    background: rgba(0, 26, 87, 0.9);
    padding: 95px 0 0 0;
    height: 570px;
}

.theme-title-one {
    position: relative;
    text-align: center;
}

.why-we-best .theme-title-one h2 {
    color: var(--bs-white);
    font-weight: 700;
}

.why-we-best .theme-title-one p {
    color: var(--bs-white);
}

.why-we-best .wrapper {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
    margin: 55px 0 0 0;
}

.why-we-best .wrapper .img-box {
    background: url(../img/16.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 0 5px 5px 0;
    position: relative;
    height: 500px;
}

.why-we-best .wrapper .best-list-item {
    background: #fff;
    padding: 65px 20px 38px 50px;
    border-radius: 5px 0 0 5px;
    margin: 0;
}

.why-we-best .wrapper .best-list-item li {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

.why-we-best .wrapper .best-list-item li img {
    height: 4rem;
}

.why-we-best .wrapper .best-list-item li p {
    color: var(--bs-secondary);
}

.why-we-best .wrapper .best-list-item li .icon {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 60px;
}

.why-we-best .wrapper .best-list-item li h5 {
    margin-bottom: 10px;
}

.models-for-bank {
    padding: 3rem 0;
}

.models-for-bank .card {
    box-shadow: var(--bs-box-shadow-sm);
    border: 0;
}

.models-for-bank .card .card-body ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.models-for-bank .card .card-body li {
    font-weight: 600;
}

.models-for-bank .right-img img {
    height: 350px;
    width: 350px;
}

.product-type {
    padding: 3rem 0;
}

.product-type .card {
    border: 0;
    border-radius: 0;
    width: 100%;
    background-color: var(--bs-primary-1);
}

.product-type .card .card-body {
    padding: 2rem;
}

.product-type .card .card-body, .card-title .card-text {
    color: var(--bs-white);
}

.product-type .card .card-body .card-title {
    font-weight: 600;
    font-size: 1.3rem;
}

.product-type .card .card-body .card-text {
    font-size: 14px;
    margin: 1.5rem 0;
}

.digital-account {
    margin: 3rem 0;
}

.digital-account h5 {
    font-weight: 600;
    margin: 1rem 0;
}

.digital-account p {
    color: var(--bs-secondary);
}

.digital-account img {
    width: 350px;
}

.payout-platform {
    padding: 2rem 0;
}

.payout-platform .card {
    border: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.payout-platform .card:hover {
    background-color: var(--bs-white) !important;
    box-shadow: 0 6px 16px rgba(52, 105, 203, 0.16);
    transform: scale(1.01);
}

.payout-platform .card .card-body {
    padding: 2rem;
}

.payout-platform .card .card-body img {
    height: 3.5rem;
    margin-bottom: 1rem;
}

.payout-platform .card .card-body .card-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.4;
    text-transform: capitalize;
}

.payout-platform .card .card-body .card-text {
    color: var(--bs-secondary);
}

.modules {
    margin: 3rem 0;
}

.modules p {
    color: var(--bs-secondary);
    margin: 1rem 0;
}

.modules-heading {
    background-color: var(--bs-primary-1);
    text-align: center;
    padding: 10px;
    border-radius: 2px;
}

.modules .modules-heading h6 {
    color: var(--bs-white);
    margin: 0;
}

/* contact-us */
.contact-us-form {
    padding: 2rem 0;
    background-color: var(--bs-light);
}

.contact-us-form .card {
    border: 0;
    width: 100%;
    border-radius: 0;
}

.contact-us-form .card.contact-us-info {
    background: radial-gradient(rgb(55 50 114 / 90%), rgb(55 50 114 / 90%)), url('https://images.unsplash.com/photo-1560264280-88b68371db39?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-us-form .card .card-body {
    padding: 3rem;
}

.contact-us-form .card .card-body .card-title {
    margin-bottom: 0.5rem;
    color: var(--bs-white);
}

.contact-us-form .card .card-body .card-text {
    color: var(--bs-white);
}

.contact-us-form .card.contact-us-info .card-body .get-address {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-us-form .card.contact-us-info .card-body .get-address li {
    margin-top: 2rem;
}

.contact-us-form .card.contact-us-info .card-body .get-address li p {
    margin-bottom: 0.25rem;
    text-transform: capitalize;
    color: var(--bs-white);
}

.contact-us-form .card.contact-us-info .card-body .get-address li h6 {
    line-height: 1.4;
    margin-bottom: 0;
    color: var(--bs-white);
}

.contact-us-form .card.contact-us-info .card-body .get-address li a {
    text-decoration: none;
    color: var(--bs-white);
}

.contact-us-form .card.contact-us-info .card-body .get-address li {
    display: flex;
    gap: 1rem;
}

.contact-us-form .card.contact-us-info .card-body .get-address li img {
    height: 3.4rem;
    border-radius: var(--bs-border-radius-lg);
}

.contact-us-form .card .card-body button {
    border-radius: 2px;
    background-color: var(--bs-main);
    border: 2px solid var(--bs-main);
    color: white;
}

.contact-us-form .card .card-body button:hover {
    border: 2px solid var(--bs-main);
    background-color: transparent;
    color: var(--bs-main);
}

.privacy-policy {
    margin: 3rem 0;
}

.privacy-policy h6 {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.privacy-policy p {
    color: var(--bs-secondary);
    font-size: 14px;
}

.terms-conditions {
    margin: 3rem 0;
}

.terms-conditions h6 {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 1.2rem 0;
}

.terms-conditions p {
    color: var(--bs-secondary);
    font-size: 14px;
}

.career-about {
    margin: 3rem 0;
}

.career-about h1 {
    color: var(--bs-primary-1);
    font-weight: 600;
}

.career-about p {
    color: var(--bs-secondary);
}

.current-job {
    padding: 3rem 0;
}

.current-job .accordion-button {
    padding: 28px;
    font-weight: 600;
    font-size: 20px;
    background-color: transparent !important;
    border-bottom: 0 !important;
    border-radius: 0 !important;
}

.current-job .accordion-item {
    border-radius: 0 !important;
    border-left: 3px solid var(--bs-primary-1);
}

.current-job .accordion-button:focus {
    box-shadow: none !important;
}

.current-job .web-heading h6 {
    color: var(--bs-primary-1);
    font-weight: 600;
}

.current-job .accordion-body ol li {
    margin: 1rem 0;
    color: var(--bs-secondary)
}

.current-job .accordion-body p {
    color: var(--bs-secondary);
}

.current-job .accordion-body strong {
    color: var(--bs-dark);
}

.current-job .accordion-body .modal-btn {
    background-color: var(--bs-primary-1);
    color: var(--bs-white);
    border-radius: 2px;
}

.current-job .accordion-body .modal-btn:active {
    background-color: var(--bs-primary-1);
    color: var(--bs-white);
    border-color: var(--bs-primary-1);
}

/* footer */
footer .footer-top {
    padding: 2rem 0;
    background-color: var(--bs-light);
}

footer img {
    height: 5rem;
}

footer p {
    margin: .5rem 0;
    color: var(--bs-secondary);
    font-size: 14px;
}

footer h4 {
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: capitalize;
    margin-bottom: .5rem;
    color: var(--bs-dark);
}

footer ul {
    padding: 0;
    list-style: none;
}

footer ul li {
    margin: .5rem 0;
}

footer ul li a {
    color: var(--bs-dark);
    text-decoration: none;
    text-transform: capitalize;
    font-size: 14px;
    transition: .3s all;
}

footer ul li a:hover {
    font-weight: 500;
    margin-left: 10px;
}

footer .footer-bottom {
    background-color: var(--bs-primary-2);
}

footer .footer-bottom ul {
    margin: 0;
    padding: 0;
    justify-content: end;
    list-style: none;
    display: flex;
    gap: 12px;
}

footer .footer-bottom ul li a {
    font-size: 1rem;
}

footer .footer-bottom ul li a i {
    color: var(--bs-white);
}

footer .footer-bottom ul li a:hover {
    margin: 0;
}

footer .footer-bottom ul .sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--bs-primary-1);
}

/* developer-portal */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100%;
    width: 300px;
    padding: 10px 0px;
    background: white;
    transition: all 0.2s ease;
    z-index: 1000;
    /* box-shadow: 5px 0 5px -5px rgba(0, 0, 0, 0.5); */
}

.sidebar li {
    height: 30px;
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.sidebar header .image,
.sidebar .icon {
    min-width: 34px;
    border-radius: 6px;
}

.sidebar .icon {
    min-width: 34px;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sidebar .text,
.sidebar .icon {
    color: var(--bs-dark);
    transition: all 0.2s ease;
}

.sidebar .text {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    margin: 0 1rem;
    opacity: 1;
}

.app-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: var(--bs-white);
    width: 100%;
    border-bottom: 1px solid var(--bs-border-color);
}

.app-top-bar i {
    display: none;
}
.app-top-bar .btn{
    color: var(--bs-white);
    background-color: var(--bs-primary-1);
    border-color: var(--bs-primary-1);
    padding: 5px 30px;
    border-radius: 2px !important;
    -webkit-border-radius: 2px !important;
    -moz-border-radius: 2px !important;
    -ms-border-radius: 2px !important;
    -o-border-radius: 2px !important;
}
.app-top-bar .btn:hover,
.app-top-bar .btn:focus,
.app-top-bar .btn:active{
    color: var(--bs-white);
    background-color: var(--bs-primary-1);
    border-color: var(--bs-primary-1);
    padding: 5px 30px;
    border-radius: 2px !important;
    -webkit-border-radius: 2px !important;
    -moz-border-radius: 2px !important;
    -ms-border-radius: 2px !important;
    -o-border-radius: 2px !important;   
}

.sidebar li.search-box {
    border-radius: 6px;
    background-color: #F6F5FF;
    cursor: pointer;
    margin: 80px 5px 10px 5px;
    padding: 20px 10px;
    transition: all 0.3s ease;
}

.sidebar li.search-box input {
    height: 100%;
    width: 100%;
    padding: 20px 10px;
    outline: none;
    border: none;
    background-color: #F6F5FF;
    color: var(--text-color);
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar .menu {
    margin-top: 40px;
}

.sidebar li a {
    list-style: none;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
    width: 100%;
    margin-right: .5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.sidebar li a:hover{
    background-color: var(--bs-light);
}

.sidebar li a .badge {
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 11px !important;
}

.toggle-switch .switch {
    position: relative;
    height: 22px;
    width: 40px;
    border-radius: 25px;
    background-color: #DDD;
    transition: all 0.3s ease;
}

.switch::before {
    content: '';
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    background-color: #FFF;
    transition: all 0.2s ease;
}

.sidebar.close~.page-wrapper {
    margin-left: 300px;
}

.sidebar .menu .menu-links label {
    padding: .5rem 1rem;
    width: 100%;
    color: var(--bs-secondary);
    color: var(--bs-primary-1);
    font-weight: 500;
    font-size: 14px;
    /* text-transform: uppercase; */
    margin: .5rem 0 0 0;
}

.sidebar .menu .menu-item {
    background-color: var(--bs-light);
    margin: .5rem 0;
    color: var(--bs-primary-1);
    font-size: 12px;
}

.sidebar .menu .menu-item .menu-icon {
    transition: transform 0.3s;
}

.sidebar .menu .menu-item .menu-icon.rotate {
    transform: rotate(90deg);
}

.sidebar .menu .menu-item .menu-title {
    cursor: pointer;
    padding: .5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.sidebar .menu .menu-item .submenu {
    background-color: var(--bs-white);
}

.sidebar .menu .menu-item .submenu li {
    list-style: none;
}

.sidebar .menu .menu-item .submenu li a {
    margin-top: 5px;
    display: flex;
    align-items: center;
    height: 30px;
    justify-content: space-between;
    width: 100%;
    margin-right: .5rem;
    text-decoration: none;
}

.sidebar .menu .menu-item .submenu li a .badge {
    font-weight: 500 !important;
    font-size: 11px !important;
}

.page-wrapper {
    height: 100%;
    margin-top: 65px;
    margin-left: 300px;
}

.page-wrapper .home-section {
    padding: 2rem 1rem;
}

.page-wrapper .home-section .right-wrapper {
    position: sticky;
    top: 0px;
}

.page-wrapper .home-section .right-wrapper .nav-pills .nav-item .nav-link {
    color: var(--bs-dark);
}

.page-wrapper .home-section .right-wrapper .nav-pills .nav-item .nav-link.active {
    background-color: var(--bs-white) !important;
    color: var(--bs-primary-1);
    border-radius: 0 !important;
    font-weight: 600;
}

.page-wrapper .home-section .right-wrapper .nav-pills {
    /* background-color: var(--bs-light) !important; */
    margin: 0;
}

.page-wrapper .home-section .right-wrapper .tab-content .tab-pane .card {
    border: 0;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.page-wrapper .home-section .right-wrapper .tab-content .tab-pane .card .card-header {
    color: var(--bs-white);
    font-size: 14px;
    border: 0;
}

.page-wrapper .home-section .right-wrapper .tab-content .tab-pane .card .card-footer {
    cursor: pointer;
}

.page-wrapper .home-section .right-wrapper .tab-content .tab-pane .card .card-footer span {
    font-size: 14px !important;
}

.page-wrapper .home-section .right-wrapper .dropdown .btn:hover {
    color: var(--bs-dark) !important;
}

.page-wrapper .home-section .right-wrapper .dropdown .dropdown-toggle .dropdown-menu .dropdown-item:active {
    background-color: var(--bs-primary-1) !important;
}

.page-wrapper .home-section p span {
    font-size: 12px !important;
    color: var(--bs-secondary);
}
pre{
    margin: 0 !important;
}
.page-wrapper .home-section .badge {
    font-weight: 500 !important;
    font-size: 10px !important;
}

.page-wrapper .home-section .left-wrapper h6 {
    font-size: 14px;
    color: var(--bs-secondary);
}
.page-wrapper .home-section .left-wrapper h2{
    font-weight: 600;
}

.page-wrapper .home-section .left-wrapper h3 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
}

.page-wrapper .home-section .left-wrapper table {
    border-radius: 2px;
}

.page-wrapper .home-section .left-wrapper table thead tr th {
    font-weight: 500;
    white-space: nowrap;
    background-color: var(--bs-light);
    font-size: 12px;
}

.page-wrapper .home-section .left-wrapper table tbody tr td {
    color: var(--bs-secondary);
    font-size: 12px;
    white-space: nowrap;
}

.page-wrapper .home-section .left-wrapper .nav-pills {
    background-color: var(--bs-light) !important;
    margin: 0;
}

.page-wrapper .home-section .left-wrapper .nav-pills .nav-item .nav-link {
    color: var(--bs-dark);
}

.page-wrapper .home-section .left-wrapper .nav-pills .nav-item .nav-link.active {
    background-color: var(--bs-white) !important;
    color: var(--bs-primary-1) !important;
    border-radius: 0 !important;
    font-weight: 600;
}

.page-wrapper .home-section .left-wrapper .tab-content .tab-pane .card {
    border: 0;
    background-color: var(--bs-light);
}

.page-wrapper .home-section .left-wrapper .card {
    border: 0;
    box-shadow: var(--bs-box-shadow-sm);
}

.page-wrapper .home-section .left-wrapper .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bs-primary-1);
}

.page-wrapper .home-section .left-wrapper .card-text {
    color: var(--bs-secondary);
    font-size: 14px;
}

.page-wrapper .home-section .left-wrapper ol li {
    font-size: 14px;
    color: var(--bs-secondary);
    margin: 1rem 0;
}

.page-wrapper .home-section .left-wrapper .card .list-group {
    border: 1px solid var(--bs-secondary);
    border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

.page-wrapper .home-section .left-wrapper .card .list-group .list-group-item p {
    color: var(--bs-secondary);
    margin: 0;
    font-size: 12px;
}

.page-wrapper .home-section .left-wrapper .accordion .accordion-item .accordion-button {
    font-weight: 600;
}

.page-wrapper .home-section .left-wrapper .accordion .accordion-item .accordion-button span {
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 10px;
    -webkit-box-shadow: var(--box-shadow-status);
    box-shadow: var(--box-shadow-status);
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #00A85D;
}

.page-wrapper .home-section .left-wrapper .dropdown {
    background-color: transparent !important;
}

.page-wrapper .home-section .right-wrapper .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    border: 0 !important;
}

.page-wrapper .home-section .right-wrapper .dropdown-toggle::after {
    border-style: none;
    border-color: inherit;
    border-width: medium;
    content: "\f142";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    margin-left: 4px;
    transition: transform 0.2s;
    vertical-align: 0;
}

.page-wrapper .home-section .right-wrapper .response-card .dropdown-toggle::after {
    content: "\f078";
}

.page-wrapper .home-section .right-wrapper .dropdown-toggle:hover::after {
    color: var(--bs-primary-1);
}

.page-wrapper .home-section .right-wrapper .card .card-header h5 {
    color: var(--bs-dark);
    font-size: 1rem;
    margin: 0;
}

.page-wrapper .home-section .right-wrapper .dropdown-menu {
    border: 0;
}

.page-wrapper .home-section .right-wrapper .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    font-size: 14px !important;
    font-weight: 600;
}

.page-wrapper .home-section .right-wrapper .card .dropdown-toggle {
    cursor: pointer;
}

.page-wrapper .home-section .right-wrapper .dropdown-menu li p {
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 10px;
    -webkit-box-shadow: var(--box-shadow-status);
    box-shadow: var(--box-shadow-status);
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #00A85D;
}

.page-wrapper .home-section .right-wrapper .response-card .card .card-body {
    text-align: center;
}

.page-wrapper .home-section .right-wrapper .response-card .card .card-body p {
    font-size: 14px;
    color: var(--bs-secondary);
}

.page-wrapper .home-section .right-wrapper .response-card .card .card-body .status-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-wrapper .home-section .right-wrapper .response-card .card .card-body .status-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-wrapper .home-section .right-wrapper .response-card .card .card-body button span {
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 10px;
    -webkit-box-shadow: var(--box-shadow-status);
    box-shadow: var(--box-shadow-status);
    height: 10px;
    display: block;
    width: 10px;
    margin: 0 5px;
    background-color: #00A85D;
}

.code-container {
    position: relative;
}

.copy-icon {
    position: absolute;
    top: 0px;
    right: 10px;
    display: none;
    cursor: pointer;
    color: var(--bs-secondary);
}

.code-container:hover .copy-icon {
    display: block;
}

.copy-icon:hover {
    color: var(--bs-dark);
}

/* overview product */
.overview-product {
    padding: 2rem 0;
    background-color: var(--bs-light);
}

.overview-product .main-img-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.overview-product .main-img-card .hover-card {
    flex: 1 1 calc(50% - 10px);
    height: 250px;
    border: 1px solid var(--bs-white);
    overflow: hidden;
    transition: 0.5s;
    position: relative;
    box-sizing: border-box;
    margin: 5px;
}

.overview-product .main-img-card .hover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-product .main-img-card .hover-card:hover {
    width: 50%;
}

.overview-product .main-img-card .hover-card:hover img:nth-child(1) {
    opacity: 0;
}

.overview-product .main-img-card .hover-card img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.overview-product .main-img-card .hover-card:hover img:nth-child(2) {
    opacity: 1;
}

.overview-product .main-img-card .hover-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
}

.overview-product .main-img-card .hover-card .card-heading-top,
.overview-product .main-img-card .hover-card .overlay-text-bottom {
    position: absolute;
    width: 100%;
    color: var(--bs-white);
    z-index: 100;
    transition: opacity 0.5s;
    padding: 1rem;
}

.overview-product .main-img-card .hover-card .card-heading-top {
    bottom: 0;
    opacity: 1;
}

.overview-product .main-img-card .hover-card .overlay-text-bottom {
    bottom: 0;
    opacity: 0;
}

.overview-product .main-img-card .hover-card:hover .card-heading-top {
    opacity: 0;
}

.overview-product .main-img-card .hover-card:hover .overlay-text-bottom {
    opacity: 1;
}

.overview-product .main-img-card .hover-card .overlay-text-bottom h5 {
    margin-bottom: 1rem;
}

.overview-product .main-img-card .hover-card .overlay-text-bottom p {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.overview-product .main-img-card .hover-card .overlay-text-bottom a {
    text-decoration: none;
    color: var(--bs-warning);
    font-weight: 500;
}

.service-another {
    padding: 3rem 0;
    position: relative;
}

.section-title span {
    line-height: 0;
    text-transform: capitalize;
    padding-bottom: 5px;
    font-weight: 600;
    color: var(--bs-primary-2);
}

.service-another .section-title h2 {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.service-another-card {
    margin-bottom: 30px;
    padding: 40px 30px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 5px;
}

.service-another-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background-image: linear-gradient(to bottom, #00AFEF, #00A973);
    opacity: 0;
    transition: 0.7s;
    border-radius: 5px;
}

.service-another-card a {
    display: block;
}

.service-another-card a .service-icon {
    width: 75px;
    height: 75px;
    line-height: 75px;
    border-radius: 50px;
    font-size: 30px;
    text-align: center;
    display: inline-block;
    color: #ffffff;
    margin-bottom: 20px;
}

.flaticon-research:before {
    content: "\f121";
}

.service-another-card h3 {
    margin-bottom: 15px;
}

.service-another-card h3 a {
    display: block;
    color: #2a284f;
    text-decoration: none;
}

.service-another-card p {
    margin-bottom: 15px;
}

.service-another-card .learn-btn {
    color: var(--bs-primary-2);
    font-weight: 600;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.service-another-card:hover::before {
    height: 100%;
    opacity: 1;
}

.service-another-card:hover a .service-icon {
    background-color: #ffffff;
    color: var(--bs-primary-2);
}

.service-another-card:hover h3 a {
    color: #ffffff;
}

.service-another-card:hover p {
    color: #ffffff;
}

.service-another-card:hover .learn-btn {
    color: #ffffff;
}

.service-another-card:hover .learn-btn i {
    color: #ffffff;
    border-color: #ffffff;
    animation: rotated360 9s infinite linear;
}

.service-another-shape .shape-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    animation: animationFramesOne 15s linear infinite;
}

.service-another-shape .shape-2 {
    position: absolute;
    top: 50%;
    left: 3%;
    animation: rotated360 6s infinite linear;
}

.service-another-shape .shape-3 {
    position: absolute;
    top: 80%;
    left: 1%;
    animation: running-in 16s infinite linear;
}

.service-another-shape .shape-4 {
    position: absolute;
    top: 13%;
    right: 5%;
    animation: running-in 10s infinite linear;
}

.service-another-shape .shape-5 {
    position: absolute;
    top: 35%;
    right: 3%;
    animation: running-in 16s infinite linear;
}

.service-another-shape .shape-6 {
    position: absolute;
    top: 55%;
    right: 1%;
    animation: rotated360 6s infinite linear;
}

.service-icon-bg {
    background-color: #96e01e;
}

.service-icon-bg1 {
    background-color: var(--bs-primary-2);
}

.service-icon-bg2 {
    background-color: #175dbf;
}

.service-icon-bg3 {
    background-color: #11aa25;
}

.service-icon-bg4 {
    background-color: #b60db1;
}

.service-icon-bg5 {
    background-color: #f51912;
}

.service-list-content {
    margin-bottom: 30px;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.service-list-content:hover h3 {
    color: var(--bs-primary-2);
}

.service-list-content h3 {
    font-size: 22px;
    color: #2a284f;
    margin-bottom: 10px;
    transition: 0.7s;
}

.service-list-content p {
    margin-bottom: 20px;
}

.service-list-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list-content ul li {
    display: block;
    margin-bottom: 20px;
    color: #1a1b1e;
    font-size: 17px;
    font-weight: 600;
}

.service-list-content ul li:last-child {
    margin-bottom: 0;
}

.service-list-content ul li i {
    font-size: 20px;
    color: #ffffff;
    display: inline-block;
    width: 30px;
    text-align: center;
    height: 30px;
    line-height: 25px;
    background-color: #2966be;
    border-radius: 5px 10px 60px 10px;
    margin-right: 10px;
}

.work-area-two {
    background-image: url(../img/work-bg2.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 3rem 0;
}

.section-title span {
    line-height: 0;
    text-transform: capitalize;
    padding-bottom: 5px;
    font-weight: 600;
    color: #ff3900;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.4;
}

.work-item-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.work-item-list ul li {
    display: block;
    float: right;
    margin-bottom: 30px;
}

.work-item-list ul li h3 {
    color: #2a284f;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 17px;
}

.work-item-list ul li p {
    margin-bottom: 0;
    color: #6c6c6c;
}

.work-item-list-2 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.work-item-list-2 ul li {
    display: block;
    float: left;
    margin-bottom: 30px;
}

.work-item-list-2 ul li h3 {
    color: #2a284f;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 17px;
}

.work-item-list-2 ul li p {
    margin-bottom: 0;
    color: #6c6c6c;
}

.work-item-list ul li h3 span {
    margin-left: 5px;
    font-size: 18px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 50px;
    display: inline-block;
    position: relative;
}

.work-item-list ul li h3 span::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -2px;
    left: -2px;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: var(--bs-primary-2);
    border-radius: 70% 40% 70% 40%;
}

.work-item-list-2 ul li h3 span {
    margin-right: 15px;
    font-size: 18px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 50px;
    display: inline-block;
    position: relative;
}

.work-item-list-2 ul li h3 span::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -2px;
    left: -2px;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: var(--bs-primary-2);
    border-radius: 70% 40% 70% 40%;
}

.our-service-content {
    padding: 2rem 0;
    background-color: var(--bs-light);
}

.our-service-content h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.our-service-content p {
    color: var(--bs-secondary);
}

.mission-vision {
    padding: 2rem 0;
}

.mission-vision .card {
    border: 0;
    border-radius: var(--bs-border-radius-lg);
}

.mission-vision .card .card-body {
    padding: 2rem;
}

.mission-vision .card .card-body img {
    height: 4rem;
    margin-bottom: 1rem;
    border-radius: var(--bs-border-radius-lg);
}

.mission-vision .card .card-title {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.mission-vision .card .card-text {
    color: var(--bs-secondary);
}

.our-core-values {
    /* background-color: var(--bs-light); */
    /* background: linear-gradient(180deg, rgb(255, 255, 255), rgb(245, 245, 247) 200px); */
    padding: 2rem 0;

}

.our-core-values .web-heading {
    text-align: start !important;
}

.our-core-values .web-heading h1 {
    font-weight: 700;
}

.our-core-values .card {
    text-align: center;
    border-radius: var(--bs-border-radius-xl);
    border: none;
    width: 100%;
    box-shadow: var(--bs-box-shadow-sm);
}

.our-core-values .card .card-body img {
    margin-bottom: 1rem;
    height: 5rem;
}

.our-core-values .card .card-body .card-title {
    margin-bottom: 0;
}

.our-services {
    padding: 3rem 0;
}

.our-services .card {
    border: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.our-services .card .card-body {
    padding: 2rem;
}

.our-services .card .card-body a {
    text-decoration: none;
    color: var(--bs-dark);
    display: block;
}

.our-services .card .card-body img {
    height: 3.5rem;
    margin-bottom: 1rem;
    border-radius: var(--bs-border-radius-lg);
}

.our-services .card .card-body .card-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.4;
    text-transform: capitalize;
}

.our-services .card .card-body p {
    color: var(--bs-secondary);
}

.our-services h3 {
    text-align: center;
    font-weight: 700;
}

.we-are-Digiflare {
    margin: 3rem 0;
}

.we-are-Digiflare h6 {
    color: var(--bs-primary-2);
}

.we-are-Digiflare h2 {
    font-weight: 700;
    margin: 1rem 0;
}

.we-are-Digiflare p {
    color: var(--bs-secondary);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    grid-auto-flow: dense;
    gap: 6px;
    margin: 2rem 0;
}

.gallery img.four-grid-cells {
    grid-row: span 2 / auto;
    grid-column: span 2 / auto;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery img.wide-image {
    grid-column: span 2 / auto;
}

.join-our-growing-team {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 100%, rgba(0, 0, 0, 0.7) 100%), url(../img/join-us.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    background-attachment: fixed;

}

.join-our-growing-team h1 {
    font-weight: 700;
    color: var(--bs-white);
}

.join-our-growing-team p {
    color: var(--bs-white);
}

.join-our-growing-team .btn {
    background-color: var(--bs-primary-2);
    color: var(--bs-white);
}

.join-our-growing-team .btn:hover {
    background-color: var(--bs-primary-2);
    color: var(--bs-white);
}

.gallery-page .head h1 {
    font-weight: 700;
    text-align: center;
}

.gallery-page .head p {
    color: var(--bs-secondary);
}

.gallery-page {
    margin: 2rem 0;
}

.card-hover-effect-gallery {
    width: 100%;
    border-radius: var(--bs-border-radius-lg);
    overflow: hidden;
    height: 100%;
}

.card-hover-effect-gallery a {
    position: relative;
    display: block;
    color: var(--bs-white);
    transition: all 0.4s ease-in-out;
    height: 100%;
}

.card-hover-effect-gallery a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background: linear-gradient(16deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(255, 255, 255, 0) 50%);
    transition: all 0.4s ease-in-out;
    transition-delay: 0.4s;
}

.card-hover-effect-gallery a img {
    object-fit: cover;
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
}

.card-hover-effect-gallery .card-name {
    position: absolute;
    left: 0;
    z-index: 100;
    bottom: 0;
    margin: 1rem;
}

.card-hover-effect-gallery .card-name h5 {
    font-weight: 900;
    margin-bottom: 0;
    text-shadow: 0 0 28px rgba(0, 0, 0, 0.8);
    text-transform: capitalize;
    letter-spacing: 0.08rem;
}

.card-hover-effect-gallery a:hover {
    border-radius: 0;
}

.card-hover-effect-gallery a:hover img {
    transform: scale(1.1);
}

.card-hover-effect-gallery a:hover:before {
    background: linear-gradient(16deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(255, 255, 255, 0) 50%);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    padding: 8px;
    border: none;
    cursor: pointer;
    ;
    color: var(--bs-dark);
    font-weight: 500;
    background-color: transparent;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color:#fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 5px 16px;
    text-decoration: none;
    display: block;
}
.sub-dropdown,
.sub-sub-dropdown,
.sub-dropdown-content a,
.sub-sub-dropdown-content a{
    border-bottom: 1px solid #f5f5f5;
    font-weight: 500;
    font-size: 14px;
}
.sub-dropdown:hover,
.sub-sub-dropdown:hover,
.sub-dropdown-content a:hover,
.sub-sub-dropdown-content a:hover{
    color: var(--bs-primary-2);
}
.sub-sub-dropdown:last-child,
.sub-dropdown:last-child,
.sub-dropdown-content a:last-child,
.sub-sub-dropdown-content a:last-child{
    border: 0;
}

.dropdown-content span:hover {
    background-color: #f1f1f1;
}
.dropdown-content span i{
    font-size: 14px;
    color: var(--bs-dark);
}

/* Submenu styling */
.sub-dropdown {
    position: relative;
}

.sub-dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Sub-submenu styling */
.sub-sub-dropdown {
    position: relative;
    padding: 0px 10px;
}

.sub-sub-dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.sub-dropdown-content a span{
   font-size: 10px;
    color: var(--bs-primary-2);
}

/* Show the dropdown when hovering */
.dropdown:hover .dropdown-content {
    display: block;
}

.sub-dropdown:hover .sub-dropdown-content {
    display: block;
}

.sub-sub-dropdown:hover .sub-sub-dropdown-content {
    display: block;
}
.getting-started h1{
    font-size: 1.5rem;
}
.getting-started p{
    color: var(--bs-secondary);
}
.getting-started ul{
    margin: 0;
}
.getting-started ul li{
    color: var(--bs-secondary);
    margin: .5rem 0;
}
.getting-started h5{
    font-weight: 600;
}
/* admin-login */
.admin-login {
    background: url("../img/login-bg.png");
    padding: 5rem 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .admin-login .admin-logo {
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .admin-login .admin-logo img {
    height: 3rem;
    margin-bottom: 1rem;
  }
  
  .admin-login .admin-logo .card-text {
    color: var(--bs-secondary);
  }
  
  .admin-login .card {
    border: 0;
  }
  
  .admin-login .card .card-body {
    padding: 2rem;
  }
  
  .admin-login .card .card-body .btn {
    width: 100%;
  }
  .dtm-hero{
    margin: 3rem 0;
  }
  .dtm-hero h1{
    font-weight: 600;
  }
  .dtm-hero p{
    color: var(--bs-secondary);
  }
  .money-transfer{
    padding: 3rem 0;
  }
  .money-transfer p{
    color: var(--bs-secondary);
  }
  .money-transfer h5{
    font-weight: 600;
  }

  .seamless-money{
    padding: 3rem 0;
  }
  .seamless-money h3{
    font-weight: 600;
  } 
   .seamless-money p{
    color: var(--bs-secondary);
   }

   .how-aeps-work{
    margin: 3rem 0;
   }
   .how-aeps-work h3{
    text-align: center;
    margin-bottom: 1rem;
   }
   .how-aeps-work .card{
    border: 0;
    box-shadow: var(--bs-box-shadow-sm);
   }
   .how-aeps-work .card .card-body .card-text{
      color: var(--bs-secondary);
   }