.rs-services-item{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:12px;
    overflow:hidden;
    transition:all .35s ease;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.rs-services-item:hover{
    transform:translateY(-8px);
    border-color:#2F5597;
    box-shadow:0 15px 35px rgba(47,85,151,.15);
}

.rs-services-thumb{
    overflow:hidden;
}

.rs-services-thumb img{
    width:100%;
    transition:.5s ease;
    display:block;
}

.rs-services-item:hover .rs-services-thumb img{
    transform:scale(1.05);
}

.rs-services-content{
    padding:25px;
}

.rs-services-title{
    margin-bottom:18px;
    font-size:22px;
    font-weight:700;
    line-height:1.4;
}

.rs-services-title a{
    color:#333333;
    text-decoration:none;
    transition:.3s;
}

.rs-services-item:hover .rs-services-title a{
    color:#2F5597;
}

.rs-services-btn-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
}

.rs-text-btn{
    color:#2F5597;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.rs-text-btn:hover{
    color:#333333;
}

.rs-square-btn{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#F5F7FA;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.rs-square-btn svg path{
    fill:#2F5597;
    transition:.3s;
}

.rs-square-btn:hover{
    background:#2F5597;
}

.rs-square-btn:hover svg path{
    fill:#ffffff;
}