* {
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-o-text-size-adjust: none;
	text-size-adjust: none;
	
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	
	font-family: Arial, Helvetica, sans-serif;
}

html, body {
	width: 100%;
	height: 100%;
}

p, h1, h2, h3, ul, li {
	margin: 0;
	padding: 0;
}

h2 {
	font-size: 30px;
}

p, li {
	font-size: 20px;
}

.section {
	position: relative;
	width: 100%;
	display: block;
}

.content {
	width: 100%;
	height: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 64px;
	text-align: center;
}

.esrb {
	width: 96px;
}

.section.hero {
	overflow: hidden;	
	display: flex;
	align-items: center;
	justify-items: center;
}

.section.hero .logo {
	position: relative;
	width: 100%;
	padding: 64px;
	max-width: 1024px;
	margin: auto;
}

.section.hero .logoDuplicateForIE11 {
	position: absolute;
	
	margin: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	visibility: visible;
}

.section.hero .rusty {
	position: absolute;
	width: 100%;
	height: calc(100% + 4%);
	background-image: url("../images/hero-rusty.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right top;
	
	animation-name: rustyBobOnWater;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-duration: 1.5s;
	animation-timing-function: ease-in-out;
}

@keyframes rustyBobOnWater {
	0% {
		top: 0%;
	}
	100% {
		top: -4%;
	}
}

.textGroup {
	width: 60%;
	position: relative;
	text-align: left;
	color: #ffffff;
}

.content > * {
	margin-top: 40px;
}

.content > *:first-child {
	margin-top: 0;
}

.textGroup > * {
	margin-top: 40px;
}

.textGroup > *:first-child {
	margin-top: 0;
}

.divider {
	background-color: #ffffff;
	height: 2px;
	/*
	height: 15px;
	background-image: url("../images/bar.png");
	background-repeat: repeat;
	background-position: center center;
	background-size: contain;
	*/
}

.divider.black {
	background-color: #000000;
}

.divider.yellow {
	background-color: #F6CB46;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border:none;
}

.section.download2 {
	background-color: #000000;
	color: #ffffff;
}

.section.video {
	background-color: #ffffff;
}

.section.video img {
	position: relative;
	width: 100%;
}

.section.about {
	background-color: #005D70;
	overflow: hidden;
	min-height: 520px;
}

.section.about img {
	position: absolute;
	width: 50%;
	right: 0;
	top: 64px;
	
	transform: translateX(0%);
	opacity: 1;
	transition: 0.5s all ease-out;
}

.section.about img.inactive {
	transform: translateX(15%);
	opacity: 0;
	transition: 0.5s all ease-out;
}

.section.features {
	background-color: #D4F0FB;
	overflow: hidden;
	min-height: 520px;
}

.section.features .textGroup {
	text-align: left;
	float: right;
	color: #000000;
}

.section.features .textGroup > p {
	margin-top: 20px;
}

.section.features .textGroup > p:first-of-type {
	margin-top: 40px;
}

.section.features .content::after {
	content: "";
	clear: both;
	display: table;
}

.section.features img {
	position: absolute;
	width: 35%;
	left: 5%;
	top: 64px;
	
	transform: translateX(0%);
	opacity: 1;
	transition: 0.5s all ease-out;
}

.section.features img.inactive {
	transform: translateX(-15%);
	opacity: 0;
	transition: 0.5s all ease-out;
}

.section.download .content {
	text-align: center;
}

.actionButton {
	text-decoration: none;
}

.actionButton > div {
	position: relative;
	width: 100%;
	max-width: 480px;
	min-height: 56px;
	color: #000000;
	background-color: #eeeeee;
	text-align: center;
	padding: 16px;
	background-origin: content-box;
	margin: auto;
	margin-top: 16px;
	border-style: solid;
	border-width: 2px;
	border-color: #999999;
	border-radius: 8px;
}

.actionButton > div > * {
	margin: auto;
}

.actionButton.itchio > div {
	position: relative;
	background-image: url("../images/itchio-logo-black-new.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}

.section.download .social {
	position: relative;
	border-style: solid;
	border-width: 2px;
	border-color: #005D70;
	border-radius: 8px;
	max-width: 1024px;
	margin: auto;
	margin-top: 40px;
	padding-top: 32px;
	padding-left: 32px;
	padding-right: 32px;
	padding-bottom: 16px;
	
	text-align: center;
}

.section.download .social > h2:first-child {
	margin-top: 0px;
}

.section.download .content > h2:first-child {
	font-size: 50px;
}

.section.download a {
	
}

.section.download a > img {
	height: 64px;
	margin: 16px;
}

.section.extras {
	background-color: #005D70;
	overflow: hidden;
	min-height: 520px;
}

.section.extras img {
	position: absolute;
	width: 40%;
	right: 4%;
	top: 16px;

	animation-name: princessSway;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-duration: 1.5s;
	animation-timing-function: ease-in-out;
	transform-origin: 22% bottom;
}

@keyframes princessSway {
	0% {
		transform: rotate(-2deg);
	}
	100% {
		transform: rotate(2deg);
	}
}

.section.extras .content {
	text-align: right;
}

.section.extras .actionButton > div {
	margin-left: 0;
	/*
	background-color: #F9D596;
	border-color: #5F240F;
	color: #5F240F;
	*/
	margin-top: 48px;
}

/*
.section.extras .actionButton:first-of-type > div {
	margin-top: 40px;
}
*/
.section.extras .actionButton {
	
}

.section.more {
	background-color: #ffffff;/*#D4F0FB;*/
	overflow: hidden;
}

.section.more .textGroup {
	color: #000000;
	
	width: 100%;
	max-width: 896px;
}

.section.more .textGroup > p {
	margin-top: 20px;
}

.section.more .textGroup > p:first-of-type {
	margin-top: 40px;
}

.section.more .content {
	display: flex;
	align-items: center;
	justify-items: center;
	flex-direction: column;
}

.section.more img {
	width: 100%;
}

.section.more .actionButton > div {
	margin-top: 48px;
}

.section.footer {
	background-color: #000000;
}

.section.footer .content {
	text-align: center;
	color: #ffffff;
}

.section.footer .plowgames {
	width: 100%;
	max-width: 210px;
}

.actionButton * {
	font-size: 20px;
}

@media only screen and (max-aspect-ratio: 1/1) {
	.section.about img {
		width: 60%;
		right: -15%;
	}
	
	.section.features img {
		width: 42%;
		left: -4%;
	}
	
	.section.extras img {
		width: 60%;
		right: 0%;
	}
}

@media only screen and (max-width: 1024px) {
	.content {
		padding: 48px;
	}
	
	.section.hero .logo {
		padding: 24px;
	}
	
	p, h1, h2, h3 {
		margin-top: 30px;
	}
	
	.textGroup {
		width: 70%;
	}
	
	.section.about img {
		right: -15%;
		top: 48px;
	}
	
	.section.features img {
		top: 48px;
		left: -6%;
	}
	
	.section.extras img {
		right: -6%;
		top: 48px;
		width: 60%;
	}
	
	.content > * {
		margin-top: 30px;
	}

	.content > *:first-child {
		margin-top: 0;
	}
	
	.textGroup > * {
		margin-top: 30px;
	}

	.textGroup > *:first-child {
		margin-top: 0;
	}
	
	.section.features .textGroup > p:first-of-type {
		margin-top: 30px;
	}
	
	.section.download .social {
		margin-top: 36px;
	}
	
	.section.extras .actionButton > div {
		margin-top: 36px;
	}
	
	.section.more .actionButton > div {
		margin-top: 36px;
	}
	
	.section.more .textGroup > p:first-of-type {
		margin-top: 30px;
	}
	
	.section.download .social {
		padding-top: 24px;
		padding-left: 24px;
		padding-right: 24px;
		padding-bottom: 12px;
	}
	
	.section.download a > img {
		margin: 12px;
	}
}

@media only screen and (max-width: 600px) {
	.content {
		padding: 32px;
	}
	
	.section.hero .logo {
		padding: 16px;
	}
	
	p, h1, h2, h3 {
		margin-top: 20px;
	}
	
	/*
	h2 {
		font-size: 21px;
	}
	*/
	p, li {
		font-size: 14px;
	}
	
	.textGroup {
		width: 80%;
	}
	
	.section.about img {
		width: 70%;
		right: -30%;
		top: 32px;
	}
	
	.section.features img {
		top: 32px;
		left: -17%;
	}
	
	.section.download .content > h2:first-child {
		font-size: 35px;
	}
	
	.section.extras img {
		width: 70%;
		right: -30%;
		top: 32px;
	}
	
	.content > * {
		margin-top: 20px;
	}

	.content > *:first-child {
		margin-top: 0;
	}
	
	.textGroup > * {
		margin-top: 20px;
	}

	.textGroup > *:first-child {
		margin-top: 0;
	}
	
	.section.features .textGroup > p:first-of-type {
		margin-top: 20px;
	}
	
	.section.download .social {
		margin-top: 24px;
	}
	
	.section.extras .actionButton > div {
		margin-top: 24px;
	}
	
	.section.more .actionButton > div {
		margin-top: 24px;
	}
	
	.section.more .textGroup > p:first-of-type {
		margin-top: 20px;
	}
	
	.section.download .social {
		padding-top: 16px;
		padding-left: 16px;
		padding-right: 16px;
		padding-bottom: 8px;
	}
	
	.section.download a > img {
		margin: 8px;
	}
	
	.section.about {
		min-height: 400px;
	}
	
	.section.features {
		min-height: 400px;
	}
	
	.section.extras {
		min-height: 400px;
	}
	
	.section.more {
		
	}
	
	.section.download a > img {
		height: 48px;
	}
}

@media only screen and (max-width: 374px) {
	.section.download a > img {
		height: 32px;
	}
}
