/*	BASE STYLES
*********************************************************/
html{
	height: 100%;
}

body{
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 1.8;
	color: #555555;
	/*padding-left: 200px;*/
	padding-left: 240px;
}


h1, h2, h3, h4, h5, h6{
	color: #181818;
	font-weight: 600;
	margin-bottom: 15px;
}

p{
	color: #555555;
	font-weight: 300;
	margin-bottom: 15px;
}

a{
	color: #f60000;
	-webkit-transition: 0.4s ease all;
	-moz-transition: 0.4s ease all;
	-o-transition: 0.4s ease all;
	transition: 0.4s ease all;
}
a:hover{
	color: #f60000;
}

img{
	max-width: 100%;
	height: auto;
}

.page-title{
	padding: 15px 0 15px 0;
}
.page-title h1{
	margin: 0;
	text-transform: uppercase;
	font-size: 50px;
	font-weight: 800;
}

.section{
	padding: 15px 0;
}
.section--full{
	margin-left: -40px;
}

.section__title{

}



/*	COMMON CSS
*********************************************************/
.text-grey{
	color: #cecece;
}
.text-red{
	color: #f60000;
}
.text-dark{
	color: #181818;
}


a.arrow-btn,
button.arrow-btn{
	padding: 0;
	background: transparent;
	border: 0;
	display: inline-block;
	margin-top: 5px;
	color: #181818;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 1px;
	text-decoration: none;
	-webkit-transition: all ease 0.4s;
	-moz-transition: all ease 0.4s;
	-o-transition: all ease 0.4s;
	transition: all ease 0.4s;
	cursor: pointer;
	outline: none;
}
a.arrow-btn:after,
button.arrow-btn:after{
	content: "\f178";
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	font-family: 'FontAwesome';
	color: #f60000;
}
a.arrow-btn:hover,
button.arrow-btn:hover{
	color: #f60000;
}
a.arrow-btn:hover:after,
button.arrow-btn:hover:after{
	-webkit-animation: arrowSlide 0.4s infinite alternate;
	-moz-animation: arrowSlide 0.4s infinite alternate;
	-o-animation: arrowSlide 0.4s infinite alternate;
	animation: arrowSlide 0.4s infinite alternate;
}


.list{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.list li{
	padding-left: 25px;
	position: relative;
	line-height: 1.8;
}
.list li:before{
	content: '\25CF';
	position: absolute;
	top: 0;
	left: 5px;
	color: #f60000;
}


.img-inverse{
	display: inline-block;
	vertical-align: middle;
}
.img-inverse img:nth-child(1){
	display: block;
}
.img-inverse img:nth-child(2){
	display: none;
}


.featured-video{
	overflow: hidden;
	border-radius: 10px;
	border: 1px solid #ccc7c1;
	display: inline-block;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 13px 16px 35px 0 rgba(0,0,0,0.2);
	-moz-box-shadow: 13px 16px 35px 0 rgba(0,0,0,0.2);
	-o-box-shadow: 13px 16px 35px 0 rgba(0,0,0,0.2);
	box-shadow: 13px 16px 35px 0 rgba(0,0,0,0.2);
}
.featured-video img{
	max-width: auto;
	width: 100%;
}
.featured-video:before{
	content: '';
	display: block;
	width: 140px;
	height: 140px;
	background: transparent url(../img/play-btn.png) no-repeat left top;
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 5;
	-webkit-transition: 0.4s ease all;
	-moz-transition: 0.4s ease all;
	-o-transition: 0.4s ease all;
	transition: 0.4s ease all;
}
.featured-video:after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgba(0,0,0,0.5);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.4s ease all;
	-moz-transition: 0.4s ease all;
	-o-transition: 0.4s ease all;
	transition: 0.4s ease all;
}
.featured-video:hover:before{
	width: 160px;
	height: 160px;
}
.featured-video:hover:after{
	visibility: visible;
	opacity: 1;
}


/* PACE LOADER */
.pace-running{
	overflow: hidden;
}
.pace-done{
	overflow: auto;
}
.pace-done .pace-bg{
	opacity: 0;
	visibility: hidden;
	z-index: -99;
}
.pace-bg{
	background: #ffffff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	visibility: visible;
	z-index: 99;

	-webkit-transition: 0.4s ease all;
	-moz-transition: 0.4s ease all;
	-o-transition: 0.4s ease all;
	transition: 0.4s ease all;
}
.pace{
	-webkit-pointer-events: none;
	pointer-events: none;

	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;

	z-index: 2000;
	position: fixed;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 5px;
	width: 200px;
	background: #fff;
	border: 1px solid #f60000;

	overflow: hidden;
}
.pace .pace-progress{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	max-width: 200px;
	position: fixed;
	z-index: 2000;
	display: block;
	position: absolute;
	top: 0;
	right: 100%;
	height: 100%;
	width: 100%;
	background: #f60000;
}
.pace.pace-inactive {
	display: none;
}


.load-more{
	margin-top: 25px;
	text-align: center;
}
.load-more a{
	color: #333333;
	font-weight: 500;
	letter-spacing: 1px;
	text-decoration: none;
}
.load-more a:after{
	content: '\25BE';
	display:inline-block;
	font-size: 21px;
	color: #f60000;
	margin-left: 5px;
}
.load-more a:hover{
	color: #f60000;
}



body.modal-open{
	overflow: hidden;
}





/*	HEADER
*********************************************************/
header.header{
	width: 100%;
	z-index: 4;
	padding: 40px 10px 15px 0;
}

.header__logo{
	display: inline-block;
	padding: 10px 15px;
	margin-left: -15px;
}

.bulb-btn{
	background: transparent !important;
}




/*	FOOTER
*********************************************************/
footer.footer{
	position: relative;
	z-index: 2;
	min-height: 100px;
	margin-top: 0;
	padding-bottom: 15px;
	padding-right: 10px;
}

.footer__info{
	margin-bottom: 10px;
}
.footer__info img,
.footer__info span{
	vertical-align: middle;
}
.footer__info span{
	display: inline-block;
	margin: 0 10px;
}

