.contenido-emp {
	margin: auto;
	text-align: center;
}
.contenido-emp h1 {
	font-weight: 200;
	font-size: 60px;
	color: #711610;
	margin: 40px auto;
	width: 100%;
}
.content-flex {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: auto auto 50px auto;
}
.cuadro-flex {
	background: #fff;
	width: 28%;
	padding: 10px;
	margin: 15px;
	box-shadow: 4px 4px 7px #333;
}
.cuadro-flex .flex-bloq-text {
	display: none;
	background: #711610;
	color: #fff;
	position: absolute;
	width: 28.1%;
	box-shadow: 0;
	border-radius: 10px 0px 10px 0px;
	padding: 10px;
	box-sizing: border-box;
	border: 3px solid #fff;
}
.cuadro-flex:hover {
	background: rgba(100,10,0,0.2);
	box-shadow: 0;
	padding: 15px;
	transition: .5s;
}
.cuadro-flex:hover .flex-bloq-text {
	display: block;
	transition-duration: 4s;
}
.flex-bloq {
	margin: auto;
	padding: 30px;
	width: 100%;
	height: 200px;
	box-sizing: border-box;
	cursor: pointer;
}
.flex-bloq img{
	width: 300px;
	height: 100px;
}
.flex-bloq strong{
	display: table;
	text-align: right;
	width: 100%;
	right: 0;
	bottom: 0;
	text-transform: uppercase;
}
.flex-bloq p{
	display: table;
	text-align: right;
	width: 100%;
	right: 0;
	bottom: 0;
	text-transform: uppercase;
}
.flex-bloq p a {
	text-decoration: none;
	color: #468BC0;
}
@media screen and (max-width: 1300px) {
	.flex-bloq img{
		width: 210px;
		height: 100px;
	}
}
@media screen and (max-width: 1000px) {
	.contenido-emp h1 {
		font-size: 60px;
	}
	.cuadro-flex {
		width: 40%;
	}
	.cuadro-flex .flex-bloq-text {
		width: 40.1%;
	}
}
@media screen and (max-width: 900px) {
	.contenido-emp h1 {
		font-size: 55px;
	}
	.flex-bloq img{
		width: 200px;
		height: 100px;
	}
}
@media screen and (max-width: 800px) {
	.cuadro-flex {
		width: 80%;
	}
	.cuadro-flex .flex-bloq-text {
		width: 80.1%;
	}
}
@media screen and (max-width: 700px) {
	.contenido-emp h1 {
		font-size: 40px;
	}
	.flex-bloq img{
		width: 200px;
		height: 100px;
	}
	.flex-bloq strong{
		text-align: center;
	}
}
@media screen and (max-width: 400px) {
	.contenido-emp h1 {
		font-size: 40px;
	}
	.flex-bloq img{
		width: 150px;
		height: 100px;
	}
	.flex-bloq strong{
		font-size: 13px;
		text-align: center;
	}
	.contenido-emp h1 {
		font-size: 36px;
	}
	.flex-bloq p{
		font-size: 13px;
	}
}

.carousel {
	display: block;
	background: #fff;
	width: 100%;
	height: 120px;
	margin: auto;
	padding: 10px;
	box-sizing: border-box;
	z-index: 0;
}
.carousel img {
	width: 180px;
	height: 100px;
	margin: auto 15px;
	z-index: 0;
}
@media screen and (max-width: 1000px) {
	.carousel {
		width: 100%;
		left: 0;
	}
}
.contenedorbanner {
	background: #fff;
	width: 100%;
	margin: auto;
	overflow: hidden;
}
.banslider1 {
	width: 8700px;
	height: 100px;

	background-image: url(../images/colage3.jpg);
	background-size: 100% 100%;

	animation: slider 80s infinite linear;
	transition: 5s;
}

.banslider2 {
	width: 2000px;
	height: 130px;

	background-image: url(../images/colage2.jpg);
	background-size: 100% 100%;

	animation: slider 80s infinite linear left;
	transition: 5s;
}

@keyframes slider {
	to {
		background-position: -4700px;
	}
}