html, body {
	margin:0;
	height:100%;
}

/*html {
	scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}*/

body {
	font-family: 'Dosis-Regular',sans-serif;
	color: black;
}

/*.section {
	scroll-margin-top: 120px;
}
*/
#name {
	margin-top:24px;
	margin-left:13px;
	width: 250px; 
	height: 70px; 
	float: left;
	background-image: url(images/pimp.events.png);
	background-position: left top;
	background-repeat:no-repeat;
}

.container-text-margin {
	text-align: justify;
	text-align-last: none;
}

.signatur {
	width:100%;
	object-fit: cover;
}
/*
@media screen and (max-width:855px) {
	.sign {
		background-image: url(images/Sign_TimMarek.png);
		height: 109vh;
		background-repeat:no-repeat;
		width: 100%;
		background-size: cover;
	}
}
*/


/*
#start {
	padding-top: 50px;
}
#podcast {
	padding-top: 90px;
}

#about {
	padding-top: 30px;
}*/


#headernav {
	width: 100%;
	position: fixed;
	background-color: #333333;
	z-index: 1;
	top: 0;
	left: 0;
	height:120px;
}

#adjustment {
	float: right;
}

/*
nav {
position: absolute;
top: 0px;
right: 270px;
}
*/
#navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#navigation li {
	padding-top: 0;
	padding-left: 0;
	line-height: 119px;
	height: 87px;
	float: left;
	text-align: center;
}

#navigation li a {
	text-align: center;
	padding: 0 20px 0 20px;
	color: lightgray;
	margin: 0 0 0 0;
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	font-size:1.3em;
	font-family: 'Dosis-Regular',sans-serif;
	font-weight:bold;
	background-color: #333333;
	transition: background-color 1.0s ease 0s;
}

#navigation li a:hover {
	background:#281c0b;
	color:#fff2e1;
	text-decoration: none;
}


header {
	height:825px;
	background:url(images/iStock-bg.jpg) 50% 50% no-repeat;
	background-size:cover;
	margin-top: 120px;
}


img.box {
	width: 250px;
	height: 250px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -125px;
	margin-top: -90px;
}


.logo-very-small h3{
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	width: 70%;
	text-align:center;
	overflow:hidden;
}
.logo-very-small h3 span{
	display:inline-block;
	position:relative;
}
.logo-very-small h3 span:after, h3 span:before{
	content:" ";
	display:block;
	height:1px;
	width:1000px;
	background: #DDD;
	position:absolute;
	top:50%;
}
.logo-very-small h3 span:before{
	left:-1010px;
}
.logo-very-small h3 span:after{
	right:-1010px;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	font-size:1.25em; 
}

img.logo_small {
	height: 215px;
	width: 215px;
}

h1 span {
	background-color: #acd0d0;
	padding: 0.3rem;
}

h1.headline {
	font-family: 'Impact Regular';
	font-size: 4.0em; 
	text-transform: uppercase;
	text-align: center;
	/*padding-top: 30px;*/
}

h1.headline1 {
	font-family: 'Impact Regular';
	font-size: 4.0em; 
	text-transform: uppercase;
	text-align: center;
	padding-top: 30px;
}

