:root{
    --logotipo: #1a1a1a;
    --profesion: #f2f2f2;
    --primario: #2e5fff;

}
*{
padding: 0;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.Contenido-Total{
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    
}
/**
------------------pagina Inicio Con encabezado y pie de pagina en todas
------------------las paginas------------------------------------------
----------------Encabezado--------------

**/
.Contenido-Encabezado{
    width: 97%;
    text-align: center;
    height: 200px;
    margin: auto;
    overflow: hidden;
}
.Contenido-Encabezado .Logo{
    
    float: left;
        
}
.Contenido-Encabezado .Logo img{
    width: 35%;
    max-width: 100%;
}
.Contenido-Encabezado .redesociales{
    float: right;
}
.Contenido-Encabezado .redesociales .contacto{
    float: left;
    position: relative;
    width: 220px;
    top:25px;
    
}
.Contenido-Encabezado .redesociales .redes{
    float: right;
}
.Contenido-Encabezado .redesociales .contacto img{
    position: relative;
    top: 10px;
}
.Contenido-Encabezado .redesociales .contacto .menucontacto{
    top:110px;
    margin-left: -50px;
    position: relative;
}
.Contenido-Encabezado .redesociales .contacto a{
    color: black;
    font-size: 1.0em;
    line-height: normal;
    font-weight: bold;
    -webkit-transition:all 800ms ease;
	-o-transition:all 5800ms ease;
	transition:all 800ms ease;padding: 10px 15px;
}
.Contenido-Encabezado .redesociales .contacto a:hover{
    background: rgb(46, 182, 245);
    border-radius: 10px 10px 10px 10px;
}
.Contenido-Encabezado .redesociales strong{
    font: 1.5em;
    position: inherit;
    top: 10px;
}
.Contenido-Encabezado .redesociales span{
    opacity: 0.8;
    font-size: .95em;
    position: absolute;
    
    
}
.Contenido-Encabezado .redesociales .redes div{
    width: 40px;
    height: 40px;
    margin-top: 20px;
    margin-left: 10px;
    font-weight: bold;
    border-radius: 50%;


}
.Contenido-Encabezado .redesociales .redes img{
    width: 100%;
    margin-right: 5px;
    line-height: 20px;
    position: static;
}
.Contenido-Encabezado .redesociales .fb{
    margin-top: 50px;
}
/**
*
----------------------------Inicio Menu----------------------
**/

.Contenido-Menu{
    width: 100%;
    overflow: hidden;
    background-color: #1495E0;
    word-wrap: break-word;
    
}

.Contenido-Menu #btn-menu{
    display: none;
}
.Contenido-Menu label{
    display: none;
    width: 58px;
    height: 58px;
    padding: 5px;
}
.Contenido-Menu label:hover{
    cursor: pointer;
    background: rgb(0, 0, 0, 0.1);
}
.Contenido-Menu nav{
    line-height: 100px;
    text-align: center;
}
.Contenido-Menu nav a{
    font-size:1.25em;
    color: white;
    text-decoration: none;
    padding:10px 15px;
    line-height: normal;
    font-size: 1.2em;
    font-weight: bold;
    -webkit-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}
.Contenido-Menu nav a:hover{
    
	background:#2e7903c9 ;
	border-radius:50px;
}


/**


----------------Inicio depagina contenido----------------------
***************Logo*******************
*
**/


