.aboutUs-hero {
    background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../Images/Hero.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
    width: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutUs-heroText {
    margin: 0px;
    font-size: 58px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}

.aboutUs-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.aboutUs-banner {
    background-color: #598896;
    color: #ffffff;
    width: 100%;
}

.aboutUs-banner h3 {
    margin: 10px;
    margin-top: 20px;
}

.aboutUs-banner p {
    margin-top: 0px;
    margin: 10px;
    margin-bottom: 20px;
}

.aboutUs-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 30px;
    max-width: 1500px;
}

.aboutUs-img {
    margin: 30px;
    border-radius: 20px;
    width: 50%;
    height: auto;
}

.aboutUs-text {
    text-align: left;
    margin: 30px;
    width: 50%;
    height: auto;
}

.aboutUs-subtext {
    background-color: #f1f1f1;
    text-align: center;
    width: 100%;
}

.aboutUs-subtext p{
    margin: 40px;
}

@media only screen and (max-width: 768px) {
    .aboutUs-container {
        flex-direction: column;
    }

    .aboutUs-img, .aboutUs-text {
        width: 80%;
    }
}