h1.slogen {
	font-family: 'Impact Regular';
	font-size: 2.5em; 
	text-align: center;
	margin-top:-30px;
}









 .main-gallery {
	display: flex;
	align-items: center;
	justify-content: center;
	
  }
  
  .thumbs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 700px;
	max-width: 100%;
  }
  .thumbs > a {
	max-width: 150px;
	height: 150px;
	margin: 10px;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 0 0 3px white, 0 5px 8px 3px rgba(0, 0, 0, 0.6);
  }
  .thumbs > a img {
	transform: scale(1);
	transition: transform 0.1s ease-in-out;
	filter: grayscale(50%);
	min-width: 100%;
	min-height: 100%;
	max-width: 100%;
	max-height: 100%;
  }
  .thumbs > a:hover img {
	transform: scale(1.1);
	filter: grayscale(0%);
  }
  
  .lightbox {
	position: fixed;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	transform: translateY(-100%);
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	z-index: 1;
  }
  .lightbox:has(div:target) {
	transform: translateY(0%);
	opacity: 1;
  }
  .lightbox a.nav {
	text-decoration: none;
	color: white;
	font-size: 40px;
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
	opacity: 0.5;
	font-weight: 200;
  }
  .lightbox a.nav:hover {
	opacity: 1;
  }
  .lightbox .target {
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	transform: scale(0);
	align-items: center;
	justify-content: space-between;
  }
  .lightbox .target *:first-child, .lightbox .target *:last-child {
	flex: 0 0 100px;
	text-align: center;
  }
  @media all and (max-width: 600px) {
	.lightbox .target *:first-child, .lightbox .target *:last-child {
	  flex: 0 0 50px;
	}
  }
  .lightbox .target .content {
	transform: scale(0.9);
	opacity: 0;
	flex: 1 1 auto;
	align-self: center;
	max-height: 100%;
	min-height: 0;
	min-width: 0;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 0 0 3px white, 0 5px 8px 3px rgba(0, 0, 0, 0.6);
	transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
  }
  .lightbox .target .content img {
	min-width: 100%;
	min-height: 100%;
	max-width: 100%;
	max-height: calc(100vh - 40px);
	display: block;
	margin: 0;
  }
  .lightbox .target:target {
	transform: scale(1);
  }
  .lightbox .target:target .content {
	transform: scale(1);
	opacity: 1;
  }
  .lightbox .close {
	position: absolute;
	right: 10px;
	top: 10px;
  }










 .parallaxbild1 {
	background-image: url("images/1shutterstock_1935426250 (1).jpg");
	background-size: cover;
	height: 350px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 6vw;
	background-attachment: fixed;
  }
  
  
  
  .parallaxbild2 {
	background-image: url("images/1shutterstock_1935426250 (3).jpg");
	background-size: cover;
	height: 350px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 6vw;
	background-attachment: fixed;
  }
  
  .parallaxbild3 {
	  background-image: url("images/1shutterstock_1935426250 (4).jpg");
	  background-size: cover;
	  height: 350px;
	  width: 100%;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  color: white;
	  font-size: 6vw;
	  background-attachment: fixed;
	}
  
  
  
  @media (max-width:850px) {
	.parallaxbild2 {
		background-attachment: scroll;
		background-size: cover;
		height: 300px;
		font-size: 7vw;
	}
	.parallaxbild1 {
		background-attachment: scroll;
		background-size: cover;
		height: 300px;
		font-size: 7vw;
	}
	.parallaxbild3 {
	  background-attachment: scroll;
	  background-size: cover;
	  height: 300px;
	  font-size: 7vw;
  }
  
	/*.parallaxtext2 {
		font-size: 5vw;
	}*/
  }
  








@font-face {
    font-family: 'Impact Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Impact Regular'), url('impact.woff') format('woff');
    }

@font-face {
  font-family: 'Dosis-Regular';
  src: url('Dosis-Regular.eot');
  src: url('Dosis-Regular.eot?#iefix') format('embedded-opentype'),
       url('Dosis-Regular.woff') format('woff'),
       url('Dosis-Regular.ttf') format('truetype'),
       url('Dosis-Regular.svg#Dosis-Regular') format('svg');
}

.fa.fa-heart {
	color: #5DD;
	text-align: center;
}
.fa.fa-headphones {
	color: #5DD;
	text-align: center;
}

h3{
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	width: 70%;
	text-align:center;
	overflow:hidden;
}
h3 span{
	display:inline-block;
	position:relative;
}
h3 span:after, h3 span:before{
	content:" ";
	display:block;
	height:1px;
	width:1000px;
	background: #DDD;
	position:absolute;
	top:50%;
}
h3 span:before{
	left:-1010px;
}
h3 span:after{
	right:-1010px;
}

/*h1 { 
	margin-top:-40px;
	font-size: 320%;
	font-family: 'Dosis-Regular',sans-serif;
	font-weight: normal;
	line-height: 66px;
	text-transform: uppercase;
	text-align: center;	}
	*/

h2 { font-size: 1.5em; } /* 30/20*/

blockquote {
	font-size: 1.1em; /* 24/20 */
	color: black;
	font-style: italic;
}

.info {
	font-family: 'Dosis-Regular',sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	padding: 1% 5%;
	box-sizing: border-box;
	background: #FFF2B9;
	font-size: 1.6em; /* 24/20 */
	display: inline-block;
}

.info h2 { font-size: 1em; /* 24/24 */ 
text-transform: none;}



	

.main{
   /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    
    cursor: pointer;*/
	float: right;
	display: flex;
}

.mainfooter{
	/* position: absolute;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%,-50%);
	 
	 cursor: pointer;*/
	 float: right;
	 display: flex;
 }

.icon{
    position: relative;
    width: 80px;
    height: 80px;
    margin: 20px;
    border-radius: 50px;
    transition: all .8s;
}
.icon:hover{
    background: #e60073;
    box-shadow: 0 0 20px #e60073;
}
.icon:hover:nth-child(2){
    background: #1877f2;
    box-shadow: 0 0 20px #1877f2;
}
.icon:hover:nth-child(3){
    background: #faa21d;
    box-shadow: 0 0 20px #faa21d;
}
/*.icon:hover:nth-child(4){
    background: #1da1f2;
    box-shadow: 0 0 20px #1da1f2;
}*/
.icon i{
    color: white;
    position: absolute;;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
}
svg circle{
    stroke-dasharray: 150;
    transition: all .8s;
}
.icon:hover svg circle{
    stroke-dasharray: 220;
}







