/* CSS Document */
:root{
	--red:#ff2e63;
	--black:#252a34;
	--blue:#08d9d6;
	--white:#eaeaea;
	--sourcherry:#B71C1C;
	
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box; 
}

body{
	background: #fff;
	overflow-x:hidden;
	font-family: 'Raleway', sans-serif; 
}

/**Go Top (boton para subir arriba)**/
.go-top{
	position: fixed;
	bottom: 100px;
	right: -100%;
	width: 50px;
	height: 50px;
	border:2px solid var(--sourcherry);
	background: #fff;
	z-index: 1000;
	
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 0.2s;
}

.go-top:hover{
	border:2px solid var(--white);
	background: var(--sourcherry);
}

.go-top:hover span{
	color: var(--white);
}

.go-top > span{
	font-size:30px; 
	color:var(--black);
}

/**skew (para q recorte la imagen de abajo)**/
.skwe-abajo{
	position: absolute;
	bottom: 0;
	left: 0;
	border-width: 0 0 10vh 100vw;
	border-style: solid;
	border-color: transparent transparent #fff transparent;

}

.skwe-arriba{
	position: absolute;
	top: 0;
	left: 0;
	border-width: 10vh 100vw 0 0;
	border-style: solid;
	border-color: #fff transparent transparent  transparent;
	z-index: 10;

}
/**skew (para q recorte la imagen de abajo)**/


/**MENU DE NAVEGACION**/

#header{
	position: relative;
	width: 100%;
}

.menu{
	position: fixed;
	top: 0;
	width: 100%;
	left: 0;
	height: 60px;
	background: #fff;

	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 999;
}

.menu .logo-box{
	margin-left: 10px;
}

/**para el logo de la empresa**/
.menu .logo-box img{
	height: 60px;
	margin-left: -10px;
}

.menu .list-container{
	margin-right: 20px;
	margin-top: 0px;

}

.menu .list-container .lists{
	display: flex;

}

.menu .list-container .lists li{
	list-style: none;
}

.menu .list-container .lists li a{
text-decoration: none;
	margin:0px 18px;
	padding: 8px;
	color: #1E88E5;
	border-radius: 25px;
	font-size: 18px;
	transition: 0.3s;
	font-family: fantasy;
	cursor: pointer;
}


/**para el menu cabecera**/
.menu .list-container .lists li a.activo{
	background:#3F51B5;
	color: var(--white);
}

.menu .list-container .lists li a.llamada{
	background: #3F51B5;
	color:var(--white);
}

/**para que se active el p**/
.menu .list-container .lists li a:hover{
	background: #3F51B5;
	color: var(--white);
}

/**para hacer desaparecer las 3 lineas**/
.btn-menu > .fa-bars{
	display: none;	
}

/**MENU DE NAVEGACION**/

/**IMG HEADER**/

.img-header{
	position: relative;
	width: 100%;
	height:100vh;/**100% de el alto de la pantalla**/
	background: url(img/header.jpg);
	background-attachment: fixed;/**para q la imagen se desaparesca mientras bajas**/
	background-position: center;
	background-size: cover; 
}


/**para la imagen de welcome**/
.img-header .welcome{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);/**para el degradado de la imagen (para q se opaque)**/

	/**todo esto para centrear las letras**/
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.img-header .welcome h1{
	font-size: 70px;
	color: #fff;
	font-weight:200;
	
}

.img-header .welcome p{
	font-size: 25px;
	color: #fff;
	margin-top: -5px;
	
}

.img-header .welcome > button{
	width: 170px;
	height: 40px;
	background: var(--sourcherry);
	border-radius: 24px;
	border: none;
	outline: none;
	font-size: 22px;
	color: #fff;
	text-align: center;
	margin-top: 20px;
	cursor: pointer;
	transition: 0.5s; 
}

/**hover es para hacer efectos**/
.img-header .welcome > button:hover{
	background: var(--blue);
}

/**IMG HEADER**/


/**ACERCA DE NOSOTROS**/

.acerca-de{
	width: 100%;
	margin-top: 120px;
}

