  /*GALERIA */
  /* DE EXPOFERIAS*/
  *{
    margin: 0;
    padding: 0;
}

body{
    height: 100vh;
    width: 100%;
    font-family: 'Poppins';
    /*background-color: black;*/
    color: #002745;
}

.gallery{
    min-height: 100%;
    margin-top: 2rem;
}
.gallery h1{
    text-align: center;
    font-size: 2rem;
}
.categories ul{
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}
.categories ul li{
    cursor: pointer;
}
.gallery__images{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.gallery__card{
    width: 350px;
    height: 350px;
    display: block;
    position: relative;
}
.gallery__card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.gallery__card .overlay{
    background-color: rgba(100, 100, 100, 0.5);
    backdrop-filter: blur(15px);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: all .4s ease-in-out;
}
.card__info{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position:absolute;
    top:75%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-in-out;
}
.card__info p{
    color: white;
    font-size: x-large;
}
.gallery__card:hover .card__info{
    top:50%;
    opacity:1;
    pointer-events: unset;
}
.gallery__card:hover .overlay{
    opacity: 1;
}

.categories .filter-item.active{
    border-bottom: 1px solid red;
}
.gallery__card.hide{
    display:none;
}
.gallery__card.show{
    animation: fadeIn .5s ease;
}

@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}