/* GENERALES */

.destacar {
  border: 1px solid red;

  box-sizing: border-box;
}

body,
html {
  background: white;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px;
  height: 100%;
  width: 100%;
  color: #000;
}

a:focus {
  outline: none;
  text-decoration: none;
}

img:focus {
  outline: none;

  text-decoration: none;
}

.solo-mobile {
  display: none;
}

.solo-desktop {
  display: block;
}

@media only screen and (max-width: 991px) {
  .solo-mobile {
    display: block !important;
  }

  .solo-desktop {
    display: none !important;
  }
}

.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.relative {
  position: relative;
}

.container {
  border-left: 0px solid red;
  border-right: 0px solid red;
}

.sin-padding {
  padding: 0px;
}

section {
  position: relative;
  float: left;
  width: 100%;
}

/* Flechas Slides */

.flechas img {
  max-width: 70px;
}

.flechas {
  display: none;
}

.slide .flechas {
  display: block;
}

@media only screen and (max-width: 991px) {
  .flechas {
    display: block;
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 0;
    right: 0;
  }
}

.flechas .siguiente {
  position: absolute;
  right: 30px;
  z-index: 9000;
  opacity: 0.6;
  top: 50%;
  transform: translateY(-50%);
  height: 70px;
}

.flechas img:hover {
  cursor: pointer;
  opacity: 0.6;
}

.flechas .anterior {
  position: absolute;
  left: 30px;
  z-index: 9000;
  opacity: 0.6;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  height: 70px;
}

/* BOTONES */

.btn {
  position: relative;
  color: white;
  transition: all 0.3s;
}

.btn-three:hover::before {
  opacity: 1;
  transform: scale(1, 1);
  border-radius: 0.25rem;
}

.btn-three::after {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.25rem;
}

.btn-three:hover::after {
  transform: scale(1, 0.1);
  opacity: 0;
}

button:focus {
  outline: none;
}

.btn-transparente {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  padding: 8px 20px 8px 20px;
  font-size: 13px;
}

.btn-lugares {
  background: #129fd8;
  color: white;
  text-transform: uppercase;
  padding: 5px 5px 5px 5px;
  font-size: 11px;
  border-radius: 0.25rem;
}

.btn-lugares:hover,
.btn-lugares.activo {
  background: #333334;
  color: white;
}

.btn-idea {
  background: #129fd8;
  color: white;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 20px 8px 20px;
  border-radius: 0.25rem;
}

.btn-idea:hover {
  color: white;
}

.btn-idea:disabled {
  background: #5f5f5f;
}

.btn-idea-gris {
  background: #444;
}

.btn-idea-gris:hover {
  background: #666;
}

/* HEADER */

section.header {
  background: #06131d;
  height: 113px;
  position: relative;
  z-index: 1000;
}

section.header .logo {
  width: 130px;
  background: rgba(0, 0, 0, 0.5);
  padding: 0px 15px 15px 15px;
  position: absolute;
  z-index: 100;
  padding-top: 15px;
  border: 1px solid #868686;
  border-top: 0px;
}

section.header .logo img {
  max-width: 100px;
}

section.header .menu .menu-wp {
  list-style: none;
  border-bottom: 1px solid white;
  padding: 0px;
  margin: 0px;
}

section.header .menu .menu-wp li {
  position: relative;
  overflow: hidden;
  float: left;
  padding: 0px;
  margin: 0px;
}

section.header .menu .menu-wp li a {
  font-size: 14px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  padding: 8px 15px 8px 15px;
  float: left;
}

section.header .menu .menu-wp a:hover {
  text-decoration: none;
}

section.header .menu .menu-wp .current-menu-item {
  color: #65ccff;
}

section.header .menu .menu-wp li:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: white;
  transition: left 0.3s;
  z-index: 5000;
}

section.header .menu .menu-wp li:hover:after {
  left: 0;
}

/* Header Fixed */

section.header-fixed {
  background: rgba(6, 19, 29, 1);
  padding: 15px;
  position: fixed;
  z-index: 9999;
  -webkit-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  color: white;
  height: 60px;
  display: none;
}

section.header-fixed .logo {
  max-width: 120px;
}

section.header-fixed .area-cotizar {
  position: absolute;
  right: 0;
  background: #129fd8;
  padding: 15px;
  padding-top: 20px;
  top: 0;
  height: 60px;
  width: 136px;
  -webkit-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

section.header-fixed .area-cotizar:hover {
  cursor: pointer;
}

.hvr-bounce-to-bottom:before {
  background: #139fff;
}

section.header-fixed .area-cotizar .icon-cotizar {
  max-width: 16px;
  margin-right: 5px;
  margin-top: -2px;
}

section.header-fixed h3 {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  padding-top: 6px;
}

section.header-fixed .menu-fixed {
  text-align: left;
}

section.header-fixed .menu-wp-1 li {
  list-style: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  padding: 0px 7px 0px 7px;
}

section.header-fixed .menu-wp-1 li:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: white;
  transition: left 0.3s;
  z-index: 5000;
}

section.header-fixed .menu-wp-1 li:hover:after {
  left: 0;
}

section.header-fixed .menu-fixed li {
  list-style: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  padding: 0px 7px 0px 7px;
}

section.header-fixed .menu-fixed li.active a {
  color: #65ccff !important;
}

section.header-fixed .menu-fixed a {
  color: white;
}

section.header-fixed .menu-fixed a:hover {
  text-decoration: none;
}

section.header-fixed .ulmenu-wp-1 {
  margin-top: 6px;
}

a.izdadcha {
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  color: white;
  padding: 0 0 6px;
}

a.izdadcha:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: white;
  transition: left 0.3s;
}

a.izdadcha:hover:after {
  left: 0;
}

a.izdadcha.activo:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 2px;
  background: white;
}

.menu-fixed h3 {
  float: left;
  margin-top: 2px;
}

section.header-fixed ul.menu-interior-proyectos {
  margin-top: 8px;
  float: left;
}

/*-----PARA QUE DESPLIEGUE PROYECTOS EN DESKTOP-------*/

.dropdown:hover>.dropdown-menu {
  display: block;
  background-color: rgba(6, 19, 29, 0.9);
  margin-top: -3px;
  box-shadow: #000 0px 0px 10px 0.5px;
  transition: 1s ease all;
}

.dropdown>.dropdown-toggle:active {
  pointer-events: none;
}

.menu-wp>#menu-item-97:hover,
.menu-wp>#menu-item-93:hover,
.menu-wp>#menu-item-2167:hover {
  overflow: visible;
}

.menu-wp>#menu-item-97::after,
.menu-wp>#menu-item-93::after,
.menu-wp>#menu-item-2167::after {
  display: none;
}

.mm-menu {
  z-index: 9999;
}

.header-menu-desktop {
  justify-content: center;
  align-items: center;
}

.menu-wp>#menu-item-93 .menu-item a {
  white-space: nowrap;
}

.menu-item-has-children ul li a {
  font-size: 0.9em !important;
}

.menu-item-has-children ul {
  border: none;
  padding: 5px;
  box-sizing: border-box;
}

/* TÍTULO H1 INICIO */

