.category-image-name{
    position: relative;
    margin-bottom: 13px;
    display: inline-block;
    overflow: hidden;
}
.category-image-name h3{
    color: #fff;
    transform-origin: bottom left;
    transition: transform .2s;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #777;
    position: absolute;
    bottom: 8px;
    padding-left: 0.8rem;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 200;
    letter-spacing: 0.2rem;
    z-index: 2;
}
.category-image-name img{
    transition: transform .2s;
    width: 100%;
    height: auto;
}
.category-image-name a:hover h3 {
    transform: scale(1.3);
}
.category-image-name a:hover img {
    transform: scale(1.2);
 }
 @media screen and (max-width: 767px) {
 .category-image-name{
    max-width: 100%;
    }
 }
@media screen and (min-width: 768px) {
 .category-image-name{
   max-width: 46%;
   padding: 0 10px;
   }
}