/* ------------------------- */
/* Estilos Generales */
/* ------------------------- */

:root {
  --corporativo: #e5e5e5;
  --rojo: #da0000;
  --blanco: #ffffff;
  --negro: #000000;
  --gris: #333333;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
    text-align: left;
    margin-bottom: 0;
}

p {
    font-weight: 400;
    color: #9a9ab0;
    font-size: 14px;
}

h1 {
    font-family: 'Kaushan Script', cursive;
    font-size: 40px;
    line-height: 45px;
}

.texto-naranja {
    font-weight: 300;
    color: orange;
}

.texto-blanco {
    font-weight: 700;
    color: #fff;
}

.texto-negro {
	color: #000;
}


.clear{clear: both;}

.boton-bajar a {
    position: absolute;
    bottom: 50px;
    display: inline-block;
    width: 60px;
    z-index: 99;
    left: calc(50% - 30px);
    animation: MoveUpDown 2s ease infinite;
}

.cotizar-flotante a {
    position: absolute;
    right: 50px;
    top: 20px;
    background: var(--rojo);
    font-size: 18px;
    color: var(--corporativo);
    padding: 5px 30px;
    text-decoration: none;
    transition: 0.5s ease all;
    z-index: 9;
}

.wz-desktop {
  text-align: center;
  position: absolute;
  display: inline-block;
  width: 90px;
  height: 70px;
  top: 10px;
  right: 10px;
  padding: 6px 10px 10px 10px;
  bottom: 20px;
  /* border-radius: 50%; */
  background: #626687;
  /* box-shadow: 2px 2px 6px rgb(0 0 0 / 40%); */
  z-index: 9999;
  transition: 0.5s ease all;
}

.wz-desktop span{
  display: inline-block;
  float: left;
  font-size: 10px;
  font-weight: 100;
  color: #fff;
  width: 100%;
  text-align: center;
  margin-top: -10px;
}

.wz-desktop .vineta {
  display: none;
    position: absolute;
    width: 103px;
    height: 29px;
    left: -115px;
    top: 11px;
    /* -webkit-animation: 8s ease 0s normal forwards 1 fadein;
    animation: 8s ease 0s normal forwards 1 fadein; */
    z-index: 999999999;
}

.wz-movil {
    display: none;
}

@keyframes fadein{
    0% { opacity:0; }
    40% { opacity:0; }
    45% { opacity:1; }
    95% { opacity:1; }
    100% { opacity:0; }
}

@-webkit-keyframes fadein{
  0% { opacity:0; }
  20% { opacity:0; }
  25% { opacity:1; }
  85% { opacity:1; }
  100% { opacity:0; }
}

.marcos{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
}

.marco-izquierdo{
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
  background: #ffffff;
  z-index: 9999999999;
  /* transition: 0.5s ease all; */

  animation-name: move-left;
  animation-delay: 3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.marco-arriba{
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #ffffff;
  z-index: 9999999999;

  animation-name: move-top;
  animation-delay: 3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.marco-derecho{
  position: absolute;
  top: 0;
  right: -10px;
  width: 10px;
  height: 100%;
  background: #ffffff;
  z-index: 9999999999;

  animation-name: move-right;
  animation-delay: 3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.marco-abajo{
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #ffffff;
  z-index: 9999999999;

  animation-name: move-bottom;
  animation-delay: 3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}


@keyframes move-left {
  from { left: -10px; }
  to { left: 0px; }
}
@keyframes move-top {
  from { top: -10px; }
  to { top: 0px; }
}
@keyframes move-right {
  from { right: -10px; }
  to { right: 0px; }
}
@keyframes move-bottom {
  from { bottom: -10px; }
  to { bottom: 0px; }
}
/* ------------------------- */
/* Estilos Generales */
/* ------------------------- */

/* ------------------------- */
/* intro */
/* ------------------------- */

#contenedor-intro{
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999999;
}

#intro-img{
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../media/intro.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* clip-path: circle(0% at center); */
  z-index: 99999999;

  /* -webkit-animation-name: maskin;
  animation-name: maskin;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;

  animation-delay: 1s; */
}

#intro-logo{
  position: absolute;
  width: 500px;
  z-index: 999999999;
  left: calc(50% - 250px);
  top: calc(50% - 200px);
  opacity: 0;
}



