@media screen and (device-aspect-ratio: 4/3) and (orientation: landscape){

    /*******QUERIES HORIZONTALES DE IPAD***********/
*{
    margin: 0px auto;
    padding: 0px;
    user-select: none;
    box-sizing: border-box;
    -ms-overflow-style: none;
}

.diseño_vertical{
    display: none;
}


body{
    cursor: none;
}

/*Ocultar scrollbar para Safari y Chrome*/
::-webkit-scrollbar{
    display:none;
    overflow: hidden;
}

/*Contenedor con módulos*/
.wrapper{
    width: auto;
    display: flex;
    height: 100vh;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    transition: all 0.2s;
    transform: scale(0.98);
    will-change: transform;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: hidden;
}

/*Estilos generales de módulo*/
.module{
    display: none;
    width: 67%;
    height: 100vh;
    -ms-overflow-style: none; 
}

.module.active{
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1);
}

.module:first-child{
    width: 29.5%;
    height: 100vh;
    background-color: white;
}

.module:last-child{
    width: 20%;
    height: 100vh;
    background-color: white;
}

/*Cabecera: entre el .outer-wrapper y el .wrapper*/
header{
    margin: 0px auto;
    width: 100%;
    height: auto;
    padding-left: 2.2%;
    padding-right: 2.2%;
    padding-top: 1.1%;
    display: flex;
    position: absolute;
    -ms-overflow-style: none;
    z-index: 100;
    animation-name: none;
}


/*Parte izquierda del Header, título*/
#titulo{
    display: inline-block;
    width: 80%;
}

#titulo a{
    text-decoration: none;
}

#titulo img{
    padding-top: 3%;
    width: 55%;
}

#titulo p{
    font-family: dTJakobThin;
    font-size: 1.45vw;
    padding-left: 4.8%;
    margin-top: 0.9vh;
    line-height: 0.85;
}

#yogBold{
    font-family: dTJakobSemiBoldItalic;
}

/*Parte derecha del Header, Contacto e información*/
#info{
    width: 20%;
    padding-top: 1%;
}

#logo_menu_hamburguesa{
    width: 100%;
    display: block;
}

#logo_menu_hamburguesa img{
    width: 11%;
    float: right;
}

#contacto{
    width: 100%;
    float: right;
    padding-top: 2%;
    padding-bottom: 2%;
}


#contacto a{
    text-decoration: none;
    color: black;
    cursor: none;
}

#contacto p{
    font-family: dTJakobThin;
    font-size: 0.8vw;
}

#contacto p:hover{
    font-family: dTJakobBold;
    cursor: none;
}

#contacto-p{
    width: auto;
    padding-right: 2%;
    padding-top: 2%;
    float: right;
}


#redes-sociales{
    width: 100%;
    display: block;
}

#instag{
    width: 100%;
    float: right;
    text-align: right;
    height: 2vh;
}

#instag a{
    cursor: none;
}

#instag img{
    width: 8%;
}


#faceb{
    width: 100%;
    float: right;
    text-align: right;
}

#faceb a{
    cursor: none;
}

#faceb img{
    width: 8%;
}




/*Menu navegación lateral fijo, menú pegajoso*/
nav{
    overflow: hidden;
    padding: 0px;
    margin: 0px;
    margin-top: 22.1%;
    position: fixed;
    z-index: 100; 
    left: 3%;
}

nav li{
    list-style: none;
}

nav ul a{
    display: none;
    text-decoration: none;
    font-family: dTJakobBlack;
    line-height: 1.1;
    color: black;
    font-size: 2.5vw;
}


.imagenScroll{
    position: fixed;
    display: none;
    z-index: 999; 
    top: 50%;
    left: 50%;
    opacity: 0;
}

.imagenScroll img{
    width: 51.9%;
}




/*Clase para las imágenes de los módulos*/
.imagen-clase{
    width: 100%;
    margin: 0px;
    margin-top: 14%;
}

.imagen-clase img{
    width: 53%;
    margin-top: 10.5%;
}

.imagen-clase h2{
    display: inline-block;
    font-family: dTJakobBlack;
    font-size: 2vw;
    margin-left: 2px;
    line-height: 1;
}

.parrafo{
    margin-left: 30%;
    font-family: dTJakobSemiBoldItalic;
    font-size: 1.5vw;
    line-height: 1.2;
    margin-top: 1.2vh;
}


/*CURSOR*/
#cBlob {
    width: 10px;
    height: 10px;
    background-color:black;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    z-index: 99999;
    transform:scale(1);
    transition: transform 0.25s ease;
    opacity: 1;
}


#cClick {
    width: 16px;
    height: 16px;
    background-color: #cccccc;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999;
    transform: scale(0);
    transition: transform 0.25s ease;
    opacity: 0;
}

}


