/* Table of Contents
   ==================================================
   
    # -- Imports
    
	# -- Main
	# -- Pages
	# -- Patterns
	# -- Social
	
	# -- Preloader
	# -- Backside
	
	# -- Home
	# ---- Countdown
	# ---- About
	# ---- Persons
	
	# -- Contacts
	# ---- Subscribe
	# ---- Feedback
	
   ==================================================
*/


/* # -- IMPORTS
================================================== */

@import url('https://fonts.googleapis.com/css?family=Lato:300,400|Pontano+Sans');
@import url('https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css');


/* # -- MAIN STYLES
================================================== */

* { 
	outline: 0;
	font: 400 1em Lato, 'Pontano Sans', sans-serif;
}

html,
body {
	width: 100%;
	height: 100%;
	background: transparent;
}

html { padding: 40px; }
body { position: relative !important; }

a { 
	color: #22313F;
	text-decoration: none;
	
	-webkit-transition: color 0.2s; 
	   -moz-transition: color 0.2s; 
		 -o-transition: color 0.2s; 
		    transition: color 0.2s;
}

a:hover {
	color: #3A539B;
}

a[href^=tel] {
	color: #ABB7B7;
}

p {
	line-height: 1.4em;
}

p a {
	text-decoration: underline;
}

h1 { font-size: 30px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
h4 { font-size: 14px; }
h5 { font-size: 12px; }
h6 { font-size: 10px; }

.align-left   { text-align: left;   }
.align-right  { text-align: right;  }
.align-center { text-align: center; }

.left  { float: left; }
.right { float: right; }

.icon-1 { font-size: 1em;  }
.icon-2 { font-size: 2em;  }
.icon-3 { font-size: 4em;  }
.icon-4 { font-size: 7em;  }
.icon-5 { font-size: 12em; }
.icon-6 { font-size: 20em; }

.wrapper {
	margin: 0 auto;
	padding: 0 15px;
	max-width: 1024px;
		width: 100%;
}

input, textarea, button { 
	-webkit-appearance: none;
	   -moz-appearance: none;
	   	 -o-appearance: none;
	   	 	appearance: none;
}

input {
	margin: 0;
	padding: 8px 10px;
	width: auto;
	border: 0;
	-webkit-border-radius: 3px;
			border-radius: 3px;
	font-size: 14px;
}


input,
textarea {
	-webkit-transition: all 0.2s ease; 
       -moz-transition: all 0.2s ease; 
    	 -o-transition: all 0.2s ease; 
    	    transition: all 0.2s ease;
}

input {
	margin: 0;
	padding: 8px 10px;
	width: auto;
	background: transparent;
	border: 1px solid #ABB7B7;
	border-color: rgba(172, 184, 184, 0.4);
	font-size: 14px;
}

input[type="submit"] {
	padding: 8px 15px;
	width: auto;
	cursor: pointer;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:hover,
textarea:focus {
	border-color: rgba(172, 184, 184, 1);
}

textarea {
	margin: 0;
	padding: 8px 10px;
	border: 1px solid #ABB7B7;
	-webkit-border-radius: 0;
			border-radius: 0;
	font-size: 13px;
	resize: none;
}

input.error,
textarea.error {
	border-color: #E74C3C;
}

form.flat input,
form.flat textarea {
	padding: 10px 15px;
	
	background: #EEEEEE;
	border: 0 !important;
	
	-webkit-border-radius: 3px;
			border-radius: 3px;
	
	-webkit-box-shadow: none !important;
			box-shadow: none !important;
	
	color: #000;
	font-family: Lato, 'Pontano Sans', sans-serif;
	font-size: 14px;
	font-weight: 300;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
		filter: alpha(opacity=85);
		opacity: 0.85;
	vertical-align: top;
	text-transform: none;
}

form.flat textarea {
	min-height: 150px;
}

form.flat input:hover,
form.flat input:focus,
form.flat textarea:hover,
form.flat textarea:focus {
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter: alpha(opacity=100);
		opacity: 1;
}

form.flat input:focus,
form.flat textarea:focus {
	background: #FFF;
}

hr {
	margin: 15px auto;
	max-width: 300px;
		width: 100%;
}

.disable-hover {
	pointer-events: none;
}

.no-uppercase {
	text-transform: none !important;
}

.nav-btn {
	display: inline-block;	
}

.nav-btn > a {
	padding: 7px 15px;
	border-bottom: 1px solid #000;
	color: #000;
	font-family: Lato, 'Pontano Sans';
	-webkit-font-smoothing: antialiased;
	font-size: 15px;
			/* font-weight: 300; */
	opacity: 0.5;
	letter-spacing: 2px;
	text-decoration: none !important;
	text-transform: uppercase;
	-webkit-transition: opacity 0.25s ease; 
	   -moz-transition: opacity 0.25s ease; 
		 -o-transition: opacity 0.25s ease; 
		    transition: opacity 0.25s ease;
	display: block;
}

.nav-btn > a:hover {
	opacity: 0.8;
}


/* # -- PAGES
================================================== */

.page {
	position: relative;
	width: 100%;
	min-height: 100%;
	background: transparent;
	overflow: hidden;
	display: table;
	z-index: 5;
}

.page > .content {
	width: 100%;
	height: 100%;
	vertical-align: middle;
	display: table-cell;
}


/* # -- PATTERNS
================================================== */

.pattern.dot-1 {
	background: url('static/images/patterns/dot-1.png');
	background-color: rgba(0, 0, 0, .3);
}

.pattern.dot-2 {
	background: transparent url('static/images/patterns/dot-2.png');
	background-color: rgba(0, 0, 0, .3);
	-webkit-background-size: 2px;
	   -moz-background-size: 2px;
	     -o-background-size: 2px;
			background-size: 2px;
}

.pattern.dot-3 {
	background: transparent url('static/images/patterns/dot-3.png');
	background-color: rgba(0, 0, 0, .3);
}

.pattern.line-1 {
	background: transparent url('static/images/patterns/line-1.png');
}

.pattern.line-2 {
	background: transparent url('static/images/patterns/line-2.png');
}

.pattern.gradient-1 {
	background: transparent url('static/images/patterns/gradient-1.png') 50%;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
			background-size: cover;
}

.pattern.gradient-2 {
	background: transparent url('static/images/patterns/gradient-2.png') 50%;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
			background-size: cover;
}


/* # -- SOCIAL
================================================== */

ul.social {
	font-size: 0;
	list-style: none;
}

ul.social > li {
	margin: 0 5px;
	font-size: 22px;
	display: inline-block;
}

ul.social > li > a {
	padding: 5px;
}

/* -- icons -- */
ul.social.icons > li > a {
	width: 32px;
	height: 32px;
	-webkit-background-size: 32px;
	   -moz-background-size: 32px;
	     -o-background-size: 32px;
			background-size: 32px;
	display: block;
}

.icon-twitter  	{ background-image: url(static/images/icons/01_twitter.png)	   }
.icon-facebook 	{ background-image: url(static/images/icons/02_facebook.png)   }
.icon-youtube  	{ background-image: url(static/images/icons/03_youtube.png)    }
.icon-dribbble 	{ background-image: url(static/images/icons/04_dribbble.png)   }
.icon-apple 	{ background-image: url(static/images/icons/05_apple.png)      }
.icon-android 	{ background-image: url(static/images/icons/06_android.png)    }
.icon-linkedin 	{ background-image: url(static/images/icons/07_linkedin.png)   }
.icon-behance 	{ background-image: url(static/images/icons/08_behance.png)    }
.icon-vimeo 	{ background-image: url(static/images/icons/09_vimeo.png)      }
.icon-instagram { background-image: url(static/images/icons/10_instagram.png)  }
.icon-wordpress { background-image: url(static/images/icons/11_wordpress.png)  }
.icon-deviantart{ background-image: url(static/images/icons/12_deviantart.png) }
.icon-pinterest { background-image: url(static/images/icons/13_pinterest.png)  }
.icon-google 	{ background-image: url(static/images/icons/14_google.png)     }
.icon-tumblr 	{ background-image: url(static/images/icons/15_tumblr.png)     }
.icon-flickr 	{ background-image: url(static/images/icons/16_flickr.png)     }
.icon-windows8	{ background-image: url(static/images/icons/17_windows8.png)   }
.icon-evernote 	{ background-image: url(static/images/icons/18_evernote.png)   }
.icon-paypal 	{ background-image: url(static/images/icons/19_paypal.png)     }
.icon-sparow 	{ background-image: url(static/images/icons/20_sparow.png)     }
.icon-blogger 	{ background-image: url(static/images/icons/21_blogger.png)    }
.icon-skype 	{ background-image: url(static/images/icons/22_skype.png)      }
.icon-envato 	{ background-image: url(static/images/icons/23_envato.png)     }
.icon-soundcould{ background-image: url(static/images/icons/24_soundcould.png) }


/* # -- PRELOADER
================================================== */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

#preloader > .half {
	position: absolute;
	width: 4000px;
	height: 4000px;
	background: #FFF;
	-webkit-transform-origin: 0 0;
	   -moz-transform-origin: 0 0;
	     -o-transform-origin: 0 0;
			transform-origin: 0 0;
}

#preloader > .half.left {
	margin-top: -266px;
	-webkit-transform: rotate(40deg);
	   -moz-transform: rotate(40deg);
	     -o-transform: rotate(40deg);
			transform: rotate(40deg);
	
}

