@font-face { font-family: acherusbold; src: url('../assets/Fonts/acherus_grotesque_bold.otf'); }
@font-face { font-family: acherusextrabold; src: url('../assets/Fonts/acherus_grotesque_extrabold.otf'); }
@font-face { font-family: acherusblack; src: url('../assets/Fonts/acherus_grotesque_black.otf'); }
@font-face { font-family: acherusbolditalic; src: url('../assets/Fonts/acherus_grotesque_bold_italic.otf'); }
@font-face { font-family: acherusextrabolditalic; src: url('../assets/Fonts/acherus_grotesque_extrabold_italic.otf'); }
@font-face { font-family: acherusblackitalic; src: url('../assets/Fonts/acherus_grotesque_black_italic.otf'); }

/* === BASERESET === */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}

:focus {
	outline: none;
}

a:hover {
	text-decoration: none;
}

p {
	padding-bottom: 20px;
	line-height: 1.5em;
}

a {
	color: #fff;
}

#flavourlink {
	color: #c89ecb;
}

#flavourlink:hover {
	color: #49355e;
	text-decoration: underline;
}

body {
	background-color: #f9f9f9;
	font-family: acherusbold;
	width: 100%;
	overflow-x: hidden;
}

.bg-img {
	position: fixed;
	min-width: 100%;
	min-height: 100%;
	z-index: -1000;
	opacity: 0.6;
	overflow: hidden;
}

/* === HEADER === */

header {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	height: 100vh;
	min-height: 300px;
	width: 100vw;
	color: #fff;
}

#headerbgimg {
	height: 100vh;
	width: 100vw;
	object-fit: cover;
	z-index: -200;
	position: absolute;
	opacity: 1;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
	min-height: 300px;
	width: 100vw;
    overflow: hidden;
    z-index: -100;
	background-color: black;
}

.header-bg-video {
	height: 100vh;
	min-height: 300px;
	width: 100vw;
	object-fit: cover;
	position: absolute;
	opacity: 0.8;
}

#headerbg {
	height: 100vh;
	min-height: 300px;
	width: 100vw;
	object-fit: cover;
	position: absolute;
}

#headerlogo {
	min-height: 84px;
	max-height: 20vh;
	min-width: 250px;
	max-width: 80vw;
	margin: auto;
	margin-top: calc(27vh - 50px);
	padding-right: 20px;
	position: relative;
	display: block;
}

.language {
	z-index: 2;
	position: relative;
	text-align: right;
	top: 20px;
	right: 40px;
	color: #fff;
}

.language a:hover {
	transition: color 0.3s;
	color: #efefef;
}

#trailerbutton {
	display: block;
	border: 3px solid #f9f9f9;
	border-radius: 10px;
	position: relative;
	margin: 5vh auto;
	min-width: 270px;
	max-width: 15vw;
	padding: 20px;
	text-align: center; 
	/*font-size: 2vh;*/
	font-size: 1.3em;
	color: #fff;
	background-color: #49355e;
	transition: background-color 0.3s;
}

#trailerbutton:hover {
	background-color: rgba(255,255,255,0.2);
}

#releasedate {
	text-align: center;
	font-size: 30px;
	position: absolute;
	bottom: 70px;
	width: 250px;
	left: calc(50% - 125px);
}

/* === MODAL TRAILER === */
 
.modal-backdrop.in {
    filter: alpha(opacity=9);
    opacity: 0.9;
}
 
.modal-dialog {
	width: 84%;
	margin: auto;
}

.modal-content {
    background: none;
    border: 0;
    -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
}
 
.modal-body {
    padding: 0 25px 25px 25px;
}
 
.modal-header {
    padding: 25px 25px 15px 25px;
    text-align: right;
}
 
.modal-header, .modal-footer {
    border: 0;
}
 
.modal-header .close {
    float: none;
    margin: 0;
    font-size: 36px;
    color: #fff;
    font-weight: 300;
    text-shadow: none;
    opacity: 1;
}

/* === MAIN BODY STYLE === */

