body {
    background-image: unset;
    background-color: white;
}

/*Banner styling*/
#aboutUsBannerDiv {
    height: 546px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#aboutUsTitle {
    width: 32%;
    color: white;
    float: right;
    margin: 150px 120px 0 120px;
    padding: 15px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

#aboutUsTitle h1 {
    font-size: 50px;
}

#aboutUsTitle p {
    text-align: center;
    font-size: 30px;
}

/*Section styling*/
.containerWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 99px;
}

.section {
    height: 250px;
}

.section h2 {
    margin: 20px 0;
}

.section p, .section li {
    font-size: 20px;
}


/*Font styling for smaller viewport*/
@media (max-width: 1199px) {
    #aboutUsTitle h1 {
        font-size: 33px;
    }

    #aboutUsTitle p {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    #aboutUsBannerDiv {
        height: 450px;
    }

    #aboutUsTitle {
        width: 45%;
        margin: 130px 100px 0 100px;
    }
}

@media (max-width: 576px) {
    #aboutUsBannerDiv {
        display: flex;
        justify-content: center;
        height: 300px;
    }

    #aboutUsTitle {
        width: 80%;
        margin: 50px 20px 0 20px;
        height: max-content;
    }
}