.shop_by_cat {	
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));	
    grid-gap: 10px;	
    margin-bottom: 0;	
    padding-left: 0 !important;	
    list-style: none !important;	
    margin-top: 30px;	
    margin-bottom: 50px;	
}	
	
@media screen and (max-width: 400px) {	
    .shop_by_cat {	
    	grid-template-columns: repeat(1, 1fr);
    }	
}	
	
.shop_by_cat_item {	
	border: 1px solid #CCCCCC;
}	
	
.shop_by_cat_link {	
    background-color: #14477D;	
	color: white;
    display: inline-block;	
    width: 100%;	
    text-align: center;	
    padding: 20px 20px;	
}	
	
.shop_by_cat_link:hover {	
	color: white;
}	
	
.shop_by_cat_img img {	
	width: 100%;
    height: 200px;	
    object-fit: cover;	
}	
	
.shop_by_cat_name {	
	margin-bottom: 0;
    display: inline-block;	
    width: 100%;	
    padding: 47px 32px;	
    background-color: #F8F8F8;	
    font-size: 18px;	
}