*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html, body {
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

body {
  font: normal 12px "europa", sans-serif;
  color: #fff;
  width: 100vw;
  height: 100vh;
  background: #f5f5f5;
  --azul: #1a3253;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes arribaIntro {
  from {
    top: 100%;
  }

  to {
    top: 0%;
  }
}

@keyframes salidaIntro {
  from {
    top: 0%;
  }

  to {
    top: -100%;
  }
}

@keyframes salidaCuadro {
  from {
    top: 0%;
    height: 100vh;
  }

  to {
    top: 100%;
    height: 0vh;
  }
}


/* ENTRADA
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.landing{
  width: 100vw;
  height: 100vh;
  z-index: 7;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
  position: relative;
  pointer-events: none;
}

.landing.intro{
  opacity: 1;
  pointer-events: all;
}

.videoIntro{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  animation: arribaIntro 1s 0.5s forwards;
  z-index: 6;
  pointer-events: none;
  transition: 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.videoIntro video{
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

.recursosIntro, .cuadroInvert, .cuadroIntro{
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
}

.cuadroIntro #anim2{
  position: absolute;
  height: 90vh;
  margin: 5vh 0;
  left: 0;
  filter: brightness(0%) invert(100%);
  animation: Anim2 1s 35s forwards, salidaIntro 1s 37s forwards, fade-out 0.001s 38s forwards;
}

@keyframes Anim2{
  from{
    top: -100%;
  } to {
    top: 0%;
  }
}

.recursosIntro{
  animation: arribaIntro 1s 34s forwards, salidaIntro 1s 37s forwards;
  text-align: center;
  z-index: 100;
}

.recursosIntro #anim{
  height: 90vh;
  margin: 5vh 0;
  /* filter: brightness(0); */
}

.cuadroInvert{
  backdrop-filter: invert(100%);
  animation: arribaIntro 1s 35s forwards, salidaCuadro 1s 38s forwards;
  z-index: 120;
}

.cuadroIntro{
  background-color: var(--azul);
  animation: arribaIntro 1s 35s forwards, salidaCuadro 1s 38s forwards;
  /* filter: invert(100%); */
  z-index: 110;
}

.sidenav.openTab.intro .closebtn{
  display: none;
}

.skipIntro{
  position: absolute;
  margin-left: 20px;
  margin-top: 30px;
  z-index: 200;
}

.audio{
  position: absolute;
  right: 0;
  margin-right: 20px;
  margin-top: 30px;
  z-index: 200;
}

.skipIntro span, .audio span{
  border: 2px solid var(--azul);
  background-color: transparent;
  color: var(--azul);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  animation: fade-in 0.5s 2s forwards, fade-out 0.5s 34s forwards;
}

.skipIntro span:hover, .audio span:hover{
  background-color: var(--azul);
  color: white;
}




/* SIDE NAV
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Menú/info lateral */
.sidenav {
  height: 100vh;
  width: 0;
  position: absolute;
  top: 0;
  left:0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6;
  background-color: var(--azul);
  padding-top: 40px;
  overflow-y: auto;
  transition: 1s;
  -ms-overflow-style: none;
  /* IE y Edge */
  scrollbar-width: none;
  /* Firefox */
}

.sidenav.opentab{ 
  overflow-x: hidden; 
}

/* Botón cerrar */
.sidenav .closebtn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  width: 20px;
  cursor: pointer;
  z-index: 3;
}

.idiomas{
  min-width: 100vw;
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 12px;
  cursor: pointer;
  display: inline-block;
}

.idiomas p{
  float: left;
  margin-right: 5px;
}

/* Timeline */
#main {
  transition: margin-left 1s;
}

/* Texto expo */
.infoExpo {
  width: 100%;
  color: white;
  margin: auto;
  top: 70px;
  position: absolute;
  overflow: scroll;
  height: 90vh;
  -ms-overflow-style: none;
  /* IE y Edge */
  scrollbar-width: none;
  /* Firefox */
}

.infoExpo h1 {
  font-size: 26px;
  padding: 0 40px;
  line-height: 32px;
  font-weight: 300;
}

.bold {
  font-weight: 900;
}

.infoExpo .intro-text{
  font-size: 14px;
  padding: 10px 40px 0;
  font-weight: 300;
  min-width: 100vw;
}

.subtitle{
  font-size: 12px;
  font-weight: 200;
  padding: 10px 40px 0;
  margin-bottom: 20px;
}

#cast, #val, .closebtn, .closePhoto{
  transition: 0.2s;
}

#cast:hover, #val:hover, .closebtn:hover, .closePhoto:hover{
  opacity: 0.6;
}

/* .explorar {
  opacity: 0;
  pointer-events: none;
  width: 120px;
  position: absolute;
  right: 0;
  bottom: 15%;
  padding: 10px;
  margin-top: 30px;
  margin-right: 60px;
  text-align: center;
  font-size: 18px;
  background-color: var(--azul);
  border: 1px solid white;
  transition: 0.3s;
  cursor: pointer;
}

.intro .explorar {
  pointer-events: all;
  animation: fade-in 1s 4s forwards;
}

.explorar:hover {
  background-color: white;
  color: var(--azul);
} */

