*,
:after,
:before {
	box-sizing: border-box
}

html {
	font-family: sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
	background-color: #080f22;
	overflow: hidden;
}


@media (max-width:1200px) {
	legend {
		font-size: calc(1.275rem + .3vw)
	}
}

progress {
	vertical-align: baseline
}


:root {
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1
}


#particles-js {
	top: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%
}

#particles-js,
.count-particles {
	position: absolute;
	left: 0;
	z-index: 100
}

.count-particles {
	background: #002;
	top: 48px;
	width: 80px;
	color: #13e8e9;
	font-size: .8em;
	text-align: left;
	text-indent: 4px;
	line-height: 14px;
	padding-bottom: 2px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: 700
}

.js-count-particles {
	font-size: 1.1em
}

#stats,
.count-particles {
	-webkit-user-select: none
}

#stats {
	border-radius: 3px 3px 0 0;
	overflow: hidden
}

.count-particles {
	border-radius: 0 0 3px 3px
}


@media screen and (max-width:1920px) {
	html {
		font-size: .83333vw
	}
}

@media (max-width:991.98px) {
	html {
		font-size: 1.66667vw
	}
}


.header-logo {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	top: .15rem;
	width: 13.625rem
}
@media (max-width:991.98px) {
	.header-logo {
		position: absolute;
		left: 3%;
		transform: translate(-4%);
		top: .25rem;
		width: 15.125rem
	}
}
.header-logo img {
	display: block;
	width: 100%;
	height: auto
}

.page {
	position: relative;
	max-width: 1920px;
	min-height: 60rem;
	height: 100vh;
	margin: 0 auto;
	overflow: hidden;
	background: #080f22 url(../images/bg-landing.jpg) no-repeat top;
	background-size: 100%;
	transform-origin: top center;
}

@media (max-width:991.98px) {
	.page {
		background-image: url(../images/bg-landing-m.jpg);
		min-height: 106.25rem
	}
}

.playnow {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	top: 37.125rem;
	width: 18.75rem;
	height: 17.375rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width:991.98px) {
	.playnow {
		top: 82.75rem;
		width: 21.75rem;
	}
}

.playnow-circle {
	width: 100%;
	height: 100%;
	animation: glow 0.5s infinite alternate, sloganAni .4s .1s linear both;
}

.playnow-btn {
	position: relative;
	display: inline-block;
	width: 100%
}

.playnow-btn:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-size: 100% 100%
}

.playnow-btn-img {
	display: block;
	width: 100%;
	height: auto
}

/*----------------------------Animation---------------------------------*/
.pulse {
	animation-name: pulse;
	-webkit-animation-name: pulse;

	animation-duration: 2s;
	-webkit-animation-duration: 2s;

	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.9);
		opacity: 1;
	}

	50% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(0.9);
		opacity: 1;
	}
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0.95);
		opacity: 1;
	}

	50% {
		-webkit-transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(0.95);
		opacity: 1;
	}
}

@keyframes glow {
	from {
		filter: drop-shadow(0 0 0.3rem rgb(255, 217, 0)) brightness(110%);
	}

	to {
		filter: drop-shadow(0 0 1rem rgb(255, 217, 0)) brightness(150%);
	}
}

@-webkit-keyframes glow {
	from {
		filter: drop-shadow(0 0 0.3rem rgb(255, 217, 0)) brightness(110%);
	}

	to {
		filter: drop-shadow(0 0 1rem rgb(255, 217, 0)) brightness(150%);
	}
}

@-webkit-keyframes sloganAni {
	0% {
		-webkit-transform: scale(1.8);
		opacity: 0;
	}

	60% {
		-webkit-transform: scale(1);
		opacity: 1;
	}

	65% {
		-webkit-transform: translate(-4px, -4px);
	}

	70% {
		-webkit-transform: translate(0, 0);
	}

	75% {
		-webkit-transform: translate(4px, 4px);
	}

	80% {
		-webkit-transform: translate(0, 0);
	}

	85% {
		-webkit-transform: translate(-4px, 4px);
	}

	90% {
		-webkit-transform: translate(0, 0);
	}

	95% {
		-webkit-transform: translate(4px, -4px);
	}

	100% {
		-webkit-transform: translate(0, 0);
		opacity: 1;
	}
}

@keyframes sloganAni {
	0% {
		transform: scale(1.8);
		opacity: 0;
	}

	60% {
		transform: scale(1);
		opacity: 1;
	}

	65% {
		transform: translate(-4px, -4px);
	}

	70% {
		transform: translate(0, 0);
	}

	75% {
		transform: translate(4px, 4px);
	}

	80% {
		transform: translate(0, 0);
	}

	85% {
		transform: translate(-4px, 4px);
	}

	90% {
		transform: translate(0, 0);
	}

	95% {
		transform: translate(4px, -4px);
	}

	100% {
		transform: translate(0, 0);
		opacity: 1;
	}
}
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 1s;
	animation-delay: 0.5s;
 }
 
 @-webkit-keyframes bounceInDown {
	0% {
	   opacity: 0;
	   -webkit-transform: translateY(-200px);
	}
	60% {
	   opacity: 1;
	   -webkit-transform: translateY(30px);
	}
	80% {
	   -webkit-transform: translateY(-10px);
	}
	100% { 
	   -webkit-transform: translateY(0);
	}
 }
 
 @keyframes bounceInDown {
	0% {
	   opacity: 0;
	   transform: translateY(-200px);
	}
	60% {
	   opacity: 1;
	   transform: translateY(30px);
	}
	80% {
	   transform: translateY(-10px);
	}
	100% {
	   transform: translateY(0);
	}
 }
 
 .bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
 }