/**====================================
Contents
====================================**/
.ecomm-02-categories-card{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ecomm-02-categories-card figure{
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.ecomm-02-categories-card figure:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(21,21,21,1) 100%);
}
.ecomm-02-categories-card figure img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s all;
}
.ecomm-02-categories-card:hover figure img{
    transform: scale(1.1) rotate(5deg);
}
.ecomm-02-categories-card .card-body{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.ecomm-02-categories-card .card-body img{
    max-width: 7px;
    max-height: 11px;
    display: block;
}


/**====================================
Responsive 
====================================**/
@media (max-width: 1199px){
    
}
@media (max-width: 991px){
    .ecomm-02-categories-card .card-body{
        font-size: 14px;
    }
    .ecomm-02-categories-card .card-body img{
        max-width: 6px;
        max-height: 10px;
    }
}



