/* TIPS
#ID
.CLASS
!important

- HEAD
- BODY
- Header
- Main
- Footer
- Nav
- Section
- Article
- Aside
- Div

0.5 rem = 8px
0.6 rem = 10px
0.8 rem = 12px
0.9 rem = 14px
1.0 rem = 16px
1.1 rem = 17px
1.2 rem = 19px
1.3 rem = 20px
1.4 rem = 22px
1.5 rem = 24px
2.0 rem = 32px

https://www.toptal.com/designers/htmlarrows/symbols/
https://www.compart.com/en/unicode/
Symbol / UNI / HEX / HTML / ENTITY
© / U+000A9 / &#xa9 / &#169 / &copy
® / U+000AE / &#xae / &#174 / &reg
™ / U+02122 / &#x2122 / &#8482 / &trade 
@ / U+00040 / &#x40 / &#64 / &commat
★ / U+02605 / &#x2605 / &#9733 / &starf
☆ / U+02606 / &#x2606 / &#9734 / &star
☰ / U+02630 / &#x2630 / &#9776
☯ / U+0262F / &#x262F / &#9775
☢ / U+02622 / &#x2622 / &#9762
⯅ / &#11205
⯆ / &#11206
⯆ / &#11207
⯆ / &#11208
☌ / U+0260C / &#x260C / &#9740
⚲ / U+026B2 / &#x26B2 / &#9906
⏷▼⯆
*/


/*#region ----- ----- COOKIES START ----- ----- */

#consentBox { 
	background: #111111;
	color: #eeeeee;
	padding: 30px;
	margin: auto;
	font-size: auto;
	text-align: center;
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 15%;
	z-index: 10;
	opacity: 95%; 
}

#consentBox.hide { 
	opacity: 0%; 
	pointer-events: none; 
	transform: scale(0.8); 
	transition: all 0.1s ease; 
}

/* ::selection { 
	color: #ffffff; 
	background: #ff0000; 
} */

/* #consentContent p { 
	color: #222222;
	margin: 10px 0 20px 0; 
} */

.consentButton,
.rejectButton {
	text-decoration: none;
	background: #000000;
	color: #f5f5f5;
	border: 2px solid #ff0000;
	border-radius: 15px;
	cursor: pointer;
	padding: 5px 20px;
	margin: 0px 0px 0px 50px;
	font-size: auto;
	font-weight: 700;
}

#consentBox button:hover {
	background: #f5f5f5;
	color: #000000;
}

#consentBox a { 
	color: #ff0000;
	margin: 10px 0 20px 0; 
}

/*#endregion*/
/* ----- ----- COOKIES END ----- ----- */

/*#region  ----- ----- BODY START ----- ----- */
/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
/* Googlefont Roboto CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200;300;400;500;600;700&display=swap');

/* VARIABLES */
:root{	
	--color0: #000000;
	--color1: #111111;
	--color2: #222222;
	--color3: #333333;
	--color6: #666666;
	--color9: #999999;
	--colorF: #FFFFFF;
	--color8: #5ABA46;	/* GLEA Green RGB 90.186.71 */
	--color7: #3EB5E8;	/* GLEA Blue RGB 62.181.232 */
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Roboto', Arial, Helvetica, sans-serif;
}

html {
    min-height: 100%;
}

body {
	background-color: var(--color2);
	background-image: url("images/background.webp");
	color: var(--colorF);
	font-size: 1rem;
	display: flex;
	flex-direction: column;
	align-content: center;
	min-height: 100vh;
	width: 100%;
}

h1 {
	color: var(--color8);
	text-align: center;
	font-size: 2.0rem;
}

h2 {
	color: var(--colorF);
	text-align: center;
	font-size: 1.3rem;
}

h3 {
	color: var(--colorF);
	text-align: center;
	font-size: 1.2rem;
}

h4 {
	color: var(--color0);
	font-size: 1.1rem;
}

p {
	color: var(--color0);
	font-size: 1rem;
}

a {
	color: var(--color0);
	font-size: 1rem;
	text-decoration: none;
}

/*#endregion*/
/* ----- ----- ----- BODY END ----- ----- */


/*#region ----- ----- HEADER START ----- ----- */

