:root{
	--g:#008040;
}
body{
	font-family: Galvji,Montserrat, Helvetica, sans-serif;
	text-align: center;
	margin:0 0 0 0;
	cursor:default;
	font-size: 1vw;
}
input[type="button"],button{
	border:none;
	background:none;
	font-size:1em;
	cursor:pointer;
}
img{
	border:none;
}
a{
	color: inherit;
	text-decoration: none;
}
*[onclick],*[href]{
	cursor: pointer;
}
textarea{
	resize:none;
}
.clr{
	clear:both;
}
.columnas2{
	-webkit-column-count:2;
	-moz-column-count:2;
	column-count:2;
}
.columnas3{
	-webkit-column-count:3;
	-moz-column-count:3;
	column-count:3;
}
.columnas4{
	-webkit-column-count:4;
	-moz-column-count:4;
	column-count:4;
}
.columnas5{
	-webkit-column-count:5;
	-moz-column-count:5;
	column-count:5;
}
.grid2{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1em;
}
.grid3{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1em;
}
.grid4{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1em;
}
.grid5{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 1em;
}
.grid6{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}

.grid8{
	display: grid;
	grid-template-columns: repeat(8, 1fr);
}
.flex{
	display: flex;
	flex-flow: row wrap;
	align-content: space-between;
	justify-content: space-between;
}
.flex>*{
	flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    text-align: center;
}

.site_error>div{
	margin: 0 auto;
	padding: 0.5em;
	color: #C44;
	border:#C44 solid 1px;
	background: #EDD;
	text-align: center;
	width: 50%;
	min-width: 280px;
	border-radius: 0.15em;
	font-weight:600;
}
.site_error{
	position: fixed;
	top:-20em;
	opacity: 0;
	z-index: 10;
	width: 100%;
	
	-webkit-animation: siteError 5s 1;
	-moz-animation: siteError 5s 1;
	animation: siteError 5s 1;
}

.site_success>div{
	margin: 0 auto;
	padding: 0.5em;
	color: #494;
	border:#494 solid 1px;
	background: #DED;
	text-align: center;
	width: 50%;
	min-width: 280px;
	border-radius: 0.15em;
	font-weight:600;
}
.site_success{
	position: fixed;
	top:-20em;
	opacity: 0;
	z-index: 10;
	width: 100%;
	
	-webkit-animation: siteError 5s 1;
	-moz-animation: siteError 5s 1;
	animation: siteError 5s 1;
}

@keyframes siteError{
	0%{opacity:1;top:5em;}
	90%{opacity:1}
	99%{opacity:0;top:5em;}
	100%{opacity:0;top:-20em;}
}

.hide_me{
	height: 0;
	width: 0;
	overflow: hidden;
	opacity: 0;
	font-size: 1px;
}

a,input,button,*[onclick],*[href],a *,*[onclick] *{
	transition: all .25s ease-in-out;
	cursor: pointer;
}
header,footer,h1,h2,h3{
	font-family: 'Degular Mono','Azeret Mono',monospace;
}
h1,h2,h3{ font-style: italic; font-weight: 700; }
h2{ text-transform: uppercase; font-size: 4em; }
img{
	display: block;
	max-width: 100%;
}

/* GENERALES */

header{
	position: fixed;
	top:0;
	left:0;
	right: 0;
	z-index: 10;
	background: rgba(200,200,200,0.25);
	backdrop-filter: blur(3px);
	color: white;
	border-bottom:white solid 1px;
	display: flex;
	justify-content: space-between;
	align-content: space-between;
	align-items: center;
	text-shadow:rgba(0,0,0,0.25) 0 1px 3px;
	box-shadow: rgba(0,0,0,0.25) 0 0 0.5em;
}
#logo img{
	display: block;
	height: 6em;
	padding: 0.5em 1em;
	background: white;
}
header *:is(menu,ul,li){
	margin:0;padding:0;display:block;
}
menu{
	min-width:50vw;
}
menu ul{
	display: flex;
	justify-content: space-between;
	align-content: space-between;
	align-items: center;
}
menu li{
	text-transform: uppercase;
	font-weight: 600;
}
menu li:hover{
	color: var(--g);
}
#language{
	padding-right: 2em;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 0.8em;
}
#language a:hover{
	color:var(--g);
}