#preloader > .half.right {
	margin-top: -263px;
	-webkit-transform: rotate(-50deg);
	   -moz-transform: rotate(-50deg);
	     -o-transform: rotate(-50deg);
			transform: rotate(-50deg);
}


#preloader > .wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -100px;
	margin-left: -140px;
	max-width: 300px;
		width: 100%;
	z-index: 3;
}

#preloader .logo {
	height: 200px;
}

#preloader .logo > img {
	max-height: 100%;
}

#preloader .bar {
	margin-top: 20px;
	height: 1px;
	background: #000;
	background: rgba(0, 0, 0, 0.5);
}

#preloader .percents {
	position: relative;
	top: -10px;
	padding: 0 15px;
	background: #FFF;
	font-family: sans-serif;
	font-weight: 300;
	display: inline-block;
	z-index: 2;
}


/* # -- BACKSIDE
================================================== */

#backside {
	position: absolute;
	background: none;
	z-index: -1;
}

#backside .slider {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}


/* # -- HOME
================================================== */

#home hr {
	margin: 0 auto;
	max-width: 615px;
		width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

#logo {
	color: #FFF;
}

#logo img {
	height: 200px;	
}

#more-info {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
}

#more-info a {
	margin: 5px;
	width: 36px;
	height: 36px;
	background: transparent 50% no-repeat;
	-webkit-background-size: 32px;
	   -moz-background-size: 32px;
	     -o-background-size: 32px;
			background-size: 32px;
	opacity: 0.5;
	-webkit-backface-visibility: hidden;
	display: block;
}

