@charset "utf-8";
@import "https://fonts.googleapis.com/css2?family=Lora:wght@700&display=swap";
/* CSS Document */
html,
html * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, 'sans-serif';
	font-size: 1vw;
	background: white;

}

body p {
	line-height: 1.25em;
	margin-top: .75em;
	font-size: 12pt;

}



a, a:visited {
	color: inherit;
}

header {
	position: fixed;
	padding: 1em;
	z-index: 21000;
	top: 0;
	left: 0;
	width: 100%;
	background: #FFFFFF;
}

.site-logo {
	position: relative;
	display: block;
	float: left;
	
}

.site-logo img {
	width: 10em;
}


.logo {
	opacity: 1;
}

.site-nav {
	position: relative;
	float: right;
	z-index: 400;
	top: 0;
	left: 0;
	display: block !important;
	width: 80%;
	padding: .75em .75em 0 0;
	opacity: .95;
	background: none;
}

.site-nav ul {
	list-style-type: none;
	margin: 0;
	text-align: right;
}

.site-nav ul li {
	display: inline-block;
	margin-bottom: 0;
	margin-left: 1.5em;
}

.site-nav ul li a {
	font-size: 12pt;
	padding-bottom: .5em;
	text-decoration: none;
	letter-spacing: .1em;
	color: #000000;
	transition: color .3s;
	font-weight: bold;
}

.site-nav ul li a:hover {
	outline: none;
	border-bottom: 1px solid white;
}

nav {
	z-index: 400;
	top: 0;
	left: 0;
	opacity: .95;
	background: #0000A3;
	position: relative;
	display: block !important;
	float: right;
	width: 30%;
	padding: .75em 1em 0 0;
	height: 1.5em;
}

#menu-icon {
	background: url(images/nav-menu-01.png);
	display: hidden;
	width: 32px;
	height: 32px;
}

@media only screen and (max-width: 640px) {
	header {
		position: absolute;
		padding: 0;
		z-index: 21000;
		top: 0;
		right: 0;
		width: 100%;
		height: 33px;
		background: #FFFFFF;
	}
	
	#menu-icon {
		display:block;
		float:right;
		top: 0;
		right: 0;
	}
	
	nav ul, nav:active ul {
		display: none;
		float:left;
		top: 0px;
		right: 0px;
		position:relative;
/*		padding: 20px; 
*/		background: #fff;
	}
	
	nav:hover ul {
		display: block;
		top: 0px;
		right: 0px;
	}
	
	nav li {
		text-align: center;
		top: 0px;
		right: 0px;
		width: 100%;
		padding: 15px 0;
		margin: 0;
	}
	
}

.splasher {
	position: relative;
	height: 54em;
	background-color: #007900;
}

.splasher img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

.splasher-content {
	font-family: 'Cooper Black', 'Lora', 'Arial Black', Impact, 'serif';
	color: #fff;
	position: absolute;
	z-index: 20000;
	padding-top: 4em;
	padding-bottom: 10em;
	top: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
}

.small-splash {
	position: relative;
	height: 20.75em;
	background-color: #007900;
}

.small-splash-content {
	font-family: 'Cooper Black', 'Lora', 'Arial Black', Impact, 'serif';
	color: #fff;
	position: absolute;
	z-index: 20000;
	padding-top: 3.25em;
	padding-bottom: 10em;
	top: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
}

.small-splash img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

h2 {
	font-family: "Cooper Black", "Lora", "Arial Black", Impact, "sans-serif";
	/*font-weight: 500;*/
	font-size: 20pt;
	margin-bottom: 1.5%;
	text-transform: uppercase;

}

h1 {
	font-family: "Cooper Black", "Lora", "Arial Black", Impact, "sans-serif";
	margin-bottom: 1.5%;
	font-size: 24pt;
}

h3 {
  font-family: "Cooper Black", "Lora", "Arial Black", Impact, "sans-serif";
   font-size: 18pt;
  /*font-weight: 100; */
	margin-bottom: 1.5%;
  color: #007900;
  text-transform: uppercase;
}

