/* industries */

section.industires .catg-card .new-img{
    height: 320px;
    object-fit: cover;
    object-position: 70%;
    border-radius: 10px 10px 0 0;
    transition: .3s ease-in-out;
}
section.industires .catg-card h3{
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}
section.industires .catg-card{
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}
section.industires .catg-card .cont{
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5),rgba(0,0,0,.8));
    position: absolute;
    bottom: -30px;
    left: 0;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    transition: .5s ease-in-out;
}
section.industires .catg-card .cont span{
    color: var(--white-color);
}
section.industires .catg-card .line{
    height: 1px;
    width: 20%;
    background: #fff;
    transition: .5s ease-in-out;
    margin: 10px 0;
    border-radius: 50%;
}
section.industires .catg-card:hover .cont{
    bottom: 0;
}
section.industires .catg-card:hover .line{
    width: 100%;
}
section.industires .catg-card:hover .new-img{
    transform: scale(1.1);
}

.head{
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.head h2{
    color: var(--heading-color);
    font-size: 28px;
}
.head p{
    color: var(--black-color);
    font-size: var(--f15);
    width: 70%;
    text-align: center;
}

@media (max-width: 980px){
    section.industires .col-3{
        width: 50%;
    }
}

@media (max-width: 540px){
    section.industires .col-3{
        width: 100%;
    }
}