/*         font-family: 'Montserrat', sans-serif; */

*{
    margin: 0;
    padding: 0;
}
main{
  scroll-behavior: smooth;
}

section[id]{
  scroll-margin-top: 1rem;
}
*, 
*::before,
*::after
{
  box-sizing: border-box;
}
main 
{
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}



/* ----------------------------- NAVBAR ----------------------------- */


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}
.lead { font-size: 1.5rem; font-weight: 300; }

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


/*--====== Sidebar ======--*/
.logo_sidebar{
  background-color: #FEFEFE;
  width: 100%;
  height: 5rem;

  padding: 2rem;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.36);
}
.logo_sidebar img{
  height: 4rem;
}
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    max-width: 350px;
    width: 80%;
    height: 100vh;
    padding: 2rem;
    background-color:#ccb46ceb;
    box-shadow: 0 10px 20px -4px #000;
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 0.3s ease, visibility 0.2s ease, transform 0.3s ease;
    font-weight: 600;
  }
#sidebar a{
  width: 90%;
}
#sidebar img{
  width: 85%;
  margin-left: 3.5rem;
}

/* when the sidebar has 'show' class */
#sidebar.show {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sidebar_content {
  margin-top: 1rem;
    padding: 1.5rem 0;
    pointer-events: none;
    /* so that the Sidebar does not get closed while clicking on sidebar_content */
}

.sidebar_content a {
    pointer-events: all;
    /* so that all the <a> inside sidebar_content are clickable */
}

.sidebar_body {
    border-top: 1px dashed var(--text-color);
    border-bottom: 1px dashed var(--text-color);
}

.side_navlinks ul {
    display: grid;
    gap: 3rem;
}

.side_navlinks li a {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  font-size: 1.3em;
}

.side_navlinks a:hover {
    opacity: 1;
    color: #646464;
}

/*---- Sidebar-Toggler ----*/
.sidebar_toggler {
    position: fixed;
    padding: 1.5rem;
    top: 0vh;
    left: 0vw;
    width: 5rem;
    height: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;
    background-color: #00000000;
    z-index: 9999999999;
}

.sidebar_toggler span {
    background-color:#ccb46ceb;
    width: 100%;
    height: 2.4px;
    transition: all 0.3s ease;
    pointer-events: none;
    /* so that it doesn't overlap the sidebar_toggler */
}

/* if the sidebar has 'show' class then their adjacent-sibling (i.e., sidebar_toggler) will... */
#sidebar.show + .sidebar_toggler {
    justify-content: center;
}

#sidebar.show + .sidebar_toggler span {
    margin-top: -1.2px;
    margin-bottom: -1.2px;
}

#sidebar.show + .sidebar_toggler span:first-child {
    transform: rotate(45deg);
}

#sidebar.show + .sidebar_toggler span:nth-child(2) {
    opacity: 0;
    transform: translateX(-100%);
}

#sidebar.show + .sidebar_toggler span:last-child {
    transform: rotate(-45deg);
}

.sidebar_foot{
  margin-top: 9rem;
}

/* ----------------------------- SECCION FOOTER ----------------------------- */

.seccion_footer{
  display: flex;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  padding: 2rem 3rem 2rem;
}
.footer_logo{
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_logo img{
  height: 4rem;

}
#logos_chicos{
  height: 3.1rem;
  margin-left: 4rem;
}
.footer_links{
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align:right;


}
.linea_vertical_footer{
  height: 1rem;
  width: 1.5px;
  background-color: black;
}

.footer_links a{
  margin-right: 1rem;
  margin-left: 1rem;
}

.footer_links a h4{
  font-weight:normal;
  font-size: 1.1rem;
  line-height: 1.8rem;
}

.linea_y_logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.linea_laga{
  height: 1.5px;
  background-color: #777777;
  width: 80%;
  margin-bottom: 1rem;
}
.linea_y_logo img{
  width: 15rem;
  margin-bottom: 1rem;
}
/* No display desktop */

.no_display_desk{
  display: none;
}

/* Boton Wpp */

        /* Inicio - Boton wpp */
        .btn_wsp{
          position:fixed;
          width:60px;
          height:60px;
          line-height: 63px;
          bottom:25px;
          right:25px;
          background:#25d366;
          color:#FFF;
          border-radius:50px;
          text-align:center;
          font-size:35px;
          box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
          z-index:100;
          transition: all 300ms ease;
          transform: translateY(00px);

          display: flex;
          justify-content: center;
          align-items: center;
      }
  
      .btn_wsp-on {
          transform: translateY(0px);
      }
  
      .btn_wsp:hover{
          background: #20ba5a;
      }

      .icono{
        height: 4rem;
      }


      /* Fin - Boton wpp */

  /* ----------------------------- AVANCES DE OBRA ----------------------------- */

  .titulo_AvanceDeObra{
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    letter-spacing: .4rem;
    padding: .5rem;
  }
  /* donde se ve la foto */ 
