@import url(http://fonts.googleapis.com/css?family=Open+Sans);
@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.css);
@import url(infob.css);
@import url(info2.css);
@import url(info3.css);
@import url(contacto.css);
	
* {
	margin: 0;
	padding: 0;
	text-align:center;
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
}

header {
	width: 100%;
	height: 50px;
	/*background: #B01E22;*/
	background: #00468C;
	color: #ccc;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

.contenedor {
	width: 98%;
	margin: auto;
	text-align: left;
}

h1 {
	float: left;
}

header .contenedor {
	display: table;
}

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

#bienvenidos {
	text-align: center;
}


#pagos {
	text-align: center;
	color: #666;
}



#pagos .contenedor {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}


#pagos img {
	width: 300px;
	height: 60px;
	
}





footer {
	width: 100%;
	background: #00468C;
}

footer .contenedor {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

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

.sociales {
	width: 100%;
	text-align: center;
	padding-bottom: 25px;
}

.sociales a {
	font-size: 28px;
	text-decoration: none;
	color: #fff;
	
}







@media (min-width:768px) {
	.sociales {
		width: auto;
	}
	footer .contenedor {
		justify-content: space-between;
	}
}

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

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

@media (min-width:768px) {
	#pagos img{
		width: 450px;
	height: 80px;
	}
}


