@charset "UTF-8";
/* reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-family: poynter-oldstyle-text, serif;font-weight: 400;font-style: normal;font-size:100%;vertical-align:baseline}
html{line-height:1}
ol,ul{list-style:none}
table{border-collapse:collapse;border-spacing:0}
caption,th,td{text-align:left;font-weight:400;vertical-align:middle}
q,blockquote{quotes:none}
q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}
a img{border:none}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}
*,:before,:after{box-sizing:border-box}
html,body{width:100%;min-height:100%;position:relative}
body{-webkit-backface-visibility:hidden;backface-visibility:hidden;font-size:14px;line-height:1.7; background-color: #e2e5e7;overflow-x: hidden;font-family: poynter-oldstyle-text, serif;font-weight: 400;font-style: normal;}
a{outline:none;text-decoration:none}
img{vertical-align:middle}
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
.isHover{
	transition:opacity .3s ease-in-out;
	-webkit-transition:opacity .3s ease-in-out;
	-moz-transition:opacity .3s ease-in-out;
	-ms-transition:opacity .3s ease-in-out;
}
.isHover:hover {
	opacity:.6;
	cursor:pointer;
}
.bold {
	font-weight: 700;
	font-style: normal;
}
.italic {
	font-weight: 400;
	font-style: italic;
}
/*LOADER*/
#loader-bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #e2e5e7;
	z-index: 1000;
	overflow: hidden;
}
#loader {
	display: none;
	position: absolute;
	z-index: 1001;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 800px;
	text-align: center;
}
#loader p {
	color: #000;
	font-size: 30px;
	position: absolute;
	text-transform: uppercase;
	top: -85px;
	left: 50%;
	transform: translate(-50%)
}
#loader img {
	width: 80%;
	height: auto;
	 -webkit-animation: movement 3s infinite  alternate;
    animation: movement 3s infinite  alternate;
}
@keyframes movement {
    0% { transform: scale(.5); }
    100% { transform: scale(1); }
}

/*NAVIGATION*/
nav {
	width: 100%;
}
button.hamburger {
    display: none;
}
.companyLogo {
	margin-left: 25px;
}
.hamUL {
	background-color: rgb(39, 43, 50);
    position: fixed;
    width: 100%;
    display: block;
    text-align: left;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 0;
    z-index: 100;
	top: 0;
}
.hamUL .container {
	max-width: 1920px;
    margin: 0 auto;
	position: relative;
}
.hamUL img {
	display: inline-block;
	height: 47px;
	visibility: middle;
}
.hamUL li {
    display: inline-block;
	vertical-align: middle;
    width: 100px;
    height: 47px;
    text-align: center;
    color: rgb(253, 253, 227);
    font-size: 10pt;
    margin: 0;
    text-decoration: none;
    position: relative;
}
.hamUL li[data-nav="purchase"] {
	position: absolute;
	right: 0;
	background-color: rgb(221, 158, 37);
}
.hamUL li a {
    outline: none;
    text-decoration: none;
}
nav ul li a p {
    color: #FFF;
	width: 100%;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
}
nav ul li a p:hover {
    color: rgb(0,0,0);
	text-shadow: 0px 0px 5px rgb(255,255,255), 0px 0px 8px rgb(255,255,255), 0px 0px 11px rgb(255,255,255), 0px 0px 15px rgb(255,255,255);
}
@media screen and (max-width: 768px) {
	button.hamburger {
		display: block;
		position: fixed;
		z-index: 100;
		right: 0;
		top: 0;
	}
	.hamUL {
		background-repeat: repeat;	
		right: 0;
	}	
	.hamUL li {
		display: block;
		width: 50%;
		border-left: 1.5px solid rgb(255,255,255);
		border-bottom: 1.5px solid rgb(255,255,255);
	}
	.hamUL img {
		display: none;
	}
	.hamUL li[data-nav="purchase"] {
		position: relative;
		right: 0;
		background-color: transparent;
	}
}