/* HOME */
#home{
	padding: max(20vh,8em) 0 2.5% 0;
	color: white;
	background: #003015 url(imagenes/home.jpg) center center fixed;
	background-size: cover;
	overflow: hidden;
}
#home .grid2{
	padding: 0 2.5%;
	position: relative;
	z-index: 1;
}
#home .grid2>div:first-child{ text-align: left; }
#home .grid2>div:last-child{ text-align: right; font-style: italic; }
#home .grid2 p{
	margin: 0;
	line-height: 1.5em;
}
#home h1{
	display: inline-block;
	margin: 5em auto;
	font-size: 2em;
	padding: 1em;
	border:white solid 1px;
	position: relative;
	z-index: 1;
}
#home h2{
	font-weight: normal; font-style: normal;
	padding: 0 2.5%;
	border-bottom: white solid 1px;
	line-height: 2em;
	text-align: left;
	font-size: 2em;
	position: relative;
	z-index: 1;
}
#home i.fa{
	display: inline-block;
	width: 1em;
	height: 1em;
	line-height: 1em;
	text-align: center;
	border-radius: 2em;
	border:white solid 2px;
	padding:0.5em;
	position: relative;
	z-index: 1;
}
#home i.fa:hover{
	line-height: 1.25em;
}

#home article{
	height: 0;
	overflow: visible;
	position: absolute;
	top:0;
	left: 0;
}
#home video{
	width: 100vw;
	filter:brightness(0.5);
}

#about{
	padding: 1em;
	text-align: left;
}
#about_at{
	display: flex;
	justify-content: start;
	align-content: start;
	align-items: start;
	gap:2em;
	padding:10% 5% 2.5% 5%;
}
#about_at h3{
	margin:0;
	font-size: 4em;
	translate:2em -1em;
	line-height: 1em;
	min-width: 35%;
}
#about_at p{
	font-size: 1.25em;
	text-align: justify;
	line-height: 1.5em;
}
#about_info{
	display: flex;
	gap:1em;
	text-align: justify;
}
#about_info div{
	background: var(--g);
	color: white;
	padding: 2em 7.5%;
}
#about_info img{
	max-width: 50%;
}
#about h2{
	margin: 0;
}
#about blockquote{
	font-style: italic;
	margin-left: 0;
	line-height: 1.25em;
	padding-left: 1em;
	border-left: white solid 1px;
	margin-bottom: 3em;
	font-weight: bold;
}
#about_info p{
	line-height: 1.5em;
}
.section_close{
	margin: 2em 0 1em 0;
	background: linear-gradient(0deg,black,black) center center no-repeat;
	background-size: 100% 1px;
	text-align: left;
}
.section_close span{
	display: inline-block;
	padding: 0 1em 0 0;
	font-weight: 500;
	background: white;
}

#products{
	padding: 1em;
}
#products h2{
	margin: 0;
}
#products ul{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	text-wrap: balance;
	gap:1em;
	margin: 1em 5% 3em 5%; 
	padding: 0;
}
#products li{
	display: block;
	padding: 0.5em 1em;
	text-transform: uppercase; 
	border:var(--g) solid 1px;
	font-size:1.5em;
}
#products_harvesting{
	display: flex;
	text-align: left;
	justify-content: start;
	align-content: start;
	align-items: start;
	padding:10% 5% 2.5% 2.5%;
}
#products_harvesting h2{
	margin:0;
	translate:2em -1em;
	line-height: 1.25em;
	min-width: 35%;
}
#products_harvesting p{
	font-size: 1.25em;
	text-align: justify;
	line-height: 1.5em;
}

