 /**? Explicaciones y Recomendaciones
 /** Este archivo css se encarga de controlar los diseños de todas las páginas en conjunto y las adapta a celulares 
 /** los @media se encargan de indicar el tamaño de ancho de pantalla en el cual se debe adaptar a computadores o moviles y viceversa. 
 /** Los @import permiten importar fuentes de letras 
 /** el header.abajo indica la tranformación de la barra de navegación al mover la página hacia abajo 
 /** Se recomienda usar las medidas en vw(ancho de pantalla), vh(alto de pantalla) y porcentajes (con elementos dentro de un div) para evitar los errores visuales y desadaptaciones en otros dispositivos. 
 /** Se recomienda usar el código "transition" para agregar efectos suaves a transformaciones, animaciones y modificaciones en divs o elementos. 
 /** Los códigos "@keyframes" sirven para añadir fotogramas claves para animaciones; para que algun elementos la realize debe colocarce el comando "animation: (nombre elegido de la animacion sin la arroba);"
/** Se utilizan comentarios para marcar el comienzo y final de cada conjunto de códigos relacionados
/** El código "scroll-behavior:smooth;" permite que al trasladar la pantalla por la página se produzca una transición; de lo contrario se teletransportara con un corte abrupto. 
/** Los elementos y divs dentro de un DIV pueden colocarse dentro de las llaves para ahorrar código y facilitar la comprensión; excepto cuando se les coloca el código ":hover", porque no funcionará el código.
/**


 /**All Start*/
 html{
    scroll-behavior: smooth;
 }
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
 *{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    body {
        font-family: Arial, sans-serif;
        background-color: #f0f0f0;
        margin:0vw;
        cursor: url(imágenes/Cursores/pointer-small.webp), auto !important;
        overflow-x: hidden;
        transition: .3s ease;
        opacity: 0%;
        animation: smooth 1.5s forwards;
    }
    ::-webkit-scrollbar-thumb,::-webkit-scrollbar-track,::-webkit-scrollbar {
    cursor: url(imágenes/Cursores/vert.webp), auto;
    }
    a{
        cursor: url(imágenes/Cursores/link.webp), auto;
    }
}
 /**All End*/
 @keyframes smooth{
    to{
        opacity: 100%;
    }
}


 /**PC PORT*/
 @media (max-width:3000px){
 .desktop{
    display: flex;
    cursor: url(imágenes/Cursores/pointer-small.webp);
}
body::-webkit-scrollbar{
    width: .6vw; /* Ancho del scrollbar */
    background-color: #cccccc36;
    border-radius: 2vw;
}
body::-webkit-scrollbar-track{
    background-color: #f1f1f1;
    margin: .1vw;
}
body::-webkit-scrollbar-thumb{
    background-color: #156eeb; /* Color del thumb (la parte que se arrastra) */
    border-radius: 0px; 
}
 /**Header Start*/
 .header {
    display: inline-flex;
    position: fixed !important;
    align-items: center;
    align-content: center;
    justify-content: right;
    padding-top: 0px;
    background-color:#ffffff;
    z-index: 9!important;
    box-shadow: 2px 2px 2px #888;
    color: #000;
    text-shadow: 2px 2px #ccc;
    font-weight: bold;
    height: 14vh;
    margin: 10px;
    border-radius: 25px;
    width: 98%;
    transition: .5s ease;
}

.header.abajo{
    background-color: #4646468a;
    box-shadow: 2px 2px 2px #55555557;
    text-shadow: 2px 2px #000;
    height: 11vh;
    transition: .5s ease;
    opacity: 40%;
    #nav a{
        color: #fff;
    }
    .logo_img_text {
        color:#fff !important;
    }
    .logo_img_text img{
        width: 3.5vw;
        height: 7vh;
        margin-top: 10px;
    }
    .logo_img_text p{
        font-size: 1.2vw;
        color: #fff !important;
    }
    .institucion_options{
        top:150% !important;
    }
}
.header.abajo .logo,
.header.abajo ul li a{
    color: #000;
}

.header.abajo:hover{
    opacity: 100%;
}

.logo_img_text{
    display: inline-flex;
    font-size: 1.4vw;
    position: absolute;
    left: 0%;
    p{
        margin-left: 1vw;
        color: #000 !important;
    }
}
.logo {
    width: 5vw;
    height: 10vh;
    background-color: #fff;
    margin: .05vw;
    margin-left: 1vw;
    margin-top: 1vh;
    padding:0.5vw;
    align-content: center;
    border-radius: 1vw;
    box-shadow: 2px 2px 5vh #55555557;
    transition: .5s ease;
}
.long_text{
    img{
        width: 40vw; height: 50vh;
    }
}

.icon{
    font-size: 30px;
    transition: .5s ease;
    border-radius: 10px;
    padding-top:2px;
    padding-bottom:2px;
    padding-left:8px;
    padding-right:8px;
}

.icon:hover{
    background-color: #79a4e2;
    transform: scale(1.1);
}

.nav-button{
    display: flex;
    position: relative;
    font-size: 2vw;
    cursor: url(imágenes/Cursores/link.webp), auto;
    transition: .5s ease;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.nav-button.mobile{
    display: none;
}

.nav-button:hover{
    color:gold;
}

#nav {
    display: inline-flex;
    flex-direction: row;
    position: relative;
    list-style: none;
    font-size: 2vw;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    transition:  .3s ease;
    margin-left: -2vw;
    li {
        margin: 0 2vw;
        transition: .5s ease;
    }
    a {
        color: #000;
        text-decoration: none;
        font-size: 1.5vw;
        transition: .35s ease;
        padding: 1vw;
        border-radius: 2vw; 
    }
    .institucion_options{
        display: flex;
        flex-direction: column;
        position: absolute;
        cursor: url(imágenes/Cursores/link.webp), auto;
        text-decoration: none;
        background-color: #ccccccde;
        list-style:none;
        left:42%;
        overflow: hidden;
        height: 0%;
        top: 179%;
        justify-content: center;
        align-items: center;
        align-content: center;
        transition: .5s ease;
        border-radius: 5px;
        padding: 0px;
        max-width: fit-content;
        max-height: fit-content;
    }
}

#nav a:hover {
    background-color: #156EEB;
    color: #fff;
    text-shadow: 2px 2px #000;
    box-shadow: 4px 4px #ccc;
}

.expand_arrow{
    display:none;
    font-size: 1.5vw !important;
}

.close_arrow{
    display:none;
    font-size: 1.5vw !important;
}

.institucion_options li{
    width: 100%;
}

.institucion_options i{
    margin:.7vh;
}

