
.home-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: solid 1px #eee;
}
.home-heading h2 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    color: #464646;
}
.home-highlights {
    display: flex;
    flex-wrap: wrap;
}
.home-highlights-large {
    width: 60%;
    padding-right: 10px;
}
.home-highlights-small {
    width: 40%;
}
.home-highlights-small .home-highlight:first-child {
    padding-bottom: 10px;
}
.home-highlight a {
    display: block;
}
.home-highlight a,
.home-highlight img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: 3px;
}
@media only screen and (max-width: 767px) {
    .home-heading {
        justify-content: initial;
        flex-direction: column;
        align-items: normal;
    }
    .home-heading h2 {
        margin-bottom: 4px;
    }
    .home-highlights {
        flex-direction: column;
        align-content: center;
    }
    .home-highlights-large {
        padding-right: 0;
        padding-bottom: 5px;
    }
    .home-highlights-large,
    .home-highlights-small {
        width: 100%;
        overflow: hidden;
    }
    .home-highlights-small img{
        margin: 0 auto;
    }
}
