#hero {
    background: url("../img/about-us-page-nav-back.jpg");
    padding-bottom: 50px;
    background-size: cover;
}

#hero .hero-container {
    justify-content: center;
}

#about-vision, #about-more {
    width: 90%;
    display: block;
    margin: auto;
    padding: 7% 0;
}

#about-more {
    padding-bottom: 0;
}

#about-vision h3, #about-more h3 {
    font-weight: 300;
    font-size: 36px;
    margin-top: 10px;
}

#about-vision h2, #about-more h2 {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 0;
}

#founder {
    display: block;
    width: 90%;
    margin: auto;
    background: rgb(245,158,128);
    background: -webkit-linear-gradient(52deg, rgba(245,158,128,1) 0%, rgba(95,169,204,1) 100%);
    background: -o-linear-gradient(52deg, rgba(245,158,128,1) 0%, rgba(95,169,204,1) 100%);
    background: linear-gradient(142deg, rgba(245,158,128,1) 0%, rgba(95,169,204,1) 100%);
    border-radius: 20px;
}

#founder .founder-wrapper {
    display: flex;
    position: relative;
}

#founder .founder-wrapper .founder-copy {
    flex-basis: 60%;
    padding: 5% 0 5% 5%;
}

#founder .founder-wrapper .founder-copy h2 {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0;
}

#founder .founder-wrapper .founder-copy h3 {
    margin-top: 0;
    font-weight: 300;
    font-size: 26px;
}

#founder .founder-wrapper .founder-img {
    flex-basis: 40%;
    position: absolute;
    width: 30%;
    top: 80px;
    right: 50px;
}

#founder .founder-wrapper .founder-img img {
    display: block;
    max-width: 100%;
}

@media only screen and (max-width: 1160px) {
    #hero .hero-container .hero-copy {
        flex-basis: 80%;
    }
    
    #founder .founder-wrapper .founder-img {
        right: 20px;
        top: 20%;
    }
}

@media only screen and (max-width: 768px) {
    #hero {
        background: url("../img/about-us-page-nav-back-mobile.jpg");
        background-size: cover;
    }
    
    #hero .hero-container .hero-copy {
        flex-basis: 100%;
        padding-bottom: 0;
    }
    
    #founder {
        margin-bottom: 150px;
    }
    
    #founder .founder-wrapper {
        flex-wrap: wrap;
    }
    
    #founder .founder-wrapper .founder-copy {
        flex-basis: 100%;
        padding: 5%;
    }

    #founder .founder-wrapper .founder-img {
        flex-basis: 100%;
        position: inherit;
        width: 100%;
        margin-left: 10%;
        margin-bottom: -50px;
    }
}

















