/* About */
.about{
    padding: 80px 100px 70px 100px; 
}
.about h1{
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
}
.about-content{
    display: flex;
    justify-content: space-between;
    padding: 40px 40px 20px 40px;
}
#about a{
    color: #1a9494;
    font-weight: bold;
}
.content1{
    width: 60%;
}
.content1 p{
    line-height: 1.6em;
    font-size: 25px;
}
.content2 img{
    width: 250px;
}

@media (max-width: 500px){
    .about{
        padding: 80px 0 0 0;
    }
    .about-content{
        flex-direction: column-reverse;
    }
    .content1{
        width: 100%;
    }
    .content1 p{
        line-height: 1.5em;
        font-size: 22px;
    }
    .content2 img{
        width: 100%;
        padding-bottom: 20px;
    }
}