#about {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 2vh 10vw 5vh 10vw;
    background-color: #fff;
}

#about-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 35vh;
    flex-wrap: wrap;
    margin: 20px 0px;
}

#about-content ul{
    margin-left: 20px;
}

#about img {
    min-height: 35vh;
    width: 35vw;
    margin: 0;
    border-radius: 8px;
}

#about p {
    margin: 0;
    padding: 0;
    width: 35vw;
    color: #333;
    line-height: 1.6;
}

@media screen and (max-width: 950px) {
    #about { 
        flex-direction: column-reverse;
        padding: 0vh 5vw 5vh 5vw;
    }

    #about img {
       width: 80vw;
    }

    #about p {
        width: 80vw;
        margin-bottom: 20px;
    }
}