﻿.cards{

    display:flex;

    flex-wrap:wrap;

    justify-content:space-between;

}

.card{

    width:31%;

    background:#fff;

    margin-bottom:30px;

    border-radius:8px;

    overflow:hidden;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

    transition:.3s;

    border-top:4px solid #005A9C;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.card-body{

    padding:30px;

}

.card-icon{

    font-size:48px;

    color:#005A9C;

    margin-bottom:20px;

}

.card-footer{

    padding:20px 30px;

    border-top:1px solid #eee;

}