.acerca-de .info-container{
	width: 80%;
	margin: auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.acerca-de .info-container h1{
	font-size: 50px;
	font-weight: 400;
	color: var(--black);
	text-align: center;
	margin-bottom: 20px;
}

.acerca-de .info-container p{
	text-align: justify;
	font-size: 17px;
	color: var(--black);
	line-height: 35px;
	margin: 10px 0px;
}

.acerca-de .info-container .about-gallery{
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 50px 0px;
}


.acerca-de .info-container .about-gallery img{
	width: calc(33.33% - 10px); /**para que las 3 imagenes esten en un mismo lugar**/
	height: 300px;
	object-fit: cover;	
	margin: 10px 10px;
	border-radius: 10px;
	cursor: pointer; 
	transition: 0.5s;
}

.acerca-de .info-container .about-gallery img:hover{
	transform: scale(1.1);
}



/**ACERCA DE NOSOTROS**/

/**NUESTROS SERVICIOS**/
.our-projects{
	position: relative;
	width: 100%;
	height: 100%;
	background: url(img/img-2.jpg);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	margin-top: 100px;
}

/**el fondo se sobrepone al contenido**/
.our-projects .deg-background{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
}


/**para que el contenido sobresalga del fondo**/
.our-projects .ejeZproject{
	position: relative;
	width: 100%;
	height: 100%;
}

.our-projects .container-project{
	width: 90%;
	margin: auto;
	padding-top: 100px;
}

.our-projects .container-project .project-title{
	border:2px solid #fff;
	padding: 10px;
	text-align: center;
	width: 50%;
	margin: auto;
}

.our-projects .container-project .project-title h2{
	font-size: 40px;
	color: #fff;
	font-weight: normal;
}

.our-projects .container-project .project-title hr{
	background: #fff;
	width: 50%;
	margin: 10px auto;
}

.our-projects .container-project .project-img{
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 80px;
	padding-bottom: 100px;
}

.our-projects .container-project .project-img img{
	width: calc(30% - 10px);
	margin: 10px;
	transition: 0.5s;
	border-radius: 15px;
	cursor: pointer; 
}

.our-projects .container-project .project-img img:hover{
	transform: scale(1.1);
}

/**NUESTROS SERVICIOS**/


/**TESTIMONIOS**/
.testimonios{
	width: 100%;
	margin-top: 120px;
}

.testimonios .testimonios-title{
	width: 50%;
	margin: auto;
	text-align: center;
}

.testimonios .testimonios-title h2{
	font-size: 50px;
	color: var(--black);
	font-weight: normal;
	margin-bottom: 10px;
}

.testimonios .testimonios-title hr{
	width: 60%;
	margin: auto;
	height: 2px;
	background: var(--black);
	border: none;
}

.testimonios .box-testimonios{
	width: 90%;
	margin: 80px auto;

	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.testimonios .box-testimonios .card-testimonio{
	width: 45%;
	margin:20px;
}

.testimonios .box-testimonios .card-testimonio .card-img{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.testimonios .box-testimonios .card-testimonio .card-img img{
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	cursor: pointer;
}

.testimonios .box-testimonios .card-testimonio .testimonio-text{
	width: 100%;
	border:2px solid var(--sourcherry);
	margin-top: 30px;
	padding: 20px;
	border-radius: 20px;
	cursor: pointer;
	transition: 200ms;
}

.testimonios .box-testimonios .card-testimonio .testimonio-text h4{
	color: var(--sourcherry);
	font-weight: normal;
	font-size: 27px;
	text-align: center; 
	margin-bottom: 20px;
	transition: 200ms;
}

.testimonios .box-testimonios .card-testimonio .testimonio-text p{
	font-size: 19px;
	color: var(--black);
	text-align: center;
	line-height: 35px;
	transition: 200ms;
}

.testimonios .box-testimonios .card-testimonio .testimonio-text:hover{
	border: 2px solid var(--blue);
}

.testimonios .box-testimonios .card-testimonio .testimonio-text:hover h4{
	color: var(--blue);

}

/**TESTIMONIOS**/


/**FOOTER**/
/**para poner un fondo en el formulario**/
.footer{
	position: relative;
	width: 100%;
	height: 100%;
	background: url(img/footer.jpg);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}

/**para degradar el fondo**/
.footer .deg-footer{
	position:absolute;
	width: 100%;
	height: 105%;
	background: rgb(0,0,0,0.6);
}

.footer .ejeZfooter{
	position: relative;
	width: 100%;
	height: 100%;
}

.footer .footer-content{
	width: 90%;
	padding-top: 100px;
	margin: auto;
}

.footer .footer-content .footer-title{
	width: 50%;
	margin: auto;
	border: 2px solid #fff;
	padding: 15px;
}

.footer .footer-content .footer-title h2{
	text-align: center;
	color:#fff;
	font-size: 35px;
	font-weight: normal;
	margin-bottom: 10px;
}

.footer .footer-content .footer-title hr{
	width: 80%;
	margin: auto; 
}

.footer .footer-content .formulario-content{
	width: 60%;
	background: #fff;
	border-radius: 50px;
	border:1.5px solid var(--sourcherry);
	margin:50px auto;
	padding: 30px;
	margin-bottom: 50px;
}

.footer .footer-content .formulario-content #formulario{
	display: flex;
	justify-content: center;
	flex-direction: column; 
}

.footer .footer-content .formulario-content #formulario label{
	text-align: center;
	color:var(--black);
	font-size: 20px;
	margin: 30px 0px 10px 0px;
}

.footer .footer-content .formulario-content #formulario input{
	width: 90%;
	height: 40px;
	margin:auto;
	border-radius: 24px;
	outline: none;
	border:1.5px solid var(--sourcherry);
	text-align: center;
	font-size: 18px;
	color:var(--black);

}