header{
	background-color: var(--color0);
	color: #FFFFFF;
	width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;	
}


.dropdown {
	align-content: center;	
}

.dropbtn {
	background-color: var(--color0);
	color: var(--colorF);
	font-weight: bold;
	line-height: 2rem;
	border: none;
	outline: none;
	text-transform: uppercase;
	font-size: 1rem;
	margin-right: 1rem;
}

/* Add a color to dropdown on hover */
.dropbtn:hover {
	color: var(--color6);
}

/* Dropdown content (hidden by default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: var(--color0);
	width: auto;
	z-index: 1;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
	display: block;
}

/* Links inside the dropdown */
.dropdown-content a {
	float: none;
	color: var(--colorF);
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
	margin-right: 0;
}
  
/* Add a background color to dropdown links on hover */
.dropdown-content a:hover {
	background-color: var(--color8);
}


hr {
	border-color: #000000;
}

nav{
	background-color: var(--color0);
	color: #FFFFFF;
	padding: 10px; /* padding: Top Right Botom Left */
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	margin: auto;
}

nav a{
	color: var(--colorF);
	/* display: inline; */
	text-decoration: none;
	text-transform: uppercase;
	align-content: center;
	font-weight: bold;
	line-height: 2rem;
	margin-right: 1rem
}

nav a:link{
	color: var(--colorF);
}

nav a:hover{
	color: var(--color6);
}

.active {
	color: var(--color8);
}

.store {
	color: var(--colorF);
	background-color: var(--color8);
	margin: 10px 0px;
	padding: 10px 40px;
	border-radius: 30px;
	margin-right: 0vh;
}

#logo{
	width: auto;
	height: 80px;	
	display: inline;
}

.nav_mobile{
	display: none;
}

#menu{
	display: none;
}


@media (max-width:600px){
	header{
		/* background-color: #000000; */
		color: #FFFFFF;
		width: auto;
		height: auto;
	}
	
	nav{
		display: none;
	}

	/* nav_mobile container */
	.nav_mobile {
		width: 100%;
		height: 100px;
		background-color: #000000;
		display: flex;
		flex-direction: row;
		text-transform: uppercase;
		position: fixed;
		justify-content: space-between;
	}
  
	/* Links inside the nav_mobile */
	.nav_mobile a {
	font-size: 0.9rem;
	color: white;
	padding: 0px 0px;
	text-decoration: none;
	}

	/* The dropdown container */
	.dropdown {
	overflow: hidden;
	}

	/* Dropdown button */
	.dropdown .dropbtn {
	font-size: 2rem;
	border: none;
	outline: none;
	color: white;
	padding: 20px 20px;
	background-color: inherit;
	font-family: inherit; /* Important for vertical align on mobile phones */
	margin: 0; /* Important for vertical align on mobile phones */
	}

	/* Add a background color to nav_mobile links on hover */
	.nav_mobile a:hover, .dropdown:hover .dropbtn {
	background-color: var(--color0);
	}

	/* Dropdown content (hidden by default) */
	.dropdown-content {
	display: none;
	position: absolute;
	background-color: #111111;
	width: auto;
	z-index: 1;
	}

	/* Links inside the dropdown */
	.dropdown-content a {
	float: none;
	color: #ffffff;
	padding: 15px 20px;
	text-decoration: none;
	display: block;
	text-align: left;
	}

	/* Add a background color to dropdown links on hover */
	.dropdown-content a:hover {
	background-color: var(--color8);
	}

	/* Show the dropdown menu on hover */
	.dropdown:hover .dropdown-content {
	display: block;
	}

	.logo {
		height: 60px;
		width: auto;
		margin: 20px;
		display: inline;
	}

	.logo img {
		border: none;
	}

}

/* iframe width="560" height="315"> 500/281 1000/562 */
iframe {
	width: 100%;
	/* height: 562px; */
	aspect-ratio: 16/9;
}

/*#endregion*/
/* ----- ----- ----- HEADER END ----- ----- */


/*#region ----- ----- FOOTER START ----- -----*/

footer {
	background-color: #000000;
	color: #FFFFFF;
	width: 100%;
}

