@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700,900");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&display=swap");

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

:root {
    --Kprimary: #12227e;
}

::-moz-selection {
    background-color: #0000008f;
    color: rgb(255, 255, 255);
}

::selection {
    background-color: #0000008f;
    color: rgb(255, 255, 255);
}

.loader-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9991;
    background-color: rgba(0, 0, 0, 0.234);
}

.fixed-loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, 0.104);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #1aaca2;
    border-radius: 50%;
    width: 83px;
    height: 83px;
    -webkit-animation: spin 0.5s linear infinite;
    animation: spin 0.5s linear infinite;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 0px 0px 15px #00000065;
    box-shadow: 0px 0px 15px #00000065;
}

.loader-wrapp {
    margin: 0 auto;
    background-color: var(--light);
    outline-offset: -3px;
    position: relative;
    width: 83px;
    height: 83px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.152);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.152);
    background-color: rgb(7, 7, 7);
}

.loader-logo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.loader-logo img {
    padding: 3px;
    width: 94%;
    object-fit: contain;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* .loader-container {
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
}

.loader {
    text-align: center;
}

.loader-container .loader img {
    width: 60px;
    margin: 0 auto;
} */

.headingText {
    /* font-size: 3vw; */
    font-size: 2.5rem;
    position: relative;
    padding: 8px 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-transform: capitalize;
}

.headingText::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 25%;
    height: 4px;
    background-image: -webkit-gradient(linear, left top, right top, from(#37d6c9), to(#ffffff));
    background-image: -o-linear-gradient(left, #37d6c9, #ffffff);
    background-image: linear-gradient(to right, #37d6c9, #ffffff);
    background-color: var(--Kprimary);
}

html,
body {
    font-family: sans-serif;
    scroll-behavior: smooth;
    word-spacing: 3px;
}

body {
    overflow-x: hidden !important;
    width: 100vw;
    height: 100%
}

.main {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.bg-vid {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

.hero-bg-img {
    /* background-image: url('../images/final.png'); */
    background-image: url('../images/final_index.png');
    background-position: top;
    min-height: 100vh;
    /* height: 100vh; */
    /* background-size: 100% 100%; */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* min-width: 100%; */
    /* min-height: 100%; */
    width: auto;
    height: auto;
    position: relative;
    /* border: 1px solid red; */
}

.logo {
    padding: 0 !important;
}

.logo img {
    max-width: 240px;
    margin-left: -12px;
}

.navs {
    margin: 15px auto;
}

.navs ul {
    list-style: none;
    text-align: center;
}

.navs ul li {
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.navs ul li .nav2 {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 8px 14px;
    border: 1px solid #fff;
    border-radius: 15px;
    /* font-size: 16px; */
    font-size: 1.1rem;
}

.navs ul li .nav1 {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 8px 14px;
    font-size: 1.1rem;
}

.hero-text-sec {
    margin-top: 12vh;
    color: #fff;
    width: 100%;
    /* height: 85vh; */
    min-height: 500px;
    /* background-color: cadetblue; */
}

.hero-text-sec h1 {
    font-weight: 700;
    /* font-size: 2.2vw; */
    font-size: 2.5rem;
    margin-top: 0;
    text-transform: capitalize !important;
}

.hero-text-sec p {
    /* font-size: 1.6vw; */
    font-size: 1.4rem;
    margin-top: 0;
    text-transform: capitalize !important;
    max-width: 500px;
    /* text-shadow: 1px 1px 1px rgb(65, 65, 65), 1px 2px 3px rgb(136, 136, 136); */
}

.hero-btn {
    margin-top: 30px;
    background-color: var(--Kprimary);
    text-decoration: none;
    border-radius: 30px;
    padding: 12px 53px 12px 15px;
    color: #fff;
    font-family: sans-serif;
    font-weight: bold;
    position: relative;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    -webkit-box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.144);
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.144);
    text-transform: capitalize !important;
}

.hero-btn .round {
    background-color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    position: absolute;
    right: 2%;
    top: 50%;
    -webkit-transform: translate(-2%, -50%);
    -ms-transform: translate(-2%, -50%);
    transform: translate(-2%, -50%);
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-btn .round i {
    text-align: center;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--Kprimary);
}

.hero-btn .txt {
    font-size: 1rem;
    position: relative;
    z-index: 3;
    text-transform: capitalize !important;
}

.hero-btn:hover {
    padding-left: 48px;
    padding-right: 28px;
    text-decoration: none;
    color: #fff;
}

.hero-btn:hover .round {
    width: calc(100% - 8px);
    border-radius: 30px;
    background-color: var(--Kprimary);
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: calc(100% - 90%);
    ;
}

.hero-btn:hover .round i {
    left: 12%;
    color: #fff;
}

.gogle-play-icons-sec {
    display: none;
    margin-top: 25px;
}

.gogle-play-icons-sec a img {
    border: 1px solid white;
    border-radius: 10px;
    max-width: 135px;
    margin-right: 8px;
}


/* mobile menu */

.mb-menu-wrapper {
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    position: fixed;
    left: -100%;
    top: 0;
    background-color: #000;
    z-index: 999;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    visibility: hidden;
    padding: 15px;
}

.mb-menu-wrapper .mb-logo img {
    width: 200px;
}

.mb-nav {
    height: auto;
    min-height: 80vh;
    padding: 15px 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 15px;
}

.mb-nav nav {
    height: 100%;
    width: 100%;
}

.mb-nav ul {
    list-style: none;
    text-align: center;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mb-nav ul li {
    width: 100%;
    margin: 15px auto;
}

.mb-nav ul li a {
    padding: 10px 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: capitalize !important;
    color: #fff;
}

.mb-nav ul li:nth-child(2) a {
    padding: 8px 24px;
    border-radius: 30px;
    background-color: var(--Kprimary);
    border: 1px solid #fff;
    color: #fff;
}

.mb-nav ul li:nth-child(3) a {
    padding: 8px 24px;
    border-radius: 30px;
    background-color: #fff;
    border: 1px solid var(--Kprimary);
    color: var(--Kprimary);
}

.hmbrg-icon {
    position: absolute;
    right: 20px;
    top: 30%;
    -webkit-transform: translate(0, -30%);
    -ms-transform: translate(0, -30%);
    transform: translate(0, -30%);
}

.hmbrg-icon img {
    width: 18px;
}

.mb-close-icon,
.hmbrg-icon {
    cursor: pointer;
    z-index: 11;
}

.hideWebScrollbar::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
    appearance: none;
    visibility: hidden;
    pointer-events: none;
}

.hideWebScrollbar {
    overflow: hidden !important;
    z-index: 0;
}


/* sec 2 bg video */

.box-card {
    max-width: 100%;
    max-height: 250px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.342);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.342);
    position: relative;
    margin: 0 auto;
}

.box-card-top-icon {
    position: absolute;
    top: -38px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: var(--Kprimary);
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.box-card-top-icon .box-notify {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    color: var(--Kprimary);
    border-radius: 50%;
    width: 24px;
    height: 25px;
    text-align: center;
    font-weight: 600;
}

.box-card-top-icon img,
.box-card-top-icon i {
    width: 85%;
    /* font-size: 29px; */
    font-size: 2rem;
    text-align: center;
    color: #fff
}

.box-card-body {
    padding: 55px 12px 12px 12px;
    width: 100%;
    text-align: center;
}

.box-card-body h4 {
    color: var(--Kprimary);
}

.box-card-body h4,
.box-card-body p {
    margin-bottom: 15px
}

.sec-2-content h1 {
    text-align: center;
    color: #fff;
    margin: 35px auto;
    margin-bottom: 80px;
}


/* #sec2 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 0 0 15px 0;
}

.bg-vid-sec {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.sec-2-content {
    width: 100%;
    padding: 15px;
    margin: 0 auto;
}



.sec-2-content video {
    box-shadow: 5px 5px 15px #000;
    width: 100%;
} */


/* sec3 */

#sec3 {
    width: 100%;
    padding: 50px 0;
    background-color: var(--Kprimary);
    margin: 0 auto;
    background-size: cover;
    padding: 15px 0;
}

.sec-icons-wrapper {
    margin: 0 auto;
}

.sec-icons-wrapper ul {
    list-style: none;
    width: 100%;
    margin: auto;
    padding: 15px 0;
}

.sec-icons-wrapper ul li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    margin: 15px auto;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.123) inset;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.123) inset;
}

