html,body{width: 100%;height: 100%;}
body{
	margin:0;
	color: #333;
	font-family: 'myriadpro';
	overflow-y: scroll;
}
h1,h2,h3,h4{color: #333;font-family: 'Lora', serif;}
a{
	color: #333;
}
#intro{
	position:fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}
#logo{
	display: none;
	z-index: 1000;
	cursor: pointer;
	-webkit-transition: all .4s linear;
	-o-transition: all .4s linear;
	transition: all .4s linear;
}
#logo.open{
	top: 40%;
}
.fondo-fullpage{
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
#site-container{
	background-color: #fff;
	position: relative;
	z-index: 100;
	width: 100%;
	height: 100%;
	top:40%;
	padding-top: 150px;
	display: none;
}
.parallax{
	width:100%;
	height: 500px;
	background-position: center top;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}
.gallery-item{
	padding:15px;
}
.gallery-item > div{
	opacity: 1;
	-webkit-transition: opacity .4s linear;
	-o-transition: opacity .4s linear;
	transition: opacity .4s linear;
}
.gallery-item > div:hover{
	opacity: 0.6;
}