#aboutUs {
    box-sizing: border-box;
}

#aboutUs img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: 0 60%;
    filter: brightness(40%);
}

#aboutUs .aboutUsTitle {
    position: absolute;
    font-size: 56px;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#aboutUs .aboutUsContentTitle {
    color: black;
    font-size: 36px;
    font-weight: 600;
}

#aboutUs .contentContainer {
    box-sizing: border-box;
    padding: 0 20px;
    padding-top: 60px;
    padding-bottom: 40px;

    width: 70%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    #aboutUs .contentContainer {
        box-sizing: border-box;
        padding: 0 20px;
        padding-top: 60px;
        padding-bottom: 40px;
        width: 90%;
        margin: 0 auto;
    }

    #aboutUs .aboutUsTitle {
        position: absolute;
        font-size: 52px;
        color: white;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #aboutUs .aboutUsContentTitle {
        color: black;
        font-size: 32px;
        font-weight: 600;
    }
}

@media screen and (max-width: 576px) {
    #aboutUs .aboutUsTitle {
        position: absolute;
        font-size: 42px;
        color: white;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 180px;
    }

    #aboutUs .aboutUsContentTitle {
        color: black;
        font-size: 28px;
        font-weight: 600;
    }

    #aboutUs .contentContainer {
        box-sizing: border-box;
        padding: 0 20px;
        padding-top: 50px;
        padding-bottom: 30px;
        width: 100%;
        margin: 0 auto;
    }
}
