
@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.css);

/* SETEO UNIVERSAL */
*{
	border: 0px none;
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

body {
	background: rgba(180,180,180,0.9);
	font-family: 'Dosis', sans-serif;
}

header {
	/* COLOR BARRA MENU */
	background: #00bfa5;
	color: #fff;
	height: 50px;
	width: 100%;

	/* Fijar Menu */
	position: fixed;
	top:  0;
	left:0;
	z-index: 100;
}

header .contenedor {
	display: table;
}

.contenedor {
	width:98%;
	margin: auto;
}

.contenedorbuscar {
	width:99%;
	/* margin: auto; */
	margin-top: 0px;
}

h1 {
	float: left;
	margin-top: 0px;
	
}

h1 a {
	color: #fff;
	text-decoration: none;
}

h1 img {
	/* margin-top: 5px; */
	
}

.fade {
	opacity: 1;
	filter:alpha(opacity=10);
	-ms-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	-webkit-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.fade:hover {
	opacity: 0.7;
	filter:alpha(opacity=7);
	-ms-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

section {
	width: 100%;
	margin-bottom: 25px;
}

#bienvenidos {
	text-align: center;
	padding: 10px;
}

footer {
	display: flex;
	flex_wrap: wrap;
	justify-content: center;
	padding-bottom: 25px;
}

.copy {
	font-size: 20px;	
}

.sociales {
	width: 100%;
	text.align: center;
	font-size: 28px;
}

.sociales a {
	color: #333;
	text-decoration: none;
}

@media (min-width:280px) {
	.fade {
		width: 75%;
		height: 75%;
	}
}

@media (min-width:480px) {
	.fade {
		width: 80%;
		height: 80%;
	}
}

@media (min-width:768px) {
	.fade {
		width: 90%;
		height: 90%;
	}
}

@media (min-width:1024px) {
	.fade {
		width: 100%;
		height: 100%;
	}
}

@media (min-width:1024px) {
	.contenedor {
		width: 1000px;
	}
}