html,
body {
	background-color: #fff;
	background:url(../images/product-background6.jpg);
	background-attachment:fixed;
}

#landing {
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(../product/images/category-bg.jpg);
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(../product/images/category-bg.jpg);
	background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(../product/images/category-bg.jpg);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(../product/images/category-bg.jpg);
	background-attachment: fixed;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#landing h1,
#landing p {
	color: #fff;
	text-align: center;
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
}

.category {
	padding-bottom: 0;
	min-height: 60%;
}
.category:not(:target) {
	display: none;
}
/*.category:not(:last-of-type) > .product-group {
	border-bottom: 1px solid #aaa;
}*/
.category h2 {
	text-align: left;
	padding-left: 20px;
	color: #0065AC;
	font-size: 45px;
}

.category h3 {
	text-align: center;
	padding: 10px;
	color: #0065AC;
	font-size: 33px;
	--background-color:#fff;
}
/*.container-a{
	background-color:#fff;
	width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
	--opacity:0.5;
}*/

.product-group {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	
}
.product-group > * {
	margin: 0 var(--padding-lr) var(--header-height) 0;
}
.product-group > *:nth-of-type(3n) {
	margin-right: 0;
}
.product-group a {
	display: block;
	font-weight:bold;
	font-size: 1.00em;
	line-height: 22px;
	text-align: center;
	color:#5C5B5E;
	text-decoration: none;
	width: 315px;
	height: 285px;
	transition-property: width, height;
	transition-duration: 0.5s;
}

.product-group a:hover {
	color:#3ED8FF;
	background-color:#D6F9FF;
	width: 325px;
	height: 300px;
}
.product-group img {
	width: 315px;
	height: 255px;
	object-fit: contain; /* fill (default) | contain | cover | none | scale-down */
	/*border: 1px solid #e5e5e5;*/
}
@media (min-width:641px) {
	.product-group > *:nth-of-type(3n) {
		margin-right: var(--padding-lr);
	}
	.product-group > *:nth-of-type(4n) {
		margin-right: 0;
	}
	.product-group a {
		width: 390px;
		height: 370px;
		transition-property: width, height;
	    transition-duration: 0.5s;
	}
	.product-group a:hover {
		width: 400px;
	    height: 380px;
    }
	.product-group img {
		width: 390px;
		height: 330px;
	}
}
@media (min-width:801px) {
	.product-group > *:nth-of-type(4n) {
		margin-right: var(--padding-lr);
	}
	.product-group > *:nth-of-type(5n) {
		margin-right: 0;
	}
	.product-group a {
		width: 390px;
		height: 370px;
		transition-property: width, height;
	    transition-duration: 0.5s;
	}
	.product-group a:hover {
		width: 400px;
	    height: 380px;
    }
	.product-group img {
		width: 390px;
		height: 330px;
	}
}
@media (min-width:1281px) {
	.product-group a {
		width: 390px;
		height: 370px;
		transition-property: width, height;
	    transition-duration: 0.5s;
	}
	.product-group a:hover {
		width: 400px;
	    height: 380px;
    }
	.product-group img {
		width: 390px;
		height: 330px;
	}
}

#submenu {
	background-image:url(../images/submenu.png);
	color: #fff;
	font-size: 0.8em;
	padding: 35px;
	margin-top: var(--header-height);
}
#submenu h3 {
	color: #fff;
	margin-bottom: var(--padding-lr);
}
#submenu ul {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
#submenu li {
	width: 100%;
	text-align: center;
	padding: 0.5em;
}
@media (min-width:481px) {
	#submenu li {
		width: 50%;
	}
}
@media (min-width:769px) {
	#submenu li {
		width: 33.3333%;
	}
}
@media (min-width:1280px) {
	#submenu li {
		width: 33.3333%;
	}
}
#submenu a {
	display: block;
	color: #fff;
	font-weight: 500;
	line-height: 1.2em;
	text-decoration: none;
	--max-width:250px;
	
}
#submenu a:hover {
	color:#3ED8FF;
}

