#hero.bannerlogo::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 125rem;
    max-width: 95vw;
    height: 100%;
    background: url(../media/logo/bannerlogo.svg);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

#hero{
    height: 80vh;
    max-height: 1080px;
    padding: 0!important;
}

@media(min-width: 1200px){
    #hero{
        height: 100vh;
    }
}

#hero .slideshow, #hero .wrapper{
    max-height: 100vh;
}

#hero img, #hero video{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#hero.fade::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 80%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top,#000000cc,#00000000);
}

#hero.empty{
    height: var(--navheight);
}


/* different background colors */
section.dark{
    position: relative;
    z-index: 1;
}

section.dark::before {
    content: '';
    display: block;
    position: absolute;
    width: 100vw;
    max-width: var(--outerwidth);
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #181818;
    z-index: -1;
    background-size: cover;
}

section.dark *{
    color: var(--lightcolor);
}

article {
    position: relative;
    padding: 3rem;
    margin: 2rem 0;
    border: solid 1px var(--opaquecolor);
    border-style: solid none;
}

article > h5, article > p{
    text-align: center;
    margin: 1rem 0;
}

p.price::after{
    content: ' €';
}


.gallery {
    position: relative;
    display: flex;
    align-items: center;
    flex-flow: row;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 1rem;
}

.gallery>div {
    flex-basis: 22.5rem;
    flex-grow: .075;
    overflow: hidden;
}

.lightbox>.gallery img {
    cursor: pointer;
    display: block;
    transition: var(--quick);
}