section.frase-h1 {
  background: #129fd8;
  color: white;
  text-transform: uppercase;
  text-align: center;
  padding: 15px;
}

section.frase-h1 h1 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

/* PROYECTOS EN VENTA */

section.proyectos-en-venta {
  background: #343435;
  padding: 30px 0px 10px 0px;
}

section.proyectos-en-venta .titulo-secciones {
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

section.proyectos-en-venta a {
  color: unset;
}

section.proyectos-en-venta .titulo-secciones h2 {
  text-transform: uppercase;
  font-size: 22px;
  color: white;
}

section.proyectos-en-venta .bloque-proyectos {
  background: white;
  padding: 15px;
  color: #343435;
}

section.proyectos-en-venta .etiqueta-proyecto {
  background: #129fd8;
  position: absolute;
  top: 5px;
  right: 0px;
  color: white;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  padding: 3px 20px 3px 20px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

section.proyectos-en-venta .tipo-propiedad {
  text-transform: uppercase;
  font-weight: bold;
}

section.proyectos-en-venta .ubicacion-proyecto {
  text-transform: uppercase;
  font-weight: bold;
  color: #129fd8;
  margin-bottom: 10px;
}

section.proyectos-en-venta a:hover {
  text-decoration: none;
}

section.proyectos-en-venta .imagen-proyecto {
  position: relative;
}

section.proyectos-en-venta .nombre-proyecto {
  color: white;
  position: absolute;
  bottom: 10px;
  left: 15px;
  font-size: 20px;
  text-transform: uppercase;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.56);
  z-index: 10;
}

section.proyecto-destacado .detalle {
  padding: 15px 15px 15px 15px;
  color: #343435;
  max-width: 550px;
}

@media only screen and (max-width: 1250px) {
  section.proyecto-destacado .detalle {
    max-width: 400px;
  }
}

section.proyecto-destacado .detalle h2 {
  text-transform: uppercase;
  font-size: 20px;
}

section.proyecto-destacado .detalle .etiqueta-proyecto {
  background: #129fd8;
  color: white;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  padding: 5px 20px 5px 20px;
  display: inline-block;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

section.proyecto-destacado .detalle .descripcion {
  margin-top: 15px;
}

section.proyecto-destacado .frase-destacada {
  background: #129fd8;
  color: white;
  text-align: center;
  padding: 15px;
}

/* IDEAS NOTICIAS */

section.ideas {
  background: #343435;
  padding: 30px 0px 30px 0px;
}

@media only screen and (max-width: 991px) {
  section.ideas .bloque-ideas-interior {
    margin-left: 15px;
    margin-top: -15px;
  }
}

section.ideas .titulo-secciones {
  text-align: center;
  margin-bottom: 30px;
}

section.ideas .titulo-secciones h2 {
  text-transform: uppercase;
  font-size: 22px;
}

section.ideas .titulo-secciones {
  color: white;
}

section.ideas a:hover {
  color: black;
  text-decoration: none;
}

section.ideas .bloque-ideas {
  background: white;
  font-size: 11px;
}

section.ideas .bloque-ideas-interior {
  padding: 15px;
}

section.ideas .bloque-ideas-interior h2 {
  font-size: 16px;
}

section.ideas .col-foto {
  padding: 0px;
}

@media only screen and (max-width: 991px) {
  section.ideas .col-foto {
    padding: 15px;
  }
}

/* GENERALES */

::-webkit-scrollbar-button {
  display: block;
  height: 13px;
  border-radius: 0px;
  background-color: #65a4d7;
}

::-webkit-scrollbar-button:hover {
  background-color: #aaa;
}

::-webkit-scrollbar-thumb {
  background-color: #65a4d7;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #ccc;
}

::-webkit-scrollbar-track {
  background-color: #efefef;
}

::-webkit-scrollbar-track:hover {
  background-color: #ccc;
}

::-webkit-scrollbar {
  width: 13px;
}

/* EMPRESA */

section.empresa .bloque-sobre-marca {
  background: rgba(130, 130, 130, 0.3);
  border-radius: 15px;
  padding: 15px;
}

section.empresa .bloque-sobre-marca a {
  display: inline-flex;
  overflow-wrap: break-word;
  text-align: center;
  white-space: unset;
}

section.empresa {
  background: #08121b;
}

section.empresa h2 {
  font-size: 36px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.59);
}

section.empresa h3 {
  font-size: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.59);
}

@media only screen and (max-width: 400px) {
  section.empresa h2 {
    font-size: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.59);
  }

  section.empresa h3 {
    font-size: 16px;
  }
}

/* VIDEO */

.jquery-background-video-wrapper {
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 450px;
}

.jquery-background-video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.js .video-bg video {
  opacity: 0;
}

.js .video-bg video.is-playing {
  opacity: 1;
}

.jquery-background-video-pauseplay {
  z-index: 20;
}

@media only screen and (max-width: 991px) {
  .jquery-background-video-pauseplay {
    display: none;
  }
}

.texto-sobre-video {
  position: absolute;
  top: 40%;
  z-index: 20;
  color: white;
  padding: 15px 0 15px 0px;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  left: 0;
  right: 0;
  text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 10px;
}

