/*CSS for About us page*/
#section1 {
    background-image: url("../images/about/section1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    height: calc(100vh - 70px);
    width: auto;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-left: 100px;
    padding-bottom: 10%;
    text-shadow: #fff;
}

#section1-div1 {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
}

#section1 h1 {
    color: #EF1D26;
}

.section2-div1 {
    background-color: #fff;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
}

#section5 {
    background-color: #EF1D26;
    border-radius: 15px;
    color: #fff;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
}

.bgColorDark {
    background-color: #d9e5f8;
}

.bgColorLight {
    background-color: #f2f2f2;
}

.section4-img {
    height: 100%;
    width: 100%;
    border-radius: 25px;
}

/*CSS for Mobile*/

@media only screen and (max-width: 600px) {
.section4-img{
    padding-bottom: 15px;
}
}