:root 
{
	--theme: #d30d0d;
	--darktheme: #a00404;
	--dark: #000000;
}

* 
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body 
{
	font-size: 1.15em;
	color: #fff;
	font-family: 'Akzidenz';
	font-weight: 300;
	line-height: 1.7;
	overflow-x: hidden;
	background-color: var(--dark);
}

::selection 
{
	background-color: var(--theme);
 	color: #fff;
}

::-moz-selection 
{
  	background-color: var(--theme);
 	color: #fff;
}

.wrap
{
	max-width: 850px;
	display: block;
	margin: auto;
	padding: 0px 40px;
	position: relative;
}

.smallWrap
{
	max-width: 850px;
}

h1, h2
{
	font-family: 'Akzidenz';
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	font-size: 4.1em;
	line-height: 1.2;
}

h2
{
	font-size: 2em;
}

h1 + p, h1 + ul, h2 + p, h2 + ul
{
	margin-top: 1em;
}

p + p, ul + p
{
	margin-top: 1em;
}

.date
{
	font-size: 0.85rem;
	opacity: 0.4;
	margin-bottom: -0.1em;
}

#ticker span
{
	font-family: 'Akzidenz Condensed';
	font-weight: 700;
	text-transform: uppercase;
	line-height: 0.9;
	letter-spacing: -0.03em;
	font-size: 1.7em;
	padding-left: 0.2em;
}

#ticker span strong
{
	color: var(--theme);
	font-weight: 700;
}

#ticker 
{
    overflow: hidden;
    padding: 18px 0px 9px;
    position: sticky;
    position: -webkit-sticky;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
    background-color: var(--dark);
    border-bottom: 1px solid var(--theme);
    background-color: rgba(211,13,13,0.2);
}

#ticker-track 
{
    display: flex;
    width: max-content;
    animation: ticker 80s linear infinite;
}