.texto-sobre-video h2 {
  font-size: 50px;
  letter-spacing: -3px;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

@media only screen and (max-width: 991px) {
  .texto-sobre-video h2 {
    font-size: 30px;
  }
}

.texto-sobre-video h3 {
  font-size: 20px;
  margin: 5px 0px 0px 0px;
  text-transform: uppercase;
  text-align: center;
}

.mascara-top {
  position: absolute;
  z-index: 9;
  top: 0;
  height: 100px;
  width: 100%;
  background: transparent;
}

.mascara-bottom {
  pointer-events: none;
  position: absolute;
  z-index: 9;
  bottom: 0;
  height: 130px;
  width: 100%;
  background: transparent;
}

/* PROYECTO EN VENTA */

section.proyectos-en-venta .mascara-bottom {
  position: absolute;
  z-index: 9;
  bottom: 0;
  height: 100px;
  width: 100%;
  background: -moz-linear-gradient(top,
      rgba(77, 91, 105, 0) 0%,
      rgba(77, 91, 105, 0.8) 100%);
  background: -webkit-linear-gradient(top,
      rgba(77, 91, 105, 0) 0%,
      rgba(77, 91, 105, 0.8) 100%);
  background: linear-gradient(to bottom,
      rgba(77, 91, 105, 0) 0%,
      rgba(77, 91, 105, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4d5b69', endColorstr='#a6000000', GradientType=0);
}

section.proyectos-en-venta .item:hover .bloque-proyectos {
  background: #b7b7b7;
  color: white;
  transition: all 0.5s ease;
}

section.proyectos-en-venta .item:hover .ubicacion-proyecto {
  color: white;
  transition: all 0.5s ease;
}

section.proyectos-en-venta .imagen-proyecto {
  overflow: hidden;
}

section.proyectos-en-venta .imagen-proyecto img {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: 25% 100%;
  transform-origin: 25% 100%;
  width: 100%;
  height: auto;
  -webkit-filter: saturate(0.6) brightness(1.2);
  filter: saturate(0.6) brightness(1.2);
}

section.proyectos-en-venta .imagen-proyecto img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform-origin: 25% 25%;
  transform-origin: 25% 25%;
  -webkit-filter: saturate(1.4) brightness(1.2);
  filter: saturate(1.4) brightness(1.2);
}

/* LLAMADO */

section.llamado {
  background: #129fd8;
  color: white;
  padding: 15px 0px 15px 0px;
}

.trans--grow {
  -webkit-transition: width 1s ease-out;
  transition: width 1s ease-out;
  width: 0%;
}

.grow {
  width: 100%;
}

.hr1 {
  margin-left: 0;
}

.hr2 {
  margin-right: 0;
}

section.llamado hr {
  padding: 1px 0;
  border: none;
  background-color: #129fd8;
  letter-spacing: 5px;
}

section.llamado h2 {
  font-weight: bold;
}

section.llamado p {
  font-size: 15px;
}

section.llamado img {
  max-width: 100%;
  margin-right: 15px;
}

section.llamado .btn-llamado img {
  max-width: 30px;
}

section.llamado .btn-llamado {
  background: white;
  color: black;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 18px 8px 18px;
}

/* FOOTER */

section.footer .titulo-columna-footer {
  font-weight: bold;
  margin-bottom: 15px;
}

section.footer .icon-footer {
  max-width: 17px;
  float: left;
  min-height: 20px;
  margin-right: 8px;
}

section.footer hr {
  margin: 5px 0 5px 0px;
}

section.footer a {
  color: white;
}

section.footer {
  background: #08121b;
  padding: 30px 0px 30px 0px;
  color: white;
}

section.footer .logo img {
  max-width: 120px;
  padding: 15px;
  border: 1px solid #242d37;
}

@media only screen and (max-width: 991px) {
  section.footer .logo img {
    max-width: 200px;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

/* COPYRIGHTS */

section.copy {
  background: #050b10;
  padding: 15px;
  font-size: 11px;
  color: #50565d;
}

section.copy a {
  color: #50565d;
}

section.copy p {
  margin: 0px;
}

/* PROYECTO DESTACADO INICIO */


section.proyecto-destacado .descripcion p {
  font-size: 12px;
}

section.proyecto-destacado .descripcion>h3 {
  text-transform: unset;
  font-size: 18px;
}

section.proyecto-destacado .detalle>h2 {
  font-weight: bold;
}

section.proyecto-destacado .logo-proyecto {
  max-width: 80px;
  margin-bottom: 5px;
}

section.proyecto-destacado .logo-proyecto img {
  border-radius: 8px;
  border: 0px solid #dadada;
}

section.proyecto-destacado .tipo-propiedad {
  width: 100%;
  float: left;
  margin-bottom: 15px;
}

section.proyecto-destacado .tipo-propiedad img {
  max-width: 30px;
  float: left;
  margin-right: 15px;
}

section.proyecto-destacado .tipo-propiedad-descripcion {
  float: left;
}

section.proyecto-destacado .tipo-de-propiedad {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

section.proyecto-destacado .desde-metraje {
  margin-top: -6px;
}

/* INTERIOR PROYECTO */

.texto-sobre-slide-wrap {
  position: relative;
  z-index: 20;
}

.card-img-overlay {
  z-index: 10;
}

section.interior-proyecto-slide .bloque-sobre-slide {
  color: white;
}

section.interior-proyecto-slide .bloque-sobre-slide h2,
section.interior-proyecto-slide .bloque-sobre-slide h3 {
  font-size: 30px;
  letter-spacing: -1px;
  margin: 0;
  text-align: right;
  font-weight: bold;
  text-transform: uppercase;
}

section.interior-proyecto-slide .container {
  position: relative;
}

section.interior-proyecto-titulo {
  padding: 10px 0px 10px 0px;
  background: #129fd8;
  color: white;
  text-transform: uppercase;
}

section.interior-proyecto-titulo h1 {
  font-size: 16px;
  padding: 15px 0px 15px 0px;
  font-size: 18px;
  margin: 0;
}

section.interior-proyecto-titulo .logo-proyecto img {
  border-radius: 8px;
  border: 2px solid white;
  max-width: 120px;
  position: absolute;
  z-index: 20;
  -webkit-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
}

section.interior-proyecto-titulo .titulo-h1-proyecto {
  margin-left: 150px;

  font-weight: bold;
}

section.interior-proyecto-titulo .titulo-h1-proyecto h1 {
  font-weight: bold;
}

section.interior-proyecto-titulo .etiqueta-proyecto {
  background: #129fd8;
  color: white;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  padding: 3px 20px 3px 30px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

section.interior-proyecto-titulo .etiqueta-y-ubicacion {
  float: left;
  margin: 10px 0px 15px 120px;
  position: absolute;
  z-index: 20;
  top: 90px;
}

section.interior-proyecto-titulo .ubicacion-proyecto {
  text-transform: uppercase;
  font-weight: bold;
  color: black;
  padding: 3px 20px 3px 30px;
}

/* DESCRIPCIÓN PROYECTO */

section.descripcion-proyecto .descripcion-interior-proyecto {
  margin: 80px 0px 30px 0px;
}

section.descripcion-proyecto .detalle {
  max-width: 550px;
  float: right;
}

section.descripcion-proyecto .owl-dots {
  position: absolute;
  bottom: 15px;
  left: 30px;
  z-index: 20;
}

section.descripcion-proyecto .iconos {
  margin-top: 30px;
}

section.descripcion-proyecto .tipo-propiedad {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  color: black;
}

section.descripcion-proyecto .tipo-propiedad span {
  padding-top: 8px;
  float: left;
  padding-left: 10px;
  float: left;
}

section.descripcion-proyecto .tipo-propiedad img,
.metraje img {
  max-width: 35px;
  float: left;
}

section.descripcion-proyecto .precio span {
  float: left;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  color: black;
  margin-top: 17px;
}

section.descripcion-proyecto .metraje span {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  color: black;
  margin-top: 17px;
  position: absolute;
  left: 60px;
}

section.descripcion-proyecto .detalle-arriba-metraje {
  left: 60px;
  position: absolute;
  top: 0;
}

section.descripcion-proyecto .detalle-arriba-precio {
  position: absolute;
  top: 0;
}

/* PLANTAS */

section.plantas {
  padding: 50px 0px 50px 0px;
  background: #f5f5f5;
}

section.plantas .etiqueta-wrap {
  position: absolute;
  left: 50%;
  top: 10px;
}

section.plantas .blancoynegro {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

section.plantas .etiqueta-planta {
  text-transform: uppercase;
  background: #129fd8;
  background: #c10000;
  color: white;
  padding: 5px;
  border-radius: 0.25rem;
  font-size: 11px;
  position: relative;
  left: -50%;
}

section.plantas .bloque-plantas {
  margin-bottom: 30px;
}

section.plantas .bloque-plantas.agotado {
  opacity: 0.4;
}

section.plantas .titulo-seccion h2 {
  text-transform: uppercase;
}

section.plantas .filtros {
  margin: 0 auto;
  text-align: center;
}

section.plantas .btn-filtros {
  background: #909090;
  text-transform: uppercase;
  color: white;
  padding: 8px 20px 8px 20px;
  font-size: 14px;
  font-weight: bold;
  display: none;
}

section.plantas .btn-filtros:hover,
section.plantas .btn-filtros:focus {
  background: #129fd8;
}

section.plantas .btn-filtros.activo {
  background: #129fd8;
}

section.plantas .grid {
  margin-top: 30px;
}

section.plantas .detalle-planta {
  background: white;
  padding: 15px;
}

section.plantas .detalle-planta h3 {
  color: #129fd8;
  margin: 0px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}

section.plantas .detalle-planta .iconos,
.masplantas .iconos {
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  padding: 10px 0px 10px 0px;
}

section.plantas .detalle-planta .iconos img,
.masplantas .iconos img {
  max-width: 25px;
}

section.plantas .icono span,
.masplantas .icono span {
  font-weight: bold;
  margin-left: 5px;
}

section.plantas .iconos .col-md-4 {
  border-left: 1px solid #dedede;
}

section.plantas .iconos .row>div:first-child {
  border-left: 0px solid #dedede;
}

section.plantas .detalle-planta .superficies {
  margin-top: 15px;
}

section.plantas .detalle-planta .superficies li {
  list-style: none;
}

section.plantas .detalle-planta .superficies li.grande {
  font-weight: bold;
  font-size: 14px;
}

/* GALERÍAS */

section.galeria {
  background: #52575f;
}

section.galeria h2 {
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

section.galeria .col-galeria {
  background: #353535;
  padding: 50px 0px 0px 0px;
}

section.galeria .col-360 {
  background: #52575f;
  padding: 50px 0px 0px 0px;
}

section.galeria .categorias a {
  list-style: none;
  text-transform: uppercase;
  color: white;
  display: inline-block;
  margin: 0px 15px 0px 15px;
  font-size: 13px;
}

section.galeria .categorias {
  margin: 15px 0px 15px 0px;
  text-align: center;
  position: relative;
  z-index: 20;
  background: #353535;
}

section.galeria .nav-tabs {
  border: 0px;
}

section.galeria .nav-link {
  display: block;
  padding: 0px 0px 5px 0px;
}

section.galeria .nav-tabs .nav-link {
  border: 0px;
  border-radius: 0px;
}

section.galeria .descripcion-galeria {
  position: absolute;
  z-index: 20;
  top: 0px;
  right: 0px;
  background: rgba(22, 22, 22, 0.8);
  border-bottom-left-radius: 8px;
  padding: 8px;
  color: white;
  font-size: 10px;
  text-transform: uppercase;
}

section.galeria .descripcion-galeria-sola {
  background: rgba(22, 22, 22, 0.8);
  border-bottom-left-radius: 8px;
  padding: 8px;
  color: white;
  font-size: 10px;
  text-transform: uppercase;
  float: right;
}

section.galeria .descripcion-galeria p {
  margin: 0;
}

section.galeria .categorias .nav-tabs .nav-link .active {
  border-bottom: 3px solid #129fd8;
}

section.galeria .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: white;
  background-color: unset;
  border-color: unset;
  border-bottom: 3px solid #129fd8 !important;
}

section.galeria img.owl-thumb-item {
  max-width: 100px;
  border-radius: 2px;
  margin-right: 2px;
  opacity: 0.5;
  border: 1px solid white;
}

section.galeria img.owl-thumb-item.active {
  opacity: 1;
}

section.galeria img.owl-thumb-item:hover {
  opacity: 1;
  cursor: pointer;
}

section.galeria .owl-thumbs {
  margin: 20px;
  text-align: center;
}

.mb_YTPBar .mb_YTPseekbar {
  background: #129fd8;
}

section.galeria #video3DPlayer {
  height: 624px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 20;
}

section.galeria .fondo-blur-piloto {
  position: absolute;
  z-index: 0;
  height: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  top: 30px;
  filter: blur(15px);
}

section.galeria .fondo-blur-video {
  position: absolute;
  z-index: 0;
  height: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  top: 30px;
  filter: blur(15px);
}

section.galeria .fondo-blur {
  filter: blur(15px);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 30px;
  background-attachment: fixed;
  background-position: center;
}

section.galeria .imagen-arriba {
  z-index: 10;

  position: relative;
}

section.galeria .tab-pane {
  position: relative;
}

section.galeria div.owl-item.cloned.active div img,
section.galeria div.owl-item.cloned div img,
section.galeria div.owl-item.active div img,
section.galeria div.owl-item div img {
  opacity: 0.3 !important;
}

section.galeria div.owl-item.cloned.active,
section.galeria div.owl-item.cloned,
section.galeria div.owl-item.active,
section.galeria div.owl-item {
  pointer-events: none;
}

section.galeria div.owl-item.active.center {
  pointer-events: auto;

  cursor: zoom-in;
}

section.galeria div.owl-item.active.center div img {
  opacity: 1 !important;
}

section.galeria div.owl-item.active.center div img:hover {
  cursor: zoom-in;
}

section.galeria .descripcion-galeria {
  opacity: 0.3;
}

section.galeria .descripcion-right {
  position: absolute;
  top: 0;
  align-self: text-center;
  right: 0;
}

section.galeria .descripcion-galeria.activo {
  opacity: 1;
}

section.galeria div.owl-item.center.active div .descripcion-galeria {
  opacity: 1;
}

section.slide-interior-proyectos .container {
  position: relative;
}

section.galeria .iframe-piloto {
  width: 853px;
  height: 480px;
  text-align: center;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

/* ALREDEDORES */

#activmap-results-num {
  display: none;
}

.activmap-place h3:before {
  display: none;
}

.activmap-brand {
  left: -25px;
}

.activmap-address::before,
.activmap-phone::before,
.activmap-url::before {
  display: none;
}

.activmap-infowindow {
  font-size: 14px;
  height: auto;
  width: 300px;
  overflow: visible;
  position: relative;
  max-width: 100%;
  color: #333;
}

.activmap-brand {
  display: none;
}

.activmap-infowindow {
  width: 100%;
}

.activmap-details {
  width: 280px;
  padding: 15px;
  margin-left: 0px;
}

.activmap-address,
.activmap-phone,
.activmap-url {
  padding-left: 0px;
}

section.alrededores {
  padding: 50px 0px 0px 0px;
  background: #7f7f7f;
  color: white;
}

section.alrededores .icono-lugares img {
  max-width: 20px;
  margin-bottom: 5px;
}

section.alrededores .filtros-mapa {
  padding: 15px 0 15px 0px;
  margin: 0 auto;
  text-align: center;
  float: left;
  width: 100%;
}

section.alrededores .descripcion-ubicacion {
  padding: 0px 0px 15px 0px;
}

section.alrededores .titulo-seccion {
  margin-bottom: 20px;
}

section.alrededores .titulo-seccion h2 {
  text-transform: uppercase;
  margin: 0;
}

section.alrededores .direccion-proyecto {
  background: #4c4c4c;
  width: 100%;
  border-radius: 8px;
  padding: 10px 15px 10px 15px;
  text-align: center;
}

section.alrededores .direccion-proyecto a {
  color: white;
}

section.alrededores .direccion-proyecto img {
  max-width: 20px;
}

section.alrededores #activmap-canvas {
  height: 400px;
}

section.alrededores #activmap-container {
  height: auto;
}

#activmap-wrapper * {
  box-sizing: content-box;
}

section.alrededores .marker-selector {
  display: none;
  height: 0px;
  width: 0px;
}

section.alrededores #activmap-ui-wrapper {
  position: relative;
  top: 10px;
  left: 10px;
  z-index: 10;
  right: 0;
  text-align: center;
}

#activmap-filters {
  display: inline-flex;
  margin: 0 auto;
  text-align: center;
  float: none;
}

section.alrededores .marcador {
  margin: 0px 5px 0px 5px;
}

section.cotizar {
  color: white;
}

section.cotizar .bloque-informacion {
  background: #232323;
}

section.cotizar .bloque-sala {
  background: #353535;
}

section.cotizar h2 {
  text-transform: uppercase;
  color: white;
  text-align: center;
}

section.cotizar #formulario-cotizar {
  max-width: 550px;

  margin: 30px auto;
}

