#solutions-list {
    --home-solutions-background-height: 200px;
    --home-solutions-picture-height: 55px;
}
#solutions-list li {
    position: relative;
}
#solutions-list li .picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--home-solutions-background-height) + 3rem);
    z-index: -1;
    border-radius: 4px;
    overflow: hidden;
}
#solutions-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;
}
@media (min-width: 992px) {
    #solutions-list li .picture::after {
        top: 0;
        height: auto;
        padding-bottom: calc(100% / (var(--md-aspect-ratio)));
    }
}
#solutions-list li .picture img {
    border-radius: 4px;
}
#solutions-list li .icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--home-solutions-background-height);
}
#solutions-list > li .icon-container > div {
    width: 100%;
    height: 100%;
}
#solutions-list li .icon-container img {
    height: var(--home-solutions-picture-height);
}
#solutions-list li .card-container {
    position: relative;
    padding-left: 1rem;
    padding-right: 1rem;
}
#solutions-list li .card-container::after {
    content: "\f067";
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: white;
}
#solutions-list li .card-container .card {
    height: 100%;
}
@media (min-width: 992px) {
    #solutions-list {
        --home-solutions-background-height: 300px;
        --home-solutions-picture-height: 80px;
    }
    @supports not (display: grid) {
        #solutions-list > li {
            width: calc(50% - 1rem);
            margin-left: 0.5rem;
            margin-right: 0.5rem;
        }
    }
    @supports (display: grid) {
        #solutions-list {
            position: relative;
            display: grid;
            grid-template-columns: repeat(2, auto);
            /*grid-gap: 1rem;*/
            grid-gap: 0;
        }
        /*#solutions-list > li .picture img {
            height: auto;
        }*/

        #solutions-list > li .icon-container {
            height: auto;
        }

        #solutions-list > li:nth-child(1) {
            grid-column: 1 / 3;
            flex-flow: row nowrap;
        }

        #solutions-list > li:nth-child(1) .picture {
            left: auto;
            right: 0;
            padding: 0;
            width: calc(370/610 * 100%);
        }

        #solutions-list > li:nth-child(1) .icon-container {
            position: absolute;
            right: 0;
            width: 50%;
            height: auto;
        }

        #solutions-list > li:nth-child(1) .card-container {
            margin-top: 90px;
            order: -1;
            padding: 0;
            flex-grow: 0;
            width: 50%;
        }

        #solutions-list > li:nth-child(2) {
            width: 50%;
        }

        #solutions-list > li:nth-child(3) {
            order: -1;
            position: absolute;
            /*top: calc(var(--home-solutions-background-height) + 3rem + 2rem);*/
            margin-top: calc(465/1120 * 100% + 70/1120 * 100%);
            top: var(--bs-gutter-y);
            right: 0;
            width: calc(50% - var(--bs-gutter-y));
        }

        #solutions-list > li:last-child {
            flex-flow: row nowrap;
            align-items: center;
            grid-column: 1 / 3;
        }

        #solutions-list > li:last-child .picture {
            padding: 0;
            width: calc(650/1120 * 100%);
        }

        #solutions-list > li:last-child .icon-container {
            width: 50%;
        }

        #solutions-list > li:last-child .card-container {
            padding: 0;
            flex-grow: 0;
            width: 50%;
        }

        #solutions-list li .card-container .card {
            height: auto;
        }
    }
}