*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;    
}

:root{
    --bg-color:#bebebd;
    --bg-color-second:#1d2f5e;
    --text-color:#000000;
    --text-color-second:#010d49;
    --text-white:#ffffff;
}

html{
    font-size: 1.2rem;
    overflow-x: hidden;
}

body{
    background-color: var(--bg-color);
    color: var(--text-color);
}

section{
    padding: 2rem 0rem;
}

header{
    /* position: fixed;
    top: 0;
    left: 0; */
    width: 100%;
    background-color: #1a4894;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    font-size: 2rem;
    color: var(--text-white);
    font-weight: 600;
    cursor: default;
}

.navbar a{
    font-size: 1.2rem;
    color: var(--text-white);
    margin-left: 2rem;
}

#menu-icon{
    display: none;
    font-size: 1.2rem;
    padding: 4px;
    color: var(--text-white);
    background-color: var(--text-color);
}

.banner{
    color: var(--text-color);
    display: flex;
}

.banner img{
    width: 40vw;
    border-radius: 25% 0%;
}

.banner>div{
    padding: 2rem;  
}
.left-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-section p{
    padding: 20px 0px;
}
.left-section .btn{
    font-size: 1rem;
    padding: 15px 20px;
    border-radius: 1rem;
    background-color: #1a4894;
    color: var(--text-white);
}

.about-section{
    background-color: var(--text-white);
}


.about-section div{
    background-color: var(--text-white);
    padding: 2rem;
}

.about-row img{
    width: 40vw;
}

.about-row{
    display: flex;
}

#tleft{
    text-align: left !important;
}

.text-left{
    text-align: left;
}

.sec-header{
    text-align: center;
    padding: 2rem;
}

.sec-header::after{
    content: "";
    display: block;
    width: 25%;
    height: 2px;
    background-color: blue;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
}

@media(max-width:992px){
        #menu-icon{
            display: block;
        }

        .navbar{
            display: flex;
            flex-direction: column;
           }
        .navbar{
          position: absolute;
          top: 90px;
          background-color: var(--bg-color-second);
          width: 100%;
          left: 0;
          padding: 1rem;
          display: none;
        }
       
          .navbar a{
            padding: 1rem 0px;
           }

           .navbar.active{
            display: flex;
            flex-direction: column;
           }

           .banner{
            flex-direction: column;
           }
           .banner img{
            width: 100%;
           }
           .banner{
            flex-direction: column;
           }
           .about-row{
            flex-direction:column;
           }
           .about-row .right-section img{
            width: 100%;
           }
           .btn{
            width: 25%;
            align-self: center;
           }
}
.footer1{
    width: 40%;
    padding: 1rem;
}
.footer2, .footer3{
    width: 30%;
    padding: 1rem;
}
.footer{
    padding: 2rem;
    background-color: #010d49;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
}

footer li{
    list-style: none;
}
footer a{
    color: #ffffff;
}

.footer-bottom{
    padding: 1rem 2rem;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}