/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Jost:200,300,400,500,600,700,800,900');

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins' , sans-serif;
}

body
{
	overflow: hidden;
	background: #000;
}

section
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(bg.jpg); 
	background-position: center;
	background-size: cover;
	animation: animateBg 50s linear infinite;
}

@keyframes animateBg
{
	0%,100%
	{
		transform: scale(1);
	}
	50%
	{
		transform: scale(1.2);
	}
}

section span
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4px;
	height: 4px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(255,255,255,0.1),
	0 0 0 8px rgba(255,255,255,0.1),
	0 0 20px rgba(255,255,255,1);
	animation: animate 10s linear infinite;
	z-index: 2;
}

section span::before
{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 300px;
	height: 1px;
	background: linear-gradient(90deg,#fff,transparent);
	
}

@keyframes animate
{
	0%
	{
		transform: rotate(315deg) translateX(0);
		opacity: 0;
	}
	70%
	{
		opacity: 1;
	}
	100%
	{
		transform: rotate(315deg) translateX(-1000px);
		opacity: 0;
	}
}

span:nth-child(1)
{
	top: 130px;
	right: 1250px;
	left: initial;
	animation-delay: 2s;
	animation-duration: 1.4s;
}

span:nth-child(2)
{
	top: 70px;
	right: 0px;
	left: initial;
	animation-delay: -0.2s;
	animation-duration: 5.1s;
}

span:nth-child(3)
{
	top: 10px;
	right: 200px;
	left: initial;
	animation-delay: 0.4s;
	animation-duration: 3.2s;
}

span:nth-child(4)
{
	top: 50px;
	right: 1680px;
	left: initial;
	animation-delay: 0.6s;
	animation-duration: 2.5s;
}

span:nth-child(5)
{
	top: 135px;
	right: 450px;
	left: initial;
	animation-delay: 0.8s;
	animation-duration: 3.5s;
}

span:nth-child(6)
{
	top: 230px;
	right: 620px;
	left: initial;
	animation-delay: 1s;
	animation-duration: 4.1s;
}

span:nth-child(7)
{
	top: 160px;
	right: 430px;
	left: initial;
	animation-delay: 1.2s;
	animation-duration: 3.75s;
}

span:nth-child(8)
{
	top: 80px;
	right: 790px;
	left: initial;
	animation-delay: 1.4s;
	animation-duration: 2.25s;
}

span:nth-child(9)
{
	top: 120px;
	right: 1000px;
	left: initial;
	animation-delay: 0.75s;
	animation-duration: 3.25s;
}

span:nth-child(10)
{
	top: 60px;
	right: 50px;
	left: initial;
	animation-delay: 2.75s;
	animation-duration: 2.75s;
}

span:nth-child(11)
{
	top: 20px;
	right: 100px;
	left: initial;
	animation-delay: 3.75s;
	animation-duration: 2.05s;
}

.container
{
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	/*background: rgba(0,0,0,0.5);*/
	z-index: 1;
}

.container .countdownBx
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
}

.container .countdownBx a
{
	color: #fff;
	text-decoration: none;
	font-size: 1.4em;
	font-weight: 700;
	margin: 20px 0 0;
	display: flex;
	align-items: center;
}

.container .countdownBx a ion-icon
{
	margin: 0 10px;
}

.container .countdownBx h2
{
	text-align: center;
	font-size: 1.5em;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 500;
	line-height: 4em;
}
/*
.container .countdownBx h2 span
{
	text-transform: inherit;
	font-size: 5.5em;
	font-weight: 300;
	
}

.container .countdownBx h2 span i
{
	font-style: initial;
	color: #0B90C8;
	font-weight: 700;
	font-family: 'Jost', sans-serif;
}
*/

.container .countdownBx .contdown
{
	margin-top: 30px;
	/*background: rgba(0,0,0,0.1);*/
	width: 100%;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
}


.container .countdownBx .contdown div
{
	position: relative;
	width: 100px;
	text-align: center;
	color: #fff;
	font-size: 3.5em;
	font-weight: 500;
	margin: 0 15px;
	margin-top: -25px;
}

.container .countdownBx .contdown div:before
{
	content: 'text';
	position: absolute;
	bottom: -30px;
	left: 0;
	width: 100%;
	height: 35px;
	color: #fff;
	font-size: 0.35em;
	font-weight: 500;
	line-height: 35px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.container .countdownBx .contdown div#dia:before
{
	content: 'Dia';
}

.container .countdownBx .contdown div#horas:before
{
	content: 'Horas';
}

.container .countdownBx .contdown div#minutos:before
{
	content: 'Minutos';
}

.container .countdownBx .contdown div#segundos:before
{
	content: 'Segundos';
}

.container .countdownBx .contdown div#segundos,
.container .countdownBx .contdown div#segundos:before
{
	color: #ff0;
}

@media (max-width: 991px)
{	
	.container .countdownBx h2 span
	{
		font-size: 3em;
		display: flex;
		flex-direction: column;
	}
}


@media (max-width: 600px)
{
	.container .countdownBx h2
	{
		font-size: 1.1em;
		line-height: 3em;
	}
	
	.container .countdownBx .contdown div
	{
		width: 80px;
		font-size: 2em;
		margin: 0;
		margin-top: -25px;
	}
	
	.container .countdownBx h2 span
	{
		font-size: 2.5em;
	}
	
	section
	{
		background-position: right;
	}
}

@media (max-width: 380px)
{
	.container .countdownBx h2
	{
		font-size: 0.8em;
	}
}