main>section {
	min-height: auto;
	padding: 3rem 0 3rem 0;
	margin-bottom: 3rem;
}

section>div {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;

}

section>div>div {
	width: auto;
	margin: 0 auto;
	position: relative;
	text-align: center;
}

section>div div ul {
	margin-bottom: 2rem;
}

section>div div ul li {
	margin-bottom: .75rem;
}

section>div div h2 {
	margin-bottom: 0;
	line-height: 100%;
}

.prod-images {
	width: 100%;
	margin-bottom: 3rem;
	position: relative;
	overflow: visible;
}

.prod-images img {
	width: 70%;
	height: auto;
	margin: auto;
	display: none;
	position: relative;

}

.prod-colors {
	margin: 1rem 0;
	justify-content: center;
}

.features {
	margin: 2rem 0;
}

.links {
	margin: 2rem 0;
}

.links a {
	margin: 1rem;
}

.links .cta {
	color: var(--black);
	background-color: var(--white);
}

@media (min-width: 768px) {
	section>div {
		align-items: stretch;
	}

	main section>div {
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-direction: row;
	}

	main section>div>div {
		text-align: left;
	}

	.links a:first-of-type {
		margin: 0;
	}

	.prod-colors {
		justify-content: flex-start;
	}

	.prod-images {
		width: 40%;
	}

	.prod-images img {
		width: 40%;
		display: block;
		position: absolute;
	}
}