#commercial .commercial {
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
    cursor: not-allowed;
    height: 650px;
}


#commercial .commercial .img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

#commercial .commercial .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease-in-out;
}

#commercial .commercial .img h5 {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #3e7035ad;
    color: #fff;
    margin-bottom: 0;
}


#commercial .commercial:hover img {
    transform: scale(1.2);
}

