html {
    box-sizing: border-box;
    font-size: 62.5%;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }

  td::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  td::-webkit-scrollbar-thumb {
    background: #818181;
    border-radius: 5px;
  } 
  body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  body::-webkit-scrollbar-thumb {
    background: #818181;
    border-radius: 5px;
  }

  body{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 2.6vh;
    line-height: 2;
  }
  /* Globales*/

  .contenedor{
      background-color: white;
      max-width: 300rem;
      width: 100%;
      margin: 0 auto;      
  }

  .height-emulator {
    width: 100%;
    position: relative;
    z-index: 1;
  }


  h1, h2, h3, h4{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;    
    line-height: 1.2;
  }

  h1{
      font-size: 7.8vh;
  }
  h2{
      font-size: 6vh;
  }
  h3{
      font-size: 5.2vh;
  }
  h4{
      font-size: 4.8vh;
  }

  img{
      max-width: 100%;
  }

  .main {
    transition: ease 0.5s;
  }


  /*Utilidades*/

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

  .no-margin{
      margin: 0;
  }

  .centrar{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

tr{
    vertical-align: middle;
}

/*Menu*/
.menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 5;
    top: 0;
    right: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 6rem;
  }
  
  .menu a {
    padding: 1vh 1vw 1vh 3vw;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 3vh;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .menu a:hover {
    color: black;
  }

  .mostrar-menu{
    width: 18%;
  }  

  .aplazar{
      margin-right: 13%;
  }

  .aplazar-main{
    margin-right: 1%;
  }

  .aplazar-fecha{
    padding-right: 13%;
    }
  
  #imgCerrar{
      display: none;
  }

  #imgCerrarMovil{
      display: none;
  }

  .on{
    display: flex!important;
  }
    
  .off{
      display: none;
  }

  @media (max-width: 767px) {
      .mostrar-menu{
          width: 50%;
      }

      .menu a{
          font-size: 2.5vh;
      }

      #imgCerrarMovil{
        position: relative;
        display: block;
        width: 15%;
        left: 4%;
        margin-bottom: 10%;
    }
  }

  @media (min-width: 768px) and (max-width: 1024px) {
        .mostrar-menu{
            width: 30%;
        }

        .menu a{
            font-size: 2.5vh;
        }

        #imgCerrarMovil{
        position: relative;
        display: block;
        width: 10%;
        left: 4%;
        margin-bottom: 10%;
    }
  }

  @media (max-width: 1024px) and (orientation: landscape) {
    .mostrar-menu{
        width: 20%;
    }
  }

  

/*Volver a Menu de Galerías*/

.volver-menu-arq{
    flex-basis: calc(10% - 1rem);
    order: -1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.volver-menu{
    position: fixed;
}

.volver-menu-art .volver-menu{
    top: 15%;
    left: 3%;
    width: 100%;
    background-color: white;
}

.volver-menu button{
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
}

.volver-menu button img, .volver-menu a img{
    width: 2.5vw;
}

@media (max-width: 767px ) {
    .volver-menu-art .volver-menu{
        top: 8%;        
        padding-top: 4%;
        left: 0;
    }

    .volver-menu button img, .volver-menu a img{
        width: 8vw;
        margin-left: 1%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .volver-menu-art .volver-menu{
        top: 10%;
        left: 0;
    }
    .volver-menu button img, .volver-menu a img{
        width: 5vw;
        margin-left: 1%;
    }
}

@media (max-width: 1024px) and (orientation: landscape) {
    .volver-menu-art .volver-menu{
        top: 9%;
        padding-top: 2%;
    }
    .volver-menu button img, .volver-menu a img{
        width: 4vw;
    }
}

/*Derecha y Abajo*/


.derecha{
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: rgba(255,255,255,0.7);
    position: fixed;
    bottom: -5%;
    right:0;
    height: 100vh;
}

.down{
    z-index: 4;
    justify-content: flex-start;
    background-color: rgba(255,255,255);
    position: sticky;
    bottom: 0%;
    padding-bottom: 2%;
    left: 0%;
}

.derecha img, .down img{
    width: 3vw;
}

@media (max-width: 1024px) {
    .derecha, .down{
        display: none!important;
    } 
}


/*Header*/

.contenedor-header-inicio{
    background-color: white;
    width: 100%;
    height: auto;
    padding: 1.5vh auto;
    position: relative;
    z-index: 4;
}

.contenedor-header{
    background-color: white;
    width: 100%;
    height: auto;
    padding: 1.5vh auto;
    position: fixed;
    top:0;
    z-index: 4;
}

.header{
    display: flex;
    justify-content: space-between;
    padding: 2vh 0;
}

.barra-izquierda-header{
    flex-basis: calc(20% - 1rem);
}

.logo-header{
    flex-basis: calc(60% - 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-header img{
    width: 10vw;
}

.space-header{
    flex-basis: calc(80% - 1rem);
    height: 8vh;
}


.menu-header{
    flex-basis: calc(20% - 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease 0.5s;
}

.menu-header #imgMenu{
    width: 3vw;
    cursor: pointer;
}

.menu-header #imgCerrar{
    width: 2.3vw;
    cursor: pointer;
}

@media (max-width: 767px) {
    .header{
        max-width: 77rem!important;
        margin: 0;
    }

    .logo-header img{
        width: 30%;
    }

    .menu-header img{
        width: 40%!important;
    }

    .menu-header #imgCerrar{
        display: none!important;
    }

    .space-header{
        height: 5vh;
    }
    
}

@media (min-width: 768px) and (max-width: 1024px) {

    .header{
        max-width: 100rem;
    }

    .logo-header img{
        width: 35%;
    }

    .menu-header img{
        width: 30%!important;
    }

    .space-header{
        height: 6vh;
    }

    #imgCerrar{
        display: none!important;
    }
    
}

@media (max-width: 1024px) and (orientation: landscape) {
    .logo-header img{
        width: 20%;
    }

    .menu-header img{
        width: 25%!important;
    }
}


/*Banner Principal*/

@media (max-width: 1024px) {
    
#divPrincipal{
    background-image: url(../images/banner-principal.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 120vh;
    position:relative;
    animation:none;
}

.banner img{
    display: none;
}

}

@keyframes animatefading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}