@-webkit-keyframes maskin {
  0% {
  clip-path: circle(0% at center);
  }
  100% {
  clip-path: circle(70% at center);
  }

}

@keyframes maskin {
  0% {
  clip-path: circle(0% at center);
  }
  100% {
  clip-path: circle(70% at center);
  }

}

@-webkit-keyframes desaparecer {
  0% {
  opacity: 1;
  }
  100% {
  opacity: 0;
  }

}

@keyframes desaparecer {
  0% {
  opacity: 1;
  }
  100% {
  opacity: 0;
  }

}

@-webkit-keyframes zoomIn {
 0% {
 opacity: 0;
 -webkit-transform: scale3d(.3, .3, .3);
 transform: scale3d(.3, .3, .3);
 }
 50% {
 opacity: 1;
 }
 }
 @keyframes zoomIn {
 0% {
 opacity: 0;
 -webkit-transform: scale3d(.3, .3, .3);
 transform: scale3d(.3, .3, .3);
 }
}

/* ------------------------- */
/* intro */
/* ------------------------- */

/* ------------------------- */
/* Botonera */
/* ------------------------- */

.botonera{
  position: absolute;
  right: 220px;
  top: 34px;
}

.botonera li{
    float: left;
    list-style:none;
}
.botonera li a{
  font-size: 14px;
  font-weight: 300;
    color: #9a9bb2;
    margin: 5px 0 0 20px;
    border-left: 1px solid #9a9bb2;
    text-decoration: none;
    padding-left: 20px;
}

/* ------------------------- */
/* Botonera */
/* ------------------------- */

/* ------------------------- */
/* Header */
/* ------------------------- */

header{
  position: fixed;
  width: 100%;
  height: 80px;
  background: var(--blanco);
  top: 0px;
  left: 0px;
  z-index: 1;

  transition: 1s ease all;
}

.logo-barrio-cueto{
  display: inline-block;
  width: 116px;
  height: 60px;
  margin: 15px 0 0 50px;
}

.cotizar-header a{
  position: absolute;
  right: 100px;
  top: 9px;
  background: var(--rojo);
  font-size: 16px;
  font-weight: 100;
  color: #fff;
  padding: 26px 25px;
  text-decoration: none;
}
/* ------------------------- */
/* Header */
/* ------------------------- */


/* ------------------------- */
/* Proyecto */
/* ------------------------- */



.proyecto {
	position: relative;
  background: var(--corporativo);
  text-align: center;
}

.contendor-proyecto{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
}

.centro-multiuso-galeria {
    position: relative;
    display: inline-block;
    width:  100%;
    height: 100%;
    margin: 0 0 0 0;
    /* vertical-align:top; */
}

.botonabsoluto a{
position: absolute;
background: var(--rojo);
padding: 20px;
border-radius: 50px;
color: #ffffff;
top: 20px;
left: 150px;
z-index: 10;
text-decoration:none;
}

.contendor-vertical-amarillo-galeria{
  width: 15%;
  height: 100%;
  display: inline-block;
  float: left;
  position: relative;
  background: var(--corporativo);
  z-index: 1;

}

.cont-galeria{
  width: 90%;
  height: 400px;
  display: inline-block;
  margin-top: calc(50vh - 200px);
}

.cont-galeria-middle{
  width: 100%;
  height: 300px;
  display: inline-block;
  position: relative;

}

.texto-vertical-galeria {
  white-space: nowrap;
    display: inline-block;
    overflow: visible;
    transform: rotate(-90deg);
    transform-origin: 0;
    position: absolute;
    /* bottom: 0px; */
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    /* width: 240px; */
    color: var(--negro);
    text-transform: uppercase;
}

.frase{
  width: 800px;
  height: 100px;
  position: absolute;
  left: 50%;
  margin-left: -400px;
  top: 40%;
  margin-top: -20px;
  z-index: 99;
}

.cont-promo{
  display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: center;
}

.promo-1{
  width: 300px;
}
.promo-linea{
  width: 1px;
  height: 100px;
  background: #fff;
  margin: 0 50px;
}
.promo-2{
  width: 400px;
}

