.menu .nav-home {
    display: inline-block;
}
.mobile_menu .nav-home {
    display: block;
}
.menu .page-nav,
.mobile_menu .page-nav {
    display: none;
}



/* -- Hero -- */

#hero_global {
    padding: 225px 5% 125px;
    background-color: #222;
    background-image: url(/imageserver/UserMedia/pen88/intro_bg.webp);
    background-size: cover;
    background-blend-mode: overlay;
    background-position: center;
}
.hero-wrapper {
    max-width: 1000px;
    text-align: center;
    -webkit-animation: fadeIn 1s ease .33s backwards;
    animation: fadeIn 1s ease .33s backwards;
}

@keyframes fadeIn {
    from { transform: translateY(40px); opacity: 0.001; }
    to { transform: translateY(0); opacity: 1; }
}



/* -- Auction Items -- */

#auction_section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 600px;
    background-image: url(/imageserver/UserMedia/pen88/abstract_bg.webp);
    background-position: center 25%;
    background-color: #ccc;
    background-blend-mode: overlay;
    z-index: -1;
}
.auction-list {
    display: flex;
    flex-wrap: wrap;
    margin: 60px auto 20px;
    padding: 0;
    list-style: none;
}
.auction-item {
    position: relative;
    max-width: 550px;
    width: 31.8333333333%;
    margin: 12px .75%;
    padding: 50px 30px 20px;
    text-align: center;
    background-color: #fff;
    border-top: 4px solid var(--yellow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 8px #aaa;
}
.auction-num {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.5rem;
    color: #111;
    font-weight: 700;
    background-color: var(--yellow);
    padding: 5px 15px;
    border-radius: 0 0 10px 0;
}
.auction-item .h3-thin {
    display: block;
    font-weight: 300;
    font-style: italic;
    margin: 8px auto;
    font-size: .85em;
    line-height: 1em;
}
.auction-item .h3-thin::before,
.auction-item .h3-thin::after {
    content: " - ";
}
.auction-item .site-button {
    margin-top: 20px;
}

@media (max-width: 981px) {
    .auction-item {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}