/**********************************************************************************************/
/* IMPORTANTE: [06/10/2025]
   Este CSS se actualizó directamente online sin pasarpara la generación de scss en local     */
/**********************************************************************************************/


@charset "UTF-8";
/* variables.scss */
.grecaptcha-badge {
  z-index: 99;
}

h1, h2 {
  color: #223645;
  font-weight: 400;
  font-family: "Playfair Display", serif;
}

.claimer h1 {
  font-size: 3rem;
}
.claimer h2 {
  font-family: "Rubik", sans-serif;
  font-size: 2rem;
  line-height: 3rem;
}

h1,
h2.title-centered {
  position: relative;
}
h1:after,
h2.title-centered:after {
  content: "";
  position: absolute;
  border-bottom: 3px solid #F88379;
  width: 200px;
  left: 50%;
  bottom: -5px;
  margin-left: -100px;
}

h2.title {
  position: relative;
}
h2.title:after {
  content: "";
  position: absolute;
  border-bottom: 3px solid #F88379;
  width: 200px;
  left: 0;
  bottom: -5px;
}

.fondo-menu {
  display: none;
}
.fondo-menu.open {
  width: 100vw;
  height: 100vh;
  background-image: url("../img/bg-menu.jpg");
  background-size: cover;
  background-position: top center;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  z-index: 94;
}

.top-h {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F88379;
  padding-bottom: 5px;
}

.texto-sm {
  font-size: 1.5rem;
}

.texto {
  font-size: 1.6rem;
  line-height: 2rem;
  color: #223645;
}

.texto-lg {
  font-size: 2rem;
}

.important-text {
  color: #223645;
}

.bg-azul {
  background-color: #223645;
  color: #F0F0F0;
}
.bg-azul h2 {
  color: #F0F0F0;
}

.bg-grey {
  background-color: #F0F0F0;
}

.vertical-center {
  display: flex;
  align-items: center;
}

.btn-primary {
  background-color: #F88379;
  border-color: #F88379;
  color: #223645;
  border-radius: 0;
  font-size: 1.6rem;
  font-weight: normal;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-flex;
  transition: all 0.5s ease-in-out;
}
.btn-primary:visited, .btn-primary:active, .btn-primary:focus {
  background-color: #F88379 !important;
  border-color: #F88379 !important;
  color: #223645 !important;
}
.btn-primary:after {
  content: ">";
  font-weight: 400;
  display: inline-block;
  margin-left: 10px;
  margin-right: 0px;
  vertical-align: middle;
  font-size: 1.6rem;
  transition: all 0.5s ease-in-out;
}
.btn-primary:hover {
  background-color: #000101 !important;
  border-color: #223645 !important;
  color: #e8e2da !important;
}
.btn-primary:hover:after {
  margin-left: 15px;
  margin-right: -5px;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  background-color: #CCC !important;
  border-color: #CCC;
  color: #666;
  font-style: italic;
}
.btn.disabled:hover,
.btn:disabled:hover,
fieldset:disabled .btn:hover {
  cursor: not-allowed !important;
}

.btn-link {
  position: relative;
  background-color: transparent !important;
  border-color: transparent !important;
  color: #223645;
  border-radius: 0;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
}
.btn-link:before, .btn-link:after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  left: -40px;
  border-bottom: 3px solid #F88379;
  width: 20px;
  transition: all 0.2s ease-in-out;
}
.btn-link:hover {
  background-color: transparent !important;
  border-color: transparent;
  color: #223645;
}
.btn-link:hover:after {
  transform: rotate(90deg);
}
.btn-link:visited, .btn-link:active, .btn-link:focus {
  background-color: transparent !important;
  border-color: transparent;
  color: #223645;
}

form input[type=text],
form input[type=email] {
  width: 100%;
  height: 48px;
  background-color: #d9d9d9;
  color: #223645;
  text-indent: 10px;
  border: 1px solid #223645;
  font-size: 1.4rem;
}
form textarea {
  width: 100%;
  height: 110px;
  background-color: #d9d9d9;
  border: 1px solid #223645;
  color: #223645;
  text-indent: 10px;
  font-size: 1.4rem;
  padding-top: 10px;
}
form input[type=submit] {
  width: 100%;
  height: 48px;
  background-color: #D5C9BA;
  color: white;
  text-align: center;
  border: 1px solid #223645;
  text-transform: uppercase;
  font-size: 1.4rem;
}
form .acons {
  color: #F0F0F0;
  font-size: 1.2rem;
  font-style: italic;
}
form .acons a {
  color: #D5C9BA;
}
form input#checkvalue {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
form input[type=submit]:disabled {
  /* Estilos para el botón deshabilitado */
  opacity: 0.8; /* Ejemplo: reduce la opacidad del botón */
  cursor: not-allowed; /* Ejemplo: cambia el cursor a "no permitido" */
  font-style: italic;
}
form .info-footer a {
  color: #ccc;
  font-size: 1.4rem;
}
form .info-footer a i {
  padding-right: 10px;
}

