
/*---------- COLORES COOPORATIVOS*-------------------/

AZUL OSCURO: #0E2C40
VERDE OSCURO PARRAFOS: #036874
TURQUESA:#08a8aa
FONDO ASIDE: #e8e8d9
NARANJA: #e97300
*/


body {
	margin: 0;
	padding:0;
	background-color: #444;;
	}
	
header {
	display:block;
	width: 100%;
	height: 134px;
	background: #0E2C40;
	border-bottom: #08a8aa solid 1px;
	position: fixed;
	z-index: 1;
	}
.logo{
	display: flex;
	background-position:center top;
	justify-content: center;
	max-width: 500px;
	max-height:84px;
	margin:auto;
    position: relative;
	}
	
.logo img{
	width:100%;
	height:100%;
	}

	#btn-menu {
		display: none;
		}
	header label {
		display: none;
		width: 30px;
		height: 30px;
		padding: 10px;
		border-right: 1px solid #fff;
		}
	header label:hover{
		cursor: pointer;
		background: 0% 0% #08a8aa;
		}
			
	.menu ul#ejm5{
		margin: 10px;
		list-style: none;
		padding:0;
		display: flex;
		justify-content: center;
		}			
	.menu ul#ejm5 li{
		font-family:Amatic SC, Verdana, Geneva, sans-serif;
		font-size: 24px;
		font-weight:none;
		letter-spacing:1px;
		border-right: 1px solid #08a8aa;
		display: flex;
		}	
		
	ul#ejm5{
		overflow:hidden;
		padding:0px;
		}	
	ul#ejm5 li a{
		margin: 0;
		position: relative;
		line-height:40px;
		overflow: hidden;
		color:#fff;
		perspective: 1000px;
		}
	ul#ejm5 li a span{
		position: relative;
		display: inline-block;
		padding: 0 20px;
		background: #0E2C40;
		transition: transform 0.3s ease 0s;
		transform-origin: 50% 0px 0px;
		transform-style: preserve-3d;
		}
	ul#ejm5 li a span:before{
		position: absolute;
		top: 100%;
		left: 0px;
		width: 100%;
		height: 100%;
		padding: 0 15%;
		background-color:rgba( 10, 201, 203, 0.5) ;
		content: attr(data-title);
		transition: #000 0.3s ease 0s;
		transform: rotateX(-90deg);
		transform-origin: 50% 0px 0px;        
		}
	ul#ejm5 li a:hover span {
		transform: rotateX(90deg) translateY(-22px);
		}
	ul#ejm5 li a:hover span::before {
		background:  0% 0% #08a8aa;
		}
		
	
		
/*Estilo de la GALERIA*/
	
.galeria {
	width:90%;
	margin: auto;
	list-style: none;
	padding:160px 20px 20px 20px ;
	box-sizing:border-box;
	
	display: flex;
	flex-wrap:wrap;
	justify-content: space-around;
	z-index: 0;
	}

/*Comportamiento Elementos*/

.galeria a span:first-child {
	display: inline-block;
	}

.galeria a {
	display: block;
	position: relative;
	overflow: hidden;
	}
	   
.galeria a span:last-child {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color:#222;
	border:#08a8aa solid 1px;
	transform: translateY(-100%);
	}

.galeria a span {
	transition: transform 0.5s ease-out;
	}
	   
.galeria a:hover span:first-child {
	transform: translateY(100%);
	}
	   
.galeria a:hover span:last-child {
	transform: none;
	}
	
.galeria h3{
	display:flex;
	padding: 15px;
    font-size: 22px;
	color:#08a8aa;
	text-align: center;
	justify-content: center;
	border-bottom:#e97300 solid 1px ;
	}

 .galeria h4{
	font-family:Amatic SC, Verdana, Geneva, sans-serif;
    font-size: 20px;
    color:#ccc;
    text-align: center;
    }

/**/

.galeria li{
	margin:20px 10px;
	}
	
.galeria img{
	width: 200px;
	height:262px;
	border:#ccc solid 1px;
	}

/**/

/*Estilo del modal*/

.modal{
	visibility: hidden;
	opacity: 0;
	}
	
.modal:target{
	visibility: visible;
	opacity: 1;
	transition: all 1s;
	position: absolute;
	background: rgba(0,0,0,0.7);
	top: 0;
	left:0;
	width:100%;
	height: auto;
	}
	
 .modal h2{
	display:block;
	margin-top:0;
	font-family:Amatic SC, Verdana, Geneva, sans-serif;
 	color:#5685ce;
	text-align: center;
	font-size:42px;
	line-height:100px;
	background: rgba(10,10,10,0.8);
	}
	
.modal h3{
	font-family:Amatic SC, Verdana, Geneva, sans-serif;
	display:block;
	color:#ef7204;
	font-size:30px;
	text-align:center;
	background:#111;
	margin:0;
	padding: 5px;
	}

.imagen {
	width:100%;
	height:50%;
	max-width: 1000px;
	margin:auto;
	display:flex;
	justify-content:center;
	align-items:center;
	}
	
.imagen a {
	color:#08a8aa;
	font-size:40px;
	text-decoration: none;
	margin: 0px 10px;
	object-fit: cover;
	}
		