/* form starting stylings ------------------------------- */

.group {
  position: relative;
  margin-bottom: 40px;
  width: 100%;
}

textarea {
  background: none !important;
  background: transparent !important;
  border: none;
  width: 100% !important;
  font-size: 15px;
  padding: 10px 10px 10px 5px;
  border-bottom: 1px solid #757575;
  color: white;
}

input {
  font-size: 15px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #757575;
  background: none;
  color: white;
}

input:focus,
textarea:focus {
  outline: none;
}

#gracias {
  display: none;
  color: white;
}

.loading-form,
.wsp-loading-form {
  display: none;
}

.loading-slideproyectos {
  top: 50%;
  left: 0;
  right: 0;
  height: 300px;
}

/* LABEL ======================================= */
label {
  color: white;
  font-size: 15px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

/* active state */

input:focus~label,
input:valid~label,
textarea:focus~label {
  top: -20px;
  font-size: 14px;
  color: #129fd8;
}

label.error {
  color: #ffc107 !important;
  top: 44px !important;
  font-size: 11px !important;
  min-width: 80px;
}

.error-formulario {
  color: #ffc107 !important;
  font-size: 11px !important;
}

label.valid {
  top: 14px !important;
  right: 20px;
  left: unset !important;
  color: #8bc34a !important;
  font-weight: bold;
  font-size: 16px !important;
  min-width: unset;
}

textarea~label {
  top: -20px;
  font-size: 15px;
  color: white;
}

/* BOTTOM BARS ================================= */

.bar {
  position: relative;
  display: block;
  width: 100%;
}

.bar:before,
.bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #129fd8;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.bar:before {
  left: 50%;
}