.buttons-container{
  width: 95%;
  max-width: 500px;
  height: 50px;
  position: relative;
  left: 50%;
  transform: translateX(-45%);
  /* bottom: 10%; */
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 50px;
  /* padding-left: 40px; */
}

.buttons-container a{
  text-decoration: none;
  color: white;
}

.button{
  /* pointer-events: none; */
  width: 90px;
  padding: 10px;
  margin-right: 10px;
  text-align: center;
  font-size: 12px;
  background-color: var(--azul);
  border: 1px solid white;
  transition: 0.3s;
  cursor: pointer;
  z-index: 4;
}

.button.active, .buttons-container .button:hover {
  background-color: white;
  color: var(--azul);
} 

.logos-container{
  width: 100%;
  max-width: 400px;
  height: 100px;
  position: relative;
  left: 55%;
  transform: translateX(-50%);
  /* bottom: 5%; */
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 50px;
  /* padding-left: 40px; */
}

.logos-container div{
  width: 90%;
  margin-right: 10px;
}

.logos-container img{
  height: 40px;
}

#logo-ILP, #logo-UV{
  margin-left: 10px;
}

#logo-ILP{
  margin-top: -6px;
  height: 50px;
}

#logo-125{
  margin-left: 20px;
}


/* Barras (icono) del menú */

.topnav {
  z-index: 4;
}

.topnav a {
  float: left;
  display: block;
  padding-left: 20px;
  margin-top: -3px;
}

.topnav svg:hover {
  opacity: 0.7;
}


@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }

}


/* BARRA FILTROS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.section {
  width: 100vw;
  position: fixed;
  top: 0;
  padding: 20px 0;
  z-index: 4;
  background: #f5f5f5;
}

.section .filtros {
  width: 60%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.section .filtros p {
  color: var(--azul);
}

.section .filtros p.filtro {
  font-size: 1.2em;
  cursor: pointer;
  color: gray;
  transition: 0.2s;
}

.section .filtros p.filtro:hover {
  color: var(--azul);
}

.section .filtros p.filtro.active {
  color: var(--azul);
  font-weight: bold;
}


/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline {
  width: 100%;
  white-space: nowrap;
  overflow-x: hidden;
  margin-top: 0px;
  background: #f5f5f5;
}

.timeline ol {
  font-size: 0;
  width: 100vw;
  padding: 500px 0;
  transition: all 1s;
  margin-bottom: 40px;
}

/* Línea de tiempo */
.timeline ol li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  width: 150px;
  height: 1px;
  background: #e0e0e0;
}

/* Espacio entre año y año. Longitud de la línea */
.timeline ol li:last-child {
  width: 320px;
}

/* Espacio entre línea y línea */
.timeline ol li:not(:first-child) {
  margin-left: 90px;
}

/* Espacio entre línea y línea (cuando no debe haber)*/
.timeline ol li.noLine:not(:first-child) {
  margin-left: 0px;
}

