@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
.bg-cyan {
  background: #00D6FF; }

.full-img {
  width: 100%; }

.breadcrumb {
  padding: 7px 15px; }

.breadcrumb-item a {
  color: #1e75a2; }

.breadcrumb-item.active {
  color: #8896a2; }

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: #fafafa;
  font-size: 14px; }

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

hr {
  border-top: 1px solid #b5b5b5; }

.small,
small {
  font-size: 60%;
  font-weight: 400; }

.breadcrumb {
  font-size: 12px; }

#content {
  width: 100%;
  padding-bottom: 100px;
  background: white; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins',sans-serif; }

h2 {
  font-size: 1.6rem; }

h3 {
  font-size: 1.5rem; }

.lista-indice {
  position: relative;
  padding-left: 50px;
  margin: 0; }
  .lista-indice li {
    position: relative;
    margin-bottom: 15px; }
  .lista-indice .roman {
    color: #30363C;
    font-size: 25px;
    position: absolute;
    left: -55px;
    top: -10px;
    display: block;
    width: 50px;
    text-align: right;
    letter-spacing: -1px; }

.has-line {
  position: relative; }
  .has-line:before {
    background: #00D6FF;
    content: "";
    display: block;
    height: 220px;
    position: absolute;
    bottom: -30px;
    z-index: -1;
    width: 100%; }

.portada {
  min-height: 250px;
  background: #666;
  position: relative;
  overflow: hidden; }
  .portada .section-title {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: white;
    font-weight: 300 !important;
    bottom: 10px;
    left: 20px;
    position: absolute;
    z-index: 1; }
  .portada::after {
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute; }
  .portada.cover-estructura {
    background-size: cover;
    background-position: right bottom;
    background-image: url(../img/portadas/estructura.jpg); }
  .portada.cover-personal {
    background-size: cover;
    background-position: right bottom;
    background-image: url(../img/portadas/personal.jpg); }
  .portada.cover-premios {
    background-size: cover;
    background-position: right bottom;
    background-image: url(../img/portadas/premios.jpg); }
  .portada.cover-investigacion {
    background-size: cover;
    background-position: right bottom;
    background-image: url(../img/portadas/investigacion.jpg); }
  .portada.cover-vinculacion {
    background-size: cover;
    background-position: center;
    background-image: url(../img/portadas/vinculacion.jpg); }
  .portada.cover-organizacion {
    background-size: cover;
    background-position: center;
    background-image: url(../img/portadas/organizacion.jpg); }
  .portada.cover-intercambio {
    background-size: cover;
    background-position: center;
    background-image: url(../img/portadas/intercambio.jpg); }
  .portada.cover-docencia {
    background-size: cover;
    background-position: center;
    background-image: url(../img/portadas/docencia.jpg); }
  .portada.cover-divulgacion {
    background-size: cover;
    background-position: center;
    background-image: url(../img/portadas/divulgacion.jpg); }
  .portada.cover-descentralizacion {
    background-size: cover;
    background-position: center;
    background-image: url(../img/portadas/descentralizacion.jpg); }
  .portada.cover-infraestructura {
    background-size: cover;
    background-position: center;
    background-image: url(../img/portadas/infraestructura.jpg); }
  .portada.cover-recursos {
    background-size: cover;
    background-position: center;
    background-image: url(../img/portadas/recursos.jpg); }

.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ddd; }

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

#sidebar {
  min-width: 250px;
  max-width: 250px;
  background: #30363C;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

#sidebar.active {
  margin-left: -250px; }

#sidebar .sidebar-header {
  padding: 20px;
  background: #30363C; }

#sidebar ul.components {
  padding: 20px 0px;
  background: #30363C; }

#sidebar ul p {
  padding: 10px;
  font-size: 1.1em;
  display: block; }

#sidebar ul li a {
  padding: 10px;
  font-size: 14px;
  display: block; }

#sidebar ul li a:hover {
  color: #7386D5;
  background: #fff; }

#sidebar ul li.active > a {
  color: #fff;
  background: #575E65; }

#sidebar .dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: rotate(-90deg) translateY(-50%);
  -ms-transform: rotate(-90deg) translateY(-50%);
  transform: rotate(-90deg) translateY(-50%);
  -webkit-transition: -webkit-transform ease 100ms;
  transition: -webkit-transform ease 100ms;
  -o-transition: transform ease 100ms;
  transition: transform ease 100ms;
  transition: transform ease 100ms, -webkit-transform ease 100ms; }