.mainbody {
	background-color: rgba(255,255,255,0.9);
	width: 100%;
	max-width: 800px;
	padding: 60px 20px 100px;
	color: #49355e;
	margin: auto;
}

h1 {
	font-family: acherusblack;
	font-size: 50px;
	text-align: center;
	margin-bottom: 30px;
}

.mainbody p {
	text-align: justify;
	padding: 0 10%;
}

.bodylinks {
	margin-top: 30px;
	width: 100%;
	padding: 30px 10% 0;
}

.bodylinks img {
	width: 50%;
	padding: 5px;
	margin-top: 6px;
}

.bodyicons {
	margin: auto;
	width: 34%;
	display: inline-block;
}

.bodyicons img:hover {
	transition: opacity 0.3s;
	opacity: 0.9;
}

#presskitlink {
	width: calc(66% - 10px);
	background: #49355e;
	color: #fff;
	text-align: center;
	margin: 0 5px;
	font-size: 14pt;
	padding: 34px 30px;
	display: inline-block;
	border-radius: 10px;
	transition: opacity 0.3s;
}

#presskitlink:hover {
	color: #fff;
	opacity: 0.9;
	text-decoration: none;
}

/* === RESPONSIVE BODY LINKS === */

@media screen and (max-width: 1000px) {

.bodyicons {
	width: 40%;
	min-width: 150px;
	margin: auto;
	display: block;
}

.bodyicons img:hover {
	transition: opacity 0.3s;
	opacity: 0.9;
}

#presskitlink {
	width: 100%;
	font-size: 15pt;
	margin: 0;
}

}

/* === WIDGETS STYLE === */

.widgets {
	margin: 30px 4% 0;
}

.widgets iframe {
	width: 100%;
	height: 190px;
	margin: auto;
	z-index: 10;
}

#NintendoWidget {
	width: 100%;
	height: auto;
}

/* === CAROUSEL STYLE === */

.container-fluid {
	margin: auto;
	padding: 0;
	background-color: #555;
	overflow: hidden;
}

.container {
	margin: auto;
	width: 100%;
	padding: 0;
}

.carousel-inner {
	display: block;
	width: 300%;
	margin-left: -62.5%;
}

.carousel-inner .item {
	margin: 1% auto;
	width: 100%;
}

.carousel-inner .item .active {
	margin: 0 auto;
	padding: 0;
	width: 33%;
}

.carousel-inner .item img {
	width: 25%;
	display: inline-block;
	padding: 0 0.6% 84px;
	margin: auto;
}

.carousel-inner .item.left.active {
  transform: translateX(-25%);
}
.carousel-inner .item.right.active {
  transform: translateX(25%);
}

.carousel-inner .item.next {
  transform: translateX(25%);
}
.carousel-inner .item.prev {
  transform: translateX(-25%);
}

.carousel-inner .item.right,
.carousel-inner .item.left { 
  transform: translateX(0);
}

.carousel-control .glyphicon {
	margin-top: -50px;
}

.carousel-indicators {
	margin: 0 0 0 -50%;
	width: 100%;
	background: #f9f9f9;
	padding: 27px;
	bottom: 0;
}

.carousel-indicators .active {
	background-color: #49355e;
	border: 1px solid #49355e;
	margin: 10px 3px 4px;
	width: 10px;
	height: 10px;
}

.carousel-indicators li {
	border: 1px solid #49355e;
	pointer-events: none;
	margin: 10px 3px 4px;
	width: 10px;
	height: 10px;
}

/* === MAILCHIMP STYLE === */

.mailing-list-body form {
	text-align: center;
	width: 100%;
	margin: auto;
	padding-bottom: 45px;
}

#mc-joinlabel {
	text-transform: uppercase;
	font-size: 24px;
	font-family: acherusextrabold;
	padding: 5px 0;
	color: #c89ecb;
}

#mc-embedded-subscribe {
	padding: 4px 8px;
	border-radius: 0 5px 5px 0;
	border: 2px solid #49355e;
	background-color: #49355e;
	color: #fff;
	transition: opacity 0.3s;
}

