.hover-content-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hover-content-card .hover-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}

.hover-content-card:hover .hover-content {
    max-height: 200px;
}

.bg-image-card {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-yellow-theme {
    background-color: #fcce03;
}

.text-yellow-theme {
    color: #fcce03;
}