.footer__nav,
.footer__copyright{
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
.footer__nav ul li{
	margin: 0 15px;
}
.footer__nav ul li a{
	padding: 0;
	color: #818181;
	background: transparent !important;
	letter-spacing: 1px;
}
.footer__nav ul li a:hover{
	text-decoration: underline;
}

.footer__copyright p{
	margin: 0;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 12px;
}




/*	MAIN
*********************************************************/
main.main{
	position: relative;
	z-index: 1;
	height: auto;
	min-height: 420px;
	padding-bottom: 45px;
}

.main__bg{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
.main__bg-shapes{
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100%;
	width: 150%;
	-webkit-transform: translate(-50%, -50%) skew(-20deg);
	-moz-transform: translate(-50%, -50%) skew(-20deg);
	-o-transform: translate(-50%, -50%) skew(-20deg);
	transform: translate(-50%, -50%) skew(-20deg);
}
.main__bg .shape-left,
.main__bg .shape-right{
	width: 50%;
	height: 100%;
	float: left;
}
.main__bg .shape-left{
	background: #ffffff;
}
.main__bg .shape-right{
	background: #f7f7f7;
}

.jo-box{
	position: fixed;
	z-index: 10;
	max-width: 480px;
	min-height: 200px;
	background: #ffffff;
	right: -430px;
	bottom: 150px;
	padding: 20px 40px 20px 80px;
	border: 1px solid #dadada;
	border-radius: 10px;
	-webkit-box-shadow: 26px 20px 60px 0px rgba(179, 179, 179, 0.2);
	-moz-box-shadow: 26px 20px 60px 0px rgba(179, 179, 179, 0.2);
	-o-box-shadow: 26px 20px 60px 0px rgba(179, 179, 179, 0.2);
	box-shadow: 26px 20px 60px 0px rgba(179, 179, 179, 0.2);
	-webkit-transition: 0.6s ease right;
	-moz-transition: 0.6s ease right;
	-o-transition: 0.6s ease right;
	transition: 0.6s ease right;
}
.jo-box.open{
	right: 25px;
}
.jo-box__btn{
	background: #ffffff;
	border: 0;
	padding: 12px 10px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: -59px;
	transform: translateY(-50%) rotate(-90deg);
	transform-origin: center center;
	font-size: 12px;
	outline: none;
}
.jo-box__btn b{
	color: #f60000;
}
.jo-box__btn .caret{
	margin-right: 5px;
}
.jo-box__content h4{
	font-size: 15px;
}

.jo-box .close{
	position: absolute;
	left: -5px;
	top: -5px;
	z-index: 10;
	font-weight: 300;
	color: #ffffff;
	background: #333;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-radius: 20px;
	opacity: 1;
	font-size: 10px;
	display: none;
}
.jo-box .close:hover{
	opacity: 0.4;
}
/*.jo-box.closed{
	-webkit-animation: closeJOBox 0.4s ease forwards;
	-moz-animation: closeJOBox 0.4s ease forwards;
	-o-animation: closeJOBox 0.4s ease forwards;
	animation: closeJOBox 0.4s ease forwards;
}
*/
.jo-box.minimize{
	transform: translateX(25px);
}
.jo-box .close .fa-plus,
.jo-box.minimize .close .fa-minus{
	display: none;
}
.jo-box .close .fa-minus,
.jo-box.minimize .close .fa-plus{
	display: block;
}


/*	SIDEBAR
*********************************************************/
.sidebar{
	background: #ffffff url(../img/sidebar-bg.png) no-repeat right center;
	width: 200px;
	height: 100%;
	border-right: 1px solid #dadada;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	padding-right: 1px;
	padding-bottom: 60px;
	padding-top: 20px;
}

.sidebar__nav{
	text-align: right;
	background: transparent url(../img/menu-bg.png) no-repeat right center;
	margin-left: -15px;
	margin-right: -15px;
	padding: 20px 0;
	position: relative;
	z-index: 1;
}
.sidebar__nav > ul > li{
	padding-bottom: 12px;
	margin: 0;
}
.sidebar__nav > ul > li > a{
	background: transparent;
	color: #181818;
	font-weight: 600;
	letter-spacing: 3px;
	padding-right: 40px;
	position: relative;
	text-transform: uppercase;
}
.sidebar__nav > ul > li > a:hover,
.sidebar__nav > ul > li > a:focus{
	background: transparent;
}
.sidebar__nav > ul > li > a:hover{
	opacity: 0.5;
}
.sidebar__arrow{
	display: block;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-right: 6px solid #f60000;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.single .sidebar__arrow{
	display: none;
}

.socials{
	position: absolute;
	bottom: 15px;
	left: 0;
	text-align: center;
	width: 100%;
}
.socials > ul > li{
	display: inline-block;
	float: none;
}
.socials > ul > li > a{
	color: #222222;
	font-size: 18px;
}
.socials > ul > li > a:hover{
	opacity: 0.5;
	background: transparent;
}



/*	MOBILE NAVIGATION
*********************************************************/
.mobile-nav{
	display: none !important;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background: #ffffff url(../img/mobilenav-bg.png) no-repeat center top;
	border-top: #dadada 1px solid;
}
.mobile-nav ul{
	display: table;
	width: 100%;
}
.mobile-nav li{
	display: table-cell;
	width: 20%;
	vertical-align: bottom;
}
.mobile-nav li a{
	margin: 0;
	padding: 0 5px 10px 5px;
	font-size: 11px;
	color: #a1a1a1;
	text-align: center;
}
.mobile-nav li.main a .icon{
	-webkit-transform: translateY(-7px);
	-moz-transform: translateY(-7px);
	-o-transform: translateY(-7px);
	transform: translateY(-7px);
}
.mobile-nav li a:hover,
.mobile-nav li a:focus,
.mobile-nav li.active a{
	background: transparent;
	color: #000000;
}
.mobile-nav li.active path{
	fill: #181818;
}
.mobile-nav li.main.active path{
	fill: #ff0000;
}

.mobile-nav .icon{
	display: block;
	margin: 0 auto;
}
/*.mobile-nav .icon img{
	max-width: 35px;
	height: auto;
	vertical-align: bottom;
	text-align: center;
}*/
.mobile-nav .icon svg{
	display: block;
	margin: 0 auto 5px auto;
}



/*	HOME PAGE
*********************************************************/
body.home{
	height: 100%;
}
.home header.header{
	position: fixed;
	top: 0;
	left: 0;
	padding-left: 200px;
}
.home footer.footer{
	margin-top: -100px;
}
.home main.main{
	height: 100%;
	min-height: auto;
}

#home-section{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.home-logo{
	display: inline-block;
	padding: 80px;
}




/*	ABOUT PAGE
*********************************************************/
#about-section-1{
	min-height: 470px;
}

#about-section-2{
	min-height: 1050px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-image: url(../img/section-2-bg2-desktop.png);
	background-position: center 40px;
	background-size: 100%;
}
#about-section-2 .col-md-6:first-child{
}
#about-section-2 .col-md-6:nth-child(2){
	padding-top: 130px;
}
#about-section-2 .content{
	max-width: 468px;
	margin: 0 14% 0 auto;
}
#about-section-2 h2{
	font-size: 50px;
	letter-spacing: 10px;
}
#about-section-2 .logo{
	max-width: 410px;
	width: 50%;
	display: block;
}
#about-section-2 .thumb{
    text-align: right;
    margin: 30px -15px 0 auto;
}
#about-section-2 .thumb img{
	max-width: 745px;
	width: 90%;
}
#about-section-2 .mobile-content{
	display: none !important;
}

.game-icons{
	padding: 0;
	max-width: 568px;
	margin: 55px 0 0 31%;
	list-style-type: none;
}
.game-icons li{
	float: left;
    width: 22%;
    text-align: right;

}
.game-icons li:nth-child(2){
	padding-top: 97px;
    margin-left: 21%;
}
.game-icons li:nth-child(3){
	margin-left: 13%;
}

