.homecategory {
    background-image: url("https://demo.herbolistique.com/c/17-small_default/equilibre-hormonal.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 24.3125rem;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 0.25rem;
    overflow: hidden;
    position: relative;
}

.homecategory::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.25rem;
    background: linear-gradient(180deg, rgba(37, 45, 65, 0.00) 0%, rgba(37, 45, 65, 0.70) 100%);
    pointer-events: none;
}

.homecategory * {
    position: relative;
    z-index: 1;
}

.homecategory h3 {
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0.38rem;
}

.homecategory a {
    color: #FFF;
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25rem;
    text-transform: uppercase;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .homecategory {
        height: 18.75rem;
    }

    .homecategory h3 {
        font-size: 1.25rem;
    }

    .homecategory a {
        font-size: 0.75rem;
    }
}