@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Nunito&display=swap");
:root {
  --main-font:"Raleway";
  --alternate-font:sans-serif;
  --font-size:16px;
  --line-height:1.6;
  --main-color:#8892bf;
  --main-modal-color:rgba(136,146,191,0.75);
  --second-color:#4f5b93;
  --second-modal-color:rgba(79,91,147,0.75);
  --bg-color:#fff;
  --bg-modal-color:hsla(0,0%,100%,0.75);
  --bg-alternate-color:#f3f3f3;
  --bg-alternate-modal-color:hsla(0,0%,95.3%,0.75);
  --border-color:#ddd;
  --text-color:#333;
  --title-color:#000;
  --link-color:var(--main-color);
  --link-hover-color:var(--second-color);
  --max-width:1200px;
  --navbar-height:4rem;
  --logo-width:4rem;
  --logo-height:4rem;
  --logo-spacing:.5rem;
}

html {
  box-sizing: border-box;
  font-family: var(--main-font), var(--alternate-font);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: var(--bg-modal-color);
}

*, :after, :before {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
}

a {
  font-weight: 700;
  text-decoration: none;
  color: var(--link-color);
  transition: all 0.3s ease-out;
}

a:hover {
  color: var(--link-hover-color);
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

iframe, video {
  width: 100%;
  height: calc(56.25vw - 2.25rem);
  max-height: 450px;
}

::-moz-selection {
  background-color: var(--main-color);
  color: var(--second-color);
}

::selection {
  background-color: var(--main-color);
  color: var(--second-color);
}

.u-responsiveFlexbox {
  display: flex;
  flex-wrap: wrap;
}

.u-responsiveFlexbox > * {
  flex: 1 1 200px;
}

.u-responsiveGrid {
  display: grid;
  grid-gap: 1em;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.u-responsiveVideo {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.u-responsiveVideo > iframe, .u-responsiveVideo > video {
  position: absolute;
  width: 100%;
  height: 100%;
}

.u-fullScreen {
  width: 100%;
  min-height: 100vh;
}

.u-fullWidth {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.u-maxWidth {
  display: block;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.u-flexRowCenter {
  justify-content: center;
}

.u-flexRowCenter, .u-flexRowSpaceEvenly {
  display: flex;
  align-items: center;
}

.u-flexRowSpaceEvenly {
  justify-content: space-evenly;
}

.u-flexColumnCenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.u-flowText {
  font-size: 1rem;
}

@media screen and (min-width: 20em) {
  .u-flowText {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 30em) {
  .u-flowText {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 45em) {
  .u-flowText {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 64em) {
  .u-flowText {
    font-size: 2rem;
  }
}
@media screen and (min-width: 75em) {
  .u-flowText {
    font-size: 2.5rem;
  }
}
.Error-404 {
  padding: 1rem;
  text-align: center;
}

.Error-404 > * {
  margin-bottom: 1rem;
}

.Error-404 img {
  max-width: 400px;
}

.NavBar {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: var(--navbar-height);
  line-height: var(--navbar-height);
  background-color: var(--second-color);
}

.NavBar-container {
  position: fixed;
  margin: 0 auto;
  max-width: var(--max-width);
}

.NavBar-btn {
  position: absolute;
  z-index: 999;
  top: -0.5rem;
  right: 0;
}

.NavBar-panel {
  position: fixed;
  z-index: 998;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  background-color: var(--second-modal-color);
  transition: transform 0.3s ease;
  transform: translateY(-100%);
  transform: translate(100%);
  transform: translateY(100%);
  transform: translate(-100%);
}

.NavBar-panel.is-active {
  transform: translate(0);
}

.Logo {
  position: absolute;
  left: 0.5rem;
  z-index: 999;
}

.Logo a {
  font-size: 2rem;
  text-decoration: none;
  color: var(--main-color);
  transition: all 0.3s ease;
}

.Logo a:hover {
  opacity: 0.75;
}

.Logo img {
  padding: var(--logo-spacing);
  width: auto;
  height: var(--logo-height);
}

.hamburger:focus {
  outline: 0;
  border: 0;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  background-color: var(--main-color);
}

.u-afterFixed {
  padding-top: var(--navbar-height);
}

@media screen and (min-width: 64em) {
  .NavBar-container {
    display: flex;
  }
  .NavBar-container > * {
    position: fixed;
    flex: auto;
  }
  .NavBar-btn {
    display: none;
  }
  .NavBar-panel {
    display: flex;
    overflow-y: visible;
    background-color: transparent;
    transform: translate(0);
  }
  .Logo a {
    margin-left: 0.5rem;
  }
}
.Menu {
  margin: 0 auto;
  padding-top: var(--navbar-height);
  text-align: center;
}

.Menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.Menu li {
  margin-left: 0;
}

.Menu a {
  display: block;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--bg-color);
  transition: all 0.3s ease;
}

.Menu a:hover {
  font-weight: 700;
  color: var(--title-color);
  background-color: var(--main-color);
}

@media screen and (min-width: 64em) {
  .Menu {
    padding-top: 0;
    flex: auto;
  }
  .Menu ul {
    flex-direction: row;
    justify-content: space-evenly;
  }
  .Menu a {
    padding: 0 0.5rem;
    border-top: solid transparent;
  }
  .Menu a:hover {
    border-top: solid var(--bg-modal-color);
    color: var(--bg-modal-color);
    background-color: transparent;
  }
}
* {
  transition: 0.5s ease-in-out;
}

body {
  color: #606062;
  font-family: "Raleway", sans-serif;
  font-size: 1em;
  font-weight: 400;
}

main {
  position: relative;
}

a {
  color: #fff;
  transition: 0.2s;
}

h2 {
  font-weight: 800;
  margin-bottom: 30px;
  color: #000;
}

.logoTopInterior {
  position: absolute;
  top: 1.2%;
  width: 10%;
  left: 33%;
}
@media (max-width: 768px) {
  .logoTopInterior {
    display: none;
  }
}

.numbers {
  font-family: "Nunito", sans-serif;
}

.logoHeader {
  display: none;
}
@media (max-width: 768px) {
  .logoHeader {
    display: block;
    top: 36%;
    width: 17%;
    position: absolute;
    left: 33%;
  }
}

@media (max-width: 768px) {
  .fixed .logoHeader {
    display: block;
    width: 17%;
    top: 36%;
    position: absolute;
    left: 33%;
  }
}

@media (max-width: 768px) {
  .logosEmpresasFooter {
    padding-left: 20px;
  }
}

.proyecto .logo, .cuadrologo img {
  width: auto;
}

.ubicacion {
  margin-top: 5%;
}

.proyecto.conBackground {
  background-color: #eee;
}

.imgLotes {
  width: 90%;
}

.pre-footer {
  background-color: #045479;
  padding: 1.5% 0%;
  color: #fff;
}
.pre-footer h5 {
  margin: 0;
}
@media (max-width: 765px) {
  .pre-footer {
    padding: 4.5% 0%;
  }
  .pre-footer h5 {
    font-size: unset;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
}

.pre-footer a:hover {
  color: rgb(207, 207, 207);
}

.map {
  width: 100%;
  height: 300px;
  border: 1px solid #ddd;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 765px) {
  .containerFalso {
    padding: 5%;
  }
  .imgIzq {
    height: 350px;
    width: 100%;
  }
  .imgDer {
    height: 300px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .container-fluid {
    padding-left: 0;
  }
  .container-fluid .row .col-md-6.col-texto {
    padding-left: 8px;
  }
}
@media (max-width: 768px) {
  .col-texto {
    padding: 12px;
  }
  .imgLotes {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .navbar {
    background-color: #000;
  }
}

/* Menu */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9;
  padding: 0;
  transition: 0.5s ease-in-out;
}
header .navbar-nav {
  padding: 1rem 0;
  transition: 0.5s ease-in-out;
}
@media (max-width: 991px) {
  header .navbar-nav {
    padding: 1rem;
  }
}
header .navbar-nav .nav-item {
  transition: 0.5s ease-in-out;
}
header .navbar-nav .nav-item.active .nav-link {
  color: #fff;
}
header .navbar-nav .nav-item .nav-link {
  color: #fff;
  padding: 0.5rem;
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
}
header .navbar-nav .nav-item .nav-link:hover, header .navbar-nav .nav-item .nav-link.show {
  color: #fff;
}
header .thor-navbar {
  transition: 0.5s ease-in-out;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
@media (max-width: 991px) {
  header .thor-navbar {
    overflow: inherit;
  }
}
header .thor-navbar .navbar-brand {
  transition: 0.5s ease-in-out;
}
@media (max-width: 991px) {
  header .thor-navbar .navbar-brand {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
header .thor-navbar .navbar-brand img {
  height: 65px;
  transition: 0.5s ease-in-out;
}
@media (max-width: 991px) {
  header .thor-navbar .navbar-brand img {
    height: 50px;
  }
}
@media (max-width: 576px) {
  header .thor-navbar .navbar-brand img {
    height: 40px;
  }
}
header .thor-navbar nav {
  position: relative;
}
header .thor-navbar .navbar-collapse {
  position: absolute;
  right: 0;
  top: 65px;
  transition: 0.5s ease-in-out;
  min-width: 260px;
}
@media (max-width: 1199px) {
  header .thor-navbar .navbar-collapse {
    width: 40%;
    -moz-text-align-last: left;
         text-align-last: left;
    left: 0;
    padding: 1rem 0 2rem 0;
    /*background-color: #000;*/
  }
}
@media (min-width: 992px) {
  header .thor-navbar .navbar-collapse {
    position: relative;
    right: auto;
    top: auto;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    /*background-color: #000;*/
  }
}
@media (max-width: 767px) {
  header .thor-navbar .navbar-collapse {
    width: 40%;
    -moz-text-align-last: left;
         text-align-last: left;
    left: 0;
    background-color: #000;
  }
}
@media (max-width: 576px) {
  header .thor-navbar .navbar-collapse {
    top: 40px;
  }
}
header .thor-navbar .navbar-collapse .navbar-nav li a {
  color: #fff;
  text-align: left;
  font-weight: 700;
  display: block;
  /*&.active
  &:hover{
    background-color: transparent;
    span{
      position: relative;
      &::after{
        content:"";
        border-bottom:2px solid #fff;
        position: absolute;
        top: 8px;
        width: 400px;
        left: 120%;
        @media(max-width:991px){
          display: none!important;
        }
      }
    }
  }*/
}
header .thor-navbar .navbar-toggler {
  padding: 0;
  position: relative;
  width: 42px;
  height: 42px;
  outline: none;
  box-shadow: none;
}
header .thor-navbar .navbar-toggler svg {
  width: 100%;
}
header .thor-navbar .navbar-toggler svg path {
  fill: #fff;
}
header.fixed {
  transition: 0.5s ease-in-out;
  background-color: #1A1A1A;
}
@media (max-width: 768px) {
  header.fixed {
    background-color: #000;
  }
}
header.fixed .thor-navbar {
  overflow: inherit;
}
header.fixed .thor-navbar .navbar-brand {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
header.fixed .thor-navbar .navbar-brand img {
  transition: 0.5s ease-in-out;
  height: 55px;
}
header.fixed .thor-navbar .navbar-toggler {
  display: block;
  transition: none;
}
header.fixed .thor-navbar .navbar-collapse {
  width: 20%;
  position: absolute;
  top: 41px;
  text-align: center;
  background-color: #000;
  transition: none;
}
header.fixed .thor-navbar .navbar-collapse .navbar-nav {
  width: 100%;
}
header.fixed .thor-navbar .navbar-collapse.collapse:not(.show) {
  display: none !important;
}
header.fixed .thor-navbar .navbar-collapse.collapse.show {
  display: flex;
}
header.fixed .thor-navbar .navbar-nav {
  position: relative;
  padding: 0.5rem 0 !important;
}
header.fixed .thor-navbar .navbar-nav li a {
  padding: 0.5rem 1rem;
}
header.fixed .thor-navbar .navbar-nav li a:hover span::after,
header.fixed .thor-navbar .navbar-nav li a.active span::after {
  display: none;
}
header.fixed .thor-navbar .navbar-nav::after {
  display: none;
}

/* Fin menu*/
/*
.block-slider{
  .box-fix-red{
    background-color: $primary-color;
    position: absolute;
    width: 600px;
    height: 600px;
    right: 0;
    top: 0;
    z-index: 2;
    transition: .5s ease-in-out;
    @media (max-width:1199px) {
      width: 500px;
      height: 500px;
    }
    @media (max-width:991px) {
      width: 400px;
      height: 400px;
    }
    @media (max-width:576px) {
      width: 170px;
      height: 360px;
    }
    h1{
      position: absolute;
      left: 50px;
      bottom:50px;
      width: 240px;
      text-align: right;
      @media (max-width:576px) {
        width: 120px;
        left: 20px;
        bottom:20px;
        font-size: 1.2rem;
        line-height: 1.3;
      }
      &::after{
        content:"";
        position: absolute;
        left: -180px;
        top: -130px;
        background-image: url(../img/rings-white.png);
        width: 300px;
        height: 300px;
        background-size: cover;
        @media (max-width:576px) {
          width: 200px;
          height: 200px;
          left: -80px;
          top: -80px;
        }
      }
    }
  }
  .main-slider{
    .swiper-slide{
      height: 100vh;
      img{
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
    .swiper-pagination{
      .swiper-pagination-bullet{
        background-color: #fff;
        opacity: 1;
        border-radius: 0;
        &.swiper-pagination-bullet-active{
          background-color: $primary-color;
        }
      }
    }
  }
}
*/
/*imagen principal + logo*/
.header-inner {
  position: relative;
  height: 650px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center bottom;
  /*
  .box-fix-red{
    background-color: $primary-color;
    position: absolute;
    width: 600px;
    height: 400px;
    right: 0;
    top: 0;
    z-index: 2;
    transition: .5s ease-in-out;
    @media (max-width:1199px) {
      width: 500px;
      height: 500px;
    }
    @media (max-width:991px) {
      width: 400px;
      height: 400px;
    }
    @media (max-width:576px) {
      width: 170px;
      height: 360px;
    }
    h1{
      position: absolute;
      left: 50px;
      bottom:50px;
      width: 240px;
      text-align: right;
      @media (max-width:576px) {
        width: 120px;
        left: 20px;
        bottom:20px;
        font-size: 1.2rem;
        line-height: 1.3;
      }
      &::after{
        content:"";
        position: absolute;
        left: -180px;
        top: -130px;
        background-image: url(../img/rings-white.png);
        width: 300px;
        height: 300px;
        background-size: cover;
        @media (max-width:576px) {
          width: 200px;
          height: 200px;
          left: -80px;
          top: -80px;
        }
      }
    }
  }
  */
}
@media (max-width: 767px) {
  .header-inner {
    height: 500px;
  }
}
.header-inner .logo-centro {
  height: 100%;
  width: 100%;
  z-index: 2;
  transition: 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* fin imagen principal + logo */
.empresa {
  padding: 120px 0 80px 0;
  /* cuadros en empresa*/
}
@media (max-width: 767px) {
  .empresa {
    padding: 40px 0 60px 0;
  }
}
.empresa .cuadrologo {
  padding: 20px 80px 0 100px;
  text-align: center;
}
@media (max-width: 767px) {
  .empresa .cuadrologo {
    padding: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    margin-bottom: 10%;
    text-align: start;
  }
}
.empresa .cuadros {
  background-color: #045479;
  color: #fff;
  padding: 20px;
  margin: 0 20px 0 0;
}
.empresa .cuadros span {
  width: 20px;
  height: 20px;
  padding: 20px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.empresa .card-box {
  position: relative;
  z-index: 3;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: initial;
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (max-width: 767px) {
  .empresa .card-box {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
}
@media (max-width: 767px) {
  .empresa .card-box {
    margin-right: 0;
    margin-left: 0;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.empresa .card-box li {
  flex: 29%;
  margin: 1rem;
  min-width: 230px;
  background-color: #045479;
}
@media (max-width: 767px) {
  .empresa .card-box li {
    margin: 0.5rem 0;
    flex: 45%;
  }
}
@media (max-width: 767px) {
  .empresa .card-box li {
    flex: 100%;
    margin: 0 0 1rem;
  }
}
.empresa .card-box li .card {
  border: 0;
  border-radius: 0;
  width: 100%;
  padding: 1.5rem;
  background-color: transparent;
  position: relative;
  height: 100%;
  background-position: right top;
  background-size: 130px;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .empresa .card-box li .card {
    padding: 1rem;
  }
}
.empresa .card-box li .card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  color: #fff;
  /* min-height: 64px;*/
}
@media (max-width: 767px) {
  .empresa .card-box li .card h4 {
    font-size: 1.5rem;
  }
}
.empresa .card-box li .card p {
  color: #fff;
  margin-bottom: 30px;
}
.empresa .card-box li .card span {
  position: absolute;
  bottom: 20px;
  width: 20px;
  height: 20px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

@media (max-width: 768px) {
  .rowMaps {
    margin: 0%;
  }
}

.proyecto, .footer {
  min-height: 350px;
  padding: 120px 0 20px 0;
}
.proyecto h2, .footer h2 {
  /*font-size: 20px;
  font-weight: bold;*/
}
.proyecto .cuadrologo, .footer .cuadrologo {
  text-align: start;
  padding: 20px 80px 0 140px;
  margin-bottom: 3%;
}
.proyecto .cuadrotxt, .footer .cuadrotxt {
  text-align: left;
}
.proyecto a.boton, .footer a.boton {
  background-color: #045479;
  color: #fff;
  border-radius: 0px;
  border-color: #045479;
}
.proyecto .logo, .footer .logo {
  /*border: 1px solid red;    */
}
@media (max-width: 767px) {
  .proyecto, .footer {
    padding: 40px 0 60px 0;
  }
  .proyecto .cuadrologo, .footer .cuadrologo {
    text-align: inherit;
    padding: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
}
@media (min-width: 767px) and (max-width: 1700px) {
  .proyecto .cuadrologo, .footer .cuadrologo {
    padding: 20px 80px 0 80px;
  }
}

.ProyectoImg {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  margin: 0px 0px 0px;
}
@media (max-width: 1199px) {
  .ProyectoImg {
    margin-top: -60px;
  }
}
@media (max-width: 767px) {
  .ProyectoImg {
    margin-top: 260px;
  }
}
@media (max-width: 576px) {
  .ProyectoImg {
    margin-top: 0;
  }
}
.ProyectoImg .obj-1 {
  width: 35%;
  left: 0;
  bottom: 100%;
}
@media (max-width: 767px) {
  .ProyectoImg .obj-1 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .ProyectoImg .obj-1 {
    width: 100%;
    bottom: auto;
    position: relative;
  }
}
.ProyectoImg .obj-2 {
  width: 65%;
}
@media (max-width: 767px) {
  .ProyectoImg .obj-2 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .seccionImgsCosta {
    margin-bottom: 60px;
  }
}

.cuadrodatos {
  padding: 60px 80px 0 140px;
}
@media (max-width: 767px) {
  .cuadrodatos {
    padding-top: 0px;
    padding-left: 10px;
    padding-bottom: 20px;
  }
  .cuadrodatos p {
    float: initial;
  }
}
@media (min-width: 767px) and (max-width: 1700px) {
  .cuadrodatos {
    padding: 60px 80px 0 80px !important;
  }
}

.contacto {
  padding: 120px 0 80px 0;
  /*-- formulario --*/
  /*-------*/
}
@media (max-width: 767px) {
  .contacto {
    padding: 40px 0 60px 0;
  }
}
@media (max-width: 767px) {
  .contacto {
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 50px;
  }
}
.contacto .cuadrodatos p strong {
  font-size: 1.5rem;
  color: #045479;
}
.contacto .form-control {
  background-color: #eee;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 0;
  border-color: #eee;
}
.contacto .form-control.error {
  border-color: red;
}
.contacto .form-group {
  margin-bottom: 1rem;
  position: relative;
}
.contacto .form-group label.error {
  color: red;
  font-size: 13px;
}
.contacto .boton {
  background-color: #045479;
  color: #fff;
  border-radius: 0px;
  border-color: #045479;
}

.footer {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background-color: #1A1A1A;
  font-size: 14px;
}
.footer .cuadrodatos {
  padding: 60px 80px 0 140px;
}
@media (max-width: 767px) {
  .footer .cuadrodatos {
    padding-top: 0px;
    padding-left: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 767px) and (max-width: 1700) {
  .footer {
    padding: 60px 80px 0 80px;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 2rem 0;
  }
}
.footer p {
  color: #fff;
}
@media (max-width: 576px) {
  .footer p {
    font-size: 14px;
  }
}
.footer .footer-brand {
  padding: 3rem 0 3rem 0;
}
.footer .footer-brand img {
  width: 100%;
  max-width: 150px;
}
@media (max-width: 1199px) {
  .footer .footer-brand {
    padding: 2rem 0 2rem 0;
  }
}
@media (max-width: 991px) {
  .footer .footer-brand {
    padding: 0 1rem;
    text-align: right;
  }
}
@media (max-width: 767px) {
  .footer .footer-brand {
    text-align: inherit;
    padding-left: 0px !important;
  }
}
@media (max-width: 576px) {
  .footer .footer-brand {
    padding: 0 2rem;
  }
}
.footer .agency svg {
  height: 10px;
}
@media (max-width: 767px) {
  .footer p.agency {
    text-align: inherit;
  }
}

.social-bar {
  position: fixed;
  z-index: 9;
  right: 0;
  top: 40%;
  display: flex;
  flex-direction: column;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .social-bar {
    width: 40px;
    height: 40px;
  }
}
.social-bar li {
  margin-bottom: 5px;
}
.social-bar li a {
  padding: 0.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*  background-color: $primary-color;*/
}
@media (max-width: 991px) {
  .social-bar li a {
    width: 40px;
    height: 40px;
  }
}
.social-bar li a img {
  width: 45px;
}
@media (max-width: 991px) {
  .social-bar li a img {
    width: 20px;
  }
}
.social-bar li:nth-child(1) a {
  background-color: #009A34;
}

.formHomeFlotante {
  top: 20%;
  right: 20%;
  width: 80%;
  padding-bottom: 30px;
}
.formHomeFlotante input {
  margin-bottom: 0px !important;
}

.form-mobile {
  display: none;
}

.imgHome {
  margin-top: 50%;
  width: 100%;
}

@media (max-width: 1200px) {
  .formHomeFlotante {
    width: 35%;
    right: 15%;
  }
}
.img-no-mobile {
  text-align: center;
}

@media (max-width: 769px) {
  .formHomeFlotante {
    width: 70%;
    right: 3%;
    top: 10%;
  }
  .img-no-mobile {
    display: none;
  }
  .form-desktop {
    display: none;
  }
  .form-mobile {
    display: block;
  }
  .logo-centro .container {
    text-align: center;
    height: inherit;
    align-content: center;
  }
  .logo-centro .container img {
    width: 60%;
    margin-top: 20%;
  }
  .formHomeFlotante.form-mobile {
    position: static;
    margin: auto;
    width: 100%;
  }
  .formHomeFlotante.form-mobile .bodyForm {
    background-color: rgba(243, 243, 243, 0.7490196078);
  }
}
.formHomeFlotante .headerForm {
  background-color: black !important;
  padding: 2% 5%;
}

.bodyForm {
  background-color: white;
  padding: 5%;
}
.bodyForm .btn {
  padding: 7px !important;
}

.bodyForm h3 {
  color: black;
}

.form input,
.form select {
  height: 42px;
  padding: 8px 15px;
}

.form input,
.form select,
.form textarea {
  font-size: 18px;
  color: #333;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #ccc;
  background: #fff;
  margin-bottom: 15px;
}

.form textarea {
  padding: 15px;
}

.form input:focus,
.form select:focus,
.form textarea:focus,
.form input:active,
.form select:active,
.form textarea:active {
  box-shadow: none;
  border-color: #F0292B;
}

.form .label-form {
  position: relative;
}

.form .form-group {
  margin-bottom: 10px;
  position: relative;
}

.form .btn {
  padding: 15px 40px;
}

/*Validacion de formularios*/
.form input:required,
.form textarea:required {
  background: #fff;
}

.form input:required:valid, .form textarea:required:valid {
  background: url(../images/valid.png) no-repeat 98% center;
  background-color: #fff;
}

.form input:focus:invalid,
.form textarea:focus:invalid {
  background: url(../images/invalid.png) no-repeat 98% center;
  background-color: #fff;
}

.form_hint {
  background: #d45252;
  border-radius: 3px 3px 3px 3px;
  color: white;
  margin-left: 8px;
  padding: 1px 6px;
  z-index: 999;
  position: absolute;
  display: none;
}

.form_hint::before {
  content: "◀";
  color: #d45252;
  position: absolute;
  top: 1px;
  left: -6px;
}

.form input:focus + .form_hint {
  display: inline;
}

.form input:required:valid + .form_hint {
  background: #28921f;
}

.form input:required:valid + .form_hint::before {
  color: #28921f;
}

/*
.block-internal-content{
  padding:40px 0;
  position: relative;
  z-index: 1;
  @media (min-width: 768px) {
    padding:80px 0;
  }

  @media (max-width:767px) {
    padding-left: 2rem;
    padding-right: 2rem;
  }

}
*/
/*
.inner{
  position: relative;
}
*/
/*
.block-about{
  margin-top: -150px;
  padding:150px 0;
  background-color: #ccc;
  overflow: hidden;
  position: relative;
  z-index: 0;
  @media(max-width:576px){
    margin-top: -180px;
  }
  p{
    color: #333;
  }
  .title-big{
    font-size: 200px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    right: 0;
    bottom: -37px;
    @media(max-width:576px){
      font-size: 70px;
      bottom: -17px;
    }
  }  
}

*/
/*
.contact-info{
  p{
    color: #333;
    a{
      color: #333;
    }
  }
}

*/
/*
.caption-contact{
  margin-bottom: .5rem;
  img{
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }
  a{
    color: #808080;
    text-decoration: none;
  }
}

*/
/*
.form-control{
  background-color: transparent;
  padding:.75rem 0;
  font-size: 1rem;
  border-radius: 0;
  border:0;
  border-bottom: 1px solid #000;
  &:focus{
    border: transparent;
    border-bottom: 1px solid $primary-color;
    box-shadow: none;
    outline: none;
  }
}
.form-control.error{
  border-color: red;
}
.form-group{
  margin-bottom: 1rem;
  position: relative;
   label.error{
    color: red;
    font-size: 13px;
   }
}
*/
/*
.map{
  height: 500px;
}
*/
/*
.form-product{
  padding:100px 0;
  @media(max-width:767px){
    margin-top: -80px;
  }
  @media(max-width:576px){
    padding:60px 15px;
    margin-top: 0;
  }
}
*/
/*
.product-info{ 
  padding-bottom: 0;
  h1{
    @media(max-width:576px){
      font-size: 3rem;
    }
  } 
  figure{
    margin-bottom: 0;
    @media(max-width:576px){
      padding:40px 15px;
    }
    img{
      width: 100%;
    }
  }
  .description{
    @media(max-width:576px){
      padding:40px 15px;
    }
    p{
      font-size: 1rem;
      margin-bottom: 2rem;
    }
  }
}
*/
/*
.block-details{
  @media(max-width:576px){
    padding:0;
  }
  .block-details-wrapper{
    position: relative;
    padding:60px 0;
    @media(max-width:576px){
      padding:40px 15px;
    }
    &::before{
      content:"";
      position: absolute;
      left:0;
      top: 0;
      height: 100%;
      width: 90%;
      border-top-right-radius: 100px;
      z-index: 0;
      @media(max-width:576px){
        width: 100%;
      }
    }
    .container{
      position: relative;
      z-index: 1;
    }
    h2 {
      color: #fff;
    }
    p{
      color: #fff;
      font-weight: 300;
      b{
        display: block;
        font-weight: 700;
      }
    }
  }
}
*/
/*
.contact-info{
  position: relative;
  @media (max-width:767px) {
    padding-bottom: 450px;
  }
  &::after{
    content:"";
    background-image: url('../img/img-contact-desktop.png');
    width: 600px;
    height: 100%;
    position: absolute;
    bottom: 0;
    background-position: right bottom;
    right: 0;
    top: 100px;
    @media (max-width:1199px) {
      width: 500px;
    }
    @media (max-width:991px) {
      width: 400px;
    }
    @media (max-width:767px) {
      width: 100%;
      height: 400px;
      top: auto;
      bottom: 0;
      background-size: cover;
      background-position: center center;
      background-image: url('../img/img-contact-mobile.png');
    }
  }
}
*/
/*.box-fix-red{
  &.internal-page{
    background-color: $primary-color;
    position: absolute;
    width: 600px;
    height: 300px;
    right: 0;
    bottom: -300px;
    z-index: 3;
    @media (max-width:991px) {
      width: 100%;
      position: absolute;
      top: auto;
      margin-top: -200px;
      right: 0;
      left: 0;
      height: auto;
      padding: 18rem 2rem 2rem;
      text-align: right;
    }
    @media (max-width:1199px) {
      width: 500px;
    }
    @media (max-width:991px) {
      width: 100%;
      position: relative;
      padding:2rem;
      margin-top: auto;
      bottom: auto;
    }
    @media (max-width:576px) {
      padding-left:1rem;
      padding-right: 1rem;
    }
    h4{
      position: absolute;
      left: 50px;
      bottom:40px;
      width: 255px;
      text-align: right;
      @media (max-width:991px) {
        position: relative;
        left: auto;
        bottom: auto;
        margin-left: auto;
      }
      @media (max-width:576px) {
        width: 245px;
      }
    }
  }
}
*/
/*
.about-info{
  position: relative;
  @media (max-width:767px) {
    padding-bottom: 450px;
  }
  &::after{
    content:"";
    background-image: url('../img/img-construction-desktop.png');
    width: 600px;
    height: 100%;
    position: absolute;
    bottom: 0;
    background-position: right bottom;
    right: 0;
    background-size: cover;
    top: 100px;
    @media (max-width:1199px) {
      width: 500px;
    }
    @media (max-width:991px) {
      width: 400px;
    }
    @media (max-width:767px) {
      width: 100%;
      height: 400px;
      top: auto;
      bottom: 0;
      background-size: cover;
      background-position: center center;
      background-image: url('../img/img-construction-mobile.png');
    }
  }
  &.about-us{
    &::after{
      content:"";
      background-image: url('../img/img-about-desktop.png');
      @media (max-width:767px) {
        background-image: url('../img/img-about-mobile.png');
      }
    }
  }
}

*/
/* estilos para suprimir */
/*
.primary-color{
  color:$primary-color;
}
.color-white{
  color: $white-color;
}
.color-black{
  color:#000;
}
.color-grey{
  color:$grey-color;
}

*/
/*
.title-1{
  font-family: $primary-font;
  font-size: 3.4rem;
  line-height: 3.4rem;
  font-weight: 900;
  letter-spacing: -1px;
  @media (min-width: 768px) {
    font-size: 4rem;
    line-height: 4rem; 
  }
}
*/
/*
.title-2{
  font-family: $primary-font;
  font-size: 2.4rem;
  line-height: 2.4rem;
  font-weight: 700;
  letter-spacing: -1px;
  @media (min-width: 768px) {
    font-size: 3rem;
    line-height: 3rem; 
  }
}
*/
/*
.title-3{
  font-family: $primary-font;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  @media (min-width: 768px) {
    font-size: 2.4rem;
    line-height: 2.4rem; 
  }
}
*/
/*
.title-4{
  font-family: $primary-font;
  font-size: 2rem;
  line-height: 2.2rem; 
  letter-spacing: -1px;
  font-weight: 700;
}
*/
/*
.title-5{
  font-family: $primary-font;
  font-size: 2rem;
  line-height: 2.2rem; 
  letter-spacing: -1px;
  font-weight: 900;
  color: $grey-color;
  @media (min-width: 768px) {
    font-size: 3rem;
    line-height: 3rem; 
  }
  span{
    display: block;
    font-size: 75%;
    line-height: 1;
  }
}
*/
/*
.outline{
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}
*/
/*
.btn {
  font-family: $primary-font;
  font-size: 1rem;
  border:2px solid $primary-color;
  padding:0.5rem 2rem;
  transition: 0.5s;
  border-radius: 6px;
  color: $primary-color;
  background-color: transparent;
  box-shadow: none;
  &:hover {
    background-color: $primary-color;
    color: $white-color;
    border-color: $primary-color;
  }
  &.btn-link{
    border: 2px solid transparent;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding:.5rem;
    &::before{
      content: "";
      width: 20px;
      height: 20px;
      display: block;
      position: relative;
      margin-right: .6rem;
      background-image: url(../img/chevron.svg);
      background-size: cover;
    }
    &:hover {
      background-color:transparent;
      border-color:#666;
    }
    &.btn-link-lg{
      font-size: 1.375rem;
      &::before{
        width: 30px;
        height: 30px;
      }
    }
  }
}
*/
/*
.color{
  color: $primary-color;
}
.text-20{
  font-size: 1.2rem;
}
*/
/*
.block-content{
  padding:40px 0;
  position: relative;
  z-index: 1;
  @media (min-width: 768px) {
    padding:80px 0;
  }
}

*/
/*

.block-form{
  position: relative;
  z-index: 2;
  @media (max-width:991px) {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  &::before{
    content:"";
    position: absolute;
    left: -100px;
    bottom: -100px;
    background-image: url(../img/circle-gradient.png);
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
    height: 1000px;
    width: 1000px;
    @media (max-width:1199px) {
      height: 900px;
      width: 900px;
    }
    @media (max-width:991px) {
      height: 700px;
      width: 700px;
    }
    @media (max-width:767px) {
      height: 600px;
      width: 600px;
    }
    @media (max-width:576px) {
      height: 370px;
      width: 370px;
      bottom: -50px;
    }
  }
  h2{
    margin-left: 50px;
    position: relative;
    @media (max-width:991px) {
      font-size: 3.4rem;
      line-height: 3rem;
      margin-left: 30px;
    }
    @media (max-width:991px) {
      margin-bottom: 130px;
    }
    @media (max-width:576px) {
      font-size: 2.2rem;
      line-height: 2rem;
      margin-bottom: 90px;
    }
    &::before{
      content:"";
      position: absolute;
      left:-100px;
      top: -100px;
      height: 330px;
      width: 330px;
      background-image: url(../img/ring-red.svg);
      background-position: top left;
      background-size: contain;
      background-repeat: no-repeat;
      @media (max-width:991px) {
        left: -60px;
        top: -85px;
        height: 280px;
        width: 280px;
      }
      @media (max-width:576px) {
        left: -60px;
        top: -55px;
        height: 180px;
        width: 180px;
      }
    }
  }
}
*/
/*
.block-slider2{
  position: relative;
  z-index: 0;
  overflow: hidden;
  .box-fix-grey{
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 50%;
    padding:5rem;
    height: 98.5%;
    background-image: url(../img/bg-circle-dark.png);
    background-position: top right;
    background-size: cover;
    background-repeat: no-repeat;
    @media (max-width:991px) {
      background-image: none;
      background-color: #202933;
      padding:7rem 2rem 2rem;
      position: relative;
      width: 100%;
      height: auto;
    }
    @media (max-width:576px) {
      padding: 5rem 2rem 2rem;
    }
    h3{
      position: absolute;
      right: 25.7rem;
      top:15rem;
      @media(max-width:1399px){
        right: 20rem;
        top: 12rem;
      }
      @media(max-width:1199px){
        right: 14.5rem;
        top: 8rem;
      }
      @media (max-width:991px) {
        position: relative;
        right: auto;
        top: auto;
      }
      span{
        display: block;
        font-size: 75%;
        line-height: 1;
      }
    }
  }
  .swiper{
    position: relative;
    &::before{
      content:"";
      position: absolute;
      z-index: 2;
      right:0;
      bottom:3rem;
      height: 165px;
      width: 230px;
      background-image: url(../img/arrow-dots.png);
      background-position: top left;
      background-size: contain;
      background-repeat: no-repeat;
      @media(max-width:1399px){
        height: 120px;
        width: 212px;
        background-position: top right;
      }
      @media(max-width:1199px){
        height: 80px;
        width: 130px;
      }
      @media (max-width:991px) {
        height: 120px;
        width: 212px;
      }
      @media(max-width:576px){
        display: none;
      }
    }
    .swiper-slide{
      position: relative;
      .container{
        position: absolute;
        z-index: 1;
        .swiper-caption{
          color: $white-color;
          width: 400px;
          position: absolute;
          right: 0;
          top: 12rem;
          @media(max-width:1399px){
            top: 10rem;
          }
          @media(max-width:1199px){
            top: 5rem;
            width: 350px;
          }
          @media (max-width:991px) {
            right: auto;
            left: 9rem;
            top: 4rem;
            bottom: auto;
          }
          @media (max-width:576px) {
            left: 6rem;
            top: 3rem;
          }
          b{
            position: absolute;
            left: -7rem;
            bottom:-6rem;
            font-family:$secondary-font;
            font-size: 170px;
            color: #999;
            margin-right: 2rem;
            @media(max-width:1199px){
              font-size: 140px;
              left: -6rem;
              bottom: -2rem;
            }
            @media (max-width:576px) {
              font-size: 80px;
              left: -3.5rem;
              bottom: auto;
              top: -1rem;
            }
          }
          &::before{
            content:"";
            position: absolute;
            left:-140px;
            bottom: -140px;
            height: 330px;
            width: 330px;
            background-image: url(../img/rings-red.png);
            background-position: top left;
            background-size: contain;
            background-repeat: no-repeat;
            @media(max-width:1199px){
              left: -151px;
              bottom: -90px;
              height: 250px;
              width: 230px;
            }
            @media(max-width:576px){
              display: none;
            }
          }
        }
        .caption-text{
          @media(max-width:576px){
            width: 210px;
          }
          h4{
            @media(max-width:576px){
              font-size: 1.6rem;
            }
          }
        }
      }
    }
    .swiper-pagination{
      position: relative;
      z-index: 9;
      bottom: 30px;
      margin:auto;
      .swiper-pagination-bullet{
        background-color: #fff;
        opacity: 1;
        border-radius: 0;
        &.swiper-pagination-bullet-active{
          background-color: $primary-color;
        }
      }
    }
  }
}
*/
.tituloseo {
  font-weight: 800;
  margin-bottom: 30px;
  color: #000;
}

.subtituloseo {
  font-size: 1.25rem;
}/*# sourceMappingURL=style.css.map */