* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
}

.custom_container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
    width: 1040px;
}


.header_main {
    border-bottom: 1px solid #e7ecef;
}


.header_main .main_secmenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.header_main .main_secmenu .menu_sec ul {
    display: flex;
    gap: 22px;
    align-items: center;
    margin: 0;
}

.header_main .main_secmenu .menu_sec .nav-item {
    list-style: none;
}

.header_main .main_secmenu .menu_sec .nav-item .nav-link {
    font-size: 16px;
    color: #010101;
    padding: 0px;
    font-weight: 500;
}

.header_main .custom_container .dowload_btn {
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 7px 15px;
    font-weight: 700;
    font-size: 16px;
}


.mainsec_mid .mid_sec {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-top: 39px;
    justify-content: center;
}



.mainsec_mid .mid_sec .logo_view_sec {
    background-color: #000;
    width: 180px;
    height: 180px;
    border-radius: 50%;

}

.mainsec_mid .mid_sec .logo_view_sec img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.mainsec_mid .mid_sec .mid_contentsec {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
}

.mainsec_mid .mid_sec .mid_contentsec p {
    font-weight: 400;
    color: #010101;
    margin-top: 12px;
    font-size: 14px;
    margin-bottom: 0px;
}

.mainsec_mid .mid_sec .mid_contentsec .btn_continue {
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    background-color: #128c7e;
    font-size: 13.3333px;
}

.main_footer {
    background-color: #0b141a;
    padding: 40px 0;
}

.main_footer .footer_title {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.main_footer ul li {
    list-style: none;
}

.main_footer ul li a {
    text-decoration: none;
    color: #c6d0d5;
    padding: 6px 14px;
    font-size: 14px;
    display: inline-block;
}



.main_footer .copy_rightsec p {
    font-weight: 400;
    border-top: 1px solid #182026;
    margin-top: 28px;
    padding-top: 18px;
    font-size: 13px;
    color: #91a0a6;
}

.main_footer .footer_download {
    display: block;
    color: #c6d0d5;
    padding: 6px 14px;
    font-size: 14px;
    background-color: #25d366;
    font-weight: 700;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.main_footer .footer_download:hover {
    color: #fff;
}

.main_footer .footer_maingrid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: flex-start;
}

@media screen and (min-width:320px) and (max-width:768px) {
    .custom_container {
        width: 90% !important;
        padding: 0;
    }

    .main_footer ul {
        margin-bottom: 30px;
    }

    .menu_sec {
        display: none;
    }

    .main_footer .footer_maingrid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .main_footer .footer_maingrid .footer_logo {
        grid-column: 1 / -1;
    }

    .main_footer ul li a {
        line-height: 17px;
    }

    .mainsec_mid .mid_sec {
        min-height: 60vh;
    }
}

@media screen and (min-width:769px) and (max-width:992px) {
    .custom_container {
        width: 90% !important;
        padding: 0;
    }

    .mainsec_mid .mid_sec {
        min-height: calc(100vh - 64px - 369px);
    }

    .menu_sec {
        display: none;
    }
}

@media screen and (min-width:993px) and (max-width:1024px) {
    .custom_container {
        width: 90% !important;
        padding: 0;
    }

    .mainsec_mid .mid_sec {
        min-height: calc(100vh - 64px - 280px);
    }


}

@media screen and (min-width:1025px) and (max-width:1200px) {
    .custom_container {
        width: 90% !important;
    }
}