.cards {
    padding: 0 0 10px;
    border-top: 10px solid #8DC63F;
    border-bottom: 10px solid #8DC63F;
}

.cards ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cards ul > li {
    flex: 0 0 100%;
}

@media (min-width: 1024px) {
    .cards ul > li { flex: 0 0 50%; }
}

@supports (display: grid) {
    .cards ul {
        display: grid;
    }
    
    @media (min-width: 1024px) {
        .cards ul { grid-template-columns: 1fr 1fr; }
    }
}

.cards .card {
    display: flex;
    height: 100%;
    border-top: 10px solid transparent;
}

.cards .card .img-content {
    flex: 3;
    display: block;
    overflow: hidden;
}

.cards .card .image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 400ms cubic-bezier(0,0,0.3,1);
}

.cards .card .image:hover { transform: scale(1.05); }

.cards .card .text-content {
    flex: 5;
    display: flex;
    align-items: center;
}

.cards .card .text-content .inner { padding: 35px; }

@media (min-width: 1024px) {
    .cards .card .text-content .inner { padding: 58px 60px; }
}

.cards .card .text-content .inner::after {
    content: "";
    display: block;
    width: 130px;
    height: 1px;
    background-color: #D2D2D2;

}

.cards .card .title {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.cards .card .description,
.cards .card .description p {
    font-size: 18px;
    font-weight: 100;
    line-height: 1.3;
    color: #1a1a1a;
}

.cards .card .description:hover,
.cards .card .description:hover p {
    color: #00a4ef;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .cards .card .title {
        font-size: 20px;
    }
    
    .cards .card .description,
    .cards .card .description p {
        font-size: 36px;
        line-height: 1.2;
    }
}