.industry-column {
    height: 225px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative !important;
    overflow: hidden;
    transition: 0.5s;
}
.industry-column:after { display: none !important; }
.industry-column:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgb(0 0 0 / 50%);
    z-index: 9;
    visibility: visible;
    transition: 0.5s;
}
.industry-column:hover:before {
    background-color: rgb(0 161 164 / 80%);
}
h3.column-title {
    position: relative;
    z-index: 9;
    margin: 0;
    color: #fff;
    font-weight: normal;
}