/* html5reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* SITE CSS */
body { 
	font-family: 'Open Sans', sans-serif; 
	font-weight: 400; 
	color: #1B2632; 
	font-size: 1.1em; 
	background-color: #1B2632;
}
p {
  margin-bottom: 5px;
}
h1 {
	text-transform: uppercase;
	letter-spacing: -0.03em;
	font-size: 1.7em;
	/*font-style: italic;*/
	font-weight: 600; 
	color: #953351;
	/*line-height: 2em;*/
	width: auto;
}
h1 span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.3s;
	/*color: #819DBB;*/
}
h1 span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: -2px;
	right: -20px;
	transition: 0.3s;
}
h1:hover span {
	padding-right: 25px;
		color: #953351;

}
h1:hover span:after {
	opacity: 1;
	right: 0;
}
h2 { 
	font-size: 1.4em;  
	padding: .3em 0 .5em 0; 
}
h3 { 
	font-size: 1.0em;  
	padding:  0; 
}
h4 { 
	font-size: 1.0em;  
	padding:  0; 
	font-style: italic; 
}
h6 {
	font-size: 0.8em;
}
.info_headline { 
	font-size: 1.4em;
	font-weight: 600; 
	padding: .0em 0 .1em 0; 
}
ul{
	list-style-type: circle;
	list-style-position: inside;
	padding-left: 35px;
}
li{
	padding-bottom: /*5*/0px;
}
a:link {
	text-decoration: none;
	color: #953351;
	position: relative;
	/*font-weight: bold;*/
}
a:visited {
	text-decoration: none;
	color: #953351;
}
a:hover {
	color: #1B2632;
	text-decoration: underline;
}
a:active {
	text-decoration: none;
	color: #953351;
}
a[href$=".pdf"] { 
	background: url(../img/grfx/pdf_old.svg) 0 50% no-repeat; 
	padding-left: 25px;
}
.a_extern { 
	background: url(../img/grfx/icon_external_link.svg) 0 50% no-repeat; 
	padding-left: 25px;
}
.a_telephone { 
	background: url("../img/grfx/icon_telephone.svg") 0 50% no-repeat; 
	padding-left: 25px;
}