.sec_footer{
max-width: 1000px;
margin: auto;
text-align: left;
display: flex;
justify-content: space-between;
padding: 20px;
}

.sec_footer p{
	color: #999999;
	font-size: 0.8rem;
	line-height: 1.6rem;
}

.sec_footer a{
	color: #999999;
	text-decoration: none;	
	font-size: 0.8rem;
	line-height: 1.6rem;
}

.sec_footer a:hover{
	color: var(--colorF);
	text-decoration: none;	
	font-size: 0.8rem;
	line-height: 1.6rem;
}

.sec_footer div {
	width: 25%;
	border-left: 1px solid #333333;
	border-right: 1px solid #333333;
	padding-left: 10px;
}

.sec_copyright {
	background-color: var(--color8);
	color: var(--colorF);
	width: 100%;
	padding: 10px;
	text-align: center;
	font-size: 0.8rem;
	line-height: 2rem;
}

.sec_copyright a{
	color: var(--colorF);
	text-decoration: none;
	font-size: 0.8rem;
}

@media (max-width:600px){
	.sec_footer{
		max-width: 100%;
		margin: auto;
		display: flex;
		flex-direction: column;
		padding: 20px;
	}

	.sec_footer div{
		width: 100%;
		margin: 1vh;
		text-align: left;
	}
}
/*#endregion*/
/* ----- ----- ----- FOOTER END ----- ----- */


/*#region ----- ----- MAIN START ----- ----- */

main {
	color: rgba(0, 0, 0, 0);
	width: 100%;
	height: 100%;
	margin: 100px auto 0px auto;
	display: block;
}

/*#endregion*/
/* ----- ----- ----- MAIN END ----- ----- */


/*#region ----- ----- HOME START ----- ----- */

.CTA{
	color: #FFFFFF;
	background-color: #111111;
	background-image: url("images/cta.webp");
	background-size: 100% 100%;
	width: 100%;
	height: calc(100vh - 100px);
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: top;
	gap: 5px;
}


@media (max-width:1000px){
	.CTA{
		background-image: url("images/cta2.webp");
		background-size: 100% 100%;		
	}

}

@media (max-width:600px){
	.CTA{
		color: #FFFFFF;
		background-color: var(--color1);
		background-image: url("images/cta.webp");
		background-size: auto 100%;
		margin: 0px 0px 0px 0px;
		width: 100%;
		height: calc(50vh - 100px);
	}
}

.CTA1,
.CTA2 {
	color: var(--colorf);
	font-size: 5vw;
	font-weight: bold;
	text-align: right;
	text-transform: uppercase;
	right: 1vw;
	margin-right: 10px;
	display: block;
	/* -webkit-text-stroke: 0.1px var(--color3); */
	text-shadow: 2px 2px var(--color3);
}

.CTA3 a{	
	color: var(--colorF);
	background:  var(--color8);
	display: block;
	text-decoration: none;
	font-size: 2vw;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	border-radius: 50vw;
	max-width: 30vw;
	height: 6vw;
	padding: 1.5vw 3vw;
	margin: 1vw 1vw 1vw auto;
}

.CTA3 a:hover{
background:  var(--color7);
}

.home{
	background-color: var(--colorF);
	color: var(--colorF);
	max-width: 1000px;
	margin: auto;
}

.fix{
	max-width: 100%;
	color: rgba(0, 0, 0, 0);
}

.fix p {
	color: rgba(0, 0, 0, 0);
}

@media (max-width:600px){
	.fix{
		display: none;
	}
}

.main_home_energy,
.main_home_services {
	background-color: var(--colorF);
	display: flex;
	flex-direction: column;
}


.main_home_energy1,
.main_home_energy2,
.main_home_services1,
.main_home_services2 {
	display: flex;
	flex-direction: row;
	max-width: 1000px;
	margin: 10px auto 0px auto;
}

.image{
	width: 200px;
	height: auto;
	border-radius: 50%;
	margin: 10px;
	padding: 10px;
	background-color:var(--color7)
}

@media (max-width:600px){
	.image{
		width: 28vw;
		height: auto;
		border-radius: 50%;
		margin: 2vw;
		padding: 2vw;
		background-color:var(--color7)
	}
}


