@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body {
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
  }
.wrapper{
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0 !important; 
}
ul, li {
    list-style: none;
    margin: 0px;
}

a {
    text-decoration: none;
}

html ::-webkit-scrollbar-track {
    background: transparent;
}

html ::-webkit-scrollbar-thumb {
    background: #46bfd2;
    border-radius: 10px;
}

html ::-webkit-scrollbar {
    width: 5px;
}

html {
    scroll-behavior: smooth;
}
header{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 25px 8%;
    transition: 3s;
    
}
header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 70px;
}
.logo img{
    width: 100%;
    display: block;
}
.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.button  {
    display: inline-block;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 30px;
    border: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    margin-right: 7px;
    overflow: hidden;
    background-color: #fff;
    color: #000;
    font-weight: 500;
}
.button a{
    color: #000;
    white-space: nowrap;
}
#spotlight{
    background: #46bfd2;
    padding: 120px 0;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
#spotlight .main{
    display: flex;
    align-items: center;
}
#spotlight .main h6{
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 20px;
}
#spotlight .main h1 {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 20px;
}
#spotlight .main p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-top: 20px;
    color: #fff;
    max-width: 63%;
    margin-bottom: 30px;
}
#spotlight .main .spotlight_image{
    width: 400px;
    margin-left: 50px;
}
#spotlight .main .spotlight_image img{
    width: 100%;
    display: block;
}
.buttn  {
    display: inline-block;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 30px;
    border: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    margin-right: 7px;
    overflow: hidden;
    background-color: #fff;
    color: #000;
    font-weight: 500;
}
.buttn a{
    color: #000;
    white-space: nowrap;
}
#core_feature{
    padding: 60px 0;
    background-color: #F4F7FA;
}
#core_feature .main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.corefeature_image{

}
.corefeature_image img{
  width: 100%;
  display: block;
}
#core_feature .feature_details h5{
    color: #46bfd2;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
}
#core_feature .feature_details p{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 70px;
    line-height: 45px;
}
#core_feature .features{
    margin-left: 20%;
}
#core_feature .items{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
#core_feature .items .item_image{
    background-color: #46bfd2;
    border-radius: 108%;
    font-size: 38px;
    color: #fff;
    margin-left: -10%;
    margin-top: -80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#core_feature .items .item_image .lni{
    margin: 15px;
}
#core_feature .items .details .title{
    font-size: 22px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    margin-top: 10px;
}
#core_feature .items .details .decrptn{
    color: #727272;
    font-size: 16px;
    line-height: 28px;
    max-width: 97%;
}
#app_download{
    padding: 90px 0;
}
#app_download .main{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#app_download .main p{
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    color: #000;

}
#app_download .right .download_buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
#footer {
    background-color: #000;
    position: relative;
    padding:40px 0;
}
#footer .main p{
    text-align: center;
    color: #fff;
}
.download{
    display: inline-block;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 30px;
    background-color: #46bfd2;
    color: #fff;
    border: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    margin-right: 7px;
    overflow: hidden;
}
.download a{
    color: #fff;
    font-size: 18px;
    font-weight: 500; 
    white-space: nowrap;
}
.download:hover{
    background-color: #081828;
    color: #fff;
}
.google_play{
    display: inline-block;
    text-transform: capitalize;
    white-space: nowrap;
    padding: 14px 30px;
    background-color: #081828;
    color: #fff;
    border: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    margin-right: 7px;
    overflow: hidden;
}
.google_play a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}
.google_play:hover{
    background-color: #46bfd2;
    color: #fff;
}

@media (max-width: 1280px) {
    header {
        padding: 38px 0 0 0;
    }
    #core_feature .feature_details p {
        max-width: 101%;
    }
}
@media (max-width: 1280px) {
    #spotlight .main .spotlight_image {
        width: 288px;
        margin-left: 50px;
    }
    .corefeature_image {
        width: 319px;
    }
}
@media (max-width: 980px) {
    #spotlight .main {
        flex-direction: column;
    }
    #spotlight .main .left{
       text-align: center;
       margin-top: 40px;
    }
    #spotlight .main .left h1{
        max-width: 100%;
     }
    #spotlight .main .left p{
        max-width: 100%;
     }
    #core_feature .main{
        flex-direction: column-reverse;
        
    }
    #app_download .main{
        flex-direction: column;
    }
    #app_download .main p {
        max-width: 100%;
        font-size: 32px;
        font-weight: 700;
        line-height: 42px;
        color: #000;
        text-align: center;
        margin-bottom: 45px;
    }
}
@media (max-width: 560px) {
    #core_feature .items .item_image {
        font-size: 28px;
    }
    .google_play a {
        font-size: 14px;
    }
    .download a {
        font-size: 14px;
    }
    #core_feature .feature_details .heading{
        text-align: center;
    }
    #core_feature .feature_details p {
        font-size: 31px;
        margin-bottom: 30px;
    }
    #core_feature .features {
        margin-left: 12%;
    }
    .button {
        font-size: 12px;
    }
}
@media (max-width: 380px) {
    .button {
        display: inline-block;
        text-transform: capitalize;
        font-size: 10px;
        font-weight: 500;
        padding: 10px 15px;
        border: none;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
        border-radius: 30px;
        position: relative;
        z-index: 1;
        margin-right: 7px;
        overflow: hidden;
        background-color: #fff;
        color: #000;
        font-weight: 500;
    }
    .logo {
        width: 30px;
    }
    #spotlight .main h1 {
        font-size: 35px;
        line-height: 43px;
    }
    .buttn {
        font-size: 12px;
        padding: 13px 42px;
    }
    #core_feature .feature_details p {
        font-size: 27px;
        margin-bottom: 30px;
        line-height: 39px;
    }
    
}
@media (max-width: 280px) {
    nav {
        gap: 10px;
        display: flex;
    }
    .button {
        font-size: 10px;
    }
    .google_play a {
        font-size: 10px;
    }
    .download a {
        font-size: 10px;
    }
    #core_feature .items .details .title {
        font-size: 20px;
    }
    .corefeature_image {
        width: 262px;
    }
    #spotlight .main .spotlight_image {
        width: 194px;
        margin-left: 2px;
        margin-top: 44px;
    }
}
@media (max-width: 412px) {
    #spotlight .main h1 {
        line-height: 47px;
    }
    #core_feature .feature_details p {
        font-size: 28px;
        margin-bottom: 30px;
    }
    #app_download .main p {
        font-size: 26px;
        line-height: 42px;
    }
    #spotlight .main h1 {
        font-size: 34px;
    }
}   