

.gal{
    background-image: var(--gal);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: var(--ht);
    filter: grayscale(100%);
    transition: ease-in-out 0.3s;
    background-position: center;
    border-radius: 5px;
}


.gal:hover{
    filter: grayscale(0%);
}


.fade-in {
    display: flex;
    align-items: flex-end;
    height: 100%;
    opacity: 0%;
    transition:opacity 0.8s;
    
   
}
    
.fade-in:hover {
   
    opacity:100%;
    transition:opacity 0.5s;
}

.card-event-bg{
    background-image: url(/assets/img/event_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    min-height: 500px;
}


.head{
    filter: drop-shadow(5px 5px 10px);
    color: white;
}

.card-align{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width:800px){
    .card-align{
        display: flex;
    flex-direction: column;
    justify-content: end;
    }
}

.shadow-rnd{
    border-radius: 5px;
    box-shadow: 0px 10px 10px rgb(219, 219, 219);
}