footer { 
	background-color: #333333;
	width: 100%;
	height: 100px;
	clear: both;
	overflow: hidden;
}

.footersocial {
	float: right;
	margin-top: -12px;
}
.footertext {
	float: left;
	line-height: 5px;
	color: #666;
	font-weight: normal;
	font-size: 13px;
	/*text-align: left;*/
	font-family: Tahoma, Helvetica, Trebuchet MS, Arial, sans-serif;
	padding: 10px;
	margin-top: 8px;
	margin-left: 15px;
}
a.link:link { 
	color: #C5C5C5;
	text-decoration: none;
}
a.link:visited { 
	color: #C5C5C5;
	text-decoration: none;
}
a.link:hover { 
	color: white;
	text-decoration: underline;
}
a.link:active { 
	color: #333333;
}


#toggleNavMain {
	display:none;
}

#back-top {
	position: fixed;
	bottom: 75px;
	right: 30px;
}
#back-top a {
	display: block;
	text-align: center;
	font: 11px/100% Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	color: #bbb;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover {
	color: #000;
}
/* arrow icon (span tag) */
#back-top span {
	width: 50px;
	height: 50px;
	display: block;
	background-color: rgba(0, 0, 0, 0.3);
	color: #FFF;
	font-size: 20px;
	line-height: 50px;
	/* rounded corners */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover span {
	background-color: #777;
}


@media screen and (max-width:1160px) {
	
	iframe {
		width: 100%;
		height: 450px;
    }
	
	.fa.fa-bars {
		color: #AAA;
		font-size: 2em;
	}
	.fa.fa-bars:hover {
		color: white;
	}	
	
	#toggleNavMain {
		display:block;
		position: absolute;
		right: 360px;
		top: 20px;
		background: #333333;
		padding: 2% 3%;
		font-size:1.3em;
		cursor:pointer;
	}
	
	#navMain {display:none;}
	
	#navMain li {
		/*margin-top: 0px;
		margin-left: 0px;*/
		margin-right: 250px;
		/*padding-bottom: 5px;*/
		margin-bottom: 5px;
		float:left;
		width:100%;
		/*height: 80px;*/
	}

	#navigation li {
		padding-top: 0;
		padding-left: 0;
		line-height: 90px;
		height: 85px;
		float: left;
		text-align: center;
	}

	
	#navMain li a {
		border-top: 1px solid #3A3A3A;
		/*padding:0% 0% 0% 0%;*/
	}
	#navMain li a:hover {
		background:#281c0b;
		color:#fff2e1;
		height: 90px;
	}
	
}

@media screen and (min-width:720px) {

	img.box {
		width: 250px;
		height: 250px;
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: -125px;
		margin-top: -175px;
	}	

	header {
		width:100%;
		height:1060px;
		background:url(images/iStock-bg.jpg) 50% 50% no-repeat;
		background-size:cover;
		margin-top: 120px;
	}
}


@media screen and (max-width:720px) {


	img.box {
		width: 250px;
		height: 250px;
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: -125px;
		margin-top: -180px;
	}
	
	footer { 
		background-color: #333333;
		width: 100%;
		height: 225px;
		clear: both;
		overflow: hidden;
	}
	

	.footersocial {
		float: none;
		margin-top: -20px;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.footertext {
		float: none;
		line-height: 15px;
		color: #666;
		font-weight: normal;
		font-size: 13px;
		text-align: center;
		font-family: Tahoma, Helvetica, Trebuchet MS, Arial, sans-serif;
		padding: 10px;
		margin-top: 8px;
		margin-left: 15px;
	}

	blockquote {
		margin-left: 0px;
		margin-right: 0px;
	}
	
	iframe {
		width: 100%;
		height: 450px;
		margin-bottom: 25px;
        }

	#name {
		margin-top:24px;
		width: 250px; 
		height: 70px; 
		float: left;
		background-image: url(images/pimp.events.png);
		background-position: left top;
		background-repeat:no-repeat;
	}
	
	.fa.fa-bars {
		color: #AAA;
		font-size: 2em;
	}
	.fa.fa-bars:hover {
		color: white;
	}
	
	#navigation ul {
		list-style: none;
		/*margin: 0;*/
		margin-top: 25px;
		padding: 0;
	}

	#toggleNavMain {
		display:block;
		position: absolute;
		right: 40px;
		top: 25px;
		background: #333333;
		padding: 2% 3%;
		font-size:1.5em;
		cursor:pointer;
	}
	
	#navMain {display:none;}
	
	#navMain li {
		/*margin-top: 0px;
		margin-left: 0px;*/
		margin-right: 250px;
		/*padding-bottom: 5px;*/
		margin-bottom: 5px;
		float:left;
		width:100%;
		/*height: 80px;*/
	}

	#navigation li {
		padding-top: 0;
		padding-left: 0;
		line-height: 90px;
		height: 85px;
		float: left;
		text-align: center;
	}

	
	#navMain li a {
		border-top: 1px solid #3A3A3A;
		/*padding:0% 0% 0% 0%;*/
	}
	#navMain li a:hover {
		background:#281c0b;
		color:#fff2e1;
		height: 90px;
	}
	
	
	
	
	
	.container {
		/*max-width: 800px;
		padding:30px;
		margin: 0 auto;*/
		font-size:1.25em;
		margin: 0 30px; 
	}


	header {
		width:100%;
		height:710px;
		background:url(images/iStock-bg.jpg) 50% 50% no-repeat;
		background-size:cover;
		margin-top: 120px;
	}
	
	div.main {display: none;}
	
	body {font-size:0.8em;}
	
}

