.simpleservice {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.simpleservice .items {
    width: 31.7%;  
    margin-bottom: 35px;
}

.simpleservice .items .item {
    padding:30px;    
    background-color:#c9dbe4;
    height:100%;
    background-size: cover;        
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s ease-in-out;
    position: relative;
    min-height: 560px;
}

.simpleservice .items .item::after {
    content:"";
    background-color: rgba(0,0,0,.5);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    z-index: 0;
    transition: 300ms;
    opacity: 0;
}

.simpleservice .items .item:hover::after {
    opacity: 1;
}


/* Service image */
.simpleservice .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Service Link Button */
.simpleservice .item .servlink{
    position: absolute;
    z-index: 1;
    left: 30px;
    bottom: 0;
}
.simpleservice .item .servlink a{
    display: inline-block;
    border: 1px solid var(--color-default);
    background-color: transparent;
    padding: 12px 30px;
    color: var(--color-default);
    transition: 300ms;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}
.simpleservice .item:hover .servlink a{
    color: #fff;
    border: 1px solid #fff;
}
.simpleservice .item .servlink a:hover{
    background-color: #fff;
    color: var(--color-default);
}
.simpleservice .items .item:hover .servhead{
    transition: 300ms;
    position: relative;
    z-index: 1;
}  
.simpleservice .items .item:hover .servhead{
    color: #fff;
} 
@media screen and (max-width: 991px) {
    .simpleservice .items {
        width: 48%;  
    }
}

@media screen and (max-width: 767px) {
    .simpleservice .items {
        width: 100%;  
    }
    .simpleservice .items .item {
       min-height: 400px;    
    }
}