.info-footer a {
  color: #ccc;
}

#backToTop {
  position: fixed;
  bottom: 5px;
  left: 70px;
  font-size: 3rem;
  color: #F88379;
  display: none !important;
}

.message_ok,
.message_error {
  padding: 10px;
  text-align: center;
  background-color: cadetblue;
  color: white;
}

.message_error {
  background-color: salmon;
}

.fancybox-stage h3 {
  font-size: 1.8rem;
}
.fancybox-stage h4 {
  font-size: 1.6rem;
  font-weight: bold;
}

.slick-initialized .slick-slide {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.slick-dots {
  list-style: none;
  text-align: center;
  padding-top: 30px;
}
.slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #223645;
  opacity: 0.4;
  margin: 0 5px;
}
.slick-dots li.slick-active {
  background-color: #223645;
  opacity: 1;
}
.slick-dots li button {
  opacity: 0;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  left: -90px;
  margin-top: -15px;
  transition: all 0.5s ease-in;
}
.slick-prev:hover,
.slick-next:hover {
  opacity: 0.5;
  cursor: pointer;
}

.slick-next {
  left: auto;
  right: -90px;
}

.enlaces ul li {
  list-style: none;
  margin-bottom: 10px;
}
.enlaces ul li a {
  text-decoration: none;
}
.enlaces ul li a:hover {
  text-decoration: underline;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 3rem;
  color: #F88379;
  z-index: 93;
}

/* Ocultar las flechas previous y next cuando solo hay una imagen */
#swipebox-bottom-bar {
  display: none;
}

#swipebox-overlay {
  background-color: rgba(13, 13, 13, 0.9);
}

ul.barrios {
  font-size: 1.7rem;
  padding-left: 2rem;
  padding-top: 1rem;
}
ul.barrios li {
  list-style: none;
  margin-bottom: 5px;
  font-weight: 500;
}
ul.barrios li span {
  color: #F88379;
  font-weight: 500;
  display: inline-block;
  width: 35px;
}
ul.barrios li .text-edif {
  color: #619ac5;
  width: auto;
  padding-right: 5px;
}
ul.barrios li img.img-edif {
  width: 12px !important;
}
ul.barrios li .num-edificios {
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: #619ac5;
}

.num-edificios-totales {
  font-size: 2.5rem;
  color: #619ac5;
}

.leyenda-edif {
  margin-left: 2rem;
  padding-top: 1rem;
  width: 75%;
}
.leyenda-edif img {
  width: 70%;
}
.leyenda-edif .txt {
  font-weight: 400;
}

.icon-zoom {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 50px;
  bottom: 30px;
}
.icon-zoom a {
  cursor: pointer;
}

/*  IMPORTANT: 
Slideshow Homepage
[https://codepen.io/bcarvalho/pen/gWPvJB]  */
.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}
.slideshow .slide .caption {
  background-color: rgba(34, 54, 69, 0.5);
}
.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.slideshow .slide .image {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slideshow .slide .title {
  margin: 0 auto 15px;
  max-width: 1000px;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}
.slideshow .slide .text {
  margin: 0 auto;
  max-width: 1000px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.slideshow .pagination {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
  display: flex;
  justify-content: center;
}
.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background: rgba(248, 131, 121, 0.7);
}
.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}
.slideshow .arrows .prev {
  left: 80px;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 80px;
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}

/* Definir la animación Ken Burns */
@keyframes kenBurns {
  0% {
    transform: scale(1.2) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(10px, -10px);
  }
}
.btnFlotante ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  top: 50%;
  right: -5px;
  transform: rotate(-90deg);
  height: 20px;
  z-index: 999;
  width: 45px;
  transition: 0.5s ease-in-out;
}
.btnFlotante ul li {
  margin: 0 5px;
  list-style: none;
}
.btnFlotante ul li a {
  margin: 5px auto;
  background: #F88379;
  padding: 10px 10px 20px 10px;
  display: block;
  transition: 0.3s ease-in;
  color: #fff !important;
  width: 180px;
  display: flex;
  font-weight: 300;
  align-items: center;
  text-decoration: none;
  position: relative;
}
.btnFlotante ul li a:hover {
  cursor: pointer;
}
.btnFlotante ul li a:hover img {
  animation-name: shakeAnim;
}
.btnFlotante ul li img {
  width: 30px;
  padding: 0;
  margin: 0px 10px 0 13px;
  position: absolute;
  left: 0;
  animation-name: shake;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
}
.btnFlotante ul li span.txt {
  margin-left: 45px;
}

.btnFlotante.hide ul {
  right: -60px;
  position: fixed;
}

