@font-face {
    font-family: "Avenir";
    font-weight: 600;
    src: url("assets/fonts/bold-font/Avenir-Heavy.svg") format("svg"),
        url("assets/fonts/bold-font/Avenir\ Heavy.otf") format("otf"),
        url("assets/fonts/bold-font/Avenir\ Heavy.ttf") format("ttf"),
        url("assets/fonts/bold-font/Avenir\ Heavy.woff") format("woff");
}

@font-face {
    font-family: "Avenir";
    font-weight: 600;
    src: url("assets/fonts/medium-font/Avenir-Medium.svg") format("svg"),
        url("assets/fonts/medium-font/Avenir-Medium.otf") format("otf"),
        url("assets/fonts/medium-font/Avenir-Medium.ttf") format("ttf"),
        url("assets/fonts/medium-font/Avenir-Medium.woff") format("woff");
}

@font-face {
    font-family: "Avenir";
    font-weight: 400;
    src: url("assets/fonts/ragular-font/Avenir-Regular.svg") format("svg"),
        url("assets/fonts/ragular-font/Avenir\ Regular.otf") format("otf"),
        url("assets/fonts/ragular-font/Avenir\ Regular.ttf") format("ttf"),
        url("assets/fonts/ragular-font/Avenir\ Regular.woff") format("woff");
}

@font-face {
    font-family: "Avenir";
    font-weight: 300;
    src: url("assets/fonts/light-font/Avenir-Light.svg") format("svg"),
        url("assets/fonts/light-font/Avenir-Light.otf") format("otf"),
        url("assets/fonts/light-font/Avenir\ Light.ttf") format("ttf"),
        url("assets/fonts/light-font/Avenir\ Light.woff") format("woff");
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: rgba(11, 11, 11, 1);
}



header {
    box-shadow: 1px 0px 3px rgba(0, 0, 0, .2);
    padding: 6px 12px;
}

.btn-text {
    background: transparent;
    border: none;
    padding: 5px 15px;
}

.btn_dark {
    background: #1B1B1B;
    border: 1px solid #1B1B1B;
    color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    padding: 11px 49px;
    font-size: 16px;
    border: none;
    font-weight: 500;
}

.btn_dark:hover {
    background: #1B1B1B;
    color: rgba(255, 255, 255, 1);
}

.btn_md {
    padding: 8px 23px !important;
}

.btn-min-width {
    min-width: 200px;
}

.btn-outline {
    background: transparent;
    color: black;
}

.banner {
    padding: 24px 12px;
    min-height: calc(100vh - 300px);
    background: url(./assets/backg.png) center center;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
}

.section {
    padding: 80px 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.banner_text h1 {
    font-size: 52px;
    font-weight: 600;
    line-height: 60px;
}

.banner_text {
    font-size: 52px;
    font-weight: 600;
    line-height: 60px;
}

.text-black-16 {
    color: rgba(11, 11, 11, 1);
    font-size: 16px;
    line-height: 24px !important;
    font-weight: 400;
}

.text-secondry {
    color: rgba(11, 11, 11, 0.7);
}

.banner_bottom {
    margin-top: -60px;
}

.capsule_wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.capsule {
    border-radius: 100px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    max-width: 450px;
    height: 130px;
    padding: 30px 50px;
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.shape {
    position: absolute;
    right: -30px;
    z-index: 9;
}

.capsule .icon {
    width: 72px;
    height: 72px;
}

.about_sec h2 {
    font-size: 54px;
    font-weight: 300;
    line-height: 65px;
    max-width: 80%;
    margin-bottom: 41px;
}

.about_sec h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 37px;
    margin-bottom: 37px;
}

.about_sec p {
    line-height: 31px;
}

.about_sec hr {
    margin-top: 40px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(11, 11, 11, 0.1);
}

.about_sec .about_text {
    padding: 0 18px;
}

.sec_heading {
    color: rgba(0, 0, 0, 1);
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 29px;
}

.service_sec .px_1 {
    padding: 1px !important;
}

.service_sec .img_box {
    width: 100%;
    height: 100%;
    position: relative;

}

.service_sec .img_box::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    content: '';
}

.service_sec .img_box .s_text {
    position: absolute;
    bottom: 15px;
    color: rgb(255, 255, 255);
    z-index: 9;
    right: 0;
    left: 0;
    text-align: center;
    font-size: 15px;
    line-height: 20px;
}

.service_sec .service_bx.row {
    border-radius: 13px;
    overflow: hidden;
}

.card_items {
    background: rgba(245, 245, 245, 1);
    padding: 24px;
    position: relative;
    border-radius: 9px;
    text-align: center;
    margin-bottom: 78px;
    height: 250px;
}

