#home_p-slideshow {
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    overflow-x: hidden;
}


/* Slideshow */
.home_p-slideshow--item {
    scroll-snap-align: start;
    min-width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    max-height: 100vh;
    transform-origin: center center;
}

.home_p-slideshow--item video {
    min-width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    max-height: 100vh;
}


/* MOBILE */
#home_p-titles {
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
}

.home_p-titles {
    transition: 250ms ease-in-out;
    top: unset;
    bottom: 1rem;
}
.home_p-titles.--hide {
    opacity: 0;
    transform: translateY(2rem);
}

@media only screen and (min-width: 1200px) {
    #home_p-titles {
        top: calc(50vh - 5.2rem);
        left: 50vw;
        right: 10rem;
        bottom: unset;
        padding: 0;
    }

    .home_p-titles {
        top: 0;
        bottom: unset;
    }
    .home_p-titles span:nth-child(2) {display: block;}
}