/*@import url('https://fonts.googleapis.com/css?family=Lato');*/
@import url('https://fonts.googleapis.com/css?family=Lato');
body {
    background-color: #96161a;
    font-family: 'Lato', sans-serif;
}
.home-content {
    width: 550px;
    max-width: 100%;
    margin: 25px auto;
    line-height: 1.6;
    font-size: 16px;
}

.bg-cover {
    background: url(../img/bg.jpg) no-repeat center center;
    margin-bottom: 3px;
    min-height: 50vh;
}

h4 {
    color: #fff;
    
}

.bg-cover:last-child {
    margin-bottom: 0;
}

.bg-cover h3 {
    position: absolute;
    color: #3c3c3c;
    bottom: 35px;
    text-transform: capitalize;
    left: 0;
    font-size: 18px;
    right: 0;
}

.align-center {
    justify-content: center;
    align-content: center;
    align-items: center;
    align-self: center;
}

section {
    display: flex;
    min-height: 100vh;
}

.media-padding {
    padding: 25px;
}

.media-padding img {
    height: 200px;
}

.no-padding {
    padding: 0;
}



@media screen and (max-width:700px) {
    section {
        display: flex;
        flex-direction: column;
    }
    .align-center {
        order: -1;
    }
    .media-padding {}
    .bg-cover:last-child {
        margin-bottom: 0;
    }
    .bg-cover h3 {
        position: relative;
    }
    .bg-cover-media:last-child h3{
        margin-bottom: 0;
    }
}