.hiding_content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-out;
}

.hiding_content.open {
    max-height: 800px;
    transition: max-height 0.5s ease-in;
    position: relative;
}