/*CONTENEDOR*/
/*Dispositivos*/
/*Media screen*/
.container {
  margin: 0 auto;
  max-width: 1680px;
  width: 90%; }

@media only screen and (min-width: 720px) {
  .container {
    width: 85% !important; } }
@media only screen and (min-width: 1150px) {
  .container {
    width: 90% !important; } }
@media only screen and (min-width: 1366px) {
  .container {
    width: 80% !important; } }
@media only screen and (min-width: 1440px) {
  .container {
    width: 1250px !important; } }
.grid {
  display: grid; }

.no-gap {
  grid-gap: 0 !important; }

/*=============================================================
==================================================================
============================================================*/
.grid-col {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 22px; }

.grid-1 {
  grid-column: span 1; }

.grid-2 {
  grid-column: span 2; }

.grid-3 {
  grid-column: span 3; }

.grid-4 {
  grid-column: span 4; }

.grid-5 {
  grid-column: span 5; }

.grid-6 {
  grid-column: span 6; }

.grid-7 {
  grid-column: span 7; }

.grid-8 {
  grid-column: span 8; }

.grid-9 {
  grid-column: span 9; }

.grid-10 {
  grid-column: span 10; }

.grid-11 {
  grid-column: span 11; }

.grid-12 {
  grid-column: span 12; }

@media screen and (min-width: 100px) {
  .grid-s-1 {
    grid-column: span 1; }

  .grid-s-2 {
    grid-column: span 2; }

  .grid-s-3 {
    grid-column: span 3; }

  .grid-s-4 {
    grid-column: span 4; }

  .grid-s-5 {
    grid-column: span 5; }

  .grid-s-6 {
    grid-column: span 6; }

  .grid-s-7 {
    grid-column: span 7; }

  .grid-s-8 {
    grid-column: span 8; }

  .grid-s-9 {
    grid-column: span 9; }

  .grid-s-10 {
    grid-column: span 10; }

  .grid-s-11 {
    grid-column: span 11; }

  .grid-s-12 {
    grid-column: span 12; } }
@media screen and (min-width: 720px) {
  .grid-m-1 {
    grid-column: span 1; }

  .grid-m-2 {
    grid-column: span 2; }

  .grid-m-3 {
    grid-column: span 3; }

  .grid-m-4 {
    grid-column: span 4; }

  .grid-m-5 {
    grid-column: span 5; }

  .grid-m-6 {
    grid-column: span 6; }

  .grid-m-7 {
    grid-column: span 7; }

  .grid-m-8 {
    grid-column: span 8; }

  .grid-m-9 {
    grid-column: span 9; }

  .grid-m-10 {
    grid-column: span 10; }

  .grid-m-11 {
    grid-column: span 11; }

  .grid-m-12 {
    grid-column: span 12; } }
@media screen and (min-width: 1150px) {
  .grid-l-1 {
    grid-column: span 1; }

  .grid-l-2 {
    grid-column: span 2; }

  .grid-l-3 {
    grid-column: span 3; }

  .grid-l-4 {
    grid-column: span 4; }

  .grid-l-5 {
    grid-column: span 5; }

  .grid-l-6 {
    grid-column: span 6; }

  .grid-l-7 {
    grid-column: span 7; }

  .grid-l-8 {
    grid-column: span 8; }

  .grid-l-9 {
    grid-column: span 9; }

  .grid-l-10 {
    grid-column: span 10; }

  .grid-l-11 {
    grid-column: span 11; }

  .grid-l-12 {
    grid-column: span 12; } }
@media screen and (min-width: 1366px) {
  .grid-xl-1 {
    grid-column: span 1; }

  .grid-xl-2 {
    grid-column: span 2; }

  .grid-xl-3 {
    grid-column: span 3; }

  .grid-xl-4 {
    grid-column: span 4; }

  .grid-xl-5 {
    grid-column: span 5; }

  .grid-xl-6 {
    grid-column: span 6; }

  .grid-xl-7 {
    grid-column: span 7; }

  .grid-xl-8 {
    grid-column: span 8; }

  .grid-xl-9 {
    grid-column: span 9; }

  .grid-xl-10 {
    grid-column: span 10; }

  .grid-xl-11 {
    grid-column: span 11; }

  .grid-xl-12 {
    grid-column: span 12; } }
@media screen and (max-width: 720px) {
  .no-movil {
    display: none !important; } }
@media screen and (max-width: 720px) {
  .si-movil {
    display: block !important; } }
/*=========================================
=================BOTONES==================*/
.btn {
  padding: 10px 25px;
  display: grid;
  grid-gap: 14px;
  max-height: 48px;
  align-items: center;
  background: #1C3A5E;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  transition: 0.3s;
  justify-content: center;
  justify-items: center;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  text-align: center;
  border-radius: 53px;
  border: 2px solid #1C3A5E;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
  transition: 0.2s;
  /*&:hover{
      background: $color_2;
      border: 2px solid $color_2;
      box-shadow: 0 0 0 white;
      i {
          font-weight: 500;
          font-size: 1.28rem;
      }
  }*/
  /*&.btn1{
      background: none;
      color: $color_2;
  }*/
  /*&.active{
      background-color: $color_2;
      color: white;
  }*/ }
  .btn img {
    width: 30px;
    margin: 0 !important; }
  .btn.btn1-white {
    background: white;
    color: #1C3A5E;
    border: 2px solid white; }
  .btn.btn2-white {
    background: none;
    color: white;
    border: 2px solid white; }
  .btn.btn-icon {
    grid-template-columns: auto auto; }
    .btn.btn-icon i {
      font-size: 20px;
      font-weight: 600;
      margin-top: -4px;
      margin-left: 13px; }
  .btn.btn-big {
    height: 54px;
    max-width: 225px; }

button:focus {
  outline: none; }

/*.btn-circle {
    border: 2px solid $color_3;
    color: $color_3;
    font-size: 21px;
    width: 54px;
    height: 54px;
    display: grid;
    border-radius: 50%;
    align-items: center;
    justify-items: center;
    transition: 0.3s;
    &:hover {
        background: $color_3;
        color: white;
        border-color: $color_3;
    }
    i{
        font-weight: 600;
    }
    &.blanco {
        border: 2px solid #ffffff;
        color: white;
        font-size: 21px;
        padding: 13px;
        background: none;
        &:hover {
            background: $color_3;
            color: white;
            border-color: $color_3;
        }
        i{
            font-weight: 500;
        }
    }
}*/
/*.btn-list {
    background: $color_f;
    height: 56px;
    width: 56px;
    display: grid;
    align-items: center;
    justify-items: center;
    border-radius: 8px;
}*/
.text-center .btn {
  max-width: 320px;
  margin: auto; }

.btn-filter {
  width: 100%;
  height: 48px; }

.btn-short {
  max-width: 168px; }

.btn-usuario {
  position: relative;
  display: grid;
  grid-template-columns: auto 57px auto;
  align-content: center;
  padding: 8px;
  padding-right: 22px; }
  .btn-usuario img {
    width: 34px !important;
    border-radius: 50%;
    display: block; }
  .btn-usuario b {
    color: white; }

.dropdown {
  position: relative; }

