/*
	Template Name 	: Freelancer - Responsive Coming Soon Page
	Author 			: Awaiken Theme
	Author Url 		: https://awaikenthemes.com
*/

/************************************/
/***** 	      General css		 ****/
/************************************/
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:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

.comming-soon{
	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: 80px;
	margin-top: 40px;
	text-align: center;
	vertical-align: top;
}

.timer .timer-wrapper .time{
	font-size: 30px;
	color: #fff;
	font-weight: 600;
	line-height: 1em;
}

.timer .timer-wrapper .text{
	color: #fff;
	font-size: 12px;
	font-weight: 300;
}

.logo{
	display: inline-block;
	text-align: left;
	position: relative;
	padding-left: 30px; 
}

.logo:before{
	content: '';
	display: block;
	position: absolute;
	width: 150px;
	top: -24px;
	left: 0px;
	bottom: -20px;
	border: 4px solid #e45164;
	z-index: 0;
}

.logo h2{
	font-size: 44px;
	color: #fff;
	font-weight: 600;
	position: relative;
	z-index: 1;
}

.logo h2 span{
	display: block;
	font-weight: 400;
	font-style: italic;
	position: relative;
	z-index: 1;
}

.logo p{
	display: inline-block;
	background: #e45164;
	color: #fff;
	text-transform: uppercase;
	padding: 6px 10px 4px;
	margin-top: 4px;
	position: relative;
	z-index: 1;
}

.comming-soon-info{
	width: 50%;
	position: absolute;
	background: #000 url(../images/bg.png) no-repeat right top;
	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: 30px;
	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%;
	max-height: 100%;
	overflow: auto;
	background: #000;
	position: absolute;
	top: 0;
	left: 50%;
	bottom: 0;
	z-index: 2;
	
}

.contact-box{
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
	padding: 80px 20px;
}

.title{
	text-transform: uppercase;
	font-size: 28px;
	color: #fff;
	font-weight: 500;
	padding-bottom: 16px;
	margin-bottom: 70px;
	position: relative;
	text-align: center;
	letter-spacing: 0.04em;
}

.title:after{
	content: '';
	display: block;
	position: absolute;
	height: 1px;
	width: 60px;
	margin-left: -30px;
	background: #e45164;
	left: 50%;
	bottom: 0;
}

.contact-box p{
	color: #fff;
	font-size: 14px;
	font-weight: 300;
}

.contact-box form{
	margin-top: 50px;
}

.contact-box .form-control{
	border: none;
	box-shadow: none;
	border-radius: 0;
	background: rgba(255,255,255,0.10);
	color: #fff;
	height: auto;
	padding: 14px;
	margin-bottom: 30px;
	resize: none;
}

.contact-box .form-control::-webkit-input-placeholder{
	color: #fff;
}

.contact-box .form-control:-moz-placeholder{
	color: #fff;
}

.contact-box .form-control::-moz-placeholder{
	color: #fff;
}

.contact-box .form-control:-ms-input-placeholder{
	color: #fff;
}

.btn-submit{
	background: #e45164;
	text-transform: uppercase;
	color: #fff;
	font-weight: 500;
	border: none;
	padding: 14px 30px 12px;
	transition: all 0.4s;
}

.btn-submit:hover{
	background: #fff;
	color: #e45164;
}

.portfolio{
	padding: 80px 0 0;
}

.portfolio-entry:after{
	content: '';
	display: block;
	clear: both;
}

.portfolio-single{
	width: 25%;
	float: left;
}

@media only screen and (max-width:980px){
	.comming-soon-info{
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
	}
	
	.comming-soon-info:before{
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0,0,0,0.6);
	}
	
	.comming-soon-inner{
		position: relative;
		z-index: 3;
	}
	
	.contact-form{
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
	}
}

@media only screen and (max-width:768px){
	.portfolio-single{
		width: 50%;
	}
	
	.portfolio{
		padding: 60px 0 0;
	}
	
	.title{
		margin-bottom: 50px;
	}
	
	.contact-box{
		padding: 60px 20px;
	}
}

@media only screen and (max-width:480px){
	.logo h2{
		font-size: 26px;
	}
	
	.logo p{
		font-size: 12px;
		padding: 6px 10px;
	}
	
	.logo:before{
		width: 100px;
	}
	
	.site-info h2{
		font-size: 24px;
		letter-spacing: 0.05em;
	}
	
	.timer .timer-wrapper{
		display: inline-block;
		width: 60px;
		margin-top: 40px;
		text-align: center;
		vertical-align: top;
	}

	.timer .timer-wrapper .time{
		font-size: 26px;
		color: #fff;
		font-weight: 600;
		line-height: 1em;
	}

	.timer .timer-wrapper .text{
		color: #fff;
		font-size: 12px;
		font-weight: 300;
	}
}