#sidebar .dropdown-toggle[aria-expanded="true"]::after {
  -webkit-transform: rotate(0deg) translateY(-50%) !important;
  -ms-transform: rotate(0deg) translateY(-50%) !important;
  transform: rotate(0deg) translateY(-50%) !important; }

#sidebar a[aria-expanded="true"] {
  color: #fff;
  background: #192028; }

#sidebar a[data-toggle="collapse"] {
  position: relative; }

#sidebar ul ul a {
  font-size: 0.9em !important;
  padding-left: 30px !important;
  background: #232D38; }

#sidebar ul.CTAs {
  padding: 20px; }

#sidebar ul.CTAs a {
  text-align: center;
  font-size: 0.9em !important;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px; }

#sidebar a.download {
  background: #fff;
  color: #7386D5; }

#sidebar a.article,
#sidebar a.article:hover {
  background: #30363C !important;
  color: #fff !important; }

@media (max-width: 1200px) {
  #sidebar {
    margin-left: -250px; }
  #sidebar.active {
    margin-left: 0px; }
  #sidebarCollapse span {
    display: none; } }

header {
  background: #001428;
  padding: 10px 0; }
  header img {
    padding: 0 15px;
    max-height: 90px; }

#mega-menu {
  /* adds some margin below the link sets  */
  /* breakpoint and up - mega dropdown styles */ }
  #mega-menu .navbar {
    background: #003263;
    color: white; }
    #mega-menu .navbar a {
      color: white;
      font-size: 14px; }
      #mega-menu .navbar a:hover {
        color: #E19C00; }
    #mega-menu .navbar .navbar-nav.mr-auto > .nav-item > a {
      border-right: #666a6d 1px solid; }
  #mega-menu .no-border a {
    border: none !important; }
  #mega-menu .navbar .dropdown-menu div[class*="col"] {
    margin-bottom: 1rem; }
  #mega-menu .navbar .dropdown-menu {
    border: none;
    background-color: #003263 !important; }
  #mega-menu .megamenu-content {
    padding-top: 10px; }
    #mega-menu .megamenu-content span {
      display: block;
      padding-bottom: 5px;
      width: 100%;
      text-indent: 13px; }
      #mega-menu .megamenu-content span a {
        border-bottom: 1px solid white;
        width: 100%;
        display: block;
        margin-top: 10px; }
        #mega-menu .megamenu-content span a:hover {
          border-bottom: #E19C00 1px solid; }
    #mega-menu .megamenu-content a {
      padding-bottom: 0; }
  @media screen and (min-width: 992px) {
    #mega-menu {
      /* remove the padding from the navbar so the dropdown hover state is not broken */
      /* remove the padding from the nav-item and add some margin to give some breathing room on hovers */
      /* makes the dropdown full width  */
      /* shows the dropdown menu on hover */ }
      #mega-menu .navbar {
        padding-top: 0px;
        padding-bottom: 0px; }
      #mega-menu .navbar .nav-item {
        padding: 5px 0px;
        margin: 0px 1px; }
      #mega-menu .navbar .dropdown {
        position: static; }
      #mega-menu .navbar .dropdown-menu {
        width: 100%;
        left: 0;
        right: 0;
        /*  height of nav-item  */
        top: 44px; }
      #mega-menu .navbar .dropdown-menu {
        border: 1px solid rgba(0, 0, 0, 0.15);
        background-color: #fff; } }

#buscador input {
  border-radius: 0 !important;
  border: none;
  height: 36px; }

#buscador button {
  background: #E19C00;
  border-radius: 0 !important;
  border: none; }