.huincha {
    position: absolute;
    top: 70px;
    left: 5px;
    width: 377px;
    z-index: 100;

    animation: myAnim2 2s ease 4s 1 normal forwards;
}

.huincha-movil {
  display: none;
  animation: myAnim2 2s ease 4s 1 normal forwards;
}



.frase h1{
  font-family: 'Kaushan Script', cursive;
  font-size: 65px;
  color: #ffffff;
  text-align: center;
}

.frase-l{
  width: 800px;
  height: 100px;
  position: absolute;
  left: 50%;
  margin-left: -400px;
  top: 30%;
  margin-top: -20px;
  z-index: 99;
}

.frase-l h1{
  font-family: 'Montserrat', sans-serif;
  /* font-size: 50px; */
  text-align: center;
}

.primera-l{
  color: #ffffff;
  font-size: 20px;
  line-height: 22px;
  opacity: 0;
  animation: myAnim 2s ease 4s 1 normal forwards;
}

.segunda-l{
  color: #FFAD5F;
  font-size: 45px;
  line-height: 50px;
  opacity: 0;
  animation: myAnim 2s ease 5s 1 normal forwards;
}

.segunda-l-2{
  color: #FFAD5F;
  font-size: 55px;
  line-height: 50px;
  opacity: 0;
  animation: myAnim 2s ease 5s 1 normal forwards;
}

.tercera-l{
  line-height: 23px;
  font-size: 15px;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  animation: myAnim 2s ease 6s 1 normal forwards;
}

.tercera-l span{
  font-size: 25px;
}

.cuarta-l{
  margin-top: 30px;
  display: inline-block;
  line-height: 23px;
  font-size: 15px;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  animation: myAnim 2s ease 6s 1 normal forwards;
}
.cuarta-text{
  float: left;
  display: inline-block;
  line-height: 23px;
  font-size: 20px;
  text-align: left;
  color: #ffffff;
}

.cuarta-l span{
  float: left;
  display: inline-block;
  margin: -3px 5px 0 5px;
  width: 40px;
}

.quinta-l{
  margin-top: 0;
    display: block;
  line-height: 12px;
  font-size: 15px;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  animation: myAnim 2s ease 6s 1 normal forwards;
}

.sexta-l{
  margin-top: 30px;
    display: block;
  line-height: 12px;
  font-size: 15px;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  animation: myAnim 2s ease 6s 1 normal forwards;
}

.septima-l{
  margin-top: 30px;
  display: inline-block;
  line-height: 23px;
  font-size: 15px;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  animation: myAnim 2s ease 6s 1 normal forwards;
}

.septima-l img{
  width: 250px;
  float: left;
  display: inline-block;
  margin: -10px 0 0 0;
}