.bar:after {
  right: 50%;
}

/* active state */

input:focus~.bar:before,
input:focus~.bar:after,
textarea:focus~.bar:before,
textarea:focus~.bar:after {
  width: 50%;
}

/* HIGHLIGHTER ================================== */

.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  bottom: 2px;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* active state */

input:focus~.highlight,
textarea:focus~.highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */

@-webkit-keyframes inputHighlighter {
  from {
    background: #129fd8;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@-moz-keyframes inputHighlighter {
  from {
    background: #129fd8;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@keyframes inputHighlighter {
  from {
    background: #129fd8;
  }

  to {
    width: 0;
    background: transparent;
  }
}

ul.sala-de-ventas {
  max-width: 550px;
  margin: 0 auto;
  margin-top: 30px;
}

@media only screen and (max-width: 991px) {
  ul.sala-de-ventas {
    max-width: 100%;
    padding: 0px;
  }
}

ul.sala-de-ventas li {
  list-style: none;
  padding: 15px;
  background: #232323;
  display: block;
  margin-bottom: 15px;
  border-radius: 8px;
}

ul.sala-de-ventas li a {
  color: white;
}

ul.sala-de-ventas li p {
  margin: 0;
}

.icon-sala {
  max-width: 16px;
}

/* Cargador */

img.cargador {
  display: block;
  margin: 0 auto;
  max-width: 100px;
}

.imagenes-galeria {
  display: none;
}

.owl-thumbs {
  display: none;
}

/* Exportar*/

section.header-exportar {
  padding: 10px;
  background: #050b10;
  color: white;
  margin-bottom: 30px;
  padding-top: 15px;
}

section.header-exportar h1 {
  text-transform: uppercase;
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

section.header-exportar .logo img {
  max-width: 50px;
  position: absolute;
}

/* RESPONSIVE */

@media only screen and (max-width: 1366px) {
  img.owl-thumb-item {
    max-width: 60px;
    border-radius: 2px;
    margin-right: 2px;
    opacity: 0.5;
    border: 1px solid white;
  }

  section.descripcion-proyecto .descripcion-interior-proyecto {
    margin: 70px 0px 20px 0px;
  }

  section.galeria #video3DPlayer {
    height: 380px;
    width: 676px;
  }

  section.galeria .iframe-piloto {
    height: 380px;
    width: 676px;
  }
}

@media only screen and (max-width: 991px) {
  section.galeria .iframe-piloto {
    min-height: 400px;
    width: 100%;
  }
}

section.descripcion-proyecto #videoYouTube {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 20;
  min-height: 400px;
}

section.descripcion-proyecto .altura-descripcion-video {
  min-height: 400px;
}

section.descripcion-proyecto .altura-descripcion-imagen {
  min-height: 300px;
}

@media only screen and (max-width: 991px) {

  section.descripcion-proyecto #wrapper_videoYouTube,
  section.description-proyecto span#controlBar_videoYouTube,
  section.descripcion-proyecto #videoYouTube,
  section.descripcion-proyecto .mb_YTPBar {
    display: none !important;
  }

  section.descripcion-proyecto .altura-descripcion-video {
    min-height: unset !important;
  }

  section.descripcion-proyecto .owl-dots {
    bottom: unset;
    left: unset;
    position: unset;
    margin-bottom: 30px;
  }
}

.loading-centrado {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  min-height: 400px;
}

img.loading {
  max-width: 50px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

section.interior-planta .cotizar-planta-wrap {
  background: #06131d;
}

section.interior-planta .cotizar-planta {
  padding: 15px;
  padding-top: 45px;
}

#formulario-cotizar-wrap h2 {
  color: white;
  text-transform: uppercase;
}

.interior-planta-wrap {
  padding: 0px 0px 0px 0px;
}

section.header-plantas {
  background: #06131d;
  height: 60px;
  position: relative;
  z-index: 1000;
  padding: 15px;
  -webkit-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
}

section.header-plantas .logo img {
  max-width: 120px;
}

section.header-plantas h1 {
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
}

section.header-plantas h1 span {
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: normal;
}

.interior-planta-wrap-descripcion {
  padding-top: 30px;

  width: 100%;
}

.bloque-descripcion {
  padding: 15px 0px 15px 0px;

  font-size: 13px;
}

.borde-l {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.borde-r {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

ul {
  padding: 30px;
}

ul.menu-interior-proyectos {
  padding: 0px;
}

section.interior-planta h4 {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
}

.flecha-volver {
  max-width: 16px;
  transform: rotate(-180deg);
}

.ubicacion-botones-arriba {
  position: absolute;
  right: 0;
  top: 0;
}

.volver-al-proyecto {
  background: #477192;
  color: white;
  text-transform: uppercase;
  text-align: center;
  padding: 15px;
  top: 0;
  height: 60px;
  font-weight: bold;
  float: left;
}

.volver-al-proyecto a {
  color: white;
}

.ver-mas-plantas {
  float: left;
  right: 0;
  background: #4ea0d8;
  padding: 15px;
  color: white;
  text-transform: uppercase;
  top: 0;
  height: 60px;
  font-weight: bold;
}

.ver-mas-plantas:hover {
  cursor: pointer;
}

.hvr-bubble-bottom:before {
  border-color: #4ea0d8 transparent transparent;
}

.icono img {
  max-width: 25px;
}

section.interior-planta .bloque-descripcion span {
  font-weight: bold;
}

.superficies li {
  list-style: none;
}

.metrajes li {
  list-style: none;
}

.superficies li.grande,
.metrajes li.grande {
  font-weight: bold;
  font-size: 14px;
}

.info-adicional {
  font-weight: bold;
  text-transform: uppercase;
}

.ayuda-zoom {
  background: rgba(230, 230, 230, 0.8);
  padding: 7px 18px 7px 18px;
  display: block;
  font-size: 10px;
  border-radius: 0.25rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9000;
}

img.owl-thumb-item {
  max-width: 100px;
  border-radius: 2px;
  margin-right: 2px;
  opacity: 0.5;
  border: 1px solid white;
}

img.owl-thumb-item.active {
  opacity: 1;
}

img.owl-thumb-item:hover {
  opacity: 1;
  cursor: pointer;
}

.header-oscuro {
  background: #06131d;
}

.titulo-foto {
  background: rgba(22, 22, 22, 0.7);
  padding: 7px 14px 7px 14px;
  color: white;
  font-size: 13px;
  position: absolute;
  bottom: 0;
  right: 0;
  text-transform: uppercase;
  border-top-left-radius: 0.25rem;
}

ul.variantes {
  margin: 0px;
  padding: 0px;
}

ul.variantes li {
  list-style: none;
  font-size: 11px;
}

ul.variantes li.titulo {
  font-weight: bold;
  list-style: none;
  border-bottom: 0px;
}

.bloque-variante {
  background: #c6c6c6;
  padding: 15px;
  padding-bottom: 0px;
  margin-bottom: 15px;
}

.bloque-variante hr {
  border-color: #333;
}

.bloque-variante-departamentos {
  background: #b3b3b3;
  padding: 15px;
  width: 100%;
}

.bloque-variante-departamentos:nth-child(even) {
  background: #cacaca;
}

.bloque-variante-departamentos li {
  border-bottom: 1px solid #a0a0a0;
}

.variantes-edificios {
  margin-top: 15px;
  display: none;
}

.columna-descripcion-planta {
  -webkit-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
}

.owl-item a:focus {
  outline: none !important;
  box-shadow: none;
}

.ver-mas-plantas-desktop {
  background: #c8c8c8;
  padding: 30px 0px 30px 0px;
}

.cerrar {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 30px;
}

.cerrar:hover {
  cursor: pointer;
  opacity: 0.7;
}

.col-oscura {
  background: #323232;
  height: 100%;
}

section.proyectos-en-venta .bloques-proyectos {
  margin: 15px 0px 15px 0px;
  padding: 0px 15px 0px 15px;
}

/* Páginas */

section.top-pagina .pag-fondo {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0px 30px 0px;
}

section.top-pagina h2.titulo-pagina,
section.top-pagina h1.titulo-pagina {
  text-transform: uppercase;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 30px;
  text-shadow: 4px 4px 9px rgba(150, 150, 150, 1);
}

section.top-pagina .contenido-pagina-capsula {
  background: white;
  margin-top: 30px;
}

section.contenido-pagina {
  padding: 30px 0px 30px 0px;
  background: white;
}

section.contenido-pagina h2 {
  text-transform: uppercase;
}

.white {
  color: white;
}

.mayusc {
  text-transform: uppercase;
}

section.top-pagina .contenido-pagina-capsula .col-clara h2 {
  padding: 30px;
  color: #323232;
}

.col-clara input,
.col-clara label,
.col-clara textarea {
  color: #323232;
}

.gracias {
  display: none;
}

.icon-svg {
  max-width: 20px;
  width: 20px;
}

.bg-white {
  background: white;
}

a {
  color: #323232;
}

.p-30 {
  padding: 30px;
}

.img-full {
  width: 100%;
}

.sombra {
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.56);
}

.bg-sombra {
  -webkit-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
}

.columna-izquierda-full {
  padding-right: 0px;
}

.columna-derecha-full {
  padding-left: 0px;
}

@media only screen and (max-width: 991px) {
  .columna-izquierda-full {
    padding-right: 15px;
  }

  .columna-derecha-full {
    padding-left: 15px;
  }
}

/* Menu Mobile */

@media only screen and (max-width: 991px) {
  section.top-pagina .pag-fondo {
    padding-top: 100px;
    overflow: hidden;
  }

  .top-pagina {
    position: relative;
  }
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  background: white;
}

section.header-mobile {
  padding: 15px;
  padding: 5px 15px 5px 15px;
  -webkit-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 36px -16px rgba(0, 0, 0, 0.75);
  background: #343435;
}

@media only screen and (min-width: 991px) {
  #menu-mobile {
    display: none;
  }
}

.logo-mobile {
  width: 130px;
}

.espacio {
  height: 30px;
  width: 100%;
}

/* Blog */

section.blog {
  padding: 30px 0px 30px 0px;
}

.pag-fondo-absolute {
  position: absolute;
  filter: blur(8px);
  width: 100%;
  height: 115px;
  z-index: 0;
  top: -15px;
}

.centrado-absolute {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 30px;
}

.mt-60 {
  margin-top: 60px;
}

@media only screen and (max-width: 991px) {
  .pag-fondo-absolute {
    z-index: 0;

    height: 200px;
  }

  .centrado-absolute {
    top: 110px;
  }

  .mt-60 {
    margin-top: 150px;
  }
}

/* Empresa */

section.equipo {
  background: #dfdfdf;
  padding: 30px 0px 30px 0px;
}

section.equipo .titulo-pagina {
  padding-bottom: 30px;
}

section.equipo .bloque-personas {
  background: white;
  margin-bottom: 30px;
}

section.equipo .bloque-personas img {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */

  filter: grayscale(100%);
}

/* Contacto  */

.mapa {
  width: 100%;

  min-height: 250px;

  float: left;
}

section.top-pagina #activmap-container,
section.top-pagina #activmap-canvas {
  height: 250px;
}

