@font-face {
    font-family: 'Cygre-Thin';
    src: url('../fonts/Cygre-Thin.ttf') format('truetype');
         font-weight: 100;
         font-display: swap;
         font-style: normal;
  }

  @font-face {
    font-family: 'Cygre-Light';
    src: url('../fonts/Cygre-Light.ttf') format('truetype');
         font-weight: 300;
         font-display: swap;
         font-style: normal;
  }

  @font-face {
    font-family: 'Cygre-Regular';
    src: url('../fonts/Cygre-Regular.ttf') format('truetype');
         font-weight: 400;
         font-display: swap;
         font-style: normal;
  }

  @font-face {
    font-family: 'Cygre-Medium';
    src: url('../fonts/Cygre-Regular.ttf') format('truetype');
         font-weight: 500;
         font-display: swap;
         font-style: normal;
  }

  @font-face {
    font-family: 'Cygre-SemiBold';
    src: url('../fonts/Cygre-SemiBold.ttf') format('truetype');
         font-weight: 600;
         font-display: swap;
         font-style: normal;
  }

  @font-face {
    font-family: 'Cygre-Bold';
    src: url('../fonts/Cygre-Bold.ttf') format('truetype');
         font-weight: 700;
         font-display: swap;
         font-style: normal;
  }

  @font-face {
    font-family: 'Cygre-Book';
    src: url('../fonts/Cygre-Book.ttf') format('truetype');
         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);
}

  


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

section{
    
}


/*-------------------------INICIO HOME*/

