@charset "utf-8";
/* copyright 2026 webQ GmbH */

* {
	margin: 0px;
	padding: 0px;
	outline: none;
	border: 0;
	box-sizing: border-box;
}
html, body {
	position: relative;
	scroll-behavior: smooth;
	scroll-padding: 100px 0 0 0;
	width: 100%;
}
body {
	font-family: "SN Pro", Verdana, Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	color: #fff;
	background-color: #362E78;
}
main{
	min-height: calc(100vh - 79px);
}
#wrapper{
	margin-bottom: 5.5rem;
}
p, a, small{
	font-family: "SN Pro", Verdana, Helvetica, Arial, sans-serif;
	font-weight: 500;
}
h1, h2, h3{
	font-family: "Lilita One", Verdana, Helvetica, Arial, sans-serif;
	font-size: 2.5rem;
	font-weight: 500;
	color: #fff;
	margin: 1rem 0 2rem 0;
	line-height: 110%;
}

/* Links */
a {
	text-decoration: none;
	color: #000;
	font-weight: 700;
}
/* rz 07.07.2026 */
#datenschutz a, #impressum a, #team a, #contact_form a {
	font-size: 20px;
	font-weight: 800;
	text-decoration: none;
	letter-spacing: 1px;
	background:linear-gradient(
		90deg,
		#22c55e,
		#06b6d4,
		#6366f1,
		#22c55e
	);
	background-size: 200% auto;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow{
	0%{background-position:0% center;}
	100%{background-position:200% center;}
}

.gradient-link:hover{
	background: linear-gradient(
		90deg,
		#4ade80,
		#22d3ee,
		#818cf8,
		#4ade80
	);

	background-size: 200% auto;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;

	animation: gradientFlowHover 2s linear infinite;
}

@keyframes gradientFlowHover{
	0%{background-position:0% center;}
	100%{background-position:200% center;}
}

.gradient-link:active{
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;

	animation: gradientRush .6s linear;
}

@keyframes gradientRush{
	0%{background-position:-200% center;}
	100%{background-position:200% center;}
}
/* // rz 07.07.2026 */


/* FARBEN */
.gradientPinkBlue{
	 background:linear-gradient(
        135deg,
        #E59EC5 20%,
        #3CBBCF 80%
    );
}
.gradientPinkYellow{
	 background:linear-gradient(
        135deg,
        #E59EC5 20%,
        #F3C339 80%
    );
}
.gradientBlueGreen{
	 background:linear-gradient(
        135deg,
        #3CBBCF 20%,
        #9DC149 80%
    );
}
.gradientTurquoiseGreen{
	 background:linear-gradient(
        135deg,
        #27B29F 20%,
        #9DC149 80%
    );
}
.gradientDarkBlueGreen{
	 background:linear-gradient(
        135deg,
        #274395 20%,
        #9DC149 80%
    );
}

/* GLITTER */
.glitterBg{
	position: absolute;
	z-index: -1;
	 -webkit-mask-image: url("/layout/glitterMask.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-image: url("/layout/glitterMask.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}


img{
	width: 100%;
	height: auto;
}
#impressum img{
	width: 200px;
	height: auto;
}
.sideImage{
	background-size: cover;
	background-position: center;
}

.hidden{
	display: none;
}
.distance-top{
	margin-top: 3rem;
}

/* LAYOUT */
.container{
	max-width: 1280px;
	padding: 1rem;
	margin: 0 auto;
}
.flexbox{
	display: flex;
}
.wrap{
	flex-wrap: wrap;
}
.alignBetween{
	justify-content: space-between;
}
.alignCenter{
	justify-content: center;
}
.col-100{
	width: 100%;
}
.col-80{
	width: 78%;
}
.col-70{
	width: 68%;
}
.col-50{
	width: 48%;
}
.col-33{
	width: 30%;
}
.col-30{
	width: 28%;
}
.col-25{
	width: 23%;
}
.col-20{
	width: 18%;
}
.relative{
	position: relative;
}

