:root{
	--main: #064;
}
body{
	font-family: 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;
}
.flex{
	display: flex;
	flex-flow: row wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
}
.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;
}

/* GENERALES */

header{
	position: sticky;
	top:0;
	left:0;
	right: 0;
	z-index: 10;
	background: var(--main);
	color: white;
	height: 6em;
	padding: 0.5em 2.5%;
	line-height: 6em;
	box-shadow: rgba(0,0,0,0.25) 0 0 1em;
}

#logo{
	float: left;
}
#logo img{
	height: 3em;
	margin: 1.5em 0;
	display: block;
}

#menu_redes{
	float: right;
	font-size: 1.25em;
}
#menu_redes a{
	display: inline-block;
	margin: 0 0.15em;
}
#menu_redes a span{
	display: inline-block;
	font-size: 0.65em;
	height:2em;
	width:2em;
	line-height: 2em;
	border:white solid 2px;
	border-radius: 2em;
	text-align: center;
}
#menu_redes a i.fa{
	font-size: 1.25em;
	position: relative;
	top: 0.15em;
}
#menu_redes a span:hover{
	background: white;
	color: var(--main);
}

menu{
	margin: 0;
	padding: 0;
}
menu a{
	display: inline-block;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0 1em;
	margin: 0 0.5em;
}
menu a:hover{
	box-shadow: white 0 -7em 0 0 inset;
	color: var(--main);
}
img,video{
	display: block;
	max-width: 100%;
}
footer{
	padding: 2.5% 5%;
	color: white;
	background: black;
}
footer div{
	align-content: center;
	align-items: center;
	justify-content: center;
}
footer>div>div:first-child{
	text-align: left;
}
footer>div>div:last-child{
	text-align: right;
}
footer a i.fa{
	display: inline-block;
	font-size: 1.5em;
	margin: 0 0.5em;
}
footer p{
	margin: 0;
	font-size: 1em;
}
footer a:hover{
	color: var(--main);
}



/* HOME */

#home{
	height:45vw;
	overflow: hidden;
}
#home_video{
	height: 0;
	overflow: visible;
}
#home_content{
	padding: 30vw 5% 0 5%;
	text-align: left;
	color: white;
	text-shadow: black 0 0.1em 0.25em;
}
h1{
	text-transform: uppercase;
	margin: 0;
	letter-spacing: 0.05em;
	font-size: 4em;
	font-weight: 900;
}
#home_content p{
	margin: 0;
	font-size: 2em;
}

section h2{
	font-size: 3em;
	color: var(--main);
	text-transform: uppercase;
	margin-top: 0;
}

#about{
	padding: 5% 15%;
	background: #F8F8F8;
}
#about p{
	font-size: 1.25em;
}
#about a{
	display: inline-block;
	box-shadow: var(--main) 0 0 0 3px;
	color: var(--main);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 1.25em;
	padding: 0.25em 3em;
	margin-top: 2em;
	font-weight: 600;
}
#about a:hover{
	color: white;
	background: var(--main);
}


#services{
	background: #004C2F;
	color: white;
	padding: 5%;
}
#services h2{
	color: white;
}
#services h3{
	text-transform: uppercase;
	font-size: 1.75em;
	font-weight: 600;
	margin-top: 0;
	background: #004024;
	border-radius: 0.25em;
	padding: 0.25em 1em;
}
#services h3 i.fa{
	float: left;
	font-size: 1.25em;
}
#services h3:hover{
	background: white;
	color: #042;
}


#services p{
	font-size: 1.25em;
}

.services_container{
	max-height: 3em;
	overflow: hidden;
	border: #496 solid 1px;
	border-radius: 0.5em;
	margin-bottom: 1em;
	padding: 1em;
	transition: all 0.5s ease-in-out;
}
.services_container.opened{
	max-height: 200vh;
}
.services_container.opened h3 i.fa{
	transform: rotate(135deg);
}


.ssum_item{
	max-width:18%;
	min-width: 220px;
	margin: 2em 0;
}
.ssum_item img{
	max-width: 70%;
	display: block;
	margin: 0 auto;
	border-radius: 100em;
}
.ssum_item h4{
	text-transform: uppercase;
	font-weight: 600;
}

#contacto_content{
	background: #EEE;
	text-align: left;
	padding: 5% 25%;
}
form input:is([type="text"],[type="tel"],[type="email"],[type="number"],[type="date"],[type="search"]),form textarea,form select{
	display: block;
	margin-bottom: 1em;
	padding: 0.5em 2%;
	width: 96%;
	font: inherit;
	border: #CCC solid 1px;
	border-radius: 0.2em;
}
form button{
	background: var(--main);
	color: white;
	font: inherit;
	font-size: 1.25em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0.5em 3em;
	float: right;
}
form #captcha input[type="number"]{
	display: inline-block;
	margin-bottom: 0;
	width: 4em;
	padding: 0.5em;
	text-align: center;
}
#captcha{
	float: left;
	min-width: max(40%,140px);
}