.footer .footer-content .formulario-content #formulario textarea{
	width: 90%;
	height: 200px;
	margin:auto;
	border-radius: 24px;
	outline: none;
	border:1.5px solid var(--sourcherry);
	font-size: 15px;
	color:var(--black);
	padding: 20px;
}

.footer .footer-content .formulario-content #formulario #send{
	width: 100%;
	display: flex;
	justify-content: center;
	margin:40px 0px;
	margin-left: 250px;
}

/*.footer .footer-content .formulario-content #formulario #send {
	width: 150px;
	height: 40px;
	background: var(--sourcherry);
	border-radius: 20px;
	border: none; 
	outline: none;
	font-size: 22px;
	color: #fff;
	text-align: center;
	margin-top: 20px;
	cursor: pointer;
	transition: 0.5s;
}

.footer .footer-content .formulario-content #formulario #send:hover{
	background: var(--blue);
}*/

.footer .footer-content .formulario-content #formulario .send{
	width: 100%;
	display: flex;
	justify-content: center;
	margin:40px 0px;

}

.footer .footer-content .formulario-content #formulario .send button{
	width: 150px;
	height: 40px;
	background: var(--sourcherry);
	border-radius: 24px;
	border: none;
	outline: none;
	font-size: 22px;
	color: #fff;
	text-align: center;
	margin-top: 20px;
	cursor: pointer;
	transition: 0.5s;
}

.footer .footer-content .formulario-content #formulario .send button:hover{
	background: var(--blue);
}

.footer .footer-content .footer-text{
	position: relative;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: rgba(0,0,0,0.6);
	border-top: 5px solid #fff;
	
	display: flex;
	justify-content: center;
	align-items: center;

}

.footer .footer-content .footer-text p{
	color:#fff;
	font-size: 20px;
}

/**FOOTER**/

/*MENSAJE EXITOSO*/
.mensaje-exito{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center; 
}

.mensaje-exito h1{
	font-size: 35px;
	display: block;
	text-align: center;
	margin-bottom: 20px;
}

.mensaje-exito a{
	display: block;
	padding: 10px 30px;
	background: black;
	text-decoration: none;
	color:#fff;
}

/**CONTACTENOS**/


/*CONTACTENOS_1*/

.redes-container .columna-25{
	width: 25%;
}

.content-redes{
	position: absolute;
	width: 100%;
	height: 35%;
	background: url(img/img-2.jpg);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	margin-top: -20px;
}

/**el fondo se sobrepone al contenido**/
.content-redes .deg-background{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
}

.content-redes .ejeZproject{
	position: relative;
	width: 100%;
	height: 100%;
}

#logo{
	position: absolute;
	margin-left: 0px;
	width: 35%;
	top: -15px;
}

/**para el logo de la empresa**/
#logo img{
	width:60%;
}
#logo h1{
	color: #fff;
	margin-left: 10px;
	font-size: 17px;
}