.institucion_options a{
    display: flex;
    margin: 0px;
    width: 100%;
    color: #000 !important;
    opacity: 70%;
    padding: 0px !important;
    text-shadow: 2px 2px #fff !important;
}

.institucion_options a:hover{
    opacity: 100%;
    background-color:#156EEB !important;
    border-radius:0px !important;
}    
/**Header End*/

/**Banner Start*/
.banner{
    display: flex;
    position: relative;
    height:68vh;
    align-content: center;
    align-items: center;
    justify-content: center;
    top:0%;
    width: 100%;
    overflow: hidden;
}
.banner_buttons{
	display: flex;
	position: absolute;
	bottom: 0%;
	width: 100%;
	background-color: #0270b1;
	justify-content: center;
	margin: none;
    a{
        background-color: #0270b1;
        color: #fff;
        text-decoration: none;
        padding: 10px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 20px;
        transition: 1s ease;
    }
}
.banner_buttons a:hover{
	background-color: #fff;
	color: #000;
}
.banner_buttons2{
	display: flex;
	position: absolute;
	bottom: 0%;
	width: 90%;
	background-color: #003366;
	justify-content: center;
    a{
        background-color: #003366;
        color: #fff;
        text-decoration: none;
        padding: 10px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 20px;
        transition: 1s ease;
    }
}
.banner_buttons2 a:hover{
	background-color: grey;
	color: #fff;
}
.banner .banner_text{
    display: flex;
    flex-direction: column;
    margin-top: 8%;
    margin-left: .5vw;
    position:absolute;
    width: 100%;
    background: linear-gradient(
    #000000ce,
    #00000075,
    #000000ce);
    padding: 40px;
    padding-bottom: 20px;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    h1{
        display: flex;
        font-family: monospace;
        /*white-space: nowrap;
        border-right:4px solid ;
        width: 24ch;
        animation: typing 2s steps(12),
        blink .5s infinite step-end alternate;*/
        overflow: hidden !important;
        margin-left: 4vw;
        font-size: 3vw;
        color: #fff;
        margin-bottom: 0PX;
        letter-spacing: 1vw;
        line-height:7vh;
        font-weight: bolder;
    }
    @keyframes typing{
        from {width: 0;}
    }
    @keyframes blink{
        50% {border-color: transparent;}
    }
    h3{
        margin-left: 4vw;
        margin-top:2vh;
        color: #fff;
        font-size: 1.2vw;
        font-weight: normal;
    }
}
.banner .banner_text .banner_text1{
    display: flex;
    width: fit-content;
    height: fit-content;
    overflow: hidden;
}
.banner img{
    width: 100%;
    height: 100%;
}
/**Banner End*/


/**Footer Start*/
.footer {
    background-color:#156EEB;
      /* background: linear-gradient(
          #152BEB,
          #156EEB,
          #0B3775);
      /* background-color: #003366;*/
      color: white;
      text-align: center;
      width: 100%;
      padding-bottom: 10px;
      padding-top: 5px;
  }
  .contacts{
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      align-content: center;
      flex: 1;
      position: relative;
      width:20vw;
      color: white;
      margin-left:20px;
      p{
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .icon{
        width: fit-content;
    }
    .contacts_items{
        display: inline-flex;
        flex-direction: row;
        position: relative;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
    }
    a{
        text-decoration: none;
        color: white;
    }
  }
/**Footer End*/

/**Card Start*/

.contenido{
    display: inline-flex;
    flex-direction: row;
    max-width: 100%;
    overflow: hidden;
}
.contenido .card{
    width: 100%;
    overflow: hidden;
}
.card {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2vh;
    padding: 2vw;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #888;
    overflow: hidden !important;
    h3 {
        color: #003366;
        margin-bottom: 10px;
        font-size: 18px;
    }
    p {
        color: #333333;
        line-height: 1.5;
        font-size: 16px;
    }
    a {
        color: #003366;
        text-decoration: none;
    }
}
.card a:hover {
    text-decoration: underline;
}
.card-content{
    background-color: #f0f0f0;
    cursor: url(imágenes/Cursores/link.webp), auto;
    transition: .5s ease;
    margin:none;
    position: relative;
    display: flex;
    margin-bottom: 2px;
    img{
        display: inline;
        flex-direction: row;
    }
    h4{
        margin-top: 0px;
        margin-bottom: 2px;
    }
    p{
        margin-top: 2px;
        margin-bottom: 0px;
    }
}
.card-content:hover{
    background-color: #ccc;
}
/**Card End*/

/**Item Start*/
#categorias{
    display: inline-flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    margin: 0px !important;
    margin-top: 5vh !important;
    margin-bottom: 5vh !important;
    min-width: 100% !important;
    max-width: 100%;
    min-height: fit-content;
    max-height: fit-content;
    overflow-x: hidden}
.categoria{
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    align-content: center;
    max-width: 13vw;
    height: 13vw;
    width: 100%;
    margin-bottom: 2vh;
    margin-right: 2vw;
    border-radius: 10px;
    transition: .5s ease;
    overflow: hidden;
    cursor: pointer !important;
    img{
        position: absolute;
        width: 100%;
        height: 100%;
        filter: brightness(50%) blur(1px);
        z-index: 0;
    }
    .categoria_text{
        display: flex;
        position:absolute;
        justify-content: center;
        align-items:center;
        align-content: center;
        width: fit-content;
        height: 100%;
        transition: .5s ease;
        span{
            font-size: 2.5vw;
            font-weight: bold;
            color: #fff;
            z-index: 8 !important;
            transition: .5s ease;
            text-shadow: 2px 2px 2px #222;
        }
    }
    .stylished{
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        top: 100%;
        position: absolute;
        background: #36b44999;
        width: 100%;
        height: 100%;
        z-index: 7;
        transition: .5s ease;
        .border{
            width: 90%;
            height: 90%;
            border: 4px solid rgba(0, 128, 0, 0.864);
        }
}
}
.categoria.back{
    max-width: 4vw !important;
    overflow: hidden;
    font-size: 4vh;
    color: #fff;
    z-index: 9 !important;
    background: #333;
    i{
        transition: .3s;
    }
}
.categoria.back:hover{
    background: #555;
    i{transform: rotate(90deg);
    }
}
.categoria:hover{
    .stylished{
            top: 0%;
    }
    }
/**Item End*/
 /* Contenido de Novedades */
    
 .nov{
    display: inline-flex;
    flex-direction: row;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
    outline: 1px solid #ccc;
    border-radius: 15px;
    justify-content: center;
    align-content: center;
}

.nov .nov_dis{
    display: inline-flex;
    flex-direction: column;
    position: relative;
    overflow-y: scroll !important;
    overflow-x: hidden;
    width: 100%;
    background-color: #cccccc36;
    align-items: center;
}

.nov .nov_dis::-webkit-scrollbar{
    width: 10px;
}

.nov .nov_dis::-webkit-scrollbar-track{
    background: #e9e9e9;
}

.nov .nov_dis::-webkit-scrollbar-thumb{
    background: #ccc;
}

.nov .nov_dis .nov_div{
   display: inline;
   position: relative;
   justify-content: center;
   align-items: center ;
   align-content: center;
   width: 90%;
   height: 90%;
   margin-top: 20px;
   margin-bottom: 20px;
   margin-left: 10px;
   margin-right: 5px;
   transition: .5s ease;
}

.nov .nov_dis .nov_div h2{
    text-align: center;
    width: 100%;
    font-size: 42px;
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #fff;
    background:linear-gradient(
        90deg,
        #003366,
        #156EEB,
        #156eeb,
        #156EEB,
        #003366);
    border-radius: 25px;
    letter-spacing: 5px;
    font-size: 52px;
}

.nov_div_content{
display: flex;
flex-direction: column;
position: relative;
width: 100%;
justify-content:center !important;
align-items: center !important;
align-content: center !important;
text-align: center;
}
.inline{
display: inline;
position: relative;
justify-content: center;
width: 100%;
}


/**Card_item*/
.card_itemv2{
    display: inline-flex;
    flex: 1;
    position: relative;
    cursor: url(imágenes/Cursores/link.webp), auto;
    overflow: hidden !important;
    aspect-ratio: 16/9;
    transition: .5s ease;
    margin: 3px ;
    border-radius: 25px;
    width: 100%;
    height: 100%;
    outline: 2px solid #ffffff00;
}
.card_itemv2:hover{
    img{
        transform: scale(1.1);
        filter:blur(0.7px) brightness(.4);
        border-radius: 5px;
    }
    transform: scale(1.04);
    padding: none;
    outline: 2px solid #156eeb;
}
/**Card_Item End*/


/**Formulario y Correo Start*/
.correo{
    display: flex;
    position:fixed !important;
    font-size:2.5vw;
    background: #156eeb;
    outline: #156eeb43 solid .3vw;
    padding:1vw;
    border-radius: 100%;
    cursor: url(imágenes/Cursores/link.webp), auto;
    justify-content: flex-end;
    align-self: flex-end;
    align-items: flex-end;
    color: #fff;
    right: 2%;
    bottom: 2%;
    transition: .2s ease;
    z-index: 10 !important;
    i{
        transition: .5s ease;
    }
    
}
@keyframes expand-and-appear{
    from {width: 0%; height: 0%; bottom: -10%};
}

.correo:hover{
    opacity: 90%;
    transform: scale(1.1) translateX(-.5vw) translateY(-1.5vh);
    outline: #156eeb8f solid .3vw;
    box-shadow: 5px 5px 5px #003366;
    i{
        transform: rotate(360deg) scale(1.2);
    }
}

.formulario{
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0%;
    top: 0%;
    background: #fff;
    z-index: 10;
    height: 100%;
    width: 0%;
    max-width: 40vw;
    transition: .5s;
    overflow: hidden;
    border-left: #ccc 1px solid;
    form{
        height: fit-content;
        margin-bottom: 2px;
    }
    .form_inputs h2,p{
        text-align: left;
    }
    .form_inputs h2{
        margin-bottom: 0px;
        font-size: 2.5vw;
        font-weight: bold;
        letter-spacing: 0px;
    }
    .form_inputs p{
        color:#999999;
        font-size: 1vw;
     }
     .cerrar_form{
        text-align: end;
        color: #fff;
        font-size: 1.2vw !important;
        width: 1.5vw !important;
        height: 1.5vw !important;
        padding: .3vw !important;
        justify-content: center;
        align-items: center;
        align-content: center;
        outline: #000 2px solid;
        margin-top: 15px;
        margin-right: 15px;
        position: absolute;
        display: flex;
        right: 0%;
        background-color: #11111180;
        border-radius: 100%;
        cursor: url(imágenes/Cursores/link.webp), auto;
        transition: .5s;
    }
    .cerrar_form i{
        transition: .3s ease;
    }
    .cerrar_form:hover{
        outline: #ff7300 2px solid;
        color:#ff7300 !important;
        transform: scale(1.1);
        i{
            transform:rotate(360deg);
        }
    }
    .btn{
        background:#156EEB;
        border:2px solid #ccc;
        padding:5px;
        color:#ccc;
        font-weight: bold;
        font-size: 2vw;
        width: 25vw;
        justify-content: center;
        left: 10%;
        display: flex;
        position: relative;
        border-radius: 25px;
        margin-top: 1vw;
        cursor: url(imágenes/Cursores/link.webp), auto;
        transition: .5s ease;
        outline: 2px solid;
    }
    .btn:hover{
        outline: #ff7300 2px solid;
        color:#ff7300 !important;
        transform: scale(1.043);
    }
    label{
        color:#fff;
        font-weight:bold;
        margin-bottom: 15px;
        margin-top: 5px;
        color:#000;
        border-radius: 0px;
        font-size: 1.2vw;
    }
    .form_inputs{
        display: flex;
        flex-direction: column;
        position: relative;
        margin-left: 45px;
        margin-right: 45px;
        margin-top: 45px;
        text-align: left;
    }
    #name, #phone, #email, #message {
        margin-bottom: 10px;
        border:none;
        border-bottom: 1px #ccc solid;
        width: 100% !important;
        height: fit-content !important;
        font-size: 1vw;
        outline: none;
        padding-bottom: 10px;
        cursor: url(/imágenes/Cursores/beam.webp), auto;
    }
    #message{
        height:40px !important;
    }
    #name::placeholder, #phone::placeholder, #email::placeholder, #message::placeholder{
        color: #999999;
    }
    input, textarea{
        transition: .3s;
    }
    input:hover, textarea:hover{
        box-shadow: .2vh .2vh 3vh #999;
    }
}
/**Formulario y Correo End*/


