.rs-grid{
    display:grid;
    gap:25px;
}
.rs-card{
    background:#FFF;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    height:100%;
    transition:.3s;
}
.rs-card:hover{
    transform:translateY(-8px);
}
.rs-card a{
    display:flex;
    flex-direction:column;
    height:100%;
    text-decoration:none;
    color:inherit;
}
.rs-image{
    height:260px;
    overflow:hidden;
}
.rs-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.rs-content{
    display:flex;
    flex-direction:column;
    flex:1;
    text-align:center;
    padding:0px 15px 20px 15px;
}
.rs-icon{
    width:90px;
    height:90px;
    margin:-50px auto 0px;
    /*background:#003b75;*/
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    /*border:5px solid white;*/
}
.rs-icon img{
    /*
    width:45px;
    height:45px;
    */
}
.rs-content h3{
    font-size: 20px;
    margin: 10px 0 0px 0;
    text-transform: uppercase;
    font-weight: 700;
}
.rs-content p{
    margin-bottom:25px;
    line-height:20px;
}
.rs-content .rs-button{
    display:inline-block;
    padding:3px 20px;
    background:#003b75;
    color:#FFF;
    border-radius:6px;
    margin-top:auto;
}
