.home-res-feature-wrap {
    position: relative;
    overflow: hidden;
}
.home-res-feature-image {
    height: 230px;
}
.home-res-feature-image img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.home-res-feature-over {
    color: var(--white);
}
.home-res-feature-title {
    font-weight: 700;
    margin-bottom: 10px;
}
.home-res-feature-description {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}
.home-res-feature-btn {
    border: 2px solid;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 6px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.home-res-feature-wrap:hover .home-res-feature-image img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.home-res-feature-btn:hover {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--primary);
}
/*Responsive - Mobile First*/
/* md */
@media (min-width: 768px) {
    .home-res-feature-image {
        height: 330px;
    }
    .home-res-feature-description {
        font-size: 23px;
    }
}
/* xl */
@media (min-width: 1350px) {
    .home-res-feature-image {
        height: 390px;
    }
    .home-res-feature-description {
        font-size: 27px;
    }
    .home-res-feature-btn {
        font-size: 16px;
        padding: 7px 10px;
    }
}