#about-section-3{
	margin-top: -210px;
}
#about-section-3 .content{
	width: 74%;
	max-width: 992px;
	min-height: 500px;
	margin: 0 110px 0 auto;
}
#about-section-3 .content h3{
	font-size: 34px;
}
#about-section-3 .headline{
	margin: 55px auto 25px auto;
	max-width: 1235px;
	overflow: visible;
}
#about-section-3 .headline img{
	width: 171px;
	height: 140px;
	max-width: none;
}
#about-section-3 .headline h3{
	text-transform: uppercase;
	font-size: 60px;
	letter-spacing: 3px;
}
#about-section-3 .headline .media-body{
	padding-left: 15px;
	overflow: visible;
}
#about-section-3 .headline .media-left{
	position: relative;
}
#about-section-3 .headline .media-left:before{
	content: '';
	display: block;
	width: 1px;
	height: 800px;
	background: #dadada;
	position: absolute;
	bottom: 115%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -10;
}

#about-section-4{
	padding: 0;
	min-height: 100%;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background: #181818 url(../img/dirt.png) no-repeat left bottom;
	background-size: 200%;
}

#about-section-4 .frame-top,
#about-section-4 .frame-bottom{
	position: absolute;
	z-index: 10;
	left: 0;
	max-width: auto;
}
#about-section-4 .frame-top{
	top: -1px;
	right: 0;
    left: auto;
}
#about-section-4 .frame-bottom{
	bottom: -2px;
}

#about-section-4 .content{
	height: 100%;
	width: 100%;
	-webkit-transition: 0.5s ease all;
	-moz-transition: 0.5s ease all;
	-o-transition: 0.5s ease all;
	transition: 0.5s ease all;
	opacity: 1;
	visibility: visible;
}
#about-section-4.started .content{
	opacity: 0;
	visibility: hidden;
}
#about-section-4 .content h3{
	color: #ffffff;
	position: relative;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 54px;
	line-height: 48px;
	display: inline-block;
}
#about-section-4 .content h3 .arrow{
	background: transparent url(../img/forward.svg) no-repeat right bottom;
	-webkit-background-size: 140px;
	-moz-background-size: 140px;
	-o-background-size: 140px;
	background-size: 140px;
	height: 30px;
	width: 100%;
	
	-webkit-animation: arrowSlide 0.4s infinite alternate;
	-moz-animation: arrowSlide 0.4s infinite alternate;
	-o-animation: arrowSlide 0.4s infinite alternate;
	animation: arrowSlide 0.4s infinite alternate;
}

#about-section-4 .action-buttons{
	position: absolute;
	z-index: 1;
	bottom: 6%;
	right: 5%;
}
#about-section-4 .action-buttons label{
	color: #ffffff;
	font-weight: 700;
	display: block;
	padding-right: 35px;
	background: transparent url(../img/red-spot.svg) no-repeat right center;
	background-size: 25px;
}
#about-section-4 .action-buttons a{
	color: #545454;
	text-decoration: none;
	font-weight: bold;
}
#about-section-4 .action-buttons a i{
	color: #ffffff;
	margin-left: 5px;
}


.timeline,
.timeline__inner,
.timeline__section{
	height: 100%;
}
.timeline{
	background-color: #202020;
	background-repeat: no-repeat;
	background-image: url(../img/img-bg-timeline-start.jpg), url(../img/img-bg-timeline-end.jpg);
	background-position: left top, right top;
	/* width: 7600px; original verse*/
	width: 21600px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
.timeline__inner{
	/*padding-left: 1140px;*/
	/*padding-left: 16%; original verse*/
	padding-left: 5.6%;
	position: relative;
	z-index: -3;
	*zoom: 1;
}
.timeline__inner:before,
.timeline__inner:after{
	content: '';
	display: table;
}
.timeline__inner:after{
	clear: both;
}
.timeline .triangle-start{
	position: absolute;
	top: 50%;
	left: -50px;
	z-index: -1;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.timeline__section{
	position: relative;
	float: left;
	/*margin-right: 4%; original verse*/
	margin-right: 1.14%;
	display: inline-block;
	vertical-align: top;
	-webkit-transition: all ease 1.2s;
	-moz-transition: all ease 1.2s;
	-o-transition: all ease 1.2s;
	transition: all ease 1.2s;
}

.timeline__event{
	color: #ffffff;
	*zoom: 1;
	margin-bottom: 0;
}
.timeline__event:before,
.timeline__event:after{
	content: '';
	display: table;
}
.timeline__event:after{
	clear: both;
}
.timeline__event h2,
.timeline__event article{
	float: left;
}
.timeline__event h2{
	font-size: 210px;
	line-height: 170px;
	font-weight: 700;
	color: #333333;
	margin: 0 10px 0 0;
	position: relative;
}
.timeline__event h2 .line-bottom{
	position: absolute;
	top: 100%;
	right: 180px;
	-webkit-transform: translateY(-35px);
	-moz-transform: translateY(-35px);
	-o-transform: translateY(-35px);
	transform: translateY(-35px);
}
.timeline__event h2 .line-top{
	position: absolute;
	bottom: 100%;
	right: -90px;
	-webkit-transform: translateY(15px);
	-moz-transform: translateY(15px);
	-o-transform: translateY(15px);
	transform: translateY(15px);
}
.timeline__event img{
	max-width: 340px;
}
.timeline__event p{
	color: #ffffff;
	margin-top: 5px;
}

.timeline__thumb{
	text-align: right;
}
.timeline__thumb img{
	max-width: 670px;
	width: 100%;
}

.timeline__pointer{
	position: absolute;
}
.timeline__pointer--top{
	top: -42px;
	left: -15%;
}
.timeline__pointer--bottom{
	bottom: 0;
	left: -33%;
}

.timeline__section:nth-child(1),
.timeline__section:nth-child(3),
.timeline__section:nth-child(5),
.timeline__section:nth-child(7),
.timeline__section:nth-child(9),
.timeline__section:nth-child(11),
.timeline__section:nth-child(13),
.timeline__section:nth-child(15){
	padding-top: 0.5%;
	/*padding-top: 1.6%; original verse*/
	background: transparent url(../img/triangle-black.svg) no-repeat left -208px;
}
.timeline__section:nth-child(5){margin-left:0.5%}
.timeline__section:nth-child(2),
.timeline__section:nth-child(4),
.timeline__section:nth-child(6),
.timeline__section:nth-child(8),
.timeline__section:nth-child(10),
.timeline__section:nth-child(12),
.timeline__section:nth-child(14),
.timeline__section:nth-child(16){
	/*padding-top: 3%; original verse*/
	padding-top: 0.8%;
	background: transparent url(../img/triangle-black.svg) no-repeat left -125px;
}
.timeline__section:nth-child(1){
	background-position-x: 33%;
}
.timeline__section:nth-child(2){
	background-position-x: 8%;
}
.timeline__section:nth-child(3){
	background-position-x: 27%;
}
.timeline__section:nth-child(4){
	background-position-x: 35%;
}

.timeline__section:nth-child(1) .timeline__event{
	/*padding-right: 160px;*/
}
.timeline__section:nth-child(3) .timeline__event{
	padding-right: 140px;
}

.timeline__section:nth-child(2) .timeline__pointer{
	/*left: -46%;*/
	left: -34%;
}
.timeline__section:nth-child(5) .timeline__pointer{
    left: -58%;
}
.timeline__section:nth-child(6) .timeline__pointer{
    left: -38%;
}



.timeline .shapes > *{
	position: absolute;
	z-index: -5;
}

.timeline .dirt1,
.timeline .dirt2,
.timeline .dirt3,
.timeline .dirt4,
.timeline .dirt5,
.timeline .dirt6,
.timeline .dirt7,
.timeline .dirt8,
.timeline .dirt9,
.timeline .dirt10,
.timeline .dirt11,
.timeline .dirt12,
.timeline .dirt13,
.timeline .dirt14,
.timeline .dirt15,
.timeline .dirt16{
	bottom: 0;
}
.timeline .dirt1{ left:6.12%; width:7.5%; }
.timeline .dirt2{ left:10%; width: 14%; }
.timeline .dirt3{ left: 18.5%; width: 8.4%;}
.timeline .dirt4{ left: 23.12%;width: 10.5%;}
.timeline .dirt5{ left: 27.4%;width: 14%;}
.timeline .dirt6{ left: 28.5%; width: 18.4%;}
.timeline .dirt7{ left: 41.12%; width:10.5%; }
.timeline .dirt8{ left: 44.12%;width: 13%; }
.timeline .dirt9{ left: 51.5%;width: 10.4%;}
.timeline .dirt10{ left: 56.12%;width: 9.5%; }
.timeline .dirt11{ left:60.4%; width: 14%; }
.timeline .dirt12{ left: 58.5%; width: 18.4%;}
.timeline .dirt13{ left: 72.12%;width: 10.5%; }
.timeline .dirt14{ left: 74.4%;width: 12%;}
.timeline .dirt15{ left: 78.5%;width: 11.4%;}
.timeline .dirt16{ left: 83.5%;width: 9.4%;}

.timeline .triangle1,
.timeline .triangle2{
	bottom: -50px; 
	width: 4.5%;
}
.timeline .triangle1{ left: 22.2%; }
.timeline .triangle2{ left: 55%; }

/* FADEIN EFFECT */
.timeline__event,
.timeline__thumb{
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease 1.2s;
	-moz-transition: all ease 1.2s;
	-o-transition: all ease 1.2s;
	transition: all ease 1.2s;
}
.in .timeline__event,
.in .timeline__thumb{
	opacity: 1;
	visibility: visible;
}


.timeline .last-section{
	height: 100%;
	opacity: 1 !important;
	visibility: visible !important;
}
.timeline .last-section .note{
	position: relative;
	z-index: 1;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.timeline .last-section .note h4{
	color: #ffffff;
	font-size: 28px;
	letter-spacing: 2px;
	margin-bottom: 5px;
}
.timeline .last-section .note a{
	font-size: 25px;
}


.timeline-slider{
	max-width: 480px;
    margin: 25px auto 60px auto;
    display: none !important;
}
.timeline-slider .slick-prev,
.timeline-slider .slick-next{
	background: transparent;
	color: #363636;
    position: absolute;
    top: 30px;
    border: 0;
    font-size: 42px;
    outline: none;
}
.timeline-slider .slick-prev:hover,
.timeline-slider .slick-next:hover{
	color: #ffffff;
}
.timeline-slider .slick-prev{
	left: 10%;
}
.timeline-slider .slick-next{
	right: 10%;
}
.timeline-slider .slick-dots{
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.timeline-slider .slick-dots li{
	display: inline-block;
	margin: 0 5px;
}
.timeline-slider .slick-dots button{
	background: transparent;
	padding: 0;
	box-shadow: 0px 0px 0px 2px #ffffff;
	border: 2px solid #0c0c0c;
	text-indent: 9999px;
	width: 15px;
	height: 15px;
	background: #353232;
	border-radius: 10px;
}
.timeline-slider .slick-dots .slick-active button{
	background: #dc0e0e;
}

.timeline-slider img{
	display: inline-block;
}
.timeline-slider__item{
	padding: 20px 20px 40px 20px;
}
.timeline-slider__item p{
	color: #ffffff;;
}
.timeline-slider__item h3{
	color: #333333;
	font-size: 50px;
	margin-bottom: 25px;
}

#about-section-5{
	background: #FFF url(../img/img-bg-why-join-us.jpg) no-repeat center bottom;
	padding-top: 120px;
    min-height: 1130px;
}
#about-section-5 .container{
	width: auto;
	max-width: 1225px;
}
#about-section-5 .row{
	padding: 0 15px;
}
#about-section-5 h2,
#about-section-5 p,
#about-section-5 a{
	color: #181818;
}
#about-section-5 h2{
	font-size: 65px;
	letter-spacing: 7px;
	margin-top: 0;
}


