.fullscreen-block--wrap{
    display: flex;
    /* mobile defaults use CSS variables set inline on the wrapper */
    margin-top: var(--fs-mt-mobile, 0);
    margin-bottom: var(--fs-mb-mobile, 0);
    padding: 0;
    justify-content: center;
}
@media (min-width: 768px) {
    .fullscreen-block--wrap {
        /* desktop defaults use CSS variables set inline on the wrapper */
        margin-top: var(--fs-mt-desktop, 0);
        margin-bottom: var(--fs-mb-desktop, 0);
    }
}
.fullscreen-container{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
@media (max-width: 768px) {
    .fullscreen-container{
        min-height: auto;
    }
}
.fullscreen-text-wrap{
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 600px;
    margin-bottom: 15vh;
}
@media (max-width: 768px) {
    .fullscreen-text-wrap{
        margin-bottom: 4rem;
    }
}
.fullscreen-text {
    & h1 {
        display: inline-block;
        text-align: center;
        margin: 0;
    }
}
.fullscreen-link-wrap{
    display: flex;
    justify-content: center;
    margin: 0 0 2rem 0
}
.fullscreen-media-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75%;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .fullscreen-media-wrap{
        width: 100%;
    }
}
.fullscreen-endtext{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
    & *{
        color: var(--wp--preset--color--white);
        line-height: 150%;
    }
}
.fullscreen-media-wrap-bkg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--wp--preset--color--black);
    opacity: 0;
    z-index: 1;
}
.fullscreen-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}