@keyframes shake {
  0% {
    left: 0;
  }
  2% {
    left: -3px;
  }
  4% {
    left: 5px;
  }
  6% {
    left: -8px;
  }
  8% {
    left: 8px;
  }
  10% {
    left: -5px;
  }
  12% {
    left: 3px;
  }
  14% {
    left: 0;
  }
}
@keyframes shakeAnim {
  0% {
    left: 0;
  }
  1% {
    left: -3px;
  }
  2% {
    left: 5px;
  }
  3% {
    left: -8px;
  }
  4% {
    left: 8px;
  }
  5% {
    left: -5px;
  }
  6% {
    left: 3px;
  }
  7% {
    left: 0;
  }
}
.floatForm {
  width: 500px;
  position: fixed;
  top: calc(50% - 250px);
  right: -550px;
  box-shadow: 1px 1px 6px #333;
  transition: 0.4s ease-in-out;
  /* background-color: #2C3B51; */
  /* background-color: #93785C; */
  background-color: #223645;
  z-index: 9;
  padding: 30px 20px;
}
.floatForm.abierto {
  right: 0;
}
.floatForm.abierto .closeXform {
  color: white;
  cursor: pointer;
  font-size: 20px;
  height: 50px;
  width: 50px;
  position: absolute;
  right: 0;
  top: 15px;
}
.floatForm #contactForm {
  width: 80%;
  padding: 25px 0px 15px 0px;
  margin: 0 auto;
}
.floatForm #contactForm textarea {
  padding: 8px;
  border: 1px solid #223645;
  color: #333 !important;
  font-size: 1.3rem !important;
  width: 100%;
  overflow: hidden;
  resize: none;
  border-radius: 0px;
  margin: 10px 0;
  background-color: white !important;
}
.floatForm #contactForm input[type=text],
.floatForm #contactForm input[type=email],
.floatForm #contactForm input[type=tel] {
  background-color: white !important;
  border: 1px solid #223645;
  border-radius: 0;
  font-size: 1.3rem !important;
  color: #223645 !important;
}
.floatForm #contactForm .politica {
  position: relative;
}
.floatForm #contactForm .politica label {
  color: white;
  left: 30px;
  top: 0px !important;
}
.floatForm #contactForm .politica label a {
  color: white;
  text-decoration: underline;
}
.floatForm #contactForm #comprueba {
  margin: 10px 0;
  float: left;
  color: white;
}
.floatForm #contactForm #enviar {
  border: none;
  cursor: pointer;
  float: left;
  width: 100%;
  background: #2c3b51;
  -o-background: #2c3b51;
  -ms-background: #2c3b51;
  -moz-background: #2c3b51;
  transition: 0.5s ease-in-out;
  color: #FFF;
  font-size: 1em;
  padding: 10px 20px;
  border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  -moz-border-radius: 2px;
}
.floatForm #contactForm #respuesta {
  display: none;
  padding: 6px;
  background: #D0965F;
  color: #FFF;
  text-align: center;
  margin: 10px 0;
  border: 1px solid #D0965F;
  cursor: pointer;
  border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  -moz-border-radius: 2px;
}
.floatForm #contactForm input[type=submit],
.floatForm #contactForm button#enviar {
  background-color: #F88379 !important;
  border: 1px solid #F88379 !important;
  color: white;
  transition: all 0.5s ease-in-out;
  font-size: 1.5rem !important;
  font-style: normal;
}
.floatForm #contactForm input[type=submit]:hover,
.floatForm #contactForm button#enviar:hover {
  background-color: rgba(248, 131, 121, 0.7) !important;
  border: 1px solid #F88379 !important;
}
.floatForm #contactForm button#enviar[disabled] {
  background-color: #ccc !important;
  color: #666 !important;
  font-style: italic;
  cursor: not-allowed; /* Cambia el cursor a no permitido */
  border: 1px solid #223645 !important;
}
.floatForm h4 {
  color: white;
  text-align: center;
  line-height: 30px;
  font-size: 25px;
}

.scroll-downs {
  position: absolute;
  right: 0;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 8%;
  z-index: 2;
  width: 27px;
  height: 45px;
}
.scroll-downs .mousey {
  width: 0px;
  padding: 8px 13px 6px 9px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}
.scroll-downs .mousey .scroller {
  width: 3px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}
