.contact-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(23,92,221,.12);
}

.contact-card i{
    width:70px;
    height:70px;
    background:#175cdd;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:28px;
    margin-bottom:20px;
}

.contact-card h5{
    font-weight:700;
    margin-bottom:10px;
}

.contact-card p{
    color:#6c757d;
    margin-bottom:0;
}