* {
	font-family: "Roboto",sans-serif;
	font-weight: bold;
	font-size: 20px
	box-sizing:border-box;
}

.titulo {
  color: #24408f;
  font-size: 40px;
  padding: 8px 12px;
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0;
  text-shadow: 0.05em 0.05em 0.05em #999;
}
.titulo2 {
  color: #24408f;
  font-size: 25px;
  padding: 8px 12px;
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0;
  text-shadow: 0.05em 0.05em 0.05em #999;
}

.divppal {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	position: relative;
	z-index: 150;
	background-color: #fff;
}
.divlogo {
	width: 300px;
	text-align: center;
	margin-left: 30px;
}
.divcontext {
	width: 300px;
	text-align: center;
	color: #1c4cd4;
	padding-top: 20px;
	font-size: 20px;
}
.divcontext i {
	color: #ccc;
}
.divportada{
	width: 100%;
}
.divportada img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.divpresupuesto{
	margin:auto;
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	height:100%;
	background-color: #eee;
	align-items: center top;
	border: 2px solid #1c4cd4;
}

.divproductos{
	margin:auto;
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	height:100%;
	background-color: #eee;
	align-items: center top;
	border-bottom: 2px solid #1c4cd4;
	justify-content: center;
	text-align: center;
}


.divproductos__item-img{
	height: 250px;
	width: 250px;
	margin: 30px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);

}
.divproductos__item-img img{
	object-fit: cover;
	object-position: center center;
}
.divproductos__item{
	text-align: center;
}
.divproductos__item h4{
	color: #000;
	margin-top: 20px;
	text-align: center;
}
.divproductos__item h3{
	color: #000;
	margin-top: 25px;
	text-align: center;
}
	.form {
	min-width: 400px;
	flex: 1;
	text-align: center;
	padding: 30px;
}
.form__input{
	width: 100%;
	padding: 5px;
	margin: 5px 0;
	border: none;
	border-bottom: 3px solid #7f98dd;
	background: transparent;
	color: #24408f;
}
.form__input:focus{
	/*background: linear-gradient(to bottom,transparent,#000);*/
	background: #fff
	color#24408f;
	outline: none;
}

.form textarea{
	min-height: 120px;
	resize: none;
}
.form__img{
	flex: 1;
	display: flex;
	padding:20px;
}
.form__img div {
	padding: 20px;
}
.img-container {
	margin: auto;
}
.img-container div {
	/*background-color: #fff;*/
	background:linear-gradient(to bottom,#1c4cd4,#7f98dd);
	border-radius: 50%;
	text-align: center;
	padding: 40px;
}
.form__img img {
	width: 80%;
	margin: auto;
}
.form__input-boton{
	width: 100%;
	background-color: #1c4cd4;
	color: #FFF;
	border: none;
	padding: 12px;
}
.form__input-boton:hover{
	/*background-color: #072;*/
	background:linear-gradient(to bottom,#1c4cd4,#7f98dd);
}
.form__input-boton:focus{
	background: #7f98dd;
}
.form__input-boton:active{
	background:linear-gradient(to bottom,#7f98dd,#1c4cd4);
}

.nav__responsive-ul {
	display: none;
}
.contenedor-nav{
	height: 50px;
	width: 100%;
	background-color: #aaa;
	z-index: 500;
}
.nav {

	background-color: #1c4cd4;
	text-align: center;
}

.nav__li{
	display: inline-block;
	padding: 10px;
	color: #fff;


}

.nav__li:hover > a {
	color: #bbb;
}
.nav__li:hover {
	color: #bbb;
}
.nav__li a{
	color: #fff;
	text-decoration: none;
}
.nav__li i{
	box-sizing: border-box;
	text-align: right;
	margin-right: 5px;

}

/* Esto da igual pornerlo aqui. Es el boton del menu, pero hasta que no baje de los 600 px no va a aparecer*/
/* Lo mismo con el menu del movil */
.nav__responsive-button-container {
	position: absolute;
	width: 100%;
	font-size: 25px;
	background-color: #1c4cd4;
	margin-top: -90px;
	z-index: 100;
}
.nav__responsive-button {
	padding: 10px 20px;
	text-align: right;
	width: 100%;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media only screen and (max-width: 900px) {
	.divcontext{
		display: none;
	}
	.text{
		color: #f2f2f2;
		  /*background: linear-gradient(to bottom,transparent,#000);*/
		  font-size: 24px;
		  padding: 8px 12px;
		  position: absolute;
		  width: 100%;
		  top:30px;
		  text-align: center;
		  text-shadow: 0.1em 0.1em 0.05em #333;
	}
	.divppal{
		position: relative;
		justify-content: center;
		background-color: #fff;
		z-index: 150;
	}

	.divportada h1{
		width: 100%;
		font-size: 20px;
		text-align: center;
		text-shadow: 0px 0px;
	}
	.divproductos,.divproductosrevers,.divpresupuesto{
		justify-content: center;
	}
	.nav__ul {
		display: none;
	}
	.nav {
		height: 45px;
		width: 100%;
	}
	.nav__responsive-ul {
		display: block;
		position: absolute;
		width: 100%;
		margin-top: 45px;
		padding-top: 45px; 
		height: 45px;
		text-align: left;
	}
	.nav__li-container {
		position: relative;
		top: -1000px;
		height: 275px;
		background-color: #9bf;
		transition: all 0.5s;
		z-index: 1;
		width: 45%;
		padding-top: 45px; 
	}
	.nav__responsive-li {
		width: 100%;
		padding: 10px 20px;
	}
	.nav__responsive-li i {
		box-sizing: border-box;
		text-align: center;
		margin-right: 5px;
		width: 30px;
		color: #016;
		font-size: 20px;
	}
	.nav__responsive-li a{
		color: #016;
		text-decoration: none;
		font-size: 20px;
	}
	
	.nav__responsive-ul:hover > .nav__li-container{
		top: -45px;
	}
}