/* Buttons */
.scrollToTop{
	position: fixed;
  	z-index: 100;
  	bottom: 10px;
  	right: 10px;
  	width: 50px;
  	height: 50px;
  	padding: 1em;
	transition: all 0.5s ease 0s;
	font-size: 0;
	text-align: center;
  	text-decoration: none;
  	background: #274395 url(/layout/icon-up.svg) no-repeat center;
	background-size: 20px;
	border: solid 2px #fff;
	opacity: 0;
  	cursor: pointer;
	border-radius: 0.5rem;
}
.btnWrapper{
    position: relative;
    display: inline-block;
	margin: 2rem 0;
	cursor: pointer;
}
.btnBg{
    position: absolute;
	top: -5px;
    left: -8px;
    right: 8px;
    bottom: 2px;
	background:linear-gradient(
        135deg,
        #274395 20%,
        #9DC149 80%
    );
    border-radius: 0.5rem;
    transform: translate(8px,4px) rotate(-4deg);
	transition: transform .35s ease;
    box-shadow:
        0 6px 12px rgba(0,0,0,.08),
        0 14px 25px rgba(0,0,0,.12);
    z-index: 1;
}
.btnWrapper:hover .btnBg{
    transform: translate(10px,6px) rotate(-8deg);
}
.btn{
	font-family: "Lilita One", Verdana, Helvetica, Arial, sans-serif;
	font-size: 1.25rem;
	font-weight: 500;
	position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    background: #fff;
    color: #274395;
    border: 1px solid #274395;
    border-radius: 0.5rem;
    z-index: 2;
}
.btn::after{
    content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    right: -16px;
  	bottom: -12px;
    background:url('/layout/arrow.svg'),linear-gradient(
        90deg,
        #9DC149 20%,
        #27B29F 80%
    );
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px, cover;
    border-radius: 0.5rem;
	transition: transform .35s ease;
    z-index: 3;
}
.btnWrapper:hover .btn::after {
    transform: translateX(8px);
}
.extLink{
	background-image: url("/layout/ext-link.svg");
	background-repeat: no-repeat;
	background-position: 90% center;
  	background-size: 20px;
  	padding-right: 50px;
}
.extLink:hover, .extLink:active{
	background-image: url("/layout/ext-link_dark.svg");
	background-repeat: no-repeat;
	background-position: 90% center;
  	background-size: 20px;
}

.sideBySide{
	margin: 5rem 0;
}
.sideBySide ul{
	margin-left: 1rem;
}

.contentBox{
	background: #fff;
	border-radius: 1rem;
	padding: 2rem 3rem;
	color: #362E78;
	justify-content: space-between;
	align-items: flex-start;
	margin: 2rem 0;
}
.contentBox h3{
	color: #362E78;
	margin-bottom: 0.5rem;
}

.box{
	position: relative;
	padding-bottom: 150px;
	margin-bottom: 5rem;
	margin-top: 90px;
	border-radius: 1rem;
  	background: #fff;
  	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  	/*overflow: hidden;*/
}
.box-image{
	position: relative;
	height: 150px;
	width: 85%;
	border-radius: 1rem;
	overflow: hidden;
	margin-left: 7.5%;
	margin-top: -70px;
	z-index: 10;
}
.box-image-colorBox{
	position: absolute;
  	height: 160px;
  	width: 83%;
  	top: -75px;
  	left: 8%;
  	border-radius: 1rem;
  	transform: rotate(-10deg);
}
.box-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
}
.box-content{
	padding: 2rem 1.5rem 0 2rem;
	display: -webkit-box;
  	-webkit-box-orient: vertical;
  	-webkit-line-clamp: 9;
 	overflow: hidden;
	color: #362E78;
}
.box-content h3{
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
	color: #362E78;
}
.box-link{
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 1rem 2rem;
}
.box-link a.btn{
	width: 100%;
}

