.card {
    box-shadow: -1px 1px 3px #aaa;
    border-radius: 3px;
    overflow: hidden;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.card:hover {
    box-shadow: 1px 2px 6px #aaa;
}
.card-body {
    padding: 0;
}
.card-image {
    overflow: hidden;
    height: 250px;
}
.card-image img{
    display: inline-block;
    color: transparent;
    height: auto;
    font-size: 0;
    vertical-align: middle;
    max-width: 100%;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    transition: .3s;
}
.card-image img:hover {
    transform: scale(1.1);
}
.card-text {
    padding: 0 15px;
}
.card h2 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-top: 10px;
    padding: 0 15px;
}
.card h4 {
    font-size: 14px;
    color: #666;
}
.card span {
    font-weight: bold;
}