#Hero {
	height: 100vh;
	overflow: hidden;
	padding: 0;
}
#Hero-video {
	min-width: 100vh;
	min-height: 100vw;
	width: auto;
	height: auto;
}
#Hero-content {
	bottom: 10vh;
	color: white;
	width: 100vw;
}
#Hero-footer {
	bottom: 10vh;
	width: 100vw;
}
#Hero-slider {
	height: calc(180px + 1rem);
	background-color: rgba(0, 0, 0, 0.75);
	border-style: solid none solid solid;
	border-width: 1px;
	border-color: rgba(140, 140, 140, 0.75);
	border-radius: 1.5rem 0 0 1.5rem;
	overflow: hidden;
}
#Hero-slider:hover .card-track {
	animation-play-state: paused;
}
.card-window {
	padding: 8px 4px;
}
.card-track {
	display: flex;
	width: max-content;
	animation: marquee 60s linear infinite;
}
@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
.slider-card-item {
	background-color: brown;
	width: 200px;
	margin: 1rem;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	color: white;
}
#Hero-Reserveren,
#Hero-Bekijk-Menu {
	background: linear-gradient(
		180deg,
		rgba(128, 0, 32, 0.9),
		rgba(77, 0, 16, 0.9)
	);
	color: white;
	border-radius: 1.5rem;
	height: 3rem;
	border-color: rgba(140, 140, 140, 0.75);
}