#comprueba {
  display: flex;
  justify-content: space-between;
}
#comprueba input#n1, #comprueba input#n2, #comprueba #res {
  border: 1px solid #223645 !important;
  background-color: #f3f3f3 !important;
  width: 60px;
  height: 35px;
  display: inline-block;
  font-weight: lighter;
}
#comprueba input#n1:focus, #comprueba input#n2:focus, #comprueba #res:focus {
  border: 1px solid #223645;
}
#comprueba #res {
  background-color: #fff !important;
}
#comprueba #res.ok {
  border-color: #29c829 !important;
}
#comprueba .error-txt {
  opacity: 1;
  display: block;
  padding-top: 10px;
  color: #F88379;
  transition: all 0.4s ease-in;
  font-weight: 400;
}
#comprueba .error-txt.hide {
  opacity: 0;
}
#comprueba .check-ok {
  opacity: 0;
}
#comprueba .check-ok i {
  color: #29c829;
  font-size: 2.2rem;
  padding-left: 10px;
}
#comprueba .check-ok.show {
  opacity: 1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
  z-index: 95;
}
header #logo {
  transition: all 0.5s ease-in-out;
}
header .txt-menu {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
header .navbar {
  padding-top: 5px;
  padding-bottom: 0px;
}
header .menu {
  margin-top: 20px;
  transition: all 0.5s ease-in-out;
}
header .menu span {
  bottom: 15px;
}
header .navbar-collapse .navbar-nav {
  width: 70%;
  padding-top: 80px;
}
header .navbar-collapse .navbar-nav li a {
  font-size: 2.5rem;
}
header .navbar-collapse .iconos li img {
  transition: all 0.5s ease;
}
header.mobile {
  background-color: #223645;
}
header.mobile .navbar {
  padding-top: 0px;
  padding-bottom: 0px;
}
header.mobile .navbar-collapse .navbar-nav {
  width: 90%;
}
header.mobile .navbar-collapse .navbar-nav li a {
  font-size: 2rem;
}
header.mobile .iconos {
  bottom: 50px;
}
header.mobile .menu {
  margin-top: 20px;
}
header.mobile .menu span {
  bottom: 35px;
}

.navbar {
  padding-bottom: 15px;
}

/* Estilos para el logo */
.navbar-brand {
  margin-right: 30px;
}

/* Estilos para el menú hamburguesa */
.navbar-toggler {
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent;
  background-size: cover;
  display: block !important;
  z-index: 999;
  position: absolute;
  right: 0;
  top: 30px;
}

.navbar-toggler.collapsed {
  color: #223645;
}

/* Estilos para el menú desplegable */
.navbar-collapse {
  position: fixed;
  top: 0;
  bottom: 0;
  padding-top: 60px;
  transition: right 0.3s ease;
  align-items: baseline !important;
}
.navbar-collapse ul.navbar-nav li {
  transform: translate(800px, 0px);
}

.navbar-collapse.show {
  right: -2px;
}
.navbar-collapse.show ul.navbar-nav li {
  transform: translate(0px, 0px);
  transition: opacity 0.3s ease-in-out, transform 0.4s ease-in-out;
}
.navbar-collapse.show ul.navbar-nav li:nth-child(1) {
  transition-delay: 0.15s;
}
.navbar-collapse.show ul.navbar-nav li:nth-child(2) {
  transition-delay: 0.12s;
}
.navbar-collapse.show ul.navbar-nav li:nth-child(3) {
  transition-delay: 0.19s;
}
.navbar-collapse.show ul.navbar-nav li:nth-child(4) {
  transition-delay: 0.22s;
}
.navbar-collapse.show ul.navbar-nav li:nth-child(5) {
  transition-delay: 0.1s;
}

.nav-item {
  margin: 10px;
}
.nav-item .nav-link {
  color: #F0F0F0;
  opacity: 0;
  transition: all 0.5s ease;
}
.nav-item .nav-link:hover {
  color: #F88379;
}
.nav-item .nav-link.show-element {
  opacity: 1;
  margin-left: 0px !important;
}
.nav-item.active .nav-link {
  color: #F88379;
}

.navbar-nav {
  flex-direction: column !important;
  padding-left: 10%;
  padding-top: 100px;
}
.navbar-nav li {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.navbar-nav li a {
  text-transform: uppercase;
}

/* HAMBURGER MENU */
.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 999;
  position: relative;
}
.menu span {
  position: absolute;
  font-size: 1.3rem;
  right: 12px;
  color: white;
}
.menu.menu-oscuro span {
  color: #223645;
}
.menu.opened span {
  color: #223645;
  opacity: 0;
}
.menu.opened .txt-menu {
  opacity: 0 !important;
}

.menu:not(.opened):hover .line1 {
  stroke-dasharray: 60 207 !important;
}
.menu:not(.opened):hover .line2 {
  stroke-dasharray: 60 60 !important;
}

.line {
  fill: none;
  stroke: white;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 50 207;
  stroke-width: 8;
}

.line2 {
  stroke-dasharray: 40 60;
  stroke-width: 8;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 8;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.menu.opened .line {
  stroke: #F88379;
}

.menu-oscuro .line {
  stroke: #223645;
}

.iconos {
  position: absolute;
  border: 10px;
  left: 10%;
  z-index: 9;
}
.iconos ul {
  list-style: none;
}
.iconos ul li {
  display: inline-block;
  margin: 0 10px;
}
.iconos ul li a {
  transition: all 0.5s ease-in;
}
.iconos ul li a i {
  color: #F88379;
  font-size: 25px;
}
.iconos ul li ahover i {
  color: #F0F0F0;
}
.iconos .cambio-idoma {
  margin-top: 20px;
}
.iconos .cambio-idoma img {
  width: 25px;
  margin: 0 10px;
}

.tab-contacto {
  position: fixed;
  top: 42%;
  right: 0;
  background-color: #223645;
  height: 100px;
  width: 50px;
  padding: 10px 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  transition: all 0.5s ease-in;
  z-index: 9;
}
.tab-contacto.show {
  right: -200px;
}
.tab-contacto img {
  width: 25px;
  height: auto;
}
.tab-contacto img.flag {
  filter: grayscale(1);
  transition: all 0.5s ease-in;
}
.tab-contacto img.flag:hover {
  filter: grayscale(0);
}
.tab-contacto img:hover {
  cursor: pointer;
}

.nav.nav-tabs {
  justify-content: center;
  border: 0;
}
.nav.nav-tabs li button {
  opacity: 1;
  color: #223645;
  border: 1px solid #223645 !important;
  border-radius: 0;
  font-size: 2rem;
}
.nav.nav-tabs li button.active {
  background-color: #F88379;
  color: white;
  border: 1px solid #F88379 !important;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

.main {
  overflow-x: hidden;
}

#cover {
  height: 100vh;
  width: 100vw;
  position: initial;
}
#cover .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#cover-small {
  height: 70vh;
  width: 100vw;
  position: initial;
  background-image: url("../img/bg-quienes-somos.jpg");
  background-size: cover;
  background-position: bottom center;
}

.numeros .numero {
  font-weight: 500;
  padding: 20px 0;
}
.numeros h3 {
  font-size: 1.6rem;
  font-family: "Rubik", sans-serif;
}

.content-num {
  display: flex;
  align-items: center;
}
.content-num .num {
  text-align: end;
}
.content-num .num span {
  font-family: "Rubik", sans-serif;
  font-weight: lighter;
}

.start-section {
  background-color: #223645;
  color: white;
  padding: 100px 0;
}

.trakrecord .slick-slide {
  text-align: left;
}
.trakrecord .slick-slide div {
  position: relative;
}
.trakrecord .slick-slide div h3 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  color: white;
  font-size: 2rem;
  font-weight: 500;
}