#more-info.info a {
	background-image: url(static/images/icon-info.png);
}

#more-info.close a {
	background-image: url(static/images/icon-close.png);
}

#more-info a:hover {
	opacity: 1;
}

	/* -- countdown -- */
	
	#countdown {
		margin: 45px 0 65px;
		font-size: 0;
		-webkit-font-smoothing: antialiased;
	}
	
	#countdown > div {
		position: relative;
		display: inline-block;
	}
	
	#countdown canvas {
		position: absolute;
		top: 0;
		left: 0;
	}
	
	#countdown > div .info {
		width: 200px;
		height: 200px;
		font-size: 14px;
		display: table;
	}
	
	#countdown > div .info > div {
		width: 100%;
		height: 100%;
		color: #000;
		/* color: rgba(0, 0, 0, 0.8); */
		vertical-align: middle;
		display: table-cell;
	}
	
	#countdown > div .info .num,
	#countdown > div .info .nam {
		font-family: 'Pontano Sans', sans-serif;
	}
	
	#countdown > div .info .num {
		font-size: 2.5em;
	}
	
	#countdown > div .info .nam {
		margin-top: 10px;
		font-size: 15px;
		font-weight: 600;
	}
	
	
	/* -- about -- */
	
	#about {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		display: none;
	}
	
	#about .wrapper > div.row > [class*=col-]:last-child {
		padding-left: 25px;
	}
	
	#about .wrapper > div.row > [class*=col-] h1,
	#about .wrapper > div.row > [class*=col-] h2 {
		margin-top: 5px;
		margin-bottom: 35px;
	}
	
	#about .wrapper hr {
		margin: 45px 0 10px;
		max-width: 100%;
			width: 100%;
		border-top: 1px solid #DDD;
	}
	
	#about .footer .networks {
		text-align: right;
	}
	
	#about .footer .networks > span,
	#about .footer .networks > ul {
		vertical-align: middle;
		display: inline-block;
	}
	
	#about .footer ul.social {
		margin: 0;
		margin-left: 10px;
		padding-left: 0;
	}
	
	#about .footer ul.social > li {
		margin: 0 3px;
		font-size: 19px;
	}
	
	#about .footer ul.social > li a {
		color: #999;
		text-decoration: none !important;
	}
	
	#about .footer ul.social > li a:hover {
		color: #666;
	}
	
	/* -- persons -- */
	
	#persons .photo {
		position: relative;
	}
	
	#persons .photo img {
		max-width: 100%;
		max-height: 100%;
		background: #FFF;
		opacity: 0.85;
		-webkit-transition: all 0.2s; 
		   -moz-transition: all 0.2s; 
			 -o-transition: all 0.2s; 
			    transition: all 0.2s;
		display: block;
	}
	
	#persons .networks {
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.6);
		opacity: 0;
		-webkit-transition: all 0.3s ease; 
		   -moz-transition: all 0.3s ease; 
			 -o-transition: all 0.3s ease; 
			    transition: all 0.3s ease;
	}
	
	#persons .networks li {
		position: relative;
		top: -50px;
		opacity: 0;
	}
	
	#persons > div .photo:hover img,
	#persons > div .networks:hover {
		opacity: 1;
	}
	
	#persons .networks .social {
		position: absolute;
		top: 50%;
		margin-top: -18px;
		padding: 0;
		width: 100%;
		text-align: center;
	}
	
	#persons .networks .social a,
	a.link {
		color: #FFF;
		color: rgba(255, 255, 255, 0.8);
		font-size: 26px;
		
		-webkit-transition: all 0.2s; 
		   -moz-transition: all 0.2s; 
			 -o-transition: all 0.2s; 
			    transition: all 0.2s;
	}
	
	#persons .networks .social a:hover,
	a.link {
		color: #FFF;
		color: rgba(255, 255, 255, 1);
		text-decoration: none;
	}
	
	#persons > div h3 {
		margin-top: 15px;
		margin-bottom: 0;
	}
	
	#persons > div h5 {
		margin-top: 5px;
		color: #7a7d81;
	}
	
	
