.event-grid{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    padding-bottom: 100px;
   

}

.box{
    position: relative;
    width: 426px;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    margin: 10px;
    box-shadow: 3px 4px 3px(rgba(0, 0, 0, 0.2));

}

.box img{
    width: 100%;
    transition: all linear 0.7s;
}

img.hover-img{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.box:hover img{
    opacity: 0;
}

.box:hover img.hover-img{
    opacity: 1;
}

.items{

    width: 426px;
    height: 240px;

}

.event-section{
    padding-top: 0;
    padding-bottom: 0;
   
    
}