/** FOOTER */
footer {
  width: 100%;
  position: relative;
  z-index: 99;
  background-image: url("../img/bg-footer.jpg");
  background-size: cover;
  background-position: bottom center;
  color: #F0F0F0;
}
footer .content-info {
  border-bottom: 1px solid #F0F0F0;
}
footer a {
  color: #F0F0F0;
}
footer h2, footer h3 {
  color: #F0F0F0;
}
footer h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
}
footer .bottom-footer {
  background-color: rgba(17, 17, 16, 0.5);
}

form {
  margin-top: 50px;
}
form .mitad {
  width: 47%;
}
form textarea {
  border-bottom: 1px solid #F0F0F0;
}

.campo {
  position: relative;
}

form input[type=text],
form input[type=email],
textarea {
  border: 0px;
  border-bottom: 1px solid #F0F0F0;
}

input,
textarea {
  width: 100%;
  padding: 10px 10px 10px 5px;
  border-radius: 0px;
  background-color: transparent !important;
  display: block;
  outline: none;
  font-size: 1.8rem !important;
  color: white !important;
}
input:focus,
textarea:focus {
  outline: none;
}

label {
  position: absolute;
  top: 10px !important;
  left: 5px;
  font-size: 15px;
  transition: 0.2s ease-out;
}

input:focus,
textarea:focus {
  border-bottom: 0 !important;
}

input:focus ~ label,
textarea:focus ~ label {
  top: -20px !important;
  font-size: 16px;
  color: #F88379;
}

input.active ~ label,
textarea.active ~ label {
  top: -20px !important;
  font-size: 16px;
  color: #F88379;
}

input.active,
textarea.active {
  border-bottom: 2px solid #F88379 !important;
}

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

.bar:before,
.bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #F88379;
  transition: all 0.2s ease;
}

.bar:before {
  left: 50%;
}

.bar:after {
  right: 50%;
}

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

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

input:focus ~ .highlight,
textarea:focus ~ .highlight {
  animation: input-focus 0.5s ease;
}

@keyframes input-focus {
  from {
    background: #F88379;
  }
  to {
    width: 100%;
    background: transparent;
  }
}
ul.list-icons {
  list-style: none;
  text-align: right;
}
ul.list-icons li {
  margin: 0 10px 0 10px;
}

/** EQUIPO */
.team {
  border-left: 3px solid #223645;
  padding-left: 30px;
}
.team .nombre {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin: 0;
  font-weight: 600;
}
.team .cargo {
  font-weight: 400;
  font-style: italic;
  padding: 10px 0 15px 0;
}
.team .descripcion {
  padding-bottom: 10px;
}
.team .btn-content {
  margin-left: 40px;
}

