html{
	height: 100%;
}

body{
	font-size: 16px;
	height: 100%;
	font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin:0;
	font-weight: 700;
}

img{
	max-width: 100%;
}

a {
  color: #fff;
  position: relative;
  text-decoration: none;
}

a:link {color:#fff; text-decoration:none;}
a:visited {color:#fff; text-decoration:none;}

a::before {
  color: #fff;
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #f20000;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.comming-soon{
	background: url(../images/bg.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	position: relative;
	min-height: 100%;
}

.comming-soon:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.85);
}

.countdown-timer-wrapper{
	text-align: center;
}

.timer .timer-wrapper{
	display: inline-block;
	width: 126px;
	margin: 0;
	text-align: center;
	vertical-align: top;
}

.timer .timer-wrapper .time{
	font-size: 46px;
	color: #fff;
	font-weight: 700;
	line-height: 1em;
}

.timer .timer-wrapper .text{
	color: #fff;
	font-size: 15px;
	font-weight: 300;
}

.comming-soon-info{
	width: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	align-items: center;
}

.comming-soon-inner{
	width: 100%;
	padding: 20px;
	text-align: center;
}

.comming-soon-inner .logo{
	margin: 60px 0;
}

.site-info h2{
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: #fff;
	font-size: 40px;
	font-weight: 300;
	line-height: 1.5em;
}

.site-info h2 span{
	display: block;
	font-weight: 700;
}

.site-info p{
	margin-top: 40px;
	line-height: 1.8em;
	color: #fff;
	font-weight: 300;
}

.contact-form{
	width: 50%;
	background: linear-gradient(to right, #870000, #190a05);
	position: absolute;
	top: 0;
	left: 50%;
	bottom: 0;
	z-index: 2;
	padding: 40px;
	display: flex;
	align-items: center;
}

.contact-box{
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
}

.title{
	text-transform: uppercase;
	font-size: 34px;
	color: #fff;
	padding-bottom: 20px;
	background: url(../images/title-bg.png) no-repeat bottom center;
	margin-bottom: 40px;
}

.contact-box p{
	color: #fff;
	font-weight: 300;
	padding-bottom: 5px;
}


/****************************************
		Responsive Media Query
****************************************/

@media only screen and (max-width:1024px){
	.comming-soon-info{
		float: none;
		position:relative;
		width: 100%;
		height: auto;
		padding: 100px 30px;
	}
	
	.contact-form{
		float: none;
		position:relative;
		width: 100%;
		left: 0;
		height: auto;
		padding: 100px 30px;
	}
}

@media only screen and (max-width:768px){
	
}

@media only screen and (max-width:480px){
	
	.comming-soon-info{
		padding: 40px 20px;
	}
	
	.contact-form{
		padding: 40px 20px;
	}
	
	.comming-soon-inner{
		padding: 0;
	}
	
	.timer .timer-wrapper{
		width: 70px;
	}
	
	.timer .timer-wrapper .time{
		font-size: 26px;
	}

	.timer .timer-wrapper .text{
		font-size: 12px;
	}
	
	.site-info h2{
		font-size: 20px;
	}
	
	.title{
		font-size: 22px;
	}
	
	.site-info p{
		font-size: 14px;
	}
	
	.contact-box p{
		font-size: 14px;
	}

	.site-info p br{
		display: none;
	}
	
}