
/*start home Category*/
component-grid-category-h .category .cat4{ 
    overflow: hidden;
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    padding: 0;
    margin: 0;
}
component-grid-category-h .category .cat4 .category_table{
    height: 80vh;
    display: table;
    width: 100%;
    vertical-align: middle;
    background-color: #000;
    position: relative;
    overflow: hidden;
    transition: all ease-in-out .2s;
}
component-grid-category-h .category .cat4 .category_table .category_table_cell{
        display: table-cell;
        width: 100%;
        height: 100%;
        vertical-align: middle;
        text-align: center;
}
component-grid-category-h .category .cat4 .category_table .category_table_cell .category_img{

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all ease-in-out .45s;
}
component-grid-category-h .category .cat4 .category_table .category_table_cell .img_overlay{

    background-image: -moz-linear-gradient(top, rgba(0,0,0,0.80), rgba(0,0,0,0.80)); 
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.80), rgba(0,0,0,0.80)); 
    background-image: -o-linear-gradient(top, rgba(0,0,0,0.80), rgba(0,0,0,0.80)); 
    background-image: -ms-linear-gradient(top, rgba(0,0,0,0.80), rgba(0,0,0,0.80));
    opacity: 0;
    transition: all ease-in-out .45s;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

}


component-grid-category-h .category .cat4 .category_table .category_table_cell:hover .img_overlay {
    opacity: 1;
}
component-grid-category-h .category .cat4 .category_table .category_table_cell:hover .text_cat {
    opacity: 1;
}
component-grid-category-h .category .cat4 .category_table .category_table_cell:hover .category_img {
   transform: scale(1.05);

}

component-grid-category-h .category .cat4 .category_table .category_table_cell .text_cat{
    
    transform: translateY(20%);
    opacity: 0;
    transition: all ease-in-out .45s;
    padding: 20px 40px;
    position: relative;

}
component-grid-category-h .category .cat4 .category_table .category_table_cell .text_cat .text_catwrap{
    transition: all ease-in-out .2s;
   /* margin: 30px auto;*/
    position: relative;
}
component-grid-category-h .category .cat4 .category_table .category_table_cell .text_cat .text_catwrap .text_cat_wrap{
    line-height: 1.35;
    font-weight: 600;
    color: #fff;
}

component-grid-category-h .category .cat4 .category_table .category_table_cell:hover .text_cat {
    transform: translateY(0);
}