.white-popup-block {
  position: relative;
  background: #FFF;
  width: auto;
  max-width: 900px;
  margin: 20px auto;
  overflow: hidden;
}
.white-popup-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
}
.white-popup-block .cargo {
  font-weight: 400;
  font-style: italic;
}
.white-popup-block .enlace-perfil-externo i.bi-linkedin {
  color: #0A66C2;
  font-size: 3rem;
}
.white-popup-block .popup-modal-dismiss {
  position: absolute;
  right: 20px;
  top: 10px;
}
.white-popup-block .popup-modal-dismiss i {
  color: #223645;
  font-size: 3rem;
}
.white-popup-block .row {
  min-height: 300px;
  align-items: center;
}
.white-popup-block .row .col-md-5 img {
  height: 100%;
  width: auto;
}

.bg-con-flecha {
  position: relative;
}
.bg-con-flecha .flecha-azul {
  position: absolute;
  bottom: -40px;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  height: 50px;
  background-image: url("../img/flecha-azul.svg");
  background-position: bottom center;
}
.bg-con-flecha .flecha-verde {
  position: absolute;
  bottom: -40px;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  height: 50px;
  background-image: url("../img/flecha-verde.svg");
  background-position: bottom center;
}

.ciudad {
  background-color: #fdfdfd;
}
.ciudad h3 {
  font-size: 3rem;
  font-family: "Playfair Display", serif;
}
.ciudad .texto {
  line-height: 150%;
}

.iconos-inversion h3 {
  min-height: 88px;
  display: block;
}

.container-empty {
  min-height: 35vh;
}

.white-content-block {
  background-color: white;
  margin-bottom: -23.5vh;
  min-height: 370px;
}