.reel{
	width: 100%;
	overflow: hidden;
}
.reel>div{
	width: 320%;
	position: relative;
	left: 0;
	animation: reelAnim 32s infinite;
	animation-timing-function: linear;
	gap:1em;
}
.reel div.grid8{
	gap:1em;
}
@keyframes reelAnim{
	from{ left:0; }
	to{ left:-160%; }
}

#products_clients{
	padding: 1em;
	background: var(--g);
	color: white;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	gap:2em;
}
#products_clients h4{
	font-size: 1.25em;
	font-weight: 700;
	text-align: right;
}
#products_clients p{
	text-align: left;
	padding-left: 1em;
	border-left:white solid 1px;
	font-size: 1.2em;
	line-height: 1.5em;
}
#process{
	padding: 1em;
}
#process h2{
	margin: 0;
}
#process p{
	font-size: 1.25em;
	line-height: 1.5em;
	padding: 0 4em;
}
#process .grid6{
	margin: 5em auto 1em auto;
}
#process h4{
	background: var(--g);
	color: white;
	padding: 1em 0;
	margin-bottom: 0;
	text-transform: uppercase;
}
#process img{
	max-width: 70%;
	margin: 0 auto;
}

#services{
	padding: 0 5% 10% 5%;
	background: black url(imagenes/services.jpg) center center;
	background-size: cover;
	color: white;
}
#services h2{
	margin-top: 0;
	padding-top: 3em;
}
#services span{
	display: inline-block;
	padding: 0.5em 1.5em;
	border: white solid 1px;
	font-size: 1.25em;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
}

#services article{
	height: 0;
	overflow: visible;
	position: absolute;
	left: 0;
}
#services article>div{
	overflow: hidden;
	height: 35em;
	width: 100%;
}
#services video{
	width: 100vw;
	translate: 0 -10em;
	filter:brightness(0.5);
}

#growth{
	padding: 1em;
	text-align: left;
}
#growth_data{
	display: flex;
	justify-content: start;
	align-content: start;
	align-items: start;
	gap:2em;
	padding:5% 5% 2.5% 0%;
}
#growth_data h2{
	margin:0;
	font-size: 4em;
	translate:2em 0em;
	line-height: 1em;
	min-width: 35%;
}
#growth_data h4{
	font-size: 1.2em;
	font-weight: 900;
	translate: 2em 0;
	font-style: italic;
}
#growth_data div{
	font-size: 1.25em;
	text-align: justify;
	line-height: 1.5em;
}
#growth_data p{
	margin: 0.5em auto;
}
#growth .reel{
	margin-top: 2.5em;
}

#future{
	padding: 5%;
	text-align: left;
	color: var(--g);
}
#future h2{
	margin: 0;
}
#future p{
	margin: 0;
	font-size: 1.25em;
	line-height: 1.5em;
}
#contact{
	padding: 2.5% 5% 2.5% 0;
	background: black url(imagenes/contact.jpg) center center;
	background-size: cover;
	color: white;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
#contact h2{
	font-size: 3em;
	margin: 0 0 1rem 0;
}
form h2{
	text-align: center;
}
#contact form{
	min-width: 65%;
	box-sizing: border-box;
	padding: 1em 10%;
	border-top:white solid 1px;
	border-bottom: white solid 1px;
	text-align: left;
}
input,textarea{
	box-sizing: border-box;
	padding: 0.5em;
	font: inherit;
	color: var(--g);
	display: block;
	width: 100%;
	display: block;
	margin-bottom: 1em;
	background: white;
	border:none;
}
form button{
	background: var(--g);
	color: white;
	padding: 0.5em 2em;
	border:none;
	font: inherit;
	font-size: 1.25em;
	font-weight: 700;
}
form button:hover{
	background: #EEE;
	color: var(--g);
}
#contact>div{
	padding: 5%;
	text-align: left;
	background: var(--g);
}
#contact ul{
	margin: 2em auto;
	padding: 0;
	font-size: 1.25em;
	line-height: 3em;
}
#contact li{
	display: block;
}
#contact li i.fa{
	width: 1em;
	height: 1em;
	line-height: 1em;
	background: black;
	color: var(--g);
	padding: 0.5em;
	margin-right: 0.5em;
	text-align: center;
	border-radius: 2em;
}