/**Carrousel Start*/
.carrousel{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    border-radius: 25px;
    box-shadow: 1vh 1vh 1vh .5vh #888888;
    background-color: #eee;
}

.display_text,.display_text1,.display_text2,.display_text3{
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    bottom: 6%;
    background-color: #292929bd;
    height:70px;
}

.display_text{
    left:0%;
}
.display_text1{
    left:100%;
}
.display_text2{
    left:200%;
}
.display_text3{
    left:300%;
}


.carrousel_nextandprev{
    display: flex;
    position:relative;
    z-index: 1 ;
}

.display_text h1,.display_text1 h1,.display_text2 h1,.display_text3 h1{
    color: #fff;
    width: 100%;
    margin:0px;
    margin-left: 30px;
}
.display_text p,.display_text1 p,.display_text2 p,.display_text3 p{
    color: #fff;
    font-size: 24px;
    margin:0px;
    margin-top: -10px;
    margin-left: 30px;
}

.next_button{
    display: flex;
    position: absolute;
    color: #fff;
    font-weight: bold;
    font-size: 28px;
    background-color: #29292985;
    border:none;
    padding-top: 30px;
    padding-bottom: 30px;
    right:0%;
    margin-top: 20%;
    transition: .3s ease;
    cursor: url(imágenes/Cursores/link.webp), auto;
    border-radius: 5px;
    box-shadow: 0px 2px 2px 2px #33333350;
}

