.allProduct{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

}
.product{
	width: 20%;
	margin: 0.5em;
}
.product-images {
    position: relative;
    width: 100%;
}
.product-images img {
    width: 100%;
    display: block;
    transition: opacity 0.5s ease;
}
.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product:hover .img-hover {
    opacity: 1;
}

.product:hover .img-default {
    opacity: 0;
}
.name{
	font-size: 1.3vw;
	font-family: BebasNeueFont;
	color: #ddd;
	text-decoration: none;
	text-transform: uppercase;
}
.price{
	margin: 0px;
	text-align: right;
	font-size:2vw;
}
.category_Header{
	margin-left: 0.5em;
	margin-bottom: 1em;
	margin-top: 0.5em;
	width: 100%;
	text-transform: uppercase;
}

/*all product pages*/
.aboutProduct{

	display: flex;
	width: 100%;
	margin: 1%;
}
.productImage{
	margin-left: 5%;
	
}
.productInfo{
	width: 100%;
	margin: 1em 2em;
}
.buttons{
	width: 100%;
	text-align: right;
	margin-right:1em ;
	margin-top: 1em;
}
.buttons button{
	width: 20%;
	font-size: 2vw;
	font-family: BebasNeueFont;
	color: #000;
	text-decoration: none;
	text-transform: uppercase;
	background-color: #fff ;
	border: 0.1em #000 solid;
	border-radius: 0.5em;
	margin-left: 1em;
}