:root {
	--main-content-height: calc(100% - 192px);
}

/*MAIN CONTENT*/
.mainProduct,
.secondaryProducts {
	display: inline-block;
	vertical-align: top;
	width: 100%;
}

.productContainer {
	position: relative;
	width: 100%;
	clear: both;
	display: inline-block;
	vertical-align: top;
	padding-top: 56.25%;
	overflow: hidden;
	margin-bottom: 20px;
}

.secondaryProducts .productContainer:last-of-type {
	margin-bottom: 0px;
}

.productImage {
	position: absolute;
	max-width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
}

.productInfo {
	position: absolute;
	height: 100%;
	color: var(--main-fg);
	width: 100%;
	text-align: center;
	top: 0px;
	left: 0px;
	background: var(--transparent-bg);
}

.productInfoInner {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);	
}

.productInfo h1 {
	width: 100%;
	margin: 0px 0px 20px 0px;
	text-transform: uppercase;
	font-family: 'interstate-condensed', sans-serif;
}

.productInfo a.productButton {
	display: inline-block;
	border: solid 3px var(--main-fg);
	line-height: 30px;
	padding: 0px 30px;
	color: var(--main-fg);
	border-radius: 15px 0px;
	width: 100px;
	transition: color 250ms, background 250ms;
	-webkit-transition: color 250ms, background 250ms;
	-moz-transition: color 250ms, background 250ms;
}

@media (min-width: 38em) {
	.mainProduct .productContainer {
		padding-top: 50%;
		width: calc(50% - 10px);
		margin-right: 20px;
	}

	.mainProduct .productContainer:nth-child(2n) {
		margin-right: 0px;
	}	

	.secondaryProducts .productContainer {
		width: calc(50% - 10px);
	}

	.secondaryProducts .productContainer:last-of-type {
		margin-left: 20px;
	}

	.productImage {
		max-height: unset;
		width: 100%;
	}

	.secondaryProducts .productContainer {
		padding-top: 50%;
		margin-bottom: 0px;
	}

	.productInfo a.productButton:hover {
		background: var(--main-fg);
		color: var(--main-bg);
	}
}

@media (min-width: 64em) {
	.mainProduct {
		width: 66.666%;
	}

	.mainProduct .productContainer {
		width: 50%;
		padding-top: calc(56.25% + 20px);		
		border-right: solid 20px #ffffff;
		margin-bottom: 0px;
		margin-right: 0px;
	}

	.mainProduct .productImage {
		max-height: 100%;
		width: unset;
		max-width: unset;
	}

	.secondaryProducts {
		width: 33.333%;
	}

	.secondaryProducts .productContainer {
		width: 100%;
		padding-top: 56.25%;
		margin-bottom: 20px;
	}

	.secondaryProducts .productContainer:last-of-type {
		margin-left: 0px;
		margin-bottom: 0px;
	}
}