body {
	background-color: #EFF0F2;
}
.hero.product-page {
  position: relative;
  background-image: url("./images/product_title.jpg");
  background-repeat: repeat-x;
  background-position: top center;
  background-size: cover;
  color: #fff;
  text-align: center;
  /*padding: 120px 20px;*/
  height: 358px;
  margin-bottom: 80px;
}
h1 {
	font-size: 3.4rem;
	color: #fff;
	font-weight: 300;
	/*margin-top: 100px;*/
}
.product-content {
  position: relative;
  text-align: center;
  z-index: 1;
  padding-top: 160px;
}
.products {
    display: flex;
	margin: 20px 0;
	flex-wrap: wrap;
}
.products li {
	list-style-type: none;
	margin: 50px;
}
.products .product {
	width: 300px;
	margin: 20px;
}
.products .product a {
	font-size: 0.8rem;
	color: #333;
	text-decoration: none;
}
.products .product a:hover {
	opacity: 0.6;
}
.categories {
	display: flex;
	flex-wrap: wrap;
	margin: 60px 0;
}
.cat {
	flex: 1;
	margin-bottom: 50px;
	justify-content: center;
	align-items: center;
	width: calc(100% / 2);
}
.cat a {
	width: 300px;
	display: block;
	margin: 0 auto;
}
.cat a img {
	object-fit: contain;
	width: 300px;
	height: 300px;
	text-align: center;
}
.cat a {
	color: #666;
	text-decoration: none;
	font-weight: bold;
}
.cat a:hover {
	opacity: 0.6;
	color: #ff7700;
}
.cat p {
	text-align: center;
}
.product-list {
	margin: 100px auto;
}
#product-table {
	border-collapse: collapse;
	margin: 0 auto;
	width: 100%;
}
#product-table .image {
	width: 100px;
}
#product-table .image img {
	width: 100px;
	height: 100px;
}
#product-table .name {
	padding: 0 10px;
}
#product-table tr, #product-table td, #product-table th {
	border: 1px solid #aaa;
}
#product-table th {
	background: #87CEFA;
}
@media (max-width: 768px) {
	#product-table th, #product-table td {
		width: 100%;
		display: block;
	}
	#product-table tr {
		border: none;
	}
	#product-table td {
		border-bottom: none;
	}
	#product-table td:first-child {
		background: #87CEFA;
	}
	#product-table tr:last-child {
		border-bottom: 1px solid #aaa;
	}
	.table-title {
		display: none;
	}
	.cat {
		width: 100%;
	}
}
#product-area {
	display: flex;
	flex-wrap: wrap;
}
#category-title {
	font-weight: 300;
	font-size: 2.0rem;
	text-align: center;
	color: #175996;
	padding: 20px 0;
}
.product-link {
	width: calc(100% / 3);
}
.product-link img {
	width: 100%;
	padding: 50px;
}
.product-link p {
	text-align: center;
}
@media (max-width: 768px) {
	.product-link {
		width: 100%;
	}
}