.features-slider .item .image figure, .features-slider .item .image img {
    height: 400px;
    transition: .5s all ease-in-out;
    overflow: hidden;
}

.features-slider .item {
    position: relative;
    padding: 10px;

}
.features-slider .item .image{
    position: relative;
}
.features-slider .item .image img {
    object-position: center;
    object-fit: cover;
}

.features-slider .item .flu {
    position: absolute;
    opacity: .01;
    top: 0;

}
.features-slider .item .image:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -10px;
    background: red;
    opacity: .6;
    left: -10px;
}

.features-slider .item .image:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 10px;
    background: gray;
    opacity: .3;
    left: 10px;
    z-index: -1;
}
.features-slider .content {
    position: absolute;
    bottom: 10px;
    width: 100%;
    height: 50px;
}

.features-slider .content h2 {
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding-left: 15px;
    height: 38px;
    display: block;
    position: relative;
    color: white;
    padding-top: 12px;
}

.features-slider .cinner {
    position: relative;
    height: 50px;

}

.features-slider .cinner:before {
    content: "";
    width: 95%;
    height: 100%;
    position: absolute;
    background: red;
    opacity: .6;
}
.features-slider .item:hover img{
 
    transform: scale(1.1) ;
}