@charset "UTF-8";
/*----- Archivo de estilos generales del sitio -----*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  background-color: #D8E4F0;
}

body{
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    background-color: #D8E4F0;
}


header .logoUnam {
    display: flex;
    flex-direction: column;
    background-color: #A0BBD2;
    flex-grow: 2;
    justify-content: center;
    text-align: center;
    padding-top: 5px;
}

header .logoUnam a{
    display: flex;
    flex-direction: column;
    max-height: 100%;
    background-color: #A0BBD2;

}

header .logoUnam img{
    max-width:80px;
    align-self: center;
    background-color: #A0BBD2;
}

header .logoCeiich{
    display: flex;
    flex-direction: row;
    padding: 10px 40px;
    flex-grow: 3;
    background-color: #D8E4F0;
    justify-content: flex-end;
    padding-top: 5px;
}

header .logoCeiich img{
    height:100px;
    background-color: #D8E4F0;
    justify-self: flex-end;
    padding: 0 5px;
}

header .logoCeiich a{
    text-align: right;
    align-self: center;
    background-color: #D8E4F0;
}

header .logoCeiich .logo35{
    position: absolute;
    opacity: 0;
    transition: all 500ms ease-out;
}

header .logoCeiich:hover > .logo35{
    opacity: 1;
    transition: all 700ms ease-out;
}

header .logoCeiich .logoNormal{
    opacity: 1;
    transition: all 700ms ease-out;
}

header .logoCeiich:hover > .logoNormal{
    opacity: 0;
    transition: all 300ms ease-out;
}


.letter{
    background-color: #D8E4F0;
    text-decoration: none;
    color: #051A6F;
    font-size: 20px;
    margin: 5px;
}

.letter2{
    background-color: #D8E4F0;
    text-decoration: none;
    color: #051A6F;
    font-size: 25px;
    margin: 5px;
}
 
.parallax {
    background-image: url("../src/images/mobile.png");
    background-size: auto;
    min-height: 50px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

body .up{
    position: fixed;
    font-size: 40px;
    display: inline-flex;
    background-color: #5B8FD6;
    color: white;
    padding: 5px 11px;
    border-radius: 50%;
    cursor: pointer;
    bottom: 15px;
    right: 15px;
    z-index: 999;
}

body:hover > .up{
    font-size: 50px;
    bottom: 20px;
}
/*****************************+ termina encabezado de imagenes, comienza menu**********************/
nav .menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #F5F6FA;
    align-items: center;
    font-size: 20px;
}


ul .menu{
    display: flex;
    flex-direction: row;
    list-style:none;
    background-color: #F5F6FA;
    justify-content: space-around;
    padding: 0 15px;
    align-items: center;
}

nav ul li .home{
    border-radius: 50%;
}

nav .fa-home{
    font-size: 25px;
    background-color:#F5F6FA;
    transition: all 400ms ease-out;
    border-radius: 3px;
}

nav .home:hover > i{
    background-color: #1A5BA7;

}

.menu ul li{
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #F5F6FA;
    position:relative;
    margin:0;
    padding:0;
    
}

.menu ul a{
    display:flex;
    flex-direction: row;
    justify-content: center;
    color:navy;
    text-decoration:none;
    font-weight:400;
    font-size:15px;
    padding:10px;
    text-transform: uppercase;
    background-color: #F5F6FA;
    text-align: center;    
}

.menu ul li:hover > a{
    border-radius: 1px;
    background-color: #1A5BA7;
    color: white;
    transition: all 200ms ease-out;
    justify-self: center;
    width: 100%;
    font-size: 18px;
    text-decoration: none;
}

.menu ul ul {
    display: none;
    position:absolute;
    top:100%;
    padding:0;
}

.menu ul ul li {
    width:150px
}

.menu ul ul a {
    line-height:120%;
    padding:10px 15px;
}

.menu ul li:hover > ul {
    display:flex;
    flex-direction: column;
    z-index: 44;
}


nav .menu ul li .fa-home:hover > a{
    background-color: #1A5BA7;
    border-radius: 50%;
    transition: all 400ms ease-out;
    text-decoration: none;
    display: flex;
}

nav .fa-home:hover{
    background-color: #1A5BA7;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    transition: all 400ms ease-out;
    color: white;
}

/************************ comienza pagina*******************/

main{
    display: flex;
    flex-direction: column;
    border-top: 2px solid #862660;
}


/************************ slider principal *******************/
main .swiper-container {
    background-color: #A0BBD2;
    width: 100%;
    height: 450px;
    margin-top: 25px;
}

main .swiper-container .swiper-pagination{
    background-color: rgba(0, 0, 0, 0.0);
}

main .swiper-container .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.7);
}

main .swiper-container  .swiper-pagination-bullet-active{
    width: 20px;
    height: 20px;
    background-color: #5B8FD6 ;
}

main .swiper-container .swiper-slide img{ 
    width: 100%;
    height: 100%;

}
/************************ Agenda *******************/

main .agenda{
    display: flex;
    justify-content: center;
    background-color: #A0BBD2;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 30px;
    align-items: center;
}

main .agenda a{
    background-color:#A0BBD2 ;
    cursor: pointer;
    color: #862660;
    transition: all 300ms ease-out;
    padding: 0 15px;
}

main .agenda a:hover{
    font-size: 30px;
    background-color: #862660;
    color:#A0BBD2;
    transition: all 300ms ease-out;
    padding: 10px;
    border-radius: 15px;
}

/************************ Noticias *******************/
main .notices{
    display: inline-flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 15px;
    width: 100%;
    flex-wrap: wrap;
    border-bottom: 2px solid #862660;
    padding-top: 25px;
    transition: all 500ms ease-out;
}

