
@import url(menu.css);
@import url(bannerform.css);

/* SETEO UNIVERSAL */
*{
	border: none;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: rgba(230,230,230,0.9);
	font-family: 'Dosis', sans-serif;
	/* background-image: url('/img/banner.png'); */
	background-size: 100vw 100vh;
	background-attachment: fixed;
	margin: 0;
}

header {
	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;
}

a {
	text-decoration: none;	
}

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: 15px;
}

footer {
	display: flex;
	flex_wrap: wrap;
	justify-content: center;
	padding-bottom: 25px;
}

@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;
	}
}