@charset "utf-8";

/* pantalla de inicio */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#inicio body {
    background-color: rgb(114,160,204);
    font-family: "Oswald", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
/*para las demas pantallas */

header {
    background-color:rgb(114,160,204);
    font-family: "Oswald", sans-serif;
    height: 4em;
    color: white;
    display:flex;
    justify-content: space-between;
    align-items: center;
}

h2 {
    font-family: 'Oswald', sans-serif;
        color: white;
        font-size: 1.5rem;
        padding: 0em;
        margin: 0em;
        text-transform: uppercase;    
}
h4 { 
    font-family: 'Oswald', sans-serif;
    color: rgb(0,44,121);
    font-size: .75rem;
    line-height: 10px;
    padding: 0em;
    margin: 0em
    }

.encabezado { 
    display: flex;
    justify-content:space-around;
    align-items: center
}

.iso {
    height: 100%
}
#logoheader{
    position: static;
    width: 3em;
    height: 3em;
    padding-left: .5em;
    padding-top: .5em;
}


/* menú desplegable para todos igual */

header button {
    width: 2em;
    height: 2em;
    margin-left: .25em;
    background-color: transparent;
    color: white;
    border: 0;
    cursor: pointer;
    position: relative;
    z-index: 9999;
    /* caja flexible */
    display: flex;
    /* centrado en la horizontal */
    justify-content: center;
    /* centrado en la vertical */
    align-items: center;
}


/* menu desplegable */

header nav {
    background-color: rgba(113,161,204,0.85);
    color: white;
    transition: all .3s ease;

    
    /* para salir del "flujo de información" del fondo 
        y colocase en una capa superior fija */
    position: fixed;
    right: -70%;
    top: 0;
    bottom: 0;
    min-width: 40%;
    z-index: 9995;
}


/* módulo de navegación visible */
nav.menuvisible {
    right: 0;
}
#principal { 
    background-color: rgb(214, 228, 240);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative; 
    left: -10px; 
    display:block;

}

#secundario {
    background-color: rgb(113, 161, 204);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;  
    display:block;
    
    
}

.usuario {
    margin: auto;
    text-align:left;
    font-size: 14px;
   padding: 4em 0em 0em 1em;
    /*
    border-bottom: solid 1px rgba(255,255,255,.25);*/
    background-color: rgb(214, 228, 240);
}
.usuario img {
    border-radius: 50%;
    width: 20vmin;
    height: 20vmin;
    max-width: 5em;
    max-height: 5em;
    margin-left: 1em;
}

header nav a {
    color: rgba(12,49,131,.75);
    display: block;
    padding: .5em 1em;
    text-align: left;
    text-decoration: none;
    font-size: 1rem;
}

header nav a:hover {
    color: deeppink;
}
.usuario p {
    color: rgb(0,44,121);
    font-size: 12px;
}

#secundario ul li {
    list-style: none;
	text-decoration: none;
    position: relative; 
    left: -10px; 
    display:block;
}
#principal ul li {
    list-style: none;
	text-decoration: none;
    position: relative; 
    left: -10px; 
    display:block;
}
#x {
    
    position: absolute;
    right: 0;
    top: 0;
}
/* 
-------------
inicio
------------
*/
#logo1 {
    display: block;
    text-align: center;
}

#logo {
     align-self: center;    
     padding-top: 30%; 
     max-height:50%;
     min-height:20%;
     width:40%;/*valor inicial*/
}

#logo1 h1 {
    font-size: 22px;
    color: white;
    /*Elimino margen*/
    margin: auto;
}
#logo1 h2 {
    font-size: 18px;
    color: rgb(0,44,121);
    margin: auto;
    padding-bottom: 20px;
    
}

/* Centramos todo el bloque de inputs y labels */

input, label {
    display: block;
    text-align: center;
    color: rgb(0,44,121);
    font-weight: bolder;
    margin: 0 auto;
    position: relative;
}

