/* montserrat-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/montserrat-v30-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/montserrat-v30-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/montserrat-v30-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/montserrat-v30-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat bold';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/montserrat-v30-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body,html{
	margin:0;
	position: relative;
	background-color: #000;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
}
@keyframes headerAni {
  from {opacity: 0;}
  to {opacity: 1;}
}
header{
	position: relative;
	opacity:0;
	animation: headerAni 2000ms linear 100ms forwards;
    width: 100%;
    height: 100vh;
    background-color: #000;
}
#videoWrapper{
	position: relative;
	height:100%;
}
main{
	color:#fff;
}
footer{
	color:#777;
}
.wrapper{
	width:60%;
	margin:0 auto;
}
.date{
	font-size: 2em;
	text-align: center;
	margin: 50px 0px;
	margin-bottom: 30px;
}
#countdown{
	font-size: 3em;
	text-align: center;
	margin-bottom: 100px;
	margin-top: 100px;
}
h2{
	font weight:800;
}
p, ul li{
	line-height: 1.8em;
}
a{
	text-decoration: none;
	color:cornflowerblue;
	font-weight: 800;
}
strong, b{
	font-family: 'Montserrat bold';
	
}
a:hover{
    color: rgba(143,182,251,1.00);
}
.tickets{
	font-size: 1.5em;
	color:#fff;
	text-decoration: underline;
}
.ticketsIcon{
    width: 100px;
    height: 100px;
	margin-top: -40px;
	margin-right: 20px;
	float:left;
    background-image: url(../images/tickets.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.center{
	text-align: center;
}
.logoImg{
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
	display: inline-block;
	opacity: 0.5;
	transition: opacity 200ms ease;
}
.logoImg:hover{
	opacity:1;
	transition: opacity 600ms ease;
}
.logoImg.big{
	width:250px;
	height:250px;
}
hr{
	opacity:0.5;
}
footer ul {
    margin: 0;
    padding: 0;
    margin-top: 50px;
	padding-top: 20px;
    padding-bottom: 100px;
    border-top: thin solid rgba(51,51,51,1.00);
}
footer ul li{
	list-style-type: none;
	display: inline-block;
	float:left;
	margin-right: 30px;
}
footer ul li a{
	font-weight: 400;
	color:#444;
}
.vjs-afterglow-skin.vjs-responsive, .vjs-afterglow-skin.vjs-responsive video {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 480px) {
	.wrapper {
		width:80%;
	}
	#videoWrapper{
	}
	.vjs-afterglow-skin.vjs-responsive, .vjs-afterglow-skin.vjs-responsive video{
		width: 100%;
		height: 100vh;
	}
	.tickets{
		font-size: 1.2em;
		color:#fff;
		text-decoration: underline;
		text-align: center;
	}
	.ticketsIcon{
    float: none;
    text-align: center;
   
	}
	.logoImg{
		width: 120px;
		height: 50px;
		 background-size: 100% auto;
	}
	.logoImg.big{
		width:180px;
		height:100px;
		background-size: 100% auto;
	}
}