.accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: all 0.4s ease-in-out;
    filter: opacity(0%);
    box-sizing: border-box;
}

.visible-content {
    max-height: 900px;
    filter: opacity(100%);
    overflow-y: auto;
}