.imagen a:nth-child(2){
	margin:0;
	height:100%;
	flex-shrink: 2;
	}
		
.imagen img{
	width:100%;
	height:100%;
	max-width:100%;
	max-height: 600px;
	border: 7px solid #fff;
	box-sizing: border-box;
	}
	
.cerrar{
	display:block;
	background:#fff;
	width:14px;
	height: 14px;
	margin:15px auto;
	text-align: center;
	text-decoration:none;
	font-family:sans-serif;
	font-size:22px;
	color:#222;
	padding:5px;
	border-radius: 50px;
	line-height:15px;
	}
	
	
h3{
	font-family:Amatic SC, Verdana, Geneva, sans-serif;
	font-size:34px;
	color: #ef7204;
	}
	
.cajaTecnica{
	display: flex;
	justify-content: center;
	margin:0;
	background-color: #222;
	}
	
.fichatecnica{
	display: block;
	margin-right:20px;
	border-right: #F60 solid 1px;
	}
		
.fichatecnica p{
	display: block;
	margin-right: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	color:#ccc;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size:18px;
	letter-spacing:0,25px;
	}

.fichatecnica p span{
	color:#ef7204;
	}
		
.argumento{
	display: block;
	opacity:85%;
	margin-left:100%;
	margin:20px;
	width:500px;
	height:600px;
	}
	
.argumento p{
	display: block;
	margin:20px;
	font-family: 'Architects Daughter', cursive;
	font-size:16px;
	letter-spacing:0,25px;
	color: #41536f;
	line-height:25px;
	}

.hopper{
	text-align:center;
	margin: 20px;
	}	
.hopper img{
	width:450px;
	height:auto;
	}
	
article#VentanaEmpresa{
	margin: auto;
	margin-bottom: 20px;
}

.Ventanaslider {
	display:block;
	max-width: 400px;
	width: 90%;
	height:auto;
	min-height:100%;
	margin: auto;
	top:20px;
  }
  
  .slidermanual {
	max-width: var(--ancho);
	height: calc(var(--ancho) / 1.78);
	margin: auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items:center;
	padding-top:30px;
	}
  
  .diapositiva{
	overflow: hidden;
  }
  
  .slidermanual input[type="radio"] {
	display: none;
  }
  .slidermanual img {
  display:inline-block;
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: auto;
	transform: scale(0);
	opacity: 0;
	transition: all 0.5s ease-in;
	outline: 1px solid transparent;
	border:#fff solid 5px;
  }
  
  .slidermanual input[type="radio"]:checked ~ img {
	  transform: scale(1);
	  opacity: 1;
  }
  .slidermanual input[type="radio"] + label {
	position: relative;
	z-index: 10;
	margin: 10px;
	display: block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	border: indigo solid 1px;
	background-color: hsla(0, 0%, 100%, 1);
  }
  .slidermanual input[type="radio"]:checked + label {
	box-shadow: 0 0 0 1px #08a8aa,
				0 0 0 2px #fff inset;
	background-color:#e97300;
  }
  label:hover {
	cursor: pointer;
  }


footer .Pie{
		display:block;
		width:95%;
		margin:auto;
		margin-top:10px;
		padding-bottom:10px;
		border-top:#e97300 solid 1px;
		}
		
footer .Pie p{
		font-family:Amatic SC, Verdana, Geneva, sans-serif;
		font-size:20px;
		align-content: center;
		text-align:center;
		color:#fff ;
		}
			
					
		
@media(max-width:768px){
	
	header {
		width: 100%;
		height: auto;	
		}
		
	header label {
		display:block;
		float: left;
		}
				
		.logo{
			display: flex;
			background-position:center top;
			justify-content: center;
			max-width: 500px;
			max-height:84px;
			margin:auto;
			position: relative;
			}
			
		.logo img{
			width:100%;
			height:100%;
			}
		
	.menu {
		position: absolute;
		background:#0E2C40;
		width: 50%;
		margin-left:-50%;
		background-position:top;
		z-index:1;
		}
		
	.menu ul#ejm5 {
		flex-direction: column;
		}
		
	.menu ul#ejm5 li{
		border-right: 1px solid #fff;
		font-size: 22px;
		letter-spacing:2px;
		}
	
	ul#ejm5 li a{
        line-height:38px;
		}
	
	#btn-menu:checked ~ .menu{
		margin:0;
		}
		
	.galeria {	
		padding:100px 20px 20px 20px ;
		}
		
	.cajaTecnica{
	display: block;
	justify-content: center;
	margin:20px;
	}
	
	.fichatecnica{
	display: block;
	margin:0;
	border-right: none;
	border-bottom: #F60 solid 1px;
	}
		
	.fichatecnica p{
	display: block;
	color:#ccc;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size:18px;
	letter-spacing:0,25px;
	margin: 20px;
	}
	
	.argumento{
	display: block;
	opacity:65%;
	width:100%;
	margin:auto;
	}	
	
	.argumento p{
	display: block;
	padding:10px;
	}
	
	.Ventanaslider {
	display:block;
	max-width: 400px;
	width: 70%;
	height:auto;
	min-height:100%;
	margin:auto;
  }
		
	
.modal .hopper{
	display: block;
	margin: auto;
	padding: 20px;
	}
	}