.banner .title {
    margin-bottom: 0!important;
}

@media screen and (min-width: 992px) {
    .banner .title {
        margin-bottom: 0px!important;
    }
}


/* Feed > Simple */

.feed-simple article {
    height: 100%;
    background: #fff;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E5E5;
    border-radius: 5px;
}

.feed-simple article a:hover {
    color: #0086CE;
}

.feed-simple article .thumbnail {
    overflow: hidden;
}

.feed-simple article .thumbnail .img {
    padding: 70% 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.3s all;
}

.feed-simple article .data {
    padding: 15px;
}

.feed-simple article .data .meta {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.feed-simple article .data h2 {
    color: var(--color-courses);
    font-size: 21px;
    line-height: 25px;
    font-weight: bold;
}

.feed-simple article .data p {
    margin: 0;
}

@media screen and (min-width: 992px) {
    .feed-simple article:hover .thumbnail .img {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }
    .feed-simple article .data {
        padding: 30px;
    }
}

.feed .cta .btn.btn-primary {
    line-height: normal;
}