.industry__grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:25px;
}
.industry__card {
    height: 250px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
/* IMAGE */
.industry__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.industry__image img{
	width:100%;
	height:100%;
	object-fit:cover;
	transition:0.7s ease;
}
.industry__image h3 {
    position: absolute;
    left: 20px;
    bottom: 65px;
    z-index: 3;
    margin-bottom: 0;
}
.industry__card:hover .industry__image h3 {
    opacity: 0;
}
/* DARK OVERLAY */
.industry__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgb(0 0 0 / 95%) 5%, rgb(0 0 0 / 83%) 45%, rgb(0 0 0 / 0%) 100%);
	z-index: 1;
}
/* CONTENT */
.industry__content {
	position: absolute;
    left: 0;
    right: 0;
    top: auto;
    z-index: 2;
    color: var(--color-text-primary);
    background: #242424d6;
    height: 100%;
    bottom: -100%;
    padding: 20px;
    padding-top: 30px;
    transition: 0.50s ease;
}
.industry__card:hover .industry__content {
    bottom: 0;
}
/* TITLE */
.industry__title {
font-size: 20px;
font-weight: 500;
margin-bottom: 10px;
line-height: 1.1;
transform: translateY(45px);
opacity: 1;
transition: 0.6s ease;
letter-spacing: 0.1px;
color: var(--color-text-primary);
}
/* DESCRIPTION */
.industry__desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-secondary);
    opacity: 1;
    transition: 0.8s ease;
    margin-bottom: 0;
}
/* HOVER EFFECT */
.industry__card:hover img{
	transform:scale(1.08);
}
.industry__card:hover .industry__title,
.industry__card:hover .industry__desc{
	transform:translateY(5px);
	opacity:1;
}
@media(max-width: 991px){
    .industry__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .industry__grid{
    grid-template-columns:1fr;
    }
    .industry__card::before {
    background: linear-gradient(to top, rgb(0 0 0 / 85%) 5%, rgb(0 0 0 / 83%) 45%, rgb(0 0 0 / 0%) 100%);
    }   
}