.features-con{
    position: relative;
    background: url(../images/benefits-ng-img.jpg) no-repeat center;
    background-size: cover;
}
.features-con:after {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    background: rgb(0 0 0 / 60%);
}
.features-con .container{
    z-index: 1;
    position: relative;
}
.features-con .generic-title h2,
.features-con .generic-title p{
    color: var(--white-color);
}
.features-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
}
.features-box-item *{
    color: var(--white-color);
}
.features-box-item{
    display: flex;
    background: #333;
    border-radius: 10px;
    flex-direction: column;
    padding: 40px 32px 33px;
    border: 1px solid rgb(255 255 255 / 20%);
}
.features-box-item figure img{
    transition: all 0.4s ease-in-out;
}
.features-box-item:hover figure img{
    transform: translatey(5px);
}
.features-box-item figure{
    margin-bottom: 24px;
}
.features-box-item h3{
    padding: 0 10px;
    margin-bottom: 10px;
}
.features-box-item p{
    margin-top: auto;
}
.features-box-item:hover{
    background: linear-gradient(to top, rgba(250, 100, 55, 1) 0%, rgba(231, 1, 8, 1) 100%);
}
/* ************ responsive *************** */
@media only screen and (max-width: 1440px) {}
@media only screen and (max-width: 1199px) {
    .features-box-item figure {
        margin-bottom: 18px;
    }
    .features-box-item {
        padding: 26px 22px;
    }
}
@media only screen and (max-width: 991px) {
    .features-box {
        gap: 20px;
        grid-template-columns: 48.5% 48.5%;
    }
}
@media only screen and (max-width: 767px) {
    .features-box {
        gap: 17px;
        display: grid;
        grid-template-columns: 48.5% 48.5%;
    }
    .features-box-item {
        padding: 20px 18px;
    }
}
@media only screen and (max-width: 575px) {
    .features-box {
        gap: 15px;
        grid-template-columns: 100%;
    }
}

