.products .container {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 100px 0;
}
.products__hero {
	margin: 40px 0;
}
.products__hero .inner {
	border: 1px solid #ccc;
	text-align: center;
}
.products__hero .image {
	position: relative;
	z-index: 1;
	height: 450px;
	background-color: rgba(0,114,188,1);
	overflow: hidden;
}
.products__hero .description {
	border-top: 0;
	text-align: center;
	padding: 30px 15% 0;
	margin-bottom: 10px;
	height: 150px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}
.products__hero .description:after {
	content:'';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	display: block;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	opacity: 1;
}
.products__hero .description.expanded {
	height: auto;
}
.products__hero .description.expanded:after {
	opacity: 0;
}
.products__hero .image img {
	display: block;
	min-width: 100%;
	min-height: 100%;
	max-width: inherit;
	width: auto;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
	opacity: .7;
	transition: all 0.3s ease-out;
}
.products__hero .image:hover img {
	opacity: .5;
}

.products__hero a.more {
	display: inline-block;
	margin-bottom: 30px;
}
.products__grid_item .inner {
	border: 1px solid #ccc;
	text-align: center;
}
.products__grid_item .image {
	position: relative;
	z-index: 1;
	height: 300px;
	overflow: hidden;
	background-color: rgba(0,115,74,0.7);
}
.products__grid_item .image img {
	display: block;
	min-width: 100%;
	min-height: 100%;
	max-width: inherit;
	width: 100%;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
	opacity: .8;
	transition: all 0.3s ease-out;
}
.products__grid_item .description {
	text-align: center;
	padding: 30px 20px 0;
	margin-bottom: 10px;
	height: 150px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}
.products__grid_item .description:after {
	content:'';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	display: block;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	opacity: 1;
}
.products__grid_item .description.expanded {
	height: auto;
}
.products__grid_item .description.expanded:after {
	opacity: 0;
}
.products__grid_item .image:hover img {
	opacity: .3;
}

.products__grid_item a.more {
	display: inline-block;
	margin-bottom: 30px;
}

@media (max-width: 1200px) {
	.products {
		padding: 0 15px;
	}
	.products .container {
		padding: 70px 0;
	}
	.products__grid_item .image img {
		width: 100%;
	}
}

@media (max-width: 992px) {
	.products .container {
		padding: 30px 0;
	}
	.products__hero .image {
		height: 400px;
	}
	.products__hero .image img {
		height: 100%;
	}
	.products__grid_item .image {
		height: 220px;
	}
}

@media (max-width: 992px) {
	.products__hero .image {
		height: 270px;
	}
	.products__hero h2 {
		font-size: 20px;
	}
	.products__hero .description {
		padding: 30px 20px 0;
		height: 200px;
	}
	.products__grid_item {
		margin-bottom: 30px;
	}
	.products__grid_item h2 {
		font-size: 20px;
	}
	.products__grid_item .description {
		padding: 30px 20px 0;
		height: 200px;
	}
}