*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6{
	color:rgba(229, 142, 38,1.0);
	font-weight: 300;
}

.contenedor{
	width: 90%;
	max-width: 1000px;
	margin:auto;
	overflow: hidden;
}

.contenedor1 {
	width: 90%;
	max-width: 1000px;
	margin:auto;
	overflow: hidden;
	padding: 60px 0;
}

h1{
	font-size: 50px;
}


/* Header */

header::before{
	content: "";
	display: block;
	margin-bottom: 80px;
}

nav{
	width: 100%;
	height: 80px;
	background: #fff;
	border-bottom: 1px solid transparent;
	box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, .2);
	position: fixed;
	top:0;
	z-index: 10;
	transition: ease-in-out 0.5s;
}

.nav{
	display: flex;
	justify-content: space-between;
	height: 80px;
	width: 100%;
	align-items: center;
	padding: 0 40px;
}

.nav .logo{
	height: 40px;
}

.nav .logo img {
	height: 100%;
	vertical-align: center;
}

.enlaces-header {
	font-weight: 300;
	transition: ease-in-out 0.5s;
}
.nav .enlaces-header a{
	color: #5D6678;
	text-decoration: none;
	margin-left: 20px;
}

.nav .enlaces-header a:hover{
	font-weight: 400;
}

.hamburguer{
	width: 80px;
	height: 80px;
	display: none;
	text-align: center;
    z-index: 100;
    cursor:pointer;
    transition:color 0.5s ease-in;
}

.hamburguer > i{
	font-size: 25px;
	line-height: 80px;
}

