@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

body {
    font-size: 16px;
    overflow-x: hidden;
    color: #000;
    font-family: "Nunito Sans", sans-serif;
}

:root {
    /* old variable start*/
    --Primary-Color: #18499E;
    --blue-primary-color: #F2F7FF;
    --gray: #555;
    --black: #000000;
    --white: #ffffff;
    /* old variable end*/

    --blue-color: #0E3A6B;
    --Color-red: #C02C48;
}

img {
    max-width: 100%;
}

a, a:hover {
    text-decoration: none;
}

button,
select {
    outline: none !important;
}

ul,
ol {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    line-height: 1.1;
    color: var(--blue-color);
}

.user-auth a {
    transition: all 500ms ease 0s;
    min-width: 130px;
}

.header .btn-primary:hover {
    background: var(--bs-white);
    color: var(--Color-red);
}

.header .btn-primary:before {
    background: var(--bs-white);
}

img {
    max-width: 100%;
}

.header {
    z-index: 5;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 50px 0px;
    width: 100%;
    transition: all 0.3s ease 0s;
}

.header-inner {
    background: var(--blue-color);
    border-radius: 100px;
    padding: 20px 24px;
}


.logo {
    max-width: 123px;
}

.header.sticky {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px;
    padding: 10px 0;
    background: var(--blue-color);
}

.header .btn {
    box-shadow: none !important;
    outline: none !important;
}

.header-right .offcanvas-body {
    padding: 0px;
    overflow-y: visible;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}



.logo a {
    outline: none !important;
}

.offcanvas {
    border-right: none;
}

.header-right .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
}

.navbar-nav .nav-item {
    padding: 0px 20px;
}

.navbar-nav a {
    font-size: 20px;
    position: relative;
    transition: all 0.3s ease 0s;
    padding: 0px;
    font-weight: 600;
    color: #171640;
}

    .navbar-nav a i {
        font-size: 15px;
    }

.navbar-nav .nav-link::before {
    content: "";
    height: 2px;
    background: var(--blue-color);
    width: 0px;
    position: absolute;
    bottom: 0;
    left: 0px;
    transition: all 0.3s ease 0s;
}

.navbar-nav a:hover::before {
    width: 100%;
}

.menu-item li a:hover::before {
    width: 100%;
}

.mobile-nav {
    width: 30px;
    height: 30px;
    position: relative;
    display: inline-block;
}

.bar1,
.bar2,
.bar3 {
    background-color: var(--bs-white);
    cursor: pointer;
    height: 2px;
    margin: 7px 0px;
    transition: all 0.25s ease-in-out 0s;
    width: 30px;
    display: block;
    position: absolute;
}

.bar1 {
    top: 0px;
}

.bar2 {
    top: 8px;
    width: 20px;
}

.bar3 {
    top: 16px;
}

.open-menu .bar1 {
    top: 6px;
    transform: rotate(45deg);
}

.open-menu .bar2 {
    display: none;
}

.open-menu .bar3 {
    top: 6px;
    transform: rotate(-45deg);
}

.header-right button.btn.d-md-none {
    padding: 0px;
    margin-left: 20px;
    box-shadow: none !important;
}

.navbar-nav .nav-item .dropdown-menu {
    padding: 10px;
    box-shadow: rgba(11, 15, 25, 0.05) 0px 0.275rem 1.25rem, rgba(11, 15, 25, 0.03) 0px 0.25rem 0.5625rem;
    border-color: rgb(255, 255, 255);
    border-radius: 0px;
    padding: 0px;
    border: 0;
    transform: inherit !important;
    inset: inherit !important;
}

    .navbar-nav .nav-item .dropdown-menu li:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    }

    .navbar-nav .nav-item .dropdown-menu li a {
        color: rgb(0, 0, 0);
        display: block;
        font-size: 1rem;
        padding: 0.5rem 0.5rem 0.5rem 1rem;
    }

        .navbar-nav .nav-item .dropdown-menu li a:hover {
            background: var(--Primary-Color);
            color: var(--Primary-Color);
        }

.header-right button.btn.d-md-none {
    padding: 0px;
    margin-left: 20px;
    box-shadow: none !important;
}

.menu-item li a {
    font-size: 14px;
    color: rgb(0, 0, 0);
    padding: 5px 0px;
    display: block;
}

    .menu-item li a:hover {
        color: rgb(26, 8, 83);
    }

.header-right {
    flex: 1;
}

.user-auth + .user-auth {
    margin-left: 10px;
}


@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0px);
    }
}

