/* ==========================================================================
   Annucy - Author : Lucy Brooker
   ========================================================================== */

html, body {
	color: #FFF;
	font-family: lato, arial;
	font-weight: 100;
	margin: 0;
	overflow: hidden;
	-webkit-transition: opacity 400ms;
	-moz-transition: opacity 400ms;
	transition: opacity 400ms;
}

h1, h2, h3 {
	font-weight: 100;
}

section:nth-child(1) { background: url("../img/bg-1.jpg") no-repeat center center; background-size: cover; }
section:nth-child(2) { background: url("../img/black-texture.jpg") repeat scroll 0 0; }
section:nth-child(3) { background: url("../img/bg-1.jpg") no-repeat center center; background-size: cover; }
/*section:nth-child(4) { background: url("../img/black-texture.jpg") repeat scroll 0 0; }
*/
section {
	text-align: center;
	display: table;
	padding: 50px 0;
	width: 100%;
}

section .content {
	display: table-cell;
	vertical-align: middle;
}

h1 {
	font-size: 205px;
	margin: 20% 0 0;
}

h2 {
	font-size: 42px;
    margin: 0 0 20px 0;
}

p {
	font-size: 25px;
	padding: 0 200px;
}

section:nth-child(1) a {
	background: url("../img/arrow.png") no-repeat center bottom / 100px auto;
	color: #FFF;
	display: inline-block;
	height: 100px;
	margin-top: 100px;
	padding-bottom: 30px;
	text-decoration: none;
	width: 100%;
}

@media (max-width:922px) {

	p {
		padding: 0 100px;
	}

}

@media (max-width:728px) {

	h1 {
		font-size: 140px
	}

}

@media (max-width:600px) {

	p {
		padding: 0 50px;
	}

	section:nth-child(1) a {
		display: none;
	}

}

@media (max-width:520px) {

	h1 {
		font-size: 92px;
    	margin-top: 50%;
	}

	h2 {
		font-weight: 300;
	}

	p {
		font-size: 16px;
		font-weight: 300;
	}

	section:nth-child(1) h2 {
		font-size: 26px;
		font-weight: 300;
	}

}


/* Contact form */

form {
	margin: 0 auto;
	width: 600px;
}

fieldset {
	border: none;
}

.field {
	clear: both;
	float: left;
	margin-bottom: 1rem;
	width: 100%;
}

label {
	float: left;
	font-size: 25px;
	font-weight: 100;
	margin-bottom: .5rem;
	width: 100%;
}

.mandatory {
	color: #D30550;
}

input,
textarea {
	box-sizing: border-box;
	border-radius: 4px;
	border: 1px solid #FFF;
	font-family: lato;
	font-size: 25px;
	font-weight: 100;
	float: left;
	padding: .5rem 1rem;
	text-align: center;
	width: 100%;
}

.button {
	background: #000;
	border: 2px solid #000;
	border-radius: 4px;
	color: #FFF;
	cursor: pointer;
	font-family: lato;
	font-size: 25px;
	font-weight: 100;
	padding: .6rem 2rem .4rem;
	outline: 0;
	text-align: center;
	text-transform: uppercase;
	-webkit-transition: background-color 1s ease-out;
	-moz-transition: background-color 1s ease-out;
	-o-transition: background-color 1s ease-out;
	transition: background-color 1s ease-out;
}

.button:hover,
.button:focus {
	background: #FFF;
	border: 2px solid #FFF;
	color: #000;
}

@media (max-width:700px) {

	form {
		width: 90%;
	}

}

@media (max-width:520px) {

	label, input, textarea {
		font-size: 16px;
		font-weight: 300;
	}

}

/* One page scroll */

body, .onepage-wrapper, html {
	display: block;
	position: static;
	padding: 0;
	width: 100%;
	height: 100%;
}

.onepage-wrapper {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	padding: 0;
	-webkit-transform-style: preserve-3d;
}

.onepage-wrapper .section {
	width: 100%;
	height: 100%;
}

.onepage-pagination {
	position: absolute;
	right: 10px;
	top: 50%;
	z-index: 5;
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: -48px;
}
.onepage-pagination li {
	padding: 0;
	text-align: center;
}

.onepage-pagination li a {
	padding: 10px;
	width: 4px;
	height: 4px;
	display: block;
}

.onepage-pagination li a:before {
	content: "";
	position: absolute;
	width: 4px;
	height: 4px;
	background: white;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}

.onepage-pagination li a.active:before {
	width: 10px;
	height: 10px;
	background: none;
	border: 1px solid white;
	margin-top: -4px;
	left: 8px;
}

.disabled-onepage-scroll, 
.disabled-onepage-scroll .wrapper {
	overflow: auto;
}

.disabled-onepage-scroll .onepage-wrapper .section {
	position: relative !important;
	top: auto !important;
}

.disabled-onepage-scroll .onepage-wrapper {
	-webkit-transform: none !important;
	-moz-transform: none !important;
	transform: none !important;
	-ms-transform: none !important;
	min-height: 100%;
}

.disabled-onepage-scroll .onepage-pagination {
	display: none;
}

body.disabled-onepage-scroll, .disabled-onepage-scroll .onepage-wrapper, html {
	position: inherit;
}