.button1{
	width: 200px;
	margin: 10px;
	padding: 10px 5px;
	/* padding: 1vw 2vw; */
	font-size: 1.2rem;
	background-color: var(--color8);
	color: var(--colorF);
	border: none;
	border-radius: 30px;
	cursor:pointer;
	/* transform: scale(1.0); */
	box-shadow: 0px 15px 15px black;
}

.button1:hover{
	background-color: var(--color7);
	transform: scale(0.95);
	box-shadow: 0px 0px 10px black;
}

@media (max-width:600px){
	.button1{
		width: 28vw;
		margin: 2vw;
		padding: 1vw 2vw;
		background-color: var(--color8);
		color: var(--colorF);
		border: none;
		border-radius: 30px;
		cursor:pointer;
		box-shadow: 0px 15px 15px black;
	}
	.button1 h3{font-size: 2vw;}
}

/*#endregion*/
/* ----- ----- ----- HOME END ----- ----- */


/*#region ----- ----- ABOUT START ----- ----- */

#banner1 {
	max-width: 100%;
	height: 200px;
}

.main_about{
	max-width: 1000px;
	margin: 0px auto 0px auto;
	background-color: var(--colorF);	
}

.about0{
	width: 100%;
	display: flex;
	flex-direction: row;
}

.about1,
.about2 {
	width: 50%;
	margin: 20px;
	display: flex;
	flex-direction: column;
}

.about1 p,
.about2 p{
	color: var(--color0);
	text-align: justify;
	line-height: 2rem;
}

#logo1 {
	width: 200px;
	height: 100px;
	border-radius: 5%;
	margin: 10px auto;
}

#foto {
	width: 200px;
	height: 200px;
	margin: 10px auto;
	padding: 0px;
	filter: grayscale(1) contrast(100);
}

#dgeg {
	height: auto;	
	width: 80%;
	margin: auto;
	
}

@media (max-width:600px){
	.about0{
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	.about1,
	.about2 {
	width: 90%;
	}
}

/*#endregion*/
/* ----- ----- ----- ABOUT END ----- ----- */


/*#region ----- ----- ENERGY START ----- ----- */

.main_energy{
	background-color: var(--colorF);
	max-width: 1000px;
	margin: 0px auto 0px auto;
	display: block;
	text-align: center;
}

#banner2 {
	max-width: 100%;
	height: 200px;
}

.main_energy1,
.main_energy2,
.main_energy3,
.main_energy4,
.main_energy5 {
	color: rgba(0, 0, 0, 0);
	background-color: var(--color8);
	background-size: cover;
	height: 150px;
	max-width: 96%;
	margin: 10px auto 10px auto;
	padding: 10px;
	border-radius: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;	
	font-size: clamp(1rem, 4vw, 1.8rem);
}
/*https://developer.mozilla.org/en-US/docs/Web/CSS/clamp*/

.main_energy1 {
	background-image: url("images/fotovoltaico.jpg");
}

.main_energy2{
	background-image: url("images/termico.jpg");
}

.main_energy3{
	background-image: url("images/eolica.jpg");
}

.main_energy4{
	background-image: url("images/hidrica.jpg");
}

.main_energy5{
	background-image: url("images/geotermica.jpg");
}

.main_energy6{
	padding: 20px 20px;
	display: flex;
	flex-wrap: wrap;
}

.main_energy6 img{
	width: 96px;
	height: 75px;
	padding: 2px;
}



.main_energy1:hover,
.main_energy2:hover,
.main_energy3:hover,
.main_energy4:hover,
.main_energy5:hover {
	color: rgb(255, 255, 255);
	/* -webkit-text-stroke: .3px var(--color0); */
	/* text-shadow: 3px 3px var(--color0); */
	/* filter: grayscale(1); */
	/* font-weight: bold; */
	background-image: none;
	overflow: auto;
}

/*#endregion*/
/* ----- ----- ----- ENERGY END ----- ----- */

/*#region ----- ----- SERVICES START ----- ----- */

.main_services{
	background-color: var(--colorF);
	max-width: 1000px;
	margin: 0px auto 0px auto;
	display: block;
	text-align: center;
}