input::placeholder{
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    text-align: left;
}

/* Estilando los input box */
/* 
Registro
*/
#registro {
    margin-top: 2em;
}
input[type=text]{
    width: 60%;
    height: 40px; 
    box-sizing: border-box;
/* Elegimos fuente y tamaño para el texto dentro del input box*/
    font-family: "Oswald", sans-serif; 
    font-size: 1em;
    margin-bottom: 0.5em;
}

input[type=password]{
    width: 60%;
    height: 40px; 
    box-sizing: border-box;
/* Elegimos fuente y tamaño para el texto dentro del input box*/
    font-family: "Oswald", sans-serif; 
    font-size: 1em;
    margin-bottom: 0.5em;
}
input[type=password2]{
    width: 60%;
    height: 40px; 
    box-sizing: border-box;
/* Elegimos fuente y tamaño para el texto dentro del input box*/
    font-family: "Oswald", sans-serif; 
    font-size: 1em;
    margin-bottom: 0.5em;
}
input[type=name]{
    width: 60%;
    height: 40px; 
    box-sizing: border-box;
/* Elegimos fuente y tamaño para el texto dentro del input box*/
    font-family: "Oswald", sans-serif; 
    font-size: 1em;
    margin-bottom: 0.5em;
}
input[type=surname]{
    width: 60%;
    height: 40px; 
    box-sizing: border-box;
/* Elegimos fuente y tamaño para el texto dentro del input box*/
    font-family: "Oswald", sans-serif; 
    font-size: 1em;
    margin-bottom: 0.5em;
}
input[type=city]{
    width: 60%;
    height: 40px; 
    box-sizing: border-box;
/* Elegimos fuente y tamaño para el texto dentro del input box*/
    font-family: "Oswald", sans-serif; 
    font-size: 1em;
    margin-bottom: 0.5em;
}
input[type=country]{
    width: 60%;
    height: 40px; 
    box-sizing: border-box;
/* Elegimos fuente y tamaño para el texto dentro del input box*/
    font-family: "Oswald", sans-serif; 
    font-size: 1em;
    margin-bottom: 0.5em;
}

/* Estilando Botones */

input[type="submit"]{
    background-color: rgb(0,44,121);
    color: white;
    padding: 7px 35px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    border-radius: 10px;
    border: none;
    transition-duration: 0.4s;
}

/* Efecto Hover en botones */

input[type="submit"]:hover{
    background-color: deeppink;
    color: white;
}

h3{
    font-family: "oswald", sans-serif;
    font-size: 14px;
    color:  rgb(0,44,121);
}


body {
    background-color: rgb(137,186,221);
    font-family: "Oswald", sans-serif;
    margin-top: 0;
}

main {
    padding-top: .5em;
}

#register p {
    font-family: "oswald", sans-serif;
    font-size: 16px;
    color:  rgb(0,44,121);
    margin: auto;
}

#register a {
    text-decoration:none; 
    color: white;
}
#olvido {
    text-align: center;
   
}
#olvido a{
    margin-top: 2em;
    text-decoration:none; 
    color: rgb(0,44,121);
}

/*
----------------
test 01
---------------
*/
#secciontest h2 {
    background-color: rgb(80,116,155);
    font-size: 12px;
    color: white;
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: 1em;
    margin: 0;
}
#pregunta{
    background-color: rgb(0,44,121);
}
#pregunta h1 {
    color: #FFF;
    font-weight: 100;
    font-size: 36px;
    padding-left: .25em;
    padding-top: .5em;
    margin-top: .25em;    
}
#pregunta p {
    color: #FFF;
    font-weight: 100;
    font-size: 12px;
    padding-left: 1em;
    padding-bottom: .5em;
    padding-top: 2em;
}


