* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* body {
    background: linear-gradient(90deg, #0e3959 0%, #0e3959 30%, #03a9f5 30%, #03a9f5 100%);
} */


.aboutUs {
    position: relative;
    width: 100%;
    padding: 40px 100px;
    /* opacity: 0.2; */
}


.aboutUs .title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}


.aboutUs .title h2 {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: orange;
    font-weight: 500;
}



.text-area {
    padding: 40px;
    color: #fff;
    /* background: #fff; */
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
    tab-size: 2;
}



.text-area h3 {
    /* color: #0e3959; */
    font-weight: 500;
    font-size: 1.4em;
    margin-bottom: 10px;
    text-decoration: underline;
    tab-size: 2;
}

.text-area h4 {
    /* color: #0e3959; */
    font-weight: 500;
    font-size: 1.4em;
    margin-bottom: 10px;
    tab-size: 2;
}

p {
    tab-size: 10;
}





/* Responsive design */
@media (max-width:768px) {
    /* body {
        background: #03a9f5;
    } */

    .aboutUs {
        padding: 0px;
        margin-top: 35%;
    }

    .text-area {
        padding: 30px;
    }

    .aboutUs .title h2 {
        font-size: 0.7em;

    }

    .text-area p {
        font-size: 0.7em;
        text-align: justify;
    }

}