/* QUIENES SOMOS */

.section_header{
	background: #EEE url(imagenes/header3.jpg);
	background-position: center center;
	background-size: cover;
	padding: 10%;
	box-shadow: rgba(0,0,0,0.35) 0 0 100vw 100vw inset;
	color: white;
}

#mision_vision{
	background: #F2F2F2;
	padding: 5%;
}
#mision_vision div{
	grid-gap:5%;
}
#mision_vision p,#mision_vision li{
	font-size: 1.25em;
	text-align: justify;
}

#historia{
	padding: 5% 10%;
	text-align: justify;
}
#historia>div{
	direction: rtl;
	grid-gap:5%;
}
#historia>div>div{
	direction: ltr;
}
#historia p{
	font-size: 1.25em;
	line-height: 1.5em;
	margin: 0;
}

#tres_es{
	background: #F2F2F2;
	padding: 5%;
}
#tres_es p{
	font-size: 1.25em;
}
#tres_es h3{
	font-size: 2em;
	text-transform: uppercase;
	color: var(--main);
	letter-spacing: 0.1em;
}
#tres_es i.fa{
	font-size: 5em;
	color: #555;
}

#oportunidades{
	background: #333;
	color: white;
	padding: 5% 10%;
	text-align: justify;
}
#oportunidades h2{
	color: white;
}
#oportunidades p,#oportunidades li{
	font-size: 1.25em;
	line-height: 1.5em;
	margin: 0;
}
#oportunidades li{
	margin-bottom: 1em;
	text-transform: uppercase;
}
#oportunidades ol{
	margin: 2em auto;
}

#empresas{
	background: #F2F2F2;
	padding: 5%;
}
#empresas p{
	font-size: 1.25em;
	line-height: 1.5em;
}

/* BLOG */

#articles{
	padding: 5%;
}
#articles div{
	grid-gap:5%;
	text-align: left;
}
#articles img{
	width: 100%;
}
#articles h4{
	font-size: 1.5em;
	font-weight: 500;
	color: var(--main);
	margin: 0.5em 0;
}
#articles small{
	color: #999;
}
#articles p{
	font-size: 0.85em;
	text-align: justify;
}
#articles p a{
	color: var(--main);
	float: right;
}

#blog_entry_header{
	background-position: center center !important;
	background-size: cover !important;
}

#blog_entry_contents{
	text-align: justify;
	padding: 2.5% 20% 5% 20%;
}
#blog_entry_contents>h3{
	color: var(--main);
	font-weight: 400;
}
#blog_entry_contents p{
	font-size: 1.2em;
	line-height: 1.8em;
}


/* MODAL */

#modal{
	background:rgba(0,0,0,0.8);
	position:fixed;
	display:none;
	top:0;
	left:0;
	bottom:0;
	right:0;
	z-index:10;
	text-align:center;
}


/* 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,.flex{
		display: block;
	}
	
	header{
		height:50px;
		padding: 0;
		line-height: 50px;
	}
	#menu_opener{
		float:left;
		margin: 5px;
		width:40px;
		height:40px;
		background: #042;
		border-radius: 0.5em;
	}
	#menu_opener>div{
		height:2px;
		margin: 4px auto 0 auto;
		background: white;
		width: 30px;
	}
	#menu_opener>div:first-child{
		margin-top: 14px;
	}
	
	
	#logo{
		margin: 0 auto;
		padding: 0 1em;
	}
	#logo img{
		height: 26px;
		margin: 12px 0;
	}
	menu{
		position: fixed;
		top: 50px;
		left: 0;
		right: 0;
		background: rgba(0,0,0,0.85);
		padding: 1em;
		display: none;
	}
	menu a{
		display: block;
		text-align: left;
		line-height: 3em;
		font-size: 1.5em;
	}
	#home_video video{
		filter: brightness(0.6);
	}
	#home_content{
		font-size: 1.5vw;
		position: relative;
		z-index: 1;
		text-align: center;
		padding: 10vw 5% 0 5%;
	}
	#about{
		padding:5%;
	}
	section h2{
		font-size: 2em;
	}
	section p{
		font-size: 1em !important;
	}
	.ssum_item{
		display: inline-block;
		min-width: 180px;
	}
	#contacto_content{
		padding: 10% 5%;
	}
	footer>div>div{
		text-align: center !important;
		padding: 0.5em;
	}
	
	.section_header h1{
		font-size: 2em;
	}
	#blog_entry_contents{
		padding: 5%;
	}
	#oportunidades img,#historia img{
		margin-bottom: 1.5em;
	}
	#captcha small{
		display: block;
	}
	#services h3{
		font-size: 4vw;
		min-height: 2.2em;
	}
	.services_container{
		min-height: 12vw;
	}
	.services_container.opened{
		max-height: 200vh;
	}
}