.prev_button{
    display: flex;
    position: absolute;
    color: #fff;
    font-weight: bold;
    font-size: 28px;
    background-color: #29292985;
    border:none;
    padding-top: 30px;
    padding-bottom: 30px;
    left:0%;
    margin-top: 20%;
    transition: .5s ease;
    cursor: url(imágenes/Cursores/link.webp), auto;
    border-radius: 5px;
    box-shadow: 0px 2px 2px 2px #33333350;
}

.prev_button:hover, .next_button:hover{
background-color: #292929d7;
box-shadow: 2px 2px 2px 0px #99999950;
transform: scale(1.1);
}

.display{
    display: flex;
    position: relative;
    background: #003366;
    left:0%;
    transition: 1.5s ease;
    height: 70vh;
    max-width: 100%;
    margin: 0px;
    img{
        aspect-ratio: 16/9 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
}

.carrousel_button{
    margin:10px;
    display: flex;
    position: relative;
    justify-content: center;
    background-color: #156EEB;
    padding:10px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px #888;
}

.carrousel .next {
    background-color: #fff;
    border-radius: 25px;
    display: flex;
    position: relative;
    height: 20px;
    width: 20px;
    transition: 0.35s ease;
    cursor: url(imágenes/Cursores/link.webp), auto;
    margin-left: 10px;
    outline:2px #ccc solid;
    box-shadow: 5px 5px 5px #888;
}

.carrousel .next:hover{
    background-color: #ccc;
    transform: scale(1.1);
}
/**Carrousel End*/

/**Calendario Start*/
.wrapper{
    width:106%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 3px 3px 3px 2px #999;
    padding: 0px;
    overflow: hidden;
    max-width: 106%;
    margin-left: -.5vw;
  }
  .wrapper .time{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(
        #156eeb,
        #156eeb,
        #003366
    ) ;
    margin: 0px;
    width: 100%;
    p{
        color:#fff;
        transition: .5s ease;
        text-shadow: 3px 3px #003366;
    }
  }
  .time .icons{
    display: flex;
    background: linear-gradient(
        #f4821e9e,
        #f4f11e9e,
        #f4821e9e
     ) ;
     outline: .8vw solid #f4f01e11;
     border: .5vw solid #f4821e08;
     border-radius: 50%;
     padding-top: .7vw;
     padding-bottom: .7vw;
     margin-left: .2vw;
     margin-right: .5vw;
}

  .time .icons span{
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 6vh;
    width: 3vw;
    margin: 0 1px;
    cursor: pointer;
    color: #fff;
    text-align: center;
    line-height: 3.8vh;
    font-size: 2.2rem;
    user-select: none;
    border-radius: 50%;
    transition: .5s ease;
    text-shadow: 2px 2px #003366;
  }
  .icons span:last-child{
  }
  .time .icons span:hover{
    background: #f2f2f2c2;
    color: #878787;
    text-shadow:none;
    box-shadow: 3px 2px 1px 1px #003366;
  }
  .time .current-date{
    width: fit-content;
    height: fit-content;
    font-size: 1.5vw;
    font-weight: bold;
    margin-right: 1vw;
    text-align: center;
    margin-left: .5vw;
  }
  .calendar{
    padding: .5vw;
    margin-left: 0px;
  }
  .calendar ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
    margin: 0px;
    padding: 0px;
  }
  .calendar .days{
    margin-bottom: 20px;
  }
  .calendar li{
    color: #333;
    width: calc(100% / 7);
    font-size: 100%;
  }
  .calendar .weeks li{
    font-weight: 500;
    cursor: default;
    background-color: #dadada;
    border-radius: 25px;
  }

  .calendar .days li{
    z-index: 1;
    cursor: pointer;
    position: relative;
    margin-top: 15px;
    transition: .3s ease;
  }
  .days li.inactive{
    color: #aaa;
  }
  .days li.active{
    color: #fff;
  }
  .days li::before{
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 35px;
    width: 35px;
    z-index: -1;
    border-radius: 50%;
    transition: .3s ease;
    transform: translate(-50%, -50%);
  }
  .days li.active::before{
    background: #9B59B6;
  }
  .days li:not(.active):hover::before{
    background: #ccc;
  }
  .days li:hover{
    transform: scale(1.1);
  }

  .fechas{
    display: flex;
    flex-direction: column;
    background: #f8f8d3;
    border-radius: 25px;
    padding: 5px;
    overflow: hidden;
    margin-top: 10px;
    margin-left: -5px;
    box-shadow: 3px 3px 3px #888;
    max-width: 100%;
    width: 100%;
    min-width: 100px;

    h2{
        background: linear-gradient(
        #b4a536,
        #ebd638,
        #ebcd38
        );
        text-align: center;
        margin-top: -4px;
        margin-left:-4px ;
        width: 104%;
    }
    ol{
        list-style: none;
        list-style-type: none;
        margin-left: -32px;
        overflow-y:scroll !important;
        max-height: 150px;
      }
    ol::-webkit-scrollbar-thumb{
        background:linear-gradient(
            #ebd646,
            #ebcd37,
            #564f1a
            );
    }
    ol::-webkit-scrollbar{
        background:#ffd500;
        width:8px;
    }
    ol::-webkit-scrollbar-track{
        background-color:#ede6bc;
    }

    li{
        padding-bottom:2px;
        border-bottom: 2px solid #ccc;
        box-shadow: 0px 1px #999;
        text-shadow: 0px 1px #999;
        font-weight: 500;
        width: 95%;
    }
    .contenido-fechas{
        display: flex;
        position: relative;
        left:0%;
        transition: 1.5s ease;
        margin: 0px;
        max-width: 100%;
        overflow: hidden;
    }
    .mes{
        display: flex;
        position: relative;
        flex-direction: column;
        margin:0px;
        width: 100%;
        h4{
            text-align: center;
            margin: 0px;
        }
    }
  }
