.w_category {
}
.w_category .cate-item-wrapper:nth-child(odd) {
    background-position-x: left;
}
.w_category .cate-item-wrapper:nth-child(even) {
    background-position-x: right;
}

.w_category .cate-item-wrapper {
    margin-bottom: 20px;
    background-size: 88%;
    background-repeat: no-repeat;
    background-position: center left;
    background-position-x: -43px;
}
.w_category .cate-item-wrapper   .cate-item-wrapper-inner{

    background: linear-gradient(to left, white 0%, white 48%, rgba(255, 255, 255, 0) 75%);
    border: 1px solid #FFF;
    box-shadow: 0 0 18px lightgrey;
    display: flex;
    justify-content: end;

}
.w_category .cate-item-wrapper:nth-child(even) .cate-item-wrapper-inner {
    background: linear-gradient(to right, white 0%, white 48%, rgba(255, 255, 255, 0) 75%);
    justify-content: start;
    
}
.w_category .cate-item-wrapper  .cate-item-wrapper-inner .cate-content{

    padding: 30px 10px;
    text-align: center;
    width: 60%;
}

.w_category .cate-item-wrapper  .cate-item-wrapper-inner .cate-content .cate-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primaryCl2);
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    margin-bottom: 10px;

    
   
}
.w_category .cate-item-wrapper  .cate-item-wrapper-inner .cate-content p{
    display: -webkit-box;
    -webkit-line-clamp: 2;  
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.w_category .cate-item-wrapper  .cate-item-wrapper-inner .cate-content a {
    font-size: 16px;
    color: var(--primaryCl);
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;

}

@media screen and (min-width:768px) {
    .w_category .cate-item-wrapper{
        background-size: 50%;
    } 
}
@media screen and (min-width:992px) {
    .w_category .cate-item-wrapper{
        background-size: 53%;
    }
}
