/* CSS paralaje */
/*

@import 'https://fonts.googleapis.com/css?family=Montserrat';
@import 'https://fonts.googleapis.com/css?family=Monoton';
*/

/* 
=================================
Generic page styles 
=================================


* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	color: #222;
}

h1,
h2,
h3,
h4 {
	font-family: 'Monoton', cursive;
	font-weight: 500;
}

h1 {
	font-size: 3.5em;
	font-size: 5vw;
}

h2 {
	font-size: 2.4em;
	font-size: 3vw;
}

p {
	line-height: 1.65em;
}

*/
/* 
=================================
Hero section 
=================================
*/

#hero {
	width: 100%;
	height:801px;
	overflow: hidden;
	position: relative;
	margin-top:-250px;/*top de bakground principal*/
	/*z-index:1;*/
}

#hero-mobile {
	display: none;
	background: url('') fixed no-repeat center center / cover;
	height:690px;
	margin-top:-590px;
}


.layer {
	background-position: bottom;
	background-size: contain;
	background-repeat: no-repeat;
	width:100%;
	height: 801px;
	position: fixed;
	z-index:-3;
}

.layer-01 {
	background-image: url('../../img/a.jpg');
	background-position: top;
}

.layer-02 {
	background-image: url('../../img/b.png');
}

.layer-03 {
	background-image: url('../../img/c.png');
}

.layer-04 {
	background-image:url('../../img/d.png');
	background-position: bottom;
}
/*
=================================
Main section
=================================
*/
/*
.main {
	z-index: 2;
	background-color: #fff;
}

.title {
	background-color: #3a2a34;
	padding: 20px 0;
}

.title h1 {
	text-align: center;
	color: #fff;
}

.text-wrapper {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 40px;
}

.container {
	padding: 0px 0;
}

main .container:nth-of-type(1) {
	background-color: #e8eceb;
}

main .container:nth-of-type(2) {
	background-color: #fff146;
}

main .container:nth-of-type(4) {
	background-color: #e8eceb;
}

main .container:nth-of-type(5) {
	background-color: #fff146;
}

/*
figure {
	float: right;
	width: 36%;
	margin: 0 0 10px 20px;
	position: relative;
}

figure img {
	position: relative;
	width: 100%;
	z-index: 5;
}

figure:hover figcaption {
	top: 0;
}

figcaption {
	font-size: 14px;
	text-align: center;
	background-color: #f1e236;
	margin-top: -4px;
	padding: 5px 0;
	z-index: 3;
	position: relative;
	top: -30px;
	transition: top .3s ease;
}

.map-container {
	clear: both;
	padding: 40px 0 0 0;
	background-color: #fff146;
}

.map-title {
	text-align: center;
	padding: 10px 0;
}

#map {
	width: 100%;
	height: 600px;
}
*/

/* Footer section
footer {
	background-color: #262626;
	color: #e1dfda;
	padding: 20px;
}

footer .container:nth-of-type(1) {
	padding: 0;
	position: relative;
	top: -20px;
}
footer .container:nth-of-type(2) {
	padding: 40px 0;
}

footer .container:nth-of-type(3) {
	font-size: 14px;
	padding-top: 20px;
}

footer a {
	color: #e4cd71;
	transition: color .3s ease;
	text-decoration: none;
}

footer a:hover {
	color: #f18817;
}

/*
hr {
	border: 2px solid #292929;
	box-shadow: 0 1px 0 0 #2f2e2e;
	max-width: 920px;
	margin: 0 auto;
}

blockquote {
	border: 1px solid #403f3a;
	border-top: none;
	padding: 24px 24px 44px 24px;
	box-shadow: 0 5px 0px rgba(0, 0, 0, 0.08);
	background-color: #313131;
	position: relative;
}

blockquote p {
	width: 86%;
	margin: 0 auto;
}

.quote {
	position: absolute;
	color: rgba(255, 255, 255, 0.5);
	font-size: 5em;
}

.quote-left {
	top: 30px;
	left: 15px;
}

.quote-right {
	bottom: 65px;
	right: 15px;
}

cite {
	position: absolute;

	right: 20px;
	bottom: 10px;
}

cite:before {
	content: "- ";
}

 */

/* 
=================================
Media queries 
=================================
*/

@media only screen and (max-width: 1040px) 
{
	.layer {
		background-size: 1040px;
	}
}

@media only screen and (min-width: 1340px) 
{
	/* 
  Fixing the position of .layer-02
  Leaves the left edge on higher resolutions.
*/
	.layer-02 {
		background-position: bottom center;
	}
}

@media all and (max-width: 640px) {
  On smaller screen sizes, we are hiding the
  module and replacing it with a smaller static
  image.

	#hero {
		display: none;
	}
	
	#hero-mobile {
		display: block;
	}
	
	/*
	figcaption {
		font-size: 12px;
		top: -40px;
	}
	*/
}