@media screen and (min-width: 768px) {
    .offcanvas {
        position: static;
        z-index: auto;
        display: block;
        width: 100%;
        height: auto;
        border: 0px;
        visibility: visible;
        transition: none 0s ease 0s;
        transform: inherit;
        background-color: transparent;
    }

    .navbar-nav .dropdown-menu {
        position: absolute;
        min-width: 188px;
        display: block;
        top: 15px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    .navbar-nav .nav-item:hover .dropdown-menu {
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
    }
}

.navbar-nav li .nav-link {
    text-decoration: none;
    padding: 8px 0px;
    display: block;
    color: var(--bs-white);
}


.navbar-nav li.active a {
    color: var(--blue-color);
}

.navbar-nav a:hover {
    color: var(--Color-red);
}

section {
    scroll-margin-top: 90px;
}

@media screen and (max-width: 767px) {
    .navbar-nav {
        display: block;
    }

        .navbar-nav a {
            color: rgb(255, 255, 255);
        }
}



.btn-primary,
.btn-secondary,
.btn-outline {
    position: relative;
    min-width: 230px;
    padding: 11px 20px;
    overflow: hidden;
    box-shadow: none;
    font-size: 18px;
    font-weight: 800;
    display: inline-block;
    background: var(--Color-red);
    text-align: center;
    border-radius: 6.25rem;
    color: var(--bs-white);
    z-index: 1;
    border: 0;
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: ease;
    transition-delay: 0s;
}

    .btn-primary:before {
        position: absolute;
        content: '';
        background: var(--blue-color);
        width: 0%;
        height: 100%;
        top: 0px;
        right: 0px;
        border-radius: 5px;
        z-index: -1;
        transition: all 500ms ease;
    }

    .btn-primary:hover:before {
        width: 100%;
        left: 0px;
    }

    .btn-primary:hover,
    .btn-outline:hover {
        background: var(--blue-color);
        border-color: var(--blue-color);
    }

    .btn-primary:hover,
    .btn-primary:not(:disabled):not(.disabled).active,
    .btn-primary:not(:disabled):not(.disabled):active {
        color: rgb(255, 255, 255);
        box-shadow: 0px 3px 22px rgba(48, 48, 48, 33%) !important;
    }

    .btn-primary:not(:disabled):not(.disabled).active,
    .btn-primary:not(:disabled):not(.disabled):active,
    .show > .btn-primary.dropdown-toggle {
        color: rgb(255, 255, 255);
        background: var(--blue-color);
        border-color: var(--blue-color);
    }

    .btn-check:focus + .btn-primary,
    .btn-primary:focus {
        background: var(--blue-color);
        border-color: var(--blue-color);
        box-shadow: 0px 3px 22px rgba(48, 48, 48, 33%) !important;
    }

    .btn-check:focus + .btn-outline,
    .btn-outline:focus {
        box-shadow: 0px 3px 22px rgba(48, 48, 48, 33%) !important;
    }

/* button primary css end  */

.banner-bg {
    min-height: 1250px;
    padding-top: 182px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 24px;
}

.hero {
    padding: 24px;
}

.hero-content {
    text-align: center;
    margin-bottom: 48px;
}

    .hero-content .hero-title {
        font-weight: 900;
        font-size: 80px;
        line-height: 101px;
        margin-bottom: 21px;
        color: var(--blue-color);
    }

        .hero-content .hero-title .text-red {
            display: block;
            font-size: 113px;
            font-weight: 900;
        }

.text-red {
    color: var(--Color-red);
}

.hero-content .hero-subtitle {
    font-size: 30px;
    line-height: 100%;
    font-weight: 800;
    color: var(--blue-color);
    margin-bottom: 23px;
}

.hero-content .hero-description {
    font-size: 20px;
    line-height: 30px;
    color: var(--blue-color);
    max-width: 881px;
    margin: 0 auto;
    margin-bottom: 35px;
}

.sec-stats {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}

    .sec-stats .container {
        position: relative;
        z-index: 1;
    }

.pattern-layer {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 701px;
    height: 100%;
    background-repeat: repeat-y;
    animation: slide 50s linear infinite;
    -webkit-animation: slide 60s linear infinite;
}

.stats-grid {
    gap: 16px;
    margin-bottom: 20px;
}

.stat-card {
    background-image: url(../images/stat-card-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 296px;
    height: 272px;
    padding: 25px;
    color: var(--bs-white);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

    .stat-card .link {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--Color-red);
        color: var(--bs-white);
        position: absolute;
        right: 0;
        top: 0;
    }

    .stat-card .stat-number {
        font-weight: 900;
        font-size: 51px;
        line-height: 57px;
        margin-bottom: 22px;
    }

    .stat-card p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 0;
    }

.block-header {
    margin-bottom: 50px;
}

    .block-header h2 {
        font-weight: 900;
        font-size: 60px;
        line-height: 57px;
        color: var(--blue-color);
        text-transform: capitalize;
    }



.info-lead span {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    background: var(--Color-red);
    color: var( --bs-white);
    padding: 10px 27px;
    border-radius: 30px;
}


@keyframes slide {
    from {
        background-position: 0 1920px;
    }

    to {
        background-position: 0 0;
    }
}

@-webkit-keyframes slide {
    from {
        background-position: 0 1920px;
    }

    to {
        background-position: 0 0;
    }
}



.story-timeline {
    position: relative;
}

    .story-timeline:before {
        position: absolute;
        content: "";
        left: -30px;
        height: 366px;
        width: 60px;
        border-radius: 24px;
        border: 1px solid #CCCCCC;
        opacity: 0.5;
        transform: translateY(-50%);
        top: 50%;
        border-right: 0;
    }

.timeline-circle {
    position: absolute;
    width: 26px;
    height: 26px;
    display: block;
    transform: translateY(-50%);
    top: 50%;
    left: -47px;
    background: var(--bs-white);
    border: 7px solid var(--Color-red);
    border-radius: 50%;
}

.story-image {
    padding-right: 47px;
}

.border-frame {
    height: 1px;
    display: block;
    width: 100px;
    background: #cccc;
    position: absolute;
    content: "";
    left: -40px;
    transform: translateY(-50%);
    top: 50%;
    z-index: -1;
}


.timeline-item {
    background: var(--bs-white);
    box-shadow: 0px 0px 34px 0px #00000017;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--Color-red);
    margin-top: 17px;
    position: relative;
}

    .timeline-item h4 {
        font-weight: 900;
        font-size: 24px;
        line-height: 100%;
        margin-bottom: 20px;
        color: var(--blue-color);
    }

    .timeline-item p {
        margin-bottom: 0;
        font-size: 16px;
        line-height: 22px;
        color: var(--blue-color);
    }

.features {
    padding: 25px;
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
}

    .features:before {
        position: absolute;
        content: "";
        left: 0px;
        bottom: -120px;
        width: 782px;
        height: 782px;
        background-image: url(../images/shape-left.png);
        background-repeat: no-repeat;
        background-position: left center;
    }

    .features .container {
        position: relative;
        z-index: 1;
    }

.bg-light-gradient {
    background: linear-gradient(360deg, #FFFFFF 0%, rgba(244, 249, 255, 0.35) 45.29%, #F2F8FF 100%);
    border-radius: 24px;
    padding: 100px 0px 98px 0px;
}

.card-white {
    background: var(--bs-white);
    box-shadow: 0px 0px 54px 0px #0000000D;
    padding: 48px;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.asideBar .nav.nav-tabs {
    border: 0;
    justify-content: space-between;
}

.asideBar {
    background: var(--blue-color);
    padding: 9px 10px;
    border-radius: 100px;
    margin-bottom: 70px;
}

    .asideBar .nav-item .nav-link {
        color: var(--bs-white);
        text-align: left;
        font-size: 18px;
        width: 100%;
        border: 0;
        border-radius: 100px;
        padding: 15px 18px;
        font-weight: 800;
        display: block;
    }

        .asideBar .nav-item .nav-link.active {
            background: var(--Color-red);
            color: var(--bs-white);
        }

    .asideBar .nav-item {
        position: relative;
    }

        .asideBar .nav-item:before {
            position: absolute;
            content: "";
            background: rgb(255 255 255 / 20%);
            width: 1px;
            height: 30px;
            transform: translateY(-50%);
            top: 50%;
            right: -8px;
        }

        .asideBar .nav-item:last-child:before {
            display: none;
        }

.features .accordion-item {
    border: 0;
}

.img-card img {
    width: 100%;
    border-radius: 20px;
}

.card-content h3 {
    font-weight: 900;
    font-size: 50px;
    line-height: 49px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.card-content h4 {
    font-weight: 800;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 24px;
}

.card-content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--blue-color);
    margin-bottom: 40px;
}

.sec-gap {
    padding: 100px 0px;
}


.integration-card {
    background: var(--bs-white);
    box-shadow: 0px 0px 34px 0px #0000000D;
    padding: 40px;
    border-radius: 22px;
    height: 100%;
    color: var(--blue-color);
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: ease;
    transition-delay: 0s;
}

    .integration-card:hover {
        box-shadow: 0px 0px 34px 0px #00000033;
        color: var(--bs-white);
        background: var(--Color-red);
        transform: translateY(-10px);
    }


    .integration-card .integration-icon {
        color: var(--blue-color);
        width: 80px;
        height: 80px;
        background: rgb(8 64 121 / 5%);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .integration-card h4 {
        font-weight: 900;
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 21px;
    }

    .integration-card p {
        font-weight: 400;
        font-size: 18px;
        line-height: 29px;
        margin-bottom: 0px;
    }

.sec-our-story {
    overflow: hidden;
    scroll-padding-top: 80px;
}

.integration-card:hover .integration-icon {
    background: rgba(255, 255, 255, 20%);
    color: var(--bs-white);
}

.integration-card:hover h4 {
    color: var(--bs-white);
}


.integrations [class*=col-] {
    margin-bottom: 30px;
}

.banner-image {
    text-align: center;
    margin-top: -562px;
}

.sec-contact h3 {
    font-weight: 900;
    font-size: 35px;
    line-height: 57px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.form-floating {
    margin-bottom: 15px;
}

    .form-floating .form-control {
        border: 1px solid #E1E1E1;
        border-radius: 10px;
        height: 55px;
        padding: 6px 15px !important;
    }

    .form-floating > label {
        font-weight: 400 !important;
        font-size: 16px !important;
        color: var(--blue-color) !important;
        position: static;
        height: inherit;
        border: 0;
        padding: 0;
    }

    .form-floating > .form-control:focus {
        border-color: var(--blue-color);
        box-shadow: none;
    }

    .form-floating textarea.form-control {
        height: 137px;
        resize: none;
    }

.cta-section .cta-box {
    overflow: hidden;
    position: relative;
    padding: 60px 70px;
    background-color: var(--Color-red);
    border-radius: 16px;
    gap: 20px;
}

    .cta-section .cta-box .block-header, .cta-section .cta-box .ms-auto {
        position: relative;
        z-index: 1;
    }



    .cta-section .cta-box .btn {
        background: var(--blue-color);
        white-space: nowrap;
        min-width: 210px;
    }

    .cta-section .cta-box .ms-auto .d-flex {
        gap: 15px;
    }

    .cta-section .cta-box .pattern-layer {
        width: 570px;
    }


    .cta-section .cta-box p {
        font-size: 20px;
        line-height: 28px;
        color: var(--bs-white);
        margin-top: 26px;
    }

.main-footer {
    background: var(--blue-color);
    padding: 89px 0px 50px 0px;
    border-radius: 24px 24px 0px 0px;
    color: var(--bs-white);
}

    .main-footer a {
        transition-property: all;
        transition-duration: 300ms;
        transition-timing-function: ease;
        transition-delay: 0s;
    }

        .main-footer a:hover {
            color: var(--Color-red);
        }

.social-links li a {
    width: 50px;
    height: 50px;
    background: var(--Color-red);
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    color: var(--bs-white);
}

    .social-links li a:hover {
        background: var(--bs-white);
        color: var(--Color-red);
    }

.foot-logo {
    margin-bottom: 40px;
}

.social-links ul {
    gap: 10px;
}

.footer-column h4 {
    color: var(--bs-white);
    font-weight: 800;
    font-size: 30px;
    line-height: 60px;
}

.footer-column ul li a {
    color: var(--bs-white);
    font-weight: 600;
    font-size: 22px;
    line-height: 60px;
}

.footer-btm p {
    margin: 0;
}

.footer-btm {
    margin-top: 156px;
}

    .footer-btm .container {
        border-top: 1px solid rgb(255, 255, 255, 23%);
        padding-top: 23px;
    }

.main-footer [class*=col-] {
    position: relative;
}

    .main-footer [class*=col-]:not(:last-child):before {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        background: rgb(255 255 255 / 20%);
        right: 0px;
    }

.footer-legal .d-flex {
    gap: 10px;
}

.footer-legal a {
    color: var(--bs-white);
}




/*old css required*/

.main {
    margin-top: 90px;
}

.page-banner {
    position: relative;
    padding: 97px 0px;
    background-size: cover;
    background-position: center center;
}

    .page-banner .container {
        position: relative;
    }

    .page-banner::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 1.02%, rgba(0, 0, 0, 0.00) 100%);
    }

.page-title h2 {
    color: #FFF;
    font-size: 4rem;
    font-weight: 700;
    line-height: 4.625rem;
    margin-bottom: 30px;
}

.card-contact {
    border: 1px solid #CCCCCC;
    padding: 30px;
    border-radius: 10px;
    background: #fff;
}

    .card-contact .form-group {
        margin-bottom: 15px;
    }

    .card-contact label {
        color: #555;
        font-size: 1rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 6px;
    }

.input-single .form-control {
    height: 48px;
    border-radius: 0.3125rem;
    border: 1px solid #CCC;
    background: #FFF;
}

.card-contact .btn-primary {
    margin-top: 30px;
}

.card-widget a {
    border-radius: 0.3125rem;
    border: 1px solid #CCC;
    background: #FFF;
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.08);
    padding: 15px;
    height: 100%;
}

.ic {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 5px;
    color: var(--white);
    background: var(--Primary-Color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 10px;
}

.text-right h6 {
    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: normal;
}

.text-right p {
    color: #555;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
