#gallery{
    /* border: 1px solid black; */
    margin:10px;
    margin-top:30px;
    /* min-height: 445px; */
    /* min-width: 900px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 20px;
}
.event-box{
    width:100%;
    height:auto;
    /* border:1px solid blue; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.event-box:nth-child(odd){
    flex-direction: row-reverse;
}

.event-details{
    width:50%;
    height:100%;
    /* border:1px solid red; */
    text-align: center;
    padding: 30px;
}
.event-images{
    width:50%;
    height:100%;
    /* border:1px solid red; */
    display: flex;
    justify-content: center;
}
.carousel{
    width:28vw;
    height:auto;
}

@media screen and (max-width: 900px) {
    .event-box{
        row-gap: 10px;
        justify-content: center;
    }
    .event-details{
        padding: 5px;
        width:95%;
    }
    .event-images{
        width:95%;
    }
    .event-box:nth-child(odd){
        flex-direction: column-reverse;
    }
    .event-box:nth-child(even){
        flex-direction: column-reverse;
    }
    .carousel{
        width:90%;
        height:auto;
    }
    
  }