/* Algemene slide-opmaak */
#container-slider .slide {
    position: relative;
    display: grid;
    align-items: center;
    justify-items: start;
    height: 380px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Alleen video-slides krijgen overlay */
#container-slider .video-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* Video als achtergrond */
#container-slider .video-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Titel op alle slides */
#container-slider .slide h5 {
    z-index: 2;
    margin: 0 0 0 20px;
    color: white;
    font-family: "Urban Jungle";
    font-size: 5rem;
    letter-spacing: .25rem;
    max-width: 60%;
    text-align: left;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

/* Mobiel */
@media only screen and (max-width: 1024px) {
    #container-slider .slide h5 {
        font-size: 2.5rem;
        max-width: 80%;
    }
}