    /* FONT IMPORT */

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

@font-face {
    font-family: SolaimanLipi;
    src: url(font/SolaimanLipi.ttf);
}

/* BASIC SETUP */

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

body {
    font-family: 'SolaimanLipi','Roboto', sans-serif;
    color: #212529;
    font-size: 20px;
    overflow-x: hidden;
}

    /* REUSEABLE COMPONANT */

.row {
    max-width: 1150px;
    margin: 0 auto;
}

section {
    margin-bottom: 60px;
}

.container {
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    position: relative;
    font-size: 150%;
    font-weight: normal;
    padding-left: 15px;
    margin-bottom: 50px;
}

h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 100%;
    background-color: #ff483c;
}

h4 {
    font-size: 90%;
    margin: 10px 0;
}

p {
    font-size: 80%;
    text-align: center;
    line-height: 1.6;
    width: 300px;
}

    /* NAV */
header {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 5px 100px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 80px;
}

.logo img {
    height: 100%;
}

.navbar .nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.navbar .nav-list ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

.navbar .nav-list ul li a:link,
.navbar .nav-list ul li a:visited {
    position: relative;
    font-size: 85%;
    color: rgba(9,39,83,.7);
    text-decoration: none;
    padding-bottom: 33px;
    transition: all 0.5s;
}

.navbar .nav-list ul li a::before {
    content: '';
    position: absolute;
    height: 5px;
    width: 100%;
    bottom: 0;
    background-color: #092753;
    transform: scaleX(0);
    transition: all 0.5s;
}

.navbar .nav-list ul li a:hover::before {
    transform: scaleX(1);
}

.navbar .nav-list ul li a:hover,
.navbar .nav-list ul li a:active {
    color: #092753;
}

.navbar .nav-list a.active:link,
.navbar .nav-list a.active:visited {
    text-decoration: none;
    font-size: 80%;
    padding: 9px 14px;
    color: #fff;
    background-color: #f26d3e;
    border: none;
    border-radius: 5px;
    transition: all 0.5s;
}

.navbar .nav-list a.active:hover,
.navbar .nav-list a.active:active {
    background-color: #ff4300;
}

    /* HERO */

main {
    margin-top: 90px;
}

.hero {
    background: url(img/banner-bg.jpg) no-repeat;
    background-size: cover;
    background-position: 50%;
    width: 100vw;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 0;
    box-shadow: none;
}

.banner-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.banner-card-big {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    background-color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.banner-card-big::after {
    content: '';
    position: absolute;
    height: 10px;
    width: 80%;
    bottom: 0;
    background-color: #0a2f8d;
    border-radius: 10px 10px 0 0;
}

.banner-card-big:hover {
    background-color: #daedff;
}

.big-card-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
}

.big-card-top h2 {
    color: #0a2f8d;
    width: 50%;
    font-size: 135%;
}

.big-card-bottom {
    padding: 30px 0;
}

.banner-card-small {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.banner-card-single {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 330px;
    height: 85px;
    background-color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.banner-card-single::before {
    content: '';
    position: absolute;
    height: 80%;
    width: 8px;
    left: 0;
    background-color: #0a2f8d;
    border-radius: 0px 5px 5px 0;
}

.banner-card-single:nth-child(1)::before {
    background-color: #0d7b2c;
}

.banner-card-single:nth-child(2)::before {
    background-color: #d8de00;
}

.banner-card-single:nth-child(3)::before {
    background-color: #25be88;
}

.banner-card-single:nth-child(4)::before {
    background-color: #5fc6cc;
}

.banner-card-single:hover {
    background-color: #daedff;
}

.banner-card-single h3 {
    color: #333;
    font-size: 110%;
}

    /* HELPLINE */

.helpline {
    position: relative;
    margin-top: -14vh;
}

.helpline .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.helpline .helpline-col {
    padding-left: 40px;
    border-left: 1px solid #b0b0b0;
}

.helpline .helpline-col:first-child {
    border: none;
    padding-left: 0;
}

.helpline .helpline-col a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.helpline .helpline-col a .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ededed;
    padding: 10px;
    border-radius: 50%;
}

.helpline .helpline-col a .number {
    font-size: 80%;
    font-weight: bold;
    color: #0d7b2c;
    margin-bottom: 10px;
}

.helpline .helpline-col a .text {
    font-size: 80%;
    font-weight: bold;
    color: #212529;
}

    /* PROCESS */

.process-step {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3%;
}

.single-step {
    text-align: center;
}

.app-download {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15%;
    margin: 20px 0;
    padding: 20px 0;
}

.app-download p {
    font-weight: bold;
}

    /* MUJIB-100 */

.mujib-100 .apps {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 15%;
}

.mujib-100 .apps .single-app {
    display: flex;
    flex-direction: column;
}

.mujib-100 img {
    max-width: 200px;
    margin-bottom: 15px;
}

.mujib-100 a:link,
.mujib-100 a:visited {
    display: inline-block;
    font-size: 90%;
    font-weight: bold;
    text-align: center;
    color: #092753;
    text-decoration: none;
}

    /* FOOTER */

footer {
    background-color: #f26d3e;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5%;
}

.footer-col .logo-white {
    max-width: 150px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.footer-col p,
.footer-col ul li a:link,
.footer-col ul li a:visited {
    font-size: 75%;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.footer-col ul li a:active {
    text-decoration: none;
}

    /* RESPONSIVE */

@media only screen and (max-width: 800px) {
    .helpline {margin-top: 0;}
    .helpline .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    
    .helpline .helpline-col {
        margin-bottom: 35px;
        padding-left: 0;
        border-left: none;
    }
}








.footer{
    background-color: black;
    color: white;
    padding: 40px;
    text-align: center;
    font-size: 0.8rem;
}
.footer-menu a{
    display: block;
    margin: 15px 0;
    font-size: 1rem;
}

.footer-menu a:hover{
    background-color: grey;
}


.footer::after{
    display: table;
    content: '';
    clear: both;
}

.web{
    width: 20px;
    height: 15px;
    color: #d8de00;
}