@media screen and (max-width:440px) {


	blockquote {
		margin-left: 11px;
		margin-right: 11px;
	}
	.logo-very-small h3{
		width: 100%;
	}

	iframe {
		width: 100%;
		height: 450px;
    }

	.footersocial {
		margin-top: -10px;
	}

	.icon{
		margin: 10px;
	}

	img.box {
		width: 250px;
		height: 250px;
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: -125px;
		margin-top: -245px;
	}
	header {
		width:100%;
		height:665px;
		background:url(images/iStock-bg.jpg) 50% 50% no-repeat;
		background-size:cover;
		margin-top: 120px;
	}

	body {font-size:0.7em}
	
	iframe {
		width: 100%;
		height: 450px;
        }		
	
	h1 { 
		margin-top:0;
	}
	
	.container {
		/*max-width: 800px;
		padding:30px;
		margin: 0 auto;
		font-size:1.25em;*/
		margin: 0 5px 0 5px; 
		padding-top: 30px ;
	}

	/*.footertext {
		float: none;
		text-align: center;
		margin-left: 0;
		font-size: 1.0em;
	}*/
	
	
	#name {
		margin-top:24px;
		margin-left: 10px;
		width: 175px; 
		height: 58px; 
		float: left;
		background-image: url(images/pimp.events_mobil.png);
		background-position: left top;
		background-repeat:no-repeat;
	}
	
	/*header {
	width:100%;
	height:550px;
	background:url(images/bg.jpg) 50% 50% no-repeat;
	background-size:cover;
	}*/
	
	.fa.fa-bars {
		color: #AAA;
		font-size: 2em;
	}
	.fa.fa-bars:hover {
		color: white;
	}
	
	#toggleNavMain {
		display:block;
		position: absolute;
		right: 30px;
		top: 20px;
		background: #333333;
		padding: 2% 3%;
		font-size:1.6em;
		cursor:pointer;
	}
	
	#navMain {display:none;}
	
	#navMain li {
		/*margin-top: 0px;
		margin-left: 0px;*/
		margin-right: 250px;
		/*padding-bottom: 5px;*/
		margin-bottom: 5px;
		float:left;
		width:100%;
		/*height: 80px;*/
	}
	
	#navMain li a {
		border-top: 1px solid #3A3A3A;
		padding:0;
	}
	#navMain li a:hover {
		background:#281c0b;
		color:#fff2e1;
		height: 90px;
	}
}

@media screen and (max-width:355px) {

	.icon{
		margin: 5px;
	}

	.footermade {
		display: block;
	}

	.footersocial {
		margin-top: 0;
	}

	.footertext {
		float: none;
		line-height: 1.2em;

		color: #666;
		font-weight: normal;
		font-size: 13px;
		text-align: center;
		font-family: Tahoma, Helvetica, Trebuchet MS, Arial, sans-serif;
		padding: 10px;
		margin-top: 15px;
		margin-left: 15px;
	
	}

	footer {
		height: 265px;
	}

}

.footer2 ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer2 ul li{
  padding: 16px;
}


.container-impressum {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 24px;
	box-sizing: border-box;
	padding-top:150px;
}

.mitte {
	display: flex;
	justify-content: center;
	align-items: center;
  }

h1.size-header {
	text-align: left;
}
h3.size-header {
	text-align: left;
	margin-left: 0;
}




