* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.contenedor {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}

.imagen-responsive {
	width: 100%;
}

main {
	background: #CCC;
}

header {
	background: url(../img/plantilla/bg_page.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;

	position: relative;
}

header .bg-color {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	z-index: 1;
}

header .content-header {
	position: relative;
	width: 100%;
	z-index: 2;
}

header .content-header h1 {
	text-align: center;
}

header .content-header h1 img {
	height: 150px;
}

header .content-header h1 .logo {
	width: 150px;
	height: 180px;
	background: #FFF;
	padding: 20px;
	margin: 0 auto;
	-webkit-box-shadow: 0 0 10px 3px rgba(0,0,0,.7);
	box-shadow: 0 0 10px 3px rgba(0,0,0,.7);
}

header .content-header .text1 {
	margin-top: 30px;
	color: #FFF;
	font-family: 'Merriweather', serif;
	font-size: 30px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

header .content-header .text2 {
	color: #FFF;
	font-family: 'Merriweather', serif;
	font-size: 20px;
	text-align: center;
	text-transform: uppercase;
}

header .content-header .text3 {
	background: rgba(255, 255, 255, 0.5);
	padding: 15px;
	text-align: center;
	font-family: 'Acme', sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #000;
	margin-top: 300px;
}

header .content-header .text4 {
	text-align: center;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #FFF;
	text-transform: uppercase;
	padding-top: 15px;
	padding-bottom: 15px;
}

.imagenes {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	padding-top: 50px;
	padding-bottom: 50px;
}

.imagenes .boxImg {
	position: relative;
	margin: 10px;
	width: 250px;
	height: 140px;
	overflow: hidden;
}

.imagenes .boxImg img {
	width: 100%;
}

.imagenes .boxImg p {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	font-family: 'Acme', sans-serif;
	text-transform: uppercase;
	background: rgba(0, 0, 0, .5);
	padding-top: 5px;
	padding-bottom: 5px;
	color: #FFF;
}

.imagenes .boxImg .overlay-imagen {
	position: absolute;
	background: rgba(0, 0, 0, .7);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	display: none;

	transition: all 0.3s;
}

.imagenes .boxImg:hover .overlay-imagen {
	display: block;
}

.imagenes .boxImg .overlay-imagen .title-imagen {
	color: #FFF;
	font-family: 'Acme', sans-serif;
	font-size: 18px;
	text-transform: uppercase;
	margin-top: 30px;
}

.imagenes .boxImg .overlay-imagen .ver-mas {
	color: #FFF;
	font-family: 'Acme', sans-serif;
	
	display: block;
	width: 120px;
	padding: 10px 15px;
	color: #444;
	text-decoration: none;
	background: #FFF;
	margin: 15px auto;
}

.descripcion {
	background: #666;
	color: #FFF;
	padding-top: 30px;
	padding-bottom: 30px;
}

.descripcion img {
	height: 150px;
}

.descripcion p {
	font-family: 'Merriweather', serif;
	font-size: 20px;
	word-spacing: 5px;
	text-align: center;
	line-height: 30px;

	padding-left: 30px;
	padding-right: 30px;
	margin-top: 45px;
}

footer {
	background: #444;
	padding-top: 30px;
	padding-bottom: 30px;
}

footer p {
	text-align: center;
	color: #888;
	font-family: 'Open Condensed', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

footer a {
	color: #888;
	text-decoration: none;
}

footer a:hover {
	color: #EEE;
}

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

	header .content-header .text1 {
		font-size: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}

	header .content-header .text2 {
		font-size: 15px;
		margin-top: 5px;

		padding-left: 20px;
		padding-right: 20px;
	}

	header .content-header .text3, header .content-header .text4 {
		padding-left: 20px;
		padding-right: 20px;
	}

	footer p {
		padding-top: 5px;
		padding-bottom: 5px;
		color: #888;
		text-decoration: none;
	}

	.imagenes .boxImg {
		width: 100%;
	}

	.text-descripcion {
		font-size: 12px;
	}

}