.card_items .icon {
    min-width: 112px;
    max-width: 112px;
    min-height: 112px;
    max-height: 112px;
    border-radius: 100px;
    background-color: #fff;
    border: 1px solid rgba(11, 11, 11, 0.1);
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card_items .card_text {
    margin-top: 40px;

}

.card_items .card_text h6 {
    font-size: 20px;
    font-weight: 500;
    color: rgba(11, 11, 11, 1);
    margin-bottom: 17px;
    line-height: 27px;
}

.card_items .card_text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: rgba(11, 11, 11, 1);
}

.card_items .card_text p:last-child {
    margin-bottom: 0;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.app_section {
    background-image: url(./assets/bg.png);
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 40px;
}

.app_section .download_bx {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 45px;
}

.app_section h3 {
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 36px;
    line-height: 56px;
    margin-bottom: 14px;
}

.app_section p {
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 31px;
}

.secondry-14 {
    color: rgba(11, 11, 11, 0.7);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

footer {
    background-color: rgba(245, 245, 245, 1);
    padding-top: 30px;
}

footer .ftr_links h3 {
    color: rgba(15, 15, 15, 1);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

footer .ftr_links {
    padding-left: 0;
    margin: 0;
    list-style: none !important;
    width: 260px;

}

footer .ftr_links li {
    margin-bottom: 8px;
}

footer .ftr_links li a {
    color: rgba(11, 11, 11, 0.7);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-decoration: none;
}

.icon_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.icon_wrap span {
    min-width: 42px;
    max-width: 42px;
    min-height: 42px;
    max-height: 42px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(11, 11, 11, 0.1);
}


.bottom_footer {
    border-top: 1px solid rgba(11, 11, 11, 0.1);
    padding: 18px 0;
    margin-top: 8px;

}

.towline {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

}

/* Media Query  */
@media only screen and (min-width: 1500px) {
    .container {
        max-width: 1400px !important;

    }
}

@media only screen and (max-width: 1200px) {

    .app_store_icon {
        justify-content: center;
    }

    .download_bx {
        max-width: 550px;
        margin: auto;
        margin-right: auto !important;
        text-align: center;
    }

    .mob_img {
        display: none;
    }

    .download_bx {
        padding-bottom: 30px;
    }

    .app_section h3 {

        font-size: 30px;
        line-height: 42px;
    }

    .banner img {
        width: 250px;
    }

    .banner_text h1 {
        font-size: 40px;
        line-height: 45px;
    }

    .capsule {
        height: 110px;
        padding: 20px 20px;
        gap: 12px;
    }

    .about_sec .main_img {
        display: none;
    }

    .about_sec h2 {
        font-size: 44px;
        line-height: 55px;
        margin-bottom: 21px;
    }

    .about_sec h4 {
        margin-bottom: 25px;
    }

    .card_items .icon {
        min-width: 90px;
        max-width: 90px;
        min-height: 90px;
        max-height: 90px;

    }

    .capsule {
        box-shadow: none;
        width: 250px;
    }

    .capsule_wrap {
        border-radius: 12px;
        flex-wrap: wrap;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .banner_bottom {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .banner_bottom {
        margin-top: 30px;
    }

    .section {
        padding: 50px 0;
    }

    .card_items {
        margin-bottom: 58px;
    }

    .banner {
        min-height: 50vh;
    }

    .banner img {
        display: none;
    }





    .banner_text {
        max-width: 500px;
        margin: auto;
    }
}

@media only screen and (max-width:767px) {
    .card_items .icon {
        min-width: 70px;
        max-width: 70px;
        min-height: 70px;
        max-height: 70px;
    }

    .card_items .icon img {
        width: 38px;
    }

    .mb-80 {
        margin-bottom: 55px !important;
    }

    .app_section h3 {

        font-size: 20px;
        line-height: 33px;

    }

    .section {
        padding: 30px 0;
    }

    /* .container{
        max-width: auto !important;
    } */
    .banner_text h1 {
        font-size: 26px;
        line-height: 35px;

    }

    .about_sec h2 {
        font-size: 30px;
        margin-bottom: 15px;
        line-height: 45px;
    }

    .about_sec h4 {
        font-size: 21px;
        font-weight: 400;
        line-height: 27px;
        margin-bottom: 9px;
    }

    .about_sec hr {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .sec_heading {
        color: rgba(0, 0, 0, 1);
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .card_items {
        height: auto;
    }
}

@media only screen and (max-width:575px) {
    .header .logo {
        width: 120px;
    }

    .header .btn_dark {
        font-size: 12px;
        padding: 7px 12px;
    }

    .btn-text {
        font-size: 13px;
    }

    .bottom_footer {
        padding: 12px 0;
        margin-top: 12px;
    }

    footer .ftr_links h3 {
        margin-bottom: 12px;
    }

    .app_store_icon {
        flex-wrap: wrap;
    }

    .about_sec h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .about_sec h4 {
        font-size: 19px;

    }
}