#subCategories {
    transition: max-height .2s ease-in-out;
    max-height: 1000px;
}
#subCategories button {
    display: none;
}
#subCategories.minimized {
    max-height: 230px;
}
#subCategories.minimized button {
    display: block;
    position: absolute;
    bottom: 0;
    left: 25px;
    width: calc(100% - 50px);
}
.card-image {
    height: 200px;
    max-width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hover-underline {
    text-decoration: none;
}
.hover-underline:hover {
    text-decoration: 1px solid black;
}
.nav-link {
    cursor: pointer;
}