/* Años */
.timeline ol li .years {
  position: absolute;
  top: 50%;
  left: calc(100% + 1px);
  bottom: 0;
  width: 60px;
  height: 20px;
  transform: translateY(-50%);
  color: black;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

/* Recuadros información */
.timeline ol li div.cita,
.timeline ol li div.objeto,
.timeline ol li div.libro {
  position: absolute;
  left: calc(100% + 25px);
  width: 320px !important;
  padding: 15px;
  font-size: 12px;
  white-space: normal;
  color: black;
  background: white;
  z-index: 2;
  border-radius: 5px 5px 5px 0px;
}

.timeline ol li div.objeto,
.timeline ol li div.libro {
  cursor: pointer;
}

.timeline ol li div.abajo {
  border-radius: 0px 5px 5px 5px;
}

.sameYear {
  margin-left: -140px;
}

/* Recuadros citas */
.timeline ol li div.cita {
  display: flex;
  max-height: 220px;
  flex-direction: column;
  justify-content: center;
  background-color: #e0e0e0;
}

.timeline ol li div.cita p {
  font-family: 'Palatino', serif;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  color: #6a6a6a;
  padding-right: 5px;
}

.timeline ol li div.cita .citaTexto {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  overflow-y: scroll;
  margin-top: 20px;
  max-height: 140px;
}

/* Título objetos */
.timeline .title {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 900;
}

/* Recuadros información por abajo de la línea*/
.abajo {
  margin-top: 15px;
}

.arriba {
  margin-top: -5px;
}

.imagenSola {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.imagenSolaLibro {
  display: block;
  width: 96%;
  height: 96%;
  margin: 0 auto;
  margin-bottom: 15px;
}


/* "Flechas" grises que señalan hacia el timeline */
.timeline ol li div.cita::before,
.timeline ol li div.objeto::before,
.timeline ol li div.libro::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

/* Para que se coloquen los divs uno abajo y otro arriba */
.timeline ol li:nth-child(odd) div.cita,
.timeline ol li:nth-child(odd) div.objeto,
.timeline ol li:nth-child(odd) div.libro {
  top: -30px;
  transform: translateY(-100%);
}

/* "Flechas" grises que señalan hacia el timeline */
.timeline ol li:nth-child(odd) div.cita::before,
.timeline ol li:nth-child(odd) div.objeto::before,
.timeline ol li:nth-child(odd) div.libro::before {
  top: 100%;
  border-width: 8px 8px 0 0;
  border-color: white transparent transparent transparent;
}

.timeline ol li:nth-child(odd) div.cita::before {
  border-color: #e0e0e0 transparent transparent transparent;
}

.timeline ol li:nth-child(even) div.cita,
.timeline ol li:nth-child(even) div.objeto,
.timeline ol li:nth-child(even) div.libro {
  top: calc(100% + 16px);
}

.timeline ol li:nth-child(even) div.cita::before,
.timeline ol li:nth-child(even) div.objeto::before,
.timeline ol li:nth-child(even) div.libro::before {
  top: -8px;
  border-width: 8px 0 0 8px;
  border-color: transparent transparent transparent white;
}

.timeline ol li:nth-child(even) div.cita::before {
  border-color: transparent transparent transparent #e0e0e0;
}

/* Acumulaciones */

.acumulacion {
  width: 320px !important;
  height: 300px !important;
  /* margin: 100px; */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  flex-direction: column;
}

.acPeque {
  height: 250px !important;
}

.acGrande1 {
  height: 550px !important;
}

.acGrande2 {
  height: 400px !important;
}

.acGrande3 {
  height: 360px !important;
}


.elemento {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* He afegit totes estes coses perquè flexbox feia coses rares en Firefox*/
  flex: 1;
  height: 0px;
  min-height: 0;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dedede;
  transition: 0.3s;
  cursor: pointer;
  color: black;
  z-index: 2;
}

.elemento:last-of-type {
  border: 0;
}

.elemento.active {
  flex: 5;
}

.elemento .imagen {
  width: 80%;
  height: 0%;
  overflow: hidden;
  transition: 0.3s;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  justify-content: center;
  align-items: center;
}

.elemento .dos .imagen {
  width: 90%;
}

.elemento.active .imagen {
  height: 90%;
}

.elemento.dos.active .imagen {
  height: 70%;
}

.elemento.seis.active .imagen,
.elemento.diez.active .imagen {
  height: 85%;
}

.elemento .title-acumulacion {
  font-weight: 300;
}

.elemento.active .title-acumulacion {
  font-weight: 900;
}

.elemento .texto {
  width: 90%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  align-items: center;
}

/* TIMELINE ARROWS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.arrows {
  width: 100%;
  text-align: center;
}

#main.intro, .section.intro, .arrows.intro{
  opacity: 0;
  /* animation: fade-in 1s 5s forwards; */
  pointer-events: none;
}

.arrow {
  background-color: transparent;
  cursor: pointer;
  padding: 18px 50px;
  border: 1px solid var(--azul);
  border-radius: 3px;
  margin: 0 20px;
  position: relative;
  transition: 0.3s;
}

.arrow.disabled {
  cursor: auto;
}

.arrow:hover {
  background-color: var(--azul);
}

.arrow.disabled:hover {
  background-color: transparent;
}

.arrows .arrow__prev {
  margin-right: 10px;
}

.disabled {
  opacity: .5;
}

.arrows img {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.arrow:hover img {
  filter: brightness(0) invert(1);
}

.arrow.disabled:hover img {
  filter: none;
}


/* Explicacion
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.contenedorExpl {
  width: 100vw;
  height: 0;
  position: absolute;
  background-color: white;
  top: 100%;
  z-index: 100;
  transition: 1s;
  overflow: hidden;
  -ms-overflow-style: none;
  /* IE y Edge */
  scrollbar-width: none;
  /* Firefox */
}

.contenedorExpl.active {
  transform: translateY(-100%);
  height: 100vh;
}

.volver {
  height: 7vh;
  width: 100vw;
  display: flex;
  border-bottom: 1px solid black;
  color: black;
  font-size: 16px;
  transition: 0.2s;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.volver:hover {
  background-color: var(--azul);
  border-color: var(--azul);
  color: white;
}

.explicacion {
  width: 100vw;
  height: 95vh;
  overflow: scroll;
  -ms-overflow-style: none;
  /* IE y Edge */
  scrollbar-width: none;
  /* Firefox */
}

.explRow {
  width: 90%;
  height: max-content;
  margin: auto;
  padding: 40px 0;
  overflow: auto;
  display: flex;
  justify-content: space-between;
  color: black;
}


.explContent1 h1 {
  font-size: 32px;
  margin-bottom: 0.5em;
}

.explContent1 h2 {
  font-size: 24px;
  margin-bottom: 1.6em;
}

.explContent1 h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.6em;
}

.container-video-obj{
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding-top: 50px;
}

.container-video-obj video{
  width: 100%;
}

.container-video-obj.vidInfo #play-button{
    top: 57%;
}

.explRow-img{
  width: 90%;
  height: max-content;
  margin: auto;
  padding: 40px 0;
  overflow: auto;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  color: black;
  margin-bottom: 50px;
}

.explRow-img>img {
  width: 33%;
  float: left;
  padding: 0 10px;
}


/* Libros
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.libro {
  cursor: pointer;
}

.libros-container {
  display: none;
  opacity: 0;
  width: 75vw;
  min-height: 70vh;
  max-height: 85vh;
  overflow: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--azul);
  z-index: 100;
  padding: 30px 50px 30px 60px;
  transition: 0.3s;
}

.libros-inner{
  height: 74vh;
  overflow: scroll;
  -ms-overflow-style: none;
  /* IE y Edge */
  scrollbar-width: none;
  /* Firefox */
}

