/*
h1{
  font-family: Roboto Condensed;
  color: #444444;
  font-weight: 300;
  font-size: 36px;
  text-rendering: optimizelegibility;
}
*/
/*
==============================================
Codigo de letras entre contenedores
==============================================
*/

body {
	background-color:#C0C0C0;		
}

.entre-contenedor{
height: auto;
width: 100%;
}

.entre-contenedor h1{
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
}


/*
==============================================
Contenedor simple
==============================================
*/
#contenedor1{
  background: url("../img/contact.jpg") fixed; //Imagen de fondo
  max-height: 100%;
  height: 400px; //altura del fondo
  position: relative;
  margin: 0 auto;
  padding: 5%;
  background-size: cover; //ajusta el fondo a la imagen

}

/*
==============================================
Contenedor compuesto
==============================================
*/

#contenedor2 {
  background: url("../img/espacio2.jpg") fixed; //Imagen de fondo
  max-height: 100%;
  height: 400px; //altura del fondo
  position: relative;
  margin: 0 auto;
  padding: 5%; 
  overflow: hidden;
  background-size: cover; //ajusta el fondo a la imagen
}

#contenedor2 .scene img {
  display: block;
  width: 100%; //evitamos que las imagenes se desborden
}

#contenedor2 .layer:nth-child(1){
  width: 250px; //Modificalo para cambiar el tamaño de la primera imagen de la lista
}

#contenedor2 .layer:nth-child(2){
  width: 100px; //Modificalo para cambiar el tamaño de la segunda imagen de la lista
}

/*
==============================================
Contenedor texto
==============================================
*/
#contenedor3 {
  background: url("../img/espacio3.jpg") fixed; //Imagen de fondo
  max-height: 100%;
  height: 400px; //altura del fondo
  position: relative;
  margin: 0 auto;
  padding-top: 25px;
  background-size: cover; //ajusta el fondo a la imagen
}

#contenedor3 h1{
  text-align: center;
  margin-top: 150px;
  color: #fff!important;
}


#contenedor4 {
  background: url("../img/contact.jfif") fixed; //Imagen de fondo
  max-height: 100%;
  height: 400px; //altura del fondo
  position: relative;
  margin: 0 auto;
  padding: 5%;
  background-size: cover; //ajusta el fondo a la imagen
}

#contenedor4 h1{
  text-align: center;
  margin-top: 150px;
  color: #fff!important;
}


/*PERSIANA*/
.persian {
	display: flex;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    height: 90vh;
  }
  
  .box {
    flex: 1;
    overflow: hidden;
    transition: .5s;
    margin: 0 2%;
    box-shadow: 0 20px 30px rgba(0,0,0,.1);
    line-height: 0;
  }
  
  .box > img {
    width: 200%;
    height: calc(100% - 10vh);
    object-fit: cover; 
    transition: .5s;
  }
  
  .box > span {
    font-size: 3.8vh;
    display: block;
    text-align: center;
    height: 10vh;
    line-height: 2.6;
  }
  
  .box:hover { flex: 1 1 50%; }
  .box:hover > img {
    width: 100%;
    height: 100%;
  }
   