.Contenido-Inicio{
    width: 100%;
    max-width: 1500px;
    margin-top: 50px;
    overflow: hidden;
}
.Contenido-Inicio .iniciojnum{
    width: 80%;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.Contenido-Inicio .iniciojnum .eslogan{
    color: rgba(34, 33, 33, 0.8);
    font-size: 1em;
    margin-top: 20px;
}
.Contenido-Inicio .iniciojnum p{
    font-size: 1.6em;
    margin-top: 25px;
}
.Contenido-Inicio .iniciojnum b{
    
    color: red;
}
/**

-------------Servicio social-------------

**/

.Contenido-Inicio main a{
    text-decoration: none;
    color: #fff;
    outline: none;
}
.Contenido-Inicio main{
    width: 90%;
    margin: auto;
    max-width: 800px;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.Contenido-Inicio .mensaje{
    padding: 10px;
    border: 5px solid var(--logotipo);
    color: var(--logotipo);
}
.Contenido-Inicio .mensaje .subtitulo{
    text-align: center;
    color: var(--profesion);
    background: var(--logotipo);
    padding: 12px 20px;
    transition: .5s ease all;
    font-size: 1.8em;
    font-family: 'Noto Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px; 
}

.Contenido-Inicio .mensaje:hover .subtitulo{
    background: var(--primario);
}


.texto-animado{
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.texto-animado > div{
    display: flex;
    flex-direction: column;
    position: relative;
    transition:  .3s ease all;
}

.texto-animado > div.animacion {
    transform: translateY(-100px);
}



.texto-animado > div > span{
    font-size: 2.5em;
    font-weight: bold;
    line-height: 100px;
}
.texto-animado .segunda-linea{
    position: absolute;
    top:100px;
}

@media screen and (max-width:600px){
    .texto-animado > div span{
        font-size: 5vw;
        line-height: 50px;
    }
    .texto-animado .segunda-linea{
        top: 50px;
    }
    .texto-animado > div.animacion{
        transform: translateY(-50px);
    }
    .mensaje .subtitulo{
        font-size: 4vw;
    }
}
/**

---------------Inicio Video------------------

**/
.Videos{
    width: 80%;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    
}
.Videos iframe{
    width: 100%;
    height: 600px;
}
/**

------------------Prezi------------------

**/
.prezi{
    width: 80%;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.prezi iframe{
    width: 100%;
    height: 500px;
    margin-top: 50px;
}
/**

------------------------------Tabla OJNUM--------------

**/
.Tabla{
    width: 90%;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    margin-top: 50px;text-align: center;
}
.Tabla table, td, tr{
    border-spacing: 0;
}
.Tabla table td{
    
    width: 33%;
    max-width: 35%;
    height: 605px;
    border: 1px solid rgb(0, 0, 0, 0.5);
    display: inline-block;
}
.Tabla table h2{
    text-align: initial;
    margin-left: 5px;
    margin-top: 10px;
}
.Tabla table p, li{
    width: 95%;
    margin-top: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    font-size: 0.95em;
    color: rgba(19, 18, 18, 0.8);
    text-align: initial;    
    margin-left: auto;
    margin-right: auto;
}
.Tabla table ul{
    width: 91%;    
    margin-left: auto;
    margin-right: auto;
}
@media all and (max-width:1000px){
    .Tabla table td{
        height: 700px;
    }
}
@media all and (max-width:965px){
    .Tabla table td{
        height: 750px;
    }
}
@media all and (max-width:900px){
    .Tabla table td{
    width: 90%;
    max-width: 95%;
    height: auto;
    }
}
/*

------------------PIE de Página------------------------

*/
.Piepagina{
    width: 100%;
    height: 60px;
    margin-top: 50px;
    background: black;
}
.Piepagina .PieContacto{
    float: left;
    color: azure;
    margin-left: 5%;
    margin-top:  20px;
}
.Piepagina .Piecontenedor .Titulopiedepagina{
    float: right;
    color: white;
    margin-top: 20px;
    margin-right: 5%;
    font-size: .95em;
}
@media all and (max-width: 854px){
    .Contenido-Encabezado .Logo img{
        float:left;
        width: 30%;
        margin-top: 10px;
        margin-left: 50px;
    }
    .Contenido-Encabezado .redesociales{
        margin-top: -180px;
    }
}
@media all and (max-width: 613px){
    .Contenido-Encabezado {
    height: auto;
    }
    .Contenido-Encabezado .Logo img{
        float: center;
        width: 50%;
        margin-left: 30%;

    }
    .Contenido-Encabezado .redesociales{
        float: left;
        margin-left: 34%;
    }
    .Contenido-Encabezado .redesociales .redes{
        margin-top: 150px;
    }
    .Contenido-Encabezado .redesociales .contacto{
        margin-top: 160px;
    }
    .Contenido-Encabezado .redesociales .contacto img{
        width: 35px;
    }
    .Contenido-Encabezado .redesociales span{
        font-size: 3.2vw;
    }
    /**------------inicio Menu--------**/
    .Contenido-Menu{
        width: 90%;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    .Contenido-Menu label{
        display: block;
    }
    .Contenido-Menu .Titulomenu{
        display: block;
    }
    .Contenido-Menu nav{
        display:grid;
        position: absolute;
        width: 100%;
        max-width: 600px;
        margin-left: -150%;
        transition: all 0.5s;
        background: #1495E0;
        
    }
    .Contenido-Menu nav a{
        width: 100%;
        border: 1px solid #fff;
    }
    .Contenido-Inicio{
        position: relative;
    }

    .Contenido-Menu #btn-menu:checked ~ nav{
        margin-left: 0;
        position: relative;
    }
    .Contenido-Menu .Titulomenu{
        float: right;
        position: relative;
        margin-bottom: -50px;
        margin-right: 20px;
        margin-top: -50px;
        color: ivory;
        font-size: 1.2em;
    }

}

@media all and (max-width:520px){
    .Contenido-Encabezado .redesociales{
        margin-left: 30%;
    }
}

@media all and (max-width:450px){
    .Contenido-Encabezado .redesociales{
        margin-left: 20%;
    }
    .Contenido-Encabezado .redesociales span{
        font-size: 4.2vw;
    }
}
@media all and (max-width:410px){
    .Contenido-Menu .menus a{
        font-size: 0.9em;
    }
    .Piepagina div{
        font-size: 4vw;
    }
    
}
@media all and (max-width:378px){
    .Contenido-Encabezado .redesociales{
        margin-left: 12%;
    }
}
@media all and (max-width:344px){
    .Contenido-Encabezado .redesociales{
        margin-left: 4%;
    }
}

@media all and (max-width:315px){
    .Contenido-Encabezado{
        height: 320px;
    }
    .Contenido-Encabezado .redesociales .redes div{
        width: 30px;
        height: 30px;
    }
    .Contenido-Encabezado .redesociales .contacto a{
        font-size: 1em;
    }
}
@media all and (max-width:305px){
    .Contenido-Encabezado .redesociales .redes{
        float: left;
        margin-top: 35px;
    }
    .Contenido-Menu nav{
        text-align: initial;
    }
}