.ticker-item 
{
    flex-shrink: 0;
    white-space: nowrap;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

#intro
{
	padding-top: 105px;
	text-align: center;
}

#logo
{
	max-width: 100%;
	margin-bottom: -10px;
}

.text-center
{
	text-align: center;
}

strong
{
	font-weight: 500;
}

.text
{
	margin: 100px 0px;
}

#youtubeSlider
{
	margin-top: 0px;
}

.youtubeSlide img
{
	width: calc(850px - 80px);
}

.youtubeSlide
{
	opacity: 0.3;
	transition: all 0.5s;
	z-index: 0;
	transform: scale(0.85);
	color: #fff;
	text-decoration: none;
}

.youtubeSlide.slick-current
{
	opacity: 1;
	transform: scale(1);
	z-index: 100;
}

.youtubeTitle
{
	border-top: 1px solid var(--theme);
	position: relative;
	padding-top: 0.65em;
	font-size: 1.3em;
}

.youtubeTitle:before
{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-left: 1px solid var(--theme);
	border-top: 1px solid var(--theme);
	background-color: var(--dark);
	left: 20px;
	top: -6px;
	transform: rotate(45deg);
	z-index: 100;
}

.divider
{
	width: 100%;
	height: 1px;
	background-color: var(--theme);
	opacity: 0.7;
}

.youtubeContainer
{
	position: relative;
}

.play
{
	position: absolute;
	left: 20px;
	top: 20px;
	background-color: var(--theme);
	width: 30px;
	height: 30px;
	border-radius: 1000px;
	background-image: url(play.svg);
	background-size: 40%;
	background-position: center;
	background-repeat: no-repeat;
}

.play:after
{
	content: "Play";
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
	font-size: 0.85em;
	padding-left: 10px;
}

#socialLinks
{
	margin-left: -1em;
	margin-top: 0.5em;
}

.socialLink
{
	display: inline-block;
	line-height: 1.3;
	padding: 0.8em 1.2em 0.8em;
	padding-left: 3.4em;
	border: 1px solid var(--theme);
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
	font-size: 0.9em;
	margin-left: 1em;
	margin-top: 1em;
	transition: all 0.2s;
	background-size: auto 1.1em;
	background-position: left 1.2em center;
	background-repeat: no-repeat;
}

.socialLink:hover
{
	background-color: rgba(211, 13, 13,0.3);
}

#youtube
{
	background-image: url(youtube.svg);
}

#instagram
{
	background-image: url(instagram.svg);
}

#spotify
{
	background-image: url(spotify.svg);
}

#footer
{
	font-size: 0.85em;
	padding-bottom: 32px;
	margin-top: -70px;
}

#copy
{
	position: absolute;
	font-weight: 500;
}

#footerList
{
	text-align: right;
}

#footerList li
{
	display: inline-block;
	margin-left: 40px;
}

#footer a
{
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
	border-bottom: 1px solid transparent;
}

#footer a:hover
{
	border-bottom: 1px solid #fff;
}

.text p a, .text ul a, #cookieNotice a, form a
{
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid var(--theme);
	transition: all 0.2s;
}

.text p a:hover, .text ul a:hover, #cookieNotice a:hover, form a:hover
{
	border-bottom: 1px solid var(--theme);
	color: var(--theme);
}

#cookieNotice
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 0.85em;
	background-color: rgba(0,0,0,0.3);
	z-index: 999999999;
	display: none;
	align-items: center;
	justify-content: center;
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

#cookieBox
{
	padding: 32px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	max-width: 440px;
	overflow: auto;
	display: block;
	margin: auto;
	position: relative;
	background-color: var(--dark);
	border: 1px solid var(--theme);
}

#cookieBoxInner
{
	position: relative;
	z-index: 100;
}

#acceptWrap
{
	text-align: center;
}

#cookieCheckboxes
{
	margin-top: 1em;
	margin-bottom: 1em;
}

#cookieCheckboxes label
{
	position: relative;
	margin-right: 1.6em;
	padding-left: 1.8em;
	cursor: pointer;
	display: block;
	margin-top: 0.25em;
}

#cookieCheckboxes input
{
	position: absolute;
	left: 0;
	top: 48.5%;
	transform: translateY(-50%);
}

#accepted
{
	display: inline-block;
	line-height: 1.45;
	padding: 0.8em 1.2em 0.8em;
	border: 1px solid var(--theme);
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
	font-size: 0.9em;
	margin-left: 1em;
	margin-top: 1em;
	transition: all 0.2s;
	background-size: auto 1.1em;
	background-position: left 1.2em center;
	background-repeat: no-repeat;
}

#accepted:hover
{
	background-color: rgba(211, 13, 13,0.3);
}

.slick-dots
{
	position: relative;
	bottom: 0;
	margin-top: 22px;
	line-height: 1;
}

.slick-dots li button
{
	display: none;
}

.slick-dots li
{
	width: 14px;
	height: 14px;
	border-radius: 100px;
	transition: all 0.2s;
	cursor: pointer;
	margin: 0 2px;
	padding-left: 0!important;
	border: 1px solid var(--theme);
	transform: scale(0.6);
}

.slick-dots li.slick-active
{
	background-color: rgba(211,13,13,0.3)!important;
	opacity: 1;
	transform: scale(1);
}

#form
{
	padding-top: 120px;
	margin-top: -180px;
}

form
{
	display: flex;
	flex-wrap: wrap;
	margin-left: -40px;
}

form div
{
	width: 50%;
	padding-left: 40px;
}

form label
{
	font-family: 'Akzidenz';
	color: #fff;
	text-transform: uppercase;
	font-style: italic;
	font-weight: 500;
	display: block;
	margin-bottom: 0.2em;
	font-size: 0.9em;
}

input[type = "text"], input[type = "email"], textarea, button
{
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
   	border-radius: 0px;
   	font-size: 1em;
   	width: 100%;
   	border: none;
   	font-family: 'Akzidenz';
   	line-height: 1.6;
   	color: #fff;
   	font-weight: 300;
   	background-color: transparent;
}

form input, textarea
{
	color: #fff;
	margin-bottom: 1.4em;
	transition: border-color 0.2s, background-color 0.2s;
}

input[type = "text"], input[type = "email"], textarea
{
	border: 1px solid var(--theme);
	padding: 0.5em 1.2em 0.5em 1.2em;
	background-color: transparent;
}

input:focus, textarea:focus
{
	border-color: var(--theme);
	outline: 1px solid var(--theme);
	background-color: rgba(211,13,13,0.3);
}

textarea
{
	height: 12em;
	resize: none;
	margin-bottom: 1.1em;
}

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfe deine Eingaben.";
	font-weight: 500;
	color: var(--theme);
	display: block;
}