#logo h2{
	color: #fff;
	margin-left: 16%;
	font-size: 15px;
	padding-top: 8px;
}

	

#contenido{
	position: absolute;
	margin-left: 25%;
	padding-top: 30px;
	
}

#contenido h1{
	color: #fff;
	font-size: 20px;
	margin-left: 35px;
	padding-top: 20px;
}

#contenido p{
	color: #fff;
	margin-left: 20%;
	padding-top: 10px;
}

#contenido h2{
	color: #fff;
	font-size: 17px;
	margin-left: 35px;
}
#contenido h3{
	color: #fff;
	font-size: 18px;
	margin-left: 35px;
}

#contenido p1{
	color: #fff;
	margin-left: 8.5%;

}



#datos{
	position: absolute;
	margin-left: 52%;
	top: 29px;
}

#datos h1{
	color: #fff;
	font-size: 20px;
}

#datos p{
	
	color: #fff;
	padding-top:15px; 
	margin-left: 8.5%;

}



#redes{
	position: absolute;
	margin-left: 74%;
	top: 45px;
}

#redes h1{
	color: #fff;
	font-size: 20px;
}

#redes ul li{
	display: inline-block;
	margin: 0 5px;
	width: 50px;
	height: 50px;
	text-align: center;
}

#redes ul li a{
	display: block;
	padding: 10px 10px;
	background: #333;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
	transition: .2s
	
}


#redes ul li a:hover{
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 5px 5px 0px rgba(0,0,0,0.4);
	filter: none;
}

#redes ul li .facebook:hover{
	background: #2E86C1;
}
#redes ul li .whatsapp:hover{
	background: #1D8348;
}
#redes ul li .instagram:hover{
	background: #CD6155;
}
#redes ul li .twitter:hover{
	background: #2E86C1;
}

#redes ul li .linkedin2:hover{
	background: #1A5276;
}

.footer-text{
	position: relative;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: black;
	/*background: rgba(0,0,0,0.6);*/
	border-top: 5px solid #fff;
	
	display: flex;
	justify-content: center;
	align-items: center;

}

.footer-text p{
	color:#fff;
	font-size: 20px;
}


/**NUESTROS PROYECTOS**/


/*----------------*/
/**MEDIA QUERY**/
@media screen and (max-width: 1000px){
	.btn-menu > .fa-bars{
		display:block;
		position: absolute;
		top: 20px;
		right: 30px;
		font-size: 28px;
		cursor: pointer;
	}
	
	/**para que tenga color las 3 barras cuando se le acerca el cursor**/
	.btn-menu > .fa-bars:hover{color: var(--sourcherry);}
	.btn-menu > .fa-time{color:var(--sourcherry);}

	.img-header .welcome h1{
	font-size: 60px;
}

.img-header .welcome p{
	font-size: 25px;
}

	.menu .list-container{
		position: absolute;
		top: 60px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 60px);
		background: #fff;
	}

	.menu .list-container .lists{
		height: 100%;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		border-top:5px solid var(--sourcherry);
	}

	.menu .list-container .lists li{
		width: 90%;
		margin:10px 0px;
		
		text-align: center; 
	}

	.menu .list-container .lists li a{
		font-size: 20px;
		;
	}
	
	.menu .list-container .lists li a.activo{
		background: none;
		color: var(--sourcherry);

	}

	.menu .list-container .lists li a:hover{
		background: none;
		color: var(--sourcherry);
		
	}

	/*para el tamaño de letra del titulo nuestros proyectos*/
	.our-projects .container-project .project-title h2{
	font-size: 30px;
	
   }
   /*para el tamaño de letra del titulo formulario de contactos*/
   .footer .footer-content .footer-title h2{
	font-size: 30px;
   }

   .content-redes{
		height: 110%;
	}
	.content-redes .redes-container #logo{
		width: 50%;
		top:%;
		margin-left: 32%;
	}
	.content-redes .redes-container #contenido{
		width:35%;
		top: 28%;
		margin-left: 30%;
	}

	.content-redes .redes-container #datos{
		width: 25%;
		top: 64%;
		margin-left: 33%;
	}
	.content-redes .redes-container #redes{
		width: 35%;
		top: 86%;
		margin-left: 33%;
	}

}




