

  @font-face {
    font-family: 'Less-Light';
    src: url('../fonts/Less-Light.otf') format('opentype');
         font-weight: 300;
         font-display: swap;
         font-style: normal;
  }

  @font-face {
    font-family: 'Less';
    src: url('../fonts/Less.otf') format('opentype');
         font-weight: 400;
         font-display: swap;
         font-style: normal;
  }

  @font-face {
    font-family: 'Less-Bold';
    src: url('../fonts/Less-Bold.otf') format('opentype');
         font-weight: 700;
         font-display: swap;
         font-style: normal;
  }

  :root{
    --index: calc( 1vw + 1vh);
    --gutter: 30px;
    --side-small: 26;
    --side-big:36;
    --depth: 4000px;
    --transition: .75s cubic-bezier(0.075, 0.500, 0.000, 1.000);
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #F5F5F5;
}

.text-justify{
    text-align: justify !important;
}


/*INICIO HEADER*/

nav{
    width: 100%;
    height: 10vh;
    background-color: #252525;
    display: flex;
    padding: 0% 6%;
    position: fixed;
    z-index: 3;
}


nav .logo{
    width: 40%;
    
    padding: 5px 0px;
    position: relative;
    display: flex;
    align-items: center;
}



nav .logo a{
    width: 70%;

}



.logo img{
    object-fit: cover;
    height: 100%;
}

nav .content-menu{
    width: 60%;

}

