@font-face {
  font-family: "ABCRepro-Bold";
  src: url('../fonts/ABCRepro-Bold-test.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* @group Reset */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	width: 100%;
	height: auto;
}

figure {
	line-height: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* @end */

:root {
	--unit: 30px;
	
	--f-main: "ABCRepro-Bold", Arial, Helvetica, sans-serif;
	--f-size: 26px;
	--f-big: calc(var(--f-size) * 1.35);
	--f-head: calc(var(--f-size) * 2.5);
	
	--c-main: rgb(204, 204, 204);
	--c-bg: rgb(0, 0, 0);
	--c-green: #17AF39;
	--c-blue: rgb(0,255,244);
	--c-red: rgb(245,79,44);
	--c-yellow: rgb(255,255,2);
	--c-white: #ffffff;
	--c-shadow: rgba(0,0,0,0.25);
}

/* Basic Styles */

body {
	font-family: var(--f-main);
	font-size: var(--f-size);
	line-height: 1.1;
	color: var(--c-main);
	background-color: var(--c-bg);
	letter-spacing: -1px;
}

@media screen and (max-width: 45rem) {
	body {
		font-size: calc(var(--f-size) - 5px);
	}
}

h1, h2, h3, h4 {
	line-height: 1;
}

.f-size-small p {
	font-size: var(--f-size) !important;
	line-height: 1.2 !important;
}

@media screen and (max-width: 45rem) {
	.f-size-small p {
		font-size: calc(var(--f-size) - 5px) !important;
	}
}

a.btn, a.ticket, .navigation a {
	letter-spacing: 0;
}

.site-header {
	padding: var(--unit);
}

.site-logo {
	font-size: var(--f-head);
	line-height: 0.9;
}

.site-header .logo img {
	width: 250px;
	margin-top: 5px;
}

.navigation {
	position: fixed;
	top: 0;
	right: 0;
	text-align: right;
	z-index: 100;
}

.navigation a {
	position: relative;
	display: inline-block;
	background-color: var(--c-main);
	color: var(--c-bg);
	padding: 18px 46px;
	box-shadow: 0 0 8px var(--c-shadow);
	white-space: nowrap;
	z-index: 5;
	
	transition: all 0.5s ease-in-out;
}


.languages .active {
	display: none;
}

.navigation a:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.7);
	z-index: 6;
}

.topnav {
	display: flex;
	justify-content: flex-end;
}

.topnav-main {
	display: flex;	
	justify-content: flex-end;
}

.opennav #myLinks {
  display: none;
	max-width: 650px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.s-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: calc(var(--unit) * 2) var(--unit) var(--unit);
	box-shadow: 0 0 8px var(--c-shadow);
/*	max-width: 1600px;margin: 0 auto;*/
}

.s-footer .sponsors {
	display: flex;
}

.sponsors img {
	width: 100%;
}

.s-logo {
	margin-right: 45px;
}

.footer-illu {
	display: block;
	width: 420px;
	height: auto;
	margin-top: -30px;
}

.i-footer, .i-footer-contact {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
}

.i-footer {
	padding: calc(var(--unit) * 2) var(--unit) var(--unit);
}
.i-footer-contact {
	max-width: 770px;
}


@media screen and (max-width: 65rem) {
	.topnav {
		flex-direction: column-reverse;
	}
	.topnav-main {
		
	}
	.navigation a {
		font-size: 18px;
		padding: 12px 22px;
	}
	.site-header {
		padding: 15px;
	}
	.site-logo {
		font-size: 1.3em;
		line-height: 1;
	}
	.site-header .logo img {
		width: 120px;
		margin-top: 4px;
	}
	.site-footer .info{
		display: block;
		font-size: var(--f-size);
		padding: calc(var(--unit) * 3) 15px calc(var(--unit) * 1.5);
	}
	.fs {
		padding-bottom: 1em;
	}
	.s-footer {
		flex-direction: column;
		justify-content: flex-start;
		padding: calc(var(--unit) * 2) 15px 0;
	}
	.s-logo {
		margin-right: 20px;
	}
	.site-footer {
		position: relative;
		font-size: 18px;
		line-height: 1.2;
	}
	.sponsors {
		position: absolute;
		bottom: 160px;
		left: 15px;
		padding-right: 15px;
	}
	.sponsors img {
		max-width: 220px;
		margin-right: 0;
	}
	.i-footer {
		flex-direction: column-reverse;
		align-items: flex-start;
		padding: 0 15px calc(var(--unit) * 1);
		margin-top: 30px;
	}
	.i-footer-contact {
		display: block;
	}
	.legal {
		padding-bottom: 1em;
	}
	.footer-illu {
		width: calc(100% - 30px);
		margin-top: 0;
	}
}

