/* -----------------------------------------------------------
    DEFAULT RULES (used also for smallest screens <480p)
----------------------------------------------------------- */

#about {
    display: inline-block;
    text-align: justify;
    width: 95%;
    /*min-height: 29em;*/
    margin-bottom: 1.5em;
    font-weight: 300;
}

#about > div {
    width: 96%;
    margin: auto;
}

#about img {
    /*max-width: 100%;*/
    width: inherit;
    display: block;
    margin: auto;
    height: auto;
}

#about p {
    padding: 5% 1%;
    width: inherit;
    margin: auto;
}

/* ==========================================================================
   Media Queries for Responsive Design.
   These rules override the primary ('mobile first') styles.
   ========================================================================== */

/*---------------------------------------------------------------
   PHONE PORTRAIT SCREENS
-------------------------------------------------------------- */
@media only screen and (max-width: 480px) {
    #about > div {
        width: 96%;
    }
}

/*---------------------------------------------------------------
   TABLET PORTRAIT SCREENS OR PHONE LANDSCAPE
-------------------------------------------------------------- */

@media only screen and (min-width: 768px) {
    #about > div {
        width: 90%;
    }
  /*  #about:after {
        content: '';
        clear: both;
        visibility: hidden;
    }
    #about > img {
        width: 60%;
        margin: 0 3%;
        float: left;
    }
    #about > p {
        text-align: left;
        overflow: hidden
    } */

}

/*---------------------------------------------------------------
   TABLET LANDSCAPE SCREENS
-------------------------------------------------------------- */

@media only screen and (min-width: 1024px) {
    #about > div {
        width: 80%;
    }
}

/*---------------------------------------------------------------
   PC SCREENS
-------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
    #about > div {
        width: 75%;
        max-width: 900px;
    }
}