h4 {
  font-family: "Cooper Black","Lora", "Arial Black", Impact, "sans-serif";
   font-size: 10pt;
  /*font-weight: 100; */
	margin-bottom: 1.5%;
  color: #007900;
}

.form-contact {
	
}

.form-contact form {
	display:table;
}

.form-contact div {
	display: table-row;
	margin-bottom: 1.5%;
}

.form-contact fieldset {
	border: 0px;
}

input[type=text],[type=email] {
	display: table-cell;
	margin-bottom: 15px;
	width: 100%;
	border: 0px;
	border-bottom: 2px solid #007900;
	border-right: 2px solid #007900;
	background: #EEEEEE;
}


label {
	display: inline;
	margin-bottom: 15px;
	width: auto;
	padding-right: 10px;
}

textarea {
	background: #EEEEEE;
	margin-bottom: 10px;
	width: 100%;
	border: 0px;
	border-bottom: 2px solid #007900;
	border-right: 2px solid #007900;
	resize: none;
	box-sizing: border-box;
}

input[type=button], input[type=submit], input[type=reset] {
	background-color: #007900;	
	border: none;
	color: white;
	padding: 10px 10px;
	text-decoration: none;
	margin: 4px 2px;
	cursor: pointer;
}

.aligncenter {
	text-align: center;
}

.alignright {
	text-align: right;
}

