/* video als background */
#videoBG {
    position: fixed;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

@media (min-aspect-ratio: 16/9) {
    #videoBG {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    #videoBG {
        width: auto;
        height: 100%;
    }
}
/*
.frame-type-p24_videofullscreen {
	flex: 1 1 auto;
	flex-direction: column;
	height: calc(100dvh - 2rem);
}

.wrapper_videofullscreen {
	height: 100%;
	position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem;
	color: white;
}

.wrapper_videofullscreen h2 {
	font-size: clamp(2.78rem, calc(2.43rem + 2.15vw), 3.28rem);
}

.wrapper_videofullscreen h3 {
	font-size: clamp(2.56rem, calc(2.21rem + 2.15vw), 3.06rem);
}

.wrapper_videofullscreen a.scroll-down {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 5rem;
	display: block;
	width: 2rem;
	height: 3rem;
	border: 2px solid white;
	box-sizing: border-box;
	border-radius: 60px;
	z-index: 1000;
}

.wrapper_videofullscreen .scroll-down:before {
	position: absolute;
	content: "";
	left: 12px;
	height: 1rem;
	width: .25rem;
	background-color: white;
	border-radius: 5px;
	animation: godown 2s infinite;
	box-sizing: border-box;
}

@keyframes godown {
	0% {
		transform: translate(0,.125rem);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		transform: translate(0,1rem);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@keyframes down {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(50px);
	}
	100% {
		transform: translateY(0);
	}
}
*/
/*
.wrapper_background_image {
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	min-height: 300px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-end;
}

.wrapper_background_image .wrapper_text {
	padding: 1rem;
	color: white;
	font-weight: 600;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.wrapper_background_image .wrapper_text > * {
	margin: 0;
	hyphens: none;
}
*/