/* Formularios  */

.formularios {
  padding: 30px;
}

#formulario-post-venta {
  margin-top: 30px;
}

#formulario-post-venta-gracias {
  color: white;
  padding: 30px 0px 30px 0px;
  display: none;
}

.formulario-post-venta .id-solicitud {
  font-weight: bold;
  font-size: 20px;
}

/* Section Pasos */

section.pasos .iconos-pasos {
  max-width: 60px;
  position: absolute;
  left: 35%;
}

section.pasos h5 {
  font-weight: bold;
}

section.pasos .pasos-compra {
  margin-top: 30px;
}

section.pasos .circle {
  padding: 15px 20px;
  border-radius: 30%;
  background-color: #ffffff;
  border-color: #333;
  border: 4px solid #139fd8;
  z-index: 50;
  height: 100px;
  width: 100px;
}

section.pasos .how-it-works.row {
  display: flex;
}

section.pasos .how-it-works.row .col-2 {
  display: inline-flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}

section.pasos .how-it-works.row .col-2::after {
  content: '';
  position: absolute;
  border-left: 4px solid #139fd8;
  z-index: 1;
}

section.pasos .how-it-works.row .col-2.bottom::after {
  height: 50%;
  left: 50%;
  top: 50%;
}

section.pasos .how-it-works.row .col-2.full::after {
  height: 100%;
  left: calc(50% - 4px);
}

