
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.p-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
.about-text-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}
.h4-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.about-h4 {
    margin-top: 60px;
    font-size: var(--large);
}
.about-us-bottom {
    font-size: var(--mediumLarge);
    margin-bottom: 30px;
}
.about-p {
    font-size: var(--medium);
    width: 80%;
}
.ul-container{

    width: 80%;
}
h5 {
    font-size: var(--medium);
}
.education-li {
    margin-left: 25px;
    list-style-type: square;
    font-size: var(--medium);
}

/* About Images */
.img-about-opacity {
    width: 100%;
    height: 558px;
    background-color: rgba(0, 0, 0, .2);
}
.about-background-img {
    background-image: url(/assets/about-section/about-img-mobile.jpg);
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 1280px) {
    .about-container {
        flex-direction: row-reverse;
    }
    .about-text-container {
        width: 50%;
    }
    .about-h4 {
        margin-top: 0px;
    }
    .about-p {
        margin-bottom: 0px;
        width: 80%;
    }
    .about-background-img {
        background-image: url(/assets/about-section/about-img.jpg);
        width: 50%;
        height: 1230px;
    } 
    .img-about-opacity {
        width: 100%;
        height: 1230px;
    }
}

@media only screen and (min-width: 1489px) {
    .about-background-img {
        height: 1170px;
        width: 50%;
    } 
    .img-about-opacity {
        height: 1170px;
    }
}

@media only screen and (min-width: 1831px) {

    .about-background-img {
        height: 1045px;
        width: 50%;
    } 
    .img-about-opacity {
        height: 1045px;
    }
}