.box.blue{
	background: linear-gradient( 180deg, rgba(60,187,207,60%) 0%, #fff 30% );
}
.box.blue .box-image-colorBox{
	background: #3CBBCF;
}
.box.blue .btnBg{
	background: linear-gradient( 135deg, #3CBBCF 20%, #3CBBCF 80% );
} 
.box.blue .btn{
	border: 1px solid #3CBBCF;
}
.box.blue .btn::after{
	background: #3CBBCF url('/layout/arrow.svg') no-repeat center;
	background-size: 15px;
}

.box.green{
	background: linear-gradient( 180deg, rgba(157,193,73,60%) 0%, #fff 30% );
}
.box.green .box-image-colorBox{
	background: #9DC149;
}
.box.green .btnBg{
	background: linear-gradient( 135deg, #9DC149 20%, #9DC149 80% );
} 
.box.green .btn{
	border: 1px solid #9DC149;
}
.box.green .btn::after{
	background: #9DC149 url('/layout/arrow.svg') no-repeat center;
	background-size: 15px;
}

.box.purple{
	background: linear-gradient( 180deg, rgba(39,67,149,60%) 0%, #fff 30% );
}
.box.purple .box-image-colorBox{
	background: #274395;
}
.box.purple .btnBg{
	background: linear-gradient( 135deg, #274395 20%, #274395 80% );
} 
.box.purple .btn{
	border: 1px solid #274395;
}
.box.purple .btn::after{
	background: #274395 url('/layout/arrow.svg') no-repeat center;
	background-size: 15px;
}

.box.pink{
	background: linear-gradient( 180deg, rgba(229,158,197,60%) 0%, #fff 30% );
}
.box.pink .box-image-colorBox{
	background: #E59EC5;
}
.box.pink .btnBg{
	background: linear-gradient( 135deg, #E59EC5 20%, #E59EC5 80% );
} 
.box.pink .btn{
	border: 1px solid #E59EC5;
}
.box.pink .btn::after{
	background: #E59EC5 url('/layout/arrow.svg') no-repeat center;
	background-size: 15px;
}

.zitatBox{
    position: relative;
	width: 100%;
    padding: 1rem 1.5rem;
	margin: 2rem -1.5rem 4rem -1.5rem;
}
.zitatBox::before{
	max-width: 1280px;
    content: "";
    position: absolute;
	top: 1.5rem;
    left: calc(((100vw - 1280px)/2) + 2rem);
    right: 11px;
    bottom: 1rem;
    background: #27B29F;
    border-radius: 1rem;
    transform: rotate(2deg);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.zitatBoxInner{
    position: relative;
    background: #fff;
    border: 1px solid #27B29F;
    border-radius: 1rem;
    padding: 2rem 4rem;
}
.zitatBoxInner p, .zitatBoxInner h1{
	color: #362E78;
	font-family: "Lilita One", Verdana, Helvetica, Arial, sans-serif;
  	font-size: 2rem;
 	font-weight: 500;
  	line-height: 1.25;
	text-align: left;
}
.zitatBoxInner h1.zitatTitel{
	margin-bottom: 0.5rem;
}
.zitatBoxInner p.zitatInfo{
	color: #362E78;
	font-family: "SN Pro", Verdana, Helvetica, Arial, sans-serif;
  	font-weight: 500;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}
.zitatBoxInner p.zitatText{
	font-size: 1.5rem;
}
.zitatBox .glitterBg{
	width: 48%;
	height: 150%;
	top: -22%;
}
.zitatBox #glitter1{
	left: 0%;
	-webkit-mask-position: calc(((100vw - 1280px)/2) - 15%);
	mask-position: calc(((100vw - 1280px)/2) - 15%);
}
.zitatBox #glitter2{
	right: 0%;
	-webkit-mask-position: 80%;
	mask-position: 80%;
}

.teamBox {
	position: relative;
	margin-top: 90px;
	border-radius: 1rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	padding-bottom: 0;
	margin-bottom: 2rem;
	min-width: 300px;
}
.teamBox .box-image{
	height: 450px;
}
.teamBox .box-image-colorBox{
	height: 460px;
}
.teamBox .box-content{
	padding: 2rem 1.5rem;
}
.teamBox .box-content h2{
	color: #362E78;
	margin-bottom: 0.5rem;
}
.teamContent{
	margin-top: 100px;
	width: calc(100% - 330px - 3rem);
}
.teamContent ul{
	margin-left: 1rem;
}


.colorBoxWrapper{
	justify-content: flex-start;
	align-items: center;
	margin: 0 -1rem;
  	padding: 0 1rem;
}
.colorBox{
	position: relative;
	width: 40%;
	margin: 5rem 2rem 3rem 0;
}
.colorBox::before {
  	width: 97%;
	height: 110%;
  	content: "";
  	position: absolute;
  	top: -6px;
  	left: 27px;
  	border-radius: 1rem;
  	transform: rotate(2deg);
  	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	z-index: 0;
}
.colorBox.pink::before {
	background: linear-gradient( 90deg, #E59EC5 20%, #F3C339 80% );
}
.colorBox.green::before {
	background: linear-gradient( 90deg, #27B29F 20%, #9DC149 80% );
}
.colorBoxGlitter{
	position: absolute;
	z-index: -1;
	-webkit-mask-image: url("/layout/glitterMask.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: url("/layout/glitterMask.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	width: 115%;
	height: 100%;
	top: -35%;
	transform: rotate(14deg);
}
.pink .colorBoxGlitter{
	background: #E59EC5;
	left: -32%;
}
.green .colorBoxGlitter{
	background: #27B29F;
	right: -38%;
}
.colorBoxInner{
	position: relative;
	z-index: 5;
	background: #fff;
	border-radius: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 2rem;
	color: #362E78;
	text-align: center;
}
.colorBoxInner h3{
	color: #362E78;
	margin-bottom: 0.5rem;
}
.colorBoxNumber{
	width: 50px;
	height: 50px;
	font-family: "Lilita One", Verdana, Helvetica, Arial, sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: solid 2px #362E78;
	background: #fff;
}
.colorBoxContent.leftText p{
	text-align: left;
	font-family: "Lilita One", Verdana, Helvetica, Arial, sans-serif;
	font-size: 1.25rem;
	font-weight: 500;
	padding-left: 1.5rem;
}
.colorBoxPlus{
	width: 80px;
	height: 80px;
	background: #fff url("/layout/icon_plus.svg")no-repeat;
	background-position: center;
	background-size: 40px;
	border-radius: 50%;
	border: solid 2px #27B29F;
	position: relative;
	z-index: 10;
}
.colorBoxLink{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	z-index: 100;
}
.rowPlus{
	margin-left: -50px;
  	margin-right: -25px;
  	margin-top: 2rem;
}
.columnPlus{
	margin-left: calc(50% - 40px);
  	margin-top: -34px;
  	margin-bottom: -34px;
}

.contactImage{
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	height: 28%;
	margin-right: 4rem
}
.contactImage img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.contactBox{
	background: #fff;
	background-position: center;
	background-size: 40px;
  	padding: 1rem 2rem;
  	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  	border-radius: 0.5rem;
	margin: 2rem 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
}
.contactBox p, .contactBox a{
	color: #274395;
	font-size: 1.25rem;
}
.contactIcon{
	width: 50px;
	height: 50px;
	border-radius: 50px;
	margin-right: 2rem;
}
.contactPhone{
	background: url('/layout/icon_phone.svg'),linear-gradient( 90deg, #9DC149 20%, #27B29F 80% );
	background-repeat: no-repeat;
	background-size: 28px, cover;
	background-position: center;
}
.contactMail{
	background: url('/layout/icon_mail.svg'),linear-gradient( 90deg, #9DC149 20%, #27B29F 80% );
	background-repeat: no-repeat;
	background-size: 30px, cover;
	background-position: center;
}

#home-stuecke, #home-kontakt, #kontakt {
	background: transparent url("/layout/glitter_1.svg")no-repeat;
	background-size: 35%;
	background-position: top right;
}


#home-media{
	background: linear-gradient( 180deg, #27B29F 0%, #E59EC5 35%, #E59EC5 50%, #F3C339 80% );
	padding: 4rem 0;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
#home-media .footerGlitterL, #home-media .footerGlitterR{
	z-index: 1;
	opacity: 0.5;
}
#home-media .col-33.flexbox{
	flex-direction: column;
}
/*#home-media h3{
	margin: 0 0 1rem 0;
	text-align: center;
	color: #362E78;
}*/
#home-media .col-33{
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	padding: 1rem 1rem 1.5rem 1rem;
	position: relative;
	z-index: 9;
}
#home-media .col-33 a{
	position: absolute; 
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 10;
	top: 0;
	left: 0;
}
#home-media .col-33 .mediaImage{
	overflow: hidden;
	width: 100%;
	height: 200px;
	border-radius:  1rem;
	margin-bottom: 20px;
}
#home-media .col-33 .mediaImage img{
	object-fit: cover;
	object-position: center 30%;
	width: 100%;
	height: 100%;
}
.arrowBtn{
	position: absolute;
	width: 40px;
  	height: 40px;
	border-radius: 0.5rem;
	border: solid 2px #fff;
	right: 2rem;
	bottom: 1.25rem;
}
#home-media .col-33:first-of-type .arrowBtn{
	background: url('/layout/arrow.svg'),linear-gradient( 90deg, #9473B1 20%, #F3C339 80% );
	background-repeat: no-repeat;
	background-size: 15px, cover;
	background-position: center;
}
#home-media .col-33:nth-of-type(2) .arrowBtn{
	background: url('/layout/arrow.svg'),linear-gradient( 90deg, #27B29F 20%, #9DC149 80% );
	background-repeat: no-repeat;
	background-size: 15px, cover;
	background-position: center;
}
#home-media .col-33:last-of-type .arrowBtn{
	background: url('/layout/arrow.svg'),linear-gradient( 90deg, #E59EC5 20%, #3CBBCF 80% );
	background-repeat: no-repeat;
	background-size: 15px, cover;
	background-position: center;
}


/* Video */
.video{
	width: 100%;
	overflow: hidden;
	position: relative;
	padding-bottom: 56.15%;
  	padding-top: 0px;
	margin-bottom: 2rem;
	border-radius: 22px;
	box-shadow: 0px 3px 10px #959595;
	aspect-ratio: 16 / 9;
}
.video iframe{
	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	padding: 0px;
  	border: 0px;
}
.videoBox .btn{
	margin: -65px auto 3rem auto;
}

.noconsent{
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 2rem 0;
	padding: 2rem 1.5rem;
	border: solid 2px #000; 
	background: #fff;
	width: 100%;
}
.noconsent h2, .noconsent p{
	font-family: "Lilita One", Verdana, Helvetica, Arial, sans-serif;
	color: #000;
	font-size: 1.25rem;
	text-align: center;
}

.imageRow{
	height: 30%;
  	overflow: hidden;
  	margin-bottom: 1rem;
}
.imageBox{
	width: 30%;
  	height: 100%;
  	border-radius: 1rem;
  	overflow: hidden;
}
.imageBox img{
	object-fit: cover;
	height: 100%;
}

/* HEADER */
header {
	width: calc(100% - 0px);
  	height: 150px;
  	transition: all 0.3s ease-in-out;
  	position: fixed;
  	z-index: 9999;
    background-image: linear-gradient(to bottom, rgba(54, 46, 120, 1) 30%, rgba(54, 46, 120, 0) 100%);
}
header.scrolled{
	background-color: #362E78;
	margin: 0;
	/*margin-top: -20px;*/
	width: 100%;
	height: 85px;
	border-radius: 0;
}
header .container{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
header a{
	font-family: "Lilita One", Verdana, Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 1.5rem;
}
#header-logo{
	width: 300px;
	height: 135px;
	z-index: 9999;
	background-color: #fff;
	border-bottom-right-radius: 1rem;
	border-bottom-left-radius: 1rem;
	margin-top: -1rem;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#header-logo a{
  	color: #fff;
	font-size: 2.9rem;
	padding: 1.5rem;
  	height: 135px;
	display: flex;
	justify-content: center;
  	align-content: center;
  	align-items: center;
	transition: all 0.3s ease-in-out;
	width: 100%;
	white-space: nowrap;
}
header.scrolled #header-logo{
	width: 250px;
	height: 115px;
	transition: all 0.3s ease-in-out
}
header.scrolled #header-logo a{
	height: 115px;
}
#header-right ul li{
	display: inline;
}
#header-right{
	width: calc((100% - 450px)/ 2);
	padding: 0.5rem;
}
#header-right ul{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
#header-right ul li a{
	color: #fff;
}
#header-right ul li{
	margin: 0 1.5rem;
}
#header-right ul li:last-of-type{
	margin-right: 0;
}
#header-right ul li:first-of-type{
	margin-left: 0;
}