.edificio {
  position: relative;
  overflow: hidden;
  background-color: #223645;
}
.edificio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.edificio h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  margin: 0;
  left: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  transition: all 0.5s ease;
  background: rgba(216, 255, 107, 0);
  background: -moz-linear-gradient(top, rgba(216, 255, 107, 0) 0%, rgba(186, 219, 92, 0) 14%, rgb(0, 0, 0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(216, 255, 107, 0)), color-stop(14%, rgba(186, 219, 92, 0)), color-stop(100%, rgb(0, 0, 0)));
  background: -webkit-linear-gradient(top, rgba(216, 255, 107, 0) 0%, rgba(186, 219, 92, 0) 14%, rgb(0, 0, 0) 100%);
  background: -o-linear-gradient(top, rgba(216, 255, 107, 0) 0%, rgba(186, 219, 92, 0) 14%, rgb(0, 0, 0) 100%);
  background: -ms-linear-gradient(top, rgba(216, 255, 107, 0) 0%, rgba(186, 219, 92, 0) 14%, rgb(0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(216, 255, 107, 0) 0%, rgba(186, 219, 92, 0) 14%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d8ff6b", endColorstr="#000000", GradientType=0 );
}
.edificio h3 span {
  position: absolute;
  bottom: 0px;
  left: 0;
  color: #F0F0F0;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 0.5s ease;
}
.edificio h4 {
  opacity: 0;
  position: absolute;
  bottom: -30px;
  left: 20px;
  text-transform: uppercase;
  color: #F88379;
  transition: all 0.5s ease;
  z-index: 999;
}
.edificio .links {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
.edificio .links a, .edificio .links div {
  padding-left: 20px;
  padding-right: 20px;
}
.edificio .links a i, .edificio .links div i {
  font-size: 5rem;
  color: #F88379;
}
.edificio.vacio {
  background-color: #223645;
}
.edificio:hover:not(.vacio) img {
  opacity: 0.3;
}
.edificio:hover:not(.vacio) .links {
  opacity: 1;
}
.edificio:hover:not(.vacio) h3 span {
  bottom: 30px;
}
.edificio:hover:not(.vacio) h4 {
  bottom: 20px;
  opacity: 1;
}

.texto-section-eurostone h2 {
  font-style: italic;
}
.texto-section-eurostone ul {
  list-style-image: url("../img/check.svg");
  margin-left: 10px;
}
.texto-section-eurostone ul li {
  position: relative;
}
.texto-section-eurostone ul li span {
  font-weight: 400;
  position: absolute;
  bottom: auto;
  top: 0;
  left: 5px;
}

.bg-edificio {
  background-image: url("../img/iconos/mas-edificios.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

.contacto .contacto-info div {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.contacto .contacto-info div a {
  color: #223645;
  text-decoration: none;
  transition: all 0.5s ease;
}
.contacto .contacto-info div a:hover {
  text-decoration: underline;
}
.contacto .form-contacto form input[type=text],
.contacto .form-contacto form input[type=email],
.contacto .form-contacto textarea {
  color: #223645 !important;
  border: 0;
  border-bottom: 1px solid #446b89;
}
.contacto .form-contacto .check {
  display: flex;
}
.contacto .form-contacto .check input[type=checkbox] {
  display: inline-block;
}
.contacto .form-contacto .check span {
  color: #223645;
}
.contacto .form-contacto .check span a {
  color: #F88379;
  transition: all 0.5s ease;
}
.contacto .form-contacto .check span a:hover {
  color: #223645;
}

h1 {
  font-size: 3rem;
  line-height: 4rem;
}

h2 {
  font-size: 3rem;
  line-height: 4rem;
}

.texto {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

.claimer h1 {
  font-size: 3rem;
  line-height: 4rem;
}

.slide .caption .title {
  font-size: 3rem;
  line-height: 4rem;
}

.slide .caption .text {
  font-size: 2rem;
  line-height: 3rem;
}

.contesto {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 80px;
  right: 25px;
  background-color: red;
  border: 1px solid #333;
}
.contesto:after {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  content: "sm";
}

.slide .caption {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 30px 30px;
}

#logo {
  width: 80%;
}

#menu:focus-visible {
  outline: none;
}

.navbar-collapse {
  right: -100vw;
  width: 100vw;
}

.content-num .num {
  width: 80px;
}
.content-num .num span {
  font-size: 3rem;
}
.content-num .flags img {
  width: 25px;
}

.texto-section-eurostone .contenido-eurostone {
  font-size: 1.6rem;
}
.texto-section-eurostone ul li span {
  font-size: 1.6rem;
}

.bg-edificio img {
  height: 410px;
}

.numeros .numero {
  font-size: 5rem;
}

.texto-md {
  font-size: 1.8rem;
}

.important-text {
  font-size: 1.8rem;
  line-height: 3rem;
}


#header.fixed {
  background-color: rgba(34, 54, 69, 0.7);
}
#header.fixed.header-claro {
  background-color: rgba(255, 255, 255, 0.7);
}



@media screen and (max-width: 767px) and (orientation: landscape) {
  .navbar-collapse {
    padding-top: 30px;
  }
  .nav-item {
    margin-bottom: 5px;
  }
  .navbar-nav {
    padding-top: 50px;
  }
  .navbar-nav li {
    padding-bottom: 0;
  }
  .iconos {
    right: 100px;
    left: auto;
    bottom: auto;
    top: 35px;
  }
  .numeros .numero {
    font-size: 5rem;
  }
}
/* FIN MOBILE */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
  h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
  .claimer h1 {
    font-size: 2.7rem;
    line-height: 3.7rem;
  }
  .contesto {
    background-color: orange;
  }
  .contesto:after {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    content: "md";
  }
  header .menu {
    margin-top: 20px;
  }
  header .iconos {
    bottom: 200px;
  }
  .navbar-collapse {
    right: -70vw;
    width: 70vw;
  }
  .content-num .num {
    width: 80px;
  }
  .content-num .num span {
    font-size: 3rem;
  }
  .content-num .flags img {
    width: 25px;
  }
  .bg-edificio img {
    height: 410px;
  }
  .numeros .numero {
    font-size: 5rem;
  }
  .white-popup-block .row {
    height: 500px;
  }
  .important-text {
    font-size: 2.4rem;
    line-height: 4rem;
  }
}
@media (min-width: 768px) and (orientation: landscape) {
  .contesto {
    background-color: teal;
  }
  .contesto:after {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    content: "md";
  }
  .navbar-collapse {
    padding-top: 0px;
    width: 90%;
  }
  .navbar-nav {
    padding-top: 80px;
  }
  .navbar-nav li {
    padding-bottom: 0;
  }
  header .navbar-collapse .navbar-nav li a {
    font-size: 2rem;
  }
  #header.fixed {
    background-color: transparent;
  }
  #header.fixed #logo {
    width: 80%;
  }
  #header.fixed .txt-menu {
    opacity: 0;
  }
  .numeros .numero {
    font-size: 5rem;
  }
  .important-text {
    font-size: 2.5rem;
    line-height: 4rem;
  }
  .iconos {
    right: 140px;
    left: auto;
    bottom: auto;
    top: 40px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 3.8rem;
    line-height: 4.8rem;
  }
  h2 {
    font-size: 3.8rem;
    line-height: 4.8rem;
  }
  .claimer h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
  .contesto {
    background-color: yellow;
  }
  .contesto:after {
    position: absolute;
    top: 8px;
    left: 12px;
    width: 100%;
    height: 100%;
    content: "lg";
  }
  #logo {
    width: 100%;
  }
  #header.fixed {
    background-color: transparent;
  }
  #header.fixed #logo {
    width: 80%;
  }
  #header.fixed .txt-menu {
    opacity: 0;
  }
  header .menu {
    margin-top: 30px;
  }
  header .menu span {
    bottom: 20px;
  }
  header .iconos {
    bottom: 100px;
    top: auto;
    right: auto;
    padding-left: 10%;
  }
  .navbar-collapse {
    right: -50vw;
    width: 50vw;
  }
  .navbar-nav {
    padding-top: 120px;
  }
  .navbar-nav li {
    padding-bottom: 10px;
  }
  header .navbar-collapse .navbar-nav li a {
    font-size: 3.2rem;
  }
  .content-num .num {
    width: 100px;
  }
  .content-num .num span {
    font-size: 3.5rem;
  }
  .content-num .flags img {
    width: 35px;
  }
  .bg-edificio img {
    height: 430px;
  }
  .numeros .numero {
    font-size: 5rem;
  }
  .texto-md {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .contesto {
    background-color: purple;
  }
  .contesto:after {
    position: absolute;
    top: 8px;
    left: 12px;
    width: 100%;
    height: 100%;
    color: white;
    content: "xl";
  }
  h1 {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
  h2 {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }
  .texto {
    font-size: 1.3rem;
    line-height: 2.3rem;
  }
  .claimer h1 {
    font-size: 2.7rem;
    line-height: 3.7rem;
  }
  .slide .caption .title {
    font-size: 4rem;
    line-height: 5rem;
  }
  .slide .caption .text {
    font-size: 3rem;
    line-height: 4rem;
  }
  .slide .caption {
    position: absolute;
    bottom: 100px;
    left: 100px;
    width: auto;
    padding: 30px 100px;
  }
  .content-num .num {
    width: 90px;
  }
  .content-num .num span {
    font-size: 3.5rem;
  }
  .content-num .flags img {
    width: 40px;
  }
  #header.fixed {
    background-color: rgba(34, 54, 69, 0.7);
  }
  #header.fixed.header-claro {
    background-color: rgba(255, 255, 255, 0.7);
  }
  #header.fixed .menu {
    margin-top: 10px;
  }
  #header.fixed .txt-menu {
    opacity: 1;
    bottom: 20px;
  }
  .bg-edificio img {
    height: 430px;
  }
  .numeros .numero {
    font-size: 4.5rem;
  }
  .texto-md {
    font-size: 1.8rem;
  }
}
@media (min-width: 1366px) {
  .contesto {
    background-color: aqua;
  }
  .contesto:after {
    position: absolute;
    top: 8px;
    left: 12px;
    width: 100%;
    height: 100%;
    color: #333;
    content: "xl";
  }
  h1 {
    font-size: 3.8rem;
    line-height: 4.8rem;
  }
  h2 {
    font-size: 3.8rem;
    line-height: 4.8rem;
  }
  .texto {
    font-size: 1.3rem;
    line-height: 2.3rem;
  }
  .claimer h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
  .slide .caption .title {
    font-size: 4rem;
    line-height: 5rem;
  }
  .slide .caption .text {
    font-size: 3rem;
    line-height: 4rem;
  }
  .slide .caption {
    position: absolute;
    bottom: 100px;
    left: 100px;
    width: auto;
    padding: 30px 100px;
  }
  .bg-edificio img {
    height: 460px;
  }
  #header.fixed {
    background-color: rgba(34, 54, 69, 0.7);
  }
  #header.fixed.header-claro {
    background-color: rgba(255, 255, 255, 0.7);
  }
  #header.fixed .menu {
    margin-top: 10px;
  }
  #header.fixed .txt-menu {
    opacity: 1;
    bottom: 20px;
  }
  .numeros .numero {
    font-size: 5rem;
  }
}
@media (min-width: 1440px) {
  .contesto {
    background-color: blue;
  }
  .contesto:after {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    color: white;
    content: "xxl";
  }
  .texto {
    font-size: 1.3rem;
    line-height: 2.3rem;
  }
  .slide .caption .title {
    font-size: 5rem;
    line-height: 6rem;
  }
  .slide .caption .text {
    font-size: 4rem;
    line-height: 5rem;
  }
  .slide .caption {
    position: absolute;
    bottom: 100px;
    left: 100px;
    width: auto;
    padding: 30px 100px;
  }
  #header.fixed {
    background-color: rgba(34, 54, 69, 0.5);
  }
  #header.fixed.header-claro {
    background-color: rgba(255, 255, 255, 0.5);
  }
  #header.fixed #logo {
    width: 90%;
  }
  #header.fixed .txt-menu {
    opacity: 1;
    bottom: 30px;
  }
  #header #logo {
    width: 100%;
  }
  #header .navbar-nav {
    padding-top: 200px;
  }
  .content-num .num {
    width: 115px;
  }
  .content-num .num span {
    font-size: 4rem;
  }
  .content-num .flags img {
    width: 50px;
  }
  .bg-edificio img {
    height: 480px;
  }
  .numeros .numero {
    font-size: 6rem;
  }
  .texto-md {
    font-size: 2rem;
  }
}
@media (min-width: 1920px) {
  .contesto {
    background-color: black;
  }
  .contesto:after {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    color: white;
    content: "xxl";
  }
  .texto {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  .slide .caption .title {
    font-size: 5rem;
    line-height: 6rem;
  }
  .slide .caption .text {
    font-size: 4rem;
    line-height: 5rem;
  }
  .slide .caption {
    position: absolute;
    bottom: 100px;
    left: 100px;
    width: auto;
    padding: 30px 100px;
  }
  .bg-edificio img {
    height: 550px;
  }
  #header .iconos {
    bottom: 200px;
  }
}