@charset "UTF-8";
/* CSS Document */

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Thin.ttf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: 200;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  font-size: 14px;
}

a,
a:link {
  color: #fff;
  text-decoration: none;
}

a:visited {
  color: #fff;
}

a:hover {
  color: #000;
}

a:active {
  color: #000;
}

strong {
  font-weight: 500;
}

.btn-primary {
  color: #fff;
  background-color: #0d3b66;
  border-color: #0d3b66;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:active:hover,
.btn-primary.active:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #1a417f;
  border-color: #1a417f;
}

.contenedor_general {
  background-color: #fff;
}

.contenedor_general.home {
  background-color: #0D3B66;
}

.contenedor {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.contenedor_minh {
  min-height: 500px;
}

.contenedor_listado {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

.contenedor_cabezal {
  background-color: #0d3b66;
  width: 100%;
}

.cabezal {
  min-height: 100px;
  color: #fff;
  border-top: 1px solid #0d3b66;

  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 11;
}

.logo {
  display: block;
  height: 100px;
}

.logo img {
  object-fit: contain;
  height: 100%;
}

.logo_texto {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.cabezal .redes {
  right: 20px;
  position: absolute;
  top: 20px;
}

.cabezal .redes .facebook {
  background-image: url("../img/facebook.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  float: right;
  margin-left: 10px;
}

.cabezal .redes .facebook:hover {
  opacity: 0.8;
}

.cabezal .redes .linkedin {
  background-image: url("../img/linkedin.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  float: right;
  margin-left: 10px;
}

.cabezal .redes .linkedin:hover {
  opacity: 0.8;
}

.cabezal .redes .twitter {
  background-image: url("../img/twitter.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  float: right;
  margin-left: 10px;
}

.cabezal .redes .twitter:hover {
  opacity: 0.8;
}

.cabezal .redes .youtube {
  background-image: url("../img/youtube.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  float: right;
  margin-left: 10px;
}

.cabezal .redes .youtube:hover {
  opacity: 0.8;
}

.cabezal .redes .instagram {
  background-image: url("../img/instagram.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  float: right;
  margin-left: 10px;
}

.cabezal .redes .instagram:hover {
  opacity: 0.8;
}

.cabezal .redes .english {
  background-image: url("../img/english.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  float: right;
  margin-left: 10px;
}

.cabezal .redes .english:hover {
  opacity: 0.8;
}

.cabezal .redes .espanol {
  background-image: url("../img/espanol.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  float: right;
  margin-left: 10px;
}

.cabezal .redes .espanol:hover {
  opacity: 0.8;
}

.cabezal .botonera {
  top: 55px;
  right: 10px;
  width: auto;
  bottom: 0;
  position: absolute;
  margin: 0 0 0 0;
  min-height: 1px;
}

.cabezal .boton {
  color: #fff;
  float: right;
  font-size: 12px;
  text-decoration: none;
  height: 35px;
  line-height: 25px;
  padding: 5px 10px;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: .1em;
}

.cabezal .boton:hover .subbotonera {
  display: block;
}

.cabezal .subbotonera {
  position: absolute;
  top: 35px;
  left: 0px;
  display: none;
}

.cabezal .subboton {
  color: #fff;
  background-color: #0d3b66;
  display: block;
  font-size: 11px;
  text-decoration: none;
  height: 35px;
  line-height: 31px;
  padding: 5px 10px;
  white-space: nowrap;
}

.cabezal .subboton:hover {
  color: #fff;
  background-color: #F9B02D;
}

.cabezal .hamburguesa {
  width: 30px;
  height: 30px;
  background-image: url(../img/ham.png);
  background-size: 30px 60px;
  background-position: left top;
  display: none;
  z-index: 98;
}

.cabezal .cerrar {
  display: none;
}

.cabezal .hamburguesa_b {
  background-image: url(../img/ham.png);
  background-position: left bottom;
}

.cabezal .referencia {
  right: 20px;
  position: absolute;
  width: 154px;
  top: 10px;
  font-size: 15px;
  line-height: 25px;
}

.cabezal .referencia .form-control {
  width: 50px;
  float: right;
  height: 23px;
  padding: 4px 8px;
}

.cabezal .referencia button {
  background-color: #fff;
  color: #1c3f95;
  border-color: #1c3f95;
  padding: 0px 0 1px 1px;
  float: right;
  margin-left: 2px;
  margin-top: 0;
}

.titulo_seccion {
  margin: 20px 0 10px 0;
  position: relative;
}

.titulo_seccion .volver {
  float: right;
}

.titulo_seccion h1 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 18px;
  margin-right: 120px;
  /* max-height: 42px; */
  overflow: hidden;
  line-height: 21px;
  /* position: absolute; */
  bottom: 0;
}

.titulo_largo {
  margin: 20px 0 10px 0;
  position: relative;
  text-align: center;
}

.titulo_largo h1 {
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    padding-left: 15px;
    background-color: #0d3b66;
    line-height: 42px;
    border-radius: 7px;
    letter-spacing: 1.5px;
}

.ingresadas .titulo_largo h1 {
  color: #0d3b66;
  background-color: #fff;
}

.contenido_interno .titulo_largo {
  margin-bottom: 40px;
}

.separador {
  height: 1px;
  margin-bottom: 20px;
  clear: both;
}

.separador_min {
  height: 1px;
  margin-bottom: 10px;
  clear: both;
}

.separador_linea {
  border-bottom: 1px solid #ddd;
  height: 1px;
  margin-bottom: 20px;
  clear: both;
}

.contenedor_listado .separador_linea {
  margin: 0 10px 20px 10px;
}

.buscador {
  /* border-bottom: 1px solid #ddd; */
  margin: 20px 0;
  padding-bottom: 20px;
}

.buscador_c1 {
  width: 17%;
  padding-right: 10px;
  float: left;
}

.buscador_c2 {
  width: 17%;
  padding-right: 10px;
  float: left;
}

.buscador_c3 {
  width: 33%;
  padding-right: 10px;
  float: left;
}

.buscador_c4 {
  width: 33%;
  float: left;
}

.buscador_c5 {
  width: 34%;
  padding-right: 10px;
  float: left;
  margin-top: 10px;
}

.buscador_c6 {
  width: 33%;
  float: left;
  margin-top: 10px;
  padding-right: 10px;
}

.buscador_c7 {
  width: 17%;
  float: left;
  margin-top: 10px;
  padding-right: 10px;
}

.buscador_c8 {
  width: 16%;
  float: left;
  margin-top: 10px;
}

.buscador_c9 {
  width: 17%;
  float: left;
  margin-top: 10px;
  padding-right: 10px;
}

.buscador_c10 {
  width: 50%;
  float: left;
  margin-top: 10px;
  padding-right: 10px;
}

.buscador_c11 {
  width: 17%;
  float: left;
  padding-right: 10px;
  margin-top: 10px;
}

.buscador_c12 {
  width: 16%;
  float: left;
  margin-top: 10px;
}

.contenido {
  min-height: 300px;
}

.contenido_interno {
  margin-top: 30px;
  margin-bottom: 30px;
  padding-bottom: 50px;
}

.propiedad_cont,
.card-project {
  width: 100%;
  height: 300px;
}

.propiedad {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.23);
  background-color: #fff;
  z-index: 1;
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.15s cubic-bezier(0.33, 0.66, 0.66, 1);
  transition: all 0.15s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.propiedad:hover {
  box-shadow: -2px 0 2px 0 rgba(0, 0, 0, 0.16), 2px 0 2px 0 rgba(0, 0, 0, 0.16),
    0 2px 2px 0 rgba(0, 0, 0, 0.23);
  /* -webkit-transform: translate3d(0, -3px, 0); */
  /* transform: translate3d(0, -3px, 0); */
}

.propiedad .imagen {
  width: 100%;
  height: 170px;

  background-size: cover;
  background-position: 50% 50%;

  overflow: hidden;

  position: absolute;
  top: 0;
  left: 0;

  z-index: 1;
}

.propiedad .sombra {
  width: 100%;
  height: 170px;

  overflow: hidden;

  background-color: #000000;

  opacity: 0.2;
  transition: opacity 0.3s;

  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.propiedad:hover .sombra {
  opacity: 0.1;
}

.propiedad .titulo {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.8);
  height: 120px;
  overflow: hidden;
  margin: 0;

  position: absolute;
  top: 15px;
  left: 15px;
  right: 50px;

  z-index: 3;
}

.propiedad .precio {
  font-size: 18px;

  color: #222;

  position: absolute;
  top: 180px;
  left: 15px;

  z-index: 3;
}

.propiedad .ubicacion {
  color: #222;
  font-size: 15px;

  position: absolute;
  bottom: 5px;
  right: 15px;

  text-align: right;

  z-index: 3;
}

.propiedad .caracteristicas {
  color: #222;
  position: absolute;
  top: 215px;
  left: 15px;
  z-index: 3;
  font-size: 15px;
}

.propiedad .link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 4;
}

.propiedad .favorito {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  font-size: 19px;
  color: #fff;
}

.fa-icon:before {
  /*content: "\f004"; /* Corazón */
  content: "\f005";
  /* Estrella */
}

.fa-icon-o:before {
  /*content: "\f08a"; /* Corazón */
  content: "\f006";
  /* Estrella */
}

.fa-icon-o:hover:before {
  /*content: "\f004"; /* Corazón */
  content: "\f005";
  /* Estrella */
}

.ficha .col_left {
  float: left;
  width: 60%;
  padding-right: 30px;
}

.ficha .col_right {
  float: left;
  width: 40%;
}

.ficha .col_g_2 {
  float: left;
  width: 50%;
  padding: 0 10px;
}

.ficha .col_v {
  float: left;
  width: 60%;
  padding: 0 5px 10px 0;
}

.ficha .col_a {
  float: left;
  width: 40%;
  padding: 0 0 10px 0;
}

.ficha .col_2 {
  float: left;
  width: 50%;
  padding: 0 5px 10px 5px;
}

.ficha .col_3 {
  float: left;
  width: 33%;
  padding: 0 5px 10px 5px;
}

.ficha .imagen {
  width: 100%;
  height: 380px;

  background-size: cover;
  background-position: 50% 50%;

  border: 1px solid #eee;
}

.ficha .titulo_1 {
  font-size: 25px;
}

.ficha .titulo_2 {
  font-size: 16px;
}

.ficha .titulo_3 {
  font-size: 17px;
}

.ficha .dato {
  width: 33%;
  padding-right: 5px;
  margin-bottom: 10px;
  float: left;
}

.ficha .foto {
  padding: 0 10px 20px 10px;
  float: left;
  width: 50%;
  position: relative;
}

.ficha .foto:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.ficha .foto div {
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 20px;
  right: 10px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.ficha .f_label {
  margin-bottom: 6px;
}

.ficha .f_control {
  margin-bottom: 15px;
}

.info_full {
  display: block;
}

.info_min {
  display: none;
}

.form-control-min {
  height: 32px;
  padding: 6px 10px;
  font-size: 13px;
}

.texto_centrado {
  text-align: center;
  width: 100%;
}

.mensaje_listado {
  text-align: center;
  margin-top: 100px;
  font-size: 16px;
  height: 200px;
}

.paginado {
  height: 60px;
  background-color: #fafafa;
  margin: 20px 10px;
}

.paginado_cont {
  margin: 0 auto;
  width: 280px;
  height: 60px;
  color: #333;
}

.paginado_link {
  height: 60px;
  line-height: 60px;
  width: 80px;
  float: left;
}

.paginado_link a {
  color: #333;
}

.paginado_sel {
  float: left;
  width: 60px;
  height: 40px;
  margin-top: 13px;
}

.paginado_cant {
  float: left;
  height: 60px;
  line-height: 60px;
  width: 40px;
  margin-left: 5px;
}

.contenedor_pie {
  background-color: #0d3b66;
  width: 100%;
  position: relative;
  background-image: url(/img/footer.jpg);
  background-position: bottom;
  background-size: cover;
}

.pie {
  color: #fff;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 136px;
  padding: 40px 0 20px;
  font-weight: 600;
  position: relative;
  display: flex;
  gap: 20px;
}

.pie>.new-footer-contain-1 {
  flex: 1;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.pie>.new-footer-contain-2 {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 50px;
  flex: 1;
}

.pie .datos_logos {
  width: 187px;
  margin-right: 0;
}

.pie .datos_logos img {
  margin-right: 15px;
  margin-bottom: 10px;
}

.pie .datos_logos p img:last-child {
  margin-right: 0;
}

.pie .new-footer-contain-2 .datos {
  text-align: right;
  font-size: 20px;
  align-self: flex-end;
  font-weight: bold;

}

.pie .new-footer-contain-2 .datos>a:last-child {
  width: 100%;
  display: block;
  text-align: center;
}

.pie .new-footer-contain-2 .datos a:hover {
  text-decoration: none;
  cursor: default;
}

@media (max-width: 1000px) {
  .pie {
    padding: 40px 20px 20px;
  }

  .new-footer-contain-1 div a span {
    text-align: start !important;
    display: inline !important;
  }
}

@media(max-width: 844px) {
  .new-footer-contain-2 .datos a {
    display: block;
    text-align: end;
  }
}

@media (max-width: 476px) {
  .pie .new-footer-contain-2 .datos {
    align-self: flex-start;

  }

  .pie .new-footer-contain-2 .datos>a {
    text-align: start;

  }

  .pie .new-footer-contain-2 .datos>a:last-child {
    text-align: start;
  }
}

.pie a,
.pie a:link {
  color: #fff;
}

.pie a:visited {
  color: #fff;
}

.pie a:hover {
  color: #666;
}

.pie a:active {
  color: #666;
}

.clear {
  clear: both;
  height: 0;
}

.fright {
  float: right;
}

.tright {
  text-align: right;
}

#map_canvas {
  width: 40%;
  height: 370px;
  float: left;
}

.col_contacto {
  width: 50%;
  float: left;
  padding-left: 30px;
}

.col_contacto .btn {
  width: 200px;
}

.banner img {
  width: 100%;
}

.banner_home {
  /*	min-height: 199px;
    background-color: #4c9ed0;
    padding-left: 33px;
    padding-top: 30px;
    padding-bottom: 20px;	*/
}

.banner_home img {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.banner_home .titulo_1 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
}

.banner_home .titulo_2 {
  color: #081e32;
  font-size: 20px;
  margin-bottom: 15px;
}

.banner_home .titulo_3 {
  font-size: 11px;
  color: #fff;
  line-height: 15px;
  margin-bottom: 10px;
}

.banner_home a {
  color: #081e32;
  font-size: 15px;
  text-decoration: none;
}

.titulo_color {
  color: #4c9dd2;
  font-size: 15px;
}

#banner_quienes {
  width: 100%;
  height: 260px;
  float: right;
  margin-bottom: 20px;
  position: relative;
}

#banner_quienes div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-size: cover;
  background-position: center center;
}

a.sodio {
  width: 26px;
  height: 7px;
  background-image: url("../img/sodio.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 25px 14px;
  display: block;
  position: absolute;
  bottom: 10px;
  right: 20px;
}

a.sodio:hover,
a.sodio:active {
  background-position: left bottom;
}

a.nai {
  width: 16px;
  height: 10px;
  background-image: url("../img/nai.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 16px 20px;
  display: block;
  position: absolute;
  bottom: 9px;
  right: 55px;
}

a.nai:hover,
a.nai:active {
  background-position: left bottom;
}

.div-newsletter,
.pie .datos,
.picture-footer {
  flex: 1;
}

.picture-footer {
  text-align: end;
  width: 100%;
}

.picture-footer>picture {
  display: inline-block;
  width: 200px;
}

.picture-footer>picture>img {
  width: 100%;
  height: 100%;
}

.picture-footer>div {
  margin-left: auto;
  width: 76%;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.picture-footer>div>a {
  flex: 1;
  display: block;
  height: 50px;
  width: fit-content;
}

.picture-footer>div>a>img {
  width: 100%;
  height: 100%;
}

.picture-footer>div>a.ciu>img {
  width: fit-content;
}

@media (max-width: 880px) {
  .info_full {
    display: none;
  }

  .info_min {
    display: block;
  }

  .ficha .col_left {
    float: none;
    width: 100%;
    padding: 0;
  }

  .ficha .col_right {
    float: none;
    width: 100%;
    padding: 0;
  }

  .ficha .col_right.col_consulta_proyecto {
    float: left;
  }
}

@media (max-width: 680px) {
  .banner_home img {
    float: none;
  }

  .pie .datos {
    margin-right: 0;
    margin-bottom: 30px;
    float: none;
  }
}

@media (max-width: 965px) {
  .cabezal .botonera {
    width: 240px;
    right: -240px;
    float: none;

    position: fixed;
    top: 0;
    margin: 0;
    z-index: 99;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding-top: 90px;
    border-left: 2px solid #1c3f95;
    transition: all 0.2s ease;
    overflow-y: scroll;
  }

  .cabezal .botonera_abierta {
    right: 0 !important;
  }

  .cabezal .boton {
    color: #0d3b66;
    font-size: 13px;
    display: block;
    padding: 5px 20px;
    width: 100%;
    height: auto;
  }

  .cabezal div.boton:hover {
    color: #0d3b66;
    background-color: inherit;
  }

  .cabezal .boton_clientes {
    background-color: inherit;
    color: #ef3e35;
  }

  .cabezal .subbotonera {
    position: relative;
    top: auto;
    left: 0px;
    display: block;
  }

  .cabezal .subboton {
    color: #bc8c0f;
    background-color: inherit;
  }

  .cabezal .hamburguesa {
    display: block;
    position: absolute;
    bottom: 11px;
    right: 22px;
  }

  .cabezal .cerrar {
    position: absolute;
    top: 50px;
    left: 10px;
    width: 30px;
    height: 30px;
    background-image: url(../img/back.png);
    background-size: 30px 60px;
    background-position: left bottom;
    z-index: 100;
  }
}

@media (max-width: 660px) {
  .cabezal .referencia {
    top: 5px;
  }

  .cabezal .redes {
    top: 15px;
    right: 18px;
  }

  .logo_texto {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .buscador_c1 {
    width: 100%;
    padding-right: 0;
  }

  .buscador_c2 {
    width: 24%;
    padding-right: 10px;
    margin-top: 10px;
  }

  .buscador_c3 {
    width: 38%;
    padding-right: 10px;
    margin-top: 10px;
  }

  .buscador_c4 {
    width: 38%;
    margin-top: 10px;
  }

  .buscador_c5 {
    width: 100%;
    padding-right: 0;
    margin-top: 10px;
  }

  .buscador_c6 {
    width: 100%;
    margin-top: 10px;
    padding-right: 0;
  }

  .buscador_c7 {
    width: 100%;
    margin-top: 10px;
    padding-right: 0;
  }

  .buscador_c8 {
    width: 100%;
    margin-top: 10px;
    padding-right: 0;
  }

  .buscador_c9 {
    width: 100%;
    margin-top: 10px;
    padding-right: 0;
  }

  .buscador_c10 {
    width: 100%;
    margin-top: 10px;
  }

  .buscador_c11 {
    width: 100%;
    margin-top: 10px;
    padding-right: 0;
  }

  .buscador_c12 {
    width: unset;
    margin-top: 10px;
  }

  .ficha .col_g_2 {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 0 20px 0;
  }

  .ficha .foto {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 0 20px 0;
    position: relative;
  }

  .ficha .foto div {
    left: 0;
    right: 0;
  }

  .ficha .dato {
    width: 50%;
  }

  #map_canvas {
    width: 100%;
    float: none;
  }

  .col_contacto {
    width: 100%;
    float: none;
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .ficha .imagen {
    height: 280px;
  }

  .ficha .titulo_3 {
    font-size: 15px;
  }
}

@media (max-width: 450px) {
  .ficha .col_v {
    float: none;
    width: 100%;
  }

  .ficha .col_a {
    float: none;
    width: 100%;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  a.sodio {
    background-image: url("../img/sodio_2x.png");
  }

  a.nai {
    background-image: url("../img/nai_2x.png");
  }

  .cabezal .redes .facebook {
    background-image: url("../img/facebook_2x.png");
  }

  .cabezal .redes .linkedin {
    background-image: url("../img/linkedin_2x.png");
  }

  .cabezal .redes .twitter {
    background-image: url("../img/twitter_2x.png");
  }

  .cabezal .redes .youtube {
    background-image: url("../img/youtube_2x.png");
  }

  .cabezal .redes .instagram {
    background-image: url("../img/instagram_2x.png");
  }

  .cabezal .redes .english {
    background-image: url("../img/english_2x.png");
  }

  .cabezal .redes .espanol {
    background-image: url("../img/espanol_2x.png");
  }
}

.contenido.nuevas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

a.redes_hover:hover {
  color: #F6AE2D;
}

.location-card {
  z-index: 2;
  position: absolute;
  color: #0D3B66;
  font-size: 14px;
  top: 10px;
  left: 10px;
  background-color: white;
  padding: 5px;
  border-radius: 5px;
}

.contenido.nuevas.proyectos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.project {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -100%;
  overflow: hidden;
  border-radius: 2px;
  background-color: #000c;
  z-index: 1;
  color: #000;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.15s cubic-bezier(0.33, 0.66, 0.66, 1);
  transition: all 0.15s cubic-bezier(0.33, 0.66, 0.66, 1);
  box-shadow: inset 0px 0px 500px 2px #0D3B6666;
}

.title-project {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%);
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  margin: 0;
  z-index: 2;
  text-align: center;
}

.card-project {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.proy-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.link-proy-card {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.card-project:hover {
  box-shadow: 0px 1px 3px 0px #0006;
}

.card-project:hover .title-project {
  text-shadow: none;
  transition: color, text-shadow .2s ease-in-out;
}

.card-project:hover .project {
  bottom: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.175s cubic-bezier(0.33, 0.66, 0.66, 1);
  transition: all 0.175s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.card-active {
  box-shadow: 0px 1px 3px 0px #0006;
}

.card-active .title-project {
  text-shadow: none;
  transition: color, text-shadow .2s ease-in-out;
}

.card-active .project {
  bottom: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.175s cubic-bezier(0.33, 0.66, 0.66, 1);
  transition: all 0.175s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.datos-proyecto {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}

.datos-proyecto .title-project {
  color: transparent;
}

.card-project:hover .datos-proyecto .title-project {
  color: transparent;
}

.card-active .datos-proyecto .title-project {
  color: transparent;
}

.datos-proyecto .ubicacion {
  text-align: center;
  color: white;
  font-weight: normal;
  margin-top: 20px;
  white-space: nowrap;
  font-size: 16px;
}

.datos-proyecto .ubicacion i {
  margin-right: 10px;
}

.datos-proyecto .ubicacion a {
  margin: 30px auto;
  padding: 5px 15px;
  border: 1px solid #F6AE2D;
  color: #F6AE2D;
  display: block;
  width: fit-content;
  z-index: 4;
  border-radius: 5px;
}

.datos-proyecto .ubicacion a:hover {
  background-color: #fff;
}

.swiper-proy-imagen {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*  */
.form-label-newsle {
  position: relative;
  display: block;
  clear: both;
  max-width: 500px;
  margin: 0 auto;
}

label.newsle {
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(50%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 4%;
  left: 1em;
  background: none;
  color: #b3b3b3;
  font-weight: normal;
  cursor: text;
  pointer-events: none;
  font-family: sans-serif;
}

input.newsle {
  display: block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: border-color;
  -moz-transition: border-color;
  transition: border-color;
  box-sizing: border-box;
  background-color: white;
  border-radius: 3px;
  border: 1px solid #DDD;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  font-size: 1em;
  margin-right: 0;
  margin-bottom: 0.75em;
  padding: 0.5em 0.5em;
  padding: 1em;
  width: 100%;
  color: #000;
}

input.newsle:focus~label {
  top: -14px;
  font-size: 1em;
  padding: 0 .3em;
  background: #F9F9F9;

}

input.newsle.hascontent~label {
  display: none;
  color: transparent;
  background: transparent;
}

.contariner-form-label-newsle {
  display: flex;
  position: relative;
}

.consulta-email-prop,
.consulta-wpp-prop,
.brochure {
  padding: 7px 15px;
  border-radius: 7px;
  display: block;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}

a:link.consulta-wpp-prop,
a:visited.consulta-wpp-prop {
  color: #fff;
  background-color: #00A884;
  margin-bottom: 10px;
}

.consulta-wpp-prop::after {
  content: 'Consultar Whatsapp';
  padding: 7px 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #00A884;
  background-color: #fff;
  clip-path: circle(0%);
  transition: clip-path .35s;
  border: 1px solid #00A884;
  border-radius: 5px;
}

.consulta-wpp-prop:hover::after {
  clip-path: circle(100%);
  transition: clip-path .35s;
}

button.consulta-email-prop {
  color: #555;
  background-color: #fff;
  border: 1px solid #555;
  width: 100%;
}

.consulta-email-prop::after {
  content: 'Consultar Email';
  padding: 7px 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #555;
  clip-path: circle(0%);
  transition: clip-path .35s;
  border-radius: 5px;
}

.consulta-email-prop.a::after {
  clip-path: circle(100%);
  transition: clip-path .35s;
}


.consulta-email-prop:not(.a):hover::after {
  clip-path: circle(100%);
  transition: clip-path .25s;
  /* animation: clipPath 3s infinite;
  animation-delay: .25s; */
}

@keyframes clipPath {
  0% {
    clip-path: circle(5%);
  }

  50% {
    clip-path: circle(7%);
  }

  100% {
    clip-path: circle(5%);
  }
}

.c-pointer {
  cursor: pointer;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next,
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  padding: 15px;
  background: white;
  border-radius: 50%;
  font-weight: 800;
}

a:link.brochure span {
  position: absolute;
  z-index: 2;
}

a:link.brochure,
a:visited.brochure {
  border: 1px solid #FF3132;
  color: #FF3132;
  margin-top: 10px;
  font-size: 14px;
  position: relative;
  margin-bottom: 10px;
}

.brochure::after {
  content: 'Descargar Brochure  ';
  padding: 7px 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #FF3132;
  clip-path: circle(0%);
  transition: clip-path .35s, color .15s;
  border: 1px solid #FF3132;
  border-radius: 5px;
}

.brochure:hover::after {
  clip-path: circle(100%);
  transition: clip-path .35s;
}

a:link.brochure span i {
  position: relative;
  left: 5px;
}

.brochure:hover span i {
  color: #fff;
  transition: color .3s;
}

div:has(strong.titulo_3.ref) {
  margin-bottom: 10px;
}

strong.titulo_3.ref {
  padding: 5px 10px;
  border: 1px solid;
  border-radius: 7px;
  color: #0D3B66;
}

div.caract_prop_container {
  text-align: center;
}

div.caract_prop_container .caract_prop {
  font-size: 15px;
  font-weight: 600;
}

.foto.galeria-ficha:before {
  padding: 0;
}

.image_visor {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#d_form_consultar {
  display: none;
}

textarea {
  resize: none;
}

@media (max-width:770px) {
  .pie {
    flex-wrap: wrap;
  }

  .logo {
    height: 80px;
  }
}

@media(max-width:429px) {
  .pie {
    flex-wrap: no-wrap;
    flex-direction: column;
  }

  .pie .datos {
    width: 100%;
    margin-bottom: 0;
  }

  .pie .div-newsletter {
    width: 100%;
    flex-grow: 1;
  }
}

@media(max-width:529px) {
  .picture-footer {
    text-align: start;
  }

  .picture-footer>div {
    margin-left: 0;
    width: 100%;
    flex-direction: row;
  }
}

.pie .new-footer-contain-2 .datos p {
  display: inline;
}

.pie .new-footer-contain-2 .datos p:last-child {
  width: 100%;
  display: block;
  text-align: center;

}



@media(width <=447px) {
  .pie .new-footer-contain-2 .datos p {
    text-align: left;
  }
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.d-block {
  display: block;
}

.text-start {
  text-align: start !important;
}

.propiedad-destacada {
  width: auto;
}

@media(width >=992px) {

  .d-md-block {
    display: block;
  }

  .text-md-center {
    text-align: center !important;
  }

}

@media(width >=576px) {

  .propiedad-destacada {
    width: 400px !important;
  }
}