main .notices div{
    display: flex;
    width: 33.33%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    align-items: center;
    flex-wrap: nowrap;
}

main .notices .blue{
    align-items: center;
    background-color: #1A5BA7; 
    transition: all 400ms ease-out;
    font-size: 15px;
    border-radius: 10px;
}

main .gray{
    background-color: #4A4B6A;
    transition: all 400ms ease-out;
    margin: 3px;
    font-size: 15px;
}

main .gray p{
    background-color: #4A4B6A;
    transition: all 400ms ease-out;
    padding: 8px 0;
}

main .blue p{
    background-color: #1A5BA7;
    transition: all 400ms ease-out;
    padding: 8px 0;
}


main .blue:hover > p{
    font-size: 25px;
    border-radius: 1px;
    justify-content: center;
    text-align: center;
    transition: all 500ms ease-out;
}

main .gray:hover > p{
    font-size: 25px;
    border-radius: 1px;
    justify-content: center;
    text-align: center;
    transition: all 500ms ease-out;
}
main .notices div a{
    width: 90%;
    text-decoration: none;
    color: white;
    text-align: center;
    align-items: center;
}

main .notices div:hover a{
    flex-grow: 3px;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        Comunicados    */

.galeria{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

}

.galeria img{
    width: 150px;
    margin: 40px;
    transition: all ease-out 600ms;
}

.galeria img:hover{
    width: 170px;
    margin: 40px;
    transition: all ease-out 600ms;
}

/************************ Novedades editoriales *******************************/
body .novedadesEditoriales{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    border-bottom: 2px solid #862660;
    padding-top: 25px;
    text-align: center;
    overflow: none;
    background-color: white;
}

.subtittle{
    color:#1A5BA7;
    padding-bottom: 30px;
    background-color: white;
}

.swiper-editoriales{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: white;
    display: flex;
    flex-direction: row;
}

.swiper-editoriales .swiper-slide{
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: white;
    transition: all 500ms ease-out;
    background: rgba(255,255,255,1);
    flex-direction: column;
}

.swiper-editoriales .swiper-slide .color{
    width: 220px;
    height: 100%;
    display:flex;
    flex-direction: column;
    background-color: white;
    z-index: 20;
    position: absolute;
    height: 100%;
    opacity: 0.3;
    transition: all 500ms ease-out;
    visibility: visible;
}

.swiper-editoriales .swiper-slide p{
    color: #862660;
    opacity: 0;
    padding-top: -70px;
    border-radius: 0%;
    transition: all 600ms ease-out;
    font-size: 8px;
}

.swiper-editoriales .swiper-slide:hover> p{
    display: flex;
    padding-top: 5px;
    opacity: 1;
    border-radius: 10px;
    font-size: 20px;
    transition:all 600ms ease-out;
    margin-bottom: 20px;
}

.swiper-editoriales .swiper-slide:hover > .color{
    visibility:hidden;
    opacity: 0;
}

.swiper-editoriales .swiper-slide a{   
    background-color: white;
    cursor: pointer;
    transition: all 500ms ease-out;
}


.swiper-editoriales .swiper-slide a img{
    width: 200px;
    height: 300px;
    padding: 5px;
    background-color: white;
    margin-bottom: 35px;
    cursor: pointer;
    transition: all 500ms ease-out;
    
}

.swiper-editoriales .swiper-slide:hover > a img{
    width: 300px;
    height: 400px;
    background-color: white;

}

/************************ números INTERdisciplina *******************/
.swiper-interdisciplina{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: center;
    justify-content: center;
    flex-wrap: wrap;
}

.swiper-interdisciplina .swiper-slide2{
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: all 500ms ease-out;
    flex-direction: column;
}

.swiper-interdisciplina .swiper-slide2 p{
    text-align: center;
    color: #862660;
    opacity: 0;
    padding-top: -70px;
    border-radius: 0%;
    transition: all 600ms ease-out;
    font-size: 8px;
}

.swiper-interdisciplina .swiper-slide2:hover> p{
    display: flex;
    padding-top: 5px;
    opacity: 1;
    border-radius: 10px;
    font-size: 20px;
    transition:all 600ms ease-out;
    margin-bottom: 20px;
}

.swiper-interdisciplina .swiper-slide2 a{
    color: #1A5BA7;
    font-size: 20px;
}

/************************ revistas *******************/
body .revistas{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: #D8D7DB;
    padding-top: 15px;
    border-bottom: 2px solid #862660;
    overflow: hidden;
    }

body .revistas h3{
    background-color: #D8D7DB;
}

body .revistas .swiper-revistas{
    background-color: #D8D7DB;
}

.revistas .swiper-revistas .swipper-wrapper{
    background-color: #D8D7DB;
}

body .revistas .swiper-revistas .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D8D7DB;
    border: none;
    z-index: 0;
    transition: all 500ms ease-out;
  }

  .swiper-revistas .swiper-slide img{
    max-width: 200px;
    max-height: 300px;
    padding: 5px;
    background-color: white;
    margin-bottom: 35px;
    cursor: pointer;
    transition: all 500ms ease-out;
    background-color: #D8D7DB;
    border: none;
    position: relative;
    transition: all 500ms ease-out;
  }

  .swiper-revistas .swiper-slide:hover > img{
    max-width: 300px;
    max-height: 400px;
    background-color: white;

}

.swiper-revistas .swiper-slide .info{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 15px;
  height: 100%;
  width: 80%;
  opacity: 0;
  transition: all 500ms ease-out;
  visibility: hidden;
  text-align: center;
  align-items: center;
}

.swiper-revistas .swiper-slide:hover > .info{
    opacity: 0.9;
    visibility: visible;
    transition: all 500ms ease-out;
}

