.card-flex {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 -16px;
    justify-content: center;
}

.card-item {
    padding: 0 16px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    height: 100%;
    transition: transform .2s linear;
    background: #F4F4F4;
    border: none;
}

.card:hover {
    background-color: #EEF6FF;
}

.card__img-wrap {
    width: 100%;
    height: 200px;
}

.card__img-wrap .placeholder-image {
    -o-object-fit: contain;
    object-fit: contain;
}

.card__bottom {
    padding: 0 20px 28px 20px;
}

.card__details {
    padding: 24px 25px 20px 20px;
}

.card__description,
.card__title {
    text-decoration: none;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
}

.card__description p {
    color: #737373;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.card__title {
    color: #002855;
    font-size: 18px;
    padding-top: 0;
}

.card__cta {
    margin-top: 0;
}

.js-cards {
    padding-bottom: 90px;
}

.js-cards .slick-track {
    display: flex !important;
}

.js-cards .slick-slide {
    height: inherit !important;
}

.js-cards .slick-slide div {
    height: 100%;
}

.js-cards .slick-slide .card div {
    height: auto;
}

.js-cards .slick-slide .card div.card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 157px;
}

.card__info {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 400;
    color: #231F20;
    padding-bottom: 16px;
}

.cards__bttn {
    padding-top: 30px;
}

.cards__title h2 {
    padding-bottom: 0;
}

.cards__headlines {
    padding-bottom: 35px;
}

@media (min-width: 768px) {
    .card__bottom {
        padding: 0 20px 28px 20px;
    }

    .card__title {
        font-size: 16px;
    }
    
    .js-cards {
        padding-bottom: 100px;
    }

    .cards__headlines {
        padding-bottom: 45px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
}

@media (min-width: 1200px) {
    .card__title {
        font-size: 20px;
    }
    
    .js-cards {
        padding-bottom: 0;
    }

    .js-cards .fx-slide {
        display: block;
    }
    
    .cards__headlines {
        padding-bottom: 55px;
    }
}