@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600|Ovo');
/* CSS Document */

html, body{
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
}
h1 {
	font-family: 'Ovo', serif;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	display: block;
	max-width: 100%;

}

body {

	margin: 0;
	/* fuente para logo - font-family: 'Ovo', serif;*/
	font-family: 'Open Sans', sans-serif;
	background: #819EA4;
	
}

main{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	
}

.contenedor{
	margin: auto;
	/*width: 99%;*/
	overflow: hidden;
}

a{text-decoration: none;}


/*================= Estilos del Formulario Presupuesto =================*/

.presupuesto{
	transition: all 0.4s;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	background: url(../images/presupuesto.jpg) no-repeat 50% 50%;
	display: table;
	top:0;
	background-size: cover;
	overflow: hidden;
}
.presupuesto .modal_presupuesto{
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	max-width: none;
}
.modal_presupuesto{
	height: 100%;
	width: 100%;
	margin: 0 auto;
	background: rgba(74, 175, 205, 0.9);
	padding: 20px;
	text-align: center;
}
.form_presupuesto{
	max-width: 800px;
	margin: auto;
}

.form_presupuesto p{
	text-align: left;
	color: white;
	font-size: 12px;
	font-weight: lighter;
	margin-top: 10px;
	margin-left: 15px;
	
}

.form_presupuesto h3{
	margin-top:10px;
	margin-bottom: 20px;
	font-size: 20px;
	color: white;
	text-align: center;
}



input[type="text"], input[type="email"] {
	margin-top: 2px;
	border-radius: 25px;
	width: 100%;
	height: 35px;
	background: white;
	border: none;
	padding: 10px;
	
}

textarea{
	margin-top: 2px;
	width: 100%;
	height: 50px;
	border-radius: 15px;
	border: none;
	padding: 10px;
}

input[type="submit"] {
	margin-top: 25px;
	width: 200px;
	padding: 8px;
	font-size: 18px;
	color: white;
	border:none;
	background: #054A75;
	border-radius: 25px;
	cursor: pointer;
	-webkit-transition: all 0.5s;
 	-moz-transition: all 0.5s;
  	transition: all 0.5s;
	}

input[type="submit"]:hover{
	background: #6F878C;
	width: 215px;
	-webkit-transition: all 0.5s;
 	-moz-transition: all 0.5s;
  	transition: all 0.5s;
}

