@font-face {
    font-family: Inter-Regular;
    src: url('../fonts/Inter-Regular.ttf');
}

@font-face {
    font-family: Inter-Medium;
    src: url('../fonts/Inter-Medium.ttf');
}

@font-face {
    font-family: Inter-SemiBold;
    src: url('../fonts/Inter-SemiBold.ttf');
}

@font-face {
    font-family: Inter-Bold;
    src: url('../fonts/Inter-Bold.ttf');
}


:root{
    --theme-color-1: #01d8fd;
    --theme-color-2: #131e48;
    --theme-color-3: #ffdf1f;
    --theme-color-4: #ff4034;

    --body-bg: #ffffff;
    --font-color: #6B7989;
    --heading-color1: #292962;
    --heading-color2: #293A51;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Inter-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color1);
    margin-bottom: 0;
    font-family: 'Inter-Bold';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Inter-Regular';
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn{
    border-radius: 12px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter-Regular';
    font-weight: normal;
}

.btn-main{
    color: #fff;
    background: var(--theme-color-1);
    transition: all .5s ease-out;
    white-space: nowrap;
    min-width: 100px;
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background: #1a7967;
    transition: all .5s ease-out;
}

.btn-secondary{
    color: var(--font-white);
    background-color: var(--theme-color-2);
    transition: all .5s ease-out;
}

.btn-secondary:hover{
    background-position: left bottom;
    color: #fff;
    background: #171389;
    transition: all .5s ease-out;
}

.btn-no-design{
    color: #000000;
    transition: ease-in 0.3s;
}

.btn-no-design i{
    margin-left: 8px;
}

.btn-no-design:hover{
    color: var(--theme-color-2);
    transition: ease-in 0.3s;
}

.main-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.policy-main-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description{
    margin-bottom: 20px;
}

.policy-list{
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.privacy-policy-wrapper p a{
    color: var(--theme-color-1);
}

.error-page{
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
}

.error-page-image{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-content{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}

.error-page-content h1{
  font-size: 90px;
  color: var(--theme-color-1);
}

.error-page-content h3{
  font-size: 28px;
  font-family: 'Inter-Bold';
  color: var(--theme-color-2);
  text-align: left;
}

.error-page-content p{
  font-size: 16px;
  margin: 20px 0px;
  color: var(--heading-color1);
  text-align: left;
}


#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-2);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-2);
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-main-heading{
    color: var(--heading-color1);
    font-size: 38px;
    line-height: 45px;
    margin-bottom: 20px;
    text-align: center;
}

.section-heading-description{
    text-align: center;
}

.section{
    padding: 60px 0px;
    position: relative;
}

/* the slides */
.slick-slide {
    margin: 0 10px;
}
  
/* the parent */
.slick-list {
    margin: 0 -10px;
}

/* home */

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.section-small-heading{
    font-size: 14px;
    font-family: 'Inter-Regular';
    margin-bottom: 15px;
}

.section-heading{
    font-size: 36px;
    color: var(--heading-color1);
    margin-bottom: 20px;
    line-height: 55px;
    text-align: center;
}

.main-banner-container{
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #131e48;
}

.banner-logo{
    width: 150px;
    margin-bottom: 25px;
}

.banner-background-img{
    position: absolute;
    top: -35rem;
    z-index: 1;
    left: -38rem;
}

.main-banner-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: 2rem;
    position: relative;
    z-index: 11;
}

.main-banner-heading{
    font-size: 36px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--font-white);
}

.main-banner-description{
    font-size: 18px;
    font-family: 'Inter-Medium';
    margin-bottom: 2rem;
    text-align: center;
    line-height: 35px;
    color: var(--font-white);
}

.banner-btns{
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 20px;
}

.storelink{
    width: initial;
    position: relative;
}

.storelink img{
    object-fit: contain;
    height: 40px;
    border-radius: 6px;
}

.banner-info-quote{
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.40);
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
    width: fit-content;
    margin-bottom: 20px;
}