@media screen  and (max-device-width: 788px) and (orientation: landscape){

*{
    margin: 0px auto;
    padding: 0px;
    user-select: none;
    box-sizing: border-box;
    -ms-overflow-style: none;
}

.diseño_vertical{
    display: none;
}


body{
    cursor: none;
}

/*Ocultar scrollbar para Safari y Chrome*/
::-webkit-scrollbar{
    display:none;
    overflow: hidden;
}

/*Contenedor con módulos*/
.wrapper{
    width: auto;
    display: flex;
    height: 100vh;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    transition: all 0.2s;
    transform: scale(0.98);
    will-change: transform;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: hidden;
}

/*Estilos generales de módulo*/
.module{
    display: none;
    width: 49%;
    height: 100vh;
    -ms-overflow-style: none; 
}

.module.active{
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1);
}

.module:first-child{
    width: 25.5%;
    height: 100vh;
    background-color: white;
}

.module:last-child{
    width: 20%;
    height: 100vh;
    background-color: white;
}

/*Cabecera: entre el .outer-wrapper y el .wrapper*/
header{
    margin: 0px auto;
    width: 100%;
    height: auto;
    padding-left: 2.2%;
    padding-right: 2.2%;
    padding-top: 1.1%;
    display: flex;
    position: absolute;
    -ms-overflow-style: none;
    z-index: 100;
    animation-name: none;
}


/*Parte izquierda del Header, título*/
#titulo{
    display: inline-block;
    width: 80%;
}

#titulo a{
    text-decoration: none;
}

#titulo img{
    padding-top: 3%;
    width: 47%;
}

#titulo p{
    font-family: dTJakobThin;
    font-size: 1.2vw;
    padding-left: 4.8%;
    margin-top: 0.9vh;
    line-height: 0.85;
}

#yogBold{
    font-family: dTJakobSemiBoldItalic;
}

/*Parte derecha del Header, Contacto e información*/
#info{
    width: 20%;
    padding-top: 1%;
}

#logo_menu_hamburguesa{
    width: 100%;
    display: block;
}

#logo_menu_hamburguesa img{
    width: 9%;
    float: right;
}

#contacto{
    width: 100%;
    float: right;
    padding-top: 2%;
    padding-bottom: 2%;
}


#contacto a{
    text-decoration: none;
    color: black;
    cursor: none;
}

#contacto p{
    font-family: dTJakobThin;
    font-size: 0.6vw;
}

#contacto p:hover{
    font-family: dTJakobBold;
    cursor: none;
}

#contacto-p{
    width: auto;
    padding-right: 2%;
    padding-top: 2%;
    float: right;
}


#redes-sociales{
    width: 100%;
    display: block;
}

#instag{
    width: 100%;
    float: right;
    text-align: right;
    height: 2.5vh;
}

#instag a{
    cursor: none;
}

#instag img{
    width: 8%;
}


#faceb{
    width: 100%;
    float: right;
    text-align: right;
}

#faceb a{
    cursor: none;
}

#faceb img{
    width: 8%;
}




/*Menu navegación lateral fijo, menú pegajoso*/
nav{
    overflow: hidden;
    padding: 0px;
    margin: 0px;
    margin-top: 17.1%;
    position: fixed;
    z-index: 100; 
    left: 3%;
}

nav li{
    list-style: none;
}

nav ul a{
    display: none;
    text-decoration: none;
    font-family: dTJakobBlack;
    line-height: 1.1;
    color: black;
    font-size: 2vw;
}


.imagenScroll{
    position: fixed;
    display: none;
    z-index: 999; 
    top: 50%;
    left: 50%;
    opacity: 0;
}

.imagenScroll img{
    width: 51.9%;
}




/*Clase para las imágenes de los módulos*/
.imagen-clase{
    width: 100%;
    margin: 0px;
    margin-top: 19%;
}

.imagen-clase img{
    width: 53%;
    margin-top: 8.5%;
}

.imagen-clase h2{
    display: inline-block;
    font-family: dTJakobBlack;
    font-size: 2vw;
    margin-left: 2px;
    line-height: 1;
}

.parrafo{
    margin-left: 30%;
    font-family: dTJakobSemiBoldItalic;
    font-size: 0.95vw;
    line-height: 1.2;
    margin-top: 1.2vh;
}


/*CURSOR*/
#cBlob {
    display:none;
}


#cClick {
    display: none;
}

}