.Red {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Red label{
    text-align: center;
    background-color: rgb(113,161,204);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 15em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 2.5em;
    display: flex;
    order: 1;
}
#answer1 {
    display: none;
    background-color: rgb(113,161,204);
  border-radius: 3px;
}
#answer1:checked ~ #expand-btn {
  background-color: deeppink;
}
.Red img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
    
}
.Pozo {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Pozo label{
    background-color: rgb(89,125,178);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 15em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right:  2.5em;
    display:flex;
    order: 1;
}
#answer2 {
    display: none;
}
#answer2:checked ~ #expand-btn {
  background-color: deeppink;
}

.Pozo img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
}
.Lluvia {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Lluvia label{
    background-color: rgb(80,116,155);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 15em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 2em;
    display:flex;
    order: 1;
}
#answer3 {
    display: none;
}
#answer3:checked ~ #expand-btn {
  background-color: deeppink;
}
.Lluvia img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
}

.Otros {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Otros label{
    background-color: rgb(0,44,121);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 15em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 2em;
    display:flex;
    order: 1;
}
#answer4 {
    display: none;
}
#answer4:checked ~ #expand-btn {
  background-color: deeppink;
}
.Otros img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
}

/*
----------------
test 02
---------------
*/

.Cristalina {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Cristalina label{
    background-color: rgb(113,161,204);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 12em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 3em;
    display: flex;
    order: 1;
}
#answer1 {
    display: none;
    background-color: rgb(113,161,204);
  border-radius: 3px;
}
#answer1:checked ~ #expand-btn {
  background-color: deeppink;
}
.Cristalina img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
    
}
.Sucia1 {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Sucia1 label{
    background-color: rgb(89,125,178);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 10em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right:  3em;
    display:flex;
    order: 1;
}
#answer2 {
    display: none;
}
#answer2:checked ~ #expand-btn {
  background-color: deeppink;
}

.Sucia1 img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
}
.Sucia2 {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Sucia2 label{
    background-color: rgb(80,116,155);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 10em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 4.25em;
    display:flex;
    order: 1;
}
#answer3 {
    display: none;
}
#answer3:checked ~ #expand-btn {
  background-color: deeppink;
}
.Sucia2 img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
}

.Nsnc {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Nsnc label{
    background-color: rgb(0,44,121);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 10em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 2em;
    display:flex;
    order: 1;
}
#answer4 {
    display: none;
}
#answer4:checked ~ #expand-btn {
  background-color: deeppink;
}
.Nsnc img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
}

/*
----------------
test 03
---------------
*/

.Si {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Si label{
    background-color: rgb(113,161,204);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 15em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 3em;
    display: flex;
    order: 1;
}
#answer1 {
    display: none;
    background-color: rgb(113,161,204);
  border-radius: 3px;
}
#answer1:checked ~ #expand-btn {
  background-color: deeppink;
}
.Si img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
    
}
.Aveces {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Aveces label{
    background-color: rgb(89,125,178);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 15em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right:  1em;
    display:flex;
    order: 1;
}
#answer2 {
    display: none;
}
#answer2:checked ~ #expand-btn {
  background-color: deeppink;
}

.Aveces img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
}
.No {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.No label{
    background-color: rgb(80,116,155);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 15em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 3em;
    display:flex;
    order: 1;
}
#answer3 {
    display: none;
}
#answer3:checked ~ #expand-btn {
  background-color: deeppink;
}
.No img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
}

/*
----------------
test 04
---------------
*/

.Consumo {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Consumo label{
    background-color: rgb(113,161,204);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 14em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 2em;
    display: flex;
    order: 1;
}
#answer1 {
    display: none;
    background-color: rgb(113,161,204);
  border-radius: 3px;
}
#answer1:checked ~ #expand-btn {
  background-color: deeppink;
}
.Consumo img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
    
}
.Hervir {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Hervir label{
    background-color: rgb(89,125,178);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 16em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 1em;
    display:flex;
    order: 1;
}
#answer2 {
    display: none;
}
#answer2:checked ~ #expand-btn {
  background-color: deeppink;
}