#banner3 {
	max-width: 100%;
	height: 200px;
}

.main_services0{
	display: flex;
	flex-direction: column;
	align-content: center;
	margin: 0px auto 0px auto;
	padding-bottom: 20px;
}

.main_services1,
.main_services2 {
	display: flex;
	flex-direction: row;
	max-width: 1000px;
	margin: 0px auto 0px auto;
}


/*#endregion*/
/* ----- ----- ----- SERVICES END ----- ----- */

/*#region ----- ----- OTHERS START ----- ----- */

.main_others{
	background-color: var(--colorF);
	max-width: 1000px;
	margin: 0px auto 0px auto;
	padding-bottom: 20px;
	display: block;
	text-align: center;
}

#banner4 {
	max-width: 100%;
	height: 200px;
}

.main_others0{
	display: flex;
	flex-direction: row;
}

.main_others1,
.main_others2{
	width: 50%;
	margin: 10px;
	display: flex;
	flex-direction: column;
	color: var(--color0);
}

.main_others3{
	display: flex;
	flex-direction: row;
	margin: 10px;
}

.main_others1text,
.main_others2text {
	width: 100%;
	padding-left: 20px;
	padding-top: 10px;
	text-align: left;
	border: 0px solid #000000 ;
}

.symbol {
	color: var(--color0);
	background-color: var(--color8);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	padding: 10px;
	margin: 0px;
}

@media (max-width:600px){
	.main_others0{
		display: flex;
		flex-direction: column;
	}
	
	.main_others1,
	.main_others2{
		width: 100%;
		padding: 10px;
	}
}

/*#endregion*/
/* ----- ----- ----- OTHERS END ----- ----- */

/*#region ----- ----- CONTACTS START ----- ----- */

.main_contacts{
	background-color: var(--colorF);
	max-width: 1000px;
	margin: 0px auto 0px auto;	
	display: flex;
	flex-direction: column;
}

.main_contacts1{
	display: flex;
	flex-direction: row;
}

#banner5 {
	max-width: 100%;
	height: 200px;
}

.contacts_left {
	width: 50%;
	padding: 20px;
	display: block;
}

.contacts_right {
	width: 50%;
	padding: 20px;
	display: block;
}

.contacts1{
	display: flex;
	/* margin: 20px; */
}

.contacts2{
	width: 60%;
	display: inline;
}

.schedule{
	width: 40%;
	display: inline;
}

.map{
	width: 100%;
	display: block;
}

.imap{
	width: 100%;
	height: 300px;
	border: solid 0px;
}

/*@media (max-width:666px){
	.main_contacts{
		display: flex;
		flex-direction: column;		
		justify-content: center;
		margin: 100px auto 0px auto;
		padding-bottom: 20px;	
	}
}*/

@media (max-width:600px){

	#banner5 {
	max-width: 100%;
	height: 100px;
	}

	.main_contacts1{
		display: flex;
		flex-direction: column;
		margin: 0px auto 0px auto;			
	}

	.contacts_left{
		width: 100%;
		margin: auto;
		display: flex;
		flex-direction: column;		
		margin-top: 20px;	
	}

	.contacts_right{
		width: 100%;
		margin: auto;
		display: flex;
		flex-direction: column;
		margin-top: 20px;
	}
	/*
	.contacts1{
		display: flex;
		flex-direction: column;
	} */

	.contacts2{
		width: 60%;
		display: block;
	}	

	.schedule{
		width: 40%;
		display: block;
	}

	.imap{
		height: 200px;
	}
}

/*#endregion*/
/* ----- ----- ----- CONTACTS END ----- ----- */



/*#region ----- ----- POLICY START ----- ----- */

.main_policy {
	color: var(--color0);
	background-color: var(--colorF);
	max-width: 1000px;
	margin: 0px auto 0 auto;
	padding: 20px;
}

.main_policy p,
.main_policy a
{
	color: var(--color0);
}

/* #terms
#shipping,
#privacy,
#cookies{
	margin-top: 100px;
	margin-bottom: 100px;
	padding-top: 100px;
	padding-bottom: 100px;
} */

/*#endregion*/
/* ----- ----- ----- STORE END ----- ----- */