html{
}
*, ::after, ::before {
    box-sizing: border-box;
}
body{
	margin:0;
	padding:0;	
	font-family:'Poppins', Arial;
	color:#fff;
	background:url(../images/bg.jpg) top center no-repeat #000;
	background-size:cover;
	position:relative;
	height:100%;
	background-attachment:fixed;
	padding-top:100px
}

.overlay{
	background:rgba(0,0,0,.8);
	position:fixed;
	left:0;
	top:0;
	bottom:0;
	right:0;
	width:100%;
	height:100%;
	z-index:1;
	overflow:hidden;
}

@media (min-width: 1200px){
	.container {
		width:1170px;
	}
}

#wrap{
	width:100%;
	height:100%;
	display:table;
	position:relative;
	z-index:10000;
}

#defaultCountdown{
	z-index:2;
	margin:0 auto;
	display:table;
	position:relative;
}

.image-align{
	margin:0 auto;
	text-align:center;
	display:block;
	padding-top: 100px;
}

h1{
	font-size:96px;
	font-weight:700;
	text-align:center;
	margin-top: 20px;
	letter-spacing: -4px;
}

h1 span.small{
	font-size:42px;
	font-weight:300;
	display:block
}
h1 span.big{
    display: block;
    padding-top: 0;
    margin-top: 10px;
    line-height: 1;
}

.yellow{
	color:#ffe600;
}

p{
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    font-weight: 300;
    font-family: 'Oswald', Arial;
	position:relative;
	width:100%;
}
p:before,
p:after{
	content:" ";
	position:absolute;
	width:40%;
	height:1px;
	background:rgba(255,255,255,.3);
	transform:translateX(-50%);
	left:50%;
	top:-15px;
	margin:auto;
}
p:after{
	bottom:0;
	bottom:-20px;
	top:auto;
	width:20%
}

a{
	color:#fff;
	text-decoration:underline;
}

p.copyright{
	font-size:13px;
	margin-top:30px;
	color:#61666f;
}
p.copyright:before,
p.copyright:after{
	content:none
}
.envelope{
    margin: 0 auto;
    text-align: center;
}
.envelope svg{
	fill:#ffe600
}
::-webkit-input-placeholder { /* Edge */
  color: #fff;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

::placeholder {
  color: #fff;
}

/*------------------------------------------------*/
/* Responsive styles */
/*------------------------------------------------*/

@media (max-width: 768px){
	h1 span.small {
		font-size: 24px;
	}
	h1{
		font-size:56px
	}
	p{
		font-size:15px
	}
	::placeholder {
	  font-size: 13px
	}
}