.Hervir img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
}
.Lavar {
    margin-top: 1em;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    
}
.Lavar label{
    background-color: rgb(80,116,155);
    color: white;
    font-size: 16px;
    border: none;
    padding-left: 16em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 1.5em;
    display:flex;
    order: 1;
}
#answer3 {
    display: none;
}
#answer3:checked ~ #expand-btn {
  background-color: deeppink;
}
.Lavar img {
    width: 3em;
    height: 3em;
    margin-top: .5em;
    margin-right: 1em;
    display: block;
    position: static;
    order: 2;
}

/* Estilando Botones */

.boton_next {
    display: flex;
    justify-content: flex-end;
}
}
 input[type="submit"]{
    background-color: rgb(0,44,121);
    color: white;
    padding: 7px 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    border-radius: 10px;
    border: none;
    transition-duration: 0.4s;
}

/* Efecto Hover en botones ¿Por qué? No hay porque.  */

input[type="submit"]:hover{
    background-color: deeppink;
    color: white;
}
/*
---------------------------------------
QUIENES SOMOS
-------------------------------------
*/

#bt_bienvenidos {
    
    padding: .25em;
    
    height: 3em;
    
    /* caja flexible */
    display: flex;
    
    /* elementos colocados en los extremos del eje principal */
    justify-content:flex-end;
    
    /* elementos centrados en el eje secundario */
    align-items: center;
}

.bt_bienvenidos {
    justify-content: flex-end;
}


.quienes_somos { 
    box-sizing: border-box;
    width: 100%;
    padding: 2em;
    text-align: center;
}

.quienes_somos h2{
    text-align: center;
    text-indent: 1rem;
    padding-bottom: 1rem;
    font-size: 36px;
    
}
.quienes_somos p {
    color: white;
    box-sizing: border-box;
    width: 100%;
    text-align: justify;
    font-size: 16px;
}


.quien_div_logo {
    display: flex;
    flex-direction: column;
}
.quien_div_logo h2{
    text-align: center;
}
.quien_div_logo h4{
    text-align: center;
    font-size: 14px;
}
.img_quien {
    width: 40%;
    padding-top: 3em;
    align-self: center;
}

/* 
----------------------------------------
RESULTADOS
----------------------------------------
*/


.resultado {
    width: 100%;
display: flex;
     justify-content: space-between;
    
}

.resultado ul {
     background-color: rgb(90,196,237);
     width: 100%;
    padding-left: 1em;
    padding-right: 1em;
    display: flex;
     justify-content: space-between;
    flex-direction: row;
    flex-grow: 1;
   
}
.resultado ul li{
    color: rgb(0,44,121);
    list-style: none;
   
}

.encabezado_resultado { 
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(64,165,43);
    width: 100%;
    

}

#img_resultado {
    padding-left: 5%;
    width: 100%;
    height: auto;
    display: flex;
    font-family: 'Oswald', sans-serif;
}

.iso_resultados {
    padding-left: 5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    
}
    
.iso_resultados h2{
    text-align: inherit;
    font-size: 72px;
}
.iso_resultados h4{
    text-align: inherit;
    color: white;
    font-size: 30px;
}
.left li { 
    text-align: right;
    display: flex;
    justify-content: flex-end;
}


.especificacion {
   
    margin-top: 0;
    width: 100%;
     }

.especificacion ul {
     background-color: rgb(90,196,237);
     width: 100%;
    
  
    padding-left: 1em;
    padding-right: 1em;
    margin-bottom: .5rem;
    margin-top: .5rem;
    
    
    display: flex;
     justify-content: space-between;
    
    flex-direction: row;
    
    
   
   /* display: flex;
     justify-content: space-between;
    
    flex-direction: row;*/
   
}

.especificacion ul li {
    color: rgb(0,44,121);
    margin:0;
    list-style: none;
}
    
