.cards {
    padding: 30px 0 43px 0;
}

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

.card-flex:before,
.card-flex:after {
    display: none;
}

.js-cards {
    margin: 0 -30px 0 -8px;
}

.js-card-item {
    padding: 20px 8px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    height: 100%;
    overflow: hidden;
    width: 317px;
    box-shadow: 0 3px 8px rgba(3,15,28,0.11);
    border-radius: 3px;
}

.card__img-wrap {
    position: relative;
    width: 100%;
    height: 186px !important;
}

.card__top {
    position: relative;
}

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

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

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

.card__date {
    position: absolute;
    margin-top: -22px;
    left: 15px;
    background-color: #2DB4CB;
    border-radius: 30px;
    color: #fff;
    padding: 9px 30px;
    font-size: 16px;
    text-transform: uppercase;
    height: auto !important;
}

.card__details {
    padding: 37px 15px 40px 15px;
}

.card__title {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Work Sans', sans-serif;
}

.card__bottom {
    height: auto !important;
    padding: 0 15px 26px 15px;
}

.card__cta {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Work Sans', sans-serif;
    color: #2DB4CB;
    text-transform: uppercase;
    border-bottom: 3px solid #2DB4CB;
    padding: 0 5px 3px 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.card__cta:hover{
    color: #001830;
    border-bottom: 3px solid #001830;
}

.cards__bttn {
    padding-top: 12px;
}

.card__description {
    color: #001830;
}

.swipe span{
    margin-left: 3px;
}

@media (min-width: 768px) {

    .cards {
        padding: 72px 0 116px 0;
    }
    
    .cards .fx-slide {
        display: block;
    }

    .js-cards .card-item:last-child {
        display: none;
    }

    .js-cards {
        margin: 0 -16px;
    }

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

    .card {
        width: 100%;
        box-shadow: 0 3px 50px rgba(3,15,28,0.11);
        transition: all 0.3s ease-in-out;
    }

    .card:hover {        
        box-shadow: 2px 5px 20px rgb(3 15 28 / 51%);
    }    

    .cards__bttn {
        padding-top: 48px;
    }
    
}

@media (min-width: 1200px) {

    .cards {
        padding: 65px 0 109px 0;
    }

    .js-cards .card-item:last-child {
        display: block;
    }
    
    .cards__bttn {
        padding-top: 46px;
    }

    .card__img-wrap {
        height: 296px !important;
        overflow: hidden;
    }
    
    .card__details {
        padding: 33px 22px 15px 22px;
    }

    .card__title {
        padding-bottom: 15px;
    }

    .card {
        transition: all .3s ease-in-out;
    }

    .card:hover {        
        box-shadow: 2px 5px 20px rgba(3, 15, 28, 0.31);
    }

    .card__top{
        position: relative;
    }

    .card img{
        transition: all 0.3s ease-in-out;
    }

    .card:hover img{
        transform: scale(1.1);
    }

    
}