body.page-template-template-about{
	background-color: #ffffff;
	background-image: url(../img/controller.svg), url(../img/line1.png);
	background-repeat: no-repeat;
	background-position: 960px top, 0 0;
}

.vid-hide{display:none}

/*	CONTACT PAGE
*********************************************************/
#contact-section-1{
	padding-top: 0;
}

#contact-section-1 b{
	font-weight: 600;
}

#contact-section-1 .content{
	max-width: 400px;
}

.contact-form-box{
	max-width: 620px;
	border: 1px solid #dadada;
	border-radius: 8px;
	padding: 35px 25px 25px 25px;
	-webkit-box-shadow: 25px 35px 47px 0px rgba(68, 68, 68, 0.15);
	-moz-box-shadow: 25px 35px 47px 0px rgba(68, 68, 68, 0.15);
	-o-box-shadow: 25px 35px 47px 0px rgba(68, 68, 68, 0.15);
	box-shadow: 25px 35px 47px 0px rgba(68, 68, 68, 0.15);
	background: #ffffff;
}

.contact-form-box .row > div{
	padding: 0 5px;
}

label{
	font-weight: 300;
	text-transform: uppercase;
	font-size: 16px;
}

.form-group{
	margin-bottom: 25px; 
}

.form-control{
	border: 0;
	box-shadow: none !important;
	border-bottom: 1px solid #dadada;
	border-radius: 0;
	padding: 5px 15px 10px 15px;
	height: 40px;
	background: transparent;
}
.form-control:focus{
	border-bottom: #f60000 1.5px solid;
}
select.form-control{
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	background: transparent url(../img/select-arrow.png) no-repeat 98% center;
}
select::-ms-expand { 
    display: none; /* hide the default arrow in ie10 and ie11 */
}


.form-submit{
	padding-top: 10px;
}
.form-submit [type=submit]{
	font-size: 12px;
}


body.page-template-template-contact{
	background-color: #ffffff;
	background-image: url(../img/contact-triangle.png);
	background-repeat: no-repeat;
	background-position: right top;
	-webkit-background-size: 45.6%;
	-moz-background-size: 45.6%;
	-o-background-size: 45.6%;
	background-size: 45.6%;
}




/*	CAREERS PAGE
*********************************************************/
#careers-section-1{
	background-color: transparent;
	background-repeat: no-repeat;
	background-image: url(../img/new-careers-bg-part1.png), url(../img/careers-bg-part2.png), url(../img/careers-bg-part3.svg);
	background-position: left center, right center, 59.5% center;
	min-height: 840px;
	padding-top: 0;
    margin-top: -40px;
}

#careers-section-1 .content{
	text-align: right;
	max-width: 868px;
	margin: 65px auto 0 auto;
}
#careers-section-1 .content h2{
	letter-spacing: 4px;
}
#careers-section-1 .content p:nth-of-type(2){
	max-width: 82%;
	margin: 0 0 0 auto;
}
#careers-section-1 .thumb{
	display: none;
	padding: 40px 0 25px 0;
}
#careers-section-1 .careers-list{
	max-width: 1565px;
	margin: 0 -15px 0 auto;
	overflow: hidden;
}
#careers-section-1 .careers-list h3{
	font-size: 20px;
	letter-spacing: 2px;
	padding-left: 5%;
}