/* # -- CONTACTS
================================================== */

#contacts {
	color: #FFF;
}
#contacts a {
	color: #ABB7B7;
	text-decoration: none;
}
#contacts h4,
#contacts p {
	color: #ABB7B7;
	line-height: 1;
	vertical-align: top;
	text-transform: none;
}

#contacts h2,
#contacts h4 {
	font-family: Lato;
	font-weight: 300;
}

#contacts form input.error {
	border-color: #CF000F;
	border-color: rgba(207, 0,15, 0.5);
}

#subscribe form .status {
	padding: 15px 0 5px;
	font-family: Lato;
	font-weight: 300;
	text-align: center;
	display: none;
}

	/* -- subscribe -- */
	
	#subscribe {
		position: relative;
		top: 200px;
		opacity: 0;
	}

	#subscribe i {
		margin-right: 5px;
	}
	
	#subscribe form {
		margin: 45px 0 55px;
	}
	
	#subscribe form input {
		position: relative;
		width: 100%;
		font-family: Lato;
		font-weight: 300;
		z-index: 2;
	}
	
	#subscribe form div {
		margin: 0 auto;
		margin-top: -25px;
		padding: 0;
		width: 100%;
		font-family: Lato;
		font-size: 12px;
		font-weight: 300;
		opacity: 0;
		letter-spacing: 1px;
		text-align: right;
		text-transform: uppercase;
		-webkit-transition: all 0.25s ease; 
		   -moz-transition: all 0.25s ease; 
			 -o-transition: all 0.25s ease; 
			    transition: all 0.25s ease;
	}
	
	#subscribe form input:focus + div {
		padding-right: 10px;
		opacity: 0.5;
	}
	
	#subscribe form h4 {
		margin-top: 25px;
	}
	
	#subscribe hr {
		margin: 15px auto;
		width: 100%;
		border-color: #ABB7B7;
		border-color: rgba(172, 184, 184, 0.4);
	}
	
	.heart-egg {
		margin: 0 5px;
	}
	
	/* -- feedback -- */
	
	#feedback {
		position: relative;
		top: 300px;
		opacity: 0;
	}
	
	#feedback input,
	#feedback textarea {
		margin: 10px 0;
		width: 100%;
		display: block;
	}
	
	#feedback form > div {
		text-align: right;
	}
	
	#feedback form {
		margin: 45px 0 0;
	}
	
	#feedback form input,
	#feedback form textarea {
		margin: 10px 0;
		width: 100%;
		display: block;
		
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
			filter: alpha(opacity=85);
			opacity: 0.85;
	}
	
	#feedback form input:hover,
	#feedback form input:focus,
	#feedback form textarea:hover,
	#feedback form textarea:focus {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
			filter: alpha(opacity=100);
			opacity: 1;
	}
	
	#feedback form textarea {
		height: 150px;
	}
	
	#feedback form input[type="submit"] {
		margin: 0;
		margin-left: 20px;
		padding: 8px 15px;
		width: auto;
		outline: 0;
		vertical-align: middle;
		display: inline;
	}
	
	#feedback form .status {
		color: #7a7d81;
		vertical-align: middle;
		opacity: 0;
	}