.industries-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px -24px;
}

.industries-card {
    width: 33.33%;
    padding: 0 12px;
    margin-bottom: 24px;
}

.industries-box {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    min-height: 230px;
    position: relative;
    display: flex;
    align-items: end;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}
.industries-box .industries-banner {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.6s;
    bottom: 0;
    right: 0;
    z-index: -2;
}
.industries-box:before {
    content: "";
    display: block;
    background: linear-gradient(179deg, rgba(15, 23, 42, 0.00) -15.3%, #0F172A 92.78%);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.industries-box .h4 {
    color: #ffffff;
    margin-bottom: 10px;
}
.industries-box p {
    color: #ffffff;
    opacity: 0.8;
}
.industries-box:hover .industries-banner {
    transform: scale(1.1);
}
.industries-box:hover  .industries-content {
    transform: translateY(-10px);
}
.industries-content {
    transition: all 0.6s;
}
@media only screen and (max-width:1199px){
    .industries-grid {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -10px -20px;
    }
    .industries-card {
        width: 33.33%;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    .industries-box {
        padding: 15px;
    }
}
@media only screen and (max-width:991px){
   .industries-card {
        width: 50%;
    } 
}
@media only screen and (max-width:767px){
    .industries-card {
        width: 100%;
    } 
}