@media screen and (max-width: 773px){

	/**para que las palabras disminuyan de tamaño y no se hagan bulto cuando llegue a 773px**/
	/**IMG header**/
	.img-header .welcome h1{
		font-size: 40px;
	}

	

	.img-header .welcome > button {
		width: 130px;
		font-size: 20px;
	}

	/****/
	/**ACERCA DE NOSOTROS**/
	.acerca-de .info-container .about-gallery{
		flex-direction: column;

	}
	
	/**para que las imagenes ocupen toda la pantalla cuando se redusca y no se achiquen**/
	.acerca-de .info-container .about-gallery img{
		width: 100%;
	}

	/**NUESTROS PROYECTOS**/
	/**para que las imagenes se adapten a la pantalla chica y no se achiquen en un solo lugar**/
	.our-projects .container-project .project-img img{
		width: 80%;
		margin-bottom: 30px;
	}

	/**CONTACTOS**/

	.our-projects .container-project .project-img img{
		width: 80%;
		margin-bottom: 30px;
	}

	.content-redes{
		height: 105%;
	}
	.content-redes .redes-container #logo{
		width: 50%;
		margin-left: 32%;
	}
	.content-redes .redes-container #contenido{
		width: 50%;
		top: 24%;
		margin-left: 29%;
	}
	
	.content-redes .redes-container #datos{
		width: 50%;
		top: 61%;
		margin-left: 33%;
	}
	.content-redes .redes-container #redes{
		width: 50%;
		top: 85%;
		margin-left: 32%;
	}
}


/****/
/**para que a los 590 se adapte a la pantalla de 590 con las nuevas medidas**/
@media screen and (max-width: 590px){

	/**IMG header**/
	.img-header .welcome h1{
		font-size: 30px;
	}

	

	.img-header .welcome p{
		font-size: 17px;
	}

	.img-header .welcome > button{
		width: 100px;
		font-size: 17px;
	}

	.content-redes{
		height: 105%;
	}
	.content-redes .redes-container #logo{
		width: 75%;
		margin-left: 90px;
		top: 0px;
	}

	#logo h1{
		margin-left: -20px;
	}

	#logo h2{
		margin-left: 48px;
		padding-top: 8px;
	}
	.content-redes .redes-container #contenido{
		width: 80%;
		top: 22%;
		margin-left: 10%;
	}
	
	.content-redes .redes-container #datos{
		width: 50%;
		top: 58%;
		margin-left: 22%;
	}
	.content-redes .redes-container #redes{
		width: 70%;
		top: 83%;
		margin-left: 18%;
	}
}


/**para que los testimonios se adapten en la pantalla casi completamente cuando se achique la pantalla**/
@media only screen and (max-width: 890px){
	.testimonios .box-testimonios .card-testimonio .card-img img{
		width: 200px;
		height: 200px;
	}

	.testimonios .box-testimonios .card-testimonio{
		width: 100%;
	}
	
	.testimonios .box-testimonios .card-testimonio .testimonio-text h4{
		font-size: 25px;
	}

	.testimonios .box-testimonios .card-testimonio .testimonio-text p{
		font-size: 17px;
		line-height: 35px;
	}

}

/**para el formulario se adapter a la resolucion de pantalla y no se achique y ocupe casi todo**/

@media screen and (max-width: 900px){
    .footer .ejeZfooter .formulario-content{
    	width: 85%; padding:20px;
    }
    .footer .ejeZfooter .formulario-content #formulario input{
    	width: 100%;
    }
    .footer .ejeZfooter .formulario-content #formulario textarea{
    	width: 100%;
    }
}
@media only screen and (max-width:590px){
    .footer .ejeZfooter .formulario-content{
    	width: 95%; padding:20px;
    }
    .footer .ejeZfooter .formulario-content #formulario label{
    	font-size: 17px;
    }
    .footer .ejeZfooter .formulario-content #formulario input{
    	width: 100%; font-size: 17px;
    }
    .footer .ejeZfooter .formulario-content #formulario textarea{
    	width: 100%;
    }
    .footer .ejeZfooter .formulario-content #formulario .mensaje-form p{
    	font-size: 17px;
    }
    .footer .ejeZfooter .footer-text{
    	width: 100%; padding: 0px 30px;
    }
    .footer .ejeZfooter .footer-text p{
    	font-size: 17px;
    }
}

/**MEDIA QUERY**/ 