@media screen and (max-width: 45rem) {
	.extra-space {
		display: block;
		height: 250px;
	}
}

/* Layout */

.grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-row-gap: calc(var(--unit) * 1.5);
}

.grid > .column {
	grid-column: span var(--span);
}

@media screen and (min-width: 65rem) {
	.grid {
		--gutter: calc(var(--unit) * 1);
		grid-template-columns: repeat(12, 1fr);
		grid-gap: var(--gutter);
	}
}

/* Home */

.logo-illu {
	max-width: 1100px;
	margin: -150px auto 0;
	padding: 0 15px;
}

@media screen and (max-width: 45rem) {
	.logo-illu {
		width: 100%;
		margin: 0 auto;
	}
}


/* Story */

.story {
	padding-top: calc(var(--unit) * 2);
	padding-bottom: calc(var(--unit) * 3);
}

.story p {
	font-size: var(--f-big);
	padding: 0 var(--unit) 1em;
	max-width: 1000px;
	margin: 0 auto;
}

.story p a {
	text-decoration: underline;
}

.story-heading h1 {
	font-size: var(--f-head);
	letter-spacing: -2px;
	max-width: 1000px;
	margin: 0 auto;
	padding: calc(var(--unit) * 3) var(--unit) 0;
}

.story-heading h2, .story h2, .story h3, .story h4  {
	font-size: calc(var(--f-big) *1.2);
	padding: 2rem var(--unit) 1em;
	max-width: 1000px;
	margin: 0 auto;
}

.block-list ul {
	list-style: disc;
	
	font-size: var(--f-big);
	padding: 1rem var(--unit) 2em;
	max-width: 1000px;
	margin: 0 auto;
}

.block-list li {
	margin-left: 1em;
	line-height: 1.2;	
}

figure ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 45rem) {
	.story {
		padding-top: var(--unit);
		padding-bottom: calc(var(--unit) * 1.5);
	}
	.story p {
		font-size: calc(var(--f-size) - 5px);
		padding: 0 15px 1em;
	}
	.story p a {
		word-wrap: break-word;
	}
	.story p:last-child {
		padding-bottom: calc(var(--unit) * 1.5);
	}
	.story-heading h1 {
		hyphens: auto;
		hyphenate-limit-chars: auto 3;
		hyphenate-limit-lines: 4;
	}
	.story-heading h1 {
		font-size: calc(var(--f-size) * 1.45);
		letter-spacing: -1px;
		padding: calc(var(--unit) * 3) 15px 1rem;
	}
	.story-heading h2, .story h2, .story h3, .story h4  {
		font-size: calc(var(--f-size) * 1.15);
		padding: 0 15px 1rem;
	}
	.block-list ul {	
		font-size: var(--f-size);
		padding: 1rem 15px 2em;
	}
	figure ul {
		grid-template-columns: repeat(1, 1fr);
	}
}


/* Blocks */

.blocks figure {
	padding: 2em 0;
}

.grid:last-child figure {
	padding: 2em 0 0;
}



/* Banner */

.banner a {
	display: block;
	line-height: 0;

	background-color: var(--c-main);
	color: var(--c-bg);
	
	box-shadow: 0 0 12px var(--c-shadow);
	transition: all 0.5s ease-in-out;
	
	position: relative;
	z-index: 4;
	
	cursor: pointer;
}

.banner a:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.7);
	z-index: 5;
}


/* !!!!! NEWS !!!!! */

.news, .calender {
	padding-top: calc(var(--unit) * 4);
}

.entry-banner a {
	width: 100vw;
	height: 300px;
	
	background-color: var(--c-white);
	color: var(--c-bg);
	
	display: flex;
	justify-content: space-between;
	
	box-shadow: 0 0 12px var(--c-shadow);
	transition: all 0.5s ease-in-out;
	
	position: relative;
	z-index: 4;
}

.entry-banner a.btn, .entry-banner a.ticket {
	background-color: var(--c-main);	
}

.entry-banner a:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.7);
	z-index: 5;
}

.entry-banner-info {
	display: block;
	padding: var(--unit);
}

.cover-image {
	display: block;
	height: 300px;
	width: 300px;
	min-width: 300px;
}

.entry-date {
	display: block;
	padding-bottom: 1em;
}

.entry-banner h2 {
	font-size: clamp(27px, 3vw, 2.4em);
	line-height: 1;
}

