.centrar {
	text-align: center;
}

.contenido {
	text-align: center; 
	margin-bottom: 20px;
}

.espacio-arriba20 {
	margin-top: 20px;
}

label {
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 18px;
}

.img-contenedor img {
	-webkit-transition:all .9s ease; /* Safari y Chrome */
	-moz-transition:all .9s ease; /* Firefox */
	-o-transition:all .9s ease; /* IE 9 */
	-ms-transition:all .9s ease; /* Opera */
	width:100%;
}
.img-contenedor:hover img {
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	-ms-transform:scale(1.1);
	-o-transform:scale(1.1);
	transform:scale(1.1);
}
.img-contenedor {/*Ancho y altura son modificables al requerimiento de cada uno*/
	width:100%;
	height:auto;
	overflow:hidden;
}

#banner2 {
	display: -ms-flexbox;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	padding: 8em 0 6em 0;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	min-height: 75vh;
	height: 75vh;
	position: relative;
	background: #000;
	background-image: url(../../images/maja.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
	color: #FFF;
}

#banner2:before {
	-moz-transition: opacity 3s ease;
	-webkit-transition: opacity 3s ease;
	-ms-transition: opacity 3s ease;
	transition: opacity 3s ease;
	-moz-transition-delay: 0.25s;
	-webkit-transition-delay: 0.25s;
	-ms-transition-delay: 0.25s;
	transition-delay: 0.25s;
	content: '';
	display: block;
	background-color: #000;
	height: 100%;
	left: 0;
	opacity: 0.65;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

#banner2 .inner {
	-moz-transform: none;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	-moz-transition: opacity 1s ease, transform 1s ease;
	-webkit-transition: opacity 1s ease, transform 1s ease;
	-ms-transition: opacity 1s ease, transform 1s ease;
	transition: opacity 1s ease, transform 1s ease;
	position: relative;
	opacity: 1;
	z-index: 3;
	padding: 0 2em;
}

#banner2 h1 {
	font-size: 4em;
	line-height: 1em;
	margin: 0 0 0.5em 0;
	padding: 0;
	color: #FFF;
}

#banner2 p {
	font-size: 1.5em;
	margin-bottom: 1.75em;
}

#banner2 a {
	color: #FFF;
	text-decoration: none;
}

@media screen and (max-width: 1280px) {

	#banner2 h1 {
		font-size: 3.5em;
	}

}

@media screen and (max-width: 736px) {

	#banner2 {
		background-attachment: scroll;
	}

		#banner2 h1 {
			font-size: 2.25em;
		}

		#banner2 p {
			font-size: 1.25em;
		}

}