@import url('https://fonts.googleapis.com/css?family=Noto+Sans&display=swap');
@import url(menu.css);
@import url(formulario.css);


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Noto Sans', sans-serif;
	background-image: url(../images/contacto.jpg);
	background-size: 100vw 100vh;
	background-attachment: fixed;
	margin: 0;
}

section{
	width: 100%;
	margin-bottom: 25px;
}

form{
	width: 400px;
	margin: auto;
	background: rgba(5, 5, 7,0.8);
	padding: 10px 20px;
	box-sizing: border-box;
	margin-top: 20px;
	border-radius: 7px;

}

h2{
	color: #fff;
	text-align: center;
	margin:0;
	font-size: 20px;
	margin-bottom: 20px;
}
h1{
	color: #fff;
	text-align: center;
	align-content: right;
}
img{
	width: 250px;
	height: 60px;
}

p{
	color: white;
	text-align: center;
}
a{
	color: white;
	text-align: center;
}
input, textarea{
	width: 100%;
	margin-bottom: 20px;
	padding: 7px;
	box-sizing: border-box;
	font-size: 17px;
	border: none;
	background: rgba(123, 124, 126,0.2);
	color:white;
}

textarea{
	min-height: 100px;
	max-height: 200px;
	max-width: 100%;
}
#llamarboton{
	background: #09268B;
	color: #fff;
	padding: 10px;

}

#llamarbotonboton:hover{
	cursor: pointer;
	background: linear-gradient(147deg,#08299D 0%, #1D44CD 74%);
}

#boton{
	background: #09268B;
	color: #fff;
	padding: 10px;

}

#boton:hover{
	cursor: pointer;
	background: linear-gradient(147deg,#08299D 0%, #1D44CD 74%);
}
header{
	width: 100%;
	height: 50px;
	background: #043879;
	color: #fff;

	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

.contenedor{
	width: 98%;
	margin:auto;
}

h1{
	float: left;
}


section{
	width: 100%;
	margin-bottom: 25px;
}

footer .contenedor{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 20px;

}

.copy{
	font-size: 15px;
	color: white;
}

.sociales{
	width: 100%;
	text-align: center;
	font-size: 30px;
}

.sociales a{
	color: black;
	text-decoration: none;
}

@media (min-width:768px){
	.sociales{
		width: auto;
	}

	footer .contenedor{
		justify-content: space-between;
	}
}

@media (min-width:1024px) {
	.contenedor{
		width: 1000px;
	}
}

@media (max-width:480px){
	form{
		width: 100%;
	}
}