.content-menu ul{ 
    display: flex;
    color: white;
   
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.content-menu ul li{ 
  
    /*font-size: 12px;*/
    font-size: calc(var(--index) * 0.531);
    text-transform: uppercase;
    list-style: none;
    width: 18%;
    text-align: center;
   
}

.content-menu ul li a{ 
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
}

.contactanos{
    margin-left: 2%;
}


.menu-btn{
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 100%;
    cursor: pointer;
    transition: all .5s ease-in-out;
    z-index: 3;
}

.menu-btn_burger{
    width: 35px;
    height: 2px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
    transition: all 0.1s ease-in-out;
}

.menu-btn_burger::before,
.menu-btn_burger::after{
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
    transition: all 0.5s ease-in-out;
}

.menu-btn_burger::before{
    transform: translateY(-16px);
}

.menu-btn_burger::after{
    transform: translateY(16px);
}

/*ANIMATION*/

.menu-btn.open .menu-btn_burger  {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
}

.menu-btn.open .menu-btn_burger::before  {
    transform: rotate(45deg) translate(35px, -35px);
}

.menu-btn.open .menu-btn_burger::after  {
    transform: rotate(-45deg) translate(35px, 35px);
}

.mobile-menu{
    display: none;
    background-color: rgba(25, 25, 25, 0.95);
    width: 100%;
    height: 40vh;
    z-index: 110;
    position: fixed;
    top: 10vh;
    transition: 0.3s all ease-in;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.mobile-menu ul{
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    list-style: none;
    padding: 10px 10px;
}

.mobile-menu ul li { 

    /*font-size: 12px;*/
    font-size: calc(var(--index) * 1.585);
    text-transform: uppercase;
    list-style: none;
}


.mobile-menu ul li a{ 
    color: white;
    text-decoration: none;
    
}

.mobile-contact{
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.mb-datos{
    width: 80%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
    text-align: center;

    font-size: 14px; font-size: calc(var(--index) * 1.134);
    
}

.mb-redes{
    width: 80%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.m-redes{
    width: 25%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.m-redes img{
    height: 30px;
    object-fit: cover;
}

.mb-logo{
    width: 80%;
    height: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 8%;
}

.mb-img-logo{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mb-img-logo img{
    height: 80%;
    object-fit: cover;
}

.mb-copy{
    padding-left: 10px;
    padding-right: 10px;
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

    font-size: 26px; font-size: calc(var(--index) * 1.1505);
    text-align: center;
    margin-top: 5%;
}

.show-m{
    display: block;
}

.hide-m{
    display: none;
}

@media only screen and (max-width: 1920px ) and (min-width: 1366px ) {


    nav .logo a{
        height: 85%;
    }
}

@media only screen and (max-width: 1365px ) and (min-width: 1025px ) {
    nav .content-menu{
        width: 70%;
    }
    .content-menu ul li{ 
        width: 25%;
    }

    nav .logo a{
        height: 85%;
    }


}


@media only screen and (max-width: 1024px ) and (min-width: 667px ) {
    nav .logo a{
        height: 85%;
    }
}


@media only screen and (min-width: 500px ) and (orientation: portrait){

    nav .content-menu{
        width: 70%;
    }
    .content-menu ul li{ 
        width: 25%;
    }
}

@media only screen and (max-width: 668px) {

    .menu-btn{

        display: flex;
    }

    .logo img{
        height: 48px;
    }

    .content-menu{
        display: none;
    }

    nav .logo{
        width: 100%;
        padding: 5px 0px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

}



/*FIN HEADER*/



/***************************************************INICIO HOME*/

.banner-home{
    width: 100%;
    height: 110vh;
    position: relative;
    overflow: hidden;
   display: flex;
   align-items: center;
   
  
   /*
   background-image: url(../img/banner_home.webp);
   background-repeat: no-repeat;
background-position: center center;
   background-size:100% 115%;
   background-attachment: fixed;*/
}

.bg-img-home{
    position: absolute;
    
    width: 100%;
    height: 100%;
}

.bg-img-home img{
    object-fit:fill;
   height: 100%;
    width: 100%;
}

.container-hero{
    height: 100%;
    width: 75%;
    z-index: 2;
    display: flex;

    justify-content: center;
    flex-direction: column;
    color: white;
    padding-left: 6%;

}

.container-hero h1{
    
    /*font-size: 70px;*/
    font-size: calc(var(--index) * 3.07);
    letter-spacing: 18px;
}

.container-hero p{
   
    font-weight: 400;
    /*font-size: 20px;*/
    font-size: calc(var(--index) * 0.885);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.bg-op{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    transition: 0.4s all ease-in-out;
}


/*Home Servicios | Home Consultoria*/

.home-servicios{
    margin-top:4%;
}

.home-servicios, .home-consultoria{
    width: 100%;
    height: 95vh;
    padding-left: 8%;
    padding-right: 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20vh;
}

.container-servicios,.container-consultoria{
    width: 100%;
    height: 90%;
    background-color: rgba(127, 127, 127, 0.05);

    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px -3px, rgba(0, 0, 0, 0.05) 0px 4px 10px -2px;
    display: flex;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.container-consultoria{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.container-servicios .col-texto,.container-consultoria .col-texto{
    height: 100%;
    width: 35%;
    padding-left: 4%;
    padding-right: 4%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.container-servicios .col-img, .container-consultoria .col-img{
    height: 100%;
    width: 65%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.container-servicios .col-img img,.container-consultoria .col-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.container-consultoria .col-img img{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.col-texto .servicios-title{
    font-size: 26px; font-size: calc(var(--index) * 1.1505);
    font-family: 'Less-Light';
    letter-spacing: 2px;
    height: 30%;
    display: flex;
    align-items: center;

}

.col-texto .servicios-contain{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 70%;

}

.servicios-contain-1,.servicios-contain-2{
    display: flex;
    flex-direction: column;

}

.servicios-contain-1{
    margin-bottom: 8%;
}

.servicios-contain-title{
    font-size: 30px; font-size: calc(var(--index) * 1.3275);
    font-size: 28px; font-size: calc(var(--index) * 1.239);
    
    margin-bottom: 4%;
}

.servicios-contain-text{
    
}

.container-consultoria .col-texto .servicios-contain{
    height: 100%;
    justify-content: center;
}

.container-consultoria .col-texto .servicios-contain .servicios-contain-1{
    margin-bottom: 16%;
}

.container-home-obras{
    width: 100%;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8%;
    padding-right: 8%;
    margin-bottom: 4%;
}


/*Home Comercial*/
.home-habitacional{

    width: 100%;
    height: 65vh;
    position: relative;
    background-image: url(../img/image_obra_1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size:110%,200%;
    
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px -3px, rgba(0, 0, 0, 0.05) 0px 4px 10px -2px;
    border-radius: 10px;
}

.home-comercial{

    width: 100%;
    height: 65vh;
    position: relative;
    background-image: url(../img/image_obra_2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size:110%,200%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px -3px, rgba(0, 0, 0, 0.05) 0px 4px 10px -2px;
    border-radius: 10px;
}

.home-industrial{

    width: 100%;
    height: 65vh;
    position: relative;
    background-image: url(../img/image_obra_4.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size:110%,200%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px -3px, rgba(0, 0, 0, 0.05) 0px 4px 10px -2px;
    border-radius: 10px;
}
 .bg-op-2{
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.20);
    transition: 0.4s all ease-in-out;
    border-radius: 10px;
}

.content-obra{
    z-index: 2 !important;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;

}

.home-obra-subtitle{
    font-family: 'Less';
    font-size: 24px; font-size: calc(var(--index) * 1.062);
    margin-bottom: 2px;
    letter-spacing: 2px;
}

.home-obra-title{
    font-family: 'Less';
    font-size: 42px; font-size: calc(var(--index) * 1.8585);
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.home-obra-line{
    height: 2px;
    width: 25%;
    background-color: white;
    margin-bottom: 6px;
}

.home-obra-text{
    
    font-size: 20px; font-size: calc(var(--index) * 0.885);
    margin-top: 6px;
    margin-bottom: 6px;
}

.home-obra-boton{
    margin-top: 2%;
}

.home-obra-boton button{
    background-color: transparent;
    border: none;
}

/*Home Menssaje*/
.home-msg{
    width: 100%;
    height: 30vh;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align:center !important;
}

.msg-text{
    width: 70%;
    height: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 42px; font-size: calc(var(--index) * 1.4585);
    text-align: center;
    letter-spacing: 2px;

}

.msg{
    width: 100%;
}

.msg-empresa{
    margin-top: 2%;
    width: 100%;
    
    font-size: 42px; font-size: calc(var(--index) * 0.9585);

    display: flex;
    justify-content: space-between;
}

.msg-insta-desktop{
    display: block;
}

.msg-insta-desktop img{
    height: 40px;
    width: 40px;
}

.text-instagram{
    width: 70%;
    height: 10%;  
    display: none;
}

.text-instagram a{
    height: 100%;

}

.text-instagram a img{
    height: 100%;
}

.bg-img-home-mobile{
    display: none;
}

@media only screen and (min-width: 500px ) and (orientation: portrait){

    .banner-home{
        height: 60vh;
    }

    .container-hero h1{
        font-size: 65px; font-size: calc(var(--index) * 2.8762);
    }

    .container-hero p{
        font-size: 16px; font-size: calc(var(--index) * 0.708);
    }

    .home-servicios, .home-consultoria{
        height: 50vh;
        padding-left: 4%;
        padding-right: 4%;
    }

    .home-servicios{
        margin-bottom: 3vh;
    }

    .home-consultoria{
        margin-bottom: 10vh;
    }

    .container-home-obras{
        height: 35vh;
    }

    .container-servicios .col-texto,.container-consultoria .col-texto{
        width: 62%;
    }

    .container-servicios .col-img, .container-consultoria .col-img{
        width: 38%;
    }

    .home-habitacional, .home-comercial, .home-industrial{
        height: 34vh;

    }

    .home-msg{
        height: 30vh;
    }

    .msg-text{
        
font-size: 36px; font-size: calc(var(--index) * 1.593);
    }
}


@media only screen and (max-width: 668px) {

    .banner-home{
        /*
        height: 95vh;
        background-image: url(../img/valiz-mobile2x.webp);
        background-repeat: no-repeat;
        background-position: center center;
        background-size:cover;
        background-attachment: fixed;
*/
    }

    .bg-img-home-mobile{
        display: block;
        position: absolute;
        
        width: 100%;
        height: 100%;
    }
    
    .bg-img-home-mobile img{
        object-fit:cover;
       height: 100%;
        width: 100%;
    }

    .bg-img-home {
        display: none;
    }

    .container-hero{
        width: 100%;
        justify-content: center;
        padding-left: 4%;
        padding-right: 4%;
    }

    .container-hero h1{
        text-align: center;
        font-size: 64px; font-size: calc(var(--index) * 5.184);
        margin-bottom: 10%;
        letter-spacing: 12px;
        

    }

    .container-hero p{
        
        text-align: center;
        letter-spacing: 4px;
        font-size: 14px; font-size: calc(var(--index) * 1.134);
    }

  

    .home-servicios, .home-consultoria{
        padding-left: 4%;
        padding-right: 4%;
        height: 100vh;
        margin-bottom: 6vh;
    }

    .home-servicios{
        margin-bottom: 2vh !important;
    }

    .container-servicios,.container-consultoria{
        flex-direction: column;
    }

    .container-servicios .col-img img,.container-consultoria .col-img img{
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .container-servicios .col-texto,.container-consultoria .col-texto{
        width: 100%;
        height: 60%;
    }

    .container-servicios .col-img, .container-consultoria .col-img{
        width: 100%;
        height: 40%;
    }

    .container-consultoria{
    flex-direction: column-reverse;
    }


    .servicios-contain-title{
        font-size: 20px; font-size: calc(var(--index) * 1.62);
    }

    .servicios-contain-text{
        font-size: 16px; font-size: calc(var(--index) * 1.296);
        line-height: calc(var(--index) * 1.458);
        
    }

    .col-texto .servicios-title{
        height: 15%;
        font-size: 14px; font-size: calc(var(--index) * 1.134);
    }


    .container-home-obras{
        padding: 0px;
        height: 34vh;
        margin-bottom: 0%;
    }


    .home-industrial,.home-comercial,.home-habitacional{
        height: 34vh;
        background-size:cover;

        border-radius: 0px;
    }

    .home-obra-subtitle{
        font-size: 18px; font-size: calc(var(--index) * 1.458);
    }

    .home-obra-title{
        font-size: 30px; font-size: calc(var(--index) * 2.43);
    }

    .home-obra-text{
        text-align: center;
        width: 70%;
        font-size: 16px; font-size: calc(var(--index) * 1.296);
    }

    .home-obra-boton button img{
        width: 30px;
        height: 30px;
    }


    .home-msg{
        height: 35vh;
    }

    .msg-text{
        width: 90%;
        font-size: 24px; font-size: calc(var(--index) * 1.544);
        letter-spacing: 1px;
    }

    .text-instagram{
        justify-content: center;
        width: 90%;
    }

    .msg-insta-desktop{
        display: none;
    }

    .msg-empresa{
        margin-top: 5%;
        justify-content: end;
    }

    .text-instagram{
        display: flex;
        margin-top: 5%;
    }
    
}


/***************************************************FIN  HOME*/








/***************************************************INICIO  PROYECTOS*/

.banner-proyectos{
    padding-top:10vh;
    width: 100%;
    height: 102vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container-banner-proyectos{
    width: 92%;
    height: 90%;
    background-image: url(../img/banner-proyectos.jpg);
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px -3px, rgba(0, 0, 0, 0.05) 0px 4px 10px -2px;
}

.bg-img-proyectos-mobile{
    display: none;
}

.bg-op-proyectos{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.12);
    transition: 0.4s all ease-in-out;
    border-radius: 20px;
}

.title-banner-proyectos{
     /*font-size: 70px;*/
     font-size: calc(var(--index) * 3.07);
     color: white;
     letter-spacing: 6px;
     z-index: 2;
     font-family: 'Less';
}

.banner-proyectos-text{
    position: absolute;
    z-index: 2;
    background-color: white;
    width: 40%;
    height: 15%;
    bottom: 0;
    right: 0;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 26px; font-size: calc(var(--index) * 1.1505);
}





.proyecto-habitacional{
    margin-top: 8%;
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
    min-height: 100vh;
}

.p-container-title-habitacional{
    background-color: #8F907E;
    width: 100%;
    height: 30vh;
    border-radius: 10px;
    display: flex;
}

.p-container-title-habitacional .col-1{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Less';
    font-size: 36px; font-size: calc(var(--index) * 1.585);
    letter-spacing: 2px;
}

.p-container-title-habitacional .col-2{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    display: flex;
    flex-direction: column;
}

.p-container-title-habitacional .col-2 .title{
    
    width: 75%;
    font-size: 22px; font-size: calc(var(--index) * 0.9735);
    margin-bottom: 2%;
}

.p-container-title-habitacional .col-2 .description{
    
    width: 75%;
    font-size: 17px; font-size: calc(var(--index) * 0.7522);
}

.p-container-proyectos{
    width: 100%;
    display: flex;
    margin-top: 4%;
    justify-content:  space-between;
    flex-wrap: wrap;
    
}

.p-proyecto{
    width: 49%;
    height: 370px;
    background-color: #525544;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 2%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px -3px, rgba(0, 0, 0, 0.05) 0px 4px 10px -2px;
    transition: 0.3s all ease-in;
}

.p-proyecto:hover .container-description, .p-proyecto:hover .container-description{
    height:100%;
    transition: 0.3s all ease-in;
}

 .p-proyecto:hover .p-short-description{
    display: flex;
    align-items: center;
    transition: 0.3s all ease-in;
    margin-top: 6%;
}

.p-proyecto:hover .p-logo{
    display: flex;
    transition: 0.3s all ease-in;
    display: none;
}

.container-description{
    width: 100%;
    height: 60px;
    display: flex;
}

.p-short-description{
    display: none;
    font-size: 16px; font-size: calc(var(--index) * 0.708);
    line-height: calc(var(--index) * 0.758);
    width: 80%;
    margin-top: 0%;
    
    min-height: 15%;

}

.p-logo{
    width: 90%;
    height: 20%;
    display: none;
    
    justify-content: end;
    align-items: center;
    margin-top: 2%;
    margin-bottom: 2%;


}

.content-description{
    height: 100%;
    width: 50%;
    background-color: rgba(255, 255,255, 0.80);
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
    letter-spacing: 0px;
    font-size: 22px; font-size: calc(var(--index) * 0.9735);
    word-spacing: 1px;

}

.p-proyecto:hover .content-description{
    justify-content: center;
}

.ph1{

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ph2{
    background-color: white;
}


.content-button{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5%;
}

.content-button button{
    border: none;
    background-color: transparent;
}

.p-container-title-habitacional.comercial{
    background-color: #525544;
}

.p-container-title-habitacional.industrial{
    background-color: #DADFDB;
  
}

.industrial .col-1, .industrial .col-2{
    color: #242424 !important;
}

.section-industrial{
    margin-bottom: 5%;
}

.p-btn-mobile{
        display: none;
}

@media only screen and (max-width: 1365px ) and (min-width: 1025px ) {

    .p-container-title-habitacional .col-2 .title{
        font-size: calc(var(--index)* 1.096);
    }

    .p-container-title-habitacional .col-2 .description{
        font-size: calc(var(--index)* 0.996);
        line-height: calc(var(--index) * 1.1505);
    }

    .content-description{
        width: 65%;
    }

    .p-short-description{
        font-size: calc(var(--index)* 0.896);
        line-height: calc(var(--index) * 0.955);
    }

}

@media only screen and (min-width: 500px ) and (orientation: portrait){
    .banner-proyectos{
        height: 65vh;
    }

    .proyecto-habitacional{
        min-height: 60vh;
    }

    .title-banner-proyectos{
        font-size: 65px; font-size: calc(var(--index) * 2.8762);
    }

    .banner-proyectos-text{
        width: 50%;
        font-size: 24px; font-size: calc(var(--index) * 1.062);
    }

    .p-container-title-habitacional{
        padding-left: 4%;
        padding-right: 4%;
        height: 23vh;
    }

    .p-container-title-habitacional .col-1{
        width: 40%;
    }

    .p-container-title-habitacional .col-2{
        width: 60%;
    }

    .p-proyecto{
        height: 250px;
    }

    .content-description{
        width: 70%;
    }

    .content-button{
        width: 30%;
    }
}


@media only screen and (max-width: 668px) {

    .banner-proyectos{
        height: 92vh;
    }

    .container-banner-proyectos{
        width: 100%;
        height: 100%;
        border-radius: 0px;
        /*
        background-image: url(../img/mobile_banner_p.webp);
        background-repeat: no-repeat;
        background-position: center center;
        background-size:cover;
        background-attachment: fixed;*/
        background: none;
    }

    .bg-img-proyectos-mobile{
        display: block;
        position: absolute;
        
        width: 100%;
        height: 100%;
    }
    
    .bg-img-proyectos-mobile img{
        object-fit:cover;
       height: 100%;
        width: 100%;
    }

    .bg-op-proyectos{
        border-radius: 0px;
    }

    .title-banner-proyectos{
        font-size: 38px; font-size: calc(var(--index) * 3.078);
    }

    .banner-proyectos-text{
        width: 100%;
        border-bottom-right-radius: 0px;
        border-top-left-radius: 0px;
        font-size: 20px; font-size: calc(var(--index) * 1.62);
    }

    .proyecto-habitacional{
        margin-top: 16%;
        padding-left: 0%;
        padding-right: 0%;
    }

    .p-container-title-habitacional{
        flex-direction: column;
        height: 36vh;
        align-items: center;
        border-radius: 0px;
    }

    .p-container-title-habitacional .col-1{
        width: 82%;
        height: 35%;

        font-size: 24px; font-size: calc(var(--index) * 1.944);
        align-items: end;
        padding-bottom: 2%;
        border-bottom: 2px solid white;
    }

    .p-container-title-habitacional .col-2{
        width: 100%;
        height: 65%;

    }

    .p-container-title-habitacional .col-2 .title{
        font-size: 18px; font-size: calc(var(--index) * 1.458);
        text-align: center;
        width: 82%;
    }

    .p-container-title-habitacional .col-2 .description{
        width: 82%;
        font-size: 16px; font-size: calc(var(--index) * 1.296);
        line-height: calc(var(--index) * 1.458);
    }

    .p-container-proyectos{
        padding-left: 4%;
        padding-right: 4%;
    }

    .p-proyecto{
        margin-top: 3%;
        width: 100%;
        height: 220px;
    }

    .container-description{
        width: 100%;
        height: 40px;
        display: flex;
    }
    
    .content-description{
        width: 100%;
        height: 100%;
        font-size: 18px; font-size: calc(var(--index) * 1.458);
        background-color: rgba(255, 255,255, 0.60);
      
    }

    .p-short-description{
        font-size: 14px; font-size: calc(var(--index) * 1.134);
        
        line-height: calc(var(--index) * 1.134);
        word-spacing: 1px;
        letter-spacing: 0px;
    }

    .content-button{
        display: none;
    }

    .p-logo{
        position: relative;
    }

    .p-btn-mobile{
        display: flex;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        align-items: center;
        justify-content: center;
    }

    .p-btn-mobile a img{
        height: 35px;
    }

    .p-proyecto:hover .p-logo{
        display: flex;
        transition: 0.3s all ease-in;
        margin-top: 5%;
    }

    .p-logo img  {
        height: 45px;
    }
}


/***************************************************FIN  PROYECTOS*/




/***************************************************INICIO GALERIA*/

.galeria{
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 10vh;
}

.galeria-title{
    /*font-size: 70px;*/
    font-size: calc(var(--index) * 3.07);
    letter-spacing: 6px;
    
}

.galeria-text{

    width: 100%;
    font-size: 24px; font-size: calc(var(--index) * 1.362);
    
    letter-spacing: 2px;

}

.container-galeria{
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
    min-height: 100vh;
    margin-bottom: 4%;
}

.grid-gallery{
    width: 100%;
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px,1fr));
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 30vh;
    grid-auto-flow: dense;
    grid-gap: 15px;
}

.grid-gallery .grid-item{
    position: relative;
    background-color: #efefef;
    overflow:hidden ;
}

.grid-gallery .grid-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-gallery .grid-item a{
    cursor: zoom-in;
}

.grid-gallery .grid-item:nth-child(1){
    grid-column:  span 1;
    grid-row:  span 3;
}

.grid-gallery .grid-item:nth-child(2){
    grid-column:  span 2;
    grid-row:  span 2;
}
.grid-gallery .grid-item:nth-child(3){
    grid-column:  span 2;
    grid-row:  span 2;
}
.grid-gallery .grid-item:nth-child(4){
    grid-column:  span 1;
    grid-row:  span 2;
}

.grid-gallery .grid-item:nth-child(5){
    grid-column:  span 2;
    grid-row:  span 3;
}
.grid-gallery .grid-item:nth-child(6){
    grid-column:  span 1;
    grid-row:  span 2;
}

.grid-gallery .grid-item:nth-child(7){
    grid-column:  span 2;
    grid-row:  span 2;
}

.grid-gallery .grid-item:nth-child(8){
    grid-column:  span 1;
    grid-row:  span 2;
}

.grid-gallery .grid-item:nth-child(9){
    grid-column:  span 2;
    grid-row:  span 2;
}
.grid-gallery .grid-item:nth-child(10){
    grid-column:  span 1;
    grid-row:  span 1;
}

.grid-gallery .grid-item:nth-child(11){
    grid-column:  span 1;
    grid-row:  span 1;
}

.grid-gallery .grid-item:nth-child(12){
    grid-column:  span 1;
    grid-row:  span 1;
}


@media only screen and (min-width: 500px ) and (orientation: portrait){

    .galeria{
        height: 40vh;
    }

    .galeria-title{
        font-size: 65px; font-size: calc(var(--index) * 2.8762);
    }

    .galeria-text{
        font-size: 20px; font-size: calc(var(--index) * 0.885);
    }


    .grid-gallery .grid-item:nth-child(1){
        grid-column:  span 2;
        grid-row:  span 2;
    }
    
    .grid-gallery .grid-item:nth-child(2){
        grid-column:  span 2;
        grid-row:  span 1;
    }
    .grid-gallery .grid-item:nth-child(3){
        grid-column:  span 1;
        grid-row:  span 1;
    }
    .grid-gallery .grid-item:nth-child(4){
        grid-column:  span 1;
        grid-row:  span 1;
    }
    
    .grid-gallery .grid-item:nth-child(5){
        grid-column:  span 2;
        grid-row:  span 2;
    }
    .grid-gallery .grid-item:nth-child(6){
        grid-column:  span 1;
        grid-row:  span 1;
    }
    
    .grid-gallery .grid-item:nth-child(7){
        grid-column:  span 1;
        grid-row:  span 1;
    }
    
    .grid-gallery .grid-item:nth-child(8){
        grid-column:  span 1;
        grid-row:  span 1;
    }
    
    .grid-gallery .grid-item:nth-child(9){
        grid-column:  span 3;
        grid-row:  span 1;
    }

    .grid-gallery .grid-item:nth-child(9){
        grid-column:  span 3;
        grid-row:  span 3;
    }

}

@media only screen and (max-width: 668px) {

    .galeria{
        height: 40vh;
    }

    .galeria-title{
        text-align: center;
        margin-bottom: 2%;
        font-size: 38px; font-size: calc(var(--index) * 3.078);
    }
    
    .galeria-text{
        text-align: center;
        font-size: 14px; font-size: calc(var(--index) * 1.134);
    }


    .grid-gallery{
        grid-template-columns: repeat(auto-fit, minmax(550px,1fr));
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: 30vh;
        grid-auto-flow: dense;
        grid-gap: 10px;
    }

    .grid-gallery .grid-item:nth-child(1){
        grid-column:  span 2;
        grid-row:  span 1;
    }
    
    .grid-gallery .grid-item:nth-child(2){
        grid-column:  span 2;
        grid-row:  span 1;
    }
    .grid-gallery .grid-item:nth-child(3){
        grid-column:  span 1;
        grid-row:  span 1;
    }
    .grid-gallery .grid-item:nth-child(4){
        grid-column:  span 1;
        grid-row:  span 1;
    }
    
    .grid-gallery .grid-item:nth-child(5){
        grid-column:  span 2;
        grid-row:  span 2;
    }
    .grid-gallery .grid-item:nth-child(6){
        grid-column:  span 1;
        grid-row:  span 1;
    }
    
    .grid-gallery .grid-item:nth-child(7){
        grid-column:  span 1;
        grid-row:  span 1;
    }
    
    .grid-gallery .grid-item:nth-child(8){
        grid-column:  span 2;
        grid-row:  span 2;
    }
    
    .grid-gallery .grid-item:nth-child(9){
        grid-column:  span 2;
        grid-row:  span 1;
    }

    .grid-gallery .grid-item:nth-child(10){
        grid-column:  span 2;
        grid-row:  span 2;
    }

    .grid-gallery .grid-item:nth-child(11){
        grid-column:  span 2;
        grid-row:  span 1;
    }
    
    
    
}

/***************************************************FIN GALERIA*/







/***************************************************INICIO SOMOS*/

.somos-banner{
    width: 100%;
    height: 120vh;
    position: relative;
    overflow: hidden;
   display: flex;
   align-items: center;
    flex-direction: column;

}

.bg-img-somos{
    position: absolute;
    
    width: 100%;
    height: 100%;
    
}

.bg-img-somos img{
    object-fit:cover;
   height: 100%;
    width: 100%;
}

.bg-op-somos{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.30);
    transition: 0.4s all ease-in-out;
}


.s-title-container{
    width: 100%;
    height: 80%;
    padding-top: 10vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding-left: 8%;
    padding-right: 8%;
    justify-content: center;
}

.s-title-container div{
    color: white;
    width: 60%;
    font-size: 60px; font-size: calc(var(--index) * 2.6549);
    font-family: 'Less';
    letter-spacing: 9px;
    line-height: calc(var(--index) * 3.3549);
}

.s-title-container a{
    margin-top: 2%;
    width: 20%;
    background-color: #525544;
    color: white;
    border: 2px solid white;
    font-family: 'Less';
    border-radius: 10px;
    font-size: 16px; font-size: calc(var(--index) * 0.708);
    text-align: center;
    text-decoration: none;
    padding: 10px 15px;
    letter-spacing: 2px;
}



.s-description-container{
    width: 100%;
    height: 30%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 2;
    padding-left: 8%;
    padding-right: 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:white;
    
    font-size: 18px; font-size: calc(var(--index) * 0.796);
    line-height: calc(var(--index) * 1.156);
}

.s-description-container div{
    width: 45%;
}


.people{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 2%;
    padding-right: 2%;
}

.container-person{
    width: 100%;
    height: 100vh;

    display: flex;
    margin-top: 10%;
}

.container-person .nuestro{
    height: 100%;
    width: 10%;

    position: relative;
}

.person-line-smart{
    display: block;
}

.nuestro div{

    height: 100%;
    width: 100%;
    writing-mode: vertical-rl;
   transform: rotate(180deg);
   display: flex;
   align-items: center;
   font-family: 'Less';
   font-size: 26px; font-size: calc(var(--index) * 1.1505);
   letter-spacing: 2px;
   text-transform: uppercase;
   display: flex;

   color: #252525;
}



.nuestro .person-line{
    width: 2px;
    height: 45%;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 5%;
}

.container-person .people-img{
    height: 100%;
    width: 45%;

    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.people-img img{
    width: 75%;
    height: 100%;
    object-fit: contain;
    
}

.container-person .person-description{
    height: 100%;
    width: 45%;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 2%;
}

.person-title{
    width: 100%;
    width: 85%;
    display: flex;
    flex-direction: column;
    padding-bottom: 5%;
    border-bottom: 3px solid rgba(0, 0, 0, 0.35);

}

.name{
    width: 100%;
    height: 100%;

    
    font-size: 42px; font-size: calc(var(--index) * 1.8585);

    display: flex;
    align-items: end;
    padding-left: 4%;
}

.job{
    width: 100%;
    height: 100%;

    font-family: 'Less-Light';
    display: flex;

    font-size: 22px; font-size: calc(var(--index) * 0.8035);
    padding-bottom: 2%;
    padding-right: 4%;
    padding-left: 5%;
}

.person-text{
    height: 35%;
    margin-top: 5%;
    padding: 6% 8%;
    width: 85%;
    color: white;
    background-color: #8F907E;
    border-radius: 5px;
    display: flex;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px -3px, rgba(0, 0, 0, 0.05) 0px 4px 10px -2px;
    
}

.descrip2{
    background-color: #525544;
}

.descrip3{
    background-color: #DADFDB;
    color: #252525;
}



.bg-img-somos-mobile{
    display: none;
}

.container-person:nth-child(3){
    margin-bottom: 10%;
}


@media only screen and (max-width: 1365px ) and (min-width: 1025px ) {
    .container-person{
        height: 80vh;

    }

    .people-img img{
        width: 80%;
    }

    .person-text{
        font-size: calc(var(--index)* 0.996);
        line-height: calc(var(--index) * 1.1505);
        height: 38vh;
    }

    .s-description-container{
        height: 40%;
        font-size: calc(var(--index)* 0.996);
  
    }
}

@media only screen and (min-width: 500px ) and (orientation: portrait){
    .somos-banner{
        height:80vh;
    }

    .s-title-container div{
        font-size: 58px; font-size: calc(var(--index) * 2.5665);
        width: 100%;
    }

    .s-title-container a{
        width: 35%;
    }

    .s-description-container{
        height: 30%;
    }

    .container-person{
        height: 50vh;
    }

    .person-title{
        flex-direction: column;
    }

    .job{
        padding-left: 4%;
        width: 100%;
        justify-content: flex-start;
    }

    .person-text{
        height: 55%;
        width: 95%;
        line-height: calc(var(--index) * 1.1505);
    }

}

@media only screen and (max-width: 668px) {

    .somos-banner{
        /*
        background-image: url(../img/somos-mobile.webp);
        background-repeat: no-repeat;
        background-position: center center;
        background-size:cover;
        background-attachment: fixed;
        height: 90vh;*/
    }

    .bg-img-somos-mobile{
        display: block;
        position: absolute;
    
        width: 100%;
        height: 100%;
    }

    .bg-img-somos-mobile img{
        object-fit:cover;
       height: 100%;
        width: 100%;
    }

    .bg-img-somos{
        display: none;
        height: 30%;
    }

    .s-title-container{
        justify-content: flex-end;
        padding-bottom: 20%;
    }

    .s-title-container div{
        width: 100%;
        text-align: center;
        font-size: 38px; font-size: calc(var(--index) * 3.078);
        letter-spacing: 6px;
        line-height: calc(var(--index) * 3.726);
    }

    .s-title-container a{
        width: 100%;
        display: none;
    }

    .s-description-container{
        height: 70%;
        flex-direction: column-reverse;
        justify-content: center;
        font-size: 16px; font-size: calc(var(--index) * 1.296);
        line-height:  calc(var(--index) * 1.458);
        
        padding-left: 6%;
        padding-right: 6%;
        background-color: rgba(0, 0, 0, 0.45);

    }
    .s-description-container div{
        width: 100%;

    }

    .s-description-container div:nth-child(1){
    margin-top: 8%;
    }

    .container-person:nth-child(2){
        margin-top: 20%;
        /*margin-bottom: -20%;*/
    }

    .container-person:nth-child(3){
        margin-bottom: 0%;
    }

    .container-person{
        flex-direction: column;
        height: 115vh;
    }

    .container-person .nuestro{
        height: 15%;
        width: 100%;
    
        position: relative;
        padding-left: 4%;
        
    }

 
    .person-line-smart{
        display: none ;   
    }


    .nuestro div{
        transform: rotate(0deg);
        writing-mode:horizontal-tb;
        font-size: 12px; font-size: calc(var(--index) * 0.972);
    }

    .nuestro .person-line{
        height: 2px;
        width: 45%;
        display: none;
    }

    .container-person .people-img{
        height: 55%;
        width: 100%;
    }

    .people-img img{
        width: 90%;
    }

    .container-person .person-description{
        height: 45%;
        width: 100%;
        padding-right: 2%;
    }

    .person-title{
        width: 100%;
        border-bottom: 2px solid rgba(0, 0, 0, 0.35);
        flex-direction: row;
    }


    .person-text{
        width: 100%;
        height: 60%;
        font-size: 16px; font-size: calc(var(--index) * 1.296);
        line-height: calc(var(--index) * 1.62);
        
    }

    .job{
       
       width: 50%;
       padding-right: 0%;
        font-size: 12px; font-size: calc(var(--index) * 0.972);
        font-family: 'Less';
    }

    .name{
        width: 50%;
        font-size: 22px; font-size: calc(var(--index) * 1.782);
    }

}

/***************************************************FIN SOMOS*/






/***************************************************INICIO PROYECTOS*/

.informacion{
    width: 100%;
    max-height: 180vh !important;
    position: relative;
    position: relative;
    overflow: hidden;
   display: flex;
   align-items: flex-start;
   background-color: #525544;
   padding-top: 6%;
   padding-bottom: 2%;
}


.container-img-info{
    width: 40%;
    max-height: 115vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2%;
    padding-bottom: 2%;

}

.content-img-info{
    width: 100%;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid white;
}

.content-img-info img{
    height: 100%;
    width: 80%;
    object-fit: cover;
}

.container-text-info{
    width: 60%;

    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3%;
    padding-right: 3%;
    position: relative;
    padding-top: 2%;
    padding-bottom: 3%;
}

.content-text-info{

    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}


.info-row-1{



    display: flex;
    padding-top: 2%;
    margin-bottom: 25vh;
    position: relative;
}

.tipo-obra{
    width: 90%;
    height: 100%;
    color: white;
    
    font-size: 14px; font-size: calc(var(--index) * 0.6195);
    letter-spacing: 1px;
}

.nombre-vertical{
    width: 10%;
    height: 85vh;
    
    color: rgba(255, 255,255, 0.40);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 58px; font-size: calc(var(--index) * 1.5065);
    letter-spacing: 4px;
    position: absolute;
    right: 0%;
    top: 0%;
}

.info-row-2{
    position: relative;
    display: flex;
    flex-direction: column;
}

.tile-info{
    width: 85%;
    
    font-size: 58px; font-size: calc(var(--index) * 2.2665);
    letter-spacing: 4px;
    color: white;
    margin-bottom: 1%;
}

.direccion-info{
    width: 82%;
    
    color: white;
    font-size: 20px; font-size: calc(var(--index) * 0.885);
    margin-bottom: 4%;
}

.info-info{
    
    width: 82%;
    
    color: white;
    font-size: 16px; font-size: calc(var(--index) * 0.708);
}

.btn-regresar-desktop{
 
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;

    position: absolute;
    bottom: 0%;
    left: 0%;
    color: white;
    background-color: rgba(255, 255,255, 0.50);
 
    align-items: center;
    height: 44px;
    transition: 0.4s ease-in;

}

.btn-regresar-desktop a{
    color: white;
    text-decoration: none;
    
    font-size: 16px; font-size: calc(var(--index) * 0.708);
    transition: 0.2s ease-in;
    width: 40px;
    height: 40px;
    
}

.btn-regresar-desktop:hover{
    height: 70px;
}

.btn-regresar-desktop a img{
 width: 40px;
}

.btn-regresar-mobile{
    display: none;
}

.redes-info{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 5%;
}

.redes-info a{
        width: 30px;
        height: 30px;
        margin-left: 2%;
}

.redes-info a img{
    width: 40px;
    height: 40px;
}



.info-caract{
    width: 100%;
    min-height: 30vh;
    background-color: #F4F4F4;
    display: flex;
    justify-content: center;
    
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;

}

.caract-title{
    width: 20%;
    height: 40px;

    
    font-size: 24px; font-size: calc(var(--index) * 1.062);
    display: flex;
    align-items: center;
    justify-content: center;
}
.caract-line{
    width: 40%;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

}

.c-line{
    height: 2px;
    width: 80%;
    background-color: rgba(0, 0, 0, 0.65)
}

.caract{
    width: 40%;
    
}

.container-info-img{
    width: 100%;
    min-height: 100vh;
    padding-top: 6%;
    padding-bottom: 6%;
    padding-left: 2%;
    padding-right: 2%;
    background-color: white !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px,1fr));
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 15vh;
    grid-auto-flow: dense;
    grid-gap: 15px;
}

.container-info-img .grid-item-info{
    position: relative;
    overflow:hidden ;

}

.container-info-img .grid-item-info a{

    width: 90%;
    height: 90%;
}

.container-info-img .grid-item-info img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-grid{
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column:  span 1;
    grid-row:  span 3;
}

.info-img img{
    width: 100%;
}

@media only screen and (max-width: 1365px ) and (min-width: 1025px ) {
    .container-info-img{
        grid-template-columns: repeat(auto-fit, minmax(550px,1fr));
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: 30vh;
        grid-auto-flow: dense;
        grid-gap: 10px;
    }

    .img-grid{
        grid-column:  span 1;
        grid-row:  span 2;
    }

    .info-info{
        font-size: calc(var(--index)* 0.896);
    }

    .caract{
        font-size: calc(var(--index)* 0.896);
    }

}

@media only screen and (max-width: 1024px ) and (min-width: 835px ) {
    .container-info-img{
        grid-template-columns: repeat(auto-fit, minmax(550px,1fr));
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: 30vh;
        grid-auto-flow: dense;
        grid-gap: 10px;
    }

    .img-grid{
        grid-column:  span 1;
        grid-row:  span 2;
    }
}

@media only screen and (min-width: 500px ) and (orientation: portrait){
    .informacion{
    
        height: auto ;
        padding-top: 15%;
    }

    .container-img-info{
        max-height: 100% ;
    }

    .content-img-info{
        max-height: 50vh;
    }

    .info-row-1{
        margin-bottom: 20vh;
    }


    .info-info{
        font-size: calc(var(--index)* 0.718);
    }

    .tile-info, .nombre-vertical{
        font-size: 52px; font-size: calc(var(--index) * 2.301);
    }

    .container-info-img{
        grid-template-columns: repeat(auto-fit, minmax(550px,1fr));
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: 30vh;
        grid-auto-flow: dense;
        grid-gap: 10px;
    }

    .img-grid{
        grid-column:  span 1;
        grid-row:  span 1;
    }

    .info-caract{
        min-height: 20vh;
    }

}

@media only screen and (max-width: 668px) {

    .informacion{
        flex-direction: column;
        height: auto ;
        
    }

    .container-img-info{
        width: 100%;
        height: 65vh !important;
    }

    .content-img-info{
        height: 100%;
        border-right: 0px;

    }

    .content-img-info img{
        width: 100%;
        height: 100%;
    }

    .container-text-info{
        width: 100%;
        max-height: 150vh !important;
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 10%;
        padding-bottom: 14%;
    }

    .info-row-1{
        margin-bottom: 2%;
        height: 15%;
    }

    .tipo-obra{
        font-size: 12px; font-size: calc(var(--index) * 0.972);
        margin-bottom: 20%;
    }

    .nombre-vertical{

        height: 55vh;
        font-size: 36px; font-size: calc(var(--index) * 1.816);
    }

    .info-row-2{

        height: 75%;
    }

    .tile-info{
        font-size: 36px; font-size: calc(var(--index) * 2.916);
    }

    .direccion-info{
        font-size: 17px; font-size: calc(var(--index) * 1.377);
        line-height: calc(var(--index) * 1.62);
    }
    
    .info-info{
        font-size: 16px; font-size: calc(var(--index) * 1.296);
        line-height: calc(var(--index) * 1.577);
        color: rgba(255, 255, 255, 0.75);
    }

    .btn-regresar-desktop{
        display: none;
    }

    .content-img-info{
        position: relative;
    }

    .btn-regresar-mobile{
        display: block;
        position: absolute;
        top: 18%;
        left: 7%;
        height: 38px;
        width: 38px;
        opacity: 0.8;
    }
    

    .redes-info a{
        width: 20px;
        height: 20px;
        margin-left: 2%;
    }


    .redes-info a img{
        width: 30px;
        height: 30px;
    }

    .info-caract{
        flex-direction: column;
        padding-top: 15%;
    }

    .caract-title{
        width: 100%;
        font-size: 20px; font-size: calc(var(--index) * 1.62);
        justify-content: flex-start;
    }

    .caract-line{
        width: 100%;
        justify-content: flex-start;
    }

    .c-line{
        width: 65%;
    }

    .caract{
        width: 100%;
        font-size: 16px; font-size: calc(var(--index) * 1.296);
    }

    .container-info-img{
        grid-template-columns: repeat(auto-fit, minmax(550px,1fr));
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: 30vh;
        grid-auto-flow: dense;
        grid-gap: 10px;
    }

    .container-info-img .grid-item-info a{
        width: 100%;
        height: 100%;
    }

    .img-grid{
        grid-column:  span 2;
        grid-row:  span 1;
    }

}


/***************************************************FIN PROYECTOS*/





/***************************************************INICIO FOOTER*/

footer{
    width: 100%;
    height: 60vh;
    background-color: #212121;
    color: white;
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 2%;
    padding-bottom: 1%;
    font-size: 14px; font-size: calc(var(--index) * 0.6195);
    font-size: 16px; font-size: calc(var(--index) * 0.708);
    
}


/*Footer Contacto*/
footer .contacto{
    width: 100%;
    height: 25%;

    display: flex;
    justify-content: center;
    align-items: center;

}

.f-contacto-text{
    width: 33%;
    height: 60%;
    

} 

.f-line{
    width: 33%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding-top: 1%;
} 

.f-white-line{
    height: 2px;
    background-color: white;
    width: 80%;
}

.f-datos{
    width: 33%;
    height: 60%;
    display: flex;
    flex-direction: column-reverse;
    align-items: space-around;
    justify-content: center;

} 

.container-contacto-datos-tel{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 2%;
}

.container-contacto-datos-mail{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.email{
    width: 49%;

    display: flex;
    justify-content: center;
}

.email-pipe{
    width: 2%;

    display: flex;
}

.container-contacto-datos{
    display: flex;
    justify-content: space-around;
}


/*Footer Menu*/

footer .menu{
    width: 100%;
    height: 25%;

    display: flex;
    justify-content: center;
    align-items: center;

}

.f-container-menu{
    width: 40%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

}

.f-container-menu ul{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
}


.f-container-menu ul li{
    text-decoration: none;
    width: 22%;   
    text-align: left;
    
}

.f-container-menu ul li a{
    text-decoration: none !important;
    color: white;
}

.f-container-space{
    width: 27%;

    
}

.f-container-redes{
    width: 33%;
    padding-left: 1%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.f-container-redes a{
    margin-right: 10%;
}

.f-container-redes a img{
    height: 30px;
}


/*Footer LOGO*/

footer .logo{
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.f-logo{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}

.f-logo a img{
    height: 60px;
}

.nombre-logo{
    margin-top: 1%;
    font-size: 20px; font-size: calc(var(--index) * 0.885);
    letter-spacing: 16px;
    
}

.const-logo{
    font-size: 12px; font-size: calc(var(--index) * 0.531);
    letter-spacing: 8px;
    margin-bottom: 2%;
    
}

.direccion{
    font-size: 14px; font-size: calc(var(--index) * 0.6195);
    
}

.direccion-desktop{
    display: block;
}

.direccion-mobile{
    display: none;
}


@media only screen and (max-width: 1365px ) and (min-width: 1025px ) {
    
    footer .contacto{
        font-size: 11px; font-size: calc(var(--index) * 0.841);
    }

    .f-container-menu{
        width: 50%;
    }

    .f-container-space{
        width: 25%;
    }
    
    .f-container-redes{
        width: 25%;
    }

    .f-container-menu ul li{
        font-size: 11px; font-size: calc(var(--index) * 0.891);
        width: 25%;   
    }

    .f-container-redes a img{
        height: 35px;
    }

    .nombre-logo{
        font-size: calc(var(--index) * 1.291);
    }

    .const-logo{
        font-size: 11px; font-size: calc(var(--index) * 0.591);
    }

    
    .direccion{
        font-size: 11px; font-size: calc(var(--index) * 0.651);
    }

}




@media only screen and (min-width: 500px ) and (orientation: portrait){
    footer{
        height: 40vh;
    }

    .f-line{
        width: 25%;
    }

    .f-datos{
        width: 35%;
    }
}

@media only screen and (max-width: 668px) {

    footer .contacto{
        height: 33%;
        flex-direction: column;
 
        justify-content: center;
        align-items: center;
        font-size: 13px; font-size: calc(var(--index) * 1.053);
        
    }

    .f-contacto-text{
        width: 100%;
        height: 15%;
 
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .f-line{
        width: 100%;
        height: 15%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .f-datos{
        width: 85%;
        height: 40%;

        display: flex;
        flex-direction: column-reverse;
        align-items: space-around;
        justify-content: center;
    } 

    .container-contacto-datos-mail{
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }

    .container-contacto-datos-tel{
        margin-top: 5%;
        width: 100%;
        
    }

    .direccion-desktop{
        display: none;
    }
    
    .direccion-mobile{
        display: flex;
        width: 100%;
        margin-top: 2%;
        justify-content: space-between;
        height: 4vh;
    }

    .item-direccion{
        width: 45%;
    }

    .item-direccion-pipe{
        width: 1%;
        height: 100%;
        border-left: 1px solid white;
    }

    .item-direccion:nth-child(1){
        padding-right: 3%;
 
    }

    .item-direccion:nth-child(1){
        padding-left: 3%;
    }


    footer .menu{
        width: 100%;
        height: 33%;
        flex-direction: column;

    }

    .f-container-menu{
        width: 100%;
        height: 50%;
    }

    .f-container-menu ul{
        justify-content: center;
        font-size: 13px; font-size: calc(var(--index) * 1.053);
    }

    .f-container-menu ul li{
        width: 25%;   
    }

    .f-container-redes{
        width: 80%;
        height: 50%;
        align-items: flex-start;
        justify-content: space-around;
        padding-left: 0% !important;
    }

    .f-container-redes a{
        margin-right: 0%;
    }

    footer .logo{
        width: 100%;
        height: 33%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        border-top: 2px solid rgba(255, 255, 255, 0.35);

    }

    .f-logo a img{
        height: 35px;
    }

    .nombre-logo{
        margin-top: 4%;
        font-size: 14px; font-size: calc(var(--index) * 1.134);
    }

    .const-logo{
        font-size: 10px; font-size: calc(var(--index) * 0.81);
        margin-bottom: 4%;
    }

    .direccion{
        font-size: 11px; font-size: calc(var(--index) * 0.891);
        text-align: center;
    }

    .f-container-redes a img{
        height: 25px;
    }

}

/***************************************************FIN FOOTER*/




