
.category__unity{
    background: none; 
    width: 50%;  
}

.category__image{
    background: #f1f1f1;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
}

.category__image img{
    border-radius: 4px;
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    transition: .3s all;
}

.category__image img:hover{
    opacity: .8;
    transform: scale(1.01);
    transition: .3s all;
}

.category__info{
   /* display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
    */
}

.category__title{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.category__title a{
    color: #333;    
    text-decoration: none;
    transition: .3s all;
}

.category__title a:hover{
    color: var(--bs-primary);
    text-decoration: none;
    transition: .3s all;
}


@media only screen and (max-width: 576px) {
    
    .category__unity{
        background: none;
       
    }

    .category__title{
        
    }

}/* Media Query SMALL >= 576px */

@media only screen and (min-width: 768px) {

    .category__unity{
        background: none; 
        width: 33.33%;  
    }

    .cartory_card{
        display: flex;
    }

    .category__image{
        width: 40%;        
    }

    .category__image img{
        width: 100%;
    }

    .category__info{
        width: 100%;
        background-color: #fff;
    }

    .category__title{        
        text-align: left !important;
    }

}/* Media Query MD >= 768px */

@media only screen and (min-width: 992px) {}/* Media Query LG >= 992px */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {}/* Media Query XL >= 1200px */