.swiper-revistas .swiper-slide .info a{
    font-size: 15px;
    color: white;
    background-color: rgba(134, 38, 96, 0.8);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    align-self: center;
    align-content: center;
}

body .swiper-revistas .swiper-slide:hover > .info p{
    padding: 60px 15px;
    transition: all 700ms ease-out;
  }

/************************ Recursos audiovisuales *******************/

body .audiovisuales{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: #D8D7DB;
    padding-top: 15px;
    border-bottom: 2px solid #862660;
    padding-bottom: 35px;
    }

body .audiovisuales h3{
    background-color: #D8D7DB;
}

body .audiovisuales .swiper-audiovisuales{
    background-color: #D8D7DB;
    overflow: hidden;
}

.audiovisuales .swiper-audiovisuales .swipper-wrapper{
    background-color: #D8D7DB;
}

body .audiovisuales .swiper-audiovisuales .swiper-slide {
    text-align: center;
    font-size: 18px;
    background:#D8D7DB;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #D8D7DB;
    border: none;
    border-radius: 25px;
  }

body .audiovisuales .swiper-audiovisuales .swiper-slide iframe{
      width: 450px;
      height: 250px;
      margin: 5px;
  }
  

  .swiper-audiovisuales .swiper-slide img{
    max-width: 200px;
    max-height: 300px;
    padding: 5px;
    background-color: white;
    margin-bottom: 35px;
    cursor: pointer;
    transition: all 500ms ease-out;
    background-color: #D8D7DB;
    border: none;
  }

  .swiper-audiovisuales .swiper-slide:hover > img{
    max-width: 300px;
    max-height: 400px;
    background-color: white;

}

/************************ extras *******************/

body .extras{
    overflow: hidden;
    justify-content: center;
    text-align: center;
    padding-bottom: 25px;
}

body .extras .subtittle{
    padding-top: 15px;
    background-color: #D8E4F0;

}

body .extras .swiper-extras {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

body .extras .swiper-extras .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
  }

body .extras .swiper-extras .swiper-slide img{
    display: absolute;
    width: 300px;
    height: 300px;
  }
  

body .swiper-extras .swiper-slide .info{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 15px;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 500ms ease-out;
  visibility: hidden;
  text-align: center;
  }

body .swiper-extras .swiper-slide .info a{
  font-size: 15px;
  background-color: rgba(26, 91, 200, 0.5);
  color: white;
  width: 100%;
  height: 100%;
  padding: 25px 15px;
}
  
body  .swiper-extras .swiper-slide:hover > .info{
    opacity: 0.9;
    visibility: visible;
  }

/************************ Footer *******************/
footer {
    background-image: url("../src/images/curva.png");
    max-width: 100%;
    background-attachment: abosolute;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #1B276C;
    padding-bottom: 25px;
    bottom: 0;
}

footer .icons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    background-color: #1B276C;
    flex-wrap: wrap;
    transition: all 500ms ease-out;
}

footer .icons i{
    padding: 5px;
    color: #6565A0;
    font-size: 25px;
    background-color: #1B276C;
    transition: all 500ms ease-out;
    padding: 10px;
}

footer .icons a{
    background-color: #1B276C;
    transition: all 500ms ease-out;
}


footer .icons a:hover > i{
    font-size: 35px;
    color: white;
    transition: all 400ms ease-out;
    background-color: #1B276C;
}

footer .extern{
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    background-color: #1B276C;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
}

footer .extern p{
    padding: 20px;
    background-color: #1B276C;
    color: #6565A0;  
}

footer .extern p:hover{
    color:white;
}


footer .extern .announcement{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1B276C;
}
footer .extern .announcement p{
    color: #6565A0;
    transition: all 300ms ease-out;
}

footer .extern .announcement p a{
    background-color: #1B276C;
    color: white;
    font-size: 16px;
    transition: all 200ms ease-out;
}

footer .extern .announcement p a:hover{
    background-color: #1B276C;
    text-decoration: underline #862660 5px;
    font-size: 20px;
    transition: all 200ms ease-out;
    
}


footer .extern .announcement:hover > p{
    color: white;
    font-size: 18px;
    transition: all 250ms ease-out;
}

#iconFooter{
    color: white;
    font-size: 35px;
    text-align: center;
    padding: 5px;
    background-color: #1B276C;
}

footer .extern ul{
    display: flex;
    flex-direction: row;
    color: #6565A0;
    background-color: #1B276C;
    flex-wrap: nowrap;
    align-content: center;
}

footer .extern ul li{
    display: flex;
    flex-direction: row;
    color: #6565A0;
    align-content: center;
    padding: 25px;
    background-color:#1B276C;
    min-width: 10px;
    max-width: 315px;
    height: 90px;
    text-align: center;
    align-self: center;
    border-left: solid 1px #6565A0;
    border-right: solid 1px #6565A0;
}

footer .extern ul li a {
    display: flex;
    color: #6565A0;
    text-decoration: none;
    background-color:#1B276C;
    align-self: center;
    align-items: center;
    transition: all 500ms ease-out;
}

footer .extern ul li:hover > a {
    color: white;
    background-color:#1B276C;
    align-self: center;
    align-items: center;
    transition: all 350ms ease-out;
}

footer .extern ul li a p{
    background-color:#1B276C;
    transition: all 300ms ease-out;
    font-size: 15px;
    padding: 15px 0;
    align-self: center;
}

footer .extern ul li a:hover > p{
    background-color:#1B276C;
    transition: all 300ms ease-out;
    font-size: 20px;
}

footer .extern ul li a img{
    padding-right: 5px;
    background-color:#1B276C;
}