.sec-icons-wrapper ul li i {
    padding: 8px 10px;
    -webkit-transition: .5s linear;
    -o-transition: .5s linear;
    transition: .5s linear;
}

.sec-icons-wrapper ul li p {
    margin: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 8px 4px;
    word-wrap: break-word;
    /* font-size: 14px; */
    /* font-weight: 700; */
}

.sec-icons-wrapper ul li::before {
    position: absolute;
    content: '';
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(192, 240, 255, 0.349);
    -webkit-transition: .5s linear;
    -o-transition: .5s linear;
    transition: .5s linear;
}

.sec-icons-wrapper ul li:hover {
    -webkit-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
    font-weight: 800;
    cursor: pointer;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.123);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.123);
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
}

.sec-icons-wrapper ul li:hover i {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sec-icons-wrapper ul li:hover::before {
    left: 0%;
}

.atm-card-wrapper {
    padding-bottom: 15px;
}

.atm-card-wrapper img {
    width: 250px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.atm-card-wrapper img:hover {
    -webkit-transform: translateY(-10px) !important;
    -ms-transform: translateY(-10px) !important;
    transform: translateY(-10px) !important;
}

.sec3-right-list-wrap {
    margin: 8px auto;
}

.sec3-right-list-wrap ol {
    list-style: none;
    padding: 4px 0;
}

.sec3-right-list-wrap ol li {
    padding: 4px;
    margin: 4px 0;
    /* font-size: 15px; */
}

.sec3-right-list-wrap ol li span {
    padding: 2px 10px 2px 0;
}


/* footer */

.footer {
    background-color: #000;
    color: #fff;
}

.ft_left__content {
    width: 250px;
}

.ft_left__content h3 {
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 31px;
    margin-top: 0px;
    text-transform: capitalize !important;
}

.ft_button {
    font-weight: 500;
    font-size: 0.88rem;
    color: #fff;
    text-decoration: none !important;
    border-radius: 50px;
    padding: 9px 18px;
    margin: 2px auto;
    text-align: center;
    display: block
}

.--revert {
    line-height: 14px;
    font-weight: bold;
    font-size: 0.88rem;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--white)), color-stop(100%, #E4D3FD), to(#F8F3FF));
    background-image: -o-linear-gradient(left, var(--white) 0%, #E4D3FD 100%, #F8F3FF 100%);
    background-image: linear-gradient(to right, var(--white) 0%, #E4D3FD 100%, #F8F3FF 100%);
    color: var(--Kprimary) !important;
    background-size: 200% 100%;
    background-position: 0 0;
    -webkit-transition: background-position .333s ease;
    -o-transition: background-position .333s ease;
    transition: background-position .333s ease;
}

.ft_button.--outline.\--revert {
    border: 1px solid #fff;
    color: white !important;
    font-weight: bold;
    font-size: 0.88rem;
    background-color: transparent;
    background-image: none;
    line-height: 14px;
}

.--title {
    font-weight: 800;
    text-transform: capitalize !important;
}

.footer ul {
    list-style: none;
    padding-left: 0px;
    width: 100%;
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
    margin-block-start: 1em;
    -webkit-margin-after: 1em;
    margin-block-end: 1em;
}

.footer ul li {
    /* font-size: 14px; */
    line-height: 32px;
    list-style: none;
    text-transform: capitalize !important;
}

.footer ul li a {
    /* font-size: 14px; */
    line-height: 32px;
    color: #fff;
    text-transform: capitalize !important;
    text-decoration: none;
    text-transform: capitalize !important;
}

.footer a {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    text-transform: capitalize !important;
}

.footer .right__column a {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.footer .social__content .disclaimer__content {
    font-weight: normal;
    /* font-size: 16px; */
    color: #F0E6FC;
}

.footer-social-btn {
    margin: 0 5px;
    width: 40px;
    height: 40px;
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #fff;
    color: var(--Kprimary);
}

.footer-social-btn i {
    font-size: 1rem;
    color: var(--Kprimary);
}

.footer-social-btn:hover {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.footer-social-btn:hover i {
    color: #fff;
}

.redes__content a {
    margin: 5px;
    text-decoration: none;
}

.footer-logo {
    width: 180px;
}

.right_column {
    margin-left: 50px !important;
}

@media only screen and (max-width: 992px) {
    .section-features {
        margin: 20px 0 !important;
    }
    .atm-card-wrapper img {
        width: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .headingText {
        font-size: 2rem;
    }
    .hero-text-sec h1 {
        font-size: 1.9rem;
        font-weight: 800;
    }
    .hero-text-sec p {
        font-size: 1rem;
        font-weight: 500;
    }
    .hero-btn {
        padding: 5px 53px 5px 18px
    }
    .gogle-play-icons-sec {
        display: block;
    }
    .hero-bg-img {
        /* background-image: url('../images/mobilebg.gif'); */
        background-image: url(../images/test.gif);
    }
    .right_column {
        margin-left: 0 !important;
        margin-top: 100px;
    }
    .footer .social__content .disclaimer__content {
        margin: 0 auto
    }
    .social__content {
        text-align: center;
    }
    .footer-logo {
        display: block;
        margin: 5px auto;
        padding-top: 15px;
    }
    .section-features {
        margin: 16px 0 !important;
    }
    .box-card {
        max-width: 320px
    }
}

@media only screen and (max-width: 546px) {
    /* .headingText {
        font-size: 2rem;
    }
    .hero-text-sec h1 {
        font-size: 2rem;
        font-weight: 800;
    }
    .hero-text-sec h5 {
        font-size: .9rem;
        font-weight: 500;
    } */
    .hero-btn .txt {
        font-size: 20px;
    }
    .hero-btn {
        padding: 5px 53px 5px 18px
    }
    .logo {
        padding-left: 18px;
    }
    .hmbrg-icon {
        padding-right: 10px;
    }
    .logo img {
        width: 120px;
        margin-left: -5px;
    }
    .hero-text-sec {
        margin-top: 25px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: center;
        padding-top: 0px;
        line-height: none;
    }
    .sec-2-content video {
        width: 90%;
        margin: 15px auto;
    }
    .ft_left__content {
        width: 100%;
    }
    .ft_left__content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .ft_button {
        font-size: 0.70rem;
        padding: 9px 10px !important;
    }
    .section-features {
        margin: 10px 0 !important;
        padding: 5rem 0 !important;
    }
    .feature-box__icon {
        font-size: 20px;
    }
    .feature-box {
        width: 250px;
        margin: 10px auto;
    }
    .sec3-right-list-wrap ol li {
        font-size: 13px;
    }
}

@media only screen and (max-width: 350px) {
    .section-features {
        margin: 7px 0 !important;
    }
}

.copyright_area {
    background: #202020;
    padding: 7px 0;
    width: 100%;
    margin-top: auto;
}

.cs_container {
    max-width: 1140px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.copyright_text * {
    font-size: 17px;
}

.copyright_text a {
    color: #1aaca2;
    text-decoration: none;
    cursor: pointer;
}

.copyright_text a:hover {
    text-decoration: none;
    color: #1aaca2;
}

.copyright_text {
    color: #6c757d
}

.copyright_text p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .copyright_text * {
        font-size: 15px !important;
    }
}

@media (max-width: 390px) {
    .copyright_text * {
        font-size: 12px !important;
    }
}