.banner-info-quote span{
    border-radius: 30px;
    background: #FFF;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    color: var(--theme-color-3);
    width: 70px;
}

.banner-info-quote h4{
    margin-left: 15px;
    font-family: 'Inter-Medium';
    color: var(--theme-color-3);
    font-size: 14px;
}

.banner-info-quote h4 i{
    margin-left: 10px;
    font-size: 12px;
}

.footer-logo{
    width: 100%;
    margin-bottom: 1.5rem;
}

.footer-logo img{
    width: 150px;
}

.footer-about{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-contact-list{
    margin-bottom: 25px;
}

.footer-contact-list li{
    width: 100%;
    color: var(--font-color);
    margin-bottom: 15px;
}

.footer-contact-list li a:hover{
    color: var(--theme-color-4);
}

.footer-social-list li{
    display: inline-block;
    margin-right: 5px;
}

.footer-social-list li a{
    width: 32px;
    height: 32px;
    background-color: var(--theme-color-1);
    border: 1px solid var(--theme-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    border-radius: 12px;
}

.footer-heading{
    font-size: 20px;
    color: var(--heading-color1);
    margin-bottom: 25px;
}

.footer-links{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-link-list li{
    width: 100%;
    position: relative;
    margin-bottom: 15px;
    color: var(--font-color);
}

.footer-link-list li a:hover{
    color: var(--theme-color-4);
}

.footer-link-list li:last-child{
    margin-bottom: 0;
}

.footer-bottom{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
    padding: 25px 0px;
    margin-top: 1rem;
    border-top: 1px solid #DDDDDD;
}

footer{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 2rem;
    background-color: var(--font-white);
}

.getstart-wrapper{
    border-radius: 12px;
    background: linear-gradient(92deg, var(--theme-color-1) 5%, var(--theme-color-2) 90%);
    width: 100%;
    height: 350px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.getstart-wrapper h3{
    font-size: 36px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.getstart-wrapper h4{
    color: var(--font-white);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 25px;
}

.features-card{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 29px 11px rgba(0, 0, 0, 0.03);
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
    transition: ease-in 0.3s;
}

.features-card:hover{
    margin-top: -10px;
    transition: ease-in 0.3s;
}

.features-icon{
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin: auto;
    margin-bottom: 25px;
    position: relative;
    font-size: 25px;
    border: 2px solid #B6D4FE;
    background: #E2EEFF;
}

.features-content h3{
    color: var(--heading-color2);
    font-size: 20px;
    margin-bottom: 15px;
}

.features-content a{
    display: inline-block;
    color: var(--theme-color-1);
    margin-top: 15px;
}

.features-content a i{
    margin-left: 10px;
}

.features{
    margin-top: 4rem;
}

.background-img{
    position: absolute;
    top: -15rem;
    z-index: -1;
    left: -15rem;
}

.section-small-hading{
    background-color: var(--theme-color-4);
    height: 35px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    position: relative;
    color: var(--font-white);
    width: fit-content;
    border-radius: 30px;
    margin: auto;
    margin-bottom: 15px;
}

.section-description{
    text-align: center;
}

.howitworks-content-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    z-index: 11;
}

.howitworks-content-count{
    background-color: #F3F7FB;
    height: 35px;
    border-radius: 30px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color1);
    margin-bottom: 10px;
}

.howitworks-content-wrapper h3{
    font-size: 32px;
    margin-bottom: 20px;
}

.howitworks-content-wrapper p{
    margin-bottom: 20px;
}

.howitworks-content-wrapper ul li{
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}

.howitworks-content-wrapper ul li img{
    margin-right: 10px;
    position: absolute;
    margin-top: 5px;
    display: flex;
}

.howitworks-content-wrapper ul li p{
    margin-bottom: 0;
    margin-left: 25px;
}

.howitworks-image-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.howitworks-bg{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    transform: translate(-50%, -60%);
    width: 100%;
    height: 100%;
}

.howitworks-bg img{
    width: 92%;
}

.content-image{
    position: relative;
    z-index: 11;
}

.howitworks{
    position: relative;
}

.howitworks-top-bg{
    position: absolute;
    top: -20%;
    right: -10%;
    z-index: -1;
}

.howitworks-bottom-bg{
    position: absolute;
    bottom: 15%;
    left: -10%;
    z-index: -1;
}

.include-list-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 20px 0px 20px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 29px 11px rgba(0, 0, 0, 0.03);
    z-index: 10;
    transition: ease-in 0.3s;
}

.include-list-wrapper:hover{
    margin-top: -10px;
    transition: ease-in 0.3s;
}

.include-list-icon{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: linear-gradient(148deg, var(--theme-color-3) -16.92%, var(--theme-color-4) 99.32%);
    margin: auto;
}

.include-list-wrapper h3{
    font-size: 20px;
    margin: 20px 0px;
    text-align: center;
    color: var(--heading-color1);
}

.include-list-wrapper p{
    text-align: center;
}

.include{
    position: relative;
}

.include-bg{
    position: absolute;
    top: -5%;
    right: -10%;
    z-index: 10;
    max-width: 60%;
}

.lm-wrapper {
    border-radius: 12px;
    background: linear-gradient(92deg, #3F97B9 2.54%, #4E6CD9 87.89%);
    width: 100%;
    height: 350px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lm-wrapper h3 {
    font-size: 46px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.lm-wrapper h4 {
    color: var(--font-white);
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 25px;
}

.lm-wrapper > div{
    width: 55%; 
}

.lasting-impression{
    z-index: 11;
}

.page-banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    background: linear-gradient(92deg, var(--theme-color-1) 5%, var(--theme-color-2) 90%);
}

.page-banner-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 325px;
    flex-direction: column;
}

.page-banner-heading{
    text-align: center;
    width: 100%;
    font-size: 36px;
    color: var(--font-white);
    margin-bottom: 15px;
}

.page-banner-wrapper ul li{
    display: inline-block;
    color: var(--font-white);
    margin: 0px 5px;
}

.page-banner-wrapper ul li a{
    color: var(--font-white);
}

.text-left{
    text-align: left;
}

.benefits-list{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.benefits-list:last-child{
    margin-bottom: 0px;
}

.benefits-list-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px 10px rgb(221 221 221 / 50%);
}

.benefits-icon{
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    border-radius: 12px;
    font-size: 24px;
}

.benefits-icon.one{
    background-color: #3f3eed;
}

.benefits-icon.two{
    background-color: #39baf6;
}

.benefits-icon.three{
    background-color: #f7c239;
}

.benefits-icon.four{
    background-color: #ce5a56;
}

.benefits-list-wrapper h3{
    font-size: 20px;
    margin: 15px 0px;
}

.benefits-left-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mb-4rem{
    margin-bottom: 4rem;
}

.testi-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    border-radius: 12px;
}

.testi-card-wrapper p{
    color: #033BAC;
}

.testi-card-wrapper.voilet{
    background-color: #ECE5FF;
}

.testi-card-wrapper.yellow{
    background-color: #FBF7B8;
}

.testi-card-wrapper.green{
    background-color: #D9FFD8;
}

.testi-author{
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.testi-author img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testi-author p{
    color: #033BAC;
    font-family: 'Inter-Medium';
    line-height: 20px
}

.appslink-box{
    display: flex;
    gap: 20px;
}

.feature-img-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
    text-align: center;
}

.feature-img-wrapper img{
    border-radius: 12px;
}

.appserviceimg{
    margin: auto;
    display: flex;
    align-items: center;
}

.fullbgcontent{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
    border-radius: 15px;
    z-index: 11;
    padding: 4rem;
    box-shadow: 0px 0px 29px 11px rgba(0, 0, 0, 0.03);
}

.whois-list-item{
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DDDDDD;
}

.whois-list-item p{
    font-family: 'Inter-Medium', sans-serif;
    color: var(--heading-color2);
}

.whois-list-item img{
    width: 40px;
}