.home{

    width: 100%;
    height: 100vh;
    background-image: url(img/2.webp);
    background-position: 50% 55%;    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.animation-bg{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #212121;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-bg img{
    height: 50%;
    object-fit: contain;
}

.bg-black{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
}

.container-logos{
    padding-left: 4%;
    padding-right: 4%;
    position: relative;
    z-index: 5;
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.container-logos a{
    height: 80%;
}

.container-logos img{
    height: 100%;
    object-fit: cover;
}

.hero{
    position: relative;
    z-index: 5;
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 7%;
    padding-right: 7%;
    overflow: hidden;
}

.hero span{
    text-align: center;
    font-family: 'Cygre-Regular';
    font-size: 62px; font-size: calc(var(--index) * 2.7434);
    color: white;
    letter-spacing: 8px;
    word-spacing: 5px;
    line-height: calc(var(--index) * 3.3762);
    
}

.menu-desk{
    position: relative;
    z-index: 5;
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: end;
    align-items: flex-end;
}

.container-menu{
    height: 50%;
    width: 50%;
    background-color: rgba(0, 0, 0, 0.60);
    display: flex;
}

.container-menu ul{
    color: white;
    list-style: none;
    display: flex;
    width: 100%;
}

.container-menu ul li{
    width: 25%;
    text-align: center;
    display: flex;
    align-self: center;
    justify-content: center;
    font-family: 'Cygre-Book';
    font-size: 14px; font-size: calc(var(--index) * 0.6195);
    letter-spacing: 2px;
}

.container-menu ul li a{
    color: white;    
    text-decoration: none;
}



@media only screen and (max-width: 668px) {

    .home{
        background-image: url(img/4.webp);
        background-position: top;
    }

    .animation-bg img{
        width: 80%;
    }

    .container-logos{
        height: 15vh;
    }

    .hero{
        height: 65vh;
    }

    .hero span{
        font-family: 'Cygre-Semibold';
        font-size: 54px; font-size: calc(var(--index) * 2.3895);
        line-height:  calc(var(--index) * 2.5895);
        letter-spacing: 6px;
        word-spacing: 1px;
    }

    .container-menu{
        width: 100%;
    }

    .container-menu ul li{
        letter-spacing: 1px;
        font-size: 20px; font-size: calc(var(--index) * 0.885);
    }
}

@media only screen and (min-width: 500px ) and (orientation: portrait){
    .home{
        height: 50vh;
    }

    .container-logos{
        height: 20%;
    }

    .hero{
        height: 60%;
    }

    .menu-desk{
        height: 20%;
    }

    .container-menu{
        width: 55%;
    }
}




/*-------------------------FIN HOME*/



/*-------------------------INICIO CONOCENOS*/


.conocenos{
    width: 100%;
    height: 100vh;
    background-color: #1B2741;
    position: relative;
    display: flex;
    overflow: hidden;
}


.container-text-conocenos{
    height: 100%;
    width: 40%;
    color: white;
    padding: 5% 6%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.conocenos-titulo{
    font-family: 'Cygre-Thin';

    font-size: 14px; font-size: calc(var(--index) * 0.6195);
    text-align: left;
    width: 100%;
    margin-bottom: 4%;
    text-transform: uppercase;
    letter-spacing: 6px;
    z-index: 15;
    overflow: hidden;
}

.conocenos-titulo2{
    font-family: 'Cygre-Book';
    font-size: 34px; font-size: calc(var(--index) * 1.5045);
    
    text-align: left;
    width: 100%;
    margin-bottom: 12%;

    letter-spacing: 8px;
    text-transform: uppercase;
    z-index: 15;
    overflow: hidden;
}

.conocenos-titulo span, .conocenos-titulo2 span{
 display: block;
}

.conocenos-logo {
    display: flex;
    justify-content: center;
    width: 100%;

}

.conocenos-logo  img{
    height: 8vh;
}

.conocenos-texto{
    font-family: 'Cygre-Light';
    font-size: 16px; font-size: calc(var(--index) * 0.708);
    line-height: calc(var(--index) * 1.085);;
    z-index: 15;
}

.conocenos-texto p{
    margin-bottom:10% ;
    padding-right: 10%;
    letter-spacing: 1px;
} 

.container-img-conocenos{
    height: 100%;
    width: 60%;
    position: relative;
}

.container-img-conocenos img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.conocenos-bg-azul{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #1B2741;
    top: 0;
    left: 0;
    z-index: 5;
}


@media only screen and (max-width: 668px) {

    .conocenos{
        flex-direction: column;
        height: 110vh;
    }

    .container-text-conocenos{
        width: 100%;
        padding: 5% 6%;
        height: 50%;
    }

    .conocenos-texto p{
        padding-right: 0%;
    }

    .container-img-conocenos{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 45%;
    }

    .container-img-conocenos img{
        width: 90%;
    }

    .conocenos-titulo{
        font-size: 18px; font-size: calc(var(--index) * 0.796);
    }

    .conocenos-titulo2{
        font-size: 45px; font-size: calc(var(--index) * 1.991);
    }

    .conocenos-texto{
        font-size: 22px; font-size: calc(var(--index) * 0.9735);
        line-height: calc(var(--index) * 1.3735);
    }
}


@media only screen and (min-width: 500px ) and (orientation: portrait){
    .conocenos{
        height: 50vh;
    }
    .container-text-conocenos{
        width: 45%;
        padding: 5% 4%;
    }

    .container-img-conocenos{
        width: 55%;
    }

    .conocenos-titulo{
        margin-bottom: 1%;
    }

    .conocenos-titulo2{
        margin-bottom: 8%;
    }

    .conocenos-texto{
        font-size: 14px; font-size: calc(var(--index) * 0.6195);
    }

    .conocenos-texto p{
        padding-right: 5%;
        margin-bottom:5% ;
    }

    .bg-azul{
        display: none;
    }

    .conocenos-bg-azul{
        display: none;
    }
}


/*-------------------------FIN CONOCENOS*/




/*-------------------------INICIO CARACTERISTICAS*/
.caract{
    width: 100%;
    background-color: #F2F2F2;

}


.row-caract{
    height: 35vh;
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    
}

.container-caract{
    height: 100%;
    width: 20%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.container-caract img, .container-caract2 img{
    height:55px;
    width: 55px;

}

.text-caract{
    font-family: 'Cygre-SemiBold';
    font-size: 24px; font-size: calc(var(--index) * 1.062);
    margin-top: 5%;

    width: 100%;
    text-align: center;
}

.row2-caract{
    height: 35vh;
    width: 100%;
   
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.container-caract2{
    height: 100%;
    width: 20%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;

}

@media only screen and (max-width: 668px) {

    .caract{
        display: flex;
        padding-top: 10%;
        padding-bottom: 10%;
    }

    .row-caract, .row2-caract {
       height: 500px ;
       width: 50%;
    }

    .container-caract,    .container-caract2{
        width: 100%;
        height: 20%;
    }

    .container-caract{
       
       border-right: 2px solid rgba(0, 0, 0, 0.35);
        
    }

    .container-caract img, .container-caract2 img{
        height:45px;
        width: 45px;
    
    }

    
 
}

@media only screen and (min-width: 500px ) and (orientation: portrait){
    .row-caract, .row2-caract{
        height: 25vh;
    }
}

/*-------------------------FIN CARACTERISTICAS*/


/*-------------------------INICIO UBICACION*/



.ubicacion{
    width: 100%;
    height: 100vh;
    background-color: #fafafa  ;
    margin-bottom: 10%;
    position: relative;
}


.ubicacion .container-imgs{
    width: 100%;
    height: 70%;

    display: flex;
    align-items: center;
    display: flex;
    align-items: end;
    justify-content: center;
}

.edif1, .edif2{
    width: 40%;
    height: 90%;
    display: flex;
    justify-content: center;
}

.edif1 img, .edif2 img{
    width: 80%;
    height: 100%;
    object-fit: fill;
}

.ubicacion .container-text{
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom:5%;
    left: 0;
    
}

.content-text-ubi{
        height: 100%;
        width: 65%;
        background-color: #5EB1BF;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.ubi-title{
    width: 90%;
    
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ubi-title-text{
    height: 100%;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-family: 'Cygre-Book';
    font-size: 24px; font-size: calc(var(--index) * 1.062);
    letter-spacing: 1px;
}

.ubi-title-img{
    height: 100%;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ubi-title-img img{
    height: 90%;
}

.ubi-text{
    width: 90%;
    margin-top: 2%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.col-ubi-text{
    height: 100%;
    width: 33.3%;
    
    color: white;
    font-family: 'Cygre-Light';
    font-size: 16px; font-size: calc(var(--index) * 0.708);
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5%;
}

.ut1{
    border-right: 1px solid white;
}

.col-ubi-text p{
    margin-bottom: 2%;
}

@media only screen and (max-width: 834px)  and (min-width: 668px ){
    .ubicacion{
        height: 90vh;
    }

    .edif1, .edif2{
        width: 45%;
    }
}


@media only screen and (max-width: 668px) {

    .ubicacion{
        display: flex;
        flex-direction: column;
        height: 90vh;
        align-items: center;
        justify-content: center;
    }


    .ubicacion .container-imgs{
        width: 100%;

        height: 60%;
    }

    .edif1{
        width: 90%;

    }

    .edif2{
        display: none;
    }

    .edif1 img, .edif2 img{
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        width: 100%;
    }

    .ubicacion .container-text{
        position: relative;
        height: 20%;
        bottom: 0%;
        height: 33%;
    }

    .content-text-ubi{
        width:90%;
        border-radius: 00px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .ubi-title{
    
        height: 20%;
        border-bottom: 1px solid white;
    }


    .ubi-title-text{
        width: 70%;
        font-size: 36px; font-size: calc(var(--index) * 1.585);
    }

    .ubi-title-img img{
        height: 60%;
    }

    .ubi-text{
 
        height: 70%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .col-ubi-text{
        height: 50%;
        width: 50%;
        font-size: 16px; font-size: calc(var(--index) * 0.708);
        font-size: 18px; font-size: calc(var(--index) * 0.796);
        font-size: 20px; font-size: calc(var(--index) * 0.885);
        font-size: 22px; font-size: calc(var(--index) * 0.9735);
        text-align: center;
        letter-spacing: 0px;
    }

    .col-ubi-text p{
        margin-bottom: 3%;
    }
    .ut1{
        border-right: 0;
    }
}

@media only screen and (min-width: 500px ) and (orientation: portrait){
    .ubicacion{
        height: 60vh;
    }

    .col-ubi-text p{
        margin-bottom: 1%;
    }
}

/*-------------------------FIN UBICACION*/


/*-------------------------INICIO GALERIA*/



.gallery{
    width: 100%;
    height: 170vh;
}

.row-gallery{
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.container-gallery{
    height: 50%;
    width: 33.3%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.gallery-b{
    justify-content: flex-end;
}

.container-gallery img{
    
    
    width: 90%;
    height: 88%;
    object-fit: fill;
}

.text-gallery{
    padding-top: 3%;
    width: 85%;
    height: 5%;
    text-align: right;
    font-family: 'Cygre-Semibold';
    font-size: 14px; font-size: calc(var(--index) * 0.6195);
    overflow: hidden;

}

.text-gallery span{
    display: block;
}


@media only screen and (max-width: 1365px ) and (min-width: 1025px ) {
    .gallery{
        height: 1000px;
    }
    .text-gallery{
        padding-top: 0%;
    }
}

@media only screen and (max-width: 1024px ) and (min-width: 835px ) {

    .gallery{
        height: 900px;
    }

}

@media only screen and (max-width: 834px)  and (min-width: 668px ){
    .gallery{
        height: 600px;
    }
}





@media only screen and (max-width: 668px) {

    .gallery{
        height: 750px;
    }

    .container-gallery{
        width: 50%;
        height: 33.3%;
    }

    .container-gallery img{
        width: 90%;
    }

    .text-gallery{
        font-size: 12px; font-size: calc(var(--index) * 0.531);
    }
}



@media only screen and (min-width: 500px ) and (orientation: portrait){
    .gallery{
        height: 800px !important;
    }

    .text-gallery{
        padding-top: 0%;
    }
}

/*-------------------------FIN GALERIA*/


footer{
    margin-top: 4%;
    background-color: #212121;
    width: 100%;
    height: 15vh;
}


.row1-footer{
    width: 100%;
    height: 75%;

    display: flex;
}

.row1-content1{
    height: 100%;
    width: 80%;
    display: flex;
    justify-content: center;
    padding-left: 6%;
    color: white;
    flex-direction: column;
    font-family: 'Cygre-Light';
    font-size: 16px; font-size: calc(var(--index) * 0.708);
}

.telefono span{
    margin-right: 5%;
}

.direccion{
    margin-top: 1%;

}

.row1-content2{
    height: 100%;
    width: 20%;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.row1-content2 a{
    height: 90%;
    display: flex;
    align-items: center;
}

.row1-content2 img{
    height: 100%;
    object-fit: cover;
}

.row2-footer{
    width: 100%;
    height: 25%;
    border-top: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px; font-size: calc(var(--index) * 0.6195);
    font-family: 'Cygre-Light';
}


@media only screen and (max-width: 668px) {
    .row1-content2 img{
        height: 70%;
    }


    .row1-content1{
        width: 70%;
        font-size: 18px; font-size: calc(var(--index) * 0.796);
    }

    .direccion{
        margin-top: 4%;
    
    }

    .row1-content2{
        width: 30%;
        align-items: center;
    }

    .row2-footer{
        font-size: 18px; font-size: calc(var(--index) * 0.796);
    }
}