@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);
	
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
}

header {
	width: 100%;
	height: 10px;
	background: #333;
	color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

.contenedor {
	width: 98%;
	margin: auto;
}

.textoprincipal {
	font-size:14px;
}

.textopiepagina {
	font-size:13px;
}

.textoformularios {
	font-size:14px;
	color:#660033;
}

header .contenedor {
	display: table;
}

section {
	width: 100%;
	margin-bottom: 25px;
}

#bienvenidos {
	text-align: center;
}

footer {
	width: 100%;
}

footer .contenedor {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.copy {
	font-size: 13px;
}

.sociales {
	width: 100%;
	text-align: center;
	padding-bottom: 25px;
}

.sociales a {
	font-size: 28px;
	text-decoration: none;
	color: #333;
	
}

@media (min-width:768px) {
	.sociales {
		width: auto;
	}
	footer .contenedor {
		justify-content: space-between;
	}
}

@media (min-width:1024px) {
	.contenedor {
		width: 1000px;
	}
}