#header-right ul > li,
#nav.open ul > li
{
	position: relative;
    display: inline-block;
    padding-top: 18px;
}
#header-right ul > li.active::before,
#header-right ul > li:hover::before,
#nav.open ul > li.active::before{
	content: "";
	position: absolute;
    width: 40px;
    height: 16px;
    transform: translateX(-50%);
    background: url("/layout/nav-decoration.svg") no-repeat center center;
    background-size: contain;
}
#header-right ul > li.active::before,
#header-right ul > li:hover::before{
	top: 0;
    left: 50%;
}

#nav.open ul > li.active::before{
	top: 50%;
	left: 0;
}
#nav.open ul > li.active.has-sub::before{
	top: 2rem;
}
#header-right li.has-sub{
	position: relative;
	background-image: url('/layout/icon-down.svg');
  	background-repeat: no-repeat;
  	background-size: 15px;
  	background-position: right 72%;
  	padding-right: 20px;
}
#header-right li.has-sub ul{
	display: none;
	background-color: #362E78;
	position: absolute;
	width: 300px;
  	padding: 1rem;
  	top: 3rem;
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#header-right li.has-sub ul li a{
	font-size: 1.25rem;
}
#header-right li.has-sub:hover, 
#header-right li.has-sub.open{
	background-color: #362E78;
	background-image: url('/layout/icon-up.svg');
	background-repeat: no-repeat;
  	background-size: 15px;
  	background-position: right 72%;
  	padding-right: 20px;
}
#header-right li.has-sub.open ul{
	display: none;
}
#header-right li.has-sub:hover ul, 
#header-right li.has-sub.open ul{
	display: flex;
	flex-direction: column;	
}
#header-right li.has-sub:hover ul li,
#header-right li.has-sub.open ul li{
	margin: 0.5rem 0;
}
#header-right li.has-sub:hover ul li:not(:last-child),
#header-right li.has-sub.open ul li:not(:last-child){
	border-bottom: 1px solid #27B29F;
 	padding-bottom: 1rem;
}
#header-right li.has-sub:hover ul li a,
#header-right li.has-sub.open ul li a{
	font-weight: 400;
}

