#featured-posts {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
    align-items: center;
    margin: 0 auto;
}

#featured-posts .featured-post {
    display: flex;
    -ms-flex: 1;
    flex: 1;
    flex-wrap: wrap;    
    flex-direction: row;
    justify-content: center;

}

@media (max-width: 864px) {
    #featured-posts .featured-post {
        flex-direction: column-reverse;
    }
}

#featured-posts .featured-post .left,
#featured-posts .featured-post .right {
    display: flex;
    flex: 1;
    flex-wrap: auto;
    flex-direction: column;
    justify-content: center;
}

#featured-posts .featured-post .right img {
    max-width: 100%;
}


#featured-posts .featured-post .title {
    font-size: 2em;
    margin: 0 0 16px 0;
    display: block;
    line-height: 1.2em;
    font-family: 'Roboto slab', 'serif';
}

#featured-posts .featured-post p {
    font-size: 1em;
    line-height: 1.5em;
    margin: 0 0 14px 0;
}

#featured-posts .featured-post p.excerpt {

    margin: 0 0 34px 0;
}

#featured-posts .featured-post p.cert-code, #featured-posts .featured-post p.short-info{
    color: #000;
    font-weight:700;
}

#featured-posts .featured-post .button {
    display:block;
    color: #FFF !important;
    margin-top:auto;
    text-align: center;
}

#featured-posts .featured-post .button-container .btn-learn-more {
    padding: 3px 15px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    border: 1px solid;
    /* display: table-cell; */
    font-size: .75em;
    max-width: 120px;
    transition: all .3s;
    background-color: #FFF;
    color: #006BA6 !important;
}

#featured-posts .featured-post .button-container .btn-learn-more:hover {
    background-color: #006BA6;
    color: #FFF !important;
}



@media screen and (min-width: 1000px) {

}