.careers-slider{
	padding-left: 35px;
}
.careers-slider__item{
	padding: 15px 15px 40px 0;
}
.careers-slider .slick-prev,
.careers-slider .slick-next{
	background: transparent;
	padding: 0;
	margin: 0;
	border: 0;
	font-size: 24px;
	position: absolute;
	top: 38%;
	color: #fff;
	text-shadow: 0 0 3px #111;
}
.careers-slider .slick-prev{
	left: 0;
}
.careers-slider .slick-next{
	left: 15px;
}

.careers-item-box{
	max-width: 448px;
	min-height: 200px;
	background: #ffffff;
	padding: 20px 35px;
	border: 1px solid #dadada;
	border-radius: 10px;
	overflow: hidden;
	-webkit-box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	-moz-box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	-o-box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	-webkit-transition: 0.6s ease right;
	-moz-transition: 0.6s ease right;
	-o-transition: 0.6s ease right;
	transition: 0.6s ease right;
}
.careers-item-box .ttl{text-decoration:none!important;outline:none!important;cursor:pointer;}
.careers-item-box .ttl:hover{text-decoration:none!important;}
.careers-item-box .ttl:hover h4{color:#f60000}

.careers-infinite{
	max-width: 448px;
	margin: 0 auto;
	padding-top: 10px;
	display: none;
}
.careers-infinite > .careers-item-box{
	margin-bottom: 20px;
}

.careers-modal .modal-dialog{
	/*max-width: 460px;*/
    margin: 30px auto 0 auto;
}
.careers-modal .modal-body{
	padding: 20px 30px;
	min-height: 300px;
}

.careers-modal h3{
	font-size: 16px;
}
.careers-modal h4{
	font-size: 12px;
}
.careers-modal ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.careers-modal ul li{
	padding-left: 25px;
	position: relative;
	line-height: 1.8;
	 -ms-word-break: break-all;
     word-break: break-all;
     word-break: break-word;
    -webkit-hyphens: auto;
   -moz-hyphens: auto;
        hyphens: auto;
}
.careers-modal ul li:before{
	content: '\25CF';
	position: absolute;
	top: 0;
	left: 5px;
	color: #f60000;
}

body.page-template-template-careers .jo-box{
	display: none !important;
}


/*	NEWS PAGE
*********************************************************/
.category-section{width:100%;display:block;}
.single-section{width:100%;display:none;}
.news-container{
	max-width: 920px;
	margin: 0 auto;
}
.news-boxes__item-wrap{
	max-width: 50%;
	/*float:;*/
	padding: 13px;
}
.news-boxes__item{
	background: #ffffff;
	border: 1px solid #dadada;
	padding: 25px 20px 20px 20px;
	border-radius: 10px;
	-webkit-box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	-moz-box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	-o-box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
}
.news-boxes__item-title{
	margin: 0 0 10px 0;
	font-size: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.news-boxes__item-title a{
	color: inherit !important;
	text-decoration: none !important;
}
.news-boxes__item-meta{
	margin-bottom: 15px;
	letter-spacing: 2px;
	font-size: 12px;
	text-transform: uppercase;
}
.news-boxes__item-meta b{
	font-weight: 500;
}
.news-boxes__item-meta a{
	font-weight: 500;
}
.news-boxes__item-thumb{
	text-align: center;
	margin-bottom: 15px;
}
.news-boxes__item-content p{
	font-size: 14px;
}
.news-boxes__item-content p:last-child{
	margin-bottom: 0;
}

#newssingle-title{
	max-width: 710px;
}
#newssingle-section-1{
	padding-top: 0;
}
#newssingle-section-1 .featured-image{
	margin-top: 25px;
}
#newssingle-section-1 .content{
	max-width: 710px;
    margin-top: 40px;
}

.back{
	color: inherit;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 12px;
	text-decoration: none !important;
	display: inline-block;
	margin-bottom: 10px;

}
.back .fa{
	color: #f60000;
	font-size: 14px;
	display: inline-block;
	margin-right: 5px;
}


body.page-template-template-news{
	background: transparent url(../img/news-bg.png) no-repeat 200px top;
}
body.page-template-template-news.nobg{
	background:none;
}


body.page-template-template-news .page-title h1{
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
}


.styled-select {
  min-width: 215px;
  display: inline-block;
  background-color: rgba(255,255,255,0.4);
  border-radius: 8px;
  box-shadow: 0 0 2px rgb(204, 204, 204);
  transition: all .5s ease;
  position: relative;
  font-size: 14px;
  color: #474747;
  height: 100%;
  text-align: left
}
.styled-select .select {
    cursor: pointer;
    display: block;
    padding: 7px 10px 7px 15px;
    font-weight: 500;
    letter-spacing: 2px;
}
.styled-select .select > i {
    font-size: 18px;
    color: #f60000;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 27px;
}
.styled-select:hover {
    box-shadow: 0 0 4px rgb(204, 204, 204)
}
.styled-select:active {
    background-color: #f8f8f8
}
.styled-select.active:hover,
.styled-select.active {
    box-shadow: 0 0 4px rgb(204, 204, 204);
    border-radius: 5px 5px 0 0;
    background-color: #f8f8f8
}
.styled-select .styled-select__menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px rgb(204, 204, 204);
    border-radius: 0 1px 5px 5px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9
}
.styled-select .styled-select__menu li {
    padding: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer
} 
.styled-select .styled-select__menu {
    padding: 0;
    list-style: none
}
.styled-select .styled-select__menu li:hover {
    background-color: #f2f2f2
}
.styled-select .styled-select__menu li:active {
    background-color: #e2e2e2
}



/*	IMPRINT PAGE
*********************************************************/
.imprint-container{
	max-width: 370px;
}