#mobile_button{
	position: relative;
	z-index: 9999;
  	width: 35px;
  	height: 35px;
  	overflow: hidden;
  	-webkit-transform: rotate(0deg);
  	-moz-transform: rotate(0deg);
  	-o-transform: rotate(0deg);
  	transform: rotate(0deg);
  	-webkit-transition: .5s ease-in-out;
  	-moz-transition: .5s ease-in-out;
  	-o-transition: .5s ease-in-out;
  	transition: .5s ease-in-out;
  	cursor: pointer;
}
#mobile_button span{
  	display: block;
  	position: absolute;
  	height: 3px;
  	width: 100%;
  	background-color: #fff;
  	opacity: 1;
	border-radius: 5px;
  	left: 0;
  	-webkit-transform: rotate(0deg);
  	-moz-transform: rotate(0deg);
  	-o-transform: rotate(0deg);
  	transform: rotate(0deg);
  	-webkit-transition: .25s ease-in-out;
  	-moz-transition: .25s ease-in-out;
  	-o-transition: .25s ease-in-out;
  	transition: .25s ease-in-out;
}
#mobile_button span:nth-child(1) {
  	top: 2px;
}
#mobile_button span:nth-child(2) {
  	top: 14px;
}
#mobile_button span:nth-child(3) {
  	top: 26px;
}
#mobile_button.open {
	border: 0px solid #27B29F;
	border-radius: 50%;
}
#mobile_button.open span{
	background-color: #27B29F;
}
#mobile_button.open span:nth-child(1) {
  	-webkit-transform: rotate(45deg);
  	-moz-transform: rotate(45deg);
  	-o-transform: rotate(45deg);
  	transform: rotate(45deg);
  	top: 16px;
}
#mobile_button.open span:nth-child(2) { 
  	width: 0%;
}
#mobile_button.open span:nth-child(3) {
  	-webkit-transform: rotate(-45deg);
  	-moz-transform: rotate(-45deg);
  	-o-transform: rotate(-45deg);
  	transform: rotate(-45deg);
  	top: 16px;
}
#mobile_button, #nav.closed {
	display: none;
}
#nav.open{
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	width: 50%;
	height: 100vh;
	z-index: 9990;
	background-color: #362E78;
	padding: 100px 2rem;
	overflow-y: scroll;
}
#nav.open ul{
	display: flex;
	flex-direction: column;
	list-style: none;
}
#nav.open ul li:not(:last-child){
	border-bottom: 1px solid #27B29F;
  	padding-bottom: 0.5rem;
  	margin-bottom: 0.5rem;
}
#nav.open ul li a{
	display: inline-block;
	color: #fff;
  	/*text-transform: uppercase;
  	font-weight: 700;*/
	margin: 0.5rem 0;
	padding-left: 1rem;
}
#nav.open ul li.has-sub>ul{
	margin-left: 2rem;
}
#nav.open ul li.has-sub>ul li a{
	font-weight: 400;
}