.res_especif { 
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-left: 1em;
    padding-right: 1em;
    justify-content: flex-start;
    align-self: left;
}

.res_especif ul li {
    
    color: white;
    text-align: left;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    
}
/*
----------------
Perfil
----------------
*/
.datos {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.perfil {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
.fotoperfil {
    margin-top: 1em;
    height: 10em;
     width: 10em;/*valor inicial*/
    display: flex;
    align-self: center;
    
}

#datos2 {
    color: white;
    display: flex;
    flex-direction: column;
    text-align: left;
}

#datos2 ul li {
    background-color: rgb(114,160,204);
    margin-top: .5em;
    list-style: none;
    text-align: left;
    padding-right: 4em;
    padding-left: .5em;
    padding-top: .25em;
    padding-bottom: .25em;
    border-radius: 10px;
    border: none;
}

/*
----------------------------------------
CONDICIONES
---------------------------------------
*/

.condiciones { 
    position: relative;
    z-index: 9990;
    margin: 2rem;
    font-size: small;
   font-family: 'Oswald', sans-serif;
    color: white;
    font-size: .8rem;
    color: blue;
    background-color: whitesmoke;
    padding: 1em;
}

.condiciones_h5 { 
        font-family: 'Oswald', sans-serif;
        color: blue;
        font-size: 1.5rem;
        margin:auto;
  
}

.condiciones_h2 {
     font-weight:600;
    font-size: 1rem;
    color: cornflowerblue;
    
}

.condiciones_li p{
    list-style: none;
}

/*
---------------------------------------
BIENVENIDOS
---------------------------------------
*/

.tx_bienvenidos_h2 {
     font-family: 'Oswald', sans-serif;
    color: blue;
    font-size: 2rem;
    line-height: 2em;
    padding: 0em;
    margin: 0em
}

#bt_bienvenidos {
    
    padding: .25em;
    
    height: 3em;
    
    /* caja flexible */
    display: flex;
    
    /* elementos colocados en los extremos del eje principal */
    justify-content:flex-end;
    
    /* elementos centrados en el eje secundario */
    align-items: center;
}

.bt_bienvenidos {
    justify-content: flex-end;
}

.img_bienvenidos {
    
border: 0;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    width: 10rem;
    
    }

.bienvenidos {
    
    padding-top: em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-self: center;
    
    
}

.main_bienvenidos {
    display: flex;
    flex-direction: column;
   
    align-content: center;
    margin-top: 2rem;
    text-align: center;
    
}

.p_bienvenidos  {
    background-color: rgb(89,125,178);
    margin-left: .5em;
    margin-right: .5em;
    margin-top: 2em;
    margin-bottom: .5em;
    
}

.p_bienvenidos p {
    color: white;
    text-align: left;
    padding-left: .5em;
    padding-right: .5em;
    
}

.p_bienvenidos h2 {
    color: white;
    text-align: left;
    padding-top: .5em;
    padding-left: .5em;
    padding-right: .5em;
    
}

/*
pantalla novedades
*/
 
.novedades {
    color: white;
    font-size: 30px;
    margin-left: .5em;
}

