.hero {
	position: relative;
	margin: 0 0 10rem;
}

.hero--subpage::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
}

.hero--subpage {
	height: 81.4rem;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.hero .wrapper {
	padding: 0 3.7rem;
}

.hero__text {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin: 5rem 0 0; /* Header abziehen */
	width: 100%;
}

.hero--home .hero__text-inner {
	max-width: 45rem;
}

.hero .headline-box {
	margin: 0;
}

.hero .headline-box__title {
	margin: 0;
	font-size: 7.2rem;
	color: #fff;
}

.hero__text__text {
	margin: 3.5rem 0 3.5rem;
	font-size: 2.6rem;
	color: #fff;
}

.hero__text__text p {
	margin: 0;
}

.hero--subpage .hero__text__text {
	max-width: 65rem;
}

.hero__text__btn {
	display: inline-flex;
	align-items: center;
	padding: 2rem 5rem 2rem 4.5rem;
	max-width: 40rem;
	font-size: 2.6rem;
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
	background: var(--color-primary);
}

.hero__text__btn:hover {
	color: #fff;
	background: var(--color-primary-lighter);
}

.hero__text__btn::after {
	content: "";
	display: inline-block;
	margin: 0 0 0 3rem;
	width: 4rem;
	height: 4rem;
	background: url("../../img/sprite.svg") no-repeat 0 -8rem;
	background-size: 30rem 30rem;
}

@media only screen and (max-width: 80em) {
	
	.hero {
		margin: 0 0 8rem;
	}
	
	.hero--subpage {
		height: 70rem;
	}
	
	.hero__text {
		margin: 4rem 0 0;
	}
	
	.hero .headline-box__title {
		font-size: 5rem;
	}
	
	.hero__text__text {
		margin: 3rem 0;
		font-size: 2.3rem;
	}
	
	.hero__text__btn {
		padding: 1.7rem 4rem 1.7rem 3.8rem;
		max-width: 35rem;
		font-size: 2.3rem;
	}
}

@media screen and (max-width: 64em) {
	
	.hero {
		margin: 0 0 6rem;
	}
	
	.hero--subpage {
		height: 60rem;
	}

	.hero .wrapper {
		padding: 0 2rem 0 3rem;
	}	
	
	.hero .headline-box__title {
		font-size: 4.5rem;
	}
	
	.hero__text__text {
		margin: 2.5rem 0;
		font-size: 2.1rem;
	}
	
	.hero__text__btn {
		padding: 1.3rem 4rem;
		font-size: 2rem;
	}
}

@media screen and (max-width: 54em) {
	
	.hero {
		margin: 0 0 4rem;
	}
	
	.hero--subpage {
		height: 50rem;
	}
	
	.hero .headline-box__title {
		font-size: 4.2rem;
	}
	
	.hero__text__text {
		margin: 2.5rem 0 0;
		font-size: 2rem;
	}
	
	.hero__text__btn {
		margin: 2.5rem 0 0;
	}
}

@media screen and (max-width: 36em) {
	
	.hero--subpage {
		height: 40rem;
	}
	
	.hero .headline-box__title {
		font-size: 3.5rem;
	}
	
	.hero__text__text {
		font-size: 1.8rem;
	}
	
	.hero__text__btn {
		display: none;
	}
}