footer .extern .mail{
    background-color:#1B276C;
}

footer .extern .mail a{
    color: #6565A0;
    background-color:#1B276C;
    font-size: 25px;
    transition: all 500ms ease-out;
    
}

footer .extern .mail:hover > a{
    font-size: 30px;
    color: white;
    transition: all 200ms ease-out;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        PÁGINA PRESENTACIÓN      */

.objetivo {
    display:flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.objetivo h2{
    margin-top: 20px;
    text-align: center;
    color: #862660;
    transition: all 500ms ease-out;
    margin: 0 100px;
    padding: 15px;
    
    
}

.objetivo h2:hover{
    background-color: #862660;
    color: white;
    border-radius: 10px;
    text-align: center;
    transition: all 500ms ease-out;
   
}

.objetivo ul{
    padding: 30px;
    color: #1A5BA7;
}

.objetivo ul li{
    
    margin: 10px;
    color: black;
    list-style-type: none;
    font-size: 16px;
    transition: all 500ms ease-out;
    color: #1A5BA7;
}

.objetivo .obj ul a .flags{
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    justify-self: center;
}

.objetivo .obj ul a img{
    height: 20px;
    width: 25px;
    margin-left: 3vh;
    position: relative;
    justify-self: center;
    justify-content: center;
    cursor: pointer;
}

.objetivo .obj ul li:hover{
    font-size: 17px;
    transition: all 500ms ease-out;
}

.objetivo .obj{
    display: flex;
    flex-direction: row;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    text-align: justify;
    flex-wrap: wrap;
}

.objetivo .obj .fa-dot-circle{
    color: #862660;
    font-size: 20px;
    padding: 3px;
    margin-right: 9px;
    border: solid 1px #862660;
    border-radius: 50%;
    transition: all 500ms ease-out;
}

.objetivo .obj .fa-dot-circle:hover{
    font-size: 25px;
    padding: 5px;
    transition: all 500ms ease-out;
}

.objetivo .obj iframe{
    width: 700px; 
    height: 250px;
    
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        PÁGINA DIRECTORIO      */

.directorioTable{
    max-width: 100%;
    text-align: center;
    border-collapse: separate;
    border-spacing: 30px 0px;
    margin-top: 10px;
    overflow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.directorioTable  td{
    border: none;
    border-radius: 10px;
    margin: 40px;
    padding: 10px;
    text-align: end;
}

.directorioTable h3{
    color: rgb(42, 35, 126);
}

.directorioTable a{
    color: black;
    font-size: 15px;
    font-weight: bold;
}

.invisibleText{
    color: rgba(0,0,0,0.0);
}

.directorioTable .invisibleText{
    color: rgba(0,0,0,0.0);
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Estilos del organigrama      */
.union {
    height: 120px;
    padding-top: 0;
    margin: 0;
}

.directorioTable .barra {
    border: rgb(42, 35, 126) solid 5px;
    padding: 0;
    border-bottom: none;
    border-spacing: 0px 0px;
   border-radius: 0;
}

.directorioTable .centro{
    border-left: none;
    border-right: none;
}

.directorioTable .izquierdo{
    border-right: none;
    border-radius: 0 0 0 5px;
}

.directorioTable .derecho{
    border-left: none;
}

.directorioTable .invisible{
    border: none;
}


.directorioTable .direccion{
    border: rgb(42, 35, 126) solid 5px;
    padding: 20px; 
    background-color: rgb(232, 230, 234);
    text-align: end;
}

.directorioTable .direccion a, .direccion h3 , .direccion p{
    color: rgb(42, 35, 126);
    background-color:  rgb(232, 230, 234);
}

.directorioTable .moradoFuerte{
    color: rgb(42, 35, 126);
    background-color: rgba(0, 0, 0, 0.0);
    text-align: left;

}

.directorioTable .secretariaAcademica{
    background-color: rgb(103, 96, 177);
    border: rgb(103, 96, 177) solid 1px;
    text-align: end;
}

.directorioTable .secretariaAcademica p, .secretariaAcademica h3, .secretariaAcademica a{
    color: white;
    background-color: rgb(103, 96, 177);
    text-align: end;
}

.directorioTable .fuenteLilaSF{
    color: rgb(103, 96, 177);
    background-color: rgba(0, 0, 0, 0.0);
}

.directorioTable .fuenteLila{
    color: rgb(103, 96, 177);
    background-color: rgb(232, 230, 234);
}

.directorioTable .departamentoLila{
    background-color: rgb(232, 230, 234);
    border: rgb(103, 96, 177) solid 5px;
    text-align: end;
}

.directorioTable .departamentoLila h3{
    background-color: rgb(232, 230, 234);
}

.directorioTable .departamentoAzul{
    background-color: rgb(232, 230, 234);
    border: rgb(52, 86, 143) solid 5px;
    text-align: end;
}

.directorioTable .departamentoAzul h3{
    background-color: rgb(232, 230, 234);
}

.directorioTable .departamentoVino{
    background-color: rgb(232, 230, 234);
    border: rgb(131, 45, 79) solid 5px;
    text-align: end;
}

.directorioTable .departamentoVino h3{
    background-color: rgb(232, 230, 234);
}

.directorioTable .secretariaTecnica{
    background-color: rgb(52, 86, 143);
    border: rgb(52, 86, 143) solid 1px;
    text-align: end;
}

.directorioTable .secretariaTecnica p, .secretariaTecnica h3, .secretariaTecnica a{
    color: white;
    background-color: rgb(52, 86, 143);
    text-align: right;
}

.directorioTable .fuenteAzulSF{
    color: rgb(52, 86, 143);
    background-color: rgba(0, 0, 0, 0.0);
}

.directorioTable .fuenteAzul{
    color: rgb(52, 86, 143);
    background-color: rgb(232, 230, 234);
}

.directorioTable .secretariaAdministrativa{
    background-color: rgb(131, 45, 79);
    border: rgb(131, 45, 79) solid 1px;
    text-align: end;
}

.directorioTable .secretariaAdministrativa p, .secretariaAdministrativa h3, .secretariaAdministrativa a{
    color: white;
    background-color: rgb(131, 45, 79);
    text-align: right;
}

.directorioTable .fuenteVinoSF{
    color: rgb(131, 45, 79);
    background-color: rgba(0, 0, 0, 0.0);
}

.directorioTable .fuenteVino{
    color: rgb(131, 45, 79);
    background-color: rgb(232, 230, 234);
}

.directorioTable .sub1 {
    border: none;
    border-radius: 0;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 5%;
    padding-bottom: 0;
    margin: 0;
    align-items: center;
}



/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        PÁGINA UBICACION     */


.location {
    display:flex;
    flex-direction: column;
    justify-content:space-around;
    
}

.location h2{
    text-align: center;
    color: #862660;
    transition: all 500ms ease-out;
    margin: 20px 100px;
    padding: 15px;
}

.location h2:hover{
    background-color: #862660;
    color: white;
    border-radius: 10px;
    text-align: center;
    transition: all 500ms ease-out;
}

.location p{
    text-align: center;
    padding: 5px;
    color: rgb(42, 35, 126);
}

.location p:hover{
    font-size: 17px;
    transition: all 500ms ease-out;
}

.location iframe{
    padding: 25px;
    width:600px; 
    height:450px; 
    border: none;
    
}

.loc {
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.loc .loc-text{
    display:flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.loc .loc-text .fa-map-marker-alt{
    font-size: 50px;
    color: #1A5BA7;
    padding-bottom: 5px;
    transition: all 500ms ease-out;
}

.loc .loc-text .fa-map-marker-alt:hover{
    background-color: #1A5BA7;
    color: /*#862660*/ white;
    transition: all 500ms ease-out;
    padding: 10px;
    margin: 0 120px;
    border-radius: 50%;

}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        PÁGINA HISTORIA     */

.historia{
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}
.historia h2{
    justify-content: center;
    text-align: center;
    color: #862660;
    margin: 20px;
    transition: all 500ms ease-out;
}

.historia h2:hover{
    font-size: 30px;
    transition: all 500ms ease-out;
}

.historia p{
    color: #1A5BA7;
    text-align: justify;
    margin: 10px;
    padding: 0 20px;
    font-size: 20px;
    line-height: 25px;
}

.historia .symbol{
    display: flex;
    justify-content: center;
}

.historia .logo{
    max-width: 45vh;
}
.historia img {
    height: 300px;
    margin: 10px;
}

.historia .doble{
    display: flex;
    flex-direction: row;
    
}

.historia .referenciasHistoria a{
    text-align: justify;
    margin-top: 25px;
    font-size: 15px;
}

.historia .referenciasHistoria h2{
    text-align: justify;
    
    
}

.historia .referenciasHistoria h3{
    text-align: justify;
    margin: 25px;
    color: #1A5BA7;
}

.historia .referenciasHistoria p{
    text-align: justify;
    color: #1A5BA7;
    padding:1px;
}

.historia .referenciasHistoria .pdfHistoria{
    transition: all 300ms ease-out;  
}

.historia .referenciasHistoria .pdfHistoria:hover{
    font-size: 20px;
    color: #862660;
    transition: all 300ms ease-out;  
}

.scrollUp{
    opacity: 0;
    transition: all 100ms ease-out;
}

.scrollRight{
    opacity: 0;
    transition: all 100ms ease-out;
}

.scrollLeft{
    opacity: 0;
    transition: all 100ms ease-out;
}

.mostrarArriba{
    animation: mostrarArriba 1s;
}

@keyframes mostrarArriba {
    0% {
        transform: translateY(60px);
    }

    100%{
        transform: translateY(0);
    }
}

.mostrarDerecha{
    animation: mostrarDerecha 1s;
}

@keyframes mostrarDerecha {
    0% {
        transform: translateX(60px);
    }

    100%{
        transform: translateX(0);
    }
}

.mostrarIzquierda{
    animation: mostrarIzquierda 1s;
}

@keyframes mostrarIzquierda {
    0% {
        transform: translateX(-60px);
    }

    100%{
        transform: translateX(0);
    }
}

.animacionHistoriaLogo{
    animation: animacionHistoriaLogo 1s;
    animation-play-state: running;
}

@keyframes animacionHistoriaLogo {
    0%{
        transform: scale(0.3);
        border-radius: 50%;
    }
    
}
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        PÁGINA ORGANOS COLEGIADOS     */

/*Se usa la clase location, contenida en la pagina ubicación para reciclar las clases*/

.organos {
    display:flex;
    flex-direction: column;
    justify-content:space-around;
}

.organos h2{
    text-align: center;
    color: #862660;
    transition: all 500ms ease-out;
    margin: 20px 100px;
    padding: 15px;
}

.organos h4{
    text-align: center;
    color: #862660;
    transition: all 500ms ease-out;
    background-color: #F5F6FA;
}

.organos h2:hover{
    background-color: #862660;
    color: white;
    border-radius: 10px;
    text-align: center;
    transition: all 500ms ease-out;
}

.organos p{
    text-align: justify;
    color: #1A5BA7;
    font-size: 25px;
    margin: 20px;

}

.organos i, a{
    text-decoration: none;
    color: #1A5BA7;
    font-size: 25px;
}

.organos i{
    margin: 10px;
}

.organos .hov:hover > i{
    font-size: 30px;
    padding-bottom: 5px;
    transition: all 300ms ease-out;
    text-decoration: underline;
    text-decoration-color:#1A5BA7;
}

.organos .hov {
    transition: all 500ms ease-out;
    text-align: center;
    margin: 20px;
}


.organos .hov i{
    padding-right: 15px;
}
.organos .hov i2{
    padding-right: 15px;
    background-color: #F5F6FA;
}


.organos .hov .flotante{
    display: none;
    opacity: 1;
    margin: 15px 10%;
    flex-direction: column;   
    color:#1A5BA7;
    border: solid 1px #862660;
    justify-content: center;
    text-align: left;   
    border-radius: 15px;
    transition: all 500ms ease-out;
    background-color: #F5F6FA;
}


.organos .hov .flotante a{
    margin: 15px;
    transition: all 100ms ease-out;
    text-align: center;
    padding-top: -20px;
    transition: all 100ms ease-out;
    background-color: #F5F6FA;
    text-decoration-color:#1A5BA7;
}

.organos .hov .flotante p{
    text-align: justify;
    font-size:20px;
    background-color: #F5F6FA;
}

.organos .hov .flotante h3 {
    text-align: center;
    color: #1A5BA7;
    background-color:#1A5BA7;
    margin: 15px;
    transition: all 100ms ease-out;
    padding-top: -20px;
    text-decoration-color:#F5F6FA;
}

.organos .hov .flotante a:hover{
    font-size: 30px;
    transition: all 300ms ease-out;
    color: #862660;
    text-decoration: underline;
}



/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        Investigación    */
.inv {
    display:flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.inv h2{
    margin-top: 20px;
    text-align: center;
    color: #862660;
    transition: all 500ms ease-out;
    margin: 0 100px;
    padding: 15px;
    
    
}

.inv h2:hover{
    background-color: #862660;
    color: white;
    border-radius: 10px;
    text-align: center;
    transition: all 500ms ease-out;
   
}

.inv ul{
    padding: 30px;
}

.inv ul li{
    
    margin: 10px;
    color: black;
    list-style-type: none;
    font-size: 16px;
    transition: all 500ms ease-out;
}

.inv .total{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.inv .programas{
    text-align: center;
}

.inv .programas a{
    transition: all 300ms ease-out;
}

.inv .programas a:hover{
    font-size: 28px;
    color: #862660;
    transition: all 300ms ease-out;
}

.inv .obj ul li:hover{
    font-size: 17px;
    transition: all 500ms ease-out;
}

.inv .obj{
    display: flex;
    flex-direction: row;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    text-align: justify;
    flex-wrap: wrap;
    
}

.inv .obj .fa-dot-circle{
    color: #862660;
    font-size: 20px;
    padding: 3px;
    margin-right: 9px;
    border: solid 1px #862660;
    border-radius: 50%;
    transition: all 500ms ease-out;
}


.inv .total .programasCircle img{
    width: 95vh;
    transition: all 40s ease-out;
    border-radius: 50%;
}

.inv .total:hover > .programasCircle img{
    transform: rotate(360deg);
    transition: all 40s ease-out;
}

.inv .total{
    flex-wrap: wrap;
}


/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        Programas de investigación    */

.inv .programasInv{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;

}

.inv .programasInv h2{
    background-color: #1A5BA7;
    border-radius: 10px;
    color: white;
    font-size: 20px;
}

.inv .programasInv h2:hover{
    background-color: #862660;
    color: white;
}

.inv .programasInv h3{
    font-size: 25px;
    text-align: center;
    color: #1A5BA7;
    overflow: hidden;
    padding: 30px 0;
    flex-wrap: wrap;
}

.inv .programasInv h5{
    font-size: 20px;
    text-align: center;
    color: #1A5BA7;
    overflow: hidden;
    padding: 30px 0;
    flex-wrap: wrap;
}

.inv .programasInv .personal{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;  
}

.inv .programasInv .personal a{
    color: #862660;
    flex-wrap: wrap;
    font-size: 23px;
}

.personal b{
    font-size: 20px;
    padding: 5px 0;
    color:#1A5BA7;
}

.personal{
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.inv .programasInv .personal .investigadores{
    width: 50%;
    flex-wrap: wrap;
    
}

.inv .programasInv .personal .tecnicos{
    width: 50%;
    flex-wrap: wrap;
}

.publicacionesRecientes {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0;
    background-color: white;
    justify-content: center;
    flex-wrap: wrap;
}

.publicacionesRecientes .publicacionReciente{
    margin:40px;
    background-color: white;
}

.publicacionesRecientes .publicacionReciente h3{
    color: #1A5BA7;
    background-color: white;
}

.publicacionesRecientes .publicacionReciente p{
    color: #862660;
    background-color: white; 
}
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        Investigacion personal académico    */
.personalAcademico{
    display:flex;
    flex-direction:row;
    justify-content: center;
    background-color: rgb(239,231,230); 
    text-align:justify;
    align-items: center;
    flex-wrap: wrap;

}

.fotosAcademicos{
    max-width: 50vh;
    align-self: center;
}

.personal1{
    padding:10px;
    background-color: rgb(239,231,230);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50vh;
    margin: 0 20px;
    text-align: center;

}

.personal1 h2, .personal1 a{
    color: #1A5BA7;
    margin: 2vh 0;
    background-color: rgb(239,231,230);
    text-align: left;
}

.personal1 p{
    color: white;
    margin: 2vh 0;
    background-color: rgb(239,231,230);
    padding: 5px; 
}

.personal1 .blue{
    text-align: center;
}

.personal2{
    display: flex;
    flex-direction: column;
    padding: 0 20px; 
    background-color: rgb(239,231,230);
    width: 40vh; 
    margin: 0 20px;
}

.personal2 h3{
    color: #862660;
    background-color: rgb(239,231,230);
     
}

.personal2 .contact{
    color: #1A5BA7;
    padding-top: 30px;
    background-color: rgb(239,231,230);  
}

.personal2 p{
    color: #1A5BA7;
    background-color: rgb(239,231,230);  
}

.personal2 a{
    color: #1A5BA7;
    background-color: rgb(239,231,230); 
    font-size: 20px;
}

.personal2 .blue p{
    color: white;
    justify-content: center;
    font-size: 14px;
    padding: 5px;
    
}

.personal2 .gray p{
    color: white;
    justify-content: center;
    font-size: 14px;
    padding: 5px;
    transition: all 1100ms ease-out;
}

.personal2 .gray:hover{
    cursor: pointer;
    font-size: 14px;
    transition: all 1100ms ease-out;
}

.personal2 .blue:hover{
    font-size: 14px;
    cursor: pointer;
}

.infoInvestigador{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: rgb(239,231,230); 
    width: 70vh;
    align-items: center;
}


main .infoInvestigador .blue:hover > p{
    font-size: 15px;
    border-radius: 5px;
    justify-content: center;
    text-align: center;
    transition: all 500ms ease-out;
}

main .gray:hover > p{
    font-size: 15px;
    border-radius: 5px;
    justify-content: center;
    text-align: center;
    transition: all 500ms ease-out;
}

.infoInvestigador .flotante{
    flex-direction: column;
    flex-wrap: wrap;
    background-color: rgb(239,231,230);
    display: none;
    opacity: 1;
}


.infoInvestigador .fa-times-circle{
    padding: 10px 0;
    background-color: rgb(239,231,230);
}
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        Contacto   */


.contacto {
    display: flex;
    flex-direction: row;
    margin: 30px 40px;
    border-radius: 10px;
    height: 70vh;
    justify-content: center;
}

.contacto-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    border-radius: 10px;
    
    
}

.contacto  .ubicacion{
    width: 50%;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 10px 0 0;
}

.contacto  .ubicacion iframe{
    height: 100%;
    width: 100%;
}

.contacto-info form{
    background-color: #862660;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    height: 70vh;
    align-items: center;
}

.contacto-info .form-group{
    margin: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #862660;
}

.contacto-info .form-group input{
    width: 40vh;
    height: 40px;
    border-radius: 10px;
    font-size: 18px;
    border: none;
    padding: 10px;
}

.contacto-info .form-group i{
    font-size: 40px;
    margin: 0 20px;
}

.contacto-info textarea{
    width: 90%;
    height: 90vh;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 15px;

    border: none;
    padding: 10px;
}

.contacto-info .contenedor-boton input{
    width: 30vh;
    height: 30px;
    border-radius: 10px;
    background-color: #1A5BA7;
    border: none;
    color: white;
    transition: all 600ms ease-out;
    font-size: 15px;
    
}

.contacto-info .contenedor-boton input:hover{
    width: 33vh;
    height: 33px;
    background-color: rgb(29, 104, 235);
    transition: all 600ms ease-out;
}


.contacto-info .form-group,  .form-group label, .form-group i, .form-group textarea, .contenedor-boton{
    background-color: rgba(0, 0, 0, 0.0);
    color: #1A5BA7;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        swiper de academicos   */

.novedadesEditoriales-programas{
    background-color: rgba(0, 0, 0, 0.0);
    background:rgba(0, 0, 0, 0.0);
    padding: 0;
    margin: 0;
    overflow: none;   
}
.swiper-editoriales-programas{
    background-color: rgba(0, 0, 0, 0.0);
    background:rgba(0, 0, 0, 0.0);
    padding: 0;
    margin: 0;
    overflow: hidden;  
}

.swiper-editoriales-programas img{
    width: 400px;
    height: 320px;
     
}
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        Investigacion y laboratorios    */
.tituloSemi-Lab{
    background-color: #862660;
    color: white !important;
    border-radius: 5px;
    
}
.semi-lab div{
    margin: 25px 0;
}

.semi-lab h2, .semi-lab h3, .semi-lab p{
    text-align: center;
}

.semi-lab p{
    color: rgb(71,101,134);
}
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        Diplomados    */
.titulo-Diplo{
    background-color: #862660;
    color: white !important;
    border-radius: 5px;
    
}
.diplomado div{
    margin: 25px 0;
}

.diplomado h2, .diplomado h3, .diplomado p, .diplomado h4{
    text-align: center;
}

.diplomado p{
    color: rgb(71,101,134);
}
.titulo {
    color: #862660;
}
.titulo:hover {
    background-color: #862660;
    color: white !important;
}
.nombres {
    font-size: 24px;
    color: #1A5BA7;
}
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////        Responsive    */

@media only screen and (max-width: 991px) {
    header .logoCeiich{
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 5px;
    }

    header .logoCeiich a{
        text-align: center;
        align-self: center;
        background-color: #D8E4F0;
    }

    header .logoCeiich .logo35{
        position: absolute;
        margin-top: 6vh;
        opacity: 0;
        transition: all 500ms ease-out;
        width: 110px;
    }



    /*////////////////////////////////////////////////////////////////////////////////
    INVESTIGACION//////////////////////*/
    .inv .total{
        display:flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .inv .total .programasCircle img{
        width: 50vh;
        transition: all 40s ease-out;
        border-radius: 50%;
    }
    
    .inv .total:hover > .programasCircle img{
        transform: rotate(360deg);
        transition: all 40s ease-out;
    }
    
    /*////////////////////////////////////////////////////////////////////////////////
    contactolibreria//////////////////////*/
    .contacto {
        display: flex;
        flex-direction: row;
        margin: 30px;
        border-radius: 10px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        margin: 20px 0;
        align-items: center;
    }
    
    .contacto-info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 90%;
        border-radius: 10px;
        margin: 30px;
        overflow: hidden;
    }
    
    .contacto  .ubicacion{
        width: 90%;
        height: 20vh;
        overflow: hidden;
        border-radius: 10px;
    }
    
    .contacto  .ubicacion iframe{
        height: 100%;
        width: 100%;
    }
    
    .contacto-info form{
        background-color: #862660;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 10px;
        height: 40vh;
        align-items: center;
    }
    
    .contacto-info .form-group{
        margin: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #862660;
    }
    
    .contacto-info .form-group input{
        width: 25vh;
        height: 40px;
        border-radius: 10px;
        font-size: 18px;
        border: none;
        padding: 10px;
    }
    
    .contacto-info .form-group i{
        font-size: 40px;
        margin: 0 20px;
    }
    
    .contacto-info textarea{
        width: 90%; 
        border-radius: 10px;
        margin: 20px 0;
        font-size: 15px;
        border: none;
        padding: 10px;
    }
    
    .contacto-info .contenedor-boton input{
        width: 30vh;
        height: 30px;
        border-radius: 10px;
        background-color: #1A5BA7;
        border: none;
        color: white;
        transition: all 600ms ease-out;
        font-size: 15px;
        
    }
    
    .contacto-info .contenedor-boton input:hover{
        width: 33vh;
        height: 33px;
        background-color: rgb(29, 104, 235);
        transition: all 600ms ease-out;
    }
    
    
    .contacto-info .form-group,  .form-group label, .form-group i, .form-group textarea, .contenedor-boton{
        background-color: rgba(0, 0, 0, 0.0);
        color: #1A5BA7;
    }
    
    /*////////////////////////////////////////////////////////////////////////////////
    Proramas de investigacion//////////////////////*/

    .inv .programasInv .personal{
        display:flex;
        flex-direction: column;
        justify-content: left;
    }

    .investigadoresConsulta{
        text-align: left;
        left: 0;
        justify-content: left;
    }

    .inv .programasInv .personal .investigadores{
        width: 100%;
        flex-wrap: wrap;
        text-align: left;
    }
    
    .inv .programasInv .personal .tecnicos{
        width: 100%;
        flex-wrap: wrap;
    }

    /*////////////////////////////////////////////////////////////////////////////////
    Historia//////////////////////*/
    
    .historia .doble{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }


    /*////////////////////////////////////////////////////////////////////////////////
    Investigacion personal académico //////////////////////*/
    .personalAcademico{
        flex-direction: column;
    }

    .personal1{
        width: 98vh;
        text-align: center;
    }

    .personal1 h2{
        text-align: center;
    }

    .fotosAcademicos{
        max-width: 75vh;
    }
    
    .personal2{
        width: 98vh;
    }

}

@media only screen and (max-width: 810px) {

    main .notices div{
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        border-radius: 5px;
        align-items: center;
        flex-wrap: wrap;
    }

    header .logoCeiich .logo35{
        position: absolute;
        margin-top: 8vh;
        opacity: 0;
        transition: all 500ms ease-out;
    }

    /*////////////////                        MENU                                 ////////////////////*/
    nav {
	    width: 100%;
	    height: 50px;
	    background: rgba(0, 0, 1, 0);
	    display: flex;
	    color: rgba(0, 0, 0, 0.0);
	    z-index: 8;
	    position: fixed;
        top: 15px;class="moradoFuerte"
        left: 0;
        overflow: hidden;
        font-size: 25px;
    }

    .btnMenu {
	    padding: 10px;
	    font-size: 30px;
	    display: none;
	    cursor: pointer;
    }

    .btnMenu i{
        color: rgb(46, 63, 139);
    }

    .menuResponsive {
	    display: block;
	    position: fixed;
	    z-index: 10;
	    margin-top: 50px;
	    margin-left: -100%;
	    background: rgba(0, 0, 0, 0.3);
	    width: 50%;
	    height: 100vh;
        transition: ease all 1s;
        justify-content: center;
    }

    .menuResponsive li {
	    font-size: 25px;
	    padding: 15px 20px;
	    color: #fff;
        transition: all 500ms ease-out;
        display: flex;
        flex-wrap: wrap;
    }   

    .menuResponsive li:hover {
        transition: all 500ms ease-out;
        background-color: #862660;
        color: #862660;
	    cursor: pointer;

    }

    .container {
	    position: fixed;
	    z-index: 7;
	    width: 100%;
	    height: 100%;
	    background: rgba(0,0,0,0.7);
	    display: none;
    }

    .menu ul li:hover > ul {
        display:flex;
        flex-direction: column;
        position: relative;
        z-index: 44;
    }

    /*////////////////              SLIDER PRINCIPAL            ////////////////////*/
    main .swiper-container .swiper-slide img{ 
        width: 100%;
        height: 80%;
    }
/*////////////////                  FOOTER               ////////////////////*/
    footer .extern ul{
        display: flex;
        flex-direction: column;
        color: #6565A0;
        background-color: #1B276C;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

    footer .extern ul li{
        border-left: none;
        border-right: none;
    }


}

@media only screen and (max-width: 350px) {
    
    header .logoCeiich .letter2{
        font-size: 15px;
        text-align: center;
        align-self: center;
        background-color: #D8E4F0;
    }

}


/*azul fuerte #1A5BA7*/
/*vino #862660 */