/* Needed here! */
header {
    background: transparent !important;
}
.wp-site-blocks:before {
    background: transparent !important;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0; /* Startwert für das Einblenden */
    transition: opacity 1.5s ease-in-out; /* Dauer und Art der Animation */
}

.video-container.loaded {
    opacity: 1; /* Endwert, wenn die Animation abgeschlossen ist */
}

.fullscreen-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}
.video-control {
    position: fixed;
    bottom: 45px;
    left: 45px;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}
.video-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.video-control svg {
    width: 24px;
    height: 24px;
    fill: white;
}
.video-control .play-icon {
    display: none;
}

@media (max-width: 480px) {

.video-control {
    bottom: 25px;
    left: 25px;
}

}