footer {
  background: url(../img/footer/footer-bg-img.png);
  background-color: #003263;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 20px; }
  footer p {
    margin-bottom: 0; }

footer .footer-sm-text-y {
  color: #E19C00;
  text-align: right;
  margin: 10px 20px 0 0;
  font-size: 0.813em; }

footer .footer-sm-text {
  font-family: Arial;
  font-size: 0.813em;
  color: #FFFFFF;
  color: #ffffff;
  width: 91%;
  line-height: 1.2em; }

footer .footer-title {
  font-family: Verdana;
  font-size: 1em;
  color: #FFFFFF;
  color: #ffffff;
  opacity: 0.5;
  filter: alpha(opacity=50) progid:DXImageTransform.Microsoft.Alpha(opacity=50); }

footer .footer-xsm-text {
  font-size: 0.750em;
  color: #fff;
  width: 100%;
  text-align: center; }

/*ja*/
body {
  background: #333; }

#cara {
  position: relative;
  margin: 0 auto;
  width: 400px;
  height: 400px;
  background: #ffc50c;
  border-radius: 100%;
  -webkit-box-shadow: inset -20px -20px 0 #d8a400;
  box-shadow: inset -20px -20px 0 #d8a400; }
  #cara:after {
    content: "";
    background: rgba(255, 255, 255, 0.2);
    width: 140px;
    height: 30px;
    border-radius: 100%;
    position: absolute;
    z-index: 3;
    top: 70px;
    left: 0;
    -webkit-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    transform: rotate(-50deg); }
  #cara:before {
    content: "";
    background: #ffc50c;
    width: 300px;
    height: 330px;
    border-radius: 100%;
    position: absolute;
    z-index: 4;
    top: 30px;
    left: 25px; }

#ojo-izq, #ojo-der {
  width: 70px;
  height: 70px;
  background: #111;
  border-radius: 100%;
  position: absolute;
  top: 110px;
  z-index: 10; }

#ojo-izq {
  left: 60px; }

#ojo-der {
  right: 60px; }

#sonrisa {
  width: 180px;
  height: 50px;
  border: 20px solid #111;
  border-top: 0;
  background: transparent;
  border-radius: 0 0 120px 120px;
  position: absolute;
  bottom: 80px;
  left: 90px;
  z-index: 5; }

#boca {
  position: absolute;
  width: 240px;
  height: 120px;
  background: #111;
  bottom: 80px;
  left: 80px;
  border-radius: 60%;
  z-index: 4; }
  #boca::after {
    content: "";
    background: #ffc50c;
    width: 240px;
    height: 130px;
    border-radius: 100%;
    position: absolute;
    z-index: 1;
    top: -40px;
    left: 0; }

.masonry {
  background: #999;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative; }
  .masonry.square {
    height: 325px; }
  .masonry.rectangle, .masonry.square-half {
    height: 157px; }
  .masonry h2 {
    position: absolute;
    bottom: 5px;
    left: 10px;
    font-size: 20px;
    color: white;
    -webkit-transition: all ease 400ms;
    -o-transition: all ease 400ms;
    transition: all ease 400ms; }
    .masonry h2:after {
      -webkit-transition: all ease 600ms;
      -o-transition: all ease 600ms;
      transition: all ease 600ms;
      content: "";
      width: 0;
      display: block;
      height: 2px;
      background: white; }

.special-pad {
  padding: 0 0 0 10px !important; }

#reja .col-lg-3, #reja .col-lg-6 {
  padding: 5px; }

.masonry a {
  display: block;
  width: 100%;
  height: 100%; }

.masonry {
  background-position: center;
  background-size: 150%;
  -webkit-transition: all ease 300ms;
  -o-transition: all ease 300ms;
  transition: all ease 300ms;
  opacity: 0.9; }
  .masonry:hover {
    background-size: 140%;
    opacity: 1; }

.masonry:hover h2 {
  left: 15px; }
  .masonry:hover h2:after {
    width: 100%; }

#estructura {
  background-image: url(../img/estructura.jpg); }

#docencia {
  background-image: url(../img/docencia.jpg); }

#divulgacion {
  background-image: url(../img/divulgacion.jpg); }

#vinculacion {
  background-image: url(../img/vinculacion.jpg); }

#organizacion {
  background-image: url(../img/organizacion.jpg); }

#descenter {
  background-image: url(../img/descentrealizacion.jpg); }

#personal {
  background-image: url(../img/personal.jpg); }

#investigacion {
  background-image: url(../img/investigacion.jpg); }

#premios {
  background-image: url(../img/premios.jpg); }

#intercambio {
  background-image: url(../img/intercambio.jpg); }

#avance {
  background-image: url(../img/avance.jpg); }

#recursos {
  background-image: url(../img/recursos.jpg); }

@media (max-width: 767px) {
  #special-pad {
    padding: 0 !important; }
  .masonry.square {
    height: 157px; }
  #reja .col-lg-3, #reja .col-lg-6 {
    padding: 0 15px; } }