@media screen  and (device-aspect-ratio: 16/10) and (orientation: landscape){

    /*******QUERIES HORIZONTALES DE MOVILES***********/
*{
    margin: 0px auto;
    padding: 0px;
    user-select: none;
    box-sizing: border-box;
    -ms-overflow-style: none;
}

.diseño_vertical{
    display: none;
}


body{
    cursor: none;
}

/*Ocultar scrollbar para Safari y Chrome*/
::-webkit-scrollbar{
    display:none;
    overflow: hidden;
}

/*Contenedor con módulos*/
.wrapper{
    width: auto;
    display: flex;
    height: 100vh;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    transition: all 0.2s;
    transform: scale(0.98);
    will-change: transform;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: hidden;
}

/*Estilos generales de módulo*/
.module{
    display: none;
    width: 50%;
    height: 100vh;
    -ms-overflow-style: none; 
}

.module.active{
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1);
}

.module:first-child{
    width: 25.5%;
    height: 100vh;
    background-color: white;
}

.module:last-child{
    width: 20%;
    height: 100vh;
    background-color: white;
}

/*Cabecera: entre el .outer-wrapper y el .wrapper*/
header{
    margin: 0px auto;
    width: 100%;
    height: auto;
    padding-left: 2.2%;
    padding-right: 2.2%;
    padding-top: 1.1%;
    display: flex;
    position: absolute;
    -ms-overflow-style: none;
    z-index: 100;
    animation-name: none;
}


/*Parte izquierda del Header, título*/
#titulo{
    display: inline-block;
    width: 80%;
}

#titulo a{
    text-decoration: none;
}

#titulo img{
    padding-top: 3%;
    width: 45%;
}

#titulo p{
    font-family: dTJakobThin;
    font-size: 1.2vw;
    padding-left: 3.5%;
    margin-top: 0.9vh;
    line-height: 0.85;
}

#yogBold{
    font-family: dTJakobSemiBoldItalic;
}

/*Parte derecha del Header, Contacto e información*/
#info{
    width: 20%;
    padding-top: 1%;
}

#logo_menu_hamburguesa{
    width: 100%;
    display: block;
}

#logo_menu_hamburguesa img{
    width: 9%;
    float: right;
}

#contacto{
    width: 100%;
    float: right;
    padding-top: 2%;
    padding-bottom: 2%;
}


#contacto a{
    text-decoration: none;
    color: black;
    cursor: none;
}

#contacto p{
    font-family: dTJakobThin;
    font-size: 0.6vw;
}

#contacto p:hover{
    font-family: dTJakobBold;
    cursor: none;
}

#contacto-p{
    width: auto;
    padding-right: 2%;
    padding-top: 2%;
    float: right;
}


#redes-sociales{
    width: 100%;
    display: block;
}

#instag{
    width: 100%;
    float: right;
    text-align: right;
    height: 2.5vh;
}

#instag a{
    cursor: none;
}

#instag img{
    width: 8%;
}


#faceb{
    width: 100%;
    float: right;
    text-align: right;
}

#faceb a{
    cursor: none;
}

#faceb img{
    width: 8%;
}




/*Menu navegación lateral fijo, menú pegajoso*/
nav{
    overflow: hidden;
    padding: 0px;
    margin: 0px;
    margin-top: 17.1%;
    position: fixed;
    z-index: 100; 
    left: 3%;
}

nav li{
    list-style: none;
}

nav ul a{
    display: none;
    text-decoration: none;
    font-family: dTJakobBlack;
    line-height: 1.1;
    color: black;
    font-size: 1.8vw;
}


.imagenScroll{
    position: fixed;
    display: none;
    z-index: 999; 
    top: 50%;
    left: 50%;
    opacity: 1;
}

.imagenScroll img{
    width: 51.9%;
}




/*Clase para las imágenes de los módulos*/
.imagen-clase{
    width: 100%;
    margin: 0px;
    margin-top: 19%;
}

.imagen-clase img{
    width: 53%;
    margin-top: 8.5%;
}

.imagen-clase h2{
    display: inline-block;
    font-family: dTJakobBlack;
    font-size: 2vw;
    margin-left: 2px;
    line-height: 1;
}

.parrafo{
    margin-left: 30%;
    font-family: dTJakobSemiBoldItalic;
    font-size: 0.95vw;
    line-height: 1.2;
    margin-top: 1.2vh;
}


/*CURSOR*/
#cBlob {
    width: 10px;
    height: 10px;
    background-color:black;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    z-index: 99999;
    transform:scale(1);
    transition: transform 0.25s ease;
    opacity: 1;
}


#cClick {
    width: 16px;
    height: 16px;
    background-color: #cccccc;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999;
    transform: scale(0);
    transition: transform 0.25s ease;
    opacity: 0;
}

}

@media screen  and (min-width: 1800px) and (orientation: landscape){
    #cClick {
        width: 34px;
        height: 34px;
    }
  
    #cBlob {
      width: 25px;
      height: 25px;
    }
}


