.hc-wrapper {
    display: flex;
    justify-content: center;
}

.hc-card {
    width: 225px;
    height: 225px;
    border-radius: 15px;
    padding: 1.5rem;
    background: white;
    position: relative;
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    transition: 0.4s ease-out;
}

.hc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
}

.hc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: 0.5s;
}

.hc-card .hc-content {
    color: white;
    z-index: 3;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.5s;
}

.hc-card:hover {
    transform: translateY(20px);
}

.hc-card:hover::before {
    opacity: 1;
}

.hc-card:hover .hc-content {
    opacity: 1;
    transform: translateY(0px);
}

.hc-card .hc-content p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}
@media (min-width: 1200px) {
    .hc-card {
        width: 300px;
        height: 300px;
    }
}
