
/* =======================
   Hero Basis
======================= */

.hero {
	width: 100%;
	background-color: #000000;
	padding: 80px 0px 80px 0px;
}

.hero-inner {
	width: 1200px;
	max-width: 100%;
	margin: 0px auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 60px;
	padding: 0px;
}

.hero-content {
	flex: 1 1 58%;
	max-width: 620px;
	margin-top: -5px;
}

.hero h1 {
	margin: 0px;
	padding: 0px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	line-height: 1.05;
}

.hero-title-gold,
.hero-title-silber,
.hero-title-white {
	display: block;
}

.hero-title-gold {
	color: #E3B344;
	font-size: 50px;
	margin-bottom: 8px;
}

.hero-title-silber {
	color: #BFBFBF;
	font-size: 50px;
	margin-bottom: 8px;
}

.hero-title-white {
	color: #FFFFFF;
	font-size: 50px;
}

.hero-subline {
	margin: 28px 0px 0px 0px;
	padding: 0px;
	color: #E3B344;
	font-family: Arial, sans-serif;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.35;
	max-width: 560px;
}

.hero-benefits {
	list-style: none;
	margin: 32px 0px 0px 0px;
	padding: 0px;
}

.hero-benefits li {
	position: relative;
	margin: 0px 0px 22px 0px;
	padding: 0px 0px 0px 30px;
	color: #FFFFFF;
	font-family: Arial, sans-serif;
	font-size: 17px;
	font-weight: normal;
	line-height: 1.4;
}

.hero-benefits li:last-child {
	margin-bottom: 0px;
}

.hero-benefits li::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 0px;
	width: 14px;
	height: 14px;
	background: url("../images/pfeil1.png") no-repeat left top;
	background-size: 14px 14px;
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin: 38px 0px 0px 0px;
	padding: 18px 25px 18px 18px;
	background-color: #E3B344;
	color: #000000;
	font-family: Arial, sans-serif;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-cta:hover,
.hero-cta:focus {
	color: #FFFFFF;
}

.hero-cta-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 45px;
	height: 38px;
	background: url("../images/button-icons1.png") no-repeat 0px 0px;
	background-size: auto 168px;
	background-position: 0px 0px;
}

.hero-image-wrap {
	flex: 0 0 525px;
	max-width: 525px;
}

.hero-image-frame {
	position: relative;
	width: 100%;
	padding-right: 18px;
	padding-bottom: 18px;
}

.hero-image-frame::after {
	content: "";
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 94%;
	height: 90%;
	background-color: #E3B344;
	z-index: 1;
}

.hero-image {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	z-index: 2;
}

/* =======================
   Desktop kleiner
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.hero {
		padding: 70px 0px 70px 0px;
	}

	.hero-inner {
		align-items: center;
		
		padding-left: 20px;
		padding-right: 20px;
		gap: 40px;
	}

	.hero-content {
		max-width: 560px;
	}

	.hero-title-gold,
	.hero-title-silber,
	.hero-title-white {
		font-size: 50px;
	}

	.hero-subline {
		font-size: 17px;
	}

	.hero-benefits li {
		font-size: 16px;
	}

	.hero-cta {
		font-size: 22px;
		padding: 16px 24px;
	}

	.hero-image-wrap {
		flex: 0 0 420px;
		max-width: 420px;
	}
}

/* =======================
   Mobile / Tablet
======================= */

@media only screen and (max-width: 1023px) {

	.hero {
		padding: 38px 0px 55px 0px;
	}

	.hero-inner {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 34px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.hero-image-wrap {
		order: 1;
		flex: none;
		width: 100%;
		max-width: none;
	}

	.hero-content {
		order: 2;
		flex: none;
		width: 100%;
		max-width: none;
	}

	.hero-image-frame {
		padding-right: 14px;
		padding-bottom: 14px;
	}

	.hero-title-gold,
	.hero-title-silber,
	.hero-title-white {
		font-size: 42px;
	}

	.hero-subline {
		margin-top: 24px;
		font-size: 16px;
		max-width: 100%;
	}

	.hero-benefits {
		margin-top: 28px;
	}

	.hero-benefits li {
		margin-bottom: 20px;
		padding-left: 28px;
		font-size: 16px;
	}

	.hero-cta {
		width: 100%;
		margin-top: 34px;
		padding: 18px 20px;
		font-size: 22px;
	}
}

/* =======================
   Kleine Smartphones
======================= */

@media only screen and (max-width: 560px) {

	.hero {
		padding: 38px 0px 48px 0px;
	}

	.hero-inner {
		padding-left: 16px;
		padding-right: 16px;
		gap: 28px;
	}

	.hero-title-gold,
	.hero-title-silber,
	.hero-title-white {
		font-size: 34px;
	}

	.hero-subline {
		font-size: 15px;
		line-height: 1.4;
	}

	.hero-benefits li {
		font-size: 15px;
		line-height: 1.45;
		padding-left: 26px;
	}

	.hero-benefits li::before {
		width: 12px;
		height: 12px;
		background-size: 12px 12px;
		top: 4px;
	}

	.hero-cta {
		font-size: 20px;
		gap: 14px;
		padding: 12px 12px;
	}

	.hero-cta-icon {
		width: 45px;
		height: 38px;
		background-size: auto 168px;
		background-position: 0px 0px;
	}
}