.product-category-wrapper{
    padding: 56px 51px;
    flex-direction: column;
    background-color: #F1F1F1;
}
.product-category-wrapper > div{
    margin: auto;
}
.product-category-wrapper .image img{
    height: 221px;
    object-fit: cover;
    transition: all .1s;
}
.product-category-wrapper:hover .image img{
    transform: scale(1.05) rotate(4deg);
}
.product-category-wrapper .button{
    margin-top: 64px;
}
.btn-cwb-term{
    background: #FFFFFF;
    border-radius: 8px;
    box-sizing: border-box;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: #111827;
    align-items: center;
    padding: 24px 36px;
    min-width:215px;
}
.btn-cwb-term span{
    transition: all .3s;
}
.btn-cwb-term span:first-child{
    margin-right: 16px;
}
.btn-cwb-term:hover span:last-child{
   transform: translateX(5px);
}
.chw-category-product-wrapper{
    gap: 20px
}
.chw-category-product-wrapper > div {
    width: 25%;
}
.chw-category-product-wrapper .cat-link {
    width: 290px;
    height: 180px;
    background: linear-gradient(116.79deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0.48) 99.45%);
    backdrop-filter: blur(50px);
    border-radius: 0px 8px;
    padding: 30px;
}
.chw-category-product-wrapper .cat-link a::before{
    content: "";
    position: absolute;
    width: 69px;
    height: 1px;
    left: 0;
    top: calc(100% + 5px);
    background: #111827;
}
.chw-category-product-wrapper .image,
.chw-category-product-wrapper .image img{
    height: 100%;
    width: 100%;
}
.chw-category-product-wrapper .category-product img{
    display: block;
    margin: auto;
}
.chw-category-product-wrapper .category-product{
    border: 1px solid #E6E7EC;
    border-radius: 8px;
    padding: 25px
}
p:empty{
    display: none;
}
.chw-category-product-wrapper .category-product p::before{
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    left: 0;
    top: calc(100% + 5px);
    background: #E6E7EC;
    border-radius: 6px;
}
.chw-category-product-wrapper .category-product ins{
    border: 0;
}
@media only screen and (max-width: 991px) {
    .chw-category-product-wrapper > div {
        width: 48%;
    }
    .chw-category-product-wrapper{
        flex-wrap: wrap;
    }
    .chw-category-product-wrapper .category{
        border: 1px solid #E6E7EC;  
    }
  }
  @media only screen and (max-width: 767px) {
    .chw-category-product-wrapper > div {
        width: 100%;
    }
  }