/*Galería Productos*/

.galeria{
    background-color: white;
    position: relative;
    z-index: 2;    
    display: flex;
    justify-content: center;
}

.galeria-productos{
    display: flex;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 3rem;
}


.galeria-productos a{
    flex-basis: calc(50% - 5vw);
    text-decoration: none;
    text-align: center;
}

.boton-galeria{
    font-size: 3.5vw;
    color:transparent;    
    cursor: pointer;
    padding: 15vh 0 15vh 0;
}


.boton-galeria.arq p{
    margin-left: 15%;
}


.boton-galeria.art{
    background: url(../images/art.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 15vh 0 15vh 0!important;
    margin-top: -3%;
    margin-left: -11%;
}
.boton-galeria.arq{
    background: url(../images/arq.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 30vh 0 30vh 0!important;
    margin-top: -14%;
    margin-right: 11%;
}


.boton-galeria.art:hover{
    background: url(../images/art.jpg), rgba(255,255,255,0.8);
    background-blend-mode: overlay;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: black;
}

.boton-galeria.arq:hover{
    background: url(../images/arq.jpg), rgba(255,255,255,0.8);
    background-blend-mode: overlay;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: black;
}

@media (max-width: 768px) {
    .galeria-productos{
        flex-direction: column;
        padding: 5% 0;
    }

    .boton-galeria.arq p{
        margin-left: 5%;
    }

    .boton-galeria{
        font-size: 7.5vw;
    }

    .boton-galeria.art{
        background: url(../images/art.jpg), rgba(255,255,255,0.6);
        background-blend-mode: overlay;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        color: black;
        padding: 15vh 0 15vh 0!important;
        margin: 0;
    }
    .boton-galeria.arq{
        background: url(../images/arq.jpg), rgba(255,255,255,0.6);
        background-blend-mode: overlay;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        color: black;
        padding: 15vh 0 15vh 0!important;
        margin-right: 5%;
    }
}

/*Bio y Redes*/

.footer{
    position: relatove;
    background-color: black;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0rem;
    left: 0;
    padding: 10rem 0 2rem 0;
    z-index: 3;
}

.contenedor-bio{
    display: block;    
    text-align: center;
    width: 100%;
    max-width: 300rem;
}

.biografia{
    display: flex;
    justify-content: space-between;
}

.texto-biografia{
    flex-basis: calc(60% - 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 5%;
}

.texto-biografia p{
    color: white;
    font-size: 1.2vw;
    text-align: justify;
}

.foto-biografia{
    flex-basis: calc(40% - 1rem);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.foto-biografia img{
    width: 70vw;
}

.redes-contacto{
    display: flex;
    justify-content: flex-end;
    margin-top:2rem;
}

.iconos{
    display: flex;
    justify-content: space-between;
    margin-right: 5%;
}
.icono{
    display: flex;
    justify-content: center;
    align-items: center;
}
.icono-ig img{
    width: 4vw;
    margin: 2rem;
    cursor: pointer;
}
.icono-email img, .icono-yt img{
    width: 5.5vw;
    margin: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .biografia{
        flex-direction: column-reverse;
        text-align: center;
    }

    .texto-biografia{
        width: 95%;
        margin: auto;
    }

    .texto-biografia p{
        font-size: 4vw;
    }

    .foto-biografia{
        justify-content: center;
        margin-bottom: 5%;
    }

    .foto-biografia img{
        width: 80%;
    }
    .redes-contacto{
        justify-content: center;
    }
    .iconos{
        margin: auto;
    }
    .icono-ig img{
        width: 15vw;
    }
    .icono-email img, .icono-yt img{
        width: 16.5vw;
    }
}

/*Artes Visuales*/

.artes-visuales{
    background-color: white;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    margin-top: 12rem;
    /*animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    /*-webkit-animation: fadein 2s; /* Safari and Chrome */
    /*-o-animation: fadein 2s; /* Opera */
}

.botonera-artes{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    padding: 0 1rem;
    font-size: 5rem;
    text-transform: uppercase;
}

.botonera-artes a{    
    flex-basis: calc(33.3% - 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-2d p, .menu-3d p{
    padding: 8vw;
}

.menu-in-situ p{
    padding: 3vw;
    
}


.menu-2d{
    background: url(../images/arte/BOTON\ 2D.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: transparent;
    padding: 1rem;
    margin: 0;
    cursor: pointer;
}

.menu-3d{
    background: url(../images/arte/BOTON\ 3D.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: transparent;
    padding: 1rem;
    margin: 0;
    cursor: pointer;
}

.menu-in-situ{
    background: url(../images/arte/BOTON\ IN\ SITU.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: transparent;
    padding: 1rem;
    margin: 0;
    cursor: pointer;
}

.menu-2d:hover{
    background: url(../images/arte/BOTON\ 2D.png), rgba(255,255,255,0.7);
    background-blend-mode: overlay;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: black;
}

.menu-3d:hover{
    background: url(../images/arte/BOTON\ 3D.png), rgba(255,255,255,0.7);
    background-blend-mode: overlay;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: black;
}

.menu-in-situ:hover{
    background: url(../images/arte/BOTON\ IN\ SITU.png), rgba(255,255,255,0.7);
    background-blend-mode: overlay;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: black;
}

@media (max-width: 768px) {
    .artes-visuales{
        margin-top: 5%;
    }

    .botonera-artes{
        flex-direction: column;
    }

    .menu-2d p, .menu-3d p{
        padding: 0 16vw;
    } 
    
    .menu-in-situ p{
        padding: 8vw;

    }

    .menu-2d{
        background: url(../images/arte/BOTON\ 2D.png), rgba(255,255,255,0.7);
        background-blend-mode: overlay;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        color: black;
    }
    
    .menu-3d{
        background: url(../images/arte/BOTON\ 3D.png), rgba(255,255,255,0.7);
        background-blend-mode: overlay;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        color: black;
    }
    
    .menu-in-situ{
        background: url(../images/arte/BOTON\ IN\ SITU.png), rgba(255,255,255,0.7);
        background-blend-mode: overlay;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        color: black;
    }

}

/*Arte 2D 3D In Situ*/

.artes-visuales-gallery{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin-top: 12%;
}

.contenedor-arte{
    background-color: white;
    width: 100%;
    margin: 0 auto;         
}

.tabla-galeria{
    margin-top: 1.5%;
}


.tabla-galeria td{
    padding: 0;
    margin: 0 2rem;
    width: max-content;
    overflow-x: hidden;
}

.columna-art{
    display: flex;
    justify-content: center;
    align-items: center;
}

.columna-art img{
    height: 60vh;
}

.columna-texto{
    height: 60vh;
}

.columna-texto h2{
    font-weight: 500;   
    margin-top: 0;
    color: #6f6f6f;
    max-width: 50vw;
    margin-top: 2%;
}
.columna-texto h4{
    font-weight: 300;
    font-size: 3.5vh;
    line-height: auto;
    text-transform: uppercase;
    max-width: 50vw;
    margin: 0.5% 0%;
}

.columna-texto p{
    font-size: 2vh;
    max-width: 60vw;
    padding-top: 1%;
    padding-bottom: 2%;
}


.c2020, .c2019, .c2018, .c2011, .c2010, .c2009, .c2008, .i2018, .i2017, .i2016{
    display: none;
  }

  .imagenes-arte, .texto-arte{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  

  @media (max-width: 767px) {

    .artes-visuales-gallery{
        margin-top: 25%;
        margin-bottom: 20%;
        width: fit-content;
    }

    table, thead, tbody, th, td, tr { 
        display: flex;
        flex-direction: column; 
    }
    
    .tabla-galeria td{
        padding: 0;
        margin: 0.5rem 0;
        width: fit-content;
        overflow-x: hidden;
    }

    .texto-arte{
        height: 100%;
    }

    .columna-art img{
        height: auto;
        width: 90%;
    }

    .columna-texto{
        width: 100%;
        height: 100%;
    }

    .columna-texto p, .columna-texto h2, .columna-texto h4{
        max-width: 95%;
    }
    .columna-texto p, .columna-texto h2, .columna-texto h4{
        text-align: center;
    }
    .columna-texto p{
        text-align: justify;
        margin-left: 2.2%;
    }      
  }

  @media (min-width: 768px) and (max-width: 1024px) {

    .artes-visuales-gallery{
        margin-top: 20%;
        margin-bottom: 20%;
    }

    table, thead, tbody, th, td, tr { 
        display: flex;
        flex-direction: column; 
    }

    .texto-arte{
        width: 100%;
        height: 100%;
    }
    
    .tabla-galeria td{
        padding: 0;
        margin: 0.5rem;
        width: fit-content;
        overflow-x: hidden;
    }

    .columna-art img{
        height: auto;
        width: 60%;
    }

    .columna-texto{
        width: 100%;
        height: 100%;
    }

    .columna-texto p, .columna-texto h2, .columna-texto h4{
        max-width: 95%;
    }

    .columna-texto p, .columna-texto h2, .columna-texto h4{
        text-align: center;
    }
    .columna-texto p{
        text-align: justify;
        margin-left: 2.2%;
    } 
      
  }

  @media (max-width: 1024px) and (orientation: landscape) {
    .artes-visuales-gallery{
        margin-top: 10%;
        margin-bottom: 20%;
        padding-top: 1%;
    }

    table, thead, tbody, th, td, tr { 
        display: block;
    }

    .tabla-galeria td{
        width: auto;
    }

    .columna-art img{
        width: 45%;
    }
    .columna-texto p{
        font-size: 3vh;
    }
  }

  @media (min-width: 1025px) {
    .artes-visuales-gallery{
    position: relative;
    top: 80%;
    left: 2%;
    right: 10%;
    }
      
  }

  /*Fecha Arte*/

  .barra-inferior{
      display: flex;
      justify-content: flex-end;
      z-index: 4;
      width: 100%;
      position: fixed;
      bottom: 0rem;
      /*animation: fadein 8s;
    -moz-animation: fadein 8s; /* Firefox */
    /*-webkit-animation: fadein 8s; /* Safari and Chrome */
    /*-o-animation: fadein 8s; /* Opera */
    transition: ease 0.5s;
  }

.renglon-arte{
    display: flex;
}

.fecha-arte{
    display: flex;
    justify-content: flex-end;
    padding: 1% 1%;
    transition: ease 0.5s;
}

.fechas{
    font-size: 3vh;
    font-weight: 500;
    margin: 0 1.5vw;
    color: #cccccc;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.fechas:hover{
      color: black;
}


  .fechas:focus{
    color: black;
    outline: none;
}

.fechas:active{
    color: black;
    outline: none;
}

.negritas{
    color: black!important;
}

.botonArte{
    display: none;
}

@media (max-width: 767px) {
    .barra-inferior{
        justify-content: center;
        margin: 0 auto;
        padding: 1rem 0;
        max-width: 80rem;
        background-color: white;
    }
    .botonArte{
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-content: center;
        background-color: white;
        border: none;
        font-size: 6.5vw;
    }

    .botonArte img{
        width: 6vw;
        height: 6vw;
        margin-top: 18%;
        margin-left: 4%;
    }

    .fecha-arte{
        justify-content: center;
        flex-direction: column;
        overflow: hidden;
        transition: 0.5s ease-out;
        position: absolute;	
        background-color: white;
        width: 60vw;
        max-height: 0;
        padding: 0;
        bottom: 9vh;
        z-index: 1;
        }
    .fecha-arte a{
        display: flex;
        align-content: center;
        justify-content: center;
        padding: 2%
    }
    .show{
        max-height: 100rem;
    }
    .abajo{
        display: none;
    }
    .arriba{
        display: block;
    }
    .ocultar{
        display: none;
    }
    .mostrar{
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .barra-inferior{
        justify-content: center;
        margin: 0 auto;
        padding: 1rem 0;
        max-width: 102 rem;
        background-color: white;
    }
    .botonArte{
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-content: center;
        background-color: white;
        border: none;
        font-size: 3.5vw;
    }

    .botonArte img{
        width: 4vw;
        height: 4vw;
        margin-top: 15%;
        margin-left: 4%;
    }

    .fecha-arte{
        justify-content: center;
        flex-direction: column;
        overflow: hidden;
        transition: 0.5s ease-out;
        position: absolute;	
        background-color: white;
        width: 60vw;
        max-height: 0;
        padding: 0;
        bottom: 9vh;
        z-index: 1;
        }
    .fecha-arte a{
        display: flex;
        align-content: center;
        justify-content: center;
        padding: 2%
    }
    .show{
        max-height: 100rem;
    }
    .abajo{
        display: none;
    }
    .arriba{
        display: block;
    }
    .ocultar{
        display: none;
    }
    .mostrar{
        display: block;
    }
}

@media (max-width: 1024px) and (orientation: landscape) {
    .botonArte{
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-content: center;
        background-color: white;
        border: none;
        font-size: 2.5vw;
    }

    .botonArte img{
        width: 2.5vw;
        height: 2.5vw;
        margin-top: 15%;
        margin-left: 4%;
    }
}

/* Menu Arquitectura*/

.menu-arquitectura{
    background-color: white;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8%;
    /*animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    /*-webkit-animation: fadein 2s; /* Safari and Chrome */
    /*-o-animation: fadein 2s; /* Opera */
}

.columna-arq{
    height: 50vh;
}

.arq-m{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18vh;
}

.proyecto{
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: transparent;
    margin: 0;
    cursor: pointer;
}

.proyecto:hover{
    background: url(../images/arquitectura/PETEN_BN.jpg);
    background-blend-mode: overlay;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    color: black;
}

.tituloarquitectura{
    background: transparent;
    color:#e9e9e9;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    right: 7%;
    bottom: 35vh; 
    text-align: right;   
}

.tituloarquitectura h2{
    margin: 0;
    font-size: 4vw;
    letter-spacing: 0.8vw;
}

.listado-proyectos{
    margin-top: 4%;
}

@media (max-width: 767px) {
    .tituloarquitectura{
        display: none;   
    }

    table, thead, tbody, th, td, tr { 
        display: flex;
        flex-direction: column; 
    }

    .listado-proyectos td{
        margin-bottom: 22vh;
    }    

}


@media (min-width: 768px ) and (max-width: 1024px) {   

    .tituloarquitectura{
        display: none;   
    }

    .listado-proyectos td{
        margin-bottom: 22vh;
    } 
}

@media (max-width: 1024px) and (orientation: landscape) {
    .menu-arquitectura{
        margin-top: 0%;
    }

    .listado-proyectos td{
        margin-bottom: 50vh;
    } 

    .arq-m{
        padding: 25vh;
    }
}



/*Proyectos de Arquitectura*/
.gallery-arq{
    background-color: white;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10%;
}

.gallery-arq-cont{
    display: none;
    justify-content: space-between;
    width: 95%;
}

.descripcion{
    flex-basis: calc(30% - 1rem);
    order: 2;
}

.texto-descripcion{
    position: fixed;
    font-size: 2.2vh;
    font-weight: 500;
    text-align: left;
    padding-right: 2%;
    margin-top: -0.7%;
}

.texto-descripcion h2{
    margin: 0;
}

.imagenes-proyecto{
    flex-basis: calc(60% - 1rem);
    display: block;
    text-align: center;
}

.imagenes-proyecto img{
    width:50vw;
}

@media (max-width: 767px) {
    .gallery-arq-cont{
        margin-top: 20%;
        flex-direction: column;
    }

    .imagenes-proyecto, .descripcion{
        flex-basis: calc(30% - 1rem);
    }
    .descripcion{
        order: -1;
    }

    .texto-descripcion{
        position: relative;
        text-align: center;
    }
}

@media (min-width: 768px ) and (max-width: 1024px) {   
    .gallery-arq-cont{
        margin-top: 15%;
        flex-direction: column;
    }
    
    .imagenes-proyecto, .descripcion{
        flex-basis: calc(30% - 1rem);
    }
    .descripcion{
        order: -1;
    }

    .texto-descripcion{
        position: relative;
        text-align: center;
    }
}

@media (max-width: 1024px) and (orientation: landscape) {
    .gallery-arq-cont{
        margin-top: 0;
    }
}