/**Calendario End*/

/**Articulo Start*/
#articulo{
    position: relative;
    overflow: hidden;
    background-color: #fff;
    flex-direction: column;
    align-content: center;
    align-items: center;
    border-radius: 25px;
    margin:1vw;
    max-width:50vw;
    height: fit-content;
    margin-top: 0px;
    height: 0px;
    width: 0%;
    transition: 1s ease;
    border: 1px #ccc solid;
    z-index: 10;
    video{
        width: 100%;
        aspect-ratio: 16/9;
        display: flex;
    }
    iframe{
        display: none;
        width: 100%;
        aspect-ratio: 16/9;
        z-index: 0 !important;
    }
    img{
        width: 100% !important;
        max-height: 55vh;
    }
    h1{
        margin-top: 0px;
        margin-bottom: 0px;
        background:#181818;
        width: 100%;
        text-align: center;
        color: #fff;
    }
    p{
        margin:1.5vw;
        overflow-y: scroll;
    }
}
/**Abrir-Cerrar y Maximizar o Minimizar*/
.maximizar-minimizar,.cerrar_article{
    display: flex;
    position: absolute;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    background:#ffffffb2;
    color: #000;
    border-radius: 100%;
    border: 2px solid #292929;
    top: 1%;
    cursor: url(imágenes/Cursores/link.webp), auto;
    transition: .5s ease;
    z-index: 1;
    width: fit-content;
    font-size: 1.5vw;
    padding: .5vw;
    padding-left:.6vw !important;
    padding-right:.6vw !important;
    }

    .maximizar-minimizar{
        a{
            display: flex;
            position: relative;
            width: 100%;
            height: 100%;
        }
        left: 2%;
    }

    .cerrar_article{
        right: 3% !important;
    }

.cerrar_article:hover, .maximizar-minimizar:hover{
    background-color: #292929;
    color:#fff;
    border: 2px solid #fff;
    transform: scale(1.1);
}

/**Articulo End*/

}


/**Contactos*/
.teacher-fila{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin: 0px !important;
}

.teacher-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-left: 0px;
}

.teacher{
    display: flex;
    position: relative;
    flex-direction: row;
    margin-bottom: 1vw;
    margin-right: 3vw;
    background: linear-gradient(
    #fff,
    #ddd,
    #bdbdbd
    );
    border-radius: 25px;
    width: 100%;
    max-width: 25vw;
    max-height: fit-content;
    padding: 10px;
    box-shadow: 5px 5px 10px #888;
    transition: .3s ease;
    cursor: url(imágenes/Cursores/link.webp), auto;
}

.teacher:hover{
    background-color: #ccc;
    box-shadow: 0px 5px 5px 5px #888;
    transform: scale(1.05);
}

.teacher .d_text {
    font-weight: bold;
    margin-left: 5px;
}

.teacher .d_text h3{
    font-size: 2vw;
    color: #fff;
    background: #156eebdb;
    border-radius: .8vw;
    text-align: center;
    width: 15vw;
}

.teacher .d_text p{
    font-size: 1.5vw;
    color: #000 !important;
}

.teacher img {
    margin-right:0vw;
    width: 100%;
    max-width: 10vw;
    border-radius: 100%;
}
.localizacion{
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 5px;
    justify-content: center;
    align-items: center;
    align-content: center;
    border: none !important;
    background-color: none;
}

.localizacion iframe{
    margin: 20px !important;
    border-radius: 10px !important;
    width: 40vw;
    height: 60vh;
}

.localizacion span{
    color: #fff !important;
    margin-bottom: 20px !important;
    font-weight: bold !important;
    margin-left: 20px !important;
}
/**Contactos End*/

