/* roboto-condensed-regular - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-condensed-v31-latin-regular.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-condensed-600 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/roboto-condensed-v31-latin-600.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-condensed-700 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-condensed-v31-latin-700.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
	--primary: #ffdd00;
	--akzent: #ffdd00;
	--link: #ffdd00;
	--text: #fff;
	--footer: #fff;
	--trenner: #fff;
	--white: #FFF;
	--back: #1e1e1e;
	--black: #000;
	--hellblau: #EAF2F9;
}

html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	hyphens: none;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background-color: var(--white);
	font-size: 16px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 300;
	color: var(--text);
}

p,
ul,
ol {
	font-size: 1rem;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 300;
	color: var(--text);
	margin-bottom: 20px;
	margin-top: 20px;
	text-align: left;
	line-height: 140%;
}

ul,
ol {
	line-height: 170%;
}

a {
	font-size: 1rem;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	color: var(--link);
	letter-spacing: 0.4px;
}

a:hover,
a:visited,
a:active,
a:focus {
	color: var(--link);
	outline: none !important;
}

h1,
h2 {
	font-size: clamp(3rem, 10vw, 4rem);
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: uppercase;
	text-align: center;
	color: var(--akzent);
	max-width: 900px;
	margin: 40px auto 40px;
}

h2 {
	margin: 0 auto 60px;
}

h2.subheadline {
	font-size: clamp(1.5rem, 10vw, 2rem);
	margin-top: 40px;
	font-weight: 400;
	text-transform: unset;
}

hr {
	border: none;
	height: 4px;
	width: 50%;
	margin: 0 auto;
	background: var(--primary);
}

/* +++++++++++++++++ Layout +++++++++++++++++ */
.wrapper {
	margin: 0 auto 0;
	background-color: var(--black)
}

section {
	margin: 0;
}

.content {
	position: relative;
	width: 100%;
	max-width: 1280px;
	padding: 60px;
	margin: auto;
}

.content.black {
	background-color: var(--back);
}

.zweispalter {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 40px;
	margin-top: 40px;
}

.zweispalter div {
	align-self: center;
	justify-self: center;
}

img.gewinn {
	display: block;
	width: 100%;
	max-width: 500px;
}

.bordertop {
	border-top: 20px solid var(--black);
}

/* +++++++++++++++++ Content +++++++++++++++++ */

.logo {
	background-color: var(--black);
	margin: 0;
	position: fixed;
	width: 100%;
}

.logo .content {
	background-color: var(--back);
	padding: 20px;
}

.logo img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 120px;
}

.keyvisual {
	margin: 0 auto;
	height: 500px;
	max-width: 1280px;
	background-image: url(../img/keyvisual.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.keyvisual img {
	position: absolute;
	bottom: -440px;
	left: 40px;
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 500px;
	z-index: 100;
}

p.einleitung {
	font-size: 1.5rem;
	line-height: 1.4em;
	font-weight: 300;
	max-width: 700px;
	margin: 0 auto 40px;
}

p.einleitung strong {
	color: var(--akzent);
	text-transform: uppercase;
	font-size: 1.75rem;
	font-weight: 600;
}

.formular {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

button {
	background-color: var(--primary) !important;
	border: 1px solid var(--primary) !important;
	text-transform: uppercase !important;
	width: calc(50% - 12px) !important;
	margin-top: 20px !important;
	transition: .3s;
}


button:hover {
	background-color: var(--back) !important;
	color: var(--primary) !important;
}

label {
	font-weight: 400 !important;
	text-transform: uppercase !important;
}

.wpforms-container .wpforms-required-label,
.wp-core-ui div.wpforms-container .wpforms-required-label {
	color: var(--white)!important;
	font-weight: normal;
}

#wpforms-10-field_16 label,
#wpforms-10-field_17 label {
	text-transform: unset !important;
}

div.wpforms-container-full .wpforms-confirmation-container-full,
div[submit-success] > .wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
	background: var(--primary) !important;
	border: 0 solid #000 !important;
	font-size: 1.5rem !important;
}

/* +++++++++++++++++ ANFANG checkboxen / radiobutton +++++++++++++++++ */

input[type='checkbox']:checked,
input[type='checkbox']:not(:checked),
input[type='radio']:checked,
input[type='radio']:not(:checked) {
	background: transparent;
	position: relative;
	visibility: hidden;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	width: 0px !important;
	height: 0px !important;
}

input[type='checkbox']:checked + label::before,
input[type='checkbox']:not(:checked) + label::before {
	content: ' ';
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
	top: 2px;
	border: 1px solid var(--primary);
	background: #000;
	margin-right: 13px;
	margin-left: -30px;
	box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, .1);
}

input[type='radio']:checked + label::before,
input[type='radio']:not(:checked) + label::before {
	content: ' ';
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	top: 5px;
	border: 1px solid var(--primary);
	background: #000;
	margin-right: 15px;
	box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, .1);
}

input[type=radio]:checked + label::before,
input[type=radio]:not(:checked) + label::before {
	border-radius: 30px;
}

input[type='checkbox']:hover + label::before,
input[type='radio']:hover + label::before {
	background: var(--secondary);
	box-shadow: inset 0 0 0 2px #000;
}

input[type='radio']:checked + label::before {
	background-image: url(../img/logo_bullet.png);
	background-size: contain;
	box-shadow: inset 0 0 0 2px #000;
}

input[type='checkbox']:checked + label::before {
	background: var(--primary);
	box-shadow: inset 0 0 0 2px #000;
}

input[type='checkbox'] + label,
input[type='radio'] + label {
	cursor: pointer;
}

/* +++++++++++++++++ ENDE checkboxen / radiobutton +++++++++++++++++ */


/* +++++++++++++++++ footer +++++++++++++++++ */

footer .content {
	background-color: var(--primary);
	padding: 20px;
}

footer p,
footer a {
	color: var(--back) !important;
	text-transform: uppercase;
	text-align: center;
	margin: 0;
}

/* +++++++++++++++++ Media Query +++++++++++++++++ */
@media(max-width:768px) {

	.content {
		padding: 40px 20px;
	}

	.zweispalter {
		grid-template-columns: 1fr;
	}

	button {
		width: 100% !important;
	}

	.keyvisual {
		background-position: center right 20%;
	}

	.keyvisual img {
		left: 20px;
		max-width: 300px
	}
}