/*HERO*/
#hero {
	position: relative;
	border-bottom: 3px solid #e2e5e7;
}
.heroBG {
	width: 100%;
}
.heroContainer {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 100%;
}
.gameLogo {
    width: 90%;
    max-width: 1500px;
    display: block;
    margin: 0 auto 5%;
}
.releaseDate h3 {
    text-transform: uppercase;
    font-size: 4.5vw;	
}
.releaseDate {
    display: block;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(221,158,37,1) 50%, rgba(255,255,255,0) 100%);
}
@media screen and (min-width: 768px) {
	.releaseDate h3 {
		font-size: 35px;
	}
	.releaseDate {
		width: 80%;
		max-width: 600px;
	}
	.heroContainer {
		transform: translate(-50%, -50%);
	}
	.gameLogo {
		width: 75%;
		margin: 0 auto 2%;
	}
}
@media screen and (min-width: 1024px) {
	.heroContainer {
		transform: translate(-50%, -60%);
	}
}
@media screen and (min-width: 1280px) {
	.heroContainer {
		transform: translate(-50%, -65%);
	}
}
/*Trailer*/
#trailerOnly {
	background-color: #e2e5e7;
	padding: 10% 0;
}
.loneTrailer {
	display: block;
}
.trailerWrapper {
	width: 90%;
	display: block;
	margin: 0 auto;
	position: relative;
}
.trailerImg {
	width: 100%;
}
.playButton {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	width: 50px;
}
.insideStoryTrailer {
	display: none;
}
@media screen and (min-width: 500px) {
	.loneTrailer {
		display: none;
	}
	.insideStoryTrailer {
		display: block;
	}
	.trailerWrapper {
		display: inline-block;
		margin: 0 auto 25px;
		max-width: 600px;
		vertical-align: middle;
	}
}
@media screen and (min-width: 768px) {
	.trailerWrapper {
		width: 30%;
		margin: 0 15px 0 0;
	}
}
@media screen and (min-width: 1400px) {
	.trailerWrapper {
		margin: 0 3% 0 0;
	}
}
/*Story*/
#story {
	position: relative;
}
.positionStory {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 90%;
}
.storyBG {
	width: 100%;
}
.storyContainer {
    background-color: rgba(255,255,255,.8);
    border-radius: 5px;
    border: 1px solid #50545b;
    box-shadow: 0px 0px 10px #000;
    width: 100%;
	max-width: 700px;
    display: block;
    margin: 0 auto;
}
.textGroup {
	padding: 10px;
}
h2 {
	font-size: 25px;
    line-height: 1.2;
}
p {
	font-size: 13px;
    line-height: 1.2;
}
@media screen and (min-width: 500px) {
	.positionStory {
		text-align: center;
	}
	.textGroup {
		text-align: left;
		padding: 30px;
	}
	.storyContainer {
		display: inline-block;
		vertical-align: middle;
	}
}
@media screen and (min-width: 768px) {
	.positionStory {
		width: 95%;
	}
	.storyContainer {
		width: 67%;
	}
	.textGroup {
		padding: 10px;
	}
}
@media screen and (min-width: 1024px) {
	.textGroup {
		padding: 30px;
	}
}
@media screen and (min-width: 1400px) {
	p {
		font-size: 16px;
	}
	h2 {
		font-size: 33px;
	}
}
/*GamePlay*/
#gameplay {
	text-align: center;
	padding-bottom: 30px;
}
.modeContainer {
	width: 95%;
	max-width: 500px;
	display: inline-block;
	text-align: left;
	border-radius: 5px;
	background-color: #fff;
	position: relative;
	height: 650px;
	vertical-align: top;
	margin: 20px 0;
}
.modeImg {
	width: 100%;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
h4 {
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
}
.modeContainer p {
	padding: 0 10px;
}
.sectionHeader {
	font-size: 24px;
	position: relative;
}
.trapezoid {
	width: 80%;
	max-width: 350px;
	position: absolute;
	left: 50%;
	transform:translate(-50%);
	z-index: 0;
}
.sectionHeader h3 {
	position: relative;
	z-index: 2;
}
.underSectionHeader {
	width: 95%;
	display: block;
	margin: 0 auto;
	max-width: 500px;
	position: relative;
	z-index: 2;
	padding: 20px 0;
}
.screenshots {
	width: 100%;
	position: relative;
	margin: 0 auto;
	display: block;
	padding-bottom: 30px;
}
.screenshots img {
	width: 100%;
}
@media screen and (min-width: 400px) {
	#gameplay {
		margin: -30px 0;
		position: relative;
		z-index: 1;
	}
}
@media screen and (min-width: 500px) {
	.modeContainer {
		height: 620px;
	}
	#gameplay {
		margin: 0;
	}
}
@media screen and (min-width: 540px) {
	#gameplay {
		margin: -30px 0;
	}
}
@media screen and (min-width: 768px) {
	#gameplay {
		margin: 0;
	}
}
@media screen and (min-width: 880px) {
	#gameplay {
		margin: -30px 0;
	}
}
@media screen and (min-width: 1080px) {
	.modeContainer {
		margin: 20px 10px;
	}
}
@media screen and (min-width: 1400px) {
	.modeContainer {
		height: 750px;
	}
	.modeContainer p {
		padding: 0 20px;
	}
}
/*world*/
#world {
	text-align: center;
	position: relative;
}
.worldHeader {
	font-size: 24px;
	width: 80%;
	max-width: 350px;
	position: absolute;
	left: 50%;
	transform:translate(-50%);
	z-index: 2;
}
.worldHeader img {
	width: 80%;
	max-width: 350px;
	position: absolute;
	left: 50%;
	transform:translate(-50%);
	z-index: 0;
}
.worldHeader h3 {
	z-index: 2;
	position: relative;
	top: 50%;
	left: 50%;
	transform:translate(-50%, -20%);
}
.worldContainer {
	width: 95%;
	display: block;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.worldContainer img {
	width: 100%;
}
.worldTextBox {
	position: relative;
}
.worldTextBox p, .worldTextBox h2 {
	padding: 10px;
	text-align: left;
}
button.prev, button.next {
	width: 10%;
	position: absolute;
	top: 50%;
	border: none;
    background: transparent;
	z-index: 2;
	transform: translate(0, -50%);
}
button.prev img, button.next img {
	width: 25px;
}
button.prev {
	left: 2px;
}
button.next {
	right: 2px;
}
@media screen and (min-width: 400px) {
	.worldHeader h3 {		
    	transform: translate(-50%, 0);
	}
}
@media screen and (min-width: 640px) {
	 #map.worldTextBox {
		background-color: rgba(255,255,255,.8);
		position: absolute;
		border-radius: 5px;
		border: 1px solid #50545b;
		box-shadow: 0px 0px 10px #000;
		width: 80%;
		max-width: 500px;
		display: block;
		margin: 0 auto;
		top: 50%;
		left: 50%;
		transform:translate(-50%, -50%);
	}
	.worldTextBox {
		background-color: rgba(255,255,255,.8);
		position: absolute;
		border-radius: 5px;
		border: 1px solid #50545b;
		box-shadow: 0px 0px 10px #000;
		width: 50%;
		max-width: 500px;
		display: block;
		margin: 0 auto;
		top: 50%;
		left: 50%;
		transform:translate(-17%, -50%);
	}
}
@media screen and (min-width: 768px) {
	.worldTextBox p, .worldTextBox h2 {
		padding: 30px;
	}
	.worldTextBox p {
		padding-top: 10px;
	}
	#map.worldTextBox p {
		padding-top: 30px;
	}
	.worldTextBox h2 {
		padding-bottom: 10px;
	}
}
@media screen and (min-width: 1200px) {	
	.worldTextBox {
		transform:translate(0, -50%);
	}
	#map.worldTextBox {
		transform:translate(-50%, -50%);
	}
	#yeg.worldTextBox {
		transform:translate(0, -50%);
	}
}
@media screen and (min-width: 1400px) {	
	.worldTextBox {
		transform:translate(15%, -50%);
	}
}
/*purchase*/
#purchase {
	position: relative;
}
.purchaseBG {
	width: 100%;
}
.purchaseContainer {
	text-align: center;
	position: absolute;
	bottom: 1%;
	left: 50%;
	transform: translate(-50%);
	width: 100%;
	background-color: rgba(255,255,255,.5);
	padding: 10px 0 0;
}
.changeOpacity {
	opacity: .6;
}
.switch {
	height: 70px;
}
.xbox {
	height: 60px;
}
.pc {
	height: 70px;
}
.ps4 {
	height: 35px;
}
.platform-logos {
	margin: 20px 0;
}
.platform-logos img {
	display: inline-block;
	margin-bottom: 7px;
}
.platform-logos a:not(:last-child) {
	margin-right: 15px;
}
h5 {
	margin: 2% auto;
	font-size: 18px;
}
@media screen and (min-width: 768px) {
	.purchaseContainer {
		width: 50%;
		left: initial;
		right: 0;
		transform: translate(0, -50%);
		bottom: initial;
		top: 50%;
		background-color: transparent;
	}
	.purchaseContainer .releaseDate h3 {
		font-size: 24px;		
	}	
	.platform-logos a:not(:last-child) {
		margin-right: 25px;
	}
	.platform-logos img {
		display: inline-block;
		margin-bottom: 10px;
	}
}
@media screen and (min-width: 1450px) {
	.xbox {
		height: 95px;
	}
	.pc {
		height: 110px;
	}
	.switch {
		height: 110px;
	}
	.ps4 {
		height: 50px;
	}
}
/*FOOTER*/
footer {
	background-color: #414042;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 1%;
	height: auto;
	color: #FFF;
}
.logoGroup {
	width: 100%;	
	text-align: center;
}
.aceteam {
	height: 72px;
}
.segaLogo {
	height: 60px;
}
.esrbLogo, .esrbPrivacy {
	height: 72px;
}
.logoGroup img {
	display: inline-block;
	margin: 20px;
}
.copyright {   
	width: 100%;   
	margin: 20px auto 1%;    
	text-align: center;    
	font-family: Helvetica, Arial, "sans-serif";    
	font-size: 12px;    
	font-weight: bold;
}
.privacy {    
	width: 56%;    
	margin: 0 auto 4%;    
	font-family: Helvetica, Arial, "sans-serif";    
	font-size: 14px;    
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
.cookie {
	margin-left: 25px;
}
.swiper-container-world .swiper-slide {
    width: 92%!important;
	margin: 0;
	padding: 0;
}