/**Contenido*/
.container {
    width: 100% !important;
    margin: 0 0px;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.main {
    display: flex;
    padding: 1vw;
}
.sidebar {
    width: 20vw;
    margin-right: 15px;
    margin-left: 2px;
}
.content {
    flex: 1;
}
.media{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 40vw;
    margin:none;
}
#fondo{
    transition: 1.5s ease;
    width: 100%;
    height: 100%;
    margin:none;
}
.media .b1{
    display: flex;
    position:   relative;
    align-items: center;
    font-weight: bolder;
    font-size: 30px;
    color: #fff;
    background-color: #156eeb;
    opacity: 12%;
    cursor: url(imágenes/Cursores/link.webp), auto;
    transition: 0.5s ease;
    border:none;
    left:6.2%;
}
.media .b1:hover{
    opacity: 100%;
    background-color: #156eeb8c;
}
.media .b2{
    display: flex;
    position:   relative;
    align-items: center;
    font-weight: bolder;
    font-size: 30px;
    color: #fff;
    background-color: #156eeb;
    opacity: 12%;
    cursor: url(imágenes/Cursores/link.webp), auto;
    transition: 0.5s ease;
    border:none;
    right:6.2%;
}
.media .b2:hover{
    opacity: 100%;
    background-color: #156eeb8c;
}
.contenido{
    display: inline-flex;
    flex-direction: row;
}
.centrador{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.Info-bar{
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    background-image: url(./imágenes/2daplantaoscura.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/**Contenido End*/

/**Expandable and Files Buttons*/
.expandable_item{
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    align-content: center;
    transition: .5s ease;
    margin: 10px;
    height: fit-content;
    max-width: 800px ;
    width: 100%;
}
.expandable_item h2{
    margin-bottom: 2px;
}
.expandable-btn{
    display: flex;
    background: #bee0ff;
    padding:15px;
    border-radius: 5px;
    text-align: center;
    justify-content: center;
    color: #003366;
    font-weight: BOLD;
    align-items: center;
    align-content: center;
    height: fit-content;
    cursor: url(imágenes/Cursores/link.webp), auto;
    max-width: 800px ;
    width: 100%;
    transition: .5s ease ;
    overflow: hidden;
    border: #156eeb00 2px solid;
}
.expandable-btn:hover, .exp-btn-content:hover{
    border: #156EEB 2px solid;
    box-shadow: 2px 5px 5px #888;
}
.expandable-btn i{
    margin-left: 5px;
    color: slateblue;
    font-weight: bold;
    font-size: 18px;
}
.exp-btn-content{
    display: flex;
    flex-direction: column;
    background-color: #cccccc36 !important;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 5px;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.5s;
    height: 0px;
    width: 0%;
    max-width: 900px;
    border: #156eeb00 2px solid;
.foto{
    aspect-ratio: 16/9;
    height: 350px !important; 
    width: 550px !important; 
}
}
.file_btn i {
    margin-left: 10px;
}
.exp-btn-content .file_btn a{
    width: 100%;
    height: 100%
}
.exp-btn-content .file_btn a:hover{
    font-size: 16px;
    background-color: #ccc;
}
.file_btn{
    display: flex;
    flex-direction: column;
    background-color: #cccccc6b !important;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 5px;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.5s;
    width: 100%;
    max-width: 900px;
    height: 50px;
    border: #156eeb00 2px solid;
    justify-content: center;
    align-items: center;
    align-content: center;
    cursor: url(imágenes/Cursores/link.webp), auto;
    transition: .5s ease;
    overflow: hidden;
}
.file_btn:hover{
    background-color: #ccc;
    box-shadow: 2px 5px 5px #888;
}
.file_btn a{
    display: flex;
    width: 100%;
    height: 100%;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    align-items: center;
    align-content: center;
    align-content: center;
    transition: 1s ease;
    margin:0px;
    text-decoration: none;
    color: #003366;
}
/**Expandable and Files Buttons End*/

/**Login and Register*/
.login{
    display: flex;
}
.register{
    display: none;
}
.login, .register{
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    input{
        margin: 5px;
        width: 80%;
        background-color: #ccc;
        border: none;
    }
    input::placeholder{
        font-weight: bold;
    }
    button{
        border: rgb(185, 185, 184) 2px solid;
        width: 80%;
        font-weight: bold;
        cursor: pointer;
        background-color: #156eeb;
        color: #fff;
        font-size: 120%;
        transition: .5s ease;
    }
    button:hover{
        border: sandybrown 2px solid;
        color: sandybrown;
    }
    h3{
        background-color: #156eeb;
        color: #fff !important;
        margin-bottom: 0px;
        width: 100%;
        justify-content: center;
        text-align: center;
        margin-top: 0px;
        border-radius: 15px;
        padding: 5px;
        font-weight: bold;
        font-size: 150% !important;
    }
    p{
        margin-top: 0px;
        font-weight: bold;
        font-size: 100% !important;
    }
    span{
        text-align: center;
        font-size: 80%;
        margin: 10px;
        a{
            margin-left: 5px;
        }
    }
}
/**Login and Register End*/

/**Icons*/
.icon{

}
/**Icons End*/

/**Content Start*/

/**Content End*/

/**Realidad Virtual Inicio*/
.VR{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: #eee;
    width: 90%;
    padding: 1vw;
    border-radius: 1vw;
    margin-top: -2vh;
    z-index: 1;
    a{
        text-decoration: none !important;
    }
    .file_btn{
        justify-content: center;
        align-items: center;
        align-content: center;
        width: 300% !important;
        background: none;
        a{
            text-decoration: none;
            font-size: 2vw;
            font-weight: bolder;
            color: #fff !important;}
            background: #0270b1 !important;
    }
}
.lugares{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
    overflow: hidden !important;
    background: #f9f9f9;
    border-radius: 1vw;
    .expandable_item{
        .exp-btn-content{
            background: #ffffffc0 !important;
        }
    }
    }

/**Realidad Virtual Final*/


 /**Mobile Phone PORT - Adaptación a Celulares*/
 @media (max-width: 768px) {
    body{
        overflow-x:hidden !important;
        width: 100%;
    }
.nov{
    height: 70vh;
}
.content{
    max-width: 100%;
    overflow: hidden !important;
}
.correo{
    right: 5%;
    font-size: 10vw;
    padding: 2vh;
}
.banner_buttons{
    bottom: 0% !important;
    width: 100% !important;
    a{
        font-size: 3.5vw !important;
    }
}
.banner_buttons2{
    width: 100% !important;
    a{
        font-size: 3.5vw !important;
    }
}
    .banner_text{
        h1{
            font-size:10vw !important;
            line-height: 6vh !important;
        }
        h3{
            font-size: 5vw !important;
            margin-left: 5vw !important;
        }
    }
    .footer{
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow: hidden;
        justify-content: center;
        align-items: center;
        .contacts{
            width: 90%;
            margin: 2vw;
        }
        p{
            width: 90%;
          }
    }
    .content{
        .card{
            margin-left: 0vw !important;
            margin-right: 0vw !important;
        }
    }
.centrador{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: 2vh;
    a{
        font-size: 10vw;
    }
}
    .card{
        width: 100%;
        margin: 0px;
        margin-bottom: 1vh;
        border-radius: 0px;
        justify-content: center;
        align-items: center;
        align-content: center;
        h3{
            text-align: center;
        }
        p {
            color: #333333;
            line-height: 1.5 !important;
            width: 100% !important;
            margin: 0px;
            margin-left: 0%;
            font-size: 5vw !important;
        }
        .mostrador{
            width: 90% !important;
        }
    }
    .img-container{
        max-width: 100% !important;
        margin-left: -6% !important;
        img{
        border-radius: 0px !important;
        max-width: 100% !important;
        }
    }

    .card_itemv2{
        max-width: 800% !important;
        max-height: 50% !important;
        h4{
            font-size: 5vw;
        }
    }
    #articulo{
        display: none;
        position: fixed;
        max-width: 105% !important;
        min-width: 105% !important;
        width: 100% !important;
        max-height: 100%;
        height: 100% !important;
        top: 0%;
        left: 0%;   
        margin: 0vw;
        margin-left: 0% !important;
        overflow-y: scroll !important;
        border-radius: 0px !important;
        img{
            aspect-ratio: 9/16 !important;
        }
        #nombre{
            width: 110% !important;
        }
        iframe{
            margin: 0px !important;
            aspect-ratio: 4.5/ 3.5 !important;
        }
        .maximizar-minimizar{
            display: none;
        }
        .maximizar-minimizar,.cerrar_article{
            position: relative !important;
            justify-content: center;
            align-content: center;
            align-items: center;
            text-align: center;
            background:#ffffffb2;
            color: #000;
            border-radius: 0%;
            border: 0px solid #292929;
            top: 0%;
            left: 0%;
            cursor: url(imágenes/Cursores/link.webp), auto;
            transition: .5s ease;
            z-index: 100000000 !important;
            width: 100%;
            font-size: 12vw !important;
            margin: 0px;
            }
        .img{
            width: 100% !important;
            max-width: 100% !important;
            margin: 0px;
            left: 0% !important;
            img{
                width: 100% !important;
                left: 0% !important;
                aspect-ratio: 16/9 !important;
            }
        }
        #contenido{
            font-size: 5vw !important;
            overflow-y: scroll;
        }
    }
    .header{
        display: flex;
        position: relative !important;
        flex-direction: column;
        width: 100%;
        height: fit-content;
        left: 0%;
        margin: 0px;
        border-radius: 0px;
        padding: 0px;
        overflow: hidden;
        .logo_img_text p{
            margin-left: 1vw;
            color: #000 !important;
            text-align: center !important;
        }
    }
    .header.abajo{
        position: relative !important;
    }
    .logo{
        width: fit-content;
        height:fit-content;
        aspect-ratio: 1/1;
        width: 25vw;
        margin-top: 2vh ;
    }
    .logo_img_text{
        display: flex;
        position: relative;
        flex-direction: column;
        width: 100%;
        justify-content: center !important;
        align-items: center !important;
        align-content: center !important;
        text-align: center !important;
        p{
            font-size: 5vw;
            width: fit-content;
        }
    }
    #nav{
        flex-direction: column;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0px;
        left: -5%;
        li{
            display: flex;
            position: relative;
            margin-top: 2vh;
            max-width: 100% !important;
            width: 100%;
        }
        a{
            font-size: 7vw;
            border-bottom: solid .5vh #eee;
            max-width: 100% !important;
            width: 100%;
        }
        .institucion_options{
            display: none;
            flex-direction: column;
            position: relative;
            cursor: url(imágenes/Cursores/link.webp), auto;
            text-decoration: none;
            background-color: #eee;
            list-style:none;
            overflow: hidden;
            height: 0%;
            margin: 0px;
            justify-content: center;
            align-items: center;
            align-content: center;
            transition: .5s ease;
            border-radius: 0px;
            padding: 0px;
            left: 0%;
            max-width: 100%;
            max-height: fit-content;
            text-align: center;
        }
        .expand_arrow{
            display:none !important;
            font-size: 0vw !important;
        }
        
        .close_arrow{
            display:none !important;
            font-size: 0w !important;
        }
    }
    .main{
        display: flex;
        position: relative;
        flex-direction: column;
        max-width: 100% !important;
        margin: 0px;
        padding: 0px !important;
        .sidebar{
            width: 95.5% !important;
            margin: 0px !important;
        }
    }

    .carrousel{
        max-width: 100% !important;
        max-height: 35vh;
        width: 100% !important;
        margin: 0px !important;
        margin-left: -3% !important;
        padding: 0px;
        border-radius: 0px;
        .next_button, .prev_button{
            display: none;
        }
        .display{
            display: flex;
            overflow-x: scroll;
            height: 150vh !important;
            margin: 0px !important;
            box-shadow: none;
            max-width: 100% !important;
            min-width: 100% !important;
            width: 100% !important;
            background: none !important;
            img{
                display: flex;
                position: relative;
                max-width: 100% !important;
                min-width: 100% !important;
                width: 100% !important;
                aspect-ratio: none !important;
            }
        }
        .display::-webkit-scrollbar{
        display: none !important;
        }
        .carrousel_button{
            display: none;
        }
        .display_text, .display_text1 , .display_text2 , .display_text3 {
            display: flex;
            flex-direction: column;
            width: 100%;
            position: absolute;
            bottom: 6%;
            left:0%;
            background-color: #292929bd;
            height:7vh;
        }
        
        .display_text, .display_text1, .display_text2, .display_text3{
            h1{
                color: #fff;
                font-size: 7vw !important;
                margin-top: 0vh;
                margin-left: 3vw !important;
            }
        }
        
        .display_text , .display_text1, .display_text2, .display_text3{
            p{
                color: #fff;
                font-size: 5vw !important;
                margin:0px;
                margin-top: -1vh;
                margin-left: 3vw;
            }
        }
        
        
        .display_text1{
            left:100%;
        }
        
        .display_text2{
            left:200%;
        }
        
        .display_text3{
            left:300%;
        }
        
    }
.formulario{
    max-width:100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    align-items: center;
    align-content: center;
    .form_inputs h2,p{
        text-align: left;
    }
    .form_inputs h2{
        margin-bottom: 0px;
        font-size: 4vh;
        font-weight: bold;
        letter-spacing: 0px;
    }
    
    .form_inputs p{
       color:#999999;
       font-size: 5vw;
    }
    
    .cerrar_form{
        text-align: end;
        color: #fff;
        font-size: 4vh !important;
        width: fit-content !important;
        height: 2.2vh !important;
        padding: 2.4vw !important;
        justify-content: center;
        align-items: center;
        align-content: center;
        outline: #000 2px solid;
        position: absolute;
        display: flex;
        right: 6%;
        top: 3%;
        margin: 0px;
        background-color: #11111180;
        border-radius: 100%;
        cursor: url(imágenes/Cursores/link.webp), auto;
        transition: .5s;
    }
    
    .cerrar_form i{
        transition: .3s ease;
    }
    
    .cerrar_form:hover{
        outline: #ff7300 2px solid;
        color:#ff7300 !important;
        transform: scale(1.1);
        i{
            transform:rotate(360deg);
        }
    }
    
    .btn{
        background:#156EEB;
        border:2px solid #ccc;
        padding:.2vw;
        color:#ccc;
        font-weight: bold;
        font-size: 10vw;
        width: 70vw;
        justify-content: center;
        display: flex;
        position: relative;
        border-radius: 2vw;
        margin-left: -5vw !important;
        margin-top: 1vw;
        cursor: url(imágenes/Cursores/link.webp), auto;
        transition: .5s ease;
        outline: 2px solid;
    }
    .btn:hover{
        outline: #ff7300 2px solid;
        color:#ff7300 !important;
        transform: scale(1.043);
    }
    
    label{
        color:#fff;
        font-weight:bold;
        margin-bottom: 1.5vh;
        margin-top: 1vh;
        color:#000;
        border-radius: 0px;
        font-size: 5vw;
    }
    
    .form_inputs{
        display: flex;
        flex-direction: column;
        position: relative;
        margin-left: 45px;
        margin-right: 45px;
        margin-top: 45px;
        text-align: left;
    }
    
    #name, #phone, #email, #message {
        margin-bottom: 10px;
        border:none;
        border-bottom: 1px #ccc solid;
        width: 100% !important;
        height: fit-content !important;
        font-size: 2vh;
        outline: none;
        padding-bottom: 10px;
        cursor: url(/imágenes/Cursores/beam.webp), auto;
    }
    
    #message{
        height:4vh !important;
    }
    
    #name::placeholder, #phone::placeholder, #email::placeholder, #message::placeholder{
        color: #999999;
    }
}
.expandable_item{
    max-width: 100% !important;
    width: 100% !important;
    padding: .2% !important;
    margin: 0px !important;
    border-radius: 0px !important;
    margin-top: 1vh !important;
    margin-bottom:1vh !important;
}
.card{
    .file_btn{
        margin-left: -10vw !important;
        width: 100% !important;
    }
}
.card .expandable_item{
    margin: 0px;
    width: 100%;
    margin-left: -2% !important;
}
.exp-btn-content{
    text-align: center;
.file_btn{
    width: 100% !important;
    margin: 0px;
    margin-left: -10% !important;
}}
.expandable-btn{
    max-width: 100% !important;
    width: 94% !important;
    padding: 3% !important;
    margin: 0px !important;
    border-radius: 0px !important;
}
.exp-btn-content{
    display: flex;
    flex-direction: column;
    background-color: #cccccc36 !important;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 0px;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.5s;
    height: 0px;
    width: 0%;
    max-width: 100%;
    border: #156eeb00 2px solid;
    a{
        width: 90% !important;
    }
    img{
        aspect-ratio: 16 / 9;
        height: 30vh !important;
        width: 100% !important;
        border-radius: 0px !important;
        box-shadow: 0px 2px 5px 3px #888;
        margin: 1vw !important;
    }
.foto{
    aspect-ratio: 16/9;
    height: 10% !important; 
    width: 30% !important; 
}
}
.wrapper{
    max-width: 100% !important;
    min-width: 100% !important;
    width: 100%;
    margin: 1vw;
    margin-left: 0px;
    .calendar{
        font-size: 6vw !important;
    }
    .time{
        width: 100%;
        height: 20vh;
        #mes_año{font-size: 8vw !important;
        margin-left: 2vw !important;}
    .icons{
        padding-top: 2.5vh !important;
        padding-bottom: 2.5vh !important;
        padding-right: .5vw !important;
        padding-left: .5vw !important;
        margin-left: 2vw !important;
    }
    .icons span{
        width: 20vw;
        height: 10vh;
        justify-content: center;
        align-items: center;
        align-content: center;
        font-size: 15vw !important;
    }
    }
}
.Info-bar{
    display: flex;
    position: relative;
    flex-direction: column !important;
    width: 100%;
    .localizacion{
        width: 100%;
        margin: 0px;
        margin-top: 4vh;
        iframe{
            position: relative;
            width: 90% !important;
            height: 90%;
            aspect-ratio: 1 / 1;
            margin: 0px !important;
        }
    }
}
.card_topic{
    width: 120% !important;
    left: -8% !important;
}
.long_text{
    width: 100% !important;
    left: -6% !important;
    margin: 0px;
    img{
        width: 120% !important;
        margin: 0px !important;
        margin-left: -4% !important;
    }
}
.teacher{
    max-width: 100% !important;
    width: 70% !important;
    margin-top: 2vh ;
    img{
        max-width: 22vw !important;
        max-height: fit-content;
        height: 90%;
        aspect-ratio: 16 / 9 !important;
        right: 2% !important;
        position: absolute;
    }
    .d_text{
        h2{
            font-size: 7vw;
        }
        p{
            font-size: 5vw;
        }
    }
}
.teacher-fila{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100% !important;
    margin: 0px;
    margin-left: -6vw !important;
}
.teacher-column{
    width: 100%;
}
.img{
    max-width:100% !important;
}
#magnifying_area{
    display: flex;
    max-width: 120% !important;
    aspect-ratio: 16 / 9 !important;
    width: 110% !important;
    height: 45vh;
    margin: 0px;
    left: 3%;
    img{
        position: relative;
    }
}
#magnifying_area::-webkit-scrollbar{
    display: none;
}
.AD{
    margin-top: 5vh !important;
}
.config_content{
    display: none;
}
.card_itemv2{
    h4{
        display: flex;
        bottom: 10% !important;
        width: 90% !important;
        text-align: justify;
        line-height: 4vh;
        font-size: 7vw !important;
    }
    p{
    bottom: 8% !important;
    left: 5% !important;
    font-size: 5vw !important;
    }}
    .fechas{
        width: 70% !important;
        margin-left: 12%;
    }

    /**Realidad Virtual Inicio*/
