.card {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: hidden;
}

.card-sidebar {
    background-color: #f4f6f7;
}

.card-header {
    background-color: #dfe5e8;
    border: 0;
    font-weight: 400;
    text-transform: uppercase;
}

.card .list-group-item {
    background-color: #f4f6f7 !important;
}

.card-img-container {
    overflow: hidden;
    position: relative;
}

.card-img-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 159, 227, .6);
    opacity: 0;
    transition: opacity .25s;
}

.card-img-container:hover img {
  transition: all 0.3s;
  transform: scale(1.2);
}

.card-img-container:hover:after {
  opacity: 1;
}

.card img {
  height: 200px; /* just hardcode the height for now ... images needs regenerate thumbnails running */
  max-width: 100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.card:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.card-img-top {
    border-radius: 0;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.card-title a {
    color: #000 !important;
    font-weight: bold;
    margin-bottom: 0;
}

.card-link:hover,
.card-link:hover .icon-read-more {
    color: #009fe3 !important;
}


.card {
    background-color: #f4f4f4;
    margin-bottom: 1rem;
}

.card-dark .card-body {
    background-color: #2473b5;
    color: #fff;
    transition: background .5s ease-in-out;
}

.card-dark:hover .card-body {
    background-color: #0053a1;
}

.card-dark .card-body a {
    color: #fff;
}