/* Header Image */
.headerImage{
	margin: 20px;
	height: 60vh;
	overflow: hidden;
	border-radius: 22px;
	background-size: cover;
	background-position: center 35%;
	background-repeat: no-repeat;
}
.banner, .headerImageSmall {
	height: 55vh;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}
.banner #fadeout, .headerImageSmall #fadeout{
	position: absolute;
  	bottom: -5px;
  	left: 0;
  	right: 0;
  	width: 100vw;
  	height: 90px;
    background-image: linear-gradient(to top, rgba(54, 46, 120, 1) 30%, rgba(54, 46, 120, 0) 100%);
}
.bannerGlitterL, .bannerGlitterR{
  	width: 25%;
	height: 70%;
  	z-index: 100;
  	position: absolute;
}
.bannerGlitterL{
  	top: 0%;
	left: 0;
	background: url("/layout/glitterFooterL.svg");
	background-repeat: no-repeat;
  	background-size: contain;
}
.bannerGlitterR{
  	top: 30%;
	right: 0;
	background: url("/layout/glitterFooterR.svg");
	background-repeat: no-repeat;
  	background-size: contain;
}

#konzeptStation, #konzeptTheater, konzeptOverview{
	overflow: hidden;
}

footer{
	width: 100%;
	background-color: #362E78;
	position: relative;
	border-top: #fff solid 2px;
	overflow: hidden;
}
footer .flexbox{
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: center;
}
footer p, footer a{
	color: #fff;
}
footer a{
	display: inline-block;
}
footer a:hover,footer a:active{
	color: #9DC149;
}
footer span{
	color: #fff;
	margin: 0 0.5rem;
}
footer h3{
	margin: 0.25rem 0;
	color: #fff;
}
footer h3, footer a{
	font-family: "Lilita One", Verdana, Helvetica, Arial, sans-serif;
  	font-weight: 500;
  	font-size: 1.25rem;
}

