
.ShopContainer {
	display: flex;
	justify-content: center;
	grid-gap: 60px;
	box-sizing: border-box;
	margin-left: 100px;
	margin-right: 100px;
}

a:hover {
	text-decoration: none;
}

.Shop {
	display:flex;
	flex-direction: column;
	background-color: #f8f8f8;
	border-bottom-color: #FF0000;
	border-bottom-style: solid;
	border-width: 4px;	
}

.ShopMedia {
	width: 100%;
	transition: opacity 1s;
	opacity: 1;
}

.ShopMedia img {
	width: 100%;
}


.Shop h4 {
	text-align: center;
	color: black;
	transition: color 1s ease;
}

.ShopH4Buffer {
	height: 10px;
}

.ShopH4Div{
	flex-grow: 1;
	background-color: #f8f8f8;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;	

	background: linear-gradient(to right, #f8f8f8 50%, red 50%);
	background-size: 200% 100%;
	background-position:left bottom;
	transition:all 1s ease;
}


.Shop:hover{
	cursor: pointer;
}	

.Shop:hover > .ShopMedia{
	opacity: 0.6;
	transition: all 1s ease;
}

.Shop:hover > .ShopH4Div  {
	background-color: rgba(227,30,36, 1);
	background-position:right bottom;
}

.Shop:hover > .ShopH4Div > h4{
	color: white;
}
		

.Shop img:hover {
  color: #cccccc;
}

@media only screen and (max-width: 750px) {

	.ShopContainer{

		flex-direction: column;

		align-items: center;
	}

	.ShopContainer img{

		width: auto;

	}

  }