.niebla{
	color: #FFF;
	font-size: 20px;
    margin-left: .5em;
    font-weight: 500;
}
/*parrafo con información para la recolección de agua de niebla*/
.infoniebla{
	color: rgb(0,44,121);
	 display: flex;
	 padding-left: 1em;
	padding-right: 1em;
	padding-top: .5em;
	line-height:normal;
	text-align: justify;
	font-size: 14px;
    padding-bottom: 1em;
}
/*imagen agua niebla*/
#aguaniebla {
	display: flex;
	color: rgb(0,44,121);
	justify-content: center;
	font-weight: 100;
	font-size: 15px;
	padding-top: em;
}
.huella{
	color: #FFF;
	display: flex;
    margin-top: 2em;
    margin-bottom: 1em;
	font-size: 20px;
    margin-left: .5em;
    font-weight: 500;
    text-align: left;
}
.ecoetiquetado{
	color: rgb(0,44,121);
	 display: flex;
	 padding-left: 1em;
	padding-right: 1em;
	padding-top: .5em;
    padding-bottom: 1em;
	line-height:normal;
	text-align: justify;
	font-size: 14px
}
.videoresponsive{
	position: relative;
	margin: .5em;
	height: 0;
	padding-bottom: 56.25%;
}
.videoresponsive iframe{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
}
.oculto {
    color: rgb(0,44,121);
	 display: flex;
	 padding-left: 1em;
	padding-right: 1em;
	padding-top: .5em;
    padding-bottom: 1em;
	line-height:normal;
	text-align: justify;
	font-size: 14px;
       
}
.leermas {
    color:white;
    font-size: 16px;
    padding-left: 1em;
    
}
.redescontacto { 
    box-sizing: border-box;
    width: 100%;
    padding: 1em;
    text-align: center;
}
/*
------------
contacto
------------
*/

form { 
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    
}


form label {
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
    font-size: .9em;
}


form textarea {
    width: 60%;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;
    font-size: 1em;
    display: block;
    text-align: left;
    margin: auto;
    position: relative;
}


form button {
    background-color: rgb(0,44,121);
    color: white;
    padding: 7px 35px;
    margin: 2rem auto 3rem auto;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    border-radius: 10px;
    border: none;
    transition-duration: 0.4s;

}

form button:hover{
    background-color: deeppink;
    color: white;
}


.confirmar {
    margin: 2em;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.confirmar h5 {
    color:rgb(0,44,121);
    font-size: 14px;
}

.confirmar p {
    color: rgb(0,44,121);
    font-size: 18px;
}
/*
---
obtencion
-----
*/

#textoinfo{
    background-color: rgb(0,44,121);
}
#textoinfo h1 {
    color: #FFF;
    font-weight: 100;
    font-size: 36px;
    padding-left: .25em;
    padding-top: .5em;
    margin-top: .25em;    
}
#textoinfo p {
    color: #FFF;
    font-weight: 100;
    font-size: 12px;
    padding-left: 1em;
    padding-bottom: .5em;
    padding-top: 2em;
    padding-right: 1em;
    
}

.info1 img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin-right: 1rem;
    margin-top: .5rem;
}

/*Pantalla más información*/
.listinfo {
    margin: 1em;
}
.listinfo ul li{
	list-style: none;
    margin: 1em;
}
.listinfo a{
	text-decoration: none;
	 color: rgb(0,44,121);
}
.listinfo a:hover{
	color: deeppink;
}

/*
----------------
pie
----------------
*/


footer {
    font-family: "oswald", sans-serif;
    font-size: 12px;
    color:  rgb(0,44,121);
    margin: 1em;
}


/*

------------------------------------------------
 "mediaqueries" para diseño multipantalla:
 reglas de estilo que SÓLO se aplican
 si se cumplen las condiciones entre paréntesis
 después de la instrucción "@media"
 y se encuentran  "encerradas" entre las llaves
------------------------------------------------
*/


/*
cuando la ventana del navegador mida
como mínimo 560px de ancho
*/
@media (min-width: 35em) {
    
    .galeria figure {
        width: 20%;
    }
    
    .galeria figure:hover figcaption {
        background-color: rgba(60,0,60,.5);
        top: 0;
        transition: all .5s ease-in;
    }
}

/*
cuando la ventana del navegador mida
como mínimo 800px de ancho
*/
@media (min-width: 50em) {
    .galeria h3 {
        margin-bottom: 2em;
    }
    h3 {
        background-color: rgba(0,60,60,.1);
    }
    .textos h3 {
        padding: 1em;
    }
}

/*
cuando la ventana del navegador mida
como mínimo 1200px de ancho
*/
@media (min-width: 75em) {
    .galeria {
        background-color: rgba(0,60,60,.15);
    }
    
    
}