#mc-embedded-subscribe:hover {
	opacity: 0.9;
}

#mce-EMAIL {
	padding: 4px 8px;
	min-width: 200px;
	width: 40%;
	border-radius: 5px 0 0 5px;
	border-style: solid;
}

.mcdetail  {
	padding-top: 10px;
	text-align: center;
}

/* === FOOTER STYLE === */

footer {
	background: #49355e;
	height: 135px;
	max-width: 100vw;
}

#kflogo {
	display: inline-block;
	width: 340px;
	margin: 35px 30px auto;
	position: absolute;
	left: 0;
	opacity: 0.4;
	transition: opacity 0.4s;
	z-index: 3;
}

#kflogo:hover {
	opacity: 1;
}

.socialmedia {
	display: inline-block;
	margin: auto;
	padding: 45px calc(50% - 125px) 0;
	position: absolute;
}

.socialmedia img {
	width: 50px;
	padding: 5px;
	opacity: 0.4;
	transition-duration: 0.4s;
}

.socialmedia img:hover {
	opacity: 1;
}

.mailing-list-footer {
	display: inline-block;
	margin: -5px 30px 0 0;
	position: absolute;
	right: 0;
	padding: 30px 0 35px;
	width: 340px;
	text-align: center;
}

.mailing-list-footer #mc-joinlabel {
	color: #fff;
	font-family: acherusbold;
	font-size: 14pt;
	opacity: 0.4;
	transition: opacity 0.4s;
}

.mailing-list-footer #mc-joinlabel:hover {
	opacity: 1;
}

.mailing-list-footer #mce-EMAILfooter {
	padding: 5px 8px;
	min-width: 200px;
	width: 40%;
	border-radius: 5px 0 0 5px;
	border: 0px solid #49355e;
}

.mailing-list-footer #mc-embedded-subscribe {
	border: 0px solid #49355e;
	padding: 5px 8px;
	background-color: rgba(255,255,255,0.4);
}

/* === RESPONSIVE SIZING === */

@media screen and (max-width: 1060px) {

/* === RESPONSIVE FOOTER === */

#kflogo {
	margin: auto;
	padding-top: 40px;
	width: 240px;
	display: block;
	position: absolute;
	left: calc(50% - 120px);
	opacity: 0.4;
	transition: opacity 0.4s;
	float: none;
}

.socialmedia {
	display: inline-block;
	margin: auto;
	padding: 100px calc(50% - 125px) 0;
	position: absolute;
}

.socialmedia img {
	width: 50px;
	padding: 5px;
	opacity: 0.4;
}

.socialmedia img:hover {
	transition: opacity 0.4s;
	opacity: 1;
}

.mailing-list-footer {
	width: 340px;
	position: absolute;
	margin-top: 168px;
	padding-top: 0;
	margin-bottom: 10px;
	left: calc(50% - 170px);
	display: block;
	float: none;
	text-align: center;
}

.mailing-list-footer #mc-joinlabel {
	color: #fff;
	font-family: acherusbold;
	opacity: 0.4;
	font-size: 14pt;
	width: 80%;
	margin: auto;
}

.mailing-list-footer #mce-EMAILfooter {
	width: 30%;
}

footer {
	height: 280px;
}

/* === RESPONSIVE MAILCHIMP BODY */

.mailing-list-body form {
	text-align: center;
	width: 100%;
	margin: auto;
	padding-bottom: 70px;
}

.mailing-list-body #mc-joinlabel {
	text-transform: uppercase;
	font-size: 20px;
	font-family: acherusextrabold;
	padding: 5px 0;
}

#mc-embedded-subscribe {
	padding: 4px 8px;
	border-radius: 0 5px 5px 0;
	border: 2px solid #49355e;
	background-color: #49355e;
	color: #fff;
	transition: opacity 0.3s;
}

#mc-embedded-subscribe:hover {
	opacity: 0.9;
}

#mce-EMAIL {
	padding: 4px 8px;
	min-width: 160px;
	width: 40%;
	border-radius: 5px 0 0 5px;
	border-style: solid;
}

}


