.home_features_header {
    text-align: center;
    margin: 20px 0 40px 0;
    color: #555555;
}

.home_features h2 {
    font-size: 2em;
    font-weight: var(--weight-bold);
    color: var(--title-color);
    line-height: 1.3;
    margin-bottom: 20px;
}

.home_features_header p {
    margin-top: 10px;
    font-size: 1.1em;
    line-height: 1.5;
    color: var(--text-color);
}

.home_features_content {
    display: flex;
}

.home_features_content article {
    border-top: 3px solid #ffffff;
    flex-basis: calc(33.33% - 20px);
    margin: 10px;
    padding: 30px;
    text-align: center;
}

.home_features_content article.active,
.home_features_content article:hover {
    border-top: 3px solid var(--color-green);
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.home_features_content article img {
    width: 60%;
}

.home_features_content article h3 {
    margin: 20px 0 10px 0;
    font-size: var(--font-medium);
    font-weight: var(--weight-bold);
    color: var(--title-color);
}

.home_features_content article p {
    font-size: 1em;
    line-height: 1.5;
    color: var(--text-color);
}

@media (max-width: 52em) {

    .home_features_content {
        flex-wrap: wrap;
    }

    .home_features h2 {
        font-size: 2em;
        text-align: center;
    }

    .home_features_header p {
        font-size: 1em;
        font-weight: var(--weight-normal);
    }

    .home_features_content article {
        flex-basis: 100%;
    }
}