.galeria{
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px;
  justify-content: center;

  flex: 30%;
  max-width: 100%;
  padding: 0 px;
}

.galeria img{
  margin-top: 1rem;
  vertical-align: middle;
  width: 32%;
  margin: .2rem;
  transition: all .3s ease;
}
.galeria img:hover{
  cursor: pointer;
  box-shadow: 0 0 10px #000000;
  transform: scale(1.01);
}
.overlay{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .7s ease;
  visibility: hidden;
  opacity: 0;

  margin-top: 2rem;
}
.overlay .slideshow{
  width: 80%;
  height: 85%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  position: relative;
  display: flex;
  justify-content: center;
}
.slideshow img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.btn_cerrar{
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 35px;
  background-color: rgba(0, 0, 0, .7);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: all .2s ease;
}
.btn_cerrar:hover{
  transform: scale(1.2);
  cursor: pointer;
}
.botones{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: rgb(53, 53, 53);
}
.botones:hover > .material-symbols-outlined{
  transform: scale(1.5);
  transition: all .2s ease;
}
.atras{
  left: -80px;
}
.adelante{
  right: -80px;
}
.mdi{
  pointer-events: none;
  transition: all .2s ease;

}

/* galeria de fotos - Pagina principal */

.no_display_en_desk{
  display: none;
}

































      

/* -------------------------------- 1920x1080 ----------------------*/

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

  section[id]{
    scroll-margin-top: 9vh;
  }

  .parallax::after{
  transform: translateZ(-1px) scale(1.62);
  }

  #inicio::after{
  background-position: 0px -250px;
  }

  .logo_sidebar{
    height: 3rem;
  }
  .logo_sidebar img{
    height: 3rem;
  }
  .sidebar_toggler {
    width: 4rem;
    height: 4rem; 
    padding: 1rem;
  }

  .seccion_nosotros div > h4{
    width: 30%;
    text-align: justify;
    font-size: 1.2em;
    font-weight: 100;
    color: #646464;
  }
  /* ----------------------------- SECCION FOOTER ----------------------------- */

  .footer_links a h4{
    font-size: .9em;
  }

  /* Boton Wpp */

  .icono{
    height: 4rem;
  }
}








































































































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

/* ----------------------------------------------------- CONFIG. PARALLAX ----------------------------------------------------- */

.parallax::after 
{
  transform: translateZ(-1px) scale(1.7);
}
.sidebar_toggler{
  padding: 1.8rem;
}

/* ----------------------------- NAVBAR ----------------------------- */

.sidebar_toggler {
  width: 4rem;
  height: 4rem;
  padding: 1em;
}
#sidebar {
  max-width: 300px;
  width: 70%;
  font-size: .9rem;
  height: 100%;
}
.sidebar_content {
  margin-top: 0rem;
    padding: 2rem 0;
}
.sidebar_foot{
  margin-top: 0rem;
  padding: 0;
}
.logo_sidebar{
  width: 100%;
  height: 4rem;
}
.logo_sidebar img{
  height: 2.5rem;
}
/* ----------------------------- SECCION HOME ----------------------------- */

.seccion_home{
  height: 90vh;
  position: relative;
}
#inicio::after{
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../imagenes/img_home/11.\ EXTERIOR\ 4\ copia\ vertical2\ copia.jpg);
  background-size:cover;
  background-position: 10px -80px;
}
.seccion_home img{
  width: 80%;
  position: absolute;
  top: 3rem;
}

#preventa_img_home{
top: 20.5rem;
width: 50%;
height: auto;
}

/* ----------------------------- SECCION NOSOTROS ----------------------------- */

.seccion_nosotros div{
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.seccion_nosotros h2{
  font-size: 2em;
}
.seccion_nosotros h3{
  font-size: 1.2rem;
  font-weight: 500;
}
.seccion_nosotros div > h4{
  width: 80%;
  font-size: .9em;
  margin-bottom: 1.5rem;
}

/* Nosotros desplegable */

.nosotros_info{
  font-size: 1em;
}
.seccion_nosotros1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0rem;
}
.seccion_nosotros1 p{
  width: 90%;
  height: auto;
}
.seccion_nosotros2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.seccion_nosotros2 > div{
  width: 90%;
  justify-content: center;
  padding: 0;
  margin-top: 2rem;
}
.seccion_nosotros3{
  margin-bottom: 2rem;
}
.seccion_nosotros3 h3{
  margin-top: 2rem;
}
.seccion_nosotros3_1 > div{
  flex-direction: column;
  align-items: center;
}
.inside_div{
  width: 90%;
  height: auto;
}
.inside_div > h4{
  margin-top: 2rem;
}
.inside_div > p{
  height: auto;
  line-height: 1.3rem;
}
/* ----------------------------- SECCION QUE HACEMOS ----------------------------- */