/*	INFLUENCERS PAGE
*********************************************************/
#careers-section-1.influencers{
	background-image: url(../img/influencer-bg.png), url(../img/careers-bg-part2.png), url(../img/careers-bg-part3.svg);
}
#careers-section-1.influencers .sticky-bg {
	background-image: url(../img/influencer-bg.png), url(../img/careers-bg-part2.png);
}
.influencer-box {
	max-width: 448px;
	min-height: 200px;
	background: #ffffff;
	padding: 20px 35px;
	border: 1px solid #dadada;
	border-radius: 10px;
	overflow: hidden;
	-webkit-box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	-moz-box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	-o-box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	-webkit-transition: 0.6s ease right;
	-moz-transition: 0.6s ease right;
	-o-transition: 0.6s ease right;
	transition: 0.6s ease right;
}
.influencer-box .ttl{text-decoration:none!important;outline:none!important;cursor:pointer;}
.influencer-box .ttl:hover{text-decoration:none!important;}
.influencer-box .ttl:hover h4{color:#f60000}
.influencer-box.with-shadow {
	box-shadow: 20px 20px 30px rgba(153,153,153,0.2);
	text-align:left;
	margin-bottom:30px;
	max-width:none;
}
.influencer-box.with-shadow h4 {
	min-height:42px;
	font-size: 26px;
	margin: 15px 0;
}
.influencer-box .arrow-btn {
	font-size: 15px;
}
.influencers-modal label {
	font-size: 15px;
	margin-bottom: 0;
}
.influencers-modal .modal-body {
	padding: 30px;
}
.form-action {
	text-align: right;
}

/* changes 06-2019*/
.mobile-nav li {
	width: 16.6%;
	font-size: 7px;
}
.mobile-nav li a {
	padding: 5px;
}
.mobile-nav li.main a .icon {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
}



/*	CSS HELPERS
*********************************************************/
.text-light{
	color: #ffffff;
}

.space-10, .space-20,
.space-30, .space-40,
.space-50, .space-60,
.space-70, .space-80,
.space-90, .space-100{
	display: block;
	width: 100%;
	margin: 0;
}
.space-10{ height: 10px; }
.space-20{ height: 20px; }
.space-30{ height: 30px; }
.space-40{ height: 40px; }
.space-50{ height: 50px; }
.space-60{ height: 60px; }
.space-70{ height: 70px; }
.space-80{ height: 80px; }
.space-90{ height: 90px; }
.space-100{ height: 100px; }




/*	KEYFRAMES ANIMATION
*********************************************************/

@-webkit-keyframes arrowSlide {
  0%   { transform: translateX(0); }
  100%   { transform: translateX(8px); }
}
@-moz-keyframes arrowSlide {
  0%   { transform: translateX(0); }
  100%   { transform: translateX(8px); }
}
@-o-keyframes arrowSlide {
  0%   { transform: translateX(0); }
  100%   { transform: translateX(8px); }
}
@keyframes arrowSlide {
  0%   { transform: translateX(0); }
  100%   { transform: translateX(8px); }
}



@-webkit-keyframes closeJOBox {
	0%{ 
		transform: translateX(0); 
	}
	20%{ 
		transform: translateX(-30px); 
	}
	100%{ 
		transform: translateX(1000px); 
		display: none;
	}
}
@-moz-keyframes closeJOBox {
	0%{ 
		transform: translateX(0); 
	}
	20%{ 
		transform: translateX(-30px); 
	}
	100%{ 
		transform: translateX(1000px); 
		display: none;
	}
}
@-o-keyframes closeJOBox {
	0%{ 
		transform: translateX(0); 
	}
	20%{ 
		transform: translateX(-30px); 
	}
	100%{ 
		transform: translateX(1000px); 
		display: none;
	}
}
@keyframes closeJOBox {
	0%{ 
		transform: translateX(0); 
	}
	20%{ 
		transform: translateX(-30px); 
	}
	100%{ 
		transform: translateX(1000px); 
		display: none;
	}
}




/* MEDIA QUERIES
*********************************************************/
@media screen and (max-width: 1856px) {
	#careers-section-1{
		background-size: 599px, 407px, 360px;
	}
}

@media screen and (max-width: 1600px) {
	body.page-template-template-about{
	    background-position: 810px 0, left top;
	    background-size: 700px, 1050px;
	}

	#about-section-1{
		min-height: 345px;
	}

	#about-section-1 .featured-video{
		max-width: 540px;
	}


	#about-section-2{
		min-height: 975px;
		background-position-y: 75px;
	}
	#about-section-2 .game-icons li:nth-child(2){
		padding-top: 65px;
	}

	#about-section-3 .content {
		width: 81%;
	    margin: 0 0 0 auto;
	}

	
	.timeline{
		/*max-width: 6495px; orig*/
		max-width: 19000px;
	}
	.timeline__inner{
		/*padding-left: 18%;*/
		padding-left: 6.6%;
	}
	.timeline__event h2{
		font-size: 150px;
		line-height: 125px;
	}
	.timeline__event h2 .line-bottom{
	    right: 122px;
	}
	.timeline__event img{
		max-width: 300px;
	}
	.timeline__thumb img{
		max-width: 540px;
	}

	.timeline__section:nth-child(1), 
	.timeline__section:nth-child(3),
	.timeline__section:nth-child(5),
	.timeline__section:nth-child(7),
	.timeline__section:nth-child(9),
	.timeline__section:nth-child(11),
	.timeline__section:nth-child(13),
	.timeline__section:nth-child(15){
		/*padding-top: 1.2%; old 7-19-2019*/
		padding-top: 0.5%; /* new 7-19-2019*/
		background-position-y: -234px;
	}
	.timeline__section:nth-child(2),
	.timeline__section:nth-child(4),
	.timeline__section:nth-child(6),
	.timeline__section:nth-child(8),
	.timeline__section:nth-child(10),
	.timeline__section:nth-child(12),
	.timeline__section:nth-child(14),
	.timeline__section:nth-child(16){
	    /*padding-top: 1.4%; old 7-19-2019*/
	    padding-top: 1%;
	    background-position-y: -172px;
	}
	.timeline__pointer--top{
	    /*top: -124px;*/
		top: 0px;
	    left: -19.5%;
	}
	.timeline__pointer--bottom{
	    bottom: -105px;
	    left: -41%;
	}
	


	#careers-section-1{
		background-size: 520px, 353px, 312px;
	}

}

@media screen and (max-width: 1440px) {
	body.page-template-template-about{
	    background-position: 760px 0, left top;
	    background-size: 650px, 1000px;
	}

	#about-section-1{
		min-height: 0;
	}

	#about-section-1 .featured-video{
		max-width: 485px;
	}


	#about-section-2{
		min-height: 860px;
	}
	#about-section-2 .row{
		padding-left: 55px;
	}
	#about-section-2 .content{
		max-width: 430px;
		margin: 0;
	}
	#about-section-2 h2{
	    font-size: 45px;
	    letter-spacing: 5px;
	}
	#about-section-2 .game-icons {
	    padding: 0;
	    max-width: 568px;
	    margin: 35px 0 0 25%;
	}
	#about-section-2 .game-icons li:nth-child(2){
		padding-top: 55px;
	}

	#about-section-3 .headline img {
	    width: 127px;
	    height: auto;
	}
	#about-section-3 .headline h3 {
	    font-size: 45px;
	}

	#about-section-5 h2 {
	    font-size: 58px;
	    letter-spacing: 3px;
	}


	#careers-section-1{
		background-size: 440px, 299px, 264px;
	}
}


@media screen and (max-width: 1360px) {
	#about-section-2 {
	    background-position-y: 98px;
	}
	#about-section-2 .col-md-6:nth-child(2){
	    padding-top: 160px;
	}
}


@media screen and (max-width: 1280px) {
	body.page-template-template-about{
		background-image: url(../img/controller.svg);
		background-size: 50%;
		background-position: 120% 0;
	}

	#about-section-1{
		min-height: auto;
	}

	#about-section-2{
	    background-position-y: 124px;
	}
	#about-section-2 .col-md-6:nth-child(2){
	    padding-top: 175px;
	}


	#careers-section-1{
		background-size: 375px, 255px, 264px;
		min-height: auto;
	}

}


