:root{
	--red:#FF0000;
	--black:#272121;
	--blue:#64B2CD;
	--white:#F8F8F8;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background: #88B5AF;
	overflow-x: hidden;
	font-family: 'Raleway', sans-serif;
}

/** Go top **/
.go-top{
	position: fixed;
	bottom: 100px;
	right: -100%;
	width: 50px;
	height: 50px;
	border: 2px solid var(--blue);
	background: #FFF;
	z-index: 9999;

	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 400ms;
}
.go-top:hover{
	border: 2px solid var(--white);
	background: var(--red);
}
.go-top:hover span{
	color: var(--white);
}
.go-top > span{
	font-size: 30px;
	color: var(--black);
}

/** Skew **/
.skew-abajo{
	position: absolute;
	bottom: 0;
	left: 0;
	border-width: 0 0 10vh 100vw;
	border-style: solid;
	border-color: transparent transparent #000000 transparent;
}
.skew-arriba{
	position: absolute;
	top: 0;
	left: 0;
	border-width: 10vh 100vw 0 0;
	border-style: solid;
	border-color: #000000 transparent transparent transparent;
	z-index: 10;
}

/** Menu de Navegacion **/
#header{
	position: relative;
	width:	100%;	
}

.menu{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: #88B5AF; 

	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 9999;
}
.menu .logo-box{
	margin-left: 10px;
}
.menu .logo-box img{
	width: calc(100%);
	height: 100%;
	margin: 10px;
	object-fit: cover;
	cursor: pointer;
}
.menu -list-container{
	margin-right: 20px;
}
.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 10px;
	padding: 8px;
	color: var(--white);
	border-radius: 24px;
	font-size: 16px;
	transition: 0.3s;
}
.menu .list-container .lists li a.activo{
	background: var(--blue);
	color: #F8F8F8;
}
.menu .list-container .lists li a:hover{
	background: var(--blue);
	color: #272121;
}
.btn-menu > .fa-bars{
	display: none;
}

/** Menu de Nevagacion **/

/** IMG Slider **/
.container-slider{
    width: 90%;
    max-width: 900px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 0 0 3px #fff,
                0 15px 50px;
    position: relative;
}
.slider{
    display: flex;
    width: 500%;
    height: 400px;
    margin-left: -100%;
}
.slider__section{
    width: 100%
}
.slider__img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider__btn{
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255,255, 255, 0.7);
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: bold;
    font-family: monospace;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.slider__btn:hover{
    background: #fff;
    
}
.slider__btn--left{
    left: 10px;
}
.slider__btn--right{
    right: 10px;
}

/** IMG Slider **/

/** IMG Header
.img-header{
	position: relative;
	width: 100%;
	height: 100vh;
	background: url(../img/header.jpg);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}
.img-header .welcome{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.img-header .welcome h1{
	font-size: 50px;
	color: #FFF;
	font-weight: 200;
}
.img-header .welcome hr{
	width: 400px;
	height: 2px;
	background: #FFF;
	border: none;
	margin-top: 5px;
}
.img-header .welcome p{
	font-size: 20px;
	color: #FFF;
	margin-top: 20px;
}
.img-header .welcome button{
	width: 170px;
	height: 40px;
	background: var(--blue);
	border-radius: 24px;
	border: none;
	outline: none;
	font-size: 22px;
	color: #FFF;
	text-align: center;
	margin-top: 20px;
	cursor: pointer;
	transition: 0.5s;
}
.img-header .welcome button:hover{
	background: var(--red);

}
/** 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: center;
	font-size: 17px;
	color: var(--black);
	line-height: 35px;
}
.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);
	height: 300px;
	object-fit: cover;
	margin: 10px 10px;
	border-radius: 10px;
	cursor: pointer;
}	

/** Acerca de Nosotros **/

/** Nuestros proyectos **/
.our-projects{
	position: relative;
	width: 100%;
	height: 100%;
	background: url(../img/img-2.jpg);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	border-top: 100px solid #88B5AF;
}
.our-projects .deg-background{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
}
.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);
	height: 300px;
	margin: 10px;
	object-fit: cover;
	border-radius: 10px;
	cursor: pointer;
}