footer{
	padding: 1em;
	font-size: 0.8em;
}
footer a{
	color: var(--g);
}
#aviso{
	padding: 5% 20%;
	border-top:black solid 7em;
	text-align: left;
}

section h1,section h2,section h3,section h4,section h5,section p,section img,section a,section li{
	position: relative;
	top: 2em;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}


/* RESPONSIVO */

.mobile_only{
	display:none !important;
}

@media all and (max-width:960px){
	body{
		font-size:12px;
	}
	.mobile_only{
		display:block !important;
	}
	.desktop_only{
		display:none !important;
	}
	.columnas2,.columnas3{
		-webkit-column-count:1;
		-moz-column-count:1;
		column-count:1;
	}
	.columnas4{
		-webkit-column-count:2;
		-moz-column-count:2;
		column-count:2;
	}
	.columnas5{
		-webkit-column-count:3;
		-moz-column-count:3;
		column-count:3;
	}
	.grid2,.grid3,.grid4,.grid5,.grid6,.flex{
		display: block;
	}
	.grid2mobile{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 1em;
	}
	header{
		height:60px;
		background: white;
		border-bottom: none;
	}

	#menu_opener{
		float:left;
		margin: 5px;
		width:50px;
		height:50px;
		background: #DDD;
		border-radius: 3px;
	}
	#menu_opener>div{
		height: 2px;
		margin: 4px auto 0 auto;
		background: white;
		width: 36px;
	}
	#menu_opener>div:first-child{
		margin-top: 14px;
	}

	header>menu{
		position: fixed;
		top:60px;
		left: 0;
		right: 0;
		background: rgba(0,0,0,0.9);
		backdrop-filter: blur(3px);
		display: none;
	}
	menu ul{
		display: block;
		padding: 2em;
	}
	menu li{
		font-size: 1.5em;
		line-height: 3em;
	}
	#language{
		text-shadow: none;
		color: var(--g);
		padding-right: 1em;
	}
	#logo img{
		height: 54px;
		padding: 3px 0;
	}

	#home{
		margin-top: 60px;
		background-attachment: scroll;
		padding-bottom: 2em;
	}
	#home>.grid2>div{
		text-align: center !important;
		margin-bottom: 2em;
	}
	#home h1{
		margin: 1em;
		font-size: 6vw;
	}
	#home h2{
		text-align: center;
		font-size: 6vw;
	}
	#home article,#home video{
		display: none;
	}

	#about_at,#about_info,#products_harvest,#growth_data,#products_harvesting,#contact{
		display: block;
	}
	*:is(#about_at,#about_info,#products_harvest,#growth_data,#products_harvesting) *:is(h2,h3){
		translate: 0 0;
		text-align: left;
	}
	#about_info img{
		display: inline-block;
		max-width: 100%;
		margin:1em auto;
	}
	#products li{
		font-size: 1em;
	}
	.grid5 img{
		margin-bottom: 1em;
	}
	#services span{
		display: block;
		margin-bottom: 1em;
	}
	#growth_data h4{
		translate: 0 0;
	}
	#contact{
		padding: 1em;
	}
	#contact form{
		margin-bottom: 2em;
	}
	footer{
		font-size: 1.25em;
		padding: 2em 1em;
	}
	footer a{
		display: block;
		margin-top: 1em;
	}
	#aviso{
		padding: 5%;
	}

	#services article>div{
		height: 100vw;
	}
	#services article video{
		width: auto;
		height: 100vw;
		translate: 0 0;
	}

	.reel>div{
		width: 1600%;
	}
	@keyframes reelAnim{
		from{ left:0; }
		to{ left:-800%; }
	}
}