/*
* Estilos boton redes footer JOSPEH PADILLA
*/
/*.btn-redes-footer{
    border: 2px solid $color_2;
    color: $color_2;
    &:hover {
        background: $color_2;
        color: white;
        border-color: $color_2;
    }
}*/
/*
BOTONES
*
-----------------------------
*
*/
.button {
  background-color: #00B7BD;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  transition: 0.3s;
  cursor: pointer;
  width: auto;
  max-width: 200px;
  outline: none;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  outline: none;
  /* modificadores */
  /*--------------------*/ }
  .button--shadow {
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.07); }
  .button--b-radius {
    border-radius: 3px; }
  .button--total width {
    max-width: 100%; }
  .button--altonormal {
    height: auto; }
  .button span {
    margin: 0 6px;
    color: #ffffff; }
  .button i {
    font-size: 22px;
    color: #ffffff; }

/*
    BANNER
    *
    --------------------------------------
    *
*/
.banner {
  background-image: url("../imagenes/fondobanner.png");
  background-size: cover;
  position: relative;
  /*&::before{
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
  }*/ }
  .banner__content-general {
    display: flex;
    /*flex-flow: column;*/
    gap: 7.4rem;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 4%; }
  .banner__header {
    align-items: center;
    gap: 3rem !important;
    flex-wrap: wrap; }
    .banner__header img {
      height: auto;
      max-height: 54px; }
  .banner__contenido {
    /* height: auto;  se puede modificar */
    display: flex;
    gap: 12rem;
    position: relative;
    /* modificadores */
    /*-----------------*/ }
    .banner__contenido--posicion {
      align-items: flex-end;
      justify-content: space-between; }
    .banner__contenido--wholeScreen {
      height: 100vh; }
  .banner__bloque {
    /* modificadores */
    /*-------------------*/ }
    .banner__bloque--sidecontent {
      text-align: center; }
    .banner__bloque--bloquecenter {
      position: absolute;
      left: 50%;
      bottom: 50%;
      transform: translate(-50%, 50%);
      color: #ffffff;
      z-index: 2; }
  .banner__mensaje {
    margin-bottom: 18px;
    /* se puede modificar */
    margin-right: 10rem; }
    .banner__mensaje h1, .banner__mensaje h2 {
      font-size: 2rem;
      /* se puede modificar */
      color: #ffffff; }
    .banner__mensaje h2 {
      font-size: 10rem;
      line-height: 9rem;
      font-weight: 800; }
    .banner__mensaje h1 {
      font-weight: 400;
      padding: 0 2rem 0 0; }
    .banner__mensaje hr {
      margin: 1rem 0;
      padding: 0; }
    .banner__mensaje p {
      color: #ffffff; }
  .banner__action {
    padding: 8px 0;
    /*display: flex;
    justify-content: center;*/ }
    .banner__action .button i {
      font-weight: normal; }
  .banner__imagen img {
    width: 262px;
    display: block; }
  .banner__form {
    width: 100%;
    height: 100%;
    align-items: end; }
    .banner__form--mostrar {
      display: flex; }
  .banner__groupimg {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px; }
    .banner__groupimg p {
      color: #ffffff;
      font-size: 25px;
      font-weight: bold; }
    .banner__groupimg img {
      max-height: 76px; }
  .banner .img-banner-responsive {
    display: none; }
  .banner .img-banner {
    display: block; }

.owl-banner {
  position: relative;
  /*.owl-nav, .owl-dots{
      position: absolute;
  }
  .owl-nav{
      width: 100%;
      left: 0;
      top: 50%;
      transform: translate(0px, -50%);
      justify-content: space-between;
      padding: 0 25px;
  }
  .owl-dots{
      bottom: 20px;
      left: 50%;
      transform: translate(-50%, 0px);
  }*/ }
  .owl-banner .banner__bloque--bloquecenter {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 50%;
    transform: translate(0px, 50%);
    color: #ffffff; }

/*==============================================*/
/*@media (max-width: 1200px) {
  .galeriaimagenes {
    .owl-galeria {
      .owl-nav {
        button {
          &.owl-prev {
            margin-left: 0rem !important;
          }
          &.owl-next {
            margin-right: 0rem !important;
          }
        }
      }
    }
  }
}

@media (max-width: 1150px) {
  .infoproyecto {
    //padding-bottom: 5.2rem;
    &__content {
      margin-bottom: 3.2rem;
      h2 {
        text-align: center !important;
        padding: 1.2rem 3rem !important;
        width: 550px;
        margin: auto;
        &:before {
          content: "";
          position: absolute;
          width: 100% !important;
          height: 100%;
          background: linear-gradient(90deg, #f55c05 0%, #b81b48 32%);
          top: 0;
          right: 0 !important;
          border-radius: 50px;
        }
      }
      p {
        text-align: center !important;
      }
      ul {
        justify-content: center !important;
      }
    }
  }

  .areascomunes {
    padding: 2.5rem 0 4rem 0 !important;
    &__img {
      img {
        width: 550px !important;
        margin: auto;
      }
    }
  }

  .enlaces {
    &__lista {
      gap: 1.2rem !important;
    }
  }

  #modal-formwhatsapp .form--fondo {
    width: 480px !important;
  }

  section.ubicacion {
    ul {
      display: flex !important;
      flex-wrap: wrap;
      li {
        button,
        a {
          width: 100% !important;
          padding: 0.5rem 2.2rem !important;
        }
      }
    }

    .imgubicacion {
      img {
        max-width: 650px !important;
        margin: auto;
        margin-top: 1.2rem;
      }
    }
  }

  section.proyectosventa {
    .owl-proyectosventa {
      .item {
        .proyectoventa__content {
          .mensaje-top {
            width: 95% !important;
          }
        }
      }
    }
  }
}

@media (max-width: 1050px) {
  .galeriaimagenes {
    .tabs {
      ul {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 1.2rem;
      }
    }

    .owl-galeria {
      .item {
        margin: 0rem !important;
        img {
          width: 100% !important;
          max-height: 500px;
          object-fit: cover;
        }
      }

      .owl-nav {
        button {
          &.owl-prev {
            margin-left: 1rem !important;
          }
          &.owl-next {
            margin-right: 1rem !important;
          }
        }
      }
    }
  }
}

@media (max-width: 1030px) {
  .cotiza {
    .tipografia {
      &__item {
        justify-content: start !important;
        gap: 1.2rem;
      }
    }
  }

  section.ubicacion ul li button,
  section.ubicacion ul li a {
    width: 100% !important;
  }
}

@media (max-width: 950px) {
  .owl-banner {
    .item {
      img {
        max-height: none !important;
        object-fit: cover;
      }
    }
  }

  .form--fondo {
    //padding: 3.2rem 3.5rem !important;
  }

  section.ubicacion {
    .mensaje {
      h3 {
        &:before {
          content: "";
          position: absolute;
          width: 100% !important;
          height: 100%;
          top: 0;
          right: inherit !important;
          left: -30%;
          background: linear-gradient(90deg, #b81b48 40%, #f55c05 100%);
          border-radius: 50px;
        }
      }
    }
  }
}

@media (max-width: 720px) {
  .infoproyecto {
    padding-bottom: 5.2rem;
    &__content {
      h2 {
        width: 100%;
      }
    }
    &__caracteristicas {
      ul {
        width: 400px;
        margin: auto;
      }
    }
  }

  .cotiza {
    padding: 3.2rem 0 !important;
  }

  section.ubicacion {
    .mensaje {
      h3 {
        text-align: center;
        &:before {
          content: "";
          position: absolute;
          width: 100% !important;
          height: 100%;
          top: 0;
          right: inherit !important;
          left: 0 !important;
          background: linear-gradient(90deg, #b81b48 40%, #f55c05 100%);
          border-radius: 50px;
        }
      }
    }
  }

  .img-banner-responsive {
    display: block !important;
  }

  .img-banner {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .areascomunes {
    &__img {
      img {
        width: 100% !important;
      }
    }
  }
}

@media (max-width: 550px) {
  .infoproyecto {
    &__caracteristicas {
      ul {
        width: 320px !important;
      }
    }
  }

  #modal-formwhatsapp .form--fondo {
    width: 100% !important;
  }

  .modal__body h2 {
    font-size: 20px !important;
  }
}*/
@media (max-width: 1200px) {
  .owl-banner .item-mensage h2,
  .owl-banner .item-mensage h3,
  .owl-banner .item-mensage h4 {
    font-size: 2.5rem !important; }
  .owl-banner .item-mensage p {
    font-size: 1rem !important; }

  .form--fondo {
    width: 325px; }
  .form__checkbox {
    margin: 10px 0; }
    .form__checkbox .container-checkbox {
      font-size: 13px; }
  .form__group {
    grid-gap: 10px; }
  .form__contentText h2 {
    font-size: 22px; }
  .form__action button {
    height: 38px; } }
@media (max-width: 1149px) {
  .owl-slideCondominio .owl-item .item figure {
    transform: scale(1) !important; }
    .owl-slideCondominio .owl-item .item figure img {
      height: 400px; }

  .sectionlotizacion .content-editor {
    margin-bottom: 0 !important; }
    .sectionlotizacion .content-editor ul {
      margin: 0 !important;
      display: flex !important;
      flex-wrap: wrap;
      justify-content: space-around; }
      .sectionlotizacion .content-editor ul li {
        width: 150px !important; }
  .sectionlotizacion .lotizacion {
    margin-top: 4rem; }

  .nuestrosObras .owl-slidenuestrasObras .item figure {
    transform: initial !important; } }
@media (max-width: 920px) {
  .videoAreasComunes__videos a img {
    height: auto !important; }
  .videoAreasComunes__videos a .video-mesage {
    font-size: 42px !important; } }
@media (max-width: 892px) {
  .owl-banner .item-mensage h2,
  .owl-banner .item-mensage h3,
  .owl-banner .item-mensage h4 {
    font-size: 1.8rem !important; }

  .form--fondo {
    width: 240px; }
  .form__contentText h2 {
    font-size: 18px;
    margin-bottom: 0px; }
  .form .input-group__input, .form .input-group__select {
    height: 34px; } }
@media (max-width: 720px) {
  .banner__content-general {
    position: relative;
    top: initial;
    transform: initial;
    right: initial; }

  .form--fondo {
    width: 100%;
    padding: 2.2rem;
    background: #0e0d13;
    border-radius: initial; }
  .form__contentText h2 {
    font-size: 30px !important;
    margin-bottom: 10px; }
  .form__checkbox {
    margin: 18px 0; }
  .form .input-group__input {
    height: 38px; }

  .videoAreasComunes__videos a .video-mesage {
    font-size: 42px !important; }

  .sectionlotizacion {
    /*.imgcapa-verde {
      display: none;
    }*/ }
    .sectionlotizacion .container {
      padding-bottom: 4.2rem !important; }

  .sectioncontactanos .form--fondo {
    background-color: #ffffff; }
  .sectioncontactanos .img-contacto {
    padding-right: 0 !important; }

  .slideCondominio .slider_nav, .nuestrosObras .slider_nav {
    justify-content: start !important; }

  .content-end {
    justify-content: start !important; }

  .footer__redes, .footer__info, .footer__contacto {
    margin-top: 1.8rem; }

  .img-banner-responsive {
    display: block !important; }

  .img-banner {
    display: none !important; } }
@media (max-width: 600px) {
  .owl-slideCondominio .owl-item .item figure {
    transform: scale(1) !important; }
    .owl-slideCondominio .owl-item .item figure img {
      height: 290px; }

  .mapaUbicacion__item {
    margin-top: 1.5rem; }

  .testimonio__box {
    box-shadow: 10px 10px 12px 0px rgba(0, 0, 0, 0.1) !important;
    margin: 1.2rem !important;
    padding: 1.2rem !important; } 
    
    .logo-cuotas {
    display: grid !important;
    gap: 1.5rem !important;
    justify-content: initial !important;
}
    
    .triangulo {
        display: none !important;
}

.notafinal{
    display: grid !important;
    justify-content: initial !important;
        padding: 1rem !important;
}

.notafinal a {
    text-align: center;
    margin-top: 1rem;
}

.footer__info{
    text-align: left !important;
}

.owl-galeria-video .owl-nav button.owl-next, .owl-galeria-imagen .owl-nav button.owl-next {
    right: -10px !important;
}

.owl-galeria-video .owl-nav button.owl-prev, .owl-galeria-imagen .owl-nav button.owl-prev {
    left: -10px !important;
}

.owl-galeria-video .item img, .owl-galeria-imagen .item img{
    height: 250px;
    object-fit: cover;
}

.owl-general .owl-dots .owl-dot{
    margin-bottom: 0 !important;
}

.owl-galeria-video .item a .capa i {
    font-size: 1.8rem !important;
    padding: 0.8rem !important;
    width: 50px !important;
    height: 50px !important;
}

    
}
@media (max-width: 520px) {
  .videoAreasComunes__videos a .icon-play {
    width: 50px !important;
    height: 50px !important; }
  .videoAreasComunes__videos a .video-mesage {
    font-size: 28px !important; }

  .header__logo .isotipo {
    padding: 0.8rem 0.8rem 1.2rem;
    margin-bottom: -1.6rem;
    border-bottom-left-radius: 50px; }
    .header__logo .isotipo img {
      width: 55px !important;
      height: auto; }

  .informacion-final .content-informacion-final ul {
    display: grid !important; } }
/*
*
    ESTILOS DE FORMULARIO
*
*/
.form {
  background: rgba(251, 201, 140, 0.25);
    padding: 1.4rem 1.8rem;
    border-radius: 15px;
  /* modificadores */
  /*====================*/ }
  .form--centered {
    width: 50%;
    margin: auto;
    border: 1px solid black;
    padding: 20px 32px; }
  .form--fondo {
    width: 410px;
    border-radius: 5px;
    display: grid;
    row-gap: 12px;
    /*height: 100%;
        display: flex;
        flex-flow: column;
        justify-content: space-between;*/ }
  .form--libro h2 {
    color: #FBC98C;
    font-size: 22px;
    margin: 2rem 0 1.2rem; }
  .form--libro .input-group {
    gap: 15px;
    margin-bottom: 1rem; }
    .form--libro .input-group label {
      color: #FBC98C;
      font-weight: bold; }
    .form--libro .input-group__input {
      text-align: initial !important;
      padding: 0 20px !important; }
  .form--libro .list-reclamo {
    display: grid;
    gap: .5rem; }
  .form--libro form {
    margin-bottom: 2rem; }
  .form--mostrar {
    display: none; }
  .form__group {
    grid-gap: 12px;
    margin-bottom: 8px; }
  .form__contentText h2 {
    font-size: 28px;
    color: #1c3a5e;
    text-align: center;
    margin-bottom: 1.5rem; }
  .form__contentText p {
    margin-bottom: 1rem; }
  .form .input-group {
    display: flex;
    flex-direction: column;
    /* modificado */
    /*=================*/ }
    .form .input-group--requerido .input-group__input {
      border: 1px solid #dc3545; }
    .form .input-group--requerido .input-group__validar {
      color: #dc3545; }
    .form .input-group__label {
      font-size: 14px;
      padding-bottom: 5px; }
    .form .input-group__input, .form .input-group__textarea {
      border: 1px solid #dddddd;
        border-radius: 5px;
        height: 42px;
        margin-bottom: 2px;
        padding: 0 10px;
        outline: none;
        background-color: #fafafa;
        width: 100%; }
      .form .input-group__input::placeholder, .form .input-group__textarea::placeholder {
        font-size: 14px; }
    .form .input-group__textarea {
      height: initial;
      text-align: initial;
      padding: 20px; }
    .form .input-group__validar {
      font-size: 11px; }
    .form .input-group__select {
      height: 42px;
      border-radius: 10px;
      border: 1px solid #dddddd;
      padding: 0 15px;
      outline: none;
      background-color: #fafafa;
      width: 100%; }
      .form .input-group__select::placeholder {
        font-size: 14px; }
    .form .input-group__text-area {
      outline: none;
      padding: 8px 10px;
      border: 1px solid #c2c2c2;
      border-radius: 3px; }
  .form__checkbox {
    margin: 22px 0;
    /* The container */
    /* Hide the browser's default checkbox */
    /* Create a custom checkbox */
    /* On mouse-over, add a grey background color */
    /* When the checkbox is checked, add a blue background */
    /* Create the checkmark/indicator (hidden when not checked) */
    /* Show the checkmark when checked */
    /* Style the checkmark/indicator */ }
    .form__checkbox .checkbox {
      display: flex; }
      .form__checkbox .checkbox__input {
        margin-right: 8px; }
      .form__checkbox .checkbox__help {
        font-size: 14px;
        color: #ffffff; }
        .form__checkbox .checkbox__help a {
          color: #ffffff;
          font-weight: bold;
          text-decoration: revert; }
    .form__checkbox .container-checkbox, .form__checkbox .container-checkbox-second {
      display: block;
      position: relative;
      padding-left: 35px;
      cursor: pointer;
      font-size: 15px;
      color: #1c3a5e;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      .form__checkbox .container-checkbox a, .form__checkbox .container-checkbox-second a {
        color: #1c3a5e;
        font-weight: bold; }
    .form__checkbox .container-checkbox input, .form__checkbox .container-checkbox-second input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
    .form__checkbox .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 20px;
      width: 20px;
      background-color: #cbcbcb; }
    .form__checkbox .container-checkbox:hover input ~ .checkmark, .form__checkbox .container-checkbox-second:hover input ~ .checkmark {
      background-color: #ccc; }
    .form__checkbox .container-checkbox input:checked ~ .checkmark, .form__checkbox .container-checkbox-second input:checked ~ .checkmark {
      background-color: #1c3a5e; }
    .form__checkbox .checkmark:after {
      content: "";
      position: absolute;
      display: none; }
    .form__checkbox .container-checkbox input:checked ~ .checkmark:after, .form__checkbox .container-checkbox-second input:checked ~ .checkmark:after {
      display: block; }
    .form__checkbox .container-checkbox .checkmark:after, .form__checkbox .container-checkbox-second .checkmark:after {
      left: 7px;
      top: 4px;
      width: 3px;
      height: 8px;
      border: solid white;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
  .form__action button, .form__action p input {
    width: 100%;
    background-color: #1c3a5e;
    color: #ffffff;
    border: none;
    height: 45px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
 }
  .form__success span {
    display: block;
    font-size: 14px;
    border-radius: 3px;
    background-color: #17a362;
    color: #ffffff;
    margin-top: 10px;
    padding: 12px 18px; }

/*
    OWL CAROUSEL - GENERAL
    *
    --------------------------------------
    *
*/
.owl-general {
  position: relative;
  display: flex; }
  .owl-general--centrar-navegadores .owl-nav {
    position: absolute; }
  .owl-general--centrar-navegadores .owl-nav {
    width: 100%;
    left: 0;
    top: 50%;
    transform: translate(0px, -50%);
    justify-content: space-between !important; }
    .owl-general--centrar-navegadores .owl-nav button {
      margin: 0 !important; }
  .owl-general--bottom-dots .owl-dots {
    position: absolute; }
  .owl-general--bottom-dots .owl-dots {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0px); }
  .owl-general .item {
    /*.content{
        p{
            color: #ffffff;
        }
    }*/ }
    .owl-general .item img {
      width: 100%; }
  .owl-general .owl-nav {
    display: flex;
    justify-content: center;
    margin: 0 !important; }
    .owl-general .owl-nav button {
      border: none;
      width: 32px;
      height: 32px;
      display: flex !important;
      align-items: center;
      justify-content: center; }
      .owl-general .owl-nav button:hover {
        background: #196fc0 !important;
        color: #ffffff !important; }
      .owl-general .owl-nav button span {
        display: flex;
        font-size: 10px; }
  .owl-general .owl-dots {
    margin-top: 32px !important; }
    .owl-general .owl-dots .owl-dot {
      padding: 4px 5px;
      background: initial;
      margin-bottom: 1rem; }
      .owl-general .owl-dots .owl-dot span {
        margin: 5px 0px !important;
        background: transparent !important;
        width: 12px !important;
        height: 12px !important;
        border: 3px solid #ffffff; }
      .owl-general .owl-dots .owl-dot.active span, .owl-general .owl-dots .owl-dot:hover span {
        background: #FBC98C !important;
        border: 3px solid #FBC98C; }


/*------------------------------------------------------------------*/

@font-face {
  font-family: 'BebasNeue';
  src: url("../font/BebasNeue-Regular.eot");
  src: url("../font/BebasNeue-Regular.eot?#iefix") format("embedded-opentype"), url("../font/BebasNeue-Regular.woff2") format("woff2"), url("../font/BebasNeue-Regular.woff") format("woff"), url("../font/BebasNeue-Regular.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'BebasNeue';
  src: url("../font/BebasNeue-Regular.eot");
  src: url("../font/BebasNeue-Regular.eot?#iefix") format("embedded-opentype"), url("../font/BebasNeue-Regular.woff2") format("woff2"), url("../font/BebasNeue-Regular.woff") format("woff"), url("../font/BebasNeue-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'BebasNeue';
  src: url("../font/GBebasNeue-Regular.eot");
  src: url("../font/GBebasNeue-Regular.eot?#iefix") format("embedded-opentype"), url("../font/GBebasNeue-Regular.woff2") format("woff2"), url("../font/GBebasNeue-Regular.woff") format("woff"), url("../font/GBebasNeue-Regular.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'BebasNeue';
  src: url("../font/GoBebasNeue-Regular.eot");
  src: url("../font/GoBebasNeue-Regular.eot?#iefix") format("embedded-opentype"), url("../font/GoBebasNeue-Regular.woff2") format("woff2"), url("../font/GoBebasNeue-Regular.woff") format("woff"), url("../font/GoBebasNeue-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }
  
/*------------------------------------------------------------------*/
  
  @font-face {
    font-family: 'RedHatDisplay';
    src: url('../font/RedHatDisplay-Regular.eot');
    src: url('../font/RedHatDisplay-Regular.eot?#iefix') format('embedded-opentype'),
        url('../font/RedHatDisplay-Regular.woff2') format('woff2'),
        url('../font/RedHatDisplay-Regular.woff') format('woff'),
        url('../font/RedHatDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RedHatDisplay';
    src: url('../font/RedHatDisplay-ExtraBold.eot');
    src: url('../font/RedHatDisplay-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../font/RedHatDisplay-ExtraBold.woff2') format('woff2'),
        url('../font/RedHatDisplay-ExtraBold.woff') format('woff'),
        url('../font/RedHatDisplay-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RedHatDisplay';
    src: url('../font/RedHatDisplay-Light.eot');
    src: url('../font/RedHatDisplay-Light.eot?#iefix') format('embedded-opentype'),
        url('../font/RedHatDisplay-Light.woff2') format('woff2'),
        url('../font/RedHatDisplay-Light.woff') format('woff'),
        url('../font/RedHatDisplay-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RedHatDisplay';
    src: url('../font/RedHatDisplay-Medium.eot');
    src: url('../font/RedHatDisplay-Medium.eot?#iefix') format('embedded-opentype'),
        url('../font/RedHatDisplay-Medium.woff2') format('woff2'),
        url('../font/RedHatDisplay-Medium.woff') format('woff'),
        url('../font/RedHatDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RedHatDisplay';
    src: url('../font/RedHatDisplay-Bold.eot');
    src: url('../font/RedHatDisplay-Bold.eot?#iefix') format('embedded-opentype'),
        url('../font/RedHatDisplay-Bold.woff2') format('woff2'),
        url('../font/RedHatDisplay-Bold.woff') format('woff'),
        url('../font/RedHatDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RedHatDisplay';
    src: url('../font/RedHatDisplay-SemiBold.eot');
    src: url('../font/RedHatDisplay-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../font/RedHatDisplay-SemiBold.woff2') format('woff2'),
        url('../font/RedHatDisplay-SemiBold.woff') format('woff'),
        url('../font/RedHatDisplay-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RedHatDisplay';
    src: url('../font/RedHatDisplay-Regular_1.eot');
    src: url('../font/RedHatDisplay-Regular_1.eot?#iefix') format('embedded-opentype'),
        url('../font/RedHatDisplay-Regular_1.woff2') format('woff2'),
        url('../font/RedHatDisplay-Regular_1.woff') format('woff'),
        url('../font/RedHatDisplay-Regular_1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RedHatDisplay';
    src: url('../font/RedHatDisplay-Black.eot');
    src: url('../font/RedHatDisplay-Black.eot?#iefix') format('embedded-opentype'),
        url('../font/RedHatDisplay-Black.woff2') format('woff2'),
        url('../font/RedHatDisplay-Black.woff') format('woff'),
        url('../font/RedHatDisplay-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
  
  
  
/*
   HEADER
   *
   -----------------------------------------
   *
 */
.header {
  width: 100%;
  z-index: 200;
  transition: 0.3s;
  position: relative;
  /* modificadores */
  /*--------------------*/
  /* elementos */
  /*-----------------------------*/ }
  .header--background {
    background: #1C3A5E; }
  .header--b-bottom {
    border-bottom: 2px solid #0067cd;
    /* PUEDE MODIFICARSE */ }
  .header--shadow {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.42);
    /* PUEDE MODIFICARSE */ }
  .header--fixed {
    position: fixed;
    top: 0; }
  .header__content {
    display: flex;
    grid-gap: 25px;
    justify-content: space-between; }
  .header__logo {
    display: flex;
    gap: .6rem;
    align-items: center; }
    .header__logo .isotipo {
      background-color: #ffffff;
      padding: 0.2rem 1rem;
      margin-bottom: -2.6rem;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.42); }
      .header__logo .isotipo img {
        width: 87px;
        height: auto; }
    .header__logo .logo-white img {
      width: 175px;
      height: auto; }
    .header__logo span {
      width: 1px;
      height: 100%;
      background: #ffffff; }
    .header__logo--padding {
      padding: 0;
      /* PUEDE MODIFICARSE */ }
  .header__img {
    max-width: 165px;
    /* PUEDE MODIFICARSE */
    display: block; }
  .header__scroll {
    background-color: #ffffff; }
    .header__scroll span, .header__scroll a.header-tc {
      display: none; }
    .header__scroll .header-slim--showscroll {
      display: none; }
    .header__scroll .header-slim--showheader {
      display: block; }
    .header__scroll .main-nav__link {
      color: #333333; }
      .header__scroll .main-nav__link.btncotiza {
        color: #1C3A5E; }
    .header__scroll .btn-nav i {
      color: #333333; }
  .header .none {
    display: none; }

.main-nav {
  display: flex;
  grid-gap: 20px;
  align-items: center;
  /* elementos */
  /*-----------------------------------*/ }
  .main-nav__list {
    display: flex;
    justify-self: right;
    align-items: center;
    height: 100%;
    /* modificadores */
    /*-------------------------------------*/ }
    .main-nav__list span {
      width: 1px;
      height: 22px;
      background: #ffffff; }
    .main-nav__list--h-back .main-nav__item:hover {
      background-color: #0067cd;
      /* PUEDE MODIFICARSE */ }
      .main-nav__list--h-back .main-nav__item:hover .main-nav__link {
        color: #1C3A5E !important; }
    .main-nav__list--h-line-bottom .main-nav__item:before {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      background-color: #0067cd;
      /* PUEDE MODIFICARSE */
      transition: .3s;
      bottom: 0;
      left: 0; }
    .main-nav__list--h-line-bottom .main-nav__item:hover::before {
      width: 100%; }
    .main-nav__list--h-color-text .main-nav__item:hover .main-nav__link {
      color: #0067cd;
      /* PUEDE MODIFICARSE */ }
  .main-nav__item {
    margin: 0;
    /*display: flex;
    align-items: center;*/
    transition: 0.3s;
    position: relative;
    /* modificadores */
    /* ------------------- */ }
    .main-nav__item--maxalto {
      height: 100%; }
  .main-nav__link {
    padding: 12px 15px;
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    height: 100%; }
    .main-nav__link .text-link {
      font-weight: 600;
      font-size: 13px; }
    .main-nav__link .icono-link {
      display: flex;
      padding-left: 10px;
      font-weight: 600;
      font-size: 12px; }
    .main-nav__link:hover {
      color: #ffffff;
      font-weight: bold;
      transition: 0.3s all; }
  .main-nav__dropdown {
    display: none;
    position: absolute;
    background-color: #e5e5e5;
    min-width: 194px;
    /* PUEDE MODIFICARSE */
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    transition: .3s;
    z-index: 2; }
  .main-nav__search {
    position: relative;
    /*modificadores*/ }
    .main-nav__search input {
      height: 32px;
      border: 1px solid #cecece;
      padding: 0 30px 0 12px;
      width: 220px;
      outline: none; }
    .main-nav__search span {
      font-size: 14px;
      position: absolute;
      right: 12px;
      bottom: 50%;
      transform: translate(0px, 50%); }
    .main-nav__search--b-radius input {
      border-radius: 50px; }

.dropdown-link {
  color: #000000;
  padding: 12px 15px;
  display: block;
  font-size: 14px; }
  .dropdown-link:hover {
    color: #0067cd; }

/* boton menu */
.movil-menu {
  cursor: pointer; }
  .movil-menu li a span {
    display: flex; }
  .movil-menu--efecto li a {
    background-color: #e5e5e5;
    padding: 14px;
    border-radius: 100px;
    display: block; }
  .movil-menu--efecto:hover li a {
    background-color: #317fcd;
    display: block; }
    .movil-menu--efecto:hover li a span {
      color: #ffffff; }

/* --------------------------- */
@media only screen and (max-width: 1020px) {
  .movil-menu {
    display: block !important; }

  .main-nav__list {
    display: none !important; } }
/*==============================================*/
/*
    SIDENAV
    *
    -----------------------------------------
    *
*/
.sidenav {
  height: 100%;
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  width: 420px;
  transform: translateX(420px);
  transition: 0.3s;
  display: grid;
  background-size: cover; }
  .sidenav__content {
    background: #1C3A5E;
    padding: 10%; }
    .sidenav__content--back {
      background: #3d8eb5; }
      .sidenav__content--back a, .sidenav__content--back span {
        color: #ffffff !important; }
  .sidenav__head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 1.8rem; }
    .sidenav__head .head__logo {
      display: flex;
      gap: 1.2rem; }
      .sidenav__head .head__logo img {
        width: 78px;
    background: #ffffff;
    padding: 5px;
    border-radius: 8px;}
      .sidenav__head .head__logo span {
        width: 1px;
        background: #ffffff; }
    .sidenav__head .head__cerrar {
      /*padding: 12px 20px;
      background: #f7f7f7;
      cursor: pointer;*/ }
      .sidenav__head .head__cerrar--back {
        background: #0067cd;
        color: #ffffff; }
      .sidenav__head .head__cerrar--b-radius {
        border-radius: 50%; }
      .sidenav__head .head__cerrar a {
        font-size: 35px;
        cursor: pointer; }
        .sidenav__head .head__cerrar a i {
          color: #ffffff; }
  .sidenav__list .main-nav__item .main-nav__link {
    padding: .8rem 0;
    width: 100%; }
    .sidenav__list .main-nav__item .main-nav__link:hover {
      color: #ffffff; }
  .sidenav__list .main-nav__item .btncotiza {
    background-color: #FBC98C;
    margin-top: 1.2rem;
    margin-left: 0;
    display: grid;
    justify-content: center; }
  .sidenav__list--center li a {
    justify-content: center; }
  .sidenav__item {
    text-align: center; }
  .sidenav__links {
    padding: 15px 0px;
    display: flex;
    color: #3e3e3e;
    font-weight: 600;
    font-size: 15px;
    align-items: center;
    justify-content: space-between; }
    .sidenav__links .text-link {
      padding-right: 5px;
      font-size: 15px;
      font-weight: 600; }
    .sidenav__links .icono-link {
      width: 30px !important;
      display: inline-block;
      color: #3e3e3e;
      transform: rotate(-90deg);
      transition: 0.3s all;
      font-weight: 600;
      font-size: 14px; }
      .sidenav__links .icono-link.active {
        transform: rotate(0deg); }
  .sidenav__dropdown {
    display: none;
    background: #f7f7f7;
    left: 20px;
    z-index: 10;
    min-width: 240px;
    text-align: left; }
    .sidenav__dropdown li a {
      font-size: 14px;
      padding-left: 15px; }
  .sidenav.active {
    transform: translateX(0%); }
  .sidenav .list__redes {
    margin: 0 5px; }
    .sidenav .list__redes--redondo {
      border-radius: 50px; }
    .sidenav .list__redes a {
      width: 40px;
      height: 40px;
      background-color: #ffffff38;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 5px; }
      .sidenav .list__redes a i {
        color: #ffffff;
        font-size: 22px; }
      .sidenav .list__redes a span {
        font-size: 18px;
        display: flex;
        color: #ffffff;
        /*puede modificarse*/ }

/*==========================================================*/
/*@media (max-width: 1200px) {
  .galeriaimagenes {
    .owl-galeria {
      .owl-nav {
        button {
          &.owl-prev {
            margin-left: 0rem !important;
          }
          &.owl-next {
            margin-right: 0rem !important;
          }
        }
      }
    }
  }
}

@media (max-width: 1150px) {
  .infoproyecto {
    //padding-bottom: 5.2rem;
    &__content {
      margin-bottom: 3.2rem;
      h2 {
        text-align: center !important;
        padding: 1.2rem 3rem !important;
        width: 550px;
        margin: auto;
        &:before {
          content: "";
          position: absolute;
          width: 100% !important;
          height: 100%;
          background: linear-gradient(90deg, #f55c05 0%, #b81b48 32%);
          top: 0;
          right: 0 !important;
          border-radius: 50px;
        }
      }
      p {
        text-align: center !important;
      }
      ul {
        justify-content: center !important;
      }
    }
  }

  .areascomunes {
    padding: 2.5rem 0 4rem 0 !important;
    &__img {
      img {
        width: 550px !important;
        margin: auto;
      }
    }
  }

  .enlaces {
    &__lista {
      gap: 1.2rem !important;
    }
  }

  #modal-formwhatsapp .form--fondo {
    width: 480px !important;
  }

  section.ubicacion {
    ul {
      display: flex !important;
      flex-wrap: wrap;
      li {
        button,
        a {
          width: 100% !important;
          padding: 0.5rem 2.2rem !important;
        }
      }
    }

    .imgubicacion {
      img {
        max-width: 650px !important;
        margin: auto;
        margin-top: 1.2rem;
      }
    }
  }

  section.proyectosventa {
    .owl-proyectosventa {
      .item {
        .proyectoventa__content {
          .mensaje-top {
            width: 95% !important;
          }
        }
      }
    }
  }
}

@media (max-width: 1050px) {
  .galeriaimagenes {
    .tabs {
      ul {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 1.2rem;
      }
    }

    .owl-galeria {
      .item {
        margin: 0rem !important;
        img {
          width: 100% !important;
          max-height: 500px;
          object-fit: cover;
        }
      }

      .owl-nav {
        button {
          &.owl-prev {
            margin-left: 1rem !important;
          }
          &.owl-next {
            margin-right: 1rem !important;
          }
        }
      }
    }
  }
}

@media (max-width: 1030px) {
  .cotiza {
    .tipografia {
      &__item {
        justify-content: start !important;
        gap: 1.2rem;
      }
    }
  }

  section.ubicacion ul li button,
  section.ubicacion ul li a {
    width: 100% !important;
  }
}

@media (max-width: 950px) {
  .owl-banner {
    .item {
      img {
        max-height: none !important;
        object-fit: cover;
      }
    }
  }

  .form--fondo {
    //padding: 3.2rem 3.5rem !important;
  }

  section.ubicacion {
    .mensaje {
      h3 {
        &:before {
          content: "";
          position: absolute;
          width: 100% !important;
          height: 100%;
          top: 0;
          right: inherit !important;
          left: -30%;
          background: linear-gradient(90deg, #b81b48 40%, #f55c05 100%);
          border-radius: 50px;
        }
      }
    }
  }
}

@media (max-width: 720px) {
  .infoproyecto {
    padding-bottom: 5.2rem;
    &__content {
      h2 {
        width: 100%;
      }
    }
    &__caracteristicas {
      ul {
        width: 400px;
        margin: auto;
      }
    }
  }

  .cotiza {
    padding: 3.2rem 0 !important;
  }

  section.ubicacion {
    .mensaje {
      h3 {
        text-align: center;
        &:before {
          content: "";
          position: absolute;
          width: 100% !important;
          height: 100%;
          top: 0;
          right: inherit !important;
          left: 0 !important;
          background: linear-gradient(90deg, #b81b48 40%, #f55c05 100%);
          border-radius: 50px;
        }
      }
    }
  }

  .img-banner-responsive {
    display: block !important;
  }

  .img-banner {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .areascomunes {
    &__img {
      img {
        width: 100% !important;
      }
    }
  }
}

@media (max-width: 550px) {
  .infoproyecto {
    &__caracteristicas {
      ul {
        width: 320px !important;
      }
    }
  }

  #modal-formwhatsapp .form--fondo {
    width: 100% !important;
  }

  .modal__body h2 {
    font-size: 20px !important;
  }
}*/
@media (max-width: 1200px) {
  .owl-banner .item-mensage h2,
  .owl-banner .item-mensage h3,
  .owl-banner .item-mensage h4 {
    font-size: 2.5rem !important; }
  .owl-banner .item-mensage p {
    font-size: 1rem !important; }

  .form--fondo {
    width: 325px; }
  .form__checkbox {
    margin: 10px 0; }
    .form__checkbox .container-checkbox {
      font-size: 13px; }
  .form__group {
    grid-gap: 10px; }
  .form__contentText h2 {
    font-size: 22px; }
  .form__action button {
    height: 38px; } }
@media (max-width: 1149px) {
  .owl-slideCondominio .owl-item .item figure {
    transform: scale(1) !important; }
    .owl-slideCondominio .owl-item .item figure img {
      height: 400px; }

  .sectionlotizacion .content-editor {
    margin-bottom: 0 !important; }
    .sectionlotizacion .content-editor ul {
      margin: 0 !important;
      display: flex !important;
      flex-wrap: wrap;
      justify-content: space-around; }
      .sectionlotizacion .content-editor ul li {
        width: 150px !important; }
  .sectionlotizacion .lotizacion {
    margin-top: 4rem; }

  .nuestrosObras .owl-slidenuestrasObras .item figure {
    transform: initial !important; } }
@media (max-width: 920px) {
  .videoAreasComunes__videos a img {
    height: auto !important; }
  .videoAreasComunes__videos a .video-mesage {
    font-size: 42px !important; } }
@media (max-width: 892px) {
  .owl-banner .item-mensage h2,
  .owl-banner .item-mensage h3,
  .owl-banner .item-mensage h4 {
    font-size: 1.8rem !important; }

  .form--fondo {
    width: 240px; }
  .form__contentText h2 {
    font-size: 18px;
    margin-bottom: 0px; }
  .form .input-group__input, .form .input-group__select {
    height: 34px; } }
@media (max-width: 720px) {
  .banner__content-general {
    position: relative;
    top: initial;
    transform: initial;
    right: initial; }

  .form--fondo {
    width: 100%;
    padding: 2.2rem;
    background: #0e0d13;
    border-radius: initial; }
  .form__contentText h2 {
    font-size: 24px;
    margin-bottom: 10px; }
  .form__checkbox {
    margin: 18px 0; }
  .form .input-group__input {
    height: 38px; }

  .videoAreasComunes__videos a .video-mesage {
    font-size: 42px !important; }

  .sectionlotizacion {
    /*.imgcapa-verde {
      display: none;
    }*/ }
    .sectionlotizacion .container {
      padding-bottom: 4.2rem !important; }

  .sectioncontactanos .form--fondo {
    background-color: #ffffff; }
  .sectioncontactanos .img-contacto {
    padding-right: 0 !important; }

  .slideCondominio .slider_nav, .nuestrosObras .slider_nav {
    justify-content: start !important; }

  .content-end {
    justify-content: start !important; }

  .footer__redes, .footer__info, .footer__contacto {
    margin-top: 1.8rem; }

  .img-banner-responsive {
    display: block !important; }

  .img-banner {
    display: none !important; } }
@media (max-width: 600px) {
  .owl-slideCondominio .owl-item .item figure {
    transform: scale(1) !important; }
    .owl-slideCondominio .owl-item .item figure img {
      height: 290px; }

  .mapaUbicacion__item {
    margin-top: 1.5rem; }

  .testimonio__box {
    box-shadow: 10px 10px 12px 0px rgba(0, 0, 0, 0.1) !important;
    margin: 1.2rem !important;
    padding: 1.2rem !important; } 
    
    .content-editor h2, .content-editor h3, .content-editor h4 {
    font-size: 2.2rem !important;
}
    
.content-descuento {
    padding: 1.5rem !important;
}    
    
    .head__descuento h3 strong {
    padding: 8px 12px !important;
        font-size: 2rem !important;
}

.body__descuento {
    padding: 18px 2.5rem 8px !important;
}

.body__descuento span {
    padding: 2px 0.8rem !important;
    top: -12px !important;
}

.body__descuento h2 {
    font-size: 2rem !important;
}
    
}
@media (max-width: 520px) {
  .videoAreasComunes__videos a .icon-play {
    width: 50px !important;
    height: 50px !important; }
  .videoAreasComunes__videos a .video-mesage {
    font-size: 28px !important; }

  /*.header__logo .isotipo {
    padding: 0.8rem 0.8rem 1.2rem;
    margin-bottom: -1.6rem;
    border-bottom-left-radius: 50px; }*/
    /*.header__logo .isotipo img {
      width: 55px;
      height: auto; }*/

  .informacion-final .content-informacion-final ul {
    display: grid !important; } }
/* OWL CARROUSEL */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-dot {
    border: 0; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
  z-index: 0; }
.owl-carousel .owl-animated-out {
  z-index: 1; }
.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*
 * 	Green theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #4DC7A0;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #4DC7A0; }

/*===========================================================================================================
=============================================================================================================*/
html,
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: "RedHatDisplay";
  box-sizing: border-box;
  scroll-behavior: smooth; }
  
  h2, h3{
      font-family: "BebasNeue";
  }

p,
a,
li,
span {
  font-size: 15px; }

ul {
  list-style: none; }

.section {
  padding-top: 4.2rem;
  padding-bottom: 4.2rem; }

.text-center {
  text-align: center; }

/*--- EDITOR ---*/
.content-editor h2,
.content-editor h3,
.content-editor h4 {
  font-size: 3rem;
    margin-bottom: 0.8rem;
    color: #1c3a5e; }
.content-editor b, .content-editor strong {
  color: #1c3a5e; }
.content-editor ul {
  margin: 1rem 0; }
  .content-editor ul li {
    list-style: initial;
    margin-left: 1rem; }
    .content-editor ul li::marker {
      color: #1c3a5e; }
.content-editor a {
  color: #1c3a5e;
  text-decoration: underline;
  font-weight: bold; }

/*---------------------------*/
/*--- TITULO ---*/
.titulo {
  margin-bottom: 2.2rem; }
  .titulo--white h3 {
    color: #ffffff !important; }
    .titulo--white h3 strong {
      color: #ffffff !important; }
  .titulo--verde h2 {
    color: #FBC98C;
    font-size: 2.5rem; }

/*.titulo h3 strong {
  color: #9d1d64;
  font-weight: 600;
}
.titulo h3 {
  color: #9d1d64;
  font-size: 32px;
  font-weight: normal;
}*/
/*-------------------------*/
.btncotiza {
  background: #FBC98C;
  padding: 15px 25px;
  border-radius: 50px;
  margin-left: 1rem;
  color: #1C3A5E;
  font-weight: bold; }

.btn-nav i {
  color: #ffffff;
  font-size: 25px; }

.btn-nav {
  padding: 8px; }

.owl-banner {
  /*.owl-prev {
        margin-left: 2.8rem !important;
      }

      .owl-next {
        margin-right: 2.8rem !important;
      }

    .owl-nav .owl-next, .owl-nav .owl-prev{
        font-size: 40px;
        //border: 2px solid #E4002B;
        //padding: 0px 14px;
        background: #ff5c16;
        border-radius: 50%;
        i{
            color: #ffffff;
        }
    }*/ }
  .owl-banner .item {
    position: relative; }
    .owl-banner .item img {
      width: 100%;
      max-height: 670px;
      object-fit: cover; }
    .owl-banner .item-mensage {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding-bottom: 4.8rem;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9023984594) 100%); }
      .owl-banner .item-mensage h2,
      .owl-banner .item-mensage h3,
      .owl-banner .item-mensage h4,
      .owl-banner .item-mensage p {
        color: #ffffff; }
      .owl-banner .item-mensage h2,
      .owl-banner .item-mensage h3,
      .owl-banner .item-mensage h4 {
        font-size: 3.3rem;
        padding-bottom: 0.6rem;
        margin: 0; }
      .owl-banner .item-mensage p {
        font-size: 1.4rem; }

/*--- FINANCIAMIENTO ---*/
.mensajeFinanciera {
  background: #0e0d13;
  padding: 25px 0;
  text-align: center; }
  .mensajeFinanciera h4 {
    color: #ffffff;
    font-size: 22px; }
    .mensajeFinanciera h4 b {
      color: #FFEE30; }

/*--------------------*/
/*--- TIPO DE CONDOMINIO ---*/
.typescondominio__items {
      margin-top: 3.2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-content: stretch;
}
.typescondominio__item {
  display: flex;
    background: #F6F6F6;
    flex-direction: column;
    padding: 1.8rem 1.5rem;
    border-radius: 10px;
        width: 210px;
align-items: center;}
  .typescondominio__item img {
    height: 52px;
    /*margin: auto;*/
    margin-bottom: 1rem; }
  /*.typescondominio__item p, .typescondominio__item h2 {
    font-weight: bold;
    color: #1c3a5e;}*/
.typescondominio__item h2 {
    font-weight: bold;
    color: #1c3a5e;}

/*--------------------*/
/*--- SLIDES CONDOMINIO ---*/
.slideCondominio {
  background-color: #FBC98C;
  padding-bottom: 14.5rem; }
  .slideCondominio .content-editor h2, .slideCondominio .content-editor p {
    color: #ffffff; }
  .slideCondominio .content-editor h2 {
    font-size: 2.5rem; }
  .slideCondominio .slider_nav {
    justify-content: end; }
    .slideCondominio .slider_nav button {
      border: 1px solid #ffffff;
      cursor: pointer; }
      .slideCondominio .slider_nav button i {
        color: #ffffff; }
      .slideCondominio .slider_nav button:hover {
        background-color: #ffffff; }
        .slideCondominio .slider_nav button:hover i {
          color: #FBC98C; }

.owl-slideCondominio {
  margin-top: -11.2rem; }
  .owl-slideCondominio .owl-item .item figure {
    transform: scale(0.9); }
    .owl-slideCondominio .owl-item .item figure img {
      max-height: 560px;
      object-fit: cover;
      border-radius: 20px;
      display: block; }
  .owl-slideCondominio .center .item figure {
    transform: scale(1); }

.slider_nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px; }
  .slider_nav button {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: transparent; }
    .slider_nav button i {
      font-size: 25px; }

/*--------------------*/
/*--- DESCUBRE ---*/
.descubre {
  margin-top: 2.5rem; }
  .descubre .content-editor h2, .descubre .content-editor p {
    color: #FBC98C; }
  .descubre .content-editor h2 {
    font-size: 2.1rem;
    font-weight: 500; }
    .descubre .content-editor h2 strong {
      color: #FBC98C; }
  .descubre__items {
    margin-top: 3.2rem; }
  .descubre__titulo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem; }
    .descubre__titulo .iconopcion {
      background-color: #FBC98C;
      border-radius: 100%;
      padding: 20px;
      margin-right: 1rem; }
    .descubre__titulo h4 {
      color: #FBC98C;
      font-size: 18px; }

/*--------------------*/
/*--- SECCION VIDEO ---*/
.videoAreasComunes__videos {
  position: relative;
  display: flex;
  justify-content: center; }
  .videoAreasComunes__videos a {
    width: 100%;
    max-width: 950px;
    border-radius: 20px;
    box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden; }
    .videoAreasComunes__videos a img {
      width: 100%;
      display: block; }
    .videoAreasComunes__videos a .icon-play {
      position: absolute;
      right: 50%;
      top: 50%;
      transform: translate(50%, -50%);
      font-size: 2rem;
      width: 120px;
      height: 120px;
      background: #000000b8;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
      .videoAreasComunes__videos a .icon-play i {
        font-size: 3.5rem;
        color: #ffffff; }
    .videoAreasComunes__videos a .video-mesage {
      position: absolute;
      bottom: 0;
      right: 50%;
      transform: translate(50%, 0);
      color: #ffffff;
      font-size: 62px;
      width: 100%;
      text-align: center; }

/*--------------------*/
/*--- SECCION LOTIZACION ---*/
.sectionlotizacion {
  background-color: #0E0D13;
  padding-bottom: 0; }
  .sectionlotizacion .container {
    position: relative;
    padding-bottom: 6rem; }
  .sectionlotizacion .content-editor {
    margin-bottom: 3.2rem; }
    .sectionlotizacion .content-editor h2 {
      color: #ffffff;
      font-size: 2.5rem;
      display: grid;
      margin-bottom: 2rem; }
      .sectionlotizacion .content-editor h2 strong {
        color: #ffffff;
        font-size: 24px;
        font-weight: normal; }
    .sectionlotizacion .content-editor p, .sectionlotizacion .content-editor h3 {
      color: #ffffff; }
    .sectionlotizacion .content-editor.banderas {
      border-radius: 15px;
      padding: 20px;
      background: #ffffff; }
      .sectionlotizacion .content-editor.banderas p, .sectionlotizacion .content-editor.banderas b, .sectionlotizacion .content-editor.banderas strong, .sectionlotizacion .content-editor.banderas h1, .sectionlotizacion .content-editor.banderas h2, .sectionlotizacion .content-editor.banderas h3 {
        color: #000000;
        margin-bottom: 1rem; }
      .sectionlotizacion .content-editor.banderas ul {
        margin: 0; }
    .sectionlotizacion .content-editor ul {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      /* grid-gap: 1.2rem; */
      justify-items: baseline;
      /*background: #ffffff;*/
      border-radius: 15px;
      overflow: hidden; }
      .sectionlotizacion .content-editor ul li {
        width: 100%;
        padding: 15px 10px;
        color: #0E0D13;
        text-align: center;
        list-style: inherit;
        margin-left: 0; }
    .sectionlotizacion .content-editor h3 {
      font-size: 4rem; }
  .sectionlotizacion .imgcapa-verde {
    position: absolute;
    bottom: 0; }
  .sectionlotizacion iframe {
    height: 550px;
    border-radius: 20px; }

/*--------------------*/
/*--- SECCION CONTACTANOS ---*/
.sectioncontactanos span {
  letter-spacing: 4px;
  margin-bottom: .7rem;
  display: block; }
.sectioncontactanos .img-contacto {
  padding-right: 4.2rem; }
  .sectioncontactanos .img-contacto img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px; }
.sectioncontactanos .form {
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.07); }
  .sectioncontactanos .form--fondo {
    width: 100%;
    padding: 2.5rem;
    border-radius: 25px; }
  .sectioncontactanos .form__contentText h2 {
    color: #FBC98C;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 1.2rem; }
  .sectioncontactanos .form__checkbox .container-checkbox, .sectioncontactanos .form__checkbox .container-checkbox a, .sectioncontactanos .form__checkbox .container-checkbox-second, .sectioncontactanos .form__checkbox .container-checkbox-second a {
    color: #FBC98C; }

/*--------------------*/
/*--- SECCION MAPA UBICACION ---*/
.mapaUbicacion {
  background-color: #0e0d13; }
  .mapaUbicacion__item .content-editor, .mapaUbicacion__item p {
    color: #ffffff; }
  .mapaUbicacion__informationMapa {
    margin-bottom: 1.8rem;
    text-align: center; }
    .mapaUbicacion__informationMapa h2 {
      font-size: 2.5rem; }
  .mapaUbicacion__iframeMapa iframe {
    width: 100%;
    border-radius: 20px; }
  .mapaUbicacion__videoMapa {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 1.5rem 0; }
    .mapaUbicacion__videoMapa p a {
      color: #FFEE30;
      font-weight: 600;
      text-decoration: underline; }
    .mapaUbicacion__videoMapa .icon-checkMapa {
      background-color: #ffffff;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 100%; }
      .mapaUbicacion__videoMapa .icon-checkMapa i {
        color: #FBC98C;
        font-size: 25px; }
  .mapaUbicacion__enlaceMapa {
    display: flex;
    gap: 2rem;
    justify-content: center; }
    .mapaUbicacion__enlaceMapa a {
      background: #FBC98C;
      width: 180px;
      padding: 12px;
      text-align: center;
      border-radius: 8px;
      color: #ffffff; }

/*--------------------*/
/*--- SECCION CONTACTANOS ---*/
.sectionlogos .logos__items {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  row-gap: 4.2rem;
  column-gap: 2.2rem; }
.sectionlogos__item {
  display: grid;
  gap: 0.8rem; }
  .sectionlogos__item img {
    margin: auto; }
  .sectionlogos__item p {
    text-align: center;
    font-weight: 500;
    font-size: 18px; }

/*--------------------*/
/*--- SECCION NUESTRAS OBRAS ---*/
.nuestrosObras .content-editor h2 {
  color: #FBC98C;
  font-size: 2.8rem; }
.nuestrosObras .slider_nav {
  justify-content: end; }
  .nuestrosObras .slider_nav button {
    border: 1px solid #FBC98C;
    cursor: pointer; }
    .nuestrosObras .slider_nav button i {
      color: #FBC98C; }
    .nuestrosObras .slider_nav button:hover {
      background-color: #FBC98C; }
      .nuestrosObras .slider_nav button:hover i {
        color: #FFFFFF; }
.nuestrosObras .owl-slidenuestrasObras {
  margin-top: 2.2rem; }
  .nuestrosObras .owl-slidenuestrasObras .item figure {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.8); }
    .nuestrosObras .owl-slidenuestrasObras .item figure .capa {
      position: absolute;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5970763305) 100%);
      top: 0;
      right: 0;
      width: 100%;
      height: 100%; }
    .nuestrosObras .owl-slidenuestrasObras .item figure img {
      display: block;
      height: 450px;
      object-fit: cover; }
    .nuestrosObras .owl-slidenuestrasObras .item figure p {
      position: absolute;
      bottom: 0;
      left: 0;
      color: #ffffff;
      padding: 20px; }
  .nuestrosObras .owl-slidenuestrasObras .center figure {
    transform: scale(1); }
  .nuestrosObras .owl-slidenuestrasObras .owl-dots button span {
    background: #AAAAAA !important;
    border: initial;
    width: 45px !important;
    height: 4px !important; }
  .nuestrosObras .owl-slidenuestrasObras .owl-dots button.active span {
    border: initial; }

/*--------------------*/
/*--- SECCION TESTIMONIOS ---*/
.testimonio .content-editor h2 {
  color: #FBC98C;
  font-size: 2.5rem;
  margin-top: 0.8rem;
  margin-bottom: 1.5rem; }
.testimonio .flechas-slidetestimonios {
  margin-top: 1.5rem; }
.testimonio__box {
  padding: 2.2rem;
  box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.25);
  margin: 2.2rem;
  border-radius: 20px; }
  .testimonio__box .img-comillas {
    width: 50px !important;
    margin-bottom: 1rem; }
.testimonio__informacion {
  margin-bottom: 2.2rem; }
.testimonio__avatar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #D4D4D4; }
  .testimonio__avatar img {
    width: 60px !important;
    border-radius: 100%; }
.testimonio__nombre h2 {
  font-size: 18px; }
.testimonio .slider_nav button {
  border: 1px solid #FBC98C;
  cursor: pointer; }
  .testimonio .slider_nav button i {
    color: #FBC98C; }
  .testimonio .slider_nav button:hover {
    background-color: #FBC98C; }
    .testimonio .slider_nav button:hover i {
      color: #FFFFFF; }
.testimonio .owl-slideTestimonios {
  position: relative; }
  .testimonio .owl-slideTestimonios .owl-dots {
    margin: 0 !important;
    display: grid;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(70%, -50%); }
    .testimonio .owl-slideTestimonios .owl-dots button {
      margin: 0 !important; }
      .testimonio .owl-slideTestimonios .owl-dots button span {
        background: #AAAAAA !important;
        border: initial;
        width: 4px !important;
        height: 30px !important; }
      .testimonio .owl-slideTestimonios .owl-dots button.active span {
        border: initial; }

/*--------------------*/
/*--- TERMINOS Y CONDICIONES ---*/
.bannerpage {
  background-position: top;
  background-size: cover;
  position: relative; }
  .bannerpage__titulo {
    position: relative;
    padding: 6rem 0;
    text-align: center; }
    .bannerpage__titulo h2 {
      font-size: 30px;
      color: #ffffff; }

.capabannerpage {
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.5970763305) 100%);
  top: 0;
  right: 0;
  width: 100%;
  height: 100%; }

.terminocondiciones .content-editor h1, .terminocondiciones .content-editor h2 {
  font-size: 25px;
  margin-top: 1.5rem; }
.terminocondiciones .content-editor h1, .terminocondiciones .content-editor h2, .terminocondiciones .content-editor h3, .terminocondiciones .content-editor h4 {
  color: #FBC98C; }

/*--------------------*/
/*--- FOOTER ---*/
.footer {
  background-color: #1C3A5E;
  color: #ffffff;
  padding: 2.8rem 0; }
  .footer h2 {
    margin-bottom: 1.2rem;
    font-size: 22px; }
  .footer__logos {
    margin-bottom: 1rem; }
    .footer__logos img {
      width: 170px; }
  .footer__redes ul {
    display: flex;
    gap: 1.2rem; }
    .footer__redes ul li {
    background: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
    .footer__redes ul li a {
      display: block;
    color: #1c3a5e;
    font-size: 20px; }
  .footer__info ul, .footer__contacto ul {
    display: grid;
    gap: 12px; }
    .footer__info ul li a, .footer__contacto ul li a {
      color: #ffffff; }
  .footer__contacto ul li {
    display: flex;
    align-items: center;
    gap: 10px; }
    .footer__contacto ul li img {
      width: 25px; }

.content-center {
  display: grid;
  justify-content: center; }

.content-end {
  display: grid;
  justify-content: end; }

.informacion-final {
  background-color: #274467;
  padding: 1rem 0; }
  .informacion-final .content-informacion-final {
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    flex-wrap: wrap;
    gap: 1rem; }
    .informacion-final .content-informacion-final ul {
      display: flex;
      gap: 1.2rem; }
      .informacion-final .content-informacion-final ul li a {
        color: #ffffff;
        text-decoration: underline; }

/*--------------------*/
#botonSubmit:enabled, #botonSubmit2:enabled {
  background-color: #FBC98C; }

#botonSubmit, #botonSubmit2 {
  background-color: gray;
  color: white; }

.mapaUbicacion__videoMapa p, .mapaUbicacion__videoMapa a {
  font-size: 20px; }
  
  
  .logo-cuotas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
        gap: 3.5rem;
    }
    
    

.tags ul li {
    background: #FBC98C;
    padding: 5px 1.5rem;
    color: #1C3A5E;
    border-radius: 8px;
    font-weight: bold;
}
.tags ul li:nth-child(2n + 1) {
    background-color: #1C3A5E;
    color: #ffffff;
}

.tags ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cuotas {
    position: relative;
    background: #1c3a5e;
    color: #ffffff;
    border-radius: 10px;
}

.triangulo{
    position: absolute;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-right: 25px solid #1c3a5e;
    border-bottom: 30px solid transparent;
    left: -25px;
    top: 63%;
    transform: translate(0, -50%);
}

.cuotas h4 {
    background: #fbc98c;
    color: #1c3a5e;
    padding: 8px 1rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}

.cuotas_descuento strong {
    font-size: 2rem;
}

.cuotas .cuotas_descuento {
    padding: 15px 1rem;
    text-align: center;
}

.descripcion-downfile a {
    border: 1px solid #1c3a5e;
    padding: 8px 1.2rem;
    display: inline-block;
    border-radius: 5px;
    color: #1c3a5e;
    font-weight: bold;
}

.descripcion-downfile a:hover {
    background: #1c3a5e;
    color: #ffffff;
}

.descripcion-downfile a i{
    font-size: 20px;
    margin-right: 10px;
    font-weight: initial;
}

.mapa-iframe iframe {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
}

.lista__mapaProyecto {
    display: grid;
    gap: 1.8rem;
}

.mapaProyecto__item h2 {
    color: #1c3a5e;
    margin-bottom: .5rem;
}

.content-descuento {
    background: #FEF1E2;
    text-align: center;
    padding: 2.2rem;
    border-radius: 20px;
}

.head__descuento h2 {
    margin: 0;
}

.head__descuento {
    margin-bottom: 1rem;
}

.head__descuento h3 {
    background: #1c3a5e;
    display: inline-block;
    border-radius: 10px;
}

.head__descuento h3 strong {
    color: #FBC98C;
}

.body__descuento span {
    position: absolute;
    background: #ffffff;
    padding: 5px 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    border: 1px solid #fbc98c;
    top: -15px;
    left: 50%;
    transform: translate(-50%, 0px);
}
.body__descuento {
    background: #FBC98C;
    position: relative;
    display: inline-block;
    padding: 20px 3.5rem 10px;
    border-radius: 8px;
    color: #1c3a5e;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer__descuento p {
    text-align: left;
    font-size: 12px;
}

.respaldo__elpino img {
    margin: 1rem 0;
}

li.respaldo__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

li.respaldo__item img {
    background: #fbc98c;
    padding: .8rem;
    width: 62px;
    border-radius: 5px;
}

li.respaldo__item h2 {
    display: grid;
    color: #1c3a5e;
}

.footer__info a {
    color: #ffffff;
}
.footer__info {
    text-align: center;
}

.content-informacion-final a {
    text-decoration: underline;
    color: #ffffff;
}

.galeriaimagenes .content-editor h2{
    color: #FBC98C;
}

.tabs-item-btn {
    display: flex;
    justify-content: center;
}

.galeriaimagenes {
  padding: 5.2rem 0;
  background: #1c3a5e;}
  .galeriaimagenes .tabs ul {
        display: flex;
    margin-bottom: 2.2rem;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px; }
    .galeriaimagenes .tabs ul li button {
      background: #ffffff;
      padding: 0.50rem 3.2rem;
      /*box-shadow: 0px 4px 4px rgba(171, 190, 209, 0.25);*/
      border: none;
      border-radius: 50px;
      font-size: 18px;
      font-weight: bold; }
    .galeriaimagenes .tabs ul li#active button {
      background: #FBC98C; }
      .galeriaimagenes .tabs ul li#active button span {
        color: #1c3a5e; }
  .galeriaimagenes .owl-galeria .item {
    margin: 0 3.2rem; }
    .galeriaimagenes .owl-galeria .item img {
      width: auto;
      margin: auto;
      border-radius: 12px; 
height: 470px;}
  .galeriaimagenes .owl-galeria .owl-nav button {
    border-radius: 100% !important;
    background: #ff5c16 !important; }
    .galeriaimagenes .owl-galeria .owl-nav button i {
      color: #ffffff;
      font-size: 35px;
      font-weight: lighter; }
    .galeriaimagenes .owl-galeria .owl-nav button.owl-prev {
      margin-left: 5rem; }
    .galeriaimagenes .owl-galeria .owl-nav button.owl-next {
      margin-right: 5rem; }
  .galeriaimagenes .owl-galeria .owl-dots {
    margin-bottom: 1rem !important; }
    .galeriaimagenes .owl-galeria .owl-dots button {
      margin: 0 0.2rem; }
      .galeriaimagenes .owl-galeria .owl-dots button.active span {
        background-color: #ff5c16 !important; }
      .galeriaimagenes .owl-galeria .owl-dots button span {
        background: #ffffff !important;
        width: 15px !important;
        height: 15px !important;
        margin: 0 !important; }
        
        .owl-galeria-video .item img, .owl-galeria-imagen .item img {
    width: 100%;
    border-radius: 10px;
    position: relative;
    display: block;
}

.owl-galeria-video .owl-nav button, .owl-galeria-imagen .owl-nav button {
    position: absolute;
    background: #FBC98C !important;
    border-radius: 50px !important;
    width: 40px;
    height: 40px;
}

.owl-galeria-video .owl-nav button.owl-prev, .owl-galeria-imagen .owl-nav button.owl-prev {
    left: -20px;
}

.owl-galeria-video .owl-nav button.owl-next, .owl-galeria-imagen .owl-nav button.owl-next  {
       right: -20px;
}

.owl-galeria-video .owl-nav button i, .owl-galeria-imagen .owl-nav button i{
    font-size: 3.2rem;
}

.owl-galeria-video .owl-dots .owl-dot.active span, .owl-galeria-video .owl-dots .owl-dot:hover span, .owl-galeria-imagen .owl-dots .owl-dot.active span, .owl-galeria-imagen .owl-dots .owl-dot:hover span {
    background: #1c3a5e !important;
    border: 3px solid #1c3a5e;
}   

.owl-galeria-video .owl-dots .owl-dot span {
    width: 15px !important;
    height: 15px !important;
}

.owl-galeria-video .owl-nav button:hover, .owl-galeria-imagen .owl-nav button:hover {
    background: #FBC98C !important;
    color: #ffffff !important;
}

.notafinal {
    background: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.2rem;
}
.notafinal .content-editor h2 {
    font-size: 2rem;
    margin: 0;
}

.notafinal a {
    background: #1c3a5e;
    color: #ffffff;
    padding: .8rem 3.5rem;
    border-radius: 5px;
}

.owl-galeria-video .item a .capa {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(66, 66, 66, 0.45);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.owl-galeria-video .item a .capa i {
    font-size: 2.2rem;
    padding: 1.2rem;
    background: #ffffff;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    color: #1c3a5e;
}

.owl-galeria-video .item a{
    position: relative;
}

.hide{
	display: none;
}

/*# sourceMappingURL=style.css.map */