@media screen and (max-width: 45rem) {
	.entry-banner a {
		display: block;
		height: 100%;
	}
	.entry-banner-info {
		padding: var(--unit) 15px;
	}
	.cover-image {
		display: block;
		height: 300px;
		width: 100%;
		margin-top: var(--unit);
	}
	.entry-banner h2 {
		font-size: var(--f-size);
	}
}

/* !!!!! Calender !!!!! */

.event-banner {
	position: relative;
}

.event-banner a {
	display: flex;
	justify-content: space-between;
	
	width: 100vw;
	height: auto;
	
	background-color: var(--c-white);
	color: var(--c-bg);
	
	position: relative;
	
	box-shadow: 0 0 12px var(--c-shadow);
	
	padding: var(--unit);
	
	transition: box-shadow 0.5s;
}

a.event-banner-h {
	min-height: 360px;
}

.event-banner a:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.7);
	z-index: 5;
}

.event-dates {
	display: flex;
}

.event-titel {
	margin-top: 15px;
}

.event-titel h2 {
	font-size: clamp(27px, 2.25vw, 2.4em);
	line-height: 1;	
}

.event-titel h3 {
	margin-top: 3px;
}

.event-date, .event-time {
	padding-right: 25px;
}

.ticket-link {
	position: absolute;
	bottom: var(--unit);
	left: var(--unit);
	z-index: 10;
	color: var(--c-bg);
}

.ticket-link a {
	display: inline-block;
	height: 64px;
	width: 180px;
	text-align: center;
	line-height: 64px;
	padding: 0;
	background-color: var(--c-main);
}

.ticket-link span {
	display: block;
	font-size: 18px;
	padding-bottom: 10px;
	letter-spacing: 0;
}

@media screen and (max-width: 45rem) {
	.event-banner {
		margin-bottom: 60px;
	}
	.event-banner a {
		display: block;
		padding: calc(var(--unit) / 2);
	}
	.event-dates, .event-dates time {
		display: block;
	}
	.ticket-link a {
		font-size: 18px;
		height: 52px;
		width: 130px;
		text-align: center;
		line-height: 52px;
		padding: 0;
		letter-spacing: 0;
	}
	.ticket-link span {
		font-size: 14px;
		line-height: 1.2;
		display: block;
		background-color: var(--c-red);
		color: var(--c-main);
		padding: 8px;
		max-width: calc(100% - 30px);
	}
	a.event-banner-h {
		min-height: 460px;
	}
}


/* Tags */

.categories {
	display: flex;
}

.categories .location {
	margin-right: calc(var(--unit) * 1.2);
}

.tags {
	text-transform: capitalize;
	display: inline-block;
	color: var(--c-red);
}

.tag-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	text-transform: capitalize;	
}

.tag-filter a {
	position: relative;
	display: inline-block;
	background-color: var(--c-main);
	color: var(--c-bg);
	padding: 18px 46px;
	box-shadow: 0 0 8px var(--c-shadow);
	white-space: nowrap;
	z-index: 5;
	
	transition: all 0.5s ease-in-out;
}

.tag-filter a:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.7);
	z-index: 6;
}

.tag-filter .active a {
	box-shadow: 0 0 20px rgba(0,0,0,0.7);
	z-index: 6;		
}

.tags-field {
	margin-top: 3px;
}

.tags-field .tags {
	padding-right: 5px;	
}

@media screen and (max-width: 45rem) {
	.tags {
		position: static;
	}
	.tag-filter  a {
		font-size: 18px;
		padding: 12px 22px;
	}
	.categories {
		flex-direction: column;
		/*padding-bottom: var(--unit);*/
	}
	.categories .location {
		margin-right: 0;
		padding-bottom: 0;
	}
}

/* Ticket Btn */

.event-ticket, .event-info-box {
	position: fixed;
	bottom: 30px;
	left: 30px; right: 30px;
	width: calc(100vw - 60px);
	height: 110px;
	z-index: 9;
}

.event-ticket-extra {
	position: fixed;
	bottom: 30px;
	left: 30px; right: 30px;
	width: calc(100vw - 60px);
	height: 165px;
	z-index: 9;
}

.event-ticket a, .event-ticket-extra a {
	display: block;
	text-align: center;
	width: calc(100vw - 60px);
	height: 110px;
	line-height: 110px;
	box-shadow: 0 0 12px var(--c-shadow);
	transition: all 0.3s;
}

.event-ticket a, .event-ticket-extra a {
	background-color: var(--c-main);
	color: var(--c-bg);
}