.center {
	text-align: center;
}
.right {
	text-align: right;
}
.bottom_parent {
	position: relative;
}
.bottom {
	bottom: 0;
	position: absolute;
}
@media only screen and (max-width: 58em /*640px*/) {
	.bottom_parent {
		position: unset;
	}
	.bottom {
		bottom: unset;
		position: unset;
		padding-top: 20px;
	}
}
.round_border {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.padding_bottom {
	padding-bottom: 25px;
}
.padding_top {
	padding-top: 10px;
}
.float_right {
	float: right;
}
.invisible {
	display: none;
}
@media only screen and (max-width: 58em /*640px*/) {
	.invisible {
		display: unset;
	}
}
/*.hidden_parts {
	visibility: visible;
}*/
@media only screen and (max-width: 58em /*640px*/) {
	.hidden_parts {
		display: none;
	}
}

/* LINK UNDERLINE>BACKGROUND */
.link {
	text-decoration: none;
	font-size: 1em; /**/
	font-weight: 600 !important;
	position: relative;
	z-index: 0;
	display: inline-block;
	padding: 0px 5px;
	overflow: hidden;
	color: #953351;
	vertical-align: bottom;
	transition: color .2s ease-out;
}
.link:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	transform: translateY(calc(100% - 0px));
	width: 100%;
	height: 100%;
	background-image: linear-gradient(120deg, #953351 0%, #953351 100%);
	transition: transform .7s ease-out;
}
.link:hover { 
	color: #fff !important; 
}
.link:hover::before {
	transform: translateY(0);
	transition: transform .2s ease-out;
}

/* PAGE LAYOUT */
.header {
	width: 100%;
	background-color: rgba(250,250,250,/*0.95*/0.75);
	backdrop-filter: blur(5px);
	border-bottom: 0px solid #e0e5eb;
	position: fixed;
	z-index: 100;
}
.stage {
	background: url("../img/header_v4.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	min-height: 650px;
	position: fixed;
	top: 0px;
	z-index: -1;
	overflow: hidden;
	padding: 0;
}
.content {
	position: relative;
	top: /*475*/600px;
	overflow-x: hidden;
}
.bg_dark {
 	background-color: #1B2632;
	color: #E1E1D3;  
	padding: 12.5px 0;
}
.bg_dark .a_extern { 
	background: url("../img/grfx/icon_external_link_light.svg") 0 50% no-repeat; 
}
.bg_dark .a_telephone { 
	background: url("../img/grfx/icon_telephone_light.svg") 0 25% no-repeat; 
}
.bg_dark .link {
	color: #E1E1D3; 
	text-decoration: underline;
  	text-decoration-thickness: 2px;
  	text-decoration-skip: spaces;
  	text-decoration-skip-ink: spaces;
}
.bg_dark h1 span {
	color: #e3e9ec;
}
.bg_dark h1:hover span {
	color: #e3e9ec;
}
.bg_light {
	background-color: #FFFFFF;
	padding: 12.5px 0;
}
.bg_red {
	background-color: #FFE8ED;
	border: solid #953351;
	border-width: 5px 0 5px 0;
	padding: 25px 0;
}
.footer .h_main {
	font-size: 1.3em;
}
.footer_nav {
	font-size: 1.15em; 
}
.footer_nav p {
	margin-bottom: 2px;
}
.footer_nav .link {
  text-decoration: none;
}

.footer_nav_current::before {
	content: "➔";
	color: #E1E1D3; 	
	/*padding-left: 25px;*/
}

.flex-container {
	display: -webkit-flex !important;
	display: -ms-flex !important;
	display: flex !important;
	-webkit-flex-wrap: wrap !important;
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
}
.flex-panel {
	display: -webkit-flex !important; 
	display: -ms-flexbox !important; 
	display: flex !important;
	-webkit-flex-wrap: wrap !important;
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
}

/* MAIN NAVIGATION */
.nav {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}
.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.nav li a {
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  display: block;
  padding: 15px 10px;
  background-image: linear-gradient(#FFF, #FFF);
  background-size: 0% 100%;
  background-position-y: 100%;
  background-position-x: 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(.3, .15, .25, 1);
}
.nav li a:hover {
  color: #333;
  background-size: 100% 100%;
  background-position-x: 0%;
}
.nav li a#current {
  color: #953351;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-skip: spaces;
  text-decoration-skip-ink: spaces;
}
.nav .logo {
  display: block;
  float: left;
  padding: 14px 0 3px 0;
}
/* Menu */
.nav .menu {
  clear: both;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
/* When open */
.nav .menu.open {
  max-height: 440px;
}
/* Menu icon */
.nav .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}
.nav .menu-icon .navicon {
  background: #333;
  height: 2px;
  width: 18px;
  position: relative;
  display: block;
  transition: background 0.2s ease-out;
}
.nav .menu-icon .navicon:before,
.nav .menu-icon .navicon:after {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
}
.nav .menu-icon .navicon:before {
  top: 5px;
}
.nav .menu-icon .navicon:after {
  top: -5px;
}
/* Animate menu icon when open */
.nav .menu.open + .menu-icon .navicon {
  background: transparent;
}
.nav .menu.open + .menu-icon .navicon:before {
  transform: rotate(-45deg);
  top: 0;
}
.nav .menu.open + .menu-icon .navicon:after {
  transform: rotate(45deg);
  top: 0;
}
/* Desktop */
@media (min-width: 68em) {
  .nav li {
    float: left;
  }
  .nav li a {
    padding: 15px 15px;
  }
  .nav .menu {
    clear: none;
    float: right;
    max-height: none !important;
  }
  .nav .menu-icon {
    display: none;
  }
}
/* PAGE-ELEMENTS */
.important_news {
	background-color: #FFF3F6;
	border-left: solid 4px #953351;
	padding: 15px 25px;
}
.header_overlay {
	clear: both;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 auto;
	max-width: 1200px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.infonews {
	margin: 0 auto;
	display: inline-block;
	padding: 10px;
	background-color: rgba(255,255,255,0.9);
	position: absolute;
	top: 170px;
	max-width: 750px;
	backdrop-filter: blur(5px);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 5px solid rgba(159,60,89,1);
}
.date {
	font-size: x-small;
	float: right;
}
.infobox {
	background-repeat: no-repeat;
	background-position: right 10px bottom -10px;
	background-size: auto 60%;
	text-align: left;
	color: #1B2632;
	padding: 5px 5px 5px 15px;
 	background-color: #FFFFFF;
	border: none;
	width: 100%;
}
.infobox h2 {
	font-size:1.4em; 
	padding:0 0 0.2em 0;
}
.infobox .link {
	color: #953351; 	
}
.infobox_red {
	background-color: #953351;
	color: #FFFFFF;	
}
.infobox-groups {
	background-image: url(../img/grfx/infogroups2.svg);
}
.infobox-time {
	background-image: url(../img/grfx/infotime2.svg);
}
.infobox-phone {
	background-image: url(../img/grfx/infophone2.svg);
}
.infobox-tickets {
	background-image: url(../img/grfx/infotickets2.svg);
}
.teaser {
	font-size: 1.1em;
}
.teaser p {
	margin-bottom: 0.7em;
}
.headline_img_wrapper {
	width: 100%;
	height: 150px;
	overflow: hidden;
	margin-bottom: 10px;
	/*transition: height 0.5s;*/
}
/*.headline_img_wrapper:hover {
	height: 200px;
}*/
/*@media only screen and (max-width: 58em) {
	.headline_img_wrapper {
		height: 250px;
		display: none;
	}
}*/
.img_box  {
	width: 100%;
	overflow: hidden;
	object-fit: cover;
	display: inline-block;
}
.googlemaps {
	width: 100%;
	margin: 0; 
	height: 100%;
	min-height: 400px;
}

/* GALLERY */
.carousel {
	/*margin-left: 15%;
	margin-right: 15%;
	border:1px solid #E1E1D3;
	box-shadow: 0 0 0.3em  #333;*/
}
ul.slides {
	display: block;
	position: relative;
	height: 450px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	list-style: none;
}
.slides * {
	user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
}
ul.slides input {
	display: none; 
}
.slide-container { 
	display: block; 
}
.slide-image {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	opacity: 0;
	transition: all 0.7s ease-in-out;
}   
.slide-image img {
	max-width: 100%;
	min-height: 450px;
	object-fit: cover;
}
.carousel-controls {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 15;
	font-size: 100px;
	line-height: 400px;
	color: rgba(255,255,255,.65);
	text-shadow: 0 0 0.1em  #000;
}
.carousel-controls label {
	display: none;
	position: absolute;
	padding: 0 20px;
	opacity: 0.3;
	transition: opacity .3s ease-in-out;
	cursor: pointer;
}
.slide-image:hover + .carousel-controls label{
	opacity: 0.5;
	
}
.carousel-controls label:hover {
	opacity: 1;
}
.carousel-controls .prev-slide {
	width: 49%;
	text-align: left;
	left: 0;
}
.carousel-controls .next-slide {
	width: 49%;
	text-align: right;
	right: 0;
}
.carousel-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 40px;
	z-index: 15;
	text-align: center;
}
.carousel-dot {
	cursor: pointer;	
}
.carousel-dots .carousel-dot {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: rgba(255,255,255,.5);
	opacity: 0.5;
	margin: 5px;
}
input:checked + .slide-container .slide-image {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.7s ease-in-out;
}
input:checked + .slide-container .carousel-controls label {
	display: block; 
}
input#img-1:checked ~ .carousel-dots label#img-dot-1,
input#img-2:checked ~ .carousel-dots label#img-dot-2,
input#img-3:checked ~ .carousel-dots label#img-dot-3,
input#img-4:checked ~ .carousel-dots label#img-dot-4,
input#img-5:checked ~ .carousel-dots label#img-dot-5,
input#img-6:checked ~ .carousel-dots label#img-dot-6 {
	opacity: 1;
}
input:checked + .slide-container .nav label { 
	display: block;
}
.gallery_img_description {
	position: absolute;
	width: 100%;
	background:rgba(0,0,0,.75);
	bottom: 0;
	margin-bottom: 0;
	padding:5px 5px 5px 15px;
	color:#fff;
	font-size:0.9em;
}
.gallery_img_description p {
	padding: 5px;	
}

/* PICTURE OVERLAY-BU */
figure {
	position:relative;
	overflow:hidden;
}
figure img {
	vertical-align: top;
}
figcaption {
	position:absolute;
	background:rgba(0,0,0,.75);
	color:#fff;
	padding:5px 5px 5px 15px;
	text-align:left;
	font-size:0.9em;
	opacity:1;
	top:100%;
	left:0;
	width: 100%;
	transform: translateY(0%);
	transition:all 0.3s ease;
}
figure:hover figcaption {
	opacity:1;
	transform: translateY(-100%);
} 

/* SUMMARY */
details[open] summary ~ * {
	animation: open 0.5s ease-in-out;
}
@keyframes open {
	0% {
 	opacity: 0;
	}
	100% {
 	opacity: 1;
	}
}
details summary::-webkit-details-marker {
	display: none;
}
details {
	border-left: 5px solid #953351;
	background-color: #F5F5F5;
	padding: 10px 10px 10px 20px;
	margin-bottom: 15px;
}
details summary {
	width: 100%;
	position: relative;
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: 400;
	list-style: none;
}
details summary:after {
	content: "+";
	position: absolute;
	font-size: 1.75rem;
	line-height: 0;
	margin-top: 0.75rem;
	right: 0;
	transform-origin: center;
	transition: 200ms linear;
}
details[open] summary:after {
	transform: rotate(45deg);
	font-size: 2rem;
}
details summary {
	outline: 0;
}

/* MAIN BUTTON_MORE */
.div_effect_button_main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	float: right;
	padding-top: 5px;
}
.div_effect_button_main_red a:link, .div_effect_button_main_red a:visited {
	text-decoration: none;
}
.div_effect_button_main_red a:hover {
	color: #fff;
	text-decoration: none;
}
.div_effect_button_main_dark a:link, .div_effect_button_main_dark a:visited {
	color: #1B2632;
	text-decoration: none;
}
.div_effect_button_main_dark a:hover {
	color: #E1E1D3;
	text-decoration: none;
}
.div_effect_button_main_light a:link, .div_effect_button_main_light a:visited {
	color: #E1E1D3;
	text-decoration: none;
}
.div_effect_button_main_light a:hover {
	color: #1B2632;
	text-decoration: none;
}
.effect_button_main {
	color: #1B2632;
	text-decoration: none;
	position: relative;
	padding: 10px 40px 10px 20px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.effect_button_main .bg_button_main {
	width: 30px;
	height: 2px;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -1px;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.effect_button_main_red .bg_button_main_red {
	background: #953351;
}
.effect_button_main_dark .bg_button_main_dark {
	background: #1B2632;
}
.effect_button_main_light .bg_button_main_light {
	background: #E1E1D3;
}
.effect_button_main:hover {
	padding-right: 20px;
	color: #fff;
}
.effect_button_main:hover .bg_button_main {
	height: 100%;
	width: 100%;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.effect_button_main .bg_button_main:before, .effect_button_main .bg_button_main:after {
	content: '';
	height: 2px;
	width: 10px;
	position: absolute;
	right: -2px;      
	-webkit-transition: all 0.3s;      
	-o-transition: all 0.3s;      
	transition: all 0.3s;
}
.effect_button_main_red .bg_button_main_red:before, .effect_button_main_red .bg_button_main_red:after {
	background: #953351;
}
.effect_button_main_dark .bg_button_main_dark:before, .effect_button_main_dark .bg_button_main_dark:after {
	background: #1B2632;
}
.effect_button_main_light .bg_button_main_light:before, .effect_button_main_light .bg_button_main_light:after {
	background: #E1E1D3;
}
.effect_button_main .bg_button_main:before {
	bottom: 3px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.effect_button_main .bg_button_main:after {
	top: 3px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.effect_button_main:hover .bg_button_main:before,
.effect_button_main:hover .bg_button_main:after {
	right: 0;
}
.effect_button_main:hover .bg_button_main:before {
	bottom: 6px;
}
.effect_button_main:hover .bg_button_main:after {
	top: 6px;
}

/* BOOKING_BUTTON */
.bookingbutton {
	display: inline-block;
	border-radius: 5px;
	background-color: #953351 ;
	border: none;
	color: #FFFFFF;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 1.2em;
	padding: 15px 20px;
	width: auto;
	transition: all 0.3s;
	cursor: pointer;
	/*margin: 15px;*/
}
.button-blue {
	background-color: #69C;
}
.bookingbutton span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.3s;
}
.bookingbutton span:after {
	content: '\00bb';
	position: absolute;
	font-size: 16pt;
	opacity: 0;
	top: -3px;
	right: -20px;
	transition: 0.3s;
}
.bookingbutton:hover span {
	padding-right: 25px;
}
.bookingbutton:hover span:after {
	opacity: 1;
	right: 0;
}

.bab_logo {
	max-width: 200px;
}
.social_media {
	height: 2em;
	width: 3em;
	background-color: #E1E1D3;
	margin: 5px 10px;
	float: left;
}
.social_media a{
	height: 100%;
	width: 100%;
	display:block;	
}
.facebook a {
	background: url(../img/grfx/logo_facebook.svg) no-repeat center;
	background-size: auto 1.5em;
}
.facebook a:hover {
	background-color: #3b5998; /* defines the background color of the image */
}
.youtube a {
	background: url(../img/grfx/logo_youtube.svg) no-repeat center;
	background-size: auto 1.5em;
}
.youtube a:hover {
	background-color: #c4302b; /* defines the background color of the image */
}
.instagram a {
	background: url(../img/grfx/logo_instagram.svg) no-repeat center;
	background-size: auto 1.5em;
}
.instagram a:hover {
  background-color: #C13584;
}

/* KEN BURNS */
.kenburns {
	overflow: hidden;
	display: inline-block;
}
.kenburns img {
	height: auto;
	width: 100%;
	object-fit: cover;
	transition:  ;
	transition-duration: .3s;
	transition-timing-function: ease-out;
	transform: scale(1.0);
	/*transform-origin: 50% 50%;*/
}
.kenburns img:hover {
	transform: scale(1.5);
	/*transform-origin: 0% 100%;*/
}
.kenburns_bottom img {
	transform-origin: 50% 100%;/**/
}
.kenburns_left_bottom img {
	transform-origin: 0% 100%;/**/
}
.kenburns_right img {
	transform-origin: 100% 50%;/**/
}
.kenburns_left img {
	transform-origin: 0% 50%;/**/
}
