
.card {
    position: relative;
    float: left;
    margin: 10px 1%;
    min-width: 230px;
    width: 100%;
    background: #ffffff;
    text-align: center;
    color: #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    font-size: 16px;
}

.card * {
    -webkit-box-sizing: border-box;
    box-sizing: padding-box;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.card img {
    max-width: 100%;
    height: 170px;
    vertical-align: top;
    position: relative;
    padding: 20px;
}

.card figcaption {
    padding: 20px;
}

.card h3,
.card p {
    margin: 0;
}

.card h3 {
    font-size: 1.3em;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.card p {
    font-size: 0.9em;
    letter-spacing: 1px;
    font-weight: 300;
}

.card .price {
    font-weight: 500;
    font-size: 1.4em;
    line-height: 48px;
    letter-spacing: 1px;
}

.card .price s {
    margin-right: 5px;
    opacity: 0.5;
    font-size: 0.9em;
}

.card i {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    width: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    background-color: #666666;
    color: #ffffff;
    font-size: 36px;
}

.card a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.card:hover i,
.card.hover i {
    -webkit-transform: translate(-50%, 5px);
    transform: translate(-50%, 5px);
}

figure.card > figcaption > h3 {
    color: #16577E;
    font-weight: 600;
}

figure.card > figcaption {
    background: #f8f8f8;
    border-top: 2px solid gray;
    height: 280px;
}

@media (max-width: 991px) {
    figure.card > figcaption {
        height: auto;
    }
}