.seccion_que_hacemos h2{
  font-size: 2rem;
}
.cont_qh{
  height: auto;
}
.cont_qh_titulos{
  height: auto;
}
.qh_secciones{
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.qh_seccion{
  width: 80%;
  margin-bottom: 4rem;
}
.qh_seccion h4{
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-size: 1rem;
}
.qh_seccion h5{
  font-size: .9em;
  margin-bottom: 1rem;
}
#h4_bajar{
  margin-bottom: 2rem;
}
.qh_seccion h6{
  margin-bottom: 2rem;

}
.cont_qh{
  height: 80%;
}
.contenedor_numeros{
  width: 3rem;
  height: 3rem;
}

/* ----------------------------- SECCION DESARROLLOS ----------------------------- */

.seccion_desarrollos h2{
  font-size: 2em;
  margin-bottom: 0;
}
.img1{
  margin-top: 2rem;
  width: 80%;
}
.img2{
  width: 20%;
  margin-top: 1rem;
}
.seccion_desarrollos_img{
  flex-direction: column;
  align-items: center;
  background-color: #EFE8D4;
  margin-bottom: 0;
  margin-top: 1rem;
}
.img_preventa{
  width: 100%;
}
.seccion_desarrollos_preventa{
  width: 100%;
}
.botones_desarrollo{
  margin-bottom: 0rem;
}
.seccion_desarrollos_preventa h5{
  margin-bottom: 2rem;
}
.botones_desarrollo{
  width: 90%;
}

#boton_informacion_a{
  width: 90%;
}
.bajar_boton_info1{
  margin-bottom: 3rem;
}

#duplex{
  margin-bottom: 2rem;
  margin-top: 2rem;

  font-size: 3em;
  font-weight: 100;
  text-align: center;
}
#imagen_duplex{
  margin-bottom: 2rem;
}

#vlem{
  margin-bottom: 2rem;
  margin-top: 2rem;

  font-size: 2.5em;
  font-weight: 100;
  text-align: center;
}
#img_vlem{
  margin-bottom: 2rem;
}

.columna{
  flex: 100%;
  max-width: 100%;
}
.columna img{
  width: 100%;
}

#ocultar_galeria_charpenterie{
  height: auto;
}
#ocultar_galeria_2{
  height: auto;
}
#ocultar_galeria_3{
  height: auto;
}

/* Toda la boludez de la barra esa que se llena */
.contenedor_barra_desplegable{
  height: 2rem;
  margin-bottom: 1rem;
}

.contenedor_barra_desplegable h3{
  font-size: .7em;
  font-weight: bold;
}

.barra_llenable{
  height: 2rem;
}

.barra_llenable img{
  height: 2rem;
}

      /* Bajar los ultimos dos desarrollos ya que le sacamos las barras rellenables que poseen un margin botton */

      .bajar_por_no_tener_la_barra_rellenable{
        margin-bottom: 1rem;
      }


/* ----------------------------- SECCION CONTACTO ----------------------------- */

.seccion_formulario{
  margin-top: 2rem;
}

.seccion_formulario h2{
  font-size: 2em;
}

.input_group{
  flex-direction: column;
  align-items: center;
}

.form_datos{
  width: 80%;
}

.form_mensaje{
  width: 80%;
}

/* ----------------------------- SECCION FOOTER ----------------------------- */

.seccion_footer{
  flex-direction: column;
}
.footer_logo{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap:wrap;
}
.footer_logo img{
  width: 15rem;
}
#logos_chicos{
  width: 8rem;
  margin: 0;
  margin-left: .5rem;
}
.footer_links{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-left: 0rem;
  margin-top: 2rem;
}
.footer_links a h4{
  font-size: .7rem;
  line-height: 1rem;
  font-weight: bolder;
}
.linea_y_logo img{
  width: 10rem;
  margin-bottom: 1rem;
}
.linea_laga{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.no_display_en_mobile{
  display: none;
}
.display_en_mobile{
  display: block;
}

/* Boton Wpp */

        /* Inicio - Boton wpp */
        .btn_wsp{
          position:fixed;
          width:50px;
          height:50px;
          line-height: 63px;
          bottom:15px;
          right:15px;
          background:#25d366;
          color:#FFF;
          border-radius:50px;
          text-align:center;
          font-size:35px;
          box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
          z-index:100;
          transition: all 300ms ease;
          transform: translateY(00px);
      }
}