.our-projects .container-project .about-more{
	width: 100%;
	display: flex;
	justify-content: center;
}
.our-projects .container-project .about-more button{
	width: 120px;
	height: 40px;
	background: var(--blue);
	border-radius: 24px;
	border: none;
	outline: none;
	font-size: 22px;
	color: #FFF;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 50px;
	cursor: pointer;
	transition: 0.5s;
}
.our-projects .container-project .about-more button:hover{
	background: var(--red);
}

/** Nuestros proyectos **/

/** Productos y servicios **/
.productos{
	width: 100%;
	border-top: 100px solid #88B5AF;
	border-bottom: 25px solid #88B5AF1;
	background: #88B5AF;
}
.productos .productos-title{
	width: 50%;
	margin: auto;
	text-align: center;
}
.productos .productos-title h2{
	font-size: 50px;
	color: var(--white);
	font-weight: normal;
	margin-bottom: 10px;
}
.productos .productos-title hr{
	width: 100%;
	margin: auto;
	height: 3px;
	background: var(--white);
	border: none;
}
.productos .box-productos{
	width: 90%;
	margin: 80px auto;
	background: #000000;
	
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.productos .box-productos .card-producto{
	width: 45%;
	margin: 20px;	
}
.productos .box-productos .card-producto .card-img{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.productos .box-productos .card-producto .card-img img{
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	cursor: pointer;
}
.productos .box-productos .card-producto .producto-text{
	width: 100%;
	border: 2px solid var(--blue);
	margin-top: 30px;
	padding: 20px;
	border-radius: 20px;
	cursor: pointer;
	transition: 200ms;
}
.productos .box-productos .card-producto .producto-text h4{
	color: var(--blue);
	font-weight: normal;
	font-size: 27px;
	text-align: center;
	margin-bottom: 20px;
	transition: 200ms;
}
.productos .box-productos .card-producto .producto-text p{
	font-size: 19px;
	color: var(--white);
	text-align: center;
	line-height: 35px;
	transition: 200ms;
}
.productos .box-productos .card-producto .producto-text:hover{
	border: 2px solid var(--red);
}
.productos .box-productos .card-producto .producto-text:hover h4{
	color: var(--red);
}
/** Productos y servicios **/

/** Innovacion  **/
.innovations{
	width: 100%;
	border-top: 50px solid #88B5AF;
	border-bottom: 25px solid #88B5AF;
	background: #88B5AF;
}
.innovations .innovations-title{
	width: 50%;
	margin: auto;
	text-align: center;
}
.innovations .innovations-title h2{
	font-size: 50px;
	color: var(--white);
	font-weight: normal;
	margin-bottom: 10px;
}
.innovations .innovations-title hr{
	width: 100%;
	margin: auto;
	height: 3px;
	background: var(--white);
	border: none;
}

.innovations .container-innovations{
    width: 75%;
	margin: auto;
	text-align: center; 
    background: url(../img/header__.jpg);
	background-attachment: scroll; 
	background-position: center;
	background-size: cover;
}
.innovations .container-innovations .img-innovations{
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.innovations .container-innovations .img-innovations h1{
	font-size: 50px;
	color: var(--white);
	font-weight: normal;
	margin-bottom: 10px;
    align-items: center;
}
.innovations .container-innovations button{
	width: 170px;
	height: 40px;
	background: var(--blue);
	border-radius: 24px;
	border: none;
	outline: none;
	font-size: 22px;
	color: #FFF;
	text-align: center;
	margin-top: 20px;
    margin-bottom: 20px;
	cursor: pointer;
	transition: 0.5s;
}
.innovations .container-innovations button:hover{
	background: var(--red);
}
/** Innovación **/


/** Footer **/
.footer{
	position: relative;
	width: 100%;
	height: 250vh;
	background: url(../img/footer.jpg);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}
.footer .deg-footer{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: rgba(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: 30px;
	font-weight: normal;
	margin-bottom: 10px;
}
.footer .footer-content .footer-title hr{
	width: 80%;
	margin: auto;
}
.footer .footer-content .formulario-content{
	width: 60%;
	background: #88B5AF;
	border-radius: 24px;
	border: 2px solid var(--blue);
	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(--white);
	font-size: 22px;
	margin: 30px 0px 10px 0px;
}
.footer .footer-content .formulario-content #formulario input{
	width: 90%;
	height: 40px;
	margin: auto;
	border: 2px solid var(--blue);
	border-radius: 24px;
	outline: none;	
	text-align: center;
	font-size: 17px;
	color: var(--black);
}
.footer .footer-content .formulario-content #formulario textarea{
	width: 90%;
	height: 200px;
	margin: auto;
	border: 2px solid var(--blue);
	border-radius: 24px;
	outline: none;	
	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;
}
.footer .footer-content .formulario-content #formulario .send button{
	width: 150px;
	height: 40px;
	background: var(--blue);
	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(--red);
}
.footer .footer-content .footer-text{
	position: relative;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: rgba(0,0,0,0.8);
	border-top: 5px solid #FFF;

	display: flex;
	justify-content: center;
	align-items: center;
}	
.footer .footer-text{
	position: relative;
	background: #FFF;
	width: 100%;
	height: 100px;
	padding-top: 10px;
	color: #000000;
	font-size: 20px;
}


.footer .google-maps{
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 50px 0px;
}
.footer .google-maps .google-maps1 iframe{
	width: 500px;
	height: 300px;
	object-fit: cover;
	margin: 10px 10px;
	border-radius: 10px;
	cursor: pointer;
	justify-content: center;
}
.footer .google-maps .google-maps1 h1{
	width: 500px;
	font-size: 40px;
	font-weight: 400;
	color: var(--white);
	text-align: center;
	margin-bottom: 20px;
}
.footer .google-maps .google-maps1 p{
	width: 500px;
	text-align: center;
	font-size: 20px;
	color: var(--white);
	line-height: 35px;
}
.footer .google-maps .google-maps2 iframe{
	width: 500px;
	height: 300px;
	object-fit: cover;
	margin: 10px 10px;
	border-radius: 10px;
	cursor: pointer;
	justify-content: center;
}
.footer .google-maps .google-maps2 h1{
	width: 500px;
	font-size: 40px;
	font-weight: 400;
	color: var(--white);
	text-align: center;
	margin-bottom: 20px;
}
.footer .google-maps .google-maps2 p{
	width: 500px;
	text-align: center;
	font-size: 20px;
	color: var(--white);
	line-height: 35px;
}

/** Footer **/


/** Media Query **/

@media only screen and (max-width:900px){
	.btn-menu > .fa-bars{
	display: block;
	position: absolute;
	top:20px;
	right: 30px;
	font-size: 28px;
	cursor: pointer;
	}
    .btn-menu > .fa-bars{color: white;}
    .btn-menu > .fa-bars:hover{color:var(--blue);}
	.btn-menu > .fa-times{color:var(--blue);}
	.menu .list-container{
		position: absolute;
		top: 60px;
		left: -100%;
		width: 100%;
		height: calc(100vh 60px);
		background: #88B5AF;
	}
	.menu .list-container .lists{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		border-top: 5px solid var(--blue);
	}
	.menu .list-container .lists li{
		width: 90%;
		margin: 10px 0px;
		border-bottom: 1px solid var(--blue);
		text-align: center;
	}
	.menu .list-container .lists li a{
		font-size: 20px;

	}
	.menu .list-container .lists li a.activo{
		background: none;
		color: var(--blue);
	}
	.menu .list-container .lists li a.hover{
		background: none;
		color: var(--blue);
	}
}

@media only screen and (max-width: 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;
	}
	.acerca-de .info-container .about-gallery img {
		width: 100%;
	}

	/** Nuestros productos **/
	.our-projects .container-project .project-img img
	{
		width: 80%;
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 590px) {

	/** IMG Header **/
	.img-header .welcome h1{
		font-size: 30px;
	}
	.img-header .welcome hr{
		width: 100px;
	}
	.img-header .welcome p{
		font-size: 17px;
	}
	.img-header .welcome > button {
		width: 100px;
		font-size: 17px;
	}
}

@media only screen and (max-width: 890px) {
	.productos .box-productos .card-producto .card-img img {
		width: 200px;
		height: 200px;
	}
	.productos .box-productos .card-producto {
		width: 100%;
	}
	.productos .box-productos .card-producto .producto-text h4{
		font-size: 25px;
	}
	.productos .box-productos .card-producto .producto-text p{
		font-size: 17px;
		line-height: 35px;
	}
}

@media only screen and (max-width: 900px) {

	.footer .fomulario-content{
		width: 95%;
		padding: 20px;
	}
	.footer .fomulario-content #formulario input{
		width: 100%;
	}}
	.footer .fomulario-content #formulario textarea{
		width: 100%x;
	}
}