@media screen and (max-width: 1200px) {
	#about-section-2 {
		min-height: 800px;
	    background-position-y: 150px;
	}
	#about-section-2 .col-md-6:nth-child(2){
	    padding-top: 195px;
	}
	#about-section-2 .game-icons{
		margin-top: 25px;
	}

	#about-section-3 .headline h3 {
	    font-size: 38px;
	}
	#about-section-3 .headline img {
	    width: 107px;
	}


	#about-section-5 h2 {
	    font-size: 45px;
	    letter-spacing: 3px;
	}
}

@media screen and (max-width: 1120px) {
	#careers-section-1{
		background-size: 325px, 221px, 264px;
	}

	#about-section-2 {
	    background-position-y: 190px;
	}
	#about-section-2 .col-md-6:nth-child(2){
	    padding-top: 225px;
	}
	#about-section-2 h2{
	    font-size: 40px;
	    letter-spacing: 4px;
	}

	#about-section-3 .row > div{
		width: 100%;
		margin: 0;
	}
	#about-section-3 .content{
		max-width: 425px;
		margin: 0 auto;
	}
}

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

	.jo-box .close{
		display: block;
	}

	#about-section-2{
		min-height: 1360px;
		background-image: url(../img/img-triangle-games.png), url(../img/mobile-img-triangle-people.png);
		background-size: 76%, 480px;
		background-position: right 85px, left 790px;
	}
	#about-section-2 .col-md-6{
		width: 100%;
	}
	#about-section-2 .col-md-6:nth-child(2){
	    padding-top: 30px;
	}
	#about-section-2 .content {
	    /*max-width: 570px;*/
	}
	#about-section-2 .content p:last-child{
		display: none;
	}
	#about-section-2 .game-icons{
		display: none;
	}
	#about-section-2 .mobile-content,
	#about-section-2 .mobile-content *{
		/* display: block !important; */
		display: inline-block !important;
	}
	#about-section-2 .mobile-content{
		padding-top: 80px;
	}
	#about-section-2 .mobile-content .content{
		max-width: 330px;
	}
	#about-section-2 .mobile-content .game-icons{
	    margin-top: 80px;
	}

	#about-section-3{
		margin-top: 0;
	}
	

	#about-section-4{
		height: auto !important;
	}
	#about-section-4 .content,
	.timeline{
		display: none !important;
	}
	.timeline-slider{
		display: block !important;
	}

	#about-section-5 .col-md-6{
		width: 100%;
	}
	#about-section-5 .col-md-6:last-child{
		display: none;
	}
	#about-section-5 .content{
		max-width: 480px;
		margin: 0 auto;
	}

	#careers-section-1{
		background-size: 280px, 221px, 264px;
	}
}


@media screen and (min-width: 992px) {
	/* NEW CSS FOR CAREERS PAGE */
	.header.sticky {
		position: fixed;
		top: 0;
		width: auto;
		right: 0;
		left: 240px;
	}
	.page-title.sticky {
		position:fixed;
		top:120px;
	}
	#careers-section-1.sticky, 
	#careers-section-1.influencers.sticky {
		position:relative;
		background:none;
		padding-top:180px;	
	}
	#careers-section-1 .sticky-bg {
		position:fixed;
		left:200px;
		right:0;
		top:0;
		height:100vh;
		background-color: transparent;
		background-repeat: no-repeat;
		background-image: url(../img/new-careers-bg-part1.png), url(../img/careers-bg-part2.png);
		background-size: 40% auto, 400px auto;
		background-position: left calc(50% + 100px), right calc(50% + 100px);
		z-index:-1;
	}
	.careers-list-cols figure {
		margin:25px 0 -5px;
	}
	.careers-list-cols h3 {
		margin-bottom:60px;
	}
	.careers-item-box.with-shadow {
		box-shadow: 20px 20px 30px rgba(153,153,153,0.2);
		text-align:left;
		margin-bottom:30px;
		max-width:none;
	}
	.careers-item-box.with-shadow h4 {
		min-height:42px;
		margin-bottom:0;
	}
}
@media screen and (min-width: 992px) and (max-width: 1630px) {
	#careers-section-1.sticky .content {
		padding:0 70px 0 300px;
		max-width:none;
	}
}
@media screen and (max-width: 992px) {
	/*body{
		background-image: none !important;
	}*/

	.contact-form-box{
		margin-top: 20px;
	}

	body.page-template-template-about {
	    background-size: 180px;
	    background-position: 90% 0;
	}


	#about-section-3 .headline{
		display: block;
		text-align: center;
		max-width: 635px;
	}
	#about-section-3 .headline .media-left,
	#about-section-3 .headline .media-body{
		display: block;
		width: 100%;
	}
	#about-section-3 .headline .media-left{
		margin-bottom: 25px;
	}
	#about-section-3 .headline br{
		display: none;
	}


	#careers-section-1{
		background-image: url(../img/new-careers-bg-part1.png), url(../img/careers-bg-part4.png);
		background-position: left 0, right 45px;
		background-size: 410px, 172px;
		padding-top: 415px;
	}
	
	#careers-section-1.influencers{
		background-image: url(../img/influencer-bg.png), url(../img/careers-bg-part4.png);
	}

	#careers-section-1 .content{
		max-width: 520px;
		margin: 0 auto;
		text-align: center;
	}
	#careers-section-1 .content p{
		max-width: 100% !important;
	}
	#careers-section-1 .thumb{
		display: block;
	}
	#careers-section-1 .space-100,
	#careers-section-1 .space-80{
		display: none !important;
	}
	#careers-section-1 .careers-list h3{
		padding: 0;
	}
	#careers-section-1 .careers-list{
		margin-right: 0;
	}
	.careers-slider{
		display: none;
	}
	.careers-infinite{
		display: block;
	}

	body.page-template-template-news{
		background-position: left top;
	}
	.news-boxes{
		max-width: 435px;
		margin: 0 auto;
	}
	.news-boxes__item-wrap{
		max-width: 100%;
	}
	
	#about-section-3 .headline .media-left:before{display:none;}

	#careers-section-1.influencers {
		padding-top: 60px;
	}
	
}


@media screen and (max-width: 768px) {
	body{
		padding-left: 0;
		padding-bottom: 85px;
	}

	.section.section--full{
		margin-left: 0;
	}


	/* SIDEBAR */
	.sidebar{
		display: none;
	}


	/* MOBILE NAV */
	.mobile-nav{
		display: block !important;
	}


	/* FOOTER */
	footer.footer{
		min-height: 70px;
	}
	.footer__info,
	.footer__copyright{
		font-size: 11px;
	}
	.footer__info img{
		max-width: 100px;
		height: auto;
	}
	.footer__info span{
		margin: 0 5px;
	}


	body.home{
		padding-bottom: 0;
	}
	.home footer.footer{
		margin-top: -190px;
	}


	#about-section-1 .col-md-6{
		text-align: center;
	}

	#about-section-2{
		min-height: 1400px;
		background-position: right 85px, left 830px;
	}
	#about-section-2 .row {
	    padding-left: 15px;
	}


	body.page-template-template-contact{
		background-image: none;
	}
	#contact-section-1 .content{
		max-width: 625px;
	}
}

