/* initiate */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Nunito",sans-serif;
    line-height: 1.6;
    margin: 0;
}
p,h1,h2,h3,h4,h5,h6{
    margin-bottom: 0;
}
a{
    text-decoration: none;
}
.hidden{
    display: none;
}
.rounded{
    border-radius: 12px !important;
}
a{
    text-decoration: none;
    cursor: pointer;
}
/* colors */
.headings{
    color: #272A32;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Nunito, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%; /* 48px */
}
.sub-headings{
    color: #1E2334;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 24px */
    margin-bottom: 20px;
}
.small-title{
    color: #FE434B;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    letter-spacing: -0.56px;
    position: relative;
}
.gradient-bg{
    background: linear-gradient(310deg, #41D9A1 1.94%, #32C7EB 93.91%);
}
.gradient-text{
    background: linear-gradient(256deg, #32C7EB 1.94%, #41D9A1 93.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gray{
    color: #8F92A1;
}
.black{
    color: #1E2334;
}
/* fonts */
.fs-28{
    font-size: 28px;
}
/* images */
.img-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.max-img{
    max-width: 100%;
    max-height: 100%;
}
.img-container{
    position: relative;
}
.screen-img{
    max-width: 100%;
    max-height: 100%;
}
.float-img{
    position: absolute;
    top: -15px;
}
.heading-img{
    /* max-width: 100%; */
    max-height: 120%;
    position: absolute;
    bottom: 0;
    left: 50%;
    max-width: 45vw;
    transform: translate(-50%,-0%);
}
/* main */
.all-body{
    padding: 0 4vw;
}
.body-bg{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -3;
    width: 100%;
}
.body-bg img{
    width: 100%;
}
/* navbar */
.nav-container{
    padding: 24px 4vw;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
}
.navbar-collapse{
    justify-content: end;
}
.nav-link{
    font-weight: 500;
    color: #272A32;
}
.navbar-nav .nav-link.active {
    background: linear-gradient(256deg, #32C7EB 1.94%, #41D9A1 93.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* content */
.all-content{
    margin-top: 185px;
}
/* heading section */
.quote{
    color: #272A32;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    opacity: 0.8;
}
.persons-container{
    position: relative;
    min-width: 150px;
}
.persons-container div:first-child{
    position: absolute;
    left: 0;
}
.persons-container div:nth-child(2){
    position: absolute;
    left: 40px;
    z-index: -1;
}
.persons-container div:nth-child(3){
    position: absolute;
    left: 80px;
    z-index: -2;
}
.numbers{
    font-size: 28px;
    color: #272A32;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
}
.fa-star{
    color: #d6d6d6;
}
.checked {
    color: orange;
}
/* feature section */
.card{
    border-radius: 12px;
    border: 1px solid #E6E7E9;
    background: #FFF;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.card:hover{
    background: linear-gradient(310deg, #41D9A1 1.94%, #32C7EB 93.91%);
}
.card:hover h6,.card:hover p{
    color: #fff;
}
.card h6{
    color: #1E2334;
    font-family: Nunito, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 24px */
}
.card p{
    color: #6A6C73;
    text-align: justify;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    opacity: 0.8;
}
.card-icons{
    position: relative;
    width: max-content;
}
.card-icon{
    position: relative;
    z-index: 3;
}
.card-icons .ellipse{
    position: absolute;
    right: -14px;
    bottom: -10px;
}
/* downloads section */
.downloads{
    padding: 0 4vw;
}
.downloads > div{
    max-width: 1320px;
    margin: auto;
}
.download-img{
    padding: 0 50px;
}
/* faq */
.accordion-button{
    color: #272A32;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
}
.accordion-body{
    text-align: start;
}
.accordion-button::after,.accordion-button:not(.collapsed)::after{
    background-image: none;
}
.accordion-button:not(.collapsed)::after {
    content: "\f068";
    width: 1.25em;
    height: 1.25em;
    background: linear-gradient(256deg, #32C7EB 1.94%, #41D9A1 93.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'FontAwesome', sans-serif;
}
.accordion-button.collapsed::after {
    width: 1.25em;
    height: 1.25em;
    content: "\2b";
    font-size: 1.5em;
    transition: transform 0.2s ease-in-out;
    background: linear-gradient(256deg, #32C7EB 1.94%, #41D9A1 93.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-family: 'FontAwesome', sans-serif;
}
.accordion-button,.accordion-button:not(.collapsed){
    background: #F4FCFE;
}
.accordion-button:not(.collapsed){
    color: #052c65 !important;
    border-radius: 12px !important;
    box-shadow: none;
}
.accordion-item{
    border: none !important;
    margin-bottom: 16px;
}
.accordion-button:focus{
    border: none;
    box-shadow: none;
}
/* footer */
.footer-img{
    position: absolute;
    opacity: 0.1;
    height: 100%;
}
.footer-img img{
    width: 100%;
    height: 100%;
}
.text-footer{
    color: #FFF;
    text-align: justify;
    font-family: Nunito, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}
footer .nav-link{
    color: rgba(255, 255, 255, 0.80);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}
hr{
    color: #fff;
}
.nav-head{
    font-size: 18px;
}
footer{
    position: relative;
    z-index: auto;
}


.dropdown-item:focus, .dropdown-item:hover{
    color: #1e2125 !important;
    background-color: #e9ecef !important;
}

/* responsive */
@media screen and (max-width:992px) {
    .discover-section{
        flex-direction: column;
    }
    .dest-down{
        flex-direction: column-reverse;
    }
    .places-down{
        flex-direction: column;
    }
    .download-img{
        text-align: center !important;
        padding-top: 50px;
    }
    .heading-img,.screen-img{
        position: relative;
        max-width: 100%;
    }
    .app-numbers{
        flex-direction: column;
    }
    .customer-numbers{
        margin-top: 80px;
    }
    .card-container{
        margin-top: 50px;
    }
    .footer-content{
        flex-direction: column;
    }
    .footer-content > div{
        width: 100%;
    }
}
@media screen and (max-width:600px){
    .rights-social{
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 20px;
    }
    .sec-cards{
        margin-top: 0 !important;
    }
    .card-container{
        flex-direction: column;
    }
}
