#prestations-list {
    --home-solutions-background-height: 300px;
}
#prestations-list li {
    position: relative;
}
#prestations-list li .picture {
    position: relative;
    width: 100%;
    height: var(--home-solutions-background-height);
    z-index: -1;
    border-radius: 4px;
}
/*#prestations-list li .picture::after {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    mix-blend-mode: multiply;
    background-color: rgb(78, 76, 77);
    opacity: 0.8;
    border-radius: 4px;
}*/
#prestations-list li .picture img {
    border-radius: 4px;
}
#prestations-list li .card-container {
    position: relative;
    padding-left: 1rem;
    padding-right: 1rem;
}
#prestations-list li .card-container .card {
    height: auto;
}
@media (min-width: 992px) {
    #prestations-list li .picture {
        width: calc(9/16 * 100%);
        height: auto;
    }
    #prestations-list > li .picture img {
        height: auto;
    }
    #solutions-list li .picture::after {
        top: 0;
        height: auto;
        padding-bottom: calc(9/16 * 100%);
    }
    #prestations-list li .card-container {
        margin-top: -120px;
        width: 75%;
        align-self: flex-end;
    }
}