.bouwontwerp-hero {
	--bouwontwerp-hero-accent: var(--e-global-color-accent, #e52421);
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
	background: #000;
	font-family: var(--e-global-typography-primary-font-family, "Montserrat"), Arial, sans-serif;
}

.bouwontwerp-hero,
.bouwontwerp-hero * {
	box-sizing: border-box;
}

.bouwontwerp-hero .bouwontwerp-hero__media,
.bouwontwerp-hero .bouwontwerp-hero__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.bouwontwerp-hero .bouwontwerp-hero__image {
	max-width: none;
	object-fit: cover;
	transform: scale(1.12);
	transform-origin: center;
	animation: bouwontwerp-hero-zoom-out 44s cubic-bezier(.16, 1, .3, 1) forwards;
	will-change: transform;
}

.bouwontwerp-hero__container {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	width: 100%;
	max-width: 1560px;
	min-height: 100vh;
	min-height: 100svh;
	margin: 0 auto;
	padding: 9rem 1.25rem 6rem;
}

.bouwontwerp-hero__content {
	width: 100%;
	max-width: 72rem;
	color: #fff;
}

.bouwontwerp-hero .bouwontwerp-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	margin: 0 0 1.5rem;
	color: rgba(255, 255, 255, .75);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .32em;
	text-transform: uppercase;
}

.bouwontwerp-hero__eyebrow span {
	flex: 0 0 3rem;
	width: 3rem;
	height: 1px;
	background: var(--bouwontwerp-hero-accent);
}

.bouwontwerp-hero .bouwontwerp-hero__heading {
	max-width: 72rem;
	margin: 0;
	color: #fff;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -.055em;
}

.bouwontwerp-hero .bouwontwerp-hero__description {
	max-width: 42rem;
	margin: 1.75rem 0 0;
	color: rgba(255, 255, 255, .82);
	font-size: 1rem;
	font-weight: 300;
	line-height: 2;
}

.bouwontwerp-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2.5rem;
}

.bouwontwerp-hero .bouwontwerp-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	border: 0;
	border-radius: 9999px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1rem;
	letter-spacing: .2em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: color .4s ease-out, background-color .4s ease-out, border-color .4s ease-out;
}

.bouwontwerp-hero .bouwontwerp-hero__button:hover,
.bouwontwerp-hero .bouwontwerp-hero__button:focus {
	text-decoration: none;
}

.bouwontwerp-hero .bouwontwerp-hero__button--primary {
	background: var(--bouwontwerp-hero-accent);
	color: #fff;
}

.bouwontwerp-hero .bouwontwerp-hero__button--primary:hover,
.bouwontwerp-hero .bouwontwerp-hero__button--primary:focus {
	background: #fff;
	color: #000;
}

.bouwontwerp-hero .bouwontwerp-hero__button--secondary {
	border: 1px solid #fff;
	border-color: #fff;
	background: #fff;
	color: #000;
}

.bouwontwerp-hero .bouwontwerp-hero__button--secondary:hover,
.bouwontwerp-hero .bouwontwerp-hero__button--secondary:focus {
	border-color: var(--bouwontwerp-hero-accent);
	background: var(--bouwontwerp-hero-accent);
	color: #fff;
}

.bouwontwerp-hero__reveal {
	opacity: 0;
	transform: translateY(28px);
	animation: bouwontwerp-hero-reveal 900ms cubic-bezier(.2, .8, .2, 1) forwards;
}

.bouwontwerp-hero__reveal--one {
	animation-delay: 120ms;
}

.bouwontwerp-hero__reveal--two {
	animation-delay: 240ms;
}

.bouwontwerp-hero__reveal--three {
	animation-delay: 360ms;
}

@keyframes bouwontwerp-hero-reveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bouwontwerp-hero-zoom-out {
	to {
		transform: scale(1);
	}
}

@media (min-width: 640px) {
	.bouwontwerp-hero__container {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.bouwontwerp-hero .bouwontwerp-hero__heading {
		font-size: 4.5rem;
	}

	.bouwontwerp-hero__description {
		font-size: 1.125rem;
	}

	.bouwontwerp-hero__actions {
		flex-direction: row;
	}
}

@media (min-width: 1024px) {
	.bouwontwerp-hero__container {
		padding-right: 3rem;
		padding-bottom: 7rem;
		padding-left: 3rem;
	}

	.bouwontwerp-hero .bouwontwerp-hero__heading {
		font-size: 85px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bouwontwerp-hero__image,
	.bouwontwerp-hero__reveal {
		opacity: 1;
		transform: none;
		animation: none;
	}
}