.librosInf {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  width: 20px;
  cursor: pointer;
}

.libros-text {
  width: 100%;
  margin: 20px 0 30px 0;
}

.libros-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.libros-author {
  font-size: 22px;
  margin-bottom: 5px;
}

.libros-year {
  font-size: 18px;
}

.libros-img-container {
  width: 100%;
  margin: 0 auto;
  display: inline-block;
  float: left;
}


/* Página info
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.b-info {
  width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

.container-video {
  width: 100vw;
  position: relative;
  margin-top: 50px;
}

.container-video iframe {
  width: 100%;
}

#play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  z-index: 4;
  cursor: pointer;
}

#pause-button {
  display: none;
}

.container-info {
  width: 100vw;
  padding: 0 20px 0 30px;
  margin-top: 40px;
  color: black;
  font-size: 14px;
  padding-bottom: 20px;
}

.parrafo-info {
  margin-bottom: 15px;
}

.parrafo-info a {
  color: black;
}

.galery-info {
  width: 90vw;
  margin: 0 auto;
  margin-top: 10px;
  transition: 0.5s;
  overflow-x: hidden;
}

.slide-info {
  display: flex;
  width: 450%;
  transition: 0.5s;
}

.row {
  display: flex;
}

.column {
  width: 100%;
}

.column img {
  width: 100%;
  padding: 2px;
  cursor: pointer;
}

.flechas-galeria-info {
  width: 100vw;
  text-align: center;
  bottom: 0;
  margin-top: 30px;
  padding-top: 30px;
}

.photoFullInfo {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0%;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.6);
}

.photoFullInfo.active {
  pointer-events: all;
  opacity: 1;
}

.flechasGaleriaInfo {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
  z-index: 999999;
}

/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 700px) {
  @keyframes sidenavIntro {
    from {
      width: 100vw;
    }

    to {
      width: 100vw;
    }
  }

  @keyframes infoExpoIntro {
    from {
      padding-right: 0px;
    }

    to {
      padding-right: 10px;
    }
  }

  @keyframes infoExpo {
    from {
      height: 0;
    }

    to {
      height: 50vh;
    }
  }

  @keyframes sideNavExit {
    from {
      width: 100vw;
    }

    to {
      width: 0vw;
    }
  }

  .sidenav {
    height: 100vh;
    width: 0;
    position: absolute;
    top: 0;
    left:0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 6;
    padding-top: 40px;
    overflow-y: auto;
  }

  .infoExpo {
    padding-right: 20px;
    width: 100vw;
  }

  .infoExpo p {
    margin-bottom: 20px;
  }

  .openTab, .recursosIntro, .cuadroIntro, .cuadroInvert, .cuadroIntro #anim2{
    width: 100vw;
  }

 /*  .explorar {
    bottom: 0%;
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    padding: 8px;
  }
 */
  .timeline ol,
  .timeline ol li {
    width: auto;
  }

  .timeline ol {
    padding: 0;
    transform: none !important;
  }

  .timeline ol li {
    max-width: 100vw;
    display: block;
    height: auto;
    background: #f5f5f5;
  }

  /* Espacio entre año y año. Longitud de la línea */
  .timeline ol li:last-child {
    height: 50px;
  }

  /* Espacio entre línea y línea */
  .timeline ol li:not(:first-child) {
    margin-bottom: 45px;
  }

  .timeline ol li .years {
    position: relative;
    left: 37%;
    top: -10px;
    transform: translate(0, -50%);
    float: left;
  }


  .hideYear {
    display: none;
  }

  .timeline ol li:first-child {
    margin-top: 45px;
    margin-bottom: 45px;
  }

  .timeline ol li:not(:first-child) {
    margin-left: auto;
  }

  .timeline ol li div.cita,
  .timeline ol li div.objeto,
  .timeline ol li div.libro {
    width: 94%;
    margin: 0 auto 25px;
    margin-bottom: 30px;
  }

  .acumulacion {
    width: 94%;
    margin: 0 auto;
  }

  .sameYear {
    margin-top: -20px !important;
  }

  .elemento .imagen {
    max-width: 280px;
    height: 0%;
    overflow: hidden;
    transition: 0.3s;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    justify-content: center;
    align-items: center;
  }  

  .elemento.active .imagen {
    max-height: 280px;
  }

  .timeline ol li div.cita,
  .timeline ol li div.objeto,
  .timeline ol li div.libro {
    position: static;
  }

  .timeline ol li:nth-child(odd) div.cita,
  .timeline ol li:nth-child(odd) div.libro,
  .timeline ol li:nth-child(odd) div.objeto {
    transform: none;
  }

  .timeline ol li:nth-child(odd) div.cita::before,
  .timeline ol li:nth-child(odd) div.libro::before,
  .timeline ol li:nth-child(odd) div.objeto::before,
  .timeline ol li:nth-child(even) div.cita::before,
  .timeline ol li:nth-child(even) div.libro::before,
  .timeline ol li:nth-child(even) div.objeto::before {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: none;
    border-left: 1px solid #b4b4b4;
    height: 25px;
  }

  .timeline ol li:last-child,
  .timeline ol li:nth-last-child(2) div::before,
  .timeline ol li:not(:last-child)::after,
  .arrows {
    display: none;
  }

  .arrInfo{
    display: block;
    margin-top: -40px;
    height: 70px;
  }

  /* Libros */
  .libros-container {
    width: 85vw;
    min-height: 60vh;
    max-height: 88vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 20px 30px 20px;
  }

  .librosInf {
    top: 10px;
    right: 15px;
    font-size: 26px;
    width: 10px;
  }

  .libros-text {
    width: 100%;
    margin: 20px 0 30px 0;
  }

  .libros-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .libros-author {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .libros-year {
    font-size: 12px;
  }

  .libros-texto-container{
    padding: 10px 0 20px 0;
    font-size: 14px;
  }

  .libros-img-container {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 25px;
    display: inline-block;
    float: left;
  }

  .libros-img-container img {
    width: 100%;
    margin: 0 5px 5px 0;
  }

  /* Explicación */
  .contenedorExpl {
    width: 100vw;
    height: 0;
    position: fixed;
    top: 100%;
  }

  .explRow {
    width: 90%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .explRow .explContent1,
  .explContent2 {
    width: 100%;
    font-size: 14px;
  }
  
  .explContent1 h1 {
    font-size: 26px;
    margin-bottom: 0.3em;
  }
  
  .explContent1 h2 {
    font-size: 20px;
    margin-bottom: 1.2em;
  }

  .explContent1 p, .explContent1 h1, .explContent1 h2{
    padding: 0 10px;
  }
  
  .container-video-obj{
    width: 95%;
  }
  
  .explRow-img{
    width: 90%;
    padding: 15px 0;
    margin-bottom: 40px;
  }
  
  .explRow-img>img {
    width: 100%;
    float: left;
    padding: 10px 10px;
  }
  
}

@media screen and (min-width: 500px) and (max-width: 600px) {

  .timeline ol li .years {
    position: relative;
    left: 44%;
    top: -10px;
    transform: translate(0, -50%);
    float: left;
  }

  .container-video {
    width: 100vw;
    height: 300px;
  }

  .container-video iframe{
    height: 100%;
  }
}

@media screen and (min-width: 400px) and (min-height: 700px) {

  .acumulacion {
    margin-left: 10% !important;
  }
}


@media screen and (min-width: 600px) and (max-width: 700px) {
  /* Espacio entre año y año. Longitud de la línea */
  .timeline ol li:last-child {
    height: 55px;
  }

  /* Espacio entre línea y línea */
  .timeline ol li:not(:first-child) {
    margin-bottom: 50px;
  }

  .timeline ol li .years {
    position: relative;
    left: 43%;
    top: -10px;
    transform: translate(0, -50%);
    float: left;
  }

  .timeline ol li:first-child {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .timeline ol li div.cita,
  .timeline ol li div.objeto,
  .timeline ol li div.libro {
    width: 65% !important;
  }

  .acumulacion {
    width: 65% !important;
    height: 270px !important;
    margin-left: 17% !important;
  }

  .cita{
    margin-left: 17% !important;
  }

  .elemento .imagen {
    max-width: 220px;
    height: 0%;
    overflow: hidden;
    transition: 0.3s;
  }

  .elemento.active .imagen {
    max-height: 520px;
  }

  .acPeque {
    height: 250px !important;
  }
  
  .acGrande1 {
    height: 550px !important;
  }
  
  .acGrande2 {
    height: 450px !important;
  }
  
  .acGrande3 {
    height: 380px !important;
  }

  
  .elemento.seis.active .imagen,
  .elemento.diez.active .imagen {
    height: 75%;
  }

  /* Intro */
  .infoExpo{
    /* padding-top: 30px; */
  }

  .buttons-container{
    height: 50px;
    margin-top: 70px;
  }
  
  .logos-container{
    max-width: 400px;
  }
  
  .logos-container div{
    width: 50%;
    margin-right: 10px;
  }
  
  .logos-container img{
    height: 40px;
  }

  .container-video {
    width: 100vw;
    height: 400px;
  }

  .container-video iframe{
    height: 100%;
  }
}


@media screen and (min-width: 700px) {
  .sidenav{
    -ms-overflow-style: none;
    /* IE y Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .contenedorTitulo {
    top: 40%;
  }

  .resumen {
    max-width: 580px;
  }

  .infoExpo {
    padding-right: 40px;
  }

  .topnav a {
    padding-left: 25px;
    margin-top: -5px;
  }

  .timeline {
    position: fixed;
    left: 50%;
    top: 50%;
    overflow-x: auto;
    transform: translate(-50%, -50%);
    margin-top: 40px;
    -ms-overflow-style: none;
    /* IE y Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .timeline::-webkit-scrollbar {
    display: none;
  }

  .arrows {
    display: none;
  }

  .logos-container img{
    height: 50px;
  }
  
  #logo-ILP, #logo-UV{
    margin-left: 20px;
  }

  #logo-ILP{
    margin-top: -7px;
    height: 60px;
  }
  
  #logo-125{
    margin-left: 20px;
  }
  

  /* Explicación */
  .explRow {
    width: 90%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .explRow,
  .explContent2 {
    width: 100%;
    font-size: 16px;
  }

  .explContent1{
    width: 70%;
    margin-left: 8%;
  }
  
  .explContent1 h1 {
    font-size: 28px;
    margin-bottom: 0.4em;
  }
  
  .explContent1 h2 {
    font-size: 22px;
    margin-bottom: 1.4em;
  }
  
  .container-video-obj{
    width: 85%;
  }
  
  .explRow-img{
    width: 85%;
    padding: 15px 0;
    margin-bottom: 50px;
  }
  
  .explRow-img>img {
    width: 50%;
  }

  /* Página info
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .container-video {
    width: 80vw;
    height: 350px;
    position: relative;
    margin: 0 auto;
    margin-top: 70px;
  }

  .container-video iframe{
    height: 100%;
  }

  .container-video img {
    width: 30px;
  }

  .container-info {
    width: 100vw;
    padding: 0 20px 0 20px;
    margin-top: 50px;
    font-size: 14px;
    position: relative;
    left: 10%;
    padding-bottom: 40px;
  }

  .galery-info {
    width: 85vw;
    margin: 0 auto;
  }

  .slide-info {
    display: flex;
    width: 400%;
    transition: 0.5s;
  }

  .column img {
    padding: 4px;
  }

  .flechas-galeria-info {
    margin-top: 15px;
    padding-bottom: 40px;
  }

  .flechas-info {
    height: 30px;
    width: 80px;
    margin: 10px;
  }

  .flechas-info img {
    height: 30px;
  }

  /* Galería */
  .container-img-galeria{
    width: 85vw;
    margin: 0 auto;
  }

}


@media screen and (min-width: 768px) {

  .contenedorTitulo {
    width: 45vw;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 40%;
  }

  .titulo h1 {
    align-items: center;
    min-width: 45vw;
    font-size: 30px;
  }

  .resumen {
    font-size: 14px;
    min-width: 50vw;
  }

  /* SIDE NAV
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    background-color: var(--azul);
    padding-top: 40px;
  }

  .infoExpo {
    width: 60vw;
    font-size: 14px;
    padding-right: 40px;
  }

  .infoExpo h1 {
    font-size: 30px;
  }

  .idiomas, .subtitle{
    font-size: 14px;
  }

  .infoExpo .intro-text{
    font-size: 15px;
    min-width: 0;
  }

  .button{
    font-size: 14px;
  }

  .openTab, .recursosIntro, .cuadroInvert, .cuadroIntro, .cuadroIntro #anim2 {
    width: 60vw !important;
  }

  .closeTab {
    margin-left: 60vw;
  }

  /* BARRA FILTROS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

  .section .filtros {
    width: 50%;
  }

  .section .filtros p {
    font-size: 1.2em;
  }


  /* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

  .timeline {
    height: 85%;
    margin-top: 40px;
  }

  .timeline ol li {
    width: 150px;
    height: 3px;
  }

  .timeline ol li div {
    width: 290px;
    font-size: 14px;
  }

  .timeline .title {
    font-size: 14px;
  }

  .timeline ol li .years {
    font-size: 14px;
  }

  /* TIMELINE ARROWS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

  .arrows {
    display: block;
    position: fixed;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .arrows .arrow__prev {
    margin-right: 20px;
  }

  .arrows img {
    width: 30px;
    height: 30px;
  }

  /* Libros */
  .libros-container {
    width: 85vw;
    min-height: 40vh;
    max-height: 90vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 40px 30px 40px;
    -ms-overflow-style: none;
    /* IE y Edge */
    scrollbar-width: none;
    /* Firefox */
  }


  .librosInf {
    top: 15px;
    right: 20px;
    font-size: 26px;
    width: 15px;
  }

  .libros-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .libros-author {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .libros-year {
    font-size: 14px;
  }

  .libros-texto-container{
    padding: 10px 0 20px 0;
    font-size: 14px;
    line-height: 1.5em;
  }

  .libros-img-container{
    margin-bottom: 25px;
  }

  .libros-img-container img {
    width: 48%;
    margin: 0 5px 5px 0;
  }

}


@media(min-width: 1024px) {

  /* ENTRADA
–––––––––––––––––––––––––––––––––––––––––––––––––– */

  @keyframes sidenavIntro {
    from {
      width: 100vw;
    }

    to {
      width: 45vw;
    }
  }

  @keyframes sideNavExit {
    from {
      width: 45vw;
    }

    to {
      width: 0vw;
    }
  }

  .explorar {
    bottom: 4%;
  }

  .contenedorTitulo {
    min-width: 40vw;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 40%;
    margin-left: 5px;
    padding: 50px 20px 50px 15px;
  }


  .titulo h1 {
    min-width: 40vw;
    font-size: 30px;
  }

  .resumen {
    font-size: 14px;
    width: 40vw;
    margin-left: 10px;
  }

  @keyframes seccion1 {
    from {
      width: 100vw;
    }

    to {
      width: 40vw;
    }
  }

  @keyframes seccion1fuera {
    from {
      width: 40vw;
    }

    to {
      width: 0vw;
    }
  }

  .infoExpo {
    width: 55vw;
    padding-right: 40px;
    /* padding-top: 30px; */
  }

  .infoExpo h1 {
    font-size: 34px;
  }

  .idiomas, .subtitle{
    font-size: 14px;
  }

  .buttons-container{
    max-width: 400px;
  }

  .logos-container{
    margin-top: 70px;
    max-width: 480px;
  }

  .logos-container img{
    height: 55px;
  }
  
  #logo-ILP, #logo-UV{
    margin-left: 20px;
  }

  #logo-ILP{
    margin-top: -7px;
    height: 65px;
  }
  
  #logo-125{
    margin-left: 20px;
  }

  .openTab, .recursosIntro, .cuadroInvert, .cuadroIntro, .cuadroIntro #anim2{
    width: 55vw !important;
  }

  .closeTab {
    margin-left: 55vw;
  }

  /* BARRA FILTROS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  .section .filtros {
    width: 40%;
  }

  .section .filtros p {
    font-size: 1.3em;
  }


  /* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  .timeline {
    height: 80%;
    overflow-y: scroll;
  }


  /* TIMELINE ARROWS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  .arrows {
    bottom: 5%;
  }


  /* Libros
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  .libros-container {
    width: 75vw;
    max-width: 800px;
    min-height: 40vh;
    max-height: 80vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 40px 30px 40px;
  }

  .libros-title {
    font-size: 30px;
  }

  .libros-author {
    font-size: 20px;
    margin-bottom: 2px;
  }

  .libros-year {
    font-size: 16px;
  }
  
  .libros-texto-container{
    max-width: 900px;
    font-size: 16px;
  }

  .container-video img {
    width: 40px;
  }

  /* Página info
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .container-video {
    width: 80vw;
    height: 500px;
    margin-top: 90px;
  }

  .container-video iframe{
    height: 100%;
  }

  .galery-info {
    width: 85vw;
    margin: 0 auto;
  }

  .slide-info {
    display: flex;
    width: 380%;
  }

  .column img {
    padding: 5px;
  }

  .flechas-galeria-info {
    margin-top: 20px;
    padding-bottom: 50px;
  }
}


@media(min-width: 1250px) {

  /* Página info
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .video-info {
    width: 95vw;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
  }

  .container-video {
    width: 72vw;
    position: relative;
    margin: 70px 0 0 0;
  }

  .container-video img {
    width: 40px;
  }

  .container-info {
    width: 30vw;
    padding: 0 30px 0 30px;
    margin-top: 50px;
    font-size: 14px;
    position: static;
  }

  .parrafo-info {
    margin-bottom: 20px;
  }

  .galery-info {
    width: 92vw;
    margin: 0 auto;
    margin-top: 70px;
  }

  .slide-info {
    display: flex;
    width: 300%;
  }

  .column img {
    padding: 8px;
  }

  .flechas-galeria-info {
    margin-top: 10px;
    padding-bottom: 40px;
  }

  .flechas-info {
    height: 38px;
    width: 100px;
    margin: 20px;
  }

  .flechas-info img {
    height: 35px;
  }

  .libros-texto-container{
    padding-right: 40px;
  }

   /* Explicación */
   .explRow {
    width: 90%;
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    margin-bottom: 40px;
  }
  
  .explContent1,
  .explContent2 {
    width: 50%;
    font-size: 16px;
    overflow: auto;
  }

  .explContent1{
    margin-left: 0%;
  }
  
  .explContent1 h1 {
    font-size: 32px;
    margin-bottom: 0.5em;
  }
  
  .explContent1 h2 {
    font-size: 24px;
    margin-bottom: 1.7em;
  }
  
  .container-video-obj{
    width: 90%;
  }
  
  .explRow-img{
    width: 90%;
    margin-bottom: 60px;
  }
  
  .explRow-img>img {
    width: 33%;
    padding: 10px;
  }
}


@media(min-width: 1400px) {

  /* Página info
 –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .video-info {
    width: 90vw;
  }

  .container-video img {
    width: 55px;
  }

  .container-info {
    padding: 0 30px 0 50px;
    font-size: 15px;
  }

  .buttons-container{
    margin-top: 70px;
  }

}


@media(min-width: 1500px) {

  @keyframes sidenavIntro {
    from {
      width: 100vw;
    }

    to {
      width: 35vw;
    }
  }

  @keyframes sideNavExit {
    from {
      width: 35vw;
    }

    to {
      width: 0vw;
    }
  }

  @keyframes infoExpo {
    from {
      height: 0;
    }

    to {
      height: 30vh;
    }
  }

  .explorar {
    bottom: 0%;
  }

  .timeline {
    height: 98%;
    position: fixed;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    margin-top: 80px;
  }

  .espacio {
    height: 120px;
  }

  .infoExpo {
    width: 40vw;
    font-size: 14px;
    padding-right: 30px;
  }

  .buttons-container, .logos-container{
    padding-left: 0px;
  }

  .openTab, .recursosIntro, .cuadroInvert, .cuadroIntro, .cuadroIntro #anim2 {
    width: 40vw !important;
  }

  .closeTab {
    margin-left: 40vw;
  }

  .explContent1 {
    margin-top: 50px;
    width: 40%;
  }

  .explContent2 {
    width: 60%;
  }

  .libros-container {
    width: 75vw;
    min-height: 70vh;
    max-height: 85vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px 50px 30px 60px;
  }

  .librosInf {
    top: 20px;
    right: 25px;
    font-size: 36px;
    width: 20px;
    cursor: pointer;
  }

  .libros-text {
    width: 100%;
    margin: 20px 0 30px 0;
  }

  .libros-title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .libros-author {
    font-size: 22px;
    margin-bottom: 5px;
  }

  .libros-year {
    font-size: 18px;
  }

  .libros-img-container {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    display: inline-block;
    float: left;
  }

  .libros-img-container img {
    width: 32%;
    margin: 0 5px 5px 0;
  }

  .libros-texto-container{
    max-width: 1050px;
  }

  .galery-info {
    width: 87vw;
    margin: 0 auto;
    margin-top: 90px;
  }
}

@media(min-width: 1700px){
  .container-video {
    width: 80vw;
    height: 620px;
    margin-top: 70px;
  }

  .container-info{
    margin-top: 120px;
  }

  .openTab, .recursosIntro, .cuadroInvert, .cuadroIntro, .cuadroIntro #anim2 {
    max-width: 800px;
  }

  .infoExpo {
    max-width: 800px;
  }

  .closeTab {
    margin-left: 800px;
  }
}


/* GALERIA
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#b-galeria {
  /*position: relative;
  overflow-x: hidden;
  height: 100%;*/
}

#img-expo{
  width: 100%;
}

