.active-agenda {
    display: block !important;
}
.agenda-container  {
    display: none;

    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.5);
}
.agenda {
    background-size: cover;
    /* aspect-ratio: 2/1; */
    max-width: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    border-radius: 10px;
    max-height: 90vh;
    height: 100%;
    overflow: hidden;
    background-position: center;

}

.agenda video {
    position: fixed;
    height: 100%;
}
.background-filter{
    padding: 5rem;
    min-width: 100%;
    background: linear-gradient(to top , rgba(0,0,0,1) , rgba(0 , 0 , 0 , 0.5) 70% , rgba(0,0,0,0));
    border-radius: 10px;
    
    height: 100%;
    /* min-height: 40rem; */
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.background-filter * {
    z-index: 2000;
}
.agenda li {
    list-style-type: disc;
    margin: 1rem 0;
    max-width: 25rem;
    font-weight: 200;
}
.agenda h2 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    padding: 0;
    color: white;
}
.agenda p {
    margin: 2rem 0
}
.card{
  color: white;
  font-weight: 600;
  background-size: cover;
  

  min-width: 14rem;
  min-height: 18rem;
  margin: 8px;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: transform 300ms ease;
}

.card:hover, .card:focus-within {
  transform: scale(1.05);
}

.card-content{
  padding: 12rem;
  transition: transform 300ms ease;
  transition-delay: 300ms;
  padding-right: 10px;
  padding-left: 10px;
  text-align: end;
}

.op1{
  background: rgba(0, 0, 0, 0.6);
}

.card-title{
  position: relative;
  width: max-content;
  padding-bottom: 17px;
}
.card-title::after{
  content: "";
  position: absolute;
  height: 4px;
  left: 0;
  bottom: 7px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.card:hover .card-title::after{
  transform: scaleX(1);
}

