.products{
	text-align: center;
	padding: 100px;
	color: white;
	background: linear-gradient(rgba(0,0,89,.7), rgba(0,0,0,1)), url("../_images/products.jpg") no-repeat fixed center;
}
.products img{
	width: 300px;
	transition: .5s ease;
	backface-visibility: hidden;
}
.prod{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 50px auto 0 auto;
	max-width: 1300px;
}
.prod div{
	margin: 0 10px;
}
.prod h4{
	margin: 20px 0 30px 0;
}
.products a{
	border-radius: 5px;
	padding: 10px 20px;
	background: #FF5722;
	color: white;
}
.products a:hover{
	background-color: #ff7d2f;
}
.middle{
	transition: .5s ease;
	opacity: 0;
	position: absolute;
	top: 35%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.proddiv:hover img {
  opacity: 0.3;
}

.proddiv:hover .middle {
  opacity: 1;
}


@media (max-width: 1500px){
	.products{
		padding: 50px;
	}
}