.VR{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: #eee;
    width: 100%;
    padding: 1vw;
    border-radius: 1vw;
    margin-left: -7vw;
    margin-top: -2vh;
    z-index: 1;
    .file_btn{
        display: flex;
        flex-direction: column;

        justify-content: center;
        align-items: center;
        align-content: center;
        width: 90% !important;
        max-width: 100%;
        margin-left: 0vw !important;
        background: none;
        a{
            width: 100%;
            text-decoration: none;
            font-size: 2vh;
            font-weight: bolder;
            color: #fff !important;}
            background: #0270b1 !important;
    }
}
.lugares{
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden !important;
    border-radius: 1vw;
    margin: 0px !important;
    margin-left: -9vw !important;
    .expandable_item{
        max-width: 100% !important;
        width: 100% !important;
        .exp-btn-content{
            background: #ffffffc0 !important;
        }
    }
    .expandable-btn{
        max-width: 100% !important;
        min-width: 100% !important;
        margin-left: 7.5vw !important;
        width:100% !important;
        box-shadow: .5vh .5vh .5vh .1vh #003366;
    }
    .exp-btn-content{
        max-width: 100% !important;
        min-width: 100% !important;
        width:100% !important;
        margin-left: 7.5vw !important;
        box-shadow: .5vh .5vh .5vh .1vh #003366;
    }
    }
/**Realidad Virtual Final*/

/**Item Start*/
#categorias{
    display: inline-flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    margin: 0px !important;
    margin-top: 5vh !important;
    margin-bottom: 5vh !important;
    min-width: 100% !important;
    max-width: 100%;
    min-height: fit-content;
    max-height: fit-content;
    overflow-x: scroll;
}
.categoria{
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    align-content: center;
    max-width: 60vw;
    min-width: 60vw;
    height: 25vh !important;
    margin: 0px !important;
    border-radius: 1vh;
    transition: .5s ease;
    overflow: hidden;
    cursor: pointer !important;
    img{
        position: absolute;
        width: 100%;
        height: 100%;
        min-height: 100%;
        min-width: 100%;
        filter: brightness(50%) blur(1px);
        z-index: 0;
    }
    .categoria_text{
        span{
            font-size: 4vh;
        }
    }
    .stylished{
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        top: 100%;
        position: absolute;
        background: #36b44999;
        width: 100%;
        height: 100%;
        z-index: 10 !important;
        transition: .5s ease;
        .border{
            width: 90%;
            height: 90%;
            border: 4px solid rgba(0, 128, 0, 0.864);
        }
}
}
.categoria:hover{
    height: 30vh !important;
    box-shadow: 1vh 1vh 1vh #999;
    }
    .categoria.back{
    font-size: 4vh;}
/**Item End*/

 }

