.ex-slide {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.ex-slide.show {
    max-height: 500px;
    opacity: 1;
}