@font-face {
    font-family: "Bebas";
    src: url("../../fonts/BEBAS___-webfont.eot");
    src: url("../../fonts/BEBAS___-webfont.eot?#iefix") format("embedded-opentype"),
         url("../../fonts/BEBAS___-webfont.woff") format("woff"),
         url("../../fonts/BEBAS___-webfont.ttf") format("truetype"),
         url("../../fonts/BEBAS___-webfont.svg#bebasregular") format("svg");
    font-weight: normal;
    font-style: normal;
}
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;}

*, *::before, *::after {
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box;}
 html, body{
  /*prevent horizontal scrolling */
  overflow-x: hidden;
  margin: 0px;}
body{
	font-family: bebas;
 	width: 100vw;
	height: 100vh;}
ul li{
  list-style: none;}
a{
  text-decoration: none;
  color: #333333;
  transition: 0.5s;}
a:hover{
	color: black;
	font-weight: 600;
	transition: 0.3s;}
/*************************************************/

#elemento{
  position: fixed;
  top:350px;
  z-index: 10;
}


/**************************************************/


/*
HOME
**************************************************/
p{
  color:#555555;}
.logo_portada{
  font-family: "Bebas", Helvetica, sans-serif;
  font-size: 1.5em;
  position: fixed;
  top: 50%;
  padding-left: 30px;
  padding-top: 15px;
}
.contenedor_datos{
  position: absolute;
  top: 55%;
  left:0px;
  padding: 45px 30px 0 30px;
  font-size: 0.9em;
}
.datos{
  line-height: 0.5;
}
.arquitectura{
  line-height: 2;
  text-transform: uppercase;
  text-decoration: none;
  color: #333333;
}
.flu-or_entexto{
  font-family: "Bebas", Helvetica, sans-serif;
}
.contenido_acordeon{
  padding-bottom: 3px;
}
.flu-or{
	font-family: "Bebas", Helvetica, sans-serif;
	font-size: 0.7em;
}
#copyright{
  position: relative;
  bottom: 0;
  padding-left: 30px;
  z-index: 6;
  font-size: 0.0001em;
  margin-bottom: 14px;
  right: 10px;}
#distribucion{
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.8em;
  padding-right: 30px;
  z-index: 6;
}

/************** home *****************************/


/*
VENTANA POP-UP
****************************************************/
.modalDialog,
.distribucion_mobiliario{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    pointer-events: none;
    overflow: hidden;
    font-size: 0.8em;
}
.modalDialog:target,
.distribucion_mobiliario:target  {
    opacity:1;
    pointer-events: auto;
}
.contenido_modal{
    width: 80%;
    height: 80%;
    position: relative;
    margin: 50px auto;
    padding:20px 30px 0 30px;
    background: #fff;
    overflow: auto;
}
.close {
    color: black;
    line-height: 25px;
    position: absolute;
    right: 10px;
    text-align: center;
    top: 10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
}
/*estilos Puntos de Distribucion*/
.tienda{
  color: grey;
}

/************ ventana pop-up ********************/

/*
PROYECTOS
**************************************************/
.fondo_proyectos{ 
	width: 100%;
	height: 100%;}
/*.proyectos ul li a:active{
 color: #FFF;
 background-color: black;
}*/
/************ proyectos ********************/
/*
SLIDER 
*************************************************/
#informacion{
  width: 100%;
  height: 50%;
  background-color: rgba(255,255,255,1);
  position: absolute;
  z-index: 7;
  font-size: 0.8em;
  opacity: 1;
  top:50%;
}
.texto_proyecto{
  font-family: "Bebas", Helvetica, sans-serif;
}
#informacion svg{
  display: block;
  margin: 50px auto 0;

}

#informacion a h3{
  font-family: "Bebas", Helvetica, sans-serif;
  margin: 5% 70%;
}
.plano {
  display: block;
  max-width: 90%;
  margin: 0 auto;
}
.dcha{
  position: absolute;
  top:3%;
  right: 4%;
  z-index: 8;
}
.cerrar /*a*/{
  font-size: 1.75em;
  text-decoration: none;
}
.creditos_foto,
.comprame{
  font-size: 0.8em;
  padding-left: 20px;
  padding-right: 20px;
}
.slideme {
  max-width: 100%;
  min-height: 50%;
  width: 100%;
  height: 50%;
}
.arrow{
padding: 0;
border: 0;
width: 40px;
position: absolute;
height: 40px;
right: 40%;
top: 50%;
z-index: 7;
color: black;
background-color: rgba(0,0,0,0);
font-size: 1.5em;
}
.prev{
  right: 50%;
}
.btn_esconder{
  color: black;
}
/*Define el tipo de letra del texto de la cartela del proyecto. Esto es para FireFox, ya que no acepta la definición del tipo dentro del svg*/
svg text tspan{
  font-family: "AndaleMono", "Andale Mono", monospace;
}
/*Define el aspecto de las imágenes del slider en pantallas pequeñas*/
.slideme li img{
  max-width: 100%;
}
/*Define las características de todos los div con "id=slider_algo" que son dentro de los cuales se encuentran las páginas de cada proyecto*/
div[id^="slider_"] {
  position: absolute;
  width: 100%;
  height: 100%;
   }
/************ slider ********************/

/*
ANIMACIONES
***********************************************/
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-moz-keyframes  fadeInLeft {
  0% {
    opacity: 0;
    transform: translate(-100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
  	opacity: 0;
    transform: translate(-100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
  .animacion_haciaderecha {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }
  .elemento_animado {
    -webkit-animation-duration: 0.3s;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-fill-mode: both;
    -moz-animation-duration: 0.3s;
    -moz-animation-timing-function: ease-in;
    -moz-animation-fill-mode: both;
    -o-animation-duration: 0.3s;
    -o-animation-timing-function: ease-in;
    -o-animation-fill-mode: both;
    animation-duration: 0.3s;
    animation-timing-function: ease-in;
    animation-fill-mode: both;
  }
/************ animaciones ********************/


/************************************************Estilos del index_lateral**********************************************/
/*=========================================================================================================================*/

/* -------------------------------- 

Main Components 

-------------------------------- */
main {
  position: relative;
  z-index: 2;
  /* fix bug on iOS */
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 1s;
  -moz-transition: -moz-transform 1s;
  transition: transform 1s;
  -webkit-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -moz-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
}

.navigation-is-open main {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}


/*ESTA PARTE DEL CÓDIGO DEFINE LA PANTALLA DE PROYECTOS*/
.pagina_proyectos {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.pagina_proyectos  .pag_proyectos_wrapper {
  /* all navigation content */
  height: 100%;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 1s;
  -moz-transition: -moz-transform 1s;
  transition: transform 1s;
  -webkit-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
}
.navigation-is-open .pagina_proyectos {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}
.navigation-is-open .pagina_proyectos .pag_proyectos_wrapper {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.8s;
  -moz-transition: -moz-transform 0.8s;
  transition: transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
}

.no-js main {
  height: auto;
  overflow: visible;
}

.no-js .pagina_proyectos {
  position: static;
  visibility: visible;
}
.no-js .pagina_proyectos .pag_proyectos_wrapper  {
  height: auto;
  overflow: visible;
  /*padding: 100px 5%;*/
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}


/*=========================================================================================================================*/
/*=========================================================================================================================*/

.navigation-is-open #interaccion_proyecto{
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

/*ESTA PARTE DEL CÓDIGO DEFINE LA PANTALLA DE PROYECTOS*/

.pagina_proyectos  .portada_desde_proyectos {
  /* all navigation content */
  height: 100%;
  overflow-y: auto;
  left:0;
  -webkit-overflow-scrolling: touch;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 1s;
  -moz-transition: -moz-transform 1s;
  transition: transform 1s;
  -webkit-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
}


/*=========================================================================================================================*/
/*===================================================MEDIA QUERIES=========================================================*/
/*=========================================================================================================================*/


@media all and (min-width:599px){

/*******************HOME*********************/
  .logo_portada{
    /*Código para centrar el elemento en la pabtalla*/
    position: absolute;
	  font-size: 1.2em;
    top: 50%;
    left: 50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
  }
  #elemento{
    display: none;
  }
.datos{
	line-height: 0.5;}
.contenedor_datos{
  position: absolute;
  top: 0px;
  left:0px;
  padding: 30px;
  max-width: 41%;
  font-size: 0.8em;
}
  .proyectos ul li{
    display: block;
    background-color: rgba(255,255,255,0);
  }
#copyright,.creditos_foto{
  position: absolute;
  bottom: 0;
  font-size: 0.6em;
  padding-left: 30px;
  z-index: 6;
  right: 10px;}
 .creditos_foto{
    font-size: 0.6em;  }
  
   /*******************SLIDER*********************/

  .menu_proyectos, .menu_proyectos_portada{
    position: absolute;
    margin-top: 20px;
    margin-left: 20px;
    font-size: 0.7em;
    top: 0px;
    z-index: 8;
    background-color: rgba(255,255,255,0);
  }
  .proyectos ul li{
    display: block;
    /*background-color: rgba(255,255,255,0);*/
    float: none;
  }
  .proyectos ul li a:hover{
 color: #FFF;
 background-color: none;
}
  #informacion{
    width: 50%;
    background-color: rgba(255,255,255,0.8);
    height: 100%;
    top:0%;
  }
  .forma_texto{
  max-width: 80%;
  margin: 10% auto;
}


    .slideme {
    max-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
  }
  .slideme li img{
  display: none;
}
/*Ubicación de las flechas que accionan el slider*/

  .arrow{
    right: 15px;
    top: 20px;
  }
  .prev{
    right: 65px;
  }

/*
Imágenes de fondo de los proyectos
******************************************/


  /*============MESA O==================*/
  #slider_mesaO .uno{background: url(../../img/img_jpg/mesaO_1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_mesaO .dos{background: url(../../img/img_jpg/mesaO_2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  /*============MESA III=============*/
  #slider_mesaIII .uno{background: url(../../img/img_jpg/mesaIII_1.jpg) no-repeat center center fixed;  -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_mesaIII .dos{background: url(../../img/img_jpg/mesaIII_2.jpg) no-repeat center center fixed; -webkit-background-size: cover;  -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_mesaIII .tres{background: url(../../img/img_jpg/mesaIII_3.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  /*============MESA L==================*/
  #slider_mesa_l .uno{ background: url(../../img/img_jpg/mesaL_1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_mesa_l .dos{background: url(../../img/img_jpg/mesaL_2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  /*============PALOMA==================*/
  #slider_paloma .uno{background: url(../../img/img_jpg/paloma_3.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_paloma .dos{background: url(../../img/img_jpg/paloma_2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_paloma .tres{background: url(../../img/img_jpg/paloma_4.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_paloma .cuatro{background: url(../../img/img_jpg/paloma_5.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_paloma .cinco{background: url(../../img/img_jpg/paloma_6.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_paloma .seis{background: url(../../img/img_jpg/paloma_7.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_paloma .siete{background: url(../../img/img_jpg/paloma_1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  /*============LÁMPARA==================*/
  #slider_lampara .uno{background: url(../../img/img_jpg/lampara_1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_lampara .dos{background: url(../../img/img_jpg/lampara_2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_lampara .tres{background: url(../../img/img_jpg/lampara_3.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_lampara .cuatro{background: url(../../img/img_jpg/lampara_4.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_lampara .cinco{background: url(../../img/img_jpg/lampara_5.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_lampara .seis{background: url(../../img/img_jpg/lampara_6.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  /*============LÁMPARA L=============*/
  #slider_lamparaL .uno{background: url(../../img/img_jpg/lamparaL_1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_lamparaL .dos{background: url(../../img/img_jpg/lamparaL_2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_lamparaL .tres{background: url(../../img/img_jpg/lamparaL_3.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_lamparaL .cuatro{background: url(../../img/img_jpg/lamparaL_4.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_lamparaL .cinco{background: url(../../img/img_jpg/lamparaL_5.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_lamparaL .seis{background: url(../../img/img_jpg/lamparaL_6.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  /*============DIEGO ESTRADA==================*/
  #slider_diego .uno{ background: url(../../img/img_jpg/mesaIII_1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_diego .dos{ background: url(../../img/img_jpg/mesaIII_2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  /*VIDEO*/
  video#bgvid { background: url(polina.jpg) no-repeat; position: fixed; right: 0; bottom: 0; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: -100; background-size: cover;}
  /*============TE=============*/
  #slider_te .uno{background: url(../../img/img_jpg/te_1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_te .dos{background: url(../../img/img_jpg/te_2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_te .tres{background: url(../../img/img_jpg/te_3.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_te .cuatro{background: url(../../img/img_jpg/te_4.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_te .cinco{background: url(../../img/img_jpg/te_5.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_te .seis{background: url(../../img/img_jpg/te_6.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_te .siete{background: url(../../img/img_jpg/te_7.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  /*============OTRAS NATURALEZAS==================*/
  #slider_naturalezas .uno{background: url(../../img/img_jpg/naturalezas_1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_naturalezas .dos{background: url(../../img/img_jpg/naturalezas_2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  /*============CUNA=============*/
  #slider_cuna .uno{background: url(../../img/img_jpg/cuna_1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_cuna .dos{background: url(../../img/img_jpg/cuna_2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_cuna .tres{background: url(../../img/img_jpg/cuna_3.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_cuna .cuatro{background: url(../../img/img_jpg/cuna_4.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_cuna .cinco{background: url(../../img/img_jpg/cuna_5.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
      /*============MOITOCONTO=============*/
  #slider_moitoconto .uno{background: url(../../img/img_jpg/moitoconto_0.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_moitoconto .dos{background: url(../../img/img_jpg/moitoconto_3.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_moitoconto .tres{background: url(../../img/img_jpg/moitoconto_4.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_moitoconto .cuatro{background: url(../../img/img_jpg/moitoconto_5.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_moitoconto .cinco{background: url(../../img/img_jpg/moitoconto_7.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
   #slider_moitoconto .seis{background: url(../../img/img_jpg/moitoconto_8.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
    /*============MESAY=============*/
  #slider_mesay .uno{background: url(../../img/img_jpg/mesay_1.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_mesay .dos{background: url(../../img/img_jpg/mesay_2.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_mesay .tres{background: url(../../img/img_jpg/mesay_3.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_mesay .cuatro{background: url(../../img/img_jpg/mesay_4.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_mesay .cinco{background: url(../../img/img_jpg/mesay_5.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
   #slider_mesay .seis{background: url(../../img/img_jpg/mesay_6.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
   #slider_mesay .siete{background: url(../../img/img_jpg/mesay_7.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
   #slider_mesay .ocho{background: url(../../img/img_jpg/mesay_8.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}


    /*============BIMBA=============*/
  #slider_bimba .uno{background: url(../../img/img_jpg/bimba_01.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_bimba .dos{background: url(../../img/img_jpg/bimba_02.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_bimba .tres{background: url(../../img/img_jpg/bimba_03.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}


    /*============MERA=============*/
  #slider_mera .uno{background: url(../../img/img_jpg/mera_02.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_mera .dos{background: url(../../img/img_jpg/mera_01.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_mera .tres{background: url(../../img/img_jpg/mera_03.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}


 /*============GAIA=============*/
  #slider_gaia .uno{background: url(../../img/img_jpg/gaia_01.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_gaia .dos{background: url(../../img/img_jpg/gaia_02.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_gaia .tres{background: url(../../img/img_jpg/gaia_03.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_gaia .cuatro{background: url(../../img/img_jpg/gaia_04.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_gaia .cinco{background: url(../../img/img_jpg/gaia_05.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
   #slider_gaia .seis{background: url(../../img/img_jpg/gaia_06.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}


    /*============IV=============*/
  #slider_iv .uno{background: url(../../img/img_jpg/iv_01.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_iv .dos{background: url(../../img/img_jpg/iv_02.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_iv .tres{background: url(../../img/img_jpg/iv_03.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_iv .cuatro{background: url(../../img/img_jpg/iv_04.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_iv .cinco{background: url(../../img/img_jpg/iv_05.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
   #slider_iv .seis{background: url(../../img/img_jpg/iv_06.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
   
    /*============LEA=============*/
  #slider_lea .uno{background: url(../../img/img_jpg/lea_01.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_lea .dos{background: url(../../img/img_jpg/lea_02.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_lea .tres{background: url(../../img/img_jpg/lea_03.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  

    /*============EUROPAN=============*/
  #slider_europan .uno{background: url(../../img/img_jpg/europan_01.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}


    /*============BANCO M=============*/
  #slider_m .uno{background: url(../../img/img_jpg/m_01.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_m .dos{background: url(../../img/img_jpg/m_02.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_m .tres{background: url(../../img/img_jpg/m_03.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_m .cuatro{background: url(../../img/img_jpg/m_04.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_m .cinco{background: url(../../img/img_jpg/m_05.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
   #slider_m .seis{background: url(../../img/img_jpg/m_06.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}

  
 /*============CLOPP=============*/
  #slider_clopp .uno{background: url(../../img/img_jpg/clopp_01.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_clopp .dos{background: url(../../img/img_jpg/clopp_02.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_clopp .tres{background: url(../../img/img_jpg/clopp_03.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_clopp .cuatro{background: url(../../img/img_jpg/clopp_04.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;}
  #slider_clopp .cinco{background: url(../../img/img_jpg/clopp_05.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
   #slider_clopp .seis{background: url(../../img/img_jpg/clopp_06.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
  #slider_clopp .siete{background: url(../../img/img_jpg/clopp_07.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}
   #slider_clopp .ocho{background: url(../../img/img_jpg/clopp_08.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover;  -o-background-size: cover; background-size: cover;}

   
   }