
.contenedor {
	width: 100%;
	margin: auto;
}

/*PIE DE PAGINA*/
footer {
	background-color: #e2e2e2;
	width: 100%;
	/* position:fixed;
   	bottom:0px;
	z-index: 100; */
   	display: none;
}

footer .contenedor {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 0;
	padding-bottom: 5px;
}
#derechos {
	margin-top: 0px;
	display: flex;
	flex: auto;
}
#derechos .copy {
	font-size: 13px;
	color: #1e3f72;
	flex: auto;
	padding-left: 6%
}
#derechos img {
	margin: 10px;
	max-height: 20px;
	padding-right: 6%;
}

.sociales {
	width: 100%;
	font-size: 1em;
	text-align: center;
}

.sociales a {
	margin: 0px 20px;
	color: #050505;
	text-decoration: none;
	cursor: pointer;
}

.sociales a:hover {
	color: #1e3f72;
}

.menu_down {
	margin-bottom: 0;
	list-style: none;
}

.menu_down li a {
	color: #050505;
	text-decoration: none;
	line-height: 2;
	display: block;
	padding-left: .7em;
	font-size: 1em;
}

@media screen and (min-width: 600px) {

	footer {
		display: block;
		border-top: 1px solid rgba(255,255,255,.3);
	}
}
@media screen and (min-width: 768px) {

	.contenedor {
		width: 100%;
	}

	/*PIE DE PAGINA*/
	.menu_down {
		display: flex;
	}

	.menu_down li {
		flex: auto;
		text-align: center;
		border-bottom: 0;
	}
	.menu_down li a {
		padding-left: 0;
		line-height: 2.5;
	}

}

@media (min-width: 1280px) {
	.contenedor {
		width: 1280px;
	}

}