#home-top-content .top-content-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
}

#home-top-content h1 {
    text-align: center;
}

#home-top-content .home-content-caption {
    text-align: center;
}

#home-top-content .home-content-image img {
    width: 100%;
}

@media all and (min-width: 801px) {
    #home-top-content .top-content-flex .top-content-home {
        width: calc(60% - 10px);
        margin-right: 10px;
    }
    #home-top-content .top-content-right {
        width: 40%;
    }
}

@media all and (max-width: 800px) {
    #home-top-content .top-content-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}