.galeria {
  width: 100vw;
  height: 80vh;
  position: relative;
  overflow-x: scroll;
  /*overflow-y: hidden; */
  margin-top: 6vh;
  -ms-overflow-style: none;
  /* IE y Edge */
  scrollbar-width: none;
  /* Firefox */
}

.galeria.off,
.arrows.off,
.topnav.off,
.video-info.off{
  pointer-events: none;
  opacity: 0.2;
}

.containerGaleria {
  height: 80vh;
  width: 540vh;
  margin: 0 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-42%);
  transition: 0.8s;
}

.containerGaleria img {
  max-height: 40%;
  margin: 5px;
  cursor: pointer;
  transition: 0.2s;
  filter: saturate(0);
}

.containerGaleria img:hover {
  filter: saturate(0) brightness(50%);
}

.photoFull {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 5%;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
}

.photoFull.active {
  pointer-events: all;
  opacity: 1;
}

.containerPhoto {
  position: absolute;
  background-color: white;
  height: 80%;
  padding: 40px;
  width: 80%;
  max-width: 900px;
  top: 45%;
  transform: translateY(-50%);
}

.containerPhotoInfo{
  top: 50%;
}

.containerPhoto .closePhoto {
  position: absolute;
  top: 10px;
  right: 20px;
  color: var(--azul);
  z-index: 99999;
  font-size: 22px;
  cursor: pointer;
  transition: 0.2s;
}

.containerPhoto .closePhoto:hover {
  color: gray;
}

.closePhoto img{
  width: 15px;
}

.containerPhoto .photo {
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.containerPhoto .photo img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  opacity: 0;
  transition: 0.2s;
  filter: saturate(0);
}

.photoFullInfo .containerPhoto .photo img {
  filter: saturate(1);
}

.containerPhoto .photo img.active {
  opacity: 1;
}

.containerPhoto .photo p {
  color: black;
  font-size: 18px;
  opacity: 0;
  transition: 0.2s;
}

.containerPhoto .photo p.active {
  opacity: 1;
}

.containerFlechas, .containerFlechasInfo{
  width: 100%;
  margin: auto;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999999;
  display: flex;
  justify-content: center;
}

.containerFlechasInfo{
  position: fixed;
}

.flechasGaleria {
  width: 100%;
  max-width: 1060px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
  z-index: 999999;
}

.flechasGaleria.active, .flechasGaleriaInfo.active {
  opacity: 1;
  pointer-events: all;
}

.flechasGaleria img , .flechasGaleriaInfo img{
  cursor: pointer;
}

.flechasGaleria .flecha_der,
.flechasGaleria .flecha_izq, 
.flechasGaleriaInfo .flecha_der,
.flechasGaleriaInfo .flecha_izq {
  text-align: center;
}

@media (min-width: 980px) {

  .containerGaleria {
    margin: 0 70px;
  }

  .flechasGaleria .flecha_izq:hover,
  .flechasGaleriaInfo .flecha_izq:hover {
    animation: bounce_izq 0.8s infinite;
  }

  .flechasGaleria .flecha_der:hover,
  .flechasGaleriaInfo .flecha_der:hover {
    animation: bounce_der 0.8s infinite;
  }

}

@keyframes bounce_izq {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-8px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes bounce_der {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(8px);
  }

  100% {
    transform: translateX(0px);
  }
}

.flechasGaleria img,
.flechasGaleriaInfo img{
  width: 50%;
}

@media screen and (min-width: 600px) {
  .arrows.arrowsGallery {
    display: block;
    position: relative;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
}

@media screen and (max-width: 500px) {
  .galeria {
    margin-top: 2vh;
  }

  .containerGaleria {
    margin: 0;
    margin-left: 30px;
    width: 560vh;
  }

  .containerPhotoInfo{
    height: 40%;
    width: 90%;
  }

  .flechasGaleriaInfo img{
    width: 40px;
  }
}