.event-ticket a:hover, .event-ticket-extra a:hover {
	background-color: var(--c-green);
	box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.event-ticket-info {
	font-size: 20px;
	background-color: var(--c-red);
	color: var(--c-main);
	text-align: center;
	padding: 12px;
}

.event-info-box {
	display: block;
	text-align: center;
	width: calc(100vw - 60px);
	height: 110px;
	line-height: 110px;
	color: var(--c-main);
	background-color: var(--c-red);
	box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

@media screen and (max-width: 45rem) {
	.event-ticket-info {
		font-size: 16px;
		line-height: 1.2;
		padding: 8px;
	}
	.event-ticket, .event-info-box {
		bottom: 15px;
		left: 15px; right: 15px;
		width: calc(100vw - 30px);
		height: 80px;
		z-index: 9;
	}
	.event-ticket a, .event-ticket-extra a {
		width: calc(100vw - 30px);
		height: 80px;
		line-height: 80px;
	}
	.event-ticket-extra {
		bottom: 15px;
		left: 15px; right: 15px;
		width: calc(100vw - 30px);
		height: 120px;
	}
	.event-info-box {
		display: flex;
		justify-content: center;
		align-items: center;
		width: calc(100vw - 30px);
		height: 80px;
		line-height: 1.2;
		font-size: 16px;
	}
}


/* Home Banner */

.banner-f .m-banner-bottom {
	margin-bottom: -8px;
	transition: all 1s ease-in-out 0s;	
}

.banner-f-alt .m-banner-bottom {
	margin-bottom: -12%;
	transition: all 1s ease-in-out 0s;	
}

.banner-f .m-banner-bottom .news-teaser-container {
	opacity: 1;
	transition: all 1s ease-in-out 0s;	
}

.banner-f-alt .m-banner-bottom .news-teaser-container {
	opacity: 0 !important;
	transition: all 1s ease-in-out 0s;	
}

.banner-f .m-banner-middle {
	margin-bottom: -8px;
	transition: all 1s ease-in-out 0s;	
}

.banner-f-alt .m-banner-middle {
	margin-bottom: -13%;
	transition: all 1s ease-in-out 0s;
}

.banner-f .m-banner-top {
	margin-bottom: -2%;
	transition: all 1s ease-in-out 0s;	
}

.banner-f-alt .m-banner-top {
	margin-bottom: -13%;
	transition: all 1s ease-in-out 0s;
}

.m-banner-container {
	position: fixed;
	bottom: -5px;
	left: 0;
	right: 0;
	width: 100vw;
	z-index: 9;
}

.m-banner {
	cursor: pointer;
}

.m-banner a {
	display: block;
	color: var(--c-bg);
	position: relative;
	
	box-shadow: 0 0 12px var(--c-shadow);
}

.m-banner img {
	padding: 0;
	margin: 0;
	line-height: 0;
}

.m-banner-top {
	background-color: var(--c-main);	
	z-index: 9;
}

.news-banner {
	position: relative;
	height: 14vw;
	width: 100vw;
	padding: calc(var(--unit) / 1.5);
	
	color: var(--c-main);
	background-color: var(--c-red);
	box-shadow: 0 0 12px var(--c-shadow);
	z-index: 10;
}

.news-teaser-container {
	display: flex;
}

.news-teaser a {
	display: flex;
	box-shadow: none !important;
	color: var(--c-main);
	padding: 0 calc(var(--unit) * 1.5);
	
	font-size: 3.5vw;
	line-height: 1;
	
	white-space: nowrap;
}

.news-teaser a::before {
	content: ' ';
	background: url(../img/cloud-l.svg) no-repeat top right;
	background-size: contain;
	margin-right: 20px;
	width: 2vw;
	height: 6.5vw;
	display: inline-block;
	padding-left: 27px;
}

.news-teaser a::after {
	content: ' ';
	background: url(../img/cloud-r.svg) no-repeat top left;
	background-size: contain;
	margin-left: 20px;
	width: 2vw;
	height: 6.5vw;
	display: inline-block;
	padding-right: 27px;
}

.news-teaser-title {
	display: flex;
	align-items: flex-start;
}

.news-teaser-title img {
	height: 3.5vw;
	width: auto;
	margin-right: 20px;
	padding-top: 5px;
}

.social-banner {
	display: none;
}

@media screen and (max-width: 60rem) {
	.news-teaser a {
		font-size: 3vw;
	}
}

@media screen and (max-width: 45rem) {
	.m-banner-top, .m-banner-middle {
		display: none;
	}
	.news-banner {
		height: 22vw;
	}
}


/* Video */

.v-placeholder {
	background-color: var(--c-yellow);
}

.video-block {
	display: block;
	max-width: 1000px;
	margin: 0 auto calc(var(--unit) * 1.5);	
}

.video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}

.video iframe, .video object, .video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.image figcaption {
line-height:1.1;
}