.footerTop{
	position: relative;
	overflow: hidden;
}
.footerTop, .footerBottom{
	position: relative;
	z-index: 10;
}
.footerLogo{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	padding-right: 1rem;
	height: 200px;
	flex-direction: column;
}
.footerLogo img{
	width: 250px;
	height: 115px;
	padding: 0 1rem;
}
.footerText{
	height: 200px;
	padding-top: 1rem;
}
.rainbowGradientL, .rainbowGradientR{
	width: 50%;
	height: 100%;
	position: absolute;
	bottom: 0	
}
.rainbowGradientL{
	background: linear-gradient( -260deg, #E59EC5 0%, #E9A99B 10%, #F3C339 20%, #96C152 30%, #3CBBCF 40%, #362E78 60% );
	left: 0;
}
.rainbowGradientR{
	background: linear-gradient( 260deg, #E59EC5 0%, #E9A99B 10%, #F3C339 20%, #96C152 30%, #3CBBCF 40%, #362E78 60% );
	right: 0;
}
.footerBottom{
	position: relative;
}
.footerBottom::before {
	  content: "";
	  position: absolute;
	  top: 0;
	  left: 50%;
	  transform: translateX(-50%); /* Zentriert die Linie exakt */
	  width: 80%;
	  border-top: 2px solid #fff; /* Farbe und Dicke des Borders */
	  border-radius: 1rem;
	}

.footerGlitterL, .footerGlitterR{
	position: absolute;
	bottom: 0;
	height: 100%;
	width: 25%;
	z-index: 5;
}
.footerGlitterL{
	left: 0;
}
.footerGlitterR{
	right: 0;
}
.social{
	width: 250px;
}
.footerLogo .social img{
	width: 80px;
	height: 80px;
}

.terminBox{
	background: #fff;
	border-radius: 1rem;
	padding: 1.5rem 2rem;
	margin: 1.5rem 0;
	width: 100%;
	color: #362E78;
	position: relative;
	z-index: 10;
}
.terminBox h2{
	color: #362E78;
}
.terminContentBox{
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	margin: 0 0 2rem 0;
	border: 1px solid #362E78;
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
}
.terminDatum{
	text-align: center;
	margin-right: 2rem;
}
.terminDatum h2{
	margin: 0.25rem 0;
	color: #362E78;
}
.terminText{
	border-left: solid 2px #362E78;
	padding-left: 2rem;
}
.terminText h3{
	margin: 0.25rem 0;
	color: #362E78;
}

.newsContentBox{
	padding: 1rem 1.5rem;
	border: 1px solid #362E78;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	margin-bottom: 1.5rem;
}
.newsContentBox h3{
	margin: 0.25rem 0;
	color: #362E78;
	font-size: 1.5rem;
}

@media (max-width: 1280px){
	#header-logo {
	  	margin-left: -1rem;
		border-bottom-left-radius: 0;
	}
	.zitatBox::before{
		left: 2rem;
	}
	.zitatBox{
		margin: 2rem 0 4rem 0;
	}
	.zitatBox .glitterBg{
		height: 100%;
	}
	.zitatBox #glitter1{
		left: -4%;
		top: -25%;
		-webkit-mask-position: 0%;
		mask-position: 0%;
	}
	.zitatBox #glitter2{
		top: 23%;
		-webkit-mask-position: 100%;
		mask-position: 100%;
	}
	.colorBox{
		width: 45%;
	}
	.colorBoxWrapper{
		overflow: hidden;
	}

}
@media (max-width: 1080px){
	#mobile_button{
		display: block;
	}
	#header-left, #header-right{
		display: none;
	}
	.footerGlitterL{
		left: -10%;
	}
	.footerGlitterR{
		right: -10%;
	}
}
@media (max-width: 960px){
	.headerImage{
		height: 40vh;
		max-height: 400px;
	}
	#home-stuecke .col-25{
		width: 48%;
	}
	#home-stuecke{
		background: transparent;
	}
	#home-media .col-33{
		width: 100%;
		margin-bottom: 2rem;
	}
	#home-media .col-33.flexbox{
		flex-direction: row;
		justify-content: space-between;
		align-content: center;
		align-items: center;
	}
	#home-media .col-33 .mediaImage{
		width: 48%;
	}
	.colorBoxWrapper{
		flex-direction: column;
		padding-bottom: 1.5rem;
	}
	.colorBox{
		width: 80%;
	}
	.rowPlus{
		margin: -3.5rem 0 -5.5rem 0;
	}
	.green .colorBoxGlitter{
		top: 43%;
		right: -43%;
	}
	.pink .colorBoxGlitter{
		left: -45%;
	}
	.contactImage{
		aspect-ratio: 1 / 1;
		border-radius: 50%;
		overflow: hidden;
		height: calc(50% - 4rem);
		width: calc(50% - 4rem);;
		margin-right: 4rem
	}
}
@media (max-width: 820px){
	.col-70, .col-50{
		width: 100%;
	}
	.col-33, .col-30, .col-25{
		width: 48%;
	}
	#nav.open{
		width: 100%;
	}
	#header-logo {
		width: 225px;
	}
	#header-logo, #header-logo a {
		height: 100px;
	}
	header{
		height: 85px;
	}
	header.scrolled{
		height: 60px;
	}
	header.scrolled #header-logo{
		width: 200px;
	}
	header.scrolled #header-logo, header.scrolled #header-logo a {
		height: 80px;
	}
	.decorative{
		display: none;
	}
	.zitatBox::before{
		transform: rotate(5deg);
	}
	.zitatBoxInner p{
		font-size: 1.75rem;
	}
	.zitatBox #glitter1{
		top: -35%;
	}
	.zitatBox #glitter2{
		top: 33%;
	}
	.contactImage{
		margin-right: 0;
		margin-left: calc(50% - (48% / 2));
		margin-bottom: 3rem;
	}
	.teamBox{
		order: 1;
	}
	.teamContent{
		order: 2;
		margin-top: 1rem;
		margin-bottom: 4rem;
	}
}
@media (max-width: 640px){
	h1, h2, h3{
		font-size: 2rem;
	}
	.colorBoxInner h3{
		font-size: 1.75rem;
	}
	.contentBox .col-20, .contentBox .col-80{
		width: 100%;
	}
	.contactImage{
		width: 80%;
		height: 80%;
		margin-left: calc(50% - (80% / 2));
	}
	#home-media .col-33.flexbox{
		flex-direction: column;
	}
	#home-media .col-33 .mediaImage{
		width: 90%;
	}
}
@media (max-width: 560px){
	#home-stuecke .col-25{
		width: 100%;
	}
}
@media (max-width: 520px){
	.zitatBox{
		padding: 1rem;
		margin: 1.5rem 0 3rem 0;		
	}
	.zitatBoxInner{
		padding: 2rem;
	}
	.zitatBoxInner p{
		font-size: 1.5rem;
	}
	.zitatBox #glitter1{
		top: -45%;
	}
	.zitatBox #glitter2{
		top: 43%;
	}
}
@media (max-width: 480px){
	.headerImage{
		height: 30vh;
		background-position: center 15%;
	}
	footer .flexbox{
		flex-direction: column;
	}
	footer span{
		display: none;
	}
	.footerLogo {
	  	justify-content: center;
		align-items: center;
		/*height: 140px;*/	
		padding: 0;
	}
	.footerLogo .social{
		flex-direction: row;
	}
	.footerText{
		text-align: center;
		margin-bottom: 1rem;
	}
	.footerGlitterL, .footerGlitterR{
		width: 50%;
	}
	.footerGlitterL{
		left: -32%;
	}
	.footerGlitterR{
		right: -32%;
	}
}