@media screen and (max-width: 640px) {
	.jo-box.open{
		right: 15px;
	}

	#about-section-2 {
		min-height: 1525px;
		background-size: 94%, 90%;
	    background-position: right 133px, left 880px;
	}
	#about-section-2 .mobile-content {
	    padding-top: 200px;
	}
	#about-section-2 .mobile-content .game-icons {
	    margin-top: 45px;
	}

	#about-section-3 .content h3 {
	    font-size: 28px;
	}
	#about-section-3 .content h3 br{
		display: none;
	}


	/* FOOTER */
	.footer__info,
	.footer__copyright{
		text-align: center;
	}
	.footer__nav,
	.footer__copyright{
		display: block;
		width: 100%;
	}
	.footer__nav{
		position: absolute;
		bottom: 0;
		left: 0;
		text-align: center;
		margin: 0 auto;
	}
	.footer__nav li{
		display: inline-block;
		float: none;
	}
	.footer .row > div{
		position: relative;
		padding-bottom: 35px;
	}

	#careers-section-1{
		background-position: left 0, right 0;
		background-size: 350px, 172px;
		padding-top: 385px;
		margin-top: 0;
	}
}

@media screen and (max-width: 480px){
	#about-section-2 {
		min-height: 1300px;
	    background-position: right 172px, left 820px;
	}
	#about-section-2 .content{
		max-width: 335px;
	}

	.mobile-nav li a {
		font-size: 7px;	
	}
}


@media screen and (max-width: 420px){
	.jo-box{
		max-width: 370px;
		padding: 20px 20px 20px 55px;
		right: -325px;
	}
	.jo-box.open{
		right: 10px;
	}

	/* .mobile-nav li a{
		font-size: 9px;
	} */

	#about-section-2{
		min-height: 1238px;
	}
	#about-section-2 h2 {
	    font-size: 34px;
	    letter-spacing: 3px;
	}
	#about-section-2 .mobile-content .content {
	    max-width: 281px;
	}
	#about-section-2 .mobile-content {
	    padding-top: 180px;
	}
	#about-section-2 .mobile-content .game-icons {
	    margin-top: 60px;
	}

	#about-section-3 .content h3 {
	    font-size: 24px;
	}

	#about-section-5{
		padding-top: 72px;
	}
	#about-section-5 h2{
	    font-size: 36px;
	    letter-spacing: 3px;
	}

	.footer__copyright p {
		font-size: 10px;
	}
}


@media screen and (max-width: 320px){
	.page-title h1 {
		font-size: 40px;
	}

	.mobile-nav li a{
		padding-left: 0;
		padding-right: 0;
		font-size: 7px;
	}

	.footer__copyright p {
		font-size: 9px;
	}

}




/* DARK MODE
*********************************************************/

body.dark-mode{
	background-color: #111111;
	color: #777;
}

.dark-mode h1, .dark-mode h2, .dark-mode h3, 
.dark-mode h4, .dark-mode h5, .dark-mode h6{
	color: #ffffff;
}

.dark-mode p{
	color: #777;
}

.dark-mode .img-inverse img:nth-child(1){
	display: none;
}
.dark-mode .img-inverse img:nth-child(2){
	display: block;
}

.dark-mode .pace,
.dark-mode .pace-bg{
	background: #181818;
}

.dark-mode .jo-box{
	background: #181818;
	border-color: #363636;
	-webkit-box-shadow: 30px 30px 60px 0px rgba(255,255,255,0.2);
	-moz-box-shadow: 30px 30px 60px 0px rgba(255,255,255,0.2);
	-o-box-shadow: 30px 30px 60px 0px rgba(255,255,255,0.2);
	box-shadow: 30px 30px 60px 0px rgba(255,255,255,0.2);
}
.dark-mode .jo-box__btn{
	background: #181818;
}
.dark-mode .jo-box__content a{
	color: #ffffff;
}


/* SIDEBAR */
.dark-mode .sidebar{
	background-color: #111111;
	background-image: url(../img/sidebar-bg-dark.png);
	border-right-color: #222222;
}
.dark-mode .sidebar a{
	color: #818181;
}


/* MOBILE NAV */
.dark-mode .mobile-nav{
	background: #111111;
	border-top-color: #222222;
}
.dark-mode .mobile-nav li a:hover,
.dark-mode .mobile-nav li a:focus,
.dark-mode .mobile-nav li.active a{
	color: #ffffff;
}


/* MAIN */
.dark-mode .main__bg{
	background: #111111;
}
.dark-mode .main__bg .shape-left{
	background: #111111;
}
.dark-mode .main__bg .shape-right{
	background: #1d1d1d;
}


/* CONTACT PAGE */
.dark-mode .contact-form-box{
	background-color: #181818;
	border-color: #222222;
}




/* CAREERS PAGE */
.dark-mode .careers-item-box{
	background: #181818;
	border-color: #363636;
}
.dark-mode .careers-item-box a{
	color: #ffffff;
}
.dark-mode .careers-modal .modal-content{
	background-color: #181818;
}



/* NEWS PAGE */
.dark-mode .news-boxes__item{
	background: #181818;
	border-color: #363636;
}
.dark-mode .news-boxes__item a{
	color: #ffffff;
}



/* INFLUENCERS PAGE */
.dark-mode .influencer-box{
	background: #181818;
	border-color: #363636;
}
.dark-mode .influencer-box a{
	color: #ffffff;
}
.dark-mode .influencers-modal .modal-content{
	background-color: #181818;
}
.dark-mode button.arrow-btn {
	color: #fff;
}

.dark-mode .mobile-nav li.active path {
	fill: #fff;
}

/* 2-7-2023 */
.timeline-slider .slick-prev{z-index:1;}

@media screen and (max-width: 1024px){
	#about-section-2 .mobile-content {padding-top:0!important;display: block !important;}
	#about-section-2 .mobile-content .game-icons {margin-top: 50px;display: block !important;margin-left: 0;}
	#about-section-2 {background-size: 70%, 480px;background-position: right 0px, left 790px;}
	#about-section-2 .mobile-content .content .break_{display: block !important;padding-top: 90%;}
}
@media screen and (max-width: 920px){
	#about-section-2 {background-size: 60%, 480px;background-position: right 80px, left 790px;}
}
@media screen and (max-width: 780px){
	#about-section-2 {background-size: 60%, 480px;background-position: right 130px, left 790px;}
}
@media screen and (max-width: 768px){
	#about-section-2 {background-size: 60%, 480px;background-position: right 50px, left 790px;}
}
@media screen and (max-width: 639px){
	#about-section-2 {background-size: 60%, 480px;background-position: right 100px, left 790px;}
}
@media screen and (max-width: 540px){
	#about-section-2 {background-size: 60%, 480px;background-position: right 140px, left 790px;}
}
@media screen and (max-width: 380px){
	#about-section-2 {background-position: right 170px, left 790px;}
}




.no-positions{
	display: flex;
	flex-direction: column;
	max-width: 540px;
	margin-left: auto;
	text-align: center;
	background-color:#fff;
	padding:16px;
	border-radius: 10px;
	border:1px solid #dadada;
	
	-webkit-box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	-moz-box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	-o-box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	box-shadow: 20px 20px 30px -7px rgba(179, 179, 179, 0.2);
	-webkit-transition: 0.6s ease right;
	-moz-transition: 0.6s ease right;
	-o-transition: 0.6s ease right;
	transition: 0.6s ease right;
}
.no-positions p{
	margin-bottom: 0px;
}