.card{
  overflow:hidden;
}

.card-reveal .card-body {
    display: flex;
    align-items: center;
    /* position: absolute; */
    /* bottom: 0; */
    /* height: 100%; */
    /* width: 100%; */
    /* text-align: left; */
}

.card-reveal .card-body .card-title {
    font-size: 14px;
    margin: 0;
    text-transform: capitalize;
    font-weight: normal;
    color: #4d4d4d;
    text-align: left;
}
.card-reveal .card-body .card-title:before { content: ""; width:10px; height:10px; background:var(--primary-color); display:inline-block; margin-right:10px}

@media (min-width: 992px) {
    .card-reveal .card-body {
        /* height: 100%; */
        /* bottom: -100%; */
        /* -webkit-transition: bottom .2s ease-in-out; */
        /* transition: bottom .2s ease-in-out; */
    }

    .card-reveal .card-img-top {
        -webkit-transition: -webkit-transform .5s ease-in-out;
        transition: -webkit-transform .5s ease-in-out;
        transition: transform .5s ease-in-out;
        transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
    }

    .card-reveal:hover .card-body {
        /* bottom: 0; */
        /* background-color: rgba(255, 255, 255, 0.7); */
    }

    .card-reveal:hover .card-img-top {
        /* -webkit-transform: scale(1.3); */
        /* transform: scale(1.3); */
    }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .card-columns {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}
.card-columns .card:nth-child(1){/* width:100% !important; */}