section.pasos .how-it-works.row .col-2.full-top::after {
  height: 100%;
  left: calc(50% - 0px);
}

section.pasos .how-it-works.row .col-2.top::after {
  height: 50%;
  left: 50%;
  top: 0;
}

section.pasos .how-it-works.row .col-2.bottom-top::after {
  height: 50%;
  left: calc(50% - 4px);
  top: -5px;
}

section.pasos .timeline div {
  padding: 0;
  height: 40px;
}

section.pasos .timeline hr {
  border-top: 4px solid #139fd8;
  margin: 0;
  top: 16px;
  position: relative;
}

section.pasos .timeline .col-2 {
  display: flex;
  overflow: hidden;
}

section.pasos .timeline .corner {
  border: 4px solid #139fd8;
  width: 100%;
  position: relative;
  border-radius: 15px;
}

section.pasos .timeline .top-right {
  left: 50%;
  top: -50%;
}

section.pasos .timeline .left-bottom {
  left: -50%;
  top: calc(50% - 4px);
}

section.pasos .timeline .top-left {
  left: -50%;
  top: -50%;
}

section.pasos .timeline .right-bottom {
  left: 50%;
  top: calc(50% - 4px);
}

/* Responsive*/

@media only screen and (max-width: 1200px) {
  section.pasos .iconos-pasos {
    left: 30%;
  }
}

@media only screen and (max-width: 991px) {
  section.pasos .circle {
    height: 70px;
    width: 70px;
  }

  section.pasos .iconos-pasos {
    max-width: 40px;
    position: absolute;
    left: 40px;
  }
}

@media only screen and (max-width: 767px) {
  section.pasos .circle {
    display: none;
  }

  section.pasos .iconos-pasos {
    width: 40px;
    position: absolute;
    left: 10%;
  }
}

/* Single Proyectos Responsive */

@media only screen and (max-width: 991px) {
  section.descripcion-proyecto .detalle {
    width: 100%;

    max-width: 100%;
  }

  section.interior-proyecto-slide .bloque-sobre-slide h3 {
    font-size: 20px;
  }

  section.interior-proyecto-titulo h1 {
    font-size: 16px;
  }

  section.interior-proyecto-titulo .logo-proyecto img {
    max-width: 100px;
  }

  section.interior-proyecto-titulo .titulo-h1-proyecto {
    margin-left: 115px;
  }

  section.interior-proyecto-titulo .etiqueta-y-ubicacion {
    left: 0px;
    margin-left: 0;
    top: 120px;
  }

  section.descripcion-proyecto .altura-descripcion-imagen {
    min-height: unset;
  }

  section.plantas .btn-filtros {
    margin-bottom: 15px;
  }

  section.descripcion-proyecto .detalle-arriba-metraje,
  section.descripcion-proyecto .metraje span,
  section.descripcion-proyecto .tipo-propiedad span {
    left: 70px;
    position: absolute;
    padding-left: 0px;
  }

  section.descripcion-proyecto .bloque-info-proyecto {
    margin-bottom: 15px;
  }

  section.galeria .owl-thumbs {
    display: none !important;
  }

  section.galeria #video3DPlayer {
    height: 300px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 20;
  }

  .ayuda-zoom {
    position: relative;
  }

  section.header-plantas-mobile {
    margin-top: 65px;
    background: #010304;
    color: white;
    text-align: center;
    padding: 15px 0px 15px 0px;
  }

  section.header-plantas-mobile h2 {
    font-size: 16px;
  }

  .flecha-volver {
    max-width: 16px;
    transform: rotate(-180deg);
  }
}

.iconos>.row>.col-3:first-child .icono {
  border-left: 0px;
}

@media only screen and (max-width: 991px) {
  section.descripcion-proyecto .descripcion-interior-proyecto {
    margin-top: 20px;
  }

  section.interior-proyecto-titulo .etiqueta-y-ubicacion {
    display: none;
  }

  section.descripcion-proyecto .etiqueta-proyecto {
    background: #129fd8;
    color: white;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 20px 3px 30px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    float: left;
  }

  section.descripcion-proyecto .etiqueta-y-ubicacion {
    float: left;
    width: 100%;
    margin-bottom: 15px;
  }

  section.descripcion-proyecto .ubicacion-proyecto {
    text-transform: uppercase;
    font-weight: bold;
    color: black;
    padding: 3px 20px 3px 30px;
    float: left;
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  section.descripcion-proyecto #videoYouTube {
    width: 100%;
    min-height: unset;
    height: auto;
  }
}

.jssocials-share-logo {
  font-size: 20px !important;
}

.ver-mas-plantas-desktop {
  display: none;
}

.ver-mas-plantas-desktop .col-lg-2 {
  min-width: 350px;
}

.dibujo-persona {
  position: absolute;
  top: -25px;
  left: -25px;
  display: none;
}

section.equipo canvas {
  width: 100%;
}

small {
  font-size: 11px;
}

.ayuda-telefono {
  font-size: 11px;
  margin-top: 15px;
  margin-left: 5px;
}

.titulo-planta a {
  color: white;
}

.titulo-planta a:hover {
  color: white;
  text-decoration: none;
}

.informacion-planta-sin-variantes ul {
  width: 100%;
  padding: 15px;
  padding-left: 30px;
  margin-bottom: 0px;
}

.descripcion-texto-plantas p {
  margin-bottom: 0px;
}

.descripcion-texto-planta p strong {
  font-size: 11px;
}

#scroll-abajo {
  pointer-events: none;
  position: fixed;
  width: 24px;
  height: 24px;
  z-index: 9000;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0px;
  height: 200px;
  text-align: center;
  color: white;
  background: -moz-linear-gradient(top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 1%,
      rgba(0, 0, 0, 1) 100%);
  /* FF3.6-15 */

  background: -webkit-linear-gradient(top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 1%,
      rgba(0, 0, 0, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */

  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 1%,
      rgba(0, 0, 0, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
  /* IE6-9 */
}

#scroll-abajo a {
  padding-top: 20px;
}

#scroll-abajo span {
  position: fixed;
  bottom: 40px;
  right: 50%;
  width: 24px;
  height: 24px;
  z-index: 9000;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: scroll 1.5s infinite;
  animation: scroll 1.5s infinite;
  box-sizing: border-box;
}

