/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 *  GLOBAL 
 * * * * * * * * * * * * * * * * * * * * * * * * * * */

body, 
html {
	height: 100%;
}

body {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 300;
	text-align: center;
}

button {
	background-color: transparent;
	padding: 0;
}

h1 {
	font-size: 3em;
}

h3 {
	font-size: 1.3em;
}

h1, 
h3,
h5 {
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
}

h1 span, 
h3 span,
h5 span {
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
}

h2,
h4,
h6 {
	font-family: 'Dancing Script', 'cursive';
	font-weight: 900;
}

.button {
	border: 1px solid #000000;
	color: #000000;
	display: block;
	height: 50px;
	line-height: 3em;
	margin: 50px auto 0 auto;
	position: relative;
	text-transform: uppercase;
	width: 140px;

	z-index: 111;

	-webkit-transition: width 1s;
    transition: width 1s;
}
.button:hover {
	color: #000000;
	text-decoration: none;
	width: 180px;

	-webkit-transition: width 0.5s;
    transition: width 0.5s;
}

.row {
	margin: 20px 0;
}

.slant,
.slant-2 { /* slants elements are dynamicly modified in script.js */
    content: '';
    left: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
}
.slant {
	border-bottom: solid;
	border-right: solid transparent;
	border-bottom-color: #FFFFFF;
}
.slant-2 {
	border-top: solid;
	border-right: solid transparent;
	border-top-color: #FFFFFF;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 *  INTRO SECTION 
 * * * * * * * * * * * * * * * * * * * * * * * * * * */

#intro {
	color: #000000;
	display: block;
	height: 90%;
	min-height: 600px;
	padding-bottom: 50px;
}

.coming-soon {
	margin-top: 50px;
}

.countdown {
	display: inline-block;
}

.counter {
	border: 2px solid #ffffff;
	border-radius: 50%;
	float: left;
	height: 140px;
	margin: 0 10px;
	text-align: center;
	width: 140px;
}

.days,
.hours,
.minutes,
.seconds {
	font-size: 3.2em;
	line-height: 0.5em;
	position: relative;
	top: 50px;
}

.info {
	font-size: 0.9em;
	position: relative;
	top: 60px;
}

.intro.button {
	border: 1px solid #ffffff;
	color: #ffffff;
}
.intro.button:hover {
	color: #ffffff;
}

img.logo {
	margin-bottom: 70px;
	width: 200px;
}
.logo {
	width: 340px;
	margin-bottom: 30px;
}

.parallax {
	background: url('../images/background.jpg');
	
	background-position: center; 
	background-repeat: repeat;
	background-size: cover;
	height: 90%;
	min-height: 600px;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -999;
}

.slogan {
	letter-spacing: 10px;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 *  ABOUT SECTION 
 * * * * * * * * * * * * * * * * * * * * * * * * * * */

#about {
	background: #ffffff;
	padding-top: 30px;
}

.person img {
	margin: 0 auto;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 *  CONTACT SECTION 
 * * * * * * * * * * * * * * * * * * * * * * * * * * */

#contact {
	background-color: #90c7cd;
	padding-top: 150px;
}

.back-to-top {
	display: none;
}

.form-control {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid #000000;
	border-radius: 0px;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-control:focus, .form-control:focus {
    border-color:#047388;
    box-shadow: #047388;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(4, 115, 136, 0.6);
  	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(4, 115, 136, 0.6);
  	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(4, 115, 136, 0.6);
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 *  FOOTER SECTION 
 * * * * * * * * * * * * * * * * * * * * * * * * * * */

footer {
	background-color: #90c7cd;
	padding: 10px 0;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 *  RESPONSIVE 
 * * * * * * * * * * * * * * * * * * * * * * * * * * */

@media (max-width: 767px) {
	#contact {
		padding-top: 70px;
	}
	.person {
		margin-bottom: 40px;
	}
}