.contenido-header{
	width: 100%;
	height: 600px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contenido-header > img{
	width: 30%;
	animation: ease-in animat 2s;
	padding-bottom: 31vh;
}

@keyframes animat{
	0%{transform:scale(0);
		}100%{
			transform: scale(1);
		}
}


/* VIDEO ENCABEZADO */
.portada {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.contenedor-portada{
position: absolute;
bottom: 450px;

}

.portada .titulo{
  text-align: center;
  font-size: 85px;
  font-weight: 600;
  z-index: 1;
  text-transform: uppercase;
}

.portada .subtitulo{;
	font-weight: 300;
	z-index: 1;
	}


.video-container {
  max-width: 1400px;
  display: flex;
}

.sesgoabajo {
	z-index: 2;
	position: absolute;
	bottom: 0;
	left: 0;
	border-width: 0 0 35vh 100vw;
	border-style: solid;
	border-color: transparent transparent #fff transparent;
}


.textos-header{
	margin: 0 0 0 30px;
}

.textos-header>a:hover{
	background: rgba(229, 142, 38,1.0);
	transition: background .5s;
}

.contenido-header{
	font-weight: 100;
	margin-top: 14px;
	color:#5d6678;
}

.contenido-header a{
	margin: 28px 0 0 0;
	width: 130px;
	display: inline-block;
	background: rgba(246, 185, 59,1.0);
	text-align: center;
	color: #fff;
	padding: 12px 0;
	text-decoration: none;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 14px;
	border-radius: 5px;
	box-shadow: 0 8px 32px rgba(31, 222, 130, .46)

}

.titulo{
	font-size: 50px;
}










/* About Us */
.about-us{
	background: #fff;
}

.contenedor-articulo {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
	justify-content: space-around;

}

.articulo {
	width: 29%;
	background: #f2f2f2;
	margin-bottom: 30px;
	border-radius: 10px;
	padding: 45px 30px 60px 30px;
	transition: 0.5s;
}

.articulo:hover{
	box-shadow: 0 4px 10px rgba(178, 190, 195,1.0);
}

.articulo>i{
	font-size: 30px;
	color:#fff;
	background: rgba(246, 185, 59,1.0);
	display: inline-block;
	width: 70px;
	height: 70px;
	text-align: center;
	padding-top: 20px;
	border-radius: 50px;
	box-shadow: 0 8px 32px rgba(99, 110, 114,1.0)
}
.articulo>i:hover{
	background: rgba(229, 142, 38,1.0);
	transition: background .5s;
}

.articulo>h3{
	font-size: 34px;
	margin-top: 30px;	
}

.articulo>p{
	color:#5d6678;
}

.articulo>a{
	color: #5d6678;
	font-weight: 400;
	text-decoration: none;
}

.articulo>a:hover{
	color: rgba(229, 142, 38,1.0);
	transition: color .5s;
}








/* Questions */

.questions-parent{
	margin-bottom: 30px;
	background: #D3CCE3;  /* fallback for old browsers */
	background: -webkit-linear-gradient(left, #E9E4F0, #D3CCE3);
	background: -o-linear-gradient(left, #E9E4F0, #D3CCE3);
	background: linear-gradient(to right, #E9E4F0, #D3CCE3);  /* Chrome 10-25, Safari 5.1-6 */ /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.questions{
	height: 600px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}


.textos-questions{
	margin: 0 0 0 30px;
}

.textos-questions p{
	font-weight: 100;
	margin-top: 14px;
	color:#5d6678;
}


.textos-questions>a:hover{
	background: rgba(229, 142, 38,1.0);
	transition: background .5s;
}

.box-skills2 h4{
	font-size: 20px;
	line-height: 24px;
	padding: 10 0 10 15;
	width: 350px;
	margin-bottom: 10px;
	color: rgba(99, 110, 114,1.0);
}

.box-skills2 i{
	color:rgba(229, 142, 38,1.0);
	font-size: 20px;
}
.box-skills2 {
	margin: 30px 30px 0 0;
}



/* Facebook */

.social{	
	padding-top: 30px;
	align-items: center;
}

.fb-social{
	height: 600px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	

}


.textos-fb-social{
	margin: 50px 0 0 30px;
}

.textos-fb-social p{
	font-weight: 100;
	margin-top: 14px;
	color:#5d6678;
}


.textos-fb-social>a:hover{
	background: rgba(229, 142, 38,1.0);
	transition: background .5s;
}


.fb-page {
		width: 48%;
	}







/* Resultados */

.results{
	background: rgba(246, 185, 59,1.0);
	padding-top: 30px;
	align-items: center;
}

.content-results{
	display: flex;
	justify-content: space-evenly;
}

.numbers{
	width: 60%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;

}

.numbers .number{
	width: 45%;
	background: rgba(255, 255, 255, .2);
	color: #fff;
	border-radius: 10px;
	padding: 40px 35px;
	margin-bottom: 20px;
		overflow: hidden;
}

.numbers .number h4{
	color:#fff;
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 20px;
}

.numbers .number p{
	color:#f2f5fc;
	font-weight: 300;

}

.numbers img{
	width: 98%;
}


.results-text {
	width: 37%;
}

.results-text h4{
	color:#fff;
	font-size: 40px;
}

.results-text p{
	color: #fff;
	font-weight: 300;
	margin: 20px 0;
}







/* Slider */

.logos {
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	filter: grayscale(1);
  -webkit-filter: grayscale(1);
  transition: 0.3s all;
  -webkit-transition: 0.1s all;
      cursor: pointer;
}

.logos:hover{
filter: grayscale(0);
  -webkit-filter: grayscale(0);
}








/* Service */

.service {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;	
	align-items: center;
}

.service>img {
	width: 48%;
}

.textos-service p{
	font-weight: 100;
	margin: 14px 0 14px 0;
	color:#5d6678;
}

.box-skills{
	width: 48%;
	margin: 30px 30px 0 0;
}

.box-skills h4{
	font-size: 24px;
	background: #fff;
	width: 350px;
	border-radius: 6px;
	padding: 10 0 10 15;
	margin-bottom: 10px;
	color: rgba(99, 110, 114,1.0);
}

.box-skills i{
	color:rgba(229, 142, 38,1.0);
	font-size: 20px;
}









/* Footer */

footer{
	background: #f2f2f2;
	padding: 60px 0;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	border-top: solid 1px #95a5a6;


}

.partfooter{
	width: 20%;
	text-align: center;
}

.partfooter h4{
	color:#1d273b;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 10px;
}

.partfooter a{
	display: block;
	text-decoration: none;
	color:rgba(99, 110, 114,1.0);
	font-weight: 300;
	transition: color .3s ease-in-out;
	margin-bottom: 10px;
}

.partfooter a:hover{
	color:rgba(229, 142, 38,1.0);
}

.partfooter img{
	width: 70%;
}

.partfooter p{
	display: block;
	text-decoration: none;
	color:#5D6678;
	font-weight: 300;
	margin-bottom: 10px;
}



.social-media a{
	font-size: 20px;
	display: inline-block;
}

.social-media i{
	font-size: 20px;
	display: inline-block;
	color:#adb6c7;
	border: 1px solid #adb6c7;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	line-height: 36px;
	cursor: pointer;
	margin-top: 20px;
	text-align: center;
	transition: all ease-in-out .3s;
	margin-right: 5px;
}


.social-media i:hover{
	color:#fff;
	background-color:rgba(229, 142, 38,1.0);
	border-color: rgba(229, 142, 38,1.0); 
}

.agrofy{
	background-image: url(../img/logos/agrofy.svg);
}






/* CONTACTO */


.formulario-contenedor{
	background: rgba(243, 156, 18,1.0);
	height: auto;
	padding: 60px 0;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;


}

.formulario {

}

.titulo-formulario, .subtitulo-formulario{
	color: #fff;
	font-weight: 400;
	text-align: center;
	font-size: 56px;
}

.subtitulo-formulario{
	font-size: 16px;
	margin-bottom: 64px;
}

form{
	display: flex;
	width: 100%;
	justify-content: space-between;
	flex-wrap: wrap;
	margin:auto;

}

input[type="text"], input[type="email"] {
	display: inline-block;
	width: 48%;
	padding: 13px;
	border:none;
	color:#fff;
	font-family: "open sans";
	background: rgba(37,37,33,.7);
	margin-bottom: 16px;
	border-top: 5px solid rgba(37,37,33,.1);
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus{
		border-top: 5px solid rgba(255,255,255,.7);
}


textarea{
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	max-height: 200px;
	min-height: 200px;
	background: rgba(37,37,33,.7);
	padding: 13px;
	border:none;
	color:#fff;
	font-family: "open sans";
	margin-bottom: 16px; 
	border-top: 5px solid rgba(37,37,33,.1);
}

input[type="submit"]{
	display: inline-block;
	padding: 13px;
	background: rgba(37,37,33,.7);
	border:none;
	color:#fff;
	width: 96px;
	cursor: pointer;
}

input[type="submit"]:hover{
	background: rgba(39, 174, 96,1.0);
	font-weight: 400;
	transition: background 0.5s ease-in


}


/* MAPS */

.contenedor-mapa{
	background-image: url(../img/map.jpg);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	padding-top: 30px;
}

.gmap {
    border: 10px solid #f6f5f0;
    border-radius: 50%;
    height: 300px;
    width: 300px;
    box-shadow: 0px 0px 3px 3px #e7e4dc;
    overflow: hidden;
}

.gmap iframe {
	border-radius: 50%;
  	height: 300px;
  	width: 300px;
}


.map-text h2{
	font-size: 24px;
	margin-bottom: 10px;
	font-weight: 400;


}

.map-text h4{
	font-size: 20px;
	border-radius: 6px;
	padding: 10 0 10 15;
	margin-bottom: 10px;
	color: rgba(99, 110, 114,1.0);
}

.map-text i{
	color:rgba(229, 142, 38,1.0);
	font-size: 20px;
}

.map-text{
	width: 100%;
	margin: 0 0 40px 0;
}


.map-text p{
	font-weight: 100;
	margin-top: 14px;
	color:#5d6678;
}













/* Breakpoints responsive */

@media screen and (max-width: 800px) {

	.video-container {	  
	  max-width: 850px;
	  display: flex;
	}


	.titulo{
		font-size: 45px;
	}
	
	.contenido-header{
		flex-direction: column;
		justify-content: space-evenly;
		height: 720px;
	}

	.contenido-header img{
		width: 400px;
	}

	.textos-header{
		margin:0;		
	}

	/* About Us */

	.articulo{
		width: 45%;
	}

	/* Questions */

	.questions {
		height: 720px;
		justify-content: space-evenly;
		flex-direction: column;		
	}


		/* Facebook Post */

	.fb-social{
		height: 720px;
		justify-content: space-evenly;
		flex-direction: column;
	}	
	.fb-page {
		width: 48%;
	}

	/* Results */

	.content-results{
		flex-direction: column-reverse;

	}

	.results-text>a{
		margin-bottom: 60px;

	}

	.numbers{
		width: 100%;		
	}

	.results-text {
		width: 100%;
	}

/* Service */

	.service{
		
	}

	.box-skills{
		width: 40%
		margin: 0 0 40px 0;
	}

	.service>img{
		width: 40%;

	}

	/* Redes */
	.redes{
	justify-content: space-evenly;
}

	.part-redes{
		width: 98%;
	}

	/* footer */

	footer{
		justify-content: space-evenly;
	}
	.partfooter {
		width: 40%;
		margin-bottom: 40px;
	}
}

















@media screen and (max-width: 600px){

	.portada{
		height: 80vh;
	}

	.contenedor-portada{
	position: absolute;
	bottom: 350px;

}

	.portada .titulo{
   font-size: 45px;
}


	.titulo{
		font-size: 35px;
	}

	h1{
		font-size: 40px;
	}

	.contenido-header{
		height: 650px;
	}

	.nav {
		padding: 0 10px;
	}

	.contenido-header>img {
		width: 95%;
	}

	.enlaces-header{
		position: fixed;
		background: #e65c00;  /* fallback for old browsers */
		background: -webkit-linear-gradient(to right, #F9D423, #e65c00);  /* Chrome 10-25, Safari 5.1-6 */
		background: linear-gradient(to right, #F9D423, #e65c00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
		top:0;
		right: 0;
		width: 100%;
		height: 100vh;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: space-evenly;
		clip-path: circle(0.4% at 100% 0);

	}

	.nav .menudos{
        -webkit-clip-path: circle(150% at 100% 0);
        clip-path: circle(150% at 100% 0);
	}

	.nav .enlaces-header a{
		color:#fff;
	}

	.hamburguer{
		display: block;
	}

	/* About us */

	.articulo{
		width: 95%;
	}

	/* Questions */

	.questions>img{
		width: 95%;
	}

	/* Result */

	.numbers .number{
		width: 95%;
	}

	.results-text h4{
		font-size: 35px;
	}


	/* Service */

	.service{
		flex-direction: column-reverse;				
	}

	.service h1{
		text-align: center;
	}

	.box-skills h4{
		width: 95%;
		padding: 0 3px;
		font-size: 20px;
	}

	.service>img{
		width: 95%;
	}

	/* Footer */

	.partfooter{
		width: 95%;
		margin-bottom: 45px;
	}


	/* Facebook Post */


	.fb-page {
		width: 90vw;
	}

	.map-text h2{
		font-size: 15px;
	}
	.map-text h4{
		font-size: 15px;
	}

	.map-text i{
		font-size: 15px;
	}

}

/* WhatsApp */

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
}


/* LINKTREE */

.tree-body {
  font-family: sans-serif;
  margin: 0;
  padding: 15px;
}
.tree-wrap {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.tree-profile {
  text-align: center;
  color: #000;
}
.tree-photo {
  border-radius: 50%;
}
.tree-profile_name {
  font-weight: bold;
  display: block;
}
.tree-at {
  font-size: 13px;
}
.tree-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tree-links ul li {
  margin: 14px 0;
}
.tree-link {
  padding: 14px;
  display: block;
  background-color: #ff801e;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: ease all 0.3s;
  color: #FFF;
}
.tree-link:hover {
  opacity: 0.9;
}
.tree-card {
  padding: 10px;
  background-color: #FFF;
  border-radius: 4px;
}
.tree-card h3 {
  margin: 0;
  color: #202024;
  text-align: center;
}
.tree-card p {
  margin: 5px 0;
  font-size: 13px;
  color: #202024;
}