#scroll-arriba {
  pointer-events: none;
  position: fixed;
  width: 24px;
  height: 24px;
  z-index: 9000;
  width: 100%;
  bottom: 0px;
  height: 200px;
  text-align: center;
  color: white;
  display: none;
}

#scroll-arriba a {
  padding-top: 20px;
}

#scroll-arriba span:hover {
  cursor: pointer;
}

#scroll-arriba span {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 24px;
  height: 24px;
  z-index: 9000;
  margin-left: -12px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation: scroll 1.5s infinite;
  animation: scroll 1.5s infinite;
  box-sizing: border-box;
  pointer-events: auto;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);

    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);

    opacity: 0;
  }
}

@keyframes scroll {
  0% {
    transform: rotate(-45deg) translate(0, 0);

    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: rotate(-45deg) translate(-20px, 20px);

    opacity: 0;
  }
}

.form-control {
  background: #323232;
  border: 0px;
  border-bottom: 1px solid #757575;
  color: white;
  padding: 10px 0px 10px 0px;
  height: 45px !important;
  font-size: 15px;
  border-radius: 0px;
}

.owl-carousel .owl-video-tn {
  background-size: cover;
}

.owl-carousel .fixed-video-aspect {
  position: relative;
}

.owl-carousel .fixed-video-aspect:before {
  display: block;
  content: '';
  width: 100%;
  padding-top: 56.25%;
}

.owl-carousel .fixed-video-aspect>.item-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.section.galeria div.owl-item {
  pointer-events: unset !important;
}

section.galeria div.owl-item.cloned.active,
section.galeria div.owl-item.cloned,
section.galeria div.owl-item.active,
section.galeria div.owl-item {
  pointer-events: unset !important;
}

/* Botonera de acceso mobile */

@media only screen and (max-width: 991px) {
  #img-header {
    background-image: url('https://www.idea.cl/web/wp-content/themes/idea/recursos/img/bg-mobile.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 25vh;
    min-height: 300px;
  }

  .botonera-ubicacion {
    position: relative;
    bottom: 0px;
    display: flex;
    justify-content: space-around;
    z-index: 100;
    padding: 0px 3px;
  }

  .boton-ubicacion {
    background-color: white;
    width: 32%;
    height: auto;
    border-radius: 5px 5px 0px 0px;
  }

  .botonera-ubicacion a {
    width: 32%;
    height: 50px;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }

  #telefono {
    background-image: url('../recursos/img/telefono_mobile.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  #correo {
    background-image: url('../recursos/img/mail_mobile.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  #ubicacion {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

/* flechas de proyectos en venta - HOME */

#proyectos-en-venta .flechas {
  display: block;
}

@media (max-width: 768px) {
  #proyectos-en-venta .flechas {
    display: none;
  }
}

.grecaptcha-badge {
  bottom: 50% !important;
}

.menu-idea {
  display: flex;
  align-items: center;
}

section.header .menu .menu-wp .menu-commune-name {
  width: 100%;
  margin-bottom: 8px;
}

section.header .menu .menu-wp .menu-commune-name span {
  padding: 8px 15px 8px 15px;
  text-transform: uppercase;
  color: #129fd8;
  font-size: 11px;
}

section.header .menu .menu-wp .menu-commune-name:after {
  content: none;
}

section.header .menu .menu-wp .menu-commune-name:hover:after {
  content: none;
}

.menu-mobile-commune-name.mm-listitem:after {
  content: none;
}

.menu-mobile-commune-name.mm-listitem span {
  padding: 5px 10px 5px 10px;
  font-size: 12px;
  font-weight: 700;
}

.dropdown-menu-communes {
  min-width: 24rem !important;
}

.menu-commune-border {
  width: 100%;
  display: block;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.3;
  margin-top: 6px !important;
  margin-bottom: 8px !important;
}

.menu-commune-border:last-child {
  display: none;
}

.idea-wsp {
  --wsp-box-bg: #303030;
  --wsp-bg: #25D366;
  --wsp-bg-hover: #15803e;
  --wsp-h-header: 85px;
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9999999999;
}

.idea-wsp-button {
  display: flex;
  color: white;
  background-color: var(--wsp-bg);
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: none;
  box-shadow: 0 5px 16px 0 rgba(0, 0, 0, 0.32);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.idea-wsp-button:hover {
  background-color: var(--wsp-bg-hover);
}

.idea-wsp-button svg {
  width: 28px;
  height: 28px;
}

.wsp-box {
  z-index: 9999999999;
  left: 0;
  bottom: 0;
  position: fixed;
  display: none;
  opacity: 0;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  background-color: var(--wsp-box-bg);
  height: 100%;
  width: 100%;
}

.wsp-box-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wsp-box-header {
  width: 100%;
  height: var(--wsp-h-header);
  padding-left: 24px;
  padding-right: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wsp-box-body {
  width: 100%;
  height: 100%;
  flex: 1;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
}

.wsp-button-close {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0 solid #e5e7eb;
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-transform: none;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background-color: transparent;
  background-image: none;
  position: absolute;
  right: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  top: 5px
}

.wsp-form-img {
  display: block;
  margin-right: 0.5rem;
}

.wsp-box-header h5 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  color: white;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .wsp-box {
    max-width: 376px !important;
    height: 60% !important;
    left: 15px;
    max-width: 370px;
  }
}

#mm-0 {
  z-index: unset !important;
}

.ref-header-wrapper {
  --ref-blue: #0171cf;
  width: 100%;
}

.ref-header-wrapper-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 560px;
}

@media (min-width: 768px) {
  .ref-header-wrapper-image {
    height: 650px;
  }
}

.ref-imagen-desktop {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.ref-imagen-mobile {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.ref-content {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #232323;
}

.ref-h1 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
  color: var(--ref-blue);
}

@media screen and (min-width: 768px) {
  .ref-h1 {
    text-align: left;
  }
}

.ref-form-wrapper {
  width: 100%;
}

.ref-form-wrapper h2 {
  text-transform: uppercase;
  color: #ccc;
  font-weight: bold;
  margin-bottom: 4rem;
}

.ref-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}

.ref-content-text {
  text-align: center;
  color: white;
}

.ref-form-wrapper select.form-control {
  background: #232323;
  color: white;
  font-size: 14px !important;
}

.ref-form-wrapper select.form-contro:focus {
  background: #232323;
  color: white;
  border-color: rgba(82, 168, 236, 0.8) !important;
  box-shadow: 0px 0px 8px rgba(82, 168, 236, 0.6) !important;
  outline: 0px none;
}

.ref-form-wrapper input~.ref-label,
.ref-form-wrapper select~.ref-label {
  top: -20px !important;
  font-size: 14px !important;
  color: white !important;
}

.wsp-box-office-time {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  color: white;
}