#hero-home-content,
#hero-home-content .container-fluid {
    padding: 0;
}

#hero-home-content .item-list ul {
    display: flex;
    flex-flow: column wrap;
    width: 100%;
    flex-wrap: wrap;
    max-height: 800px;
    overflow: hidden;
    gap: 0;
    max-width: 1920px;
}

#hero-home-content .item-list ul li {
    margin: 0;
    position: relative;
    overflow: hidden;
    width: calc(100% * 0.33333);
    height: 50%;
}

#hero-home-content .item-list ul li:nth-child(3) {
    height: 800px;
}

#hero-home-content .item-list ul li .item-card-front {
    height: 400px;
}

#hero-home-content .item-list ul li:nth-child(3) .item-card-front {
    height: 800px;
}

.item-card-front h3 a {
    color: var(--bs-white);
    display: inline-block;
    width: 95%;
    padding-left: 1.5rem;
}

.item-card-front h3 {
    margin: 0;
    display: block;
    position: relative;
    min-height: 5.2rem;
    padding-top: .5rem;
    margin-top: -1.5rem;
}

.item-card-front h3:before {
    content: '';
    width: 5rem;
    height: 3px;
    background-color: var(--bs-white);
    position: absolute;
    top: -.3rem;
    left: 1.5rem;
}

.item-card-front h3:after {
    content: '\F285';
    position: absolute;
    right: 1rem;
    font-size: 1.5rem;
    font-family: var(--bs-icons-font);
    font-weight: bold;
}

.item-card-front>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-front-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.item-card-front a:hover~.item-card-front-overlay,
.item-card-front a:focus~.item-card-front-overlay {
    transform: translate3d(0, 0, 0);
}

.item-card-front img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

#hero-home-content .item-list ul li:nth-child(3) img {
    object-fit: inherit;
}

.item-card-front-overlay {
    display: flex;
    flex-direction: column;
    height: 65%;
    position: absolute;
    width: 100%;
    bottom: 0;
    transition: transform 300ms;
    color: var(--bs-white);
    transform: translate3d(0, calc(100% - 6rem), 0);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .4) 10%, rgba(0, 0, 0, 1) 70%);
    padding-top: 2rem;
}

.item-card-front-body {
    flex-grow: 1;
    padding: .5rem 1.5rem;
}

.item-card-front-body p {
    margin: 0;
    color: var(--bs-white);
    padding-bottom: 1rem;
}

@media(min-width: 1600px) {
    #hero-home-content .item-list ul {
        margin: auto;
        max-height: 900px;
    }

    #hero-home-content .item-list ul li {
        margin: 0;
        position: relative;
        overflow: hidden;
        width: calc(100% * 0.33333);
        height: 450px;
    }

    #hero-home-content .item-list ul li .item-card-front {
        height: 450px;
    }

    #hero-home-content .item-list ul li:nth-child(3) {
        height: 900px;
    }

    #hero-home-content .item-list ul li:nth-child(3) .item-card-front {
        height: 900px;
    }
}