html {
  font-family: "Overpass", sans-serif;
}

html,
body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

a,
a:visited {
  color: black;
}

.encabezado {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul {
  padding-left: 0;
}

ul li {
  list-style-type: none;
}

.encabezado nav ul li {
  display: inline-block;
  list-style-type: none;
  margin-right: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
}

.encabezado nav ul li:last-child {
  margin-right: 0;
}

.encabezado nav ul li a {
  text-decoration: none;
}

.footer-requerimientos {
  padding: 15px 30px;
  background-color: #ccc;
  color: white;
  margin-bottom: 0;
}

.datos-academicos-texto {
  font-size: 12px;
  padding-left: 0;
}

.boton:visited {
  color: white;
}

.contenido {
  padding: 30px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.menu-lateral {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  width: 320px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateX(-100%);
  transition: 0.3s ease-out;
}

.menu-lateral.abierto {
  transform: translateX(0%);
}




.menu-lateral-listado {
  padding-left: 15px;
}

.menu-lateral-listado li {
  font-size: 18px;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.menu-lateral-listado li a {
  text-decoration: none;
}

.menu-lateral-listado li:last-child {
  margin-bottom: 0;
}

.tabs {
  background-color: #ebebeb;
  padding: 0.5em 0.5em;
  border-radius: 1.4em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
}

.tabs-item {
  padding: 0 1.5em;
  border-right: 1px solid black;
}

.tabs-item:last-child {
  border-right: 0;
}

.tabs-container {
  text-align: center;
}


.fecha {
  display: none;
}

.fecha-texto {
  flex-grow: 1;
  width: 50%;
  letter-spacing: 0.13em;
}

.fecha-linea {
  height: 1px;
  background-color: black;
  width: fit-content;
  flex-grow: 2;
  width: 85%;
}

.noticia {
  border-bottom: 1px solid black;
  padding-bottom: 1.5em;
}

.noticia-imagen {
  position: relative;
}

.noticia-imagen img {
  width: 100%;
  display: block;
}

.noticia-imagen .ver-mas {
  position: absolute;
  right: 1em;
  bottom: 2em;
  padding: 0.1em 1em;
  text-decoration: none;
  border-radius: 1em;
  width: 20% ;
  height: 20% ;
}

.noticia-titulo {
  font-size: 2em;
}

.noticia-descripcion {
  font-weight: 300;
}



.imagen1{
  width: 400px;
  height: 250px;
  display: block;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  border: 0,5px solid #8585A0;
   
}


.contenedordefotos{
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3em;
  margin-bottom: 3em;
  display: grid;
  grid-template-columns: repeat(1,1fr);
  grid-gap: 45px;
}



.item{
  background-color: #fff;
  cursor: pointer;
  box-shadow: 0 0 5px 0 rgba(0,0,0,.095);
  transition: all 300ms;
  position: relative;
}


.infohorarios-item {
  border: 0.1em solid black;
  background-color: rgb(215, 244, 253);
  border-radius: 1em;
  padding: 1em;
  display: flex;
  justify-content: space-between;
}

.contenedordefotos img {
  border-radius: 20px;
  max-width: 100%;
}

.item::after {
content: "";
background-color: rgba(236, 231, 150, 0.102);
width: 100%;
height: 100%;
position: absolute;
top: 0; 
left: 0;
transform: scale (0);
transition: all 300ms;
opacity: 0;
}

.item:hover::after {
opacity: 3;
transform: scale(1);
}

.item:hover {
  transform: scale(1.2);
}



.item-text{
  padding: 1em;

}

.videohistoria {
  position: relative;
}

.videohistoria:after {
  content: '';
  display: block;
  padding-bottom: calc(9/16*100%);
}

.videohistoria iframe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.itemconicono .fas {
  font-size: 1.8em;
  vertical-align: middle;
  margin-right: .2em;
  color: #35b7df;
  padding: 0.1em;
}

.como-llegar-mapa {
  position: relative;
}

.como-llegar-mapa {
  content: '';
  display: block;
  padding-bottom: calc(9/16*100%);
}

.como-llegar-mapa iframe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 100%;
}


@media screen and (min-width: 800px) {
  .contenedordefotos{
      grid-template-columns: repeat(2,1fr);
  }
}

  @media screen and (min-width: 2200px) {
      .contenedordefotos{
          grid-template-columns: repeat(3,1fr);
      }


      .videohistoria{
        flex: auto;
        max-width: 100% ;
      
      }

      .como-llegar-mapa{
        flex: auto;
        max-width: 100% ;
      
      }



    }






.footer-marca {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}

.footer-redes {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-redes-link {
  margin-right: 1em;
}

.footer-redes-link:last-child {
  margin-right: 0;
}

.footer-links {
  padding: 0 30px;
  text-align: right;
}

.footer-link {
  text-decoration: none;
  padding-left: 0.5em;
  font-size: 0.5em;
  border-bottom: 1px solid #eda216;
}


@media (min-width: 769px) {

  .fecha {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}


  