.general-page {
	position: relative;
	background-image: linear-gradient( 180deg, #007900 0%, #FFFFFF 100%);
	padding-top: 4em;
}

.general-page img {
	float: left;
	width: 20em;
}

.intros {
	position: relative;
	width: 100%;
	overflow: hidden;
	color: #000000;
	background: #fff;
	/*padding: 1em 6em;*/
}

.intro {
	display: flex;
}

/*.intro-text {
	position: relative;
}*/
.intro .intro-text {
	padding: 1% 1%;
	background: #fff;
	color: #000000;
	vertical-align:top;
	width: 100%;
}

.intro .intro-gray {
	padding: 1% 1%;
	background: #DDDDDD;
	color: #000000;
	vertical-align: top;
	width: 10em;	
}

.intro-text img {
	float: right;
	width: 20em;
}

.intro h1 {
	font-family: "Cooper Black", "Lora", "Arial Black", Impact, "sans-serif";
	margin-bottom: .5em;
	font-size: 26pt;
	text-shadow: 0px 0px 10px rgpa(0,0,0,.05);
}

.intro-text p {
	font-family: Arial, "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, "sans-serif";
	/*font-family: "Arial Black", Impact, Haettenschweiler, "Franklin Gothic Bold", "sans-serif";*/
	color: #000000;
	text-align: left;
	font-size: 14pt;
	/*line-height: 1.5em;
	margin-top: .75em;*/
}

.intro-text ul {
	font-family: Arial, "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, "sans-serif";
	color: #007900;
	text-align: left;
	font-size: 14pt;
	line-height: 1.25em;
	margin-left: 1.5em;
	font-weight: bold;
}


.intro .intro-text2 {
	position: relative;
	padding: 1% 1%;
	background: #fff;
	color: #000000;
	vertical-align:top;
	width: 100%;
}

.intro-text2 p {
	font-family: Arial, "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, "sans-serif";
	color: #000000;
	text-align: left;
	font-size: 14pt;
	width: 100%;

}

.intro-text2 ul {
	font-family: Arial, "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, "sans-serif";
	color: #007900;
	text-align: left;
	font-size: 14pt;
	line-height: 1.25em;
	margin-left: 1.5em;
	font-weight: bold;
}



.intro-text2 img {
	float: left;
	width: 35em;
}

.cards {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.card {
	display: flex;
}

.card .card-piece {
	padding: 2em 0em 2em 0em;
	background-image: linear-gradient( 90deg, #007900 0%, #FFFFFF 100%); 
	width: 15em;
}

.card figure {
	position: relative;
	vertical-align: middle;
	padding: 10% 10%;
}

.card figure img {
	width: 10em;
}

.card .card-story {
	background: #0000A3;
	color: #FFFFFF;
	width: 100%;
	padding: 2em 3em 2em;
}

.card .card-story p {

}

.gen-splits {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.gen-split {
	display: flex;
}

/*.gen-split img{
	border: 0px;
	width: auto;
} */

.gen-split .gen-pad-white {
	width: 10em;
	background: #FFFFFF;
}

.gen-split .gen-pad-gray {
	width: 10em;
	background: #DDDDDD;
}

.gen-split .gen-pad-green {
	width: 10em;
	background: #007900;
}

.gen-split .gen-split-wide {
	padding: 1% 1%;
	background: #fff;
	color: #000000;
	vertical-align: top;
	width: 100%;
}

.gen-split .gen-split-columns {
	padding: 1% 1%;
	background: #fff;
	color: #000000;
	vertical-align: top;
	width: 100%;
	column-count: 2;
	column-fill: balance;
	column-gap: 4px;
	column-width: 10vw;
}

.gen-split .gen-split-gray {
	padding: 1% 1%;
	background: #DDDDDD;
	color: #000000;
	vertical-align: top;
	width: 50%;	
}

.gen-split figure {
	float: left;
	vertical-align: text-top ;
	padding: 1% 1%;
}

.gen-split figure img {
	width: 25em;
}

.gen-split ul li {
	padding-left: 50px;
}


.gen-split .gen-split-white {
	background: #FFFFFF;
	color: #000000;
	width: 50%;
	padding: 1% 1%;
	vertical-align: top;

}

.downloads {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.download {
	display: flex;
}

.download .download-left {
	padding: 1% 1%;
	background: #fff;
	color: #000000;
	vertical-align: top;
	width: 50%;
}

.download .download-right {
	padding: 1% 1%;
	background: #fff;
	color: #000000;
	vertical-align: top;
	width: 50%;
}

.download .download-middle {
	padding: 1% 1%;
	background: #fff;
	color: #000000;
	vertical-align:top;
	width: 100%;
}

.download .download-gray {
	padding: 1% 1%;
	background: #DDDDDD;
	color: #000000;
	vertical-align: top;
	width: 10em;	
}

.download a {
	color: #000000;
	font-weight: bolder;
	padding: 2px 2px;
}

.download figure {
	float: left;
	vertical-align: text-top ;
	padding: 1% 1%;
}

.download figure img {
	width: 18em;
	background: #FFFFFF;
}

.game-infos {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.game-info {
	display: flex;
	align-content: center;
}

.game-info p {
	vertical-align: middle;
}

.game-info figure {
	vertical-align: bottom;
	padding: 1% 1%;
}

.game-info figure img {
	width: 25em;
}

.game-info .game-info-middle {
	padding: 1% 1%;
	background: #fff;
	color: #000000;
	vertical-align: top;
	width: 100%;
}

.game-info .game-info-middle-gray {
	padding: 1% 1%;
	background: #EEEEEE;
	color: #000000;
	vertical-align: top;
	width: 100%;
}

.game-info .game-info-padgray {
	width: 10em;
	background: #DDDDDD;
}


.social-icons {
	background: #666666;
	text-align:center;
	color: #ffffff;
}

.social-icons img {
	width: 35px;
	height: 35px;
	padding: 0px 0px;
	margin: 15px;	
}

footer {
	margin-top: -4em;
	padding: 3.75em 2em 3em 2em;
	height: 15em;
	background-image: linear-gradient( 90deg, #666666 0%, #333333 100%);
}

footer p {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	text-align: center;
	color: #FFFFFF;
	font-weight: 100; 
}

footer img {
	width: 35px;
	height: 35px;
	padding: 0px 0px;
	margin: 15px; 
}

footer a {
	text-decoration: none;
	color: #000000;
}
.footerlinks {
	align-content: center
}

.footerlinks p {
	font-family: Arial, "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, "sans-serif";
	text-align: center;
	color: #FFFFFF;
	font-weight: 600; 
}