.alert.alert-danger
{
	margin-bottom: 1.5em;
}

.alert.alert-danger ul li
{
	color: var(--theme);
}

.alert.alert-danger ul li:before
{
	background-color: var(--theme);
}

.text ul li
{
	position: relative;
	list-style: none;
	padding-left: 1.2em;
}

.text ul li:before
{
	content: "";
	position: absolute;
	width: 0.45em;
	height: 0.45em;
	left: 0;
	top: 0.61em;
	background-color: var(--theme);
	border-radius: 100px;
}

.slick-dots li:before
{
	display: none;
}

.checkbox
{
	position: relative;
	padding-left: 1.6em;
	margin-left: 40px;
}

.checkbox label
{
	font-family: 'Akzidenz';
	color: #fff;
	font-weight: 300;
	cursor: pointer;
	text-transform: none;
	line-height: 1.6;
	font-size: 1em;
	font-style: normal;
}

.checkbox input
{
	position: absolute;
	left: 0px;
	top: 0.55em;
	cursor: pointer;
}

button
{
	display: inline-block;
	line-height: 1.45;
	padding: 0.8em 1.2em 0.8em;
	border: 1px solid var(--theme);
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
	font-size: 0.9em;
	margin-left: 1em;
	transition: all 0.2s;
	margin-left: 40px;
	margin-top: 1.25em;
	width: auto;
	cursor: pointer;
}

button:hover
{
	background-color: rgba(211,13,13,0.3);
}

#yform-formular-nachricht, #yform-formular-accept, .alert
{
	width: 100%;
}

@media all and (max-width: 450px){
	#cookieBox
	{
		padding: 19px 25px 25px 25px!important;
	}
}

@media all and (max-width: 550px){
	#copy
	{
		position: relative;
		display: block;
		text-align: center;
		margin-bottom: 5px;
	}

	#footerList
	{
		text-align: center;
	}

	#footerList li
	{
		display: block;
		margin-left: 0;
		margin-top: 3px;
	}
}

@media all and (max-width: 700px){
	h1
	{
		font-size: 2em!important;
	}

	h2
	{
		font-size: 1.4em!important;
	}

	.youtubeTitle
	{
		font-size: 1em!important;
	}

	#ticker span
	{
		font-size: 1.2em!important;
	}

	#ticker 
	{
	    padding: 11px 0px 6px!important;
	}

	.slick-dots li
	{
		width: 13px;
		height: 13px;
		margin: 0 1.5px;
	}

	#form
	{
		padding-top: 80px!important;
		margin-top: -110px!important;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}
}

@media all and (max-width: 850px){
	.youtubeSlide img
	{
		width: calc(100vw - 80px);
	}
}

@media all and (max-width: 930px){
	.text
	{
		margin: 60px 0px;
	}

	h1
	{
		font-size: 3em;
	}

	h2
	{
		font-size: 1.8em;
	}

	#footer
	{
		padding-bottom: 27px;
		margin-top: -35px;
	}

	#intro
	{
		padding-top: 65px;
	}

	.youtubeTitle
	{
		font-size: 1.2em;
		padding-top: 0.6em;
	}

	#ticker span
	{
		font-size: 1.4em;
	}

	#ticker 
	{
	    padding: 16px 0px 9px;
	}

	.slick-dots
	{
		margin-top: 18px;
	}

	#form
	{
		padding-top: 85px;
		margin-top: -115px;
	}

	#socialLinks
	{
		margin-top: 0.3em;
	}
}