@import url('https://fonts.googleapis.com/css?family=Open+Sans');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #00528A;
	font-family: 'Open Sans', sans-serif;
}

header {
	width: 100%;
	height: 95px;
	background: #fff;
	color: #3169aa;
	-webkit-box-shadow: 2px 2px 5px #000;
	-moz-box-shadow: 2px 2px 5px #000;

	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

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

img {
	float: left;
	margin-top: 10px;
}

header .contenedor {
	display: table;
}

section {
	width: 100%;
	margin-bottom: 25px;
}

#Bienvenidos{
	text-align: center;
	color: #fff;
	background: #53abd0;
	padding: 20px;
	padding-top: 25px;
}

#Bienvenidos h2{
	background: rgba(255,255,255,.1);
}

footer {
	background: #041821;
}

footer .contenedor {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 25px;
}

.copy {
	font-size: 20px;
	color: #fff;
	padding-top: 25px;
}

.sociales {
	width: 100%;
	text-align: center;
	font-size: 20px;
}

.sociales a{
	color: #fff;
	text-decoration: none;
}

.slider{
	width: 100%
	margin:auto;
	overflow: hidden;
}

.slider ul {
	padding: 0;
	display: flex;
	width: 400%;

	animation: cambio 20s infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in;
}

.slider li {
	width: 100%;
	list-style: none;
}

.slider img {
	width: 100%;
}

@keyframes cambio {
	0% {margin-left: 0;}
	20% {margin-left: 0;}

	25% {margin-left: -100;}
	45% {margin-left: -100;}

	50% {margin-left: -200;}
	70% {margin-left: -200;}

	75% {margin-left: -300;}
	100% {margin-left: -300;}
}

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