@keyframes myAnim {
	0% {
		opacity: 0;
		transform: scale(0.6);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes myAnim2 {
	0% {
		transform: translateX(-50px);
	}

	100% {
		transform: translateX(0);
	}
}

.overlay-img{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 98;
  background: #0b0019;
  opacity: .6;
}

.imagenes-facilities{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.imagenes-facilities img{
  position: absolute;
  left:-10000%; right: -10000%;
  top: -10000%; bottom: -10000%;
  margin: auto auto;
  min-width: 1000%;
  min-height: 1000%;
  -webkit-transform:scale(0.1);
  transform: scale(0.1);
}
.ci-1{
  /* background-image: url("../media/galeria/salon-work.jpg"); */
}
.te-1{
  bottom: -13px;
}
.te-2{
  bottom: 20px;
}

.te-3{
  bottom: 38px;
}

.te-4{
  bottom: -23px;
}

.te-5 {
    bottom: 50px;
}


.fp-controlArrow.fp-prev, .fp-controlArrow.fp-next {
    /* display: none; */
}

.fp-controlArrow.fp-next {
    right: 10px;
    background-image: url(../media/flecha-der.svg);
    /* border-width: 20px 0 20px 20px; */
    /* border-color: transparent transparent transparent #000; */
}

.fp-controlArrow.fp-prev {
    left: 10px;
    background-image: url(../media/flecha-izq.svg);
    /* border-width: 20px 0 20px 20px; */
    /* border-color: transparent transparent transparent #000; */
}

.fp-controlArrow.fp-next, .fp-controlArrow.fp-prev {
    top: 55%;
    width: 40px;
    height: 70px;
    background-position: center;
    background-size: 100%;
    border: none;
}

.descripcion-header {
    float: left;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 10px;
    text-transform: uppercase;
}

.descripcion-imagen{
	float: left;
	display: block;
	width:100%;
	/* height: 500px; */
  margin-bottom: 10px;
}


.miniaturas{
  position: absolute;
    width: 100%;
    bottom: 20px;
    z-index: 9;
    /* left: calc(50% - 250px); */
    background: #ffffff80;
    padding: 10px 20px 5px 15px;
}

.miniatura-img{
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-left: 1px;
  z-index: 9999;
  transition: 1s ease all;
  opacity: .8;
}

.miniatura-img:hover{
  transform: scale(1.1);
  opacity: 1;
}


.puntos-navegacion{
  position: absolute;
    width: 20px;
    height: 200px;
    top: calc(50% - 100px);
    right: 30px;
    z-index: 9;
}

.cont-puntos{
  position: absolute;
  width: 20%;
  height: 100%;
  z-index: 9999999999999;
}

.puntos-navegacion li{
  list-style:none;
}

.puntos-navegacion li a{
  float: left;
width: 5px;
height: 5px;
border-radius: 50px;
background: #ffffff;
margin: 10px;
margin-left: 5px;
}

.puntos-navegacion li a.on{
width: 10px;
height: 10px;
margin-left: 2px;
}


/* ------------------------- */
/* proyecto */
/* ------------------------- */


/* ------------------------- */
/* proyectoInfo */
/* ------------------------- */

.proyectoInfo {
	position: relative;
  text-align: center;
}

.vidaDeBarrio-desktop {
    /* float: left; */
    /* display: block; */
    width: 100%;
    height: 100%;
}

.fachada-barrio-cueto{
  float: left;
  position: relative;
  display: block;
  width: 69%;
  height: 90vh;
  margin-top: 70px;
  text-align: center;
  vertical-align:top;
  transition: 1s ease all;

  background: url('../media/fachada-barrio-cueto.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.texto-proyectoInfo{
  float: left;
  position: relative;
  display: block;
  width: 30%;
  margin-top: 120px;
  text-align: left;
  padding-left: 30px;
}



.titulo-proyectoInfo {
  float: left;
  position: relative;
  display: block;
  width: 90%;
  margin-top: 10px;
}

.espacio-izq-titulo{
  margin-left: 70px;
}

.titulo-proyectoInfo h1 {
    font-family: 'Kaushan Script', cursive;
    font-size: 40px;
    color: #868686;
    text-align: left;
    line-height: 45px;
}

.p-proyectoInfo{
  position: relative;
  display: inline-block;
  width: 90%;
  margin-top: 20px;
}

.texto-proyectoInfo ul {
    width: 90%;
    float: left;
    margin-left: 13px;
    margin-top: 10px;
}

.texto-proyectoInfo ul li{
  list-style:none;
  position: relative;
  margin-bottom: 7px;
}

.texto-proyectoInfo ul li::before {
  position: absolute;
  left: -10px;
  top: 1px;
  content: "•";
  font-size: 12px;
  color: #868686;
}

/* ------------------------- */
/* proyectoInfo */
/* ------------------------- */



/* ------------------------- */
/* VidaDeBarrio */
/* ------------------------- */

.vidaDeBarrio {
	position: relative;
  text-align: center;
}


.vidaDeBarrio-movil{
  display: none;
}

.mapa{
  position: relative;
  display: inline-block;
  width: 55%;
  height: 80vh;
  margin-top: 100px;
  text-align: center;
  vertical-align:top;

  opacity: 0;
  transition: 1s ease all;
}

.mapa img{
  height: 100%;
}

.texto-vida{
  position: relative;
  display: inline-block;
  width: 44%;
  top: 140px;
  text-align: left;
}

.titulo-vida{
  position: relative;
  display: inline-block;
  width: 90%;
  text-align: center;
}

.p-vida{
  position: relative;
  display: inline-block;
  width: 90%;
  margin-top: 10px;
}

.listado{
  position: relative;
  display: inline-block;
  width: 90%;
  margin-top: 30px;
}

.cont-contador{
  width: 195px;
  margin-left: 20px;
    float: left;
    display: block;
}

.cada-linea{
  margin: 5px 0 0 0;
}

ol {
  max-width: 225px;
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 20px;
}
ol li {
  margin: 0 0 0.5rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
  font-size: 12px;
  font-weight: 400;
  color: #9a9ab0;
}
ol li::before {
  content: counter(my-awesome-counter);
    color: #ffffff;
    font-size: 11px;

    font-weight: 600;
    position: absolute;
    --size: 32px;
    left: -30px;
    line-height: 20px;
    width: 20px;
    height: 20px;
    top: 0;
    background: #da0000;
    border-radius: 50%;
    text-align: center;
}

ol li#x::before {background-color: #7177a0;}
ol li#a::before {content: "7";}
ol li#b::before {content: "8";}
ol li#c::before {content: "9";}
ol li#d::before {content: "10";}
ol li#e::before {content: "11";}
ol li#f::before {content: "12";}
ol li#g::before {content: "13";}

ol li.icono-metro::before {
  content: url("../media/metro.svg")!important;
  background-color: #ffffff00!important;
  width: 28px;
  left: -34px;
  top: 3px;
}

.img-vidaDeBarrio{
  position: relative;
  display: inline-block;
  width: 80%;
  height: 100%;
  top: 0;
  text-align: center;
  margin-top: 20px;

  opacity: 0;
  transition: 1s ease all;
}
/* ------------------------- */
/* VidaDeBarrio */
/* ------------------------- */

/* ------------------------- */
/* GaleriaImagenes */
/* ------------------------- */

.galeriaImagenes {
  position: relative;
}

.contenedor-galeriaImagenes{
  width: 100%;
  /* height: calc(100vh - 80px); */
  /* background: red; */
  margin-top: 80px;
}

.square-container {
  display: flex;
  flex-wrap: wrap;
}

.square {
  position: relative;
  flex-basis: calc(20%);
  box-sizing: border-box;
}

a.square:hover .info-leyenda{
    opacity: 1;
}

a.square:hover .info-square{
    opacity: .7;
}

.info-square{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: #47197f;
  opacity: 0;
  z-index: 9;
  mix-blend-mode: multiply;


  transition: .6s ease all;
}

.info-leyenda{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 99;
  opacity: 0;
  text-align: center;

  display:flex;
  justify-content: center;
  align-items: center;

  transition: .6s ease all;
}

.titulo-leyenda{
  float:left;
  width: 100%;
  display: block;
  font-size: 12px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.icon-leyenda{
  display: inline-block;
  width: 25px;
  margin-top: 5px;
}

.color1{background: #ccc222;}
.color2{background: green;}
.color3{background: #000000;}
.color4{background: blue;}
.color5{background: yellow;}

.square::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.square .content {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
}



.entorno-imagen{
	float: left;
	display: block;
	width:80%;
	/* height: 500px; */
  margin-bottom: 10px;
}

.entorno-cont{
	float: left;
	display: block;
	width:19%;
	/* height: 500px; */
  margin-bottom: 10px;
  margin-left: 1%;
}

.entorno-mapa{
	float: left;
	display: block;
	width:100%;
	/* height: 500px; */
  margin-bottom: 10px;
}

.entorno-texto {
    float: left;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 10px;
    text-transform: uppercase;
}
/* ------------------------- */
/* GaleriaImagenes */
/* ------------------------- */


/* ------------------------- */
/* Plantas */
/* ------------------------- */


.plantas {
	position: relative;
  background: rgb(89,84,126);
  background: -moz-linear-gradient(90deg, rgba(89,84,126,1) 0%, rgba(118,130,170,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(89,84,126,1) 0%, rgba(118,130,170,1) 100%);
  background: linear-gradient(90deg, rgba(89,84,126,1) 0%, rgba(118,130,170,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#59547e",endColorstr="#7682aa",GradientType=1);
  text-align: center;
}

.cont-paso{
  display: inline-block;
  width: 250px;
  margin-bottom: 10px;
}

.paso1{
  float: left;
  display: block;
  width: 60px;
  height: 65px;
}

.flecha-derecha{
  float: left;
  display: block;
  width: 40px;
  height: 40px;
  margin: 20px 0 0 20px;
}

.flecha-abajo{
  float: left;
  display: block;
  width: 40px;
  height: 40px;
  margin-left: 30%;
}

.texto-paso{
  display: block;
  float: left;
  width: 100px;
  margin-left: 10px;
  margin-top: 12px;

  font-weight: 300;
  text-align: left;
  font-size: 16px;
  color: #ffffff;
}

.texto-paso2{
  display: block;
  float: left;
  width: 140px;
  margin-left: 10px;
  margin-top: 12px;

  font-weight: 300;
  text-align: left;
  font-size: 16px;
  color: #ffffff;
}

.contendor-fijo{
  display: inline-block;
  margin-top: 70px;
  width: 90%;
  height: 90vh;
}

.tipo-boton a{
    display: inline-block;
    width: 240px;
    height: 50px;
    background: url(../media/boton.svg);
    margin: 0 0 0 0;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    padding: 15px 0 0 0;
    text-decoration: none;
}

.tipo-boton a:hover{
    background: url(../media/boton-hover.svg);
}

.tipo-boton a.seleccionado{
    background: url(../media/boton-hover.svg);
}

.parentesis-grande-izq {

    position: relative;
    display: inline-block;
    width: 80px;
    height: 700px;
    margin: 20px 0 0 0;
}

.centro-informacion {
    position: relative;
    display: inline-block;
    width:  100%;
    margin: 80px 0 0 0;
    vertical-align:top;
}

.centro-informacion .izq{
  position: relative;
  display: inline-block;
  width: 20%;
  margin: 0px 0 0 0;
  /* background: #ffffff33; */
  vertical-align:top;

  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
  animation-name: fadeIn ;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
}

.contenedor-pisotipo{

  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
  animation-name: fadeIn ;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
}

.centro-informacion .centro{
  position: relative;
  display: inline-block;
  width: 36%;

  margin: 0px 0 0 0;
  /* background: #ffffff33; */
  vertical-align:top;
}

.centro-informacion .der{
  position: relative;
  display: inline-block;
  width: 40%;
  height: 400px;
  margin: 0px 0 0 0;
  /* background: #ffffff33; */
  vertical-align:top;
}

.centro-informacion .centro .centro-izq{
  position: relative;
  display: block;
  float: left;
  width: 49%;
  height: 50px;
  margin: 0px 0 0 0;
}

.centro-informacion .centro .centro-der{
  position: relative;
  display: block;
  float: left;
  width: 49%;
  height: 50px;
  margin: 0px 0 0 0;
}

.contenedor-paso2{
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
  animation-name: fadeIn ;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
}

.contenedor-paso3{
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in;
  animation-name: fadeIn ;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.parentesis-grande-der {
    /* position: absolute;
    width: 80px;
    right: 10%;
    top: 55%;
    transform: translate(0%, -50%); */

    position: relative;
    display: inline-block;
    width: 80px;
    height: 700px;
    margin: 20px 0 0 0;
}

select {
  border: 0 none;
  color: #FFFFFF;
  background: transparent;
  font-size: 14px;
  font-weight: 300;
  padding: 10px 10px;
  width: 378px;
  *width: 350px;
  *background: #58B14C;

  -webkit-appearance:none;

}

option {
  color: #000;
}

*:focus {outline:none !important}

.custom-select {
  overflow: hidden;

  background: rgb(255,179,109);
background: -moz-linear-gradient(90deg, rgba(255,179,109,1) 0%, rgba(194,102,179,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(255,179,109,1) 0%, rgba(194,102,179,1) 100%);
background: linear-gradient(90deg, rgba(255,179,109,1) 0%, rgba(194,102,179,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffb36d",endColorstr="#c266b3",GradientType=1);
}

/* ------------------------- */
/* plantas */
/* ------------------------- */


/* ------------------------- */
/* Depto */
/* ------------------------- */

.contenedor-depto{
  width: 100%;
  height: 100%;
}

.depto-volver{
  float: left;
  display: block;
  width: 100%;
  height: 50px;
}

.depto-volver a{
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
  text-decoration: none;
}

.depto-volver a .volver-img{
  float: left;
  display: block;
  width: 40px;
}

.depto-volver a .volver-texto{
  float: left;
  display: block;
  width: 182px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #9a9ab0;
  margin-left: 11px;
}

.depto-izq{
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 90vh;
}
.depto-centro{
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38%;
  height: 90vh;
  margin-left: 2%;
  flex-wrap: wrap;
  align-content: center;
}
.depto-der{
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 90vh;
}

.depto-textos{
  display: block;
  float: right;
  text-align: right;
  width: 300px;
  margin-bottom: 20px;
}

.depto-textos h1{
  display: block;
  float: right;
  text-align: right;
  width: 300px;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #9a9ab0;
}

.texto-renta {
    width: 100%;
    display: block;
    float: left;
    text-align: left;
    width: 300px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #333333;
    margin-top: 12px;
    margin-left: 10px;
}

.depto-plantaimg{
  display: block;
  float: right;
  width: 100%;
}

.texto-referencia{
  width: 80%;
  display: block;
  float: left;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #333;
  margin: 10px 0 0 10%;
}


.depto-cotizar{
  display: block;
  float: left;
  text-align: left;
  width: 100%;
  margin: 0 0 0 50px;
}

.depto-cotizar h1{
  display: block;
  float: left;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #9a9ab0;
}

#pla-form{
  float: left;
  display: block;
  margin: 0px 0 0 50px;
}


.depto-der input[type=text] {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #9a9ab0;
    float: left;
    display: block;
    width: 100%;
    border: solid thin #9a9ab0;
    margin: 6px 0 0 0;
    padding: 5px 10px;
    background: #ffffff00;
    border-radius: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.depto-der textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #9a9ab0;
    float: left;
    display: block;
    width: 100%;
    height: 106px;
    border: solid thin #9a9ab0;
    margin: 6px 0 0 0;
    padding: 10px;
    background: #ffffff00;
    border-radius: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.depto-der input[type=submit] {
    display: inline-block;
    float: right;
    font-weight: 600;
    color: #9a9ab0;
    font-size: 16px;
    text-align: center;
    margin: 10px 0 0 0;
    padding: 9px 30px;
    background: #ffffff00;
    border: none;
    cursor: pointer;
}

/* ------------------------- */
/* Depto */
/* ------------------------- */


/* ------------------------- */
/* Inicio Agradecimiento */
/* ------------------------- */

.inicio-agradecimiento {
  position: relative;
  background: #000;
    background: url('../media/fondo-contacto.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

@keyframes MoveUpDown {
  0%, 100% {
    bottom: 5px;
  }
  50% {
    bottom: 20px;
  }
}

/* ------------------------- */
/* Inicio Agradecimiento */
/* ------------------------- */

/* ------------------------- */
/* Footer */
/* ------------------------- */

.footer {
	position: relative;
    background: url('../media/fondo-contacto.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
		/* background-size: 100%; */
}

.footer .texto {
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 0px;
    background: url(../media/transparente-contacto.png) repeat;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    color: #fff;
}

#contacto-form{
  display: inline-block;
  position: relative;
    width: 30%;
    margin: 100px 0 0 0;
	}

  .texto-vertical-contacto {
    display: inline-block;
    text-align: left;
    width: 500px;
    color: var(--blanco);
}

  #respa{
    position: absolute;
    top: 48%;
    right: 0;
    width: 300px;
    padding: 10px 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
  	font-size:14px;
  	font-weight:900;
    z-index: 9999;
    background: Green;

  }

input[type=text] {
  font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--blanco);

    float: left;
    display: block;
    width: 100%;
    border: solid thin #ffffff;
    margin: 6px 0 0 0;
    padding: 5px 10px;
    background: #ffffff00;
    border-radius: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

textarea {
  font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--blanco);

    float: left;
    display: block;
    width: 100%;
    height: 106px;
    border: solid thin #ffffff;
    margin: 6px 0 0 0;
    padding: 10px;
    background: #ffffff00;
    border-radius: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

input[type=submit] {
  display: inline-block;
  float: right;
  font-weight: 600;
  color: var(--blanco);
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  padding: 9px 30px;
  background: #ffffff00;
  border: none;
  cursor: pointer;
}

.boton-formulario a{
  display: inline-block;
  float: right;
  font-weight: 600;
  color: var(--blanco);
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  padding: 9px 30px;
  background: #ffffff00;
  border: none;
  cursor: pointer;
  text-decoration: none;

}

.boton-cotizador a{
  display: inline-block;
  float: right;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  padding: 9px 30px;
  background: #ffffff00;
  color: #9a9ab0;
  border: none;
  cursor: pointer;
  text-decoration: none;

}



.huincha-footer{
    display: inline-block;
    width: 100%;
    height: 70px;
    background: #ffffff1c;
    margin-bottom: 20px;
    z-index: 1;
    transition: 1s ease all;
}

.logo-cueto-footer {
    display: inline-block;
    float: left;
    width: 10%;
    height: 60px;
    margin: 12px 0px 0 50px;
}

.texto-condiciones-movil {
  display: none;
}

.texto-condiciones {
    width: 60%;
    font-size: 12px;
    font-weight: 300;
    color: var(--blanco);
    float: left;
    display: inline-block;
    margin: 10px 0 0 5%;
}

.logo-ikant-footer {
    display: inline-block;
    float: right;
    width: 10%;
    height: 60px;
    margin: 12px 50px 0 0px;
}


.cont-urmeneta {
    width: 100%;
    display: inline-block;
    margin: 12px 0 10px 0px;
}

.logo-urmeneta {
    width: 220px;
    display: inline-block;
    margin: 12px 0 0px 0px;
}

.ormuz-contenedor {
    width: 50%;
    display: inline-block;
    margin-bottom: 10px;
}

.logo-ormuz {
  display: inline-block;
float: left;
width: 130px;
    margin: 10px 0px 0 0px;
    /* background-color: var(--blanco); */
}



.texto-ormuz {
  width: calc(100% - 140px);
font-size: 12px;
font-weight: 300;
color: var(--blanco);
float: left;
display: inline-block;
padding-left: 14px;
margin-left: 10px;
text-align: left;
border-left: thin solid #fff;
}

.guion-rut {
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
    float: left;
    display: block;
    height: 35px;
    margin: 2px 0 0 0;
    padding: 10px;
}

.informacion{
  width: 30%;
  display: inline-block;
  margin: 12px 0 0px 0px;
}

.direccion {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: var(--blanco);
    float: left;
    display: inline-block;
    margin: 10px 0 0 0;
}

.direccion i{
  width: 20px;
  float: left;
  display: inline-block;
  margin: 0 0 0 0;
}

.direccion p{
  width: 80%;
  float: left;
  display: inline-block;
  margin: 0 0 0 5px;
  text-align: left;
}

.direccion p a{
  color: var(--blanco);
  text-decoration: none;
}

.telefono {
    /* width: 170px; */
    font-size: 14px;
    font-weight: 400;
    color: var(--blanco);
    float: left;
    display: block;
    margin: 10px 0 0 0;
}

.telefono i{
  width: 20px;
  float: left;
  display: inline-block;
  margin: 0 0 0 0;
}

.telefono p{
  /* width: 80%; */
  float: left;
  display: inline-block;
  margin: 0 0 0 5px;
  text-align: left;
  color: var(--blanco);
}

.telefono p a{
  color: var(--blanco);
  text-decoration: none;
}

.espacio-izq{
  margin-left: 10px;
}

.espacio-izq-redes{
  margin-left: 10px;
}

.redes {
    font-size: 14px;
    font-weight: 400;
    color: var(--blanco);
    float: left;
    display: inline-block;
    margin-top: 10px;
}

.redes i{
  width: 40px;
  float: left;
  display: inline-block;
  margin: 0 0 0 0;
}



/* ------------------------- */
/* Footer */
/* ------------------------- */
