@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.listado {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 20% 80%;
  height: 30vh;
  position: relative;
}

/* .listaEventos{
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(3, calc(100%/3));
    position: relative;
} */

.listaEventos {
  position: relative;
  display: flex;
  min-width: calc(100% / 3);
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for IE, Edge and Firefox */
.listaEventos::-webkit-scrollbar {
  display: none;
}

.evento {
  position: relative;
  overflow: hidden;
  min-width: calc(100% / 3);

  height: 100%;
}

.imagenEvento {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  /* opacity: 0.5; */
  filter: grayscale(80%);
  object-fit: cover;
  /* z-index: -1; */
  transition: 0.5s;
}
/*
.info{
    height: 60%;
    position: absolute;
    bottom: 15%;
    left: 0%;
    padding-right: 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr 1fr;
}
*/

.info {
  height: 100%;
  position: absolute;
  /* bottom: 5%;
  left: 25%; */
  padding: 4rem 1rem 1rem 5rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  background: rgba(32, 32, 32, 0.5);
  transition: 0.5s;
  width: 100%;
}

.eLink,
.eDate {
  position: relative;
  color: #ffffff;
  left: 0%;
}
.eLink {
  text-align: left;
  /* font-size: 10%; */
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 600;
}

.eLink:hover {
  color: #fff;
}
.eDate {
  font-weight: bolder;
  line-height: 2rem;
  font-size: 1.6rem;
}
.eCat > a {
  color: #86beed;
  font-size: 1.6rem;
  line-height: 14px;
  position: relative;
  left: 0%;
}
.eBlue {
  position: absolute;
  width: 20%;
  height: 5%;
  background: #86beed;
  bottom: 0;
  transition: 0.7s;
  left: 0px;
}
.ePlus,
.ePlus a {
  position: absolute;
  top: 7px;
  /* width: 7%; */
  right: 7%;
  cursor: pointer;
  background: transparent;
  border-radius: 50%;
  padding: 5px 0 0 0;

  font-size: 6.6rem;
  font-weight: lighter;
  color: #8bbfef;
  transition: 0.5s;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 24px;
}

.rArrow,
.lArrow {
  position: absolute;
  font-size: 3rem;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  z-index: 1;
  cursor: pointer;
  top: 50%;
}
.rArrow {
  right: 1%;
}
.lArrow {
  left: 21%;
}
.rArrow > svg,
.lArrow > svg {
  stroke: #ffffff;
  width: 3rem;
  height: 3rem;
}

.pre {
  display: flex;
  flex-direction: column;
}
.moreT {
  margin: 17% auto 0 auto;
  text-align: right;
  width: 80%;
}
.moreT > h3 {
  font-size: 2.8rem;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  color: #102859;
  line-height: 10px;
}
.moreT > a {
  text-decoration: none;
  font-style: oblique;
  font-size: 1.5rem;
  font-family: "Raleway", sans-serif;
}

.moreTvin {
  display: block;
  top: 10px;
  position: relative;
  width: 100%;
  height: 45px;
}
.hexagono {
  margin-top: 10px;
}
.hexagono > svg {
  position: absolute;
  left: 14%;
  width: 2rem;
  height: 2rem;
}

.lBlue {
  position: absolute;
  width: 2%;
  height: 40%;
  background: #86beed;
  top: 30%;
}
.lShadow {
  position: absolute;
  width: 1%;
  height: 100%;
  background: #e4e4e4;
}

.evento:hover .imagenEvento {
  filter: grayscale(0) blur(5px);
  opacity: 1;
  transform: scale(1.1);
}

.info:hover {
  background: rgba(32, 32, 32, 0);
}

.evento:hover .ePlus a {
  display: block;
  border-radius: 50%;
  padding: 5px 0 0 0;
  width: 32px;
  height: 32px;
  background: #8bbfef;
  color: #ffffff !important;
}

.evento:hover .eBlue {
  position: absolute;
  width: 20%;
  height: 5%;
  background: #86beed;
  bottom: 0;
  left: -100px;
  transition: 0.7s;
}

/*
.ePlus:hover{
    background: #8BBFEF;
    color: #ffffff !important; 
}

.ePlus a:hover{
   
    color: #ffffff !important; 
}*/
@media screen and (max-width: 770px) {
  /* .listaEventos{
        grid-template-columns: 1fr;
    } */
  .evento {
    min-width: calc(100% / 2);
  }
  .listado {
    grid-template-columns: 100%;
    padding-bottom: 4rem;
    padding-top: 0.5rem;
    margin-bottom: 3rem;
    height: 40vh !important;
  }
  .listaEventos {
    min-width: calc(100% / 2);
    margin-top: 1rem;
  }
  .pre {
    position: absolute;
    top: -80px;
  }
  .info {
    height: 100%;
  }
  .lArrow {
    left: 31%;
  }
}
@media screen and (max-width: 550px) {
  .listaEventos {
    min-width: calc(100% / 1);
  }
  .evento {
    min-width: calc(100% / 1);
  }
  .listado {
    height: 30vh;
    grid-template-columns: 100%;
  }
  /* .info{
    width: 100%;
  } */
  .lArrow {
    left: 30%;
  }
}
