 html {
            scroll-behavior: smooth;
        }

        b,
        strong {
            font-weight: 500;
        }

        body {
            background-color: #000;
            overflow-x: hidden;
        }

        /* Cancel the bg white for dark mode */
        /* body[data-theme-style="dark"].bg-white {
            background: var(--body-bg) !important;
        } */

        /* App */
        .app {
            background: var(--gray-50);
        }

        .app-container {}

        .app-overlay {
            position: fixed;
            width: 100%;
            height: 100%;
            background: var(--gray-100);
            z-index: 100;
            opacity: .5;
        }

        .app-sidebar {
            display: flex;
            flex-direction: column;
            min-width: 260px;
            max-width: 260px;
            background: var(--white);
            border-right: 2px solid var(--gray-200);
            margin-left: -262px;
            transition: margin .15s linear;
            overflow-y: auto;
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            height: 100%;
            z-index: 101;
        }


        body.app-sidebar-opened .app-sidebar {
            margin-left: 0;
        }

        [dir="rtl"] body.app-sidebar-opened .app-sidebar {
            margin-right: 0;
        }

        @media (min-width: 992px) {
            .app-sidebar {
                margin-left: 0;
            }

            [dir="rtl"] .app-sidebar {
                margin-right: 0;
            }
        }

        .app-sidebar-title {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: .5rem;
            height: 75px;
        }

        .app-sidebar-title a {
            font-size: 1.4rem;
            color: var(--gray-900);
            font-weight: 600;
        }

        .app-sidebar-title a:hover {
            text-decoration: none;
        }

        .app-sidebar-footer {
            width: 100%;
        }

        .app-sidebar-footer>a {
            width: 100%;
            padding: .75rem 1.75rem;
            border-top: 2px solid var(--gray-200);
            display: flex;
            align-items: center;
            color: var(--gray-500);
            font-size: .9rem;
            font-weight: 500;
            transition: background .3s;
        }

        .app-sidebar-footer>a:hover {
            text-decoration: none;
            background: var(--gray-200);
            color: var(--gray-600);
        }

        .app-sidebar-links-wrapper {
            overflow-y: scroll;
            width: calc(100% - 6px);
            padding-bottom: .25rem;
            scrollbar-width: none;
        }

        .app-sidebar-links-wrapper:hover {
            width: 100%;
            scrollbar-width: initial;
        }

        .app-sidebar-links-wrapper::-webkit-scrollbar {
            background-color: transparent;
            width: 0;
        }

        .app-sidebar-links-wrapper::-webkit-scrollbar-thumb {
            background: var(--gray-200);
            border-radius: 10px;
        }

        .app-sidebar-links-wrapper:hover::-webkit-scrollbar {
            width: 6px;
        }

        .app-sidebar-links-wrapper:hover::-webkit-scrollbar-track {
            width: 6px;
        }

        .app-sidebar-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;

        }

        .app-sidebar-links>li {
            width: 100%;
            padding: 0.25rem calc(0.75rem - 6px) 0.25rem 0.75rem;
        }

        .app-sidebar-links>.divider-wrapper {
            width: 100%;
            padding: 0 calc(0.75rem - 6px) 0 0.75rem;
            margin: .25rem 0;
        }

        .app-sidebar-links>.divider-wrapper>.divider {
            border-top: 2px solid var(--gray-200);
        }


        .app-sidebar-links>li>a {
            width: 100%;
            display: flex;
            align-items: center;
            color: var(--gray-600);
            border-radius: var(--border-radius);
            padding: 0.75rem 1rem;
            transition: background .3s;
            font-size: .9rem;
            font-weight: 500;
        }

        .app-sidebar-links>li>a:hover {
            text-decoration: none;
            background: var(--gray-200);
            color: var(--gray-600);
        }

        [data-theme-style="dark"] .app-sidebar-links>li>a:hover {
            background: var(--gray-200);
            color: var(--gray-800);
        }

        .app-sidebar-links>li.active>a {
            background: var(--primary);
            color: var(--white);
            font-weight: 500;
        }

        [data-theme-style="dark"] .app-sidebar-links>li.active>a {
            background: var(--primary-800);
            color: var(--white);
        }

        .app-sidebar-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
        }

        .app-sidebar-footer-block {
            max-width: 100%;
        }

        .app-sidebar-footer-text {
            color: var(--gray-600);
        }

        .app-content {
            margin-left: 0;
            flex-grow: 1;
        }

        [dir="rtl"] .app-content {
            margin-left: initial;
            margin-right: 0;
        }

        @media (min-width: 992px) {
            .app-content {
                margin-left: 260px;
            }

            [dir="rtl"] .app-content {
                margin-left: initial;
                margin-right: 260px;
            }
        }

        .app-navbar {
            min-height: 75px;
            border-bottom: 2px solid var(--gray-200);
        }

        [data-theme-style="dark"] .app-navbar {
            border-color: var(--gray-200);
        }

        /* Modal */
        .modal-header {
            padding: 1rem;
            border-bottom: 0;
        }

        .modal-subheader {
            padding: 0 1rem;
            border-bottom: 0;
            margin: 0;
        }

        .modal-content {
            padding: 1rem;
            border: none;
            box-shadow: none;
            -webkit-box-shadow: none;
        }

        /* Forms */
        .input-group-text {
            font-size: 0.9rem;
        }

        /* Footer */
        .footer {
            margin: 4rem 0 0 0;
            padding-top: 3rem;
            padding-bottom: 3rem;
            background-color: rgba(217, 217, 217, 0.38);
        }

        .footer {
            color: var(--gray);
        }

        .footer a:not(.dropdown-item),
        .footer a:hover:not(.dropdown-item) {
            color: var(--gray);
        }

        .footer a.icon {
            color: var(--gray);
        }

        .footer button,
        .footer button:hover {
            color: var(--gray) !important;
        }

        .footer-logo {
            max-height: 2.5rem;
            height: 2.5rem;
        }

        /* App footer */
        .app-footer {
            border: 2px solid var(--gray-200);
            border-radius: var(--border-radius);
            margin: 0;
            padding: 1.25rem;
        }

        /* Filters */
        .filters-dropdown {
            width: 18rem;
            max-height: 30rem;
            overflow-y: auto;
        }

        /* Custom breadcrumbs */
        .custom-breadcrumbs {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
        }

        .custom-breadcrumbs>li {
            margin-right: .5rem;
        }

        .custom-breadcrumbs>li>a {
            color: var(--gray);
        }

        .custom-breadcrumbs>li>svg {
            color: var(--gray-400);
            margin-left: .5rem;
        }

        .custom-breadcrumbs>li.active {}

        /* Helper classes */
        .list-style-none {
            list-style: none;
            padding: 0;
        }

        .clickable {
            cursor: pointer;
        }

        .no-underline,
        .no-underline:hover {
            text-decoration: none;
        }

        .icon-favicon {
            width: 1rem;
            height: 1rem;
        }

        /* Index navbar */
        .navbar-index {
            min-height: 0 !important;
            background-color: rgba(217, 217, 217, 0.08);
        }



        .navbar-index .navbar-nav>li {
            padding: .5rem 0 !important;
        }

        @media (min-width: 992px) {
            .navbar-index .navbar-nav>li {
                padding: .5rem !important;
            }
        }

        /* Dropdown */
        .dropdown-item:hover,
        .dropdown-item:focus {
            border-radius: var(--border-radius);
        }

        .dropdown-item svg {
            color: var(--gray-600);
        }

        .dropdown-item:active svg {
            color: var(--white);
        }

        /* Navbar */
        .navbar-main {
            min-height: 0 !important;
            background: var(--white);
        }

        .navbar-main .navbar-nav>li {
            padding: .5rem 0 !important;
        }

        @media (min-width: 992px) {
            .navbar-main .navbar-nav>li {
                padding: .5rem !important;
            }
        }

        .navbar-logo {
            max-height: 2.5rem;
            height: 2.5rem;
        }

        .navbar-avatar {
            width: 20px;
            height: 20px;
            border-radius: 50%;
        }

        .navbar-custom-toggler {
            padding: 0.5rem .8rem;
            font-size: 1.25rem;
            line-height: 1;
            background-color: transparent;
            border-radius: var(--border-radius);

            color: var(--gray-700);
            border-color: var(--gray-300);
        }

        .chart-container {
            position: relative;
            margin: auto;
            height: 250px;
            width: 100%;
        }

        /* Dropdown */
        .dropdown-toggle-simple::after {
            display: none;
        }

        /* Index */
        .index-container {
            width: 100%;
            padding: 0 0 4rem 0;
        }

        @media (min-width: 768px) {}

        @media (min-width: 992px) {
            .index-container {
                padding: 0 0 6rem 0;
            }
        }

        .index-image {
            width: 100%;
            height: auto;
            position: absolute;
            top: -5rem;
        }

        @media (min-width: 1375px) {
            .index-image {
                width: 115%;
                top: -6.5rem;
            }
        }

        .index-header {
            font-size: 4rem;
            font-weight: bold;
            color: #FFF;
            font-family: 'Montserrat';
        }

        .index-subheader {
            font-size: 1.35rem;
            color: var(--gray-700);
        }

        .index-button {
            padding: .8rem 1.6rem;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            transition: all .3s ease-in-out;
        }

        .index-card-image {
            max-width: 100%;
            height: auto;
            object-fit: cover;
        }


        /* Others */
        .container-disabled {
            pointer-events: none;
            opacity: .5;
        }

        .container-disabled-simple {
            pointer-events: none;
        }

        /* Custom dropdown */
        .dropdown .dropdown-menu {
            border: 2px solid var(--gray-200);
        }

        .dropdown-divider {
            border-top: 2px solid var(--gray-200);
        }

        /* Custom row */
        .custom-row {
            border-radius: var(--border-radius);
            padding: 1.25rem;
            position: relative;
            border: 2px solid var(--gray-200);
            background: var(--white);
        }

        .custom-row-inactive {
            background: var(--gray-200);
        }

        .custom-row-side-controller {
            right: 100%;
            top: 25%;
            font-size: 1.2em;
            padding: .2em .2em;
        }

        [dir="rtl"] .custom-row-side-controller {
            right: initial;
            left: 100%;
        }

        @media (min-width: 992px) {
            .custom-row-side-controller {
                position: absolute;
                padding: .4em .8em;
            }
        }

        .custom-row-side-controller-grab {
            cursor: grab;
        }


        /* Tables */
        .table-custom-container {
            border-radius: var(--border-radius);
            border: 2px solid var(--gray-200);
        }

        .table-custom {
            margin-bottom: 0;
        }

        .table-custom thead th {
            border-top: 0;
            border-bottom: 0;
            background: var(--gray-100);
            color: var(--gray-900)
        }

        .table-custom th {
            padding: 1.25rem 1rem;
        }

        .table-custom td {
            padding: 1.75rem 1rem;
            background: var(--white);
            vertical-align: middle;
        }

        .table-custom tbody tr {
            transition: all .3s ease-in-out;
        }

        .table-custom tbody tr:hover td {
            background: var(--gray-100);
        }

        /* Helpers */
        .appearance-none {
            appearance: none;
            -moz-appearance: none;
            -webkit-appearance: none;
        }

        /* Pricing */
        .pricing-plan {
            border: 2px solid var(--gray-200);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .pricing-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2.2rem 2.2rem 0 2.2rem;
            background: var(--white);
            border-bottom: 2px solid var(--gray-200);
        }

        [data-theme-style="dark"] .pricing-header {
            border-color: var(--gray-100);
        }

        .pricing-name {
            background: var(--primary-200);
            padding: .15rem 1.25rem;
            color: var(--primary-600);
            font-size: .85rem;
            font-weight: 600;
            text-transform: uppercase;
            border-radius: var(--border-radius);
        }

        .pricing-price {
            margin: 1rem 0;
        }

        .pricing-price-amount {
            font-size: 3.3rem;
            font-weight: bold;
        }

        .pricing-price-currency {
            font-size: .9rem;
            color: var(--gray);
        }

        .pricing-details {
            text-align: center;
            font-size: .85rem;
            color: var(--primary-800);
            margin-bottom: 1.5rem;
        }

        .pricing-body {
            padding: 0 2.2rem 2.2rem 2.2rem;
            background: var(--white);
            height: 100%;
        }

        .pricing-features {
            margin: 3rem 0;
            list-style: none;
            padding: 0;
        }

        .pricing-features li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 1rem 0;
        }

        /* Custom Radio Boxes */
        .custom-radio-box {
            cursor: pointer;
        }

        .custom-radio-box .custom-radio-box-main-text {
            font-size: 1.15rem;
            font-weight: bold;
        }

        .custom-radio-box .custom-radio-box-main-icon {
            font-size: 1.25rem;
        }

        .custom-radio-box input[type="radio"]+div {
            transition: all .3s ease-in-out;
            border: 2px solid var(--gray-200);
            background: var(--white);
        }

        .custom-radio-box input[type="radio"]:checked+div {
            border: 2px solid var(--primary);
        }

        .custom-radio-box input[type="radio"]:hover+div {
            border: 2px solid var(--primary);
        }

        /* QR Codes */
        .qr-code {
            width: 100rem;
        }

        .qr-code-loading {
            animation: opacity-loading 3s infinite ease-in-out;
        }

        @keyframes opacity-loading {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }

            100% {
                opacity: 1;
            }
        }


        @-webkit-keyframes fadeIn {
            0% {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        @keyframes fadeIn {
            0% {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        .altum-animate-fade-in {
            -webkit-animation-name: fadeIn;
            animation-name: fadeIn
        }


        /* App sub menu */
        .account-header-navbar {
            width: 100%;
            display: flex;
            flex-direction: column;
            padding-left: 0;
            list-style: none;
            margin: 0 0 1.5rem 0;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0 .25rem;
        }

        @media (min-width: 992px) {
            .account-header-navbar {
                flex-direction: row;
            }
        }


        .section6 {
            background-image: url("../images/index-custom/sec6-img.svg");
            opacity: 0.8;
            height: auto;
            width: 100%;
            background-size: cover;
            position: relative;
            margin: auto;
            display: flex;
            justify-content: space-around;
            align-items: center;

        }

        .text1 {
            font-size: 50px;
        }

        .text2 {
            font-size: 20px;
        }

        #sec1-padding {
            margin-left: 10%;
        }

        .section1 {
            /* padding-left:60px; */
            position: absolute;
            right: 0;
            margin: auto;
            top: 150px;
            width: 50%;
            overflow-x: none;
            /* padding-top: 5%; */
            display: flex;
            justify-content: end;
            align-items: center;
        }

        .button1 {

            background-color: #0050B2;
            border-radius: 4px;
            border: none;
            color: #FFF;
            padding: 1px 32px;
            margin-right: 20px;
            text-align: center;
            display: inline-block;
            text-align: center;
            font-family: Roboto;
            font-size: 17px;
            font-style: normal;
            font-weight: 400;
            line-height: 55px;
            /* 323.529% */
            text-transform: capitalize;
        }

        .button2 {
            margin-top: 20px;
            background-color: #000;
            border-radius: 4px;
            border: none;
            color: #FFF;
            padding: 1px 32px;
            margin-right: 20px;
            text-align: center;
            display: inline-block;
            text-align: center;
            font-family: Roboto;
            font-size: 17px;
            font-style: normal;
            font-weight: 400;
            line-height: 55px;
            /* 323.529% */
            text-transform: capitalize;
        }


        .button1:focus {
            border: none;
            padding: 1px 32px;
            background-color: #FFF;
            margin-right: 20px;
            text-align: center;
            display: inline-block;
            text-align: center;
            color: #000;
            font-family: Roboto;
            font-size: 17px;
            font-style: normal;
            font-weight: 400;
            line-height: 55px;
            /* 323.529% */
            text-transform: capitalize;
        }

        .button2:focus {
            border: none;
            padding: 1px 32px;
            background-color: #FFF;
            margin-right: 20px;
            text-align: center;
            display: inline-block;
            text-align: center;
            color: #000;
            font-family: Roboto;
            font-size: 17px;
            font-style: normal;
            font-weight: 400;
            line-height: 55px;
            /* 323.529% */
            text-transform: capitalize;
        }

        @keyframes card {
            0% {
                transform: translateY(20%);
            }

            100% {
                transform: translateY(50%);
            }
        }

        @keyframes perl1 {
            0% {
                transform: translateX(-40%);
            }

            100% {
                transform: translateX(0%);
            }
        }

        @keyframes zoom {
            0% {
                transform: scale(0.2);
            }

            100% {
                transform: scale(0.9);
            }
        }


        @keyframes pearl2 {
            0% {
                transform: translateX(0%);
            }

            100% {
                transform: translateX(-40%);
            }
        }

        .pricingbtn {
            border: 2px solid transparent;
            border-radius: 4px;
            padding: 10px 28px;
            background-color: rgb(170, 201, 167);
            margin-top: 30px;
            text-align: center;
            display: inline-block;
            color: #000;
            text-align: center;
            font-family: Open Sans;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 22.5px;
            /* 160.714% */
        }

        .pricing-card div img:hover {

            /* transform: scale(1.1); */
            transform: translateY(-10%);
            cursor: pointer;
            /* filter: drop-shadow(3px 3px 0px #fff); */
        }



        .pricing-desc {
            background-image: url("../images/index-custom/pricing.png");
            padding: 4%;
            border-radius: 32px;
            background-size: cover;
            display: flex;
            justify-content: space-around;
            align-items: center;

        }

        .card {
            background-color: transparent;
            border: none;
        }

        .checked {
            opacity: 0.8;
            /* background-color: lightblue; */
            transform: translateY(-10%);
            filter: drop-shadow(2px 2px 0px #fff) drop-shadow(-2px 2px 0px #fff) drop-shadow(2px -2px 0px #fff) drop-shadow(-2px -2px 0px #fff);
        }