/* Courier Prime */
@font-face {
    font-family: "Courier Prime";
    src: url("fonts/CourierPrime-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Courier Prime";
    src: url("fonts/CourierPrime-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Courier Prime";
    src: url("fonts/CourierPrime-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Courier Prime";
    src: url("fonts/CourierPrime-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

/* Poppins */
@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}

/* Repeat similar @font-face blocks for other weights */
@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-ExtraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
}

/* Repeat similar @font-face blocks for each style/weight */
@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}


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

.courier-prime-regular {font-family: "Courier Prime", monospace;font-weight: 400;font-style: normal;}
.courier-prime-bold {font-family: "Courier Prime", monospace;font-weight: 700;font-style: normal;}
.courier-prime-regular-italic {font-family: "Courier Prime", monospace;font-weight: 400;font-style: italic;}
.courier-prime-bold-italic {font-family: "Courier Prime", monospace;font-weight: 700;font-style: italic;}

.poppins-thin {font-family: "Poppins", sans-serif;font-weight: 100;font-style: normal;} /* bis */ .poppins-black {font-family: "Poppins", sans-serif;font-weight: 900; font-style: normal;}
.poppins-thin-italic {font-family: "Poppins", sans-serif;font-weight: 100;font-style: italic;} /* bis */ .poppins-black-italic {font-family: "Poppins", sans-serif;font-weight: 900;font-style: italic;}

html {
  scroll-behavior: smooth;
}

/* Standard für alle Seiten */
body, html {
  height: 100%;
  margin: 0;
}

/* Spezifisch für die Homepage */
body:not(.normal-scroll) {
  overflow: hidden; /* Scrollen deaktivieren auf der Homepage */
}

/* Normales Scrollen auf anderen Seiten */
body.normal-scroll {
  overflow: auto; /* Normales Scrollen auf allen anderen Seiten */
}
body.overflowHiddenBody, .overflowHidden{
	overflow: hidden;
}


body {
  font-family: "Courier Prime", monospace;
  font-size: 19px;
  letter-spacing: 0.015em;
  font-weight: 400;
  line-height: 175%;
  font-style: normal;
	min-width: 360px;
	min-height: 667px;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	z-index: 20;
	-moz-box-shadow: 0px 0px 333px rgba(0,0,0,0.33);
	-webkit-box-shadow: 0px 0px 333px rgba(0,0,0,0.33);
	-o-box-shadow: 0px 0px 333px rgba(0,0,0,0.33);
	box-shadow: 0px 0px 333px rgba(0,0,0,0.33);
}

#Ebene_3 {
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

#counter {
  font-family: "Courier Prime", monospace;
  font-size: 19px;
  letter-spacing: 0.015em;
  font-weight: 400;
  line-height: 175%;
  font-style: normal;
	margin-bottom: 20px;
}
/* Loading Screen */










/* General styles for the header */
header {
position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 10px 20px;
  background-color: transparent;
  transition: background-color 0.15s ease;
  max-width: 86%;
  left: 50%;
  transform: translateX(-50%);
}

header .logo {
    float: left;
	margin-top: 15px;
	cursor: pointer;
}
header .logo svg {
    width: 105px !important;
}

header .logo img {
    width: 100px;
    height: auto;
    transition: fill 0.15s ease; /* Logo-Farbwechsel */
}

header .menu {
    float: right;
    display: flex;
    justify-content: space-between;
}

header .menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
	width: 100%;
	height: auto;
	min-height: 75px;
	align-items: center;
}

header .menu ul li {
    margin-left: 40px;
	width: auto;
	height: auto;
	min-height: 40px;
}



header .menu ul li a {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color:  #cccccc; /* Standard Textfarbe */
  text-decoration: none;
  position: relative; /* Damit das ::after-Element relativ zu dem Link positioniert wird */
  padding-bottom: 26px; /* Platz für den Unterstrich */
  transition: color 0.15s ease; /* Farbänderung */
}

header .menu ul li a::after {
  content: ''; /* Erzeugt das Pseudo-Element */
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0; /* Startbreite */
  height: 6px; /* Dicke des Unterstrichs */
  background-color: rgba(204,204,204,0.5); /* Farbe des Unterstrichs */
  transition: width 0.3s ease; /* Animiert die Breite */
}

header .menu ul li a:hover::after {
  width: 100%; /* Volle Breite bei Hover */
}

header .menu ul li.active-menue a::after {
  content: ''; /* Erzeugt das Pseudo-Element */
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%; /* Startbreite */
  height: 6px; /* Dicke des Unterstrichs */
  background-color: rgba(204,204,204,0.5); /* Farbe des Unterstrichs */
}






.logo svg path {
  transition: fill 0.3s ease-in-out; /* Schneller Übergang für das Logo */
}
/* Weißes Logo für weiße Sektionen */
.white-logo svg path {
  fill: #ffffff; /* Weißes Logo */
}
/* Schwarzes Logo für dunkle Sektionen (Standard) */
.black-logo svg path {
  fill: #000000; /* Schwarzes Logo */
}








/* Menü-Styling */
#main-menu {
    display: flex;
}

#burger-menu {
    display: none;
}

.burger-menu.active {
    display: block;
}

.menu.hidden {
    display: none;
}







/* Burger menu hidden on desktop */
#main-menu ul li {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.burger-menu {

	display: none;
  position: absolute;
  top: 30px;
  right: -7vw;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  cursor: pointer;
  width: 8vw;
}
.burger-skelett{
	width: 100%;
  height: auto;
  max-width: 38px;
  margin: 0 auto;
}

.burger-menu.active {
    transform: translateX(0);
}

.burger-menu span {
    display: block;
  width: 100%;
  height: 3px;
  margin: 7px auto;
    background-color: #ffffff;
    transition: background-color 0.15s ease; /* Dynamischer Farbwechsel */
}
.burger-menu span.shorty {
    width: 55%;
    margin-left: 0;
    transition: margin-left 0.3s ease; /* Füge eine Transition für margin-left hinzu */
}

.burger-menu:hover span.shorty {
    margin-left: 45%;
}

/* Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	
    background-color: #4a4b4c;
	background: radial-gradient(circle, #999, #4a4b4c);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9;
	overflow: hidden;
}

.overlay-menu ul {
    list-style: none;
    text-align: center;
}

.overlay-menu ul li {
    margin: 40px 0;
}

.overlay-menu ul li a {
color: #ffffff;
  font-size: 45px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 300;
	cursor: pointer;
}
.overlay-menu ul li a:hover {
color: #000000;

}
.overlay-menu ul li.active-menue a {
color: #000000;
}
.overlay-menu ul li.active-menue a:hover {
color: #000000;
}




/* Dynamischer Farbwechsel für Text und Logo */
.white-header header .menu ul li a {
    color: #ffffff; /* Weißer Text */
}

.black-header header .menu ul li a {
    color: #000000; /* Schwarzer Text */
}

.white-header .logo img {
    filter: invert(1); /* Weißes Logo */
}

.black-header .logo img {
    filter: invert(0); /* Schwarzes Logo */
}

.white-header .burger-menu span {
    background-color: #ffffff; /* Weißer Burger-Icon */
}

.black-header .burger-menu span {
    background-color: #000000; /* Schwarzer Burger-Icon */
}





/* Sektionenzähler */
.section-counter {
position: absolute;
  top: 50%;
  left: 3.5vw;
  transform: translate(-50%, -50%) rotate(90deg);
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  display: none;
  z-index: 1;
  width: auto;
  height: 7vw;
  line-height: normal;
  text-align: center;
  padding: 0;
  align-items: center;
}

.section-number {
font-family: "Courier Prime", monospace;
  font-size: 60px;
  font-weight: bolder;
  color: #cccccc;
  opacity: .33;
  letter-spacing: -0.09em;
}

/* Punktnavigation */
.nav-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* Vergrößert den Abstand */
    position: fixed;
    right: 0px;
    top: 50%;
    opacity: 0; /* Unsichtbar starten */
    transform: translateX(50px); /* Aus dem Sichtfeld */
    transition: opacity 0.5s, transform 0.5s; /* Transition für sanfte Einblendung */
    z-index: 1; /* Stell sicher, dass die Navigation sichtbar ist */
	width: 8vw;
}

.nav-dots ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Nav-Dots */
.nav-dot {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: #cccccc;
    border-radius: 50%;
    margin: 20px 0;
    opacity: 0;
    transform: translateX(50px);
    cursor: pointer;
    transition: opacity 0.5s, transform 0.5s; /* Hier sicherstellen, dass Transition für opacity und transform aktiviert ist */
}

.nav-dots.active .nav-dot {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s, transform 0.5s;
}

/* Aktiver Punkt */
.nav-dot.active {
    background-color: #4a4b4c;
}



/* Dynamische Farbschemata für die aktiven Punkte basierend auf der Sektion */
.white-mode .nav-dot.active {
    background-color: #ffffff;
}
.black-mode .nav-dot.active {
    background-color: #000000;
}

/* Sektion 1 Dot ausblenden */
.nav-dot.section-1 {
    display: none;
}





.aLinks{
color: #000000;
text-decoration: none;
}
.aLinks:hover{
text-decoration: underline;
}








h1, .classic-title {
	font-family: "Courier Prime", monospace;
  font-size: 23px;
  letter-spacing: 0.020em;
  font-weight: 500;
	  line-height: 130%;
	word-spacing: -5px;
}
.text-shadow{
	-moz-text-shadow: 3px 3px 10px rgba(0,0,0,0.55);
	-webkit-text-shadow: 3px 3px 10px rgba(0,0,0,0.55);
	-o-text-shadow: 3px 3px 10px rgba(0,0,0,0.55);
  	text-shadow: 3px 3px 10px rgba(0,0,0,0.55);
}
.small-title{
font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.4em;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
  word-spacing: 0;
}
.teaser-title{
font-family: "Courier Prime", monospace;
  font-size: 22px;
  letter-spacing: -0.020em;
  font-weight: 700;
  line-height: 120%;
  word-spacing: -3px;
}
.max-title {
font-family: "Courier Prime", monospace;
  font-size: 58px;
  letter-spacing: -0.025em;
  font-weight: 300;
  line-height: 120%;
  word-spacing: -15px;
}

.maximum-title {
font-family: "Courier Prime", monospace;
  font-size: 76px;
  letter-spacing: -0.035em;
  font-weight: 700;
  line-height: 110%;
  word-spacing: -15px;
}
.max-titleAnimated {
font-family: "Courier Prime", monospace;
  font-size: 58px;
  letter-spacing: -0.025em;
  font-weight: 300;
  line-height: 120%;
  word-spacing: -15px;
}

.middle-title{
font-family: "Courier Prime", monospace;
  font-size: 39px;
  letter-spacing: -0.025em;
  font-weight: 300;
  line-height: 120%;
  word-spacing: -10px;
}
.flyTeaser-title{
font-family: "Courier Prime", monospace;
  font-size: 31px;
  letter-spacing: -0.025em;
  font-weight: 300;
  line-height: 105%;
  word-spacing: -10px;
  width: 100%;
  display: block;
}
.kapitel-titel {
font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  font-weight: 600;
  line-height: 220%;
  font-style: normal;
  text-transform: uppercase;
	background: #4a4b4c;
  padding: 0 10px 0 15px;
  display: inline-block;
	margin-bottom: 30px;
	color: #ffffff;
}
.kapitel-titel-sub {
font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  font-weight: 600;
  line-height: 220%;
  font-style: normal;
  text-transform: uppercase;
	background: #4a4b4c;
  padding: 0 10px 0 15px;
  display: inline-block;
	margin-bottom: 30px;
	color: #ffffff;
}


.reader-title{
  font-family: "Courier Prime", monospace;
  font-size: 16px;
  letter-spacing: 0.025em;
  font-weight: 400;
  line-height: 180%;
  font-style: normal;
  opacity: 0.7;
  word-spacing: -5px;
}
.hochstell-title{
  font-family: "Courier Prime", monospace;
  font-size: 16px;
  letter-spacing: 0.025em;
  font-weight: 400;
  line-height: 180%;
  font-style: normal;
  opacity: 0.7;
  word-spacing: -5px;
	text-transform: uppercase;
	margin-bottom: 8px;
	display: block;
}

.kapitel-titel-sub,
.maximum-title,
.max-titleAnimated,
.pAnimation{
    opacity: 0; /* Unsichtbar beim Laden */
    transform: translateY(50px); /* Leicht verschoben für den Einblendeffekt */
}



.text-wrapper-300{
	width: 100%;
	height: auto;
	max-width: 300px;
}
.text-wrapper-350{
	width: 100%;
	height: auto;
	max-width: 350px;
}
.text-wrapper-400{
	width: 100%;
	height: auto;
	max-width: 400px;
}
.text-wrapper-450{
	width: 100%;
	height: auto;
	max-width: 450px;
}
.text-wrapper-550{
	width: 100%;
	height: auto;
	max-width: 550px;
}
.text-wrapper-600{
	width: 100%;
	height: auto;
	max-width: 600px;
}

.whitefont {
  color: #ffffff;
}
.lightgreyfont{
	color: #cccccc;
}
.greyfont {
  color: #4a4b4c;
}
.blackfont{
	color: #000000;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #ffffff;
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.flex-container-left{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.video4background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#video-wrapper3, #video-wrapper4, #video-wrapper5 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
}


.video-slice {
    width: 100%;
    height: 33.33%; /* Jedes Drittel nimmt ein Drittel der Höhe ein */
    overflow: hidden;
    position: relative;
}

.video-slice video {
    width: 100%;
    height: 300%; /* Vergrößert das Video, um die gesamte Höhe anzuzeigen */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Jeder Slice zeigt ein Drittel des Videos */
.slice-1 video {
    top: 0%; /* Oberes Drittel des Videos */
}

.slice-2 video {
   top: -100%; /* Mittleres Drittel des Videos */
}

.slice-3 video {
    top: -200%; /* Unteres Drittel des Videos */
}




/*Design Linien für animationen*/
.linien-wrapper{
	position: absolute;
	z-index: 1;
  	left: 0;
  	top: 0;
  	background: transparent;
  	width: 100%;
  	height: 100%;
	pointer-events: none; 
}
.linie {
  width: 1px;
  height: 0; /* Startet unsichtbar */
  background: rgba(204,204,204,0.22);
  position: absolute;
  top: 0;
  transform-origin: top; /* Wächst von oben nach unten */
}
.darkLine{
  background: rgba(0,0,0,0.09);	
}




.top-90px{
top: 90px;
}
.left-7pro{
left: 7%;
}
.left-14pro{
left: 14%;
}
.left-42pro{
left: 42%;
}

.right-7pro{
right: 8%;
}

.korrekt78px{
	margin-top: -78px;
}
.marginleft6prozent{
	margin-left: 6%;
}




.white-shadow{
	-moz-text-shadow: 3px 1px 0px rgb(255, 255, 255);
	-webkit-text-shadow: 3px 1px 0px rgb(255, 255, 255);
	-o-text-shadow: 3px 1px 0px rgb(255, 255, 255);
	text-shadow: 3px 1px 0px rgb(255, 255, 255);
}



.section {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none; /* Startet mit versteckten Sektionen */
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.content-holder {
  position: absolute;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}


.content-holder-gallery{
	width: 84%;
  max-width: 84%;
  margin-right: 8%;
  margin-left: 8%;
	display: flex;
align-items: center;
}

.content-top-holder{
	top: 78px;
}




.content1, .content2, .content3, .content4, .content5, .content6{
  opacity: 0; /* Startet unsichtbar */
  transition: opacity 1s ease, transform 1s ease;
}



.home-teaser {
  width: 70%;
  height: 270px;
  background-color: #4a4b4c;
  position: absolute;
  bottom: 0;
  left: 0;
display: flex;
	align-items: center;
  justify-content: space-around;
}

.home-teaser-left{	
	margin-left: 100px;
}
.home-teaser-right{	
	margin-right: 0px;
}
.starter-button{
	  font-family: "Poppins", sans-serif;
width: 22%;
  height: 270px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
font-size: 14px;
  letter-spacing: 0.025em;
  font-weight: 500;
	 font-style: normal;
}
.starter-button a{
	color: #4a4b4c;
	text-decoration: none;
}
.starter-button:hover a{
	color: #000000;
}

.left-to-right, .bottom-to-top {
  position: absolute;
}

.left-to-right {
  left: 0;

}

.bottom-to-top {
  bottom: 0;
}

.split-left, .split-right {
  position: absolute;
  width: 50%;
  background-color: #ffffff;
}

.split-left {
  top: 0;
  left: 0;
  height: 100%;
}

.split-right {
  bottom: 0;
  right: 0;
  height: 100%;
}

.nav {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 8%;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-button{
font-family: "Courier Prime", monospace;
  font-size: 17px;
  letter-spacing: 0.125em;
  font-weight: 300;
  line-height: 200%;
  font-style: normal;
  text-transform: uppercase;
  color: #ccc;
  text-decoration: none;
  word-spacing: -3px;
}
.more-button:hover{
	 font-weight: 700;
	color: #4a4b4c;
	text-decoration: none;
}


/* Standard SVG-Farbe (Schwarz für helle Hintergründe) */
#nav-button svg path {
  fill: #000000; /* Standardfarbe Schwarz */
  transition: fill 0.15s ease; /* Verzögere den Farbwechsel um 0.5 Sekunden */
}

/* Weißer Pfeil */
#nav-button.white-arrow svg path {
  fill: #ffffff !important; /* Weißer Pfeil */
}





#nav
/* Pfeil und Text für die mittleren Sektionen (großer Pfeil und Text "WEITER") */
#nav-button.enlarged {
  transform: translateX(-50%) scale(1.5); /* Pfeil wird vergrößert */
  transition: transform 0.3s ease; /* Sanfter Übergang bei der Vergrößerung */
  will-change: transform; /* Optimierung für Animationen */
}

#nav-button.enlarged::before {
  font-family: "Poppins", sans-serif;
  font-size: 8px;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-transform: uppercase;
  content: "WEITER";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  color: #000000; /* Standardfarbe Schwarz */
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

/* Klasse für weißen Text bei weißem Hintergrund */
#nav-button.enlarged.white-text::before {
  color: #ffffff; /* Weißer Text für "WEITER" */
}

/* Gedrehter Pfeil und Text "ZURÜCK" */
#nav-button.rotate-up  {
  transform: translateX(-50%) rotateX(180deg) scale(1.5); /* Pfeil wird gedreht und vergrößert */
  will-change: transform; /* Optimierung für Animationen */
}

/* Klasse für "ZURÜCK" */
#nav-button.rotate-up::before {
	font-family: "Poppins", sans-serif;
  font-size: 8px;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-transform: uppercase;
  content: "ZURÜCK";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  color: #000000;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

/* Weißer Text für "ZURÜCK" */
#nav-button.rotate-up.white-text::before {
  color: #ffffff;
}


/* Allgemeine Button-Styles */
button {
  font-size: 40px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  color: black;
  transition: transform 0.3s ease;
}

button:active {
  transform: scale(0.9); /* Kleiner Skalierungseffekt beim Klicken */
}


/*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*//*Subpages CSS*/

.sectionScroll {
  width: 100%;
  height: auto;
  position: relative;
}

.fullHeight{
	height: auto;
}
.height100{
	min-height: 100vh;
}
.height80{
	min-height: 80vh;
}
.halfHeight{
	min-height: 50vh;
}


/* Standardmäßig schwarzes Menü und Logo */
.black-mode header .logo svg path {
    fill: #000000;
}

.black-mode header .menu ul li a {
    color: #000000;
}

.black-mode .burger-menu span {
    background-color: #000000;
}

/* Weißes Menü und Logo für Sektionen mit weißem Hintergrund */
.white-mode header .logo svg path {
    fill: #ffffff;
}

.white-mode header .menu ul li a {
    color: #ffffff;
}

.white-mode .burger-menu span {
    background-color: #ffffff;
}
/* ende */

.wrappedVideo{
max-width: 100% !important;
  object-fit: cover;
  object-position: center;
}
.content-wrapper {
  width: 100%;
  height: 100%;
  max-width: 84%;
  position: absolute;
  margin-left: 8%;
  margin-right: 8%;
	z-index: 1;
}
.content-tightWrapper{
width: 100%;
  height: 100%;
  max-width: 50%;
  position: relative;
  margin-left: 25%;
  margin-right: 25%;
  z-index: 1;
}


.innerWrapper{
	width: 100%;
	height: auto;
	max-width: 1160px;
	margin: 0 auto;
}


.content-wrapper-relative{
  width: 100%;
  height: 100%;
  max-width: 84%;
  position: relative;
  margin-left: 8%;
  margin-right: 8%;
	z-index: 1;
}
.video-wrapperWrapper{
width: 100%;
  height: auto;
  max-width: 79%;
  margin-left: 21%;
  max-height: 80vh;
  overflow: hidden;
  margin-top: 79px;
}
.video-wrapperContact{
width: 100%;
  height: 65vh;
  overflow: hidden;
  margin-top: 79px;
  max-width: 84%;
  margin-left: 8%;
  margin-right: 8%;
}

.video4background.videoKorrekt{
	margin-top: -20%;
}



.flyTeaser {
  background-color: #000000;
  width: 79%;
  height: 100%;
  max-width: 100%;
  padding: 70px 100px;
  position: absolute;
  z-index: 1;
  margin-left: 21%;
  margin-top: 0;
  bottom: 0px; /* Startzustand: FlyTeaser deckt das Video vollständig ab */
  opacity: 1;
	min-width: 900px;
	min-height: 341px;
}

.flyTeaser h2, .flyTeaser p {
  opacity: 0; /* Startet versteckt */
}






.flyRichter{
	display: flex; align-content: center; justify-content: center;
  align-items: center;
 
}

.flyTeaserKontakt {
  background-color: #cccccc; /* Startet mit dunkler Farbe */
  width: 100%;
  max-width: 84%; /* Startet mit voller Breite */
  height: 150vh;
  padding: 30px;
  position: relative; /* Innerhalb des flex-zentrierten Wrappers */
  margin: 0;
margin-top: -50%;
  text-align: center;
  z-index: 5;
  opacity: 1;
  transform-origin: top center; /* Schrumpfen von der Mitte */
}

.flyTeaserKontakt h2, .flyTeaserKontakt p, .flyTeaserKontakt span {
  opacity: 0; /* Startet unsichtbar */
  transform: translateY(20px); /* Startet leicht verschoben */
}








.backgroundStyle01{
	background-image: url("video/blueprints002.jpg");
  background-size: 33.333%;
  background-repeat: no-repeat;
  background-position: right center;
  background-blend-mode: overlay;
  background-color: rgba(255,255,255,0.75);
  background-attachment: fixed;
}
.seperator{
	width: 100%;
	height: 140px;
}
.seperatorMid{
	width: 100%;
	height: 70px;
}
.seperatorMidsmall{
	width: 100%;
	height: 35px;
}
.seperatorSmall{
	width: 100%;
	height: 10px;
}


.centerer{
	text-align: center;
	margin: 0 auto;
}


.fourthSM{
	width: 25%;
	height: auto;
	float: left;
}
.oneThirdSM{
	width: 33.333%;
	height: auto;
	float: left;
}
.fourtySM{
	width: 40%;
	height: auto;
	float: left;	
}
.halfSM{
	width: 50%;
	height: auto;
	float: left;
}
.sixtySM{
	width: 60%;
	height: auto;
	float: left;
}
.twoThirdSM{
	width: 66.666%;
	height: auto;
	float: left;
}



.clearer{
	clear: both;
}
.skeletton{
	width: auto;
	height: auto;
	padding: 0 30px;
}
.iconsProjekte{
	width: 100%;
	height: auto;
	max-width: 50px;
	margin-bottom: 20px;
}
.leistungenWrapper{
	width: 100%;
	height: auto;
	max-width: 1600px;
	margin: 0 auto;
}






.flyInBarSection {
    background-color: #4a4b4c;
    width: 300px;
    height: 300px;
    position: absolute;
    bottom: 45vh;
    right: 5vw;
    overflow: hidden;  /* Inhalte bleiben unsichtbar */
    transition: width 1s ease, height 1s ease, right 1s ease, bottom 1s ease;
    z-index: 1;
}

.flyInBarSection.expanded {
    width: 100%; /* Maximale Breite nach der Expansion */
    height: auto; /* Automatische Höhe */
    max-height: 100vh; /* Begrenzte maximale Höhe */
    position: relative;  /* Ändert die Position zu relativ */
    right: auto;  /* Zurück auf Standardposition */
    top: 0;
    transition: all 1s ease;
}

.barSectionWrapper {
    opacity: 0;  /* Inhalte unsichtbar */
    transition: opacity 0.5s ease;
}

.barSectionWrapper.visible {
    opacity: 1;  /* Inhalte sichtbar */
}





.video-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 40px;
}

.video-list li {
  margin-bottom: 10px;
  cursor: pointer;
  color: #cccccc; /* Default color */
  position: relative;
  transition: color 0.3s ease;
}

.video-list li::after {
  content: '';
  position: absolute;
  bottom: 50%;
  left: -18%;
  width: 0;
  height: 4px;
  background-color: #000000;
  transition: width 0.3s ease;
}

.video-list li:hover {
  color: #000000;
}

.video-list li:hover::after {
  width: 15%;
}

/* Active state */
.video-list li.active {
  color: #000000;
}

.video-list li.active::after {
  width: 15%;
}

.video-container video {
  width: 100%;
  height: auto;
  display: none;
}

.video-container video:first-child {
  display: block;
}

.centerWrapper {
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: 666px;
}






.fill-button {
	  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.125em;
  text-transform: uppercase;
	
  position: relative;
  padding: 22px 50px;
  font-size: 11px;
  color: #cccccc; /* Text color */
  background-color: #fff; /* Default background */
  border: 2px solid #cccccc;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease; /* Smooth text color transition */
  z-index: 1; /* Ensure button itself is above other elements */
}

.fill-button::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333; /* Hover background color */
  transition: top 0.3s ease; /* Animate from bottom to top */
  z-index: -1; /* Place the background behind the text */
}

.fill-button:hover::before {
  top: 0; /* Move from top 100% to 0 on hover */
}

.fill-button:hover {
  color: #fff; /* Change text color on hover */
	  border: 2px solid #333333;
}

.fill-button span {
  position: relative;
  z-index: 1; /* Ensure text stays above the background */
  transition: color 0.3s ease;
}






footer.aZFooter{
width: 100%;
	height: auto;
	background-color: #000000;
	color: #ffffff;
}

.logoImage{
	width: 100%;
	height: auto;
}
.footerLogo {
  width: 100%;
	max-width: 120px;
}



ul.footerMenue{
 font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  font-size: 10px;
	list-style-type: none;
	display: inline-block;
	float: right;
}
ul.footerMenue li{
display: block;
  float: left;
  margin-left: 80px;
  margin-top: 40px;
	
}
ul.footerMenue li a{
text-decoration: none;
		color: #ffffff;
}
ul.footerMenue li a:hover{
text-decoration: none;
		color: #cccccc;
}
.theBorder{
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,0.11);
	margin-top: 40px;
	margin-bottom: 80px;
}
.footerFont{
font-family: "Poppins", sans-serif;
  font-weight: 100;
  letter-spacing: 0.125em;
  font-size: 11px;
  line-height: 24px !important;
}
.footerFont a{
color: #ffffff;
	text-decoration: none;
	cursor: pointer;
}
.textalignRight{
	text-align: right;
}


.pushLeft{
		margin-left: 30px;
}
.headerHeber{
	width: 100%;
	height: auto;
	min-height: 120px;
}


.leftPushText{
	width: auto;
	height: auto;
	margin-left: 30%;
}

.seperatorAnniLine {
    width: 100%;
    height: 10vh;
	margin: 20px 0;
}
.seperatorMiddle {
    width: 50%;
    height: 0; /* Startet mit Höhe 0 */
    border-right: 1px solid #cccccc;
    display: none; /* Unsichtbar bis zur Animation */
	opacity: 0.66;
}


.displayContents{
display: contents;
pointer-events: none;
}
.designnumberLeft, .designnumberRight {
  opacity: 0; /* Unsichtbar von Anfang an */
  font-family: "Courier Prime", monospace;
  font-size: 450px;
  letter-spacing: -0.125em;
  font-weight: 700;
  line-height: 200%;
  font-style: normal;
  text-transform: uppercase;
  color: #ccc;
  text-decoration: none;
  word-spacing: unset;
  position: absolute;
  top: -280px;
  transform: rotate(90deg) translateY(0%);
}

.designnumberLeft {
  left: 0vw;
  transform: rotate(90deg) translateY(0%);
}

.designnumberRight {
  right: 0vw;
  transform: rotate(270deg) translateY(0%);
}






/*GALLERIE*/









.sidebar-menu {
position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 7vw;
  color: #cccccc;
  padding: 0;
  z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sidebar-menu ul {
    list-style-type: none;
  padding: 0;
  width: 100%;
  text-align: center;
}

.sidebar-menu .menu-item {
    cursor: pointer;
    transition: color 0.3s;
	  border-right: 2px solid transparent;
}
.sidebar-menu .menu-item.menueHot {
    transition: color 0.3s;
	  border-right: 2px solid #000000;
}
.menu-item{
	font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
  word-spacing: 0;
	padding: 5px 0px;
}
.menueHot{
	color: #000000;
	  font-weight: 600;
}


.projektImage {
width: 100%;
  height: auto;
}

.text-aligner-right{
	display: flex;
  justify-content: end;
}

.paddingbox{
	padding-left: 18%;
	padding-right: 13%;
}







/* Grundlegende Galerie Styles */
.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
	max-width: 80%;
}

.gallery-slider {
  display: flex;
  transition: transform 0.3s ease;
	min-height: 80vh;
	max-height: 80vh;
}

.gallery-item {
  cursor: pointer;
	background: #000000;
	width: auto;
  height: 80vh;
	
}

.fullscreen-slider video.gallery-item {

  width: auto;
  height: auto;
}

.steuerBox{
width: auto;
  height: auto;
  padding: 0px 20px 10px 20px;
  background: #000000;
  position: absolute;
  top: 29px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.middleLine{
color: #cccccc;
  font-family: inherit;
  font-size: 18px;
  margin-top: 13px;
  padding: 0 10px;
}

/* Fullscreen-Navigation */
.fullscreen-overlay .nav-left, .fullscreen-overlay .nav-right {
  cursor: pointer;
	position: absolute;
	background: #000000;
}

.fullscreen-overlay .nav-left {
left: 20px;
	padding: 5px 20px 5px 10px;

}
.fullscreen-overlay .nav-right {
right: 20px;
	padding: 5px 10px 5px 20px;

}



.fullscreen-icon {
position: absolute;
  top: 25px;
  right: 25px;
  font-size: 24px;
  cursor: pointer;
}

.nav-left, .nav-right, .fullscreen-icon {
  /* Position and style navigation and fullscreen buttons here */
}

.fullscreen-overlay {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cccccc;
  justify-content: center;
  align-items: center;
  z-index: 999;
	  overflow: hidden;
}

#fullscreenOverlay .nav-left {
  left: 0px !important;
  position: absolute;
  background: #000;
  padding: 15px 25px 15px 15px;
  border-radius: 0 5px 5px 0;
}

#fullscreenOverlay .nav-right {
  right: 0px !important;
  position: absolute;
  background: #000;
  padding: 15px 15px 15px 25px;
  border-radius: 5px 0px 0px 5px;
}

.fullscreen-slider {
  display: flex;
  width: 100%;
  height: auto;
  max-width: 45%;
	justify-content: center;
}


.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  cursor: pointer;
  /* Style the close button */
}

.fullscreen-overlay .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* Dots Container und Dot Style */
.dots-container {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: #000;
  width: auto;
  padding: 8px 11px;
  border-radius: 0;
}

.dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  opacity: 0.5;
}

.dot.active {
  background: #333;
  opacity: 1;
}



.lineFull{
	height: 100%;
}

.kategorienBox{
width: 100%;
  height: auto;
  max-width: 50%;
  background: #4a4b4c;
  padding: 20px 30px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  min-height: 20vh;
  left: 7%;
  display: flex;
  align-items: center;
  justify-content: center;
	min-width: 750px;
}
.katBox{
	float: left;
  padding: 0px 50px;
	line-height: 125%;
	
}
.katBox02{
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
}
.katBox01, .katBox02, .katBox03{
	

}




.wischBlatt{
position: absolute;
  background: #fff;
  width: 100%;
  height: 200px;
  transform: translateY(0);
  z-index: 10;
  bottom: -26%;/* auf bott0m: 115% und jeweils zurück*/
}


.burger-menu.translateXNull{
	transform: translateX(0%);
	top: 25px;
}
.myBR{
	display: block;
	position: relative;
	width: 100%;
	height: 40px;
}
.myBRsmall{
		display: block;
	position: relative;
	width: 100%;
	height: 20px;
}

.highLighter{
	background-color: #efefef;
	font-weight: 300;
}
.highLighter:hover{
	background-color: #ffffff;
		font-weight: 700;
}

/* Versteckt die Steuerleiste bei Videos */
video::-webkit-media-controls {
    display: none !important;
}

/* Zusätzliche Sicherheit für andere Browser */
video::-moz-media-controls {
    display: none !important;
}

video::-ms-media-controls {
    display: none !important;
}

video::-o-media-controls {
    display: none !important;
}

/* Stell sicher, dass das Video keine User-Interaktionen erhält */
video {
    pointer-events: auto; /* Verhindert Klicks, um das Video nicht in Vollbildmodus zu bringen */
}
/*GALLERIE*/

.text-Wrapper80{
	display: block;
	width: 100%;
	height: auto;
	max-width: 80%;
	margin: 0 auto;
}




/*KONTAKT*/


.kontaktFormular{
	width: 100%;
	height: auto;
	    opacity: 0; /* Startet unsichtbar */

}
.formularBlatt{
	background-color: #efefef;
	width: 100%;
	height: auto;
	max-width: 60%;
	margin: 0 auto;
}
.inputFonts{
font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  position: relative;
  font-size: 14px;
  color: #4a4b4c;
	
}
.cursorPointer{
		cursor: pointer;
}

.formerWrapper{
width: auto;
  height: auto;
  max-width: 80%;
  margin: 0 auto;
  padding: 8% 0;
}




.cInput{
width: 49%;
  height: auto;
  padding: 35px 30px;
  margin-bottom: 15px;
}
.cInputArea {
  width: 98%;
  height: auto;
  padding: 35px 30px;
  margin-bottom: 15px;

  min-height: 24vh;
}
.radioList {
height: 70px;
  display: flex;
  align-items: center;


}
.middleList{
	border-top: 1px solid #4a4b4c;
	border-bottom: 1px solid #4a4b4c;
}
.radioList input {
width: 30px;
height: 30px;
margin-right: 30px;
accent-color: #000000; /* Farbe ändern */
		cursor: pointer;

}



.formButton, .file-upload-label {
    width: auto;
    padding: 20px 40px;
    background-color: #4a4b4c;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    letter-spacing: 0.095em;
    font-size: 12px;
    min-width: 280px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    position: relative;
}
.formButton{
	 padding: 28px 40px;
	background-color: #000000;
}

.formButton:hover, .file-upload-label:hover {
    background-color: #cccccc;
}

.svgWrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.svgWrapper svg {
    width: 18px;
    height: 18px;
}


.statusMessage {
padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 42%;
  transform: translate(-50%,-50%);
  z-index: 10;
}
.success {
    background-color: #4a4b4c;
    color: #000000;
}
.error {
    background-color: #000000;
    color: #ffffff;
}











#google-map{
	height: 60vh;
	min-height: 800px
}
	
.map-container {
   position: relative;
  width: 84%;
  height: 60vh;
  background: #ccc;
  margin: 0 auto;
	min-height: 800px
}
.mapOK{
position: absolute;
  right: 30px;
  top: 25px;
  width: 100%;
  height: auto;
  max-width: 400px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-size: 14px;
  color: #4a4b4c;
  line-height: 150%;
  text-align: right;
}
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #cccccc;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.accept-map-btn {
   width: auto;
    padding: 20px 40px;
    background-color: #4a4b4c;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    letter-spacing: 0.095em;
    font-size: 12px;
    min-width: 280px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    position: relative;
}

.accept-map-btn:hover {
    background-color: #000000;
}

.columne{
position: absolute;
  height: auto;
  width: 100%;
  max-width: 450px;
  background: #4a4b4c;
  z-index: 2;
  margin-left: 100px;
  margin-top: -70px;
font-family: "Courier Prime", monospace;
  font-size: 16px;
  letter-spacing: 0.025em;
  font-weight: 400;
  line-height: 180%;
  font-style: normal;
  word-spacing: -5px;
	color: #ffffff;
}
.columneSkeletton {
  width: auto;
  height: auto;
  padding: 50px 70px;
}
.oberTeil{
	width: auto;
  height: auto;
  padding: 50px 70px;
  background: #444444;
}
.linea{
width: 100%;
  height: 1px;
  background: #ffffff;
  opacity: 0.5;
  margin: 45px 0;
}

/*KONTAKT*/


/*
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 85%;
    background-color: rgba(0,0,0,0.95);
    color: #ffffff;
    text-align: center;
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.5s ease-out;
  margin-left: 7%;
  margin-right: 8%;
}

.privacy-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.banner-content, .privacy-btn {
    opacity: 0;
    transition: opacity 0.5s ease-out;
	font-size: 13px;
}

.privacy-banner.visible .banner-content,
.privacy-banner.visible .privacy-btn {
    opacity: 1;
}

.privacy-btn {
    background-color: #0056b3;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    font-size: 14px;
}

.privacy-btn:hover {
    background-color: #003c82;
}
*/




.toggle-container {
    width: 100%;
    max-width: auto;
    margin: 0 auto;
	background: #eeeeee;
    border-radius: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
	margin-bottom: 30px;
}

.toggle-header {
    background-color: #ffffff;
    padding: 0;
    text-decoration: underline;
    font-weight: 700;
    text-align: left;
}

.toggle-content {
    padding: 20px;
    display: none; /* Startet versteckt */
	font-size: 13px;
    background-color: #eeeeee;
}

.sehenundmachen{
	font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-size: 11px;
  color: #4a4b4c;
  line-height: 150%;
}
.alignerRight{

  text-align: right;
}


#file-name-display{
font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-size: 11px;
  color: #4a4b4c;
  line-height: 150%;
  width: auto;
  display: inline-block;
}


#datenschutz{
	width: 25px;
  height: 25px;
  position: absolute;
  margin-top: 4px;
}
.verschieber{
margin-left: 34px;
  font-family: "Courier Prime", monospace;
  font-size: 16px;
  letter-spacing: 0.025em;
  font-weight: 700;
  line-height: 180%;
  font-style: normal;
  word-spacing: -5px;
  color: #4a4b4c;
}



#map-container {
    opacity: 0; /* Startet unsichtbar */
    transform: translateY(20px); /* Leichte Verschiebung nach unten für animiertes Einfliegen */
    transition: opacity 0.4s ease, transform 0.4s ease; /* Übergang für die Animation */
  
}

/* Optional: Sobald der map-container sichtbar ist */
#map-container.visible {
    opacity: 1;
    transform: translateY(0); /* Setzt die Verschiebung zurück */
}




/* Show menu on mobile */
@media only screen and (max-width: 1160px) {

    #main-menu {
        display: none !important; /* Verstecke das normale Menü immer auf mobilen Geräten */
    }

    .burger-menu {
        display: block !important; /* Zeige das Burger-Menü auf mobilen Geräten */
    }

body {
  font-size: 14px;
  line-height: 145%;
}

.linien-wrapper {
  display: none;
}
	.left-to-right {
  left: 0;
}
.text-wrapper-450, .text-wrapper-350, .text-wrapper-550, .text-wrapper-600 {
  max-width: auto;
}	
  .home-teaser {
    width: 100%;
    height: auto;
    display: block;
    margin-left: 0;
    bottom: 0;
    padding: 30px 0 60px 0;
}
.starter-button {
        width: 100%;
        height: auto;
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 10px 0;
	z-index: 2;
}

.home-teaser-left {
margin-left: 0;
	}
.burger-menu {
right: 20px;
	top: 20px;
}
	

.content1{
margin-bottom: 10px;
padding: 0 30px;
}
	
.home-teaser-right {
  padding: 0 30px;
}
.content-holder {
  width: 90%;
  max-width: auto;
	margin-top: 10%;
	margin-right: 15px;
}
	
.max-title, .maximum-title, .max-titleAnimated {
  font-size: 30px;
		line-height: 110%;
	word-spacing: -5px;
}
	.middle-title {
  font-size: 23px;
		line-height: 110%;
		word-spacing: -5px;
	}
	
.kapitel-titel, .kapitel-titel-sub {
  font-size: 10px;
  margin-bottom: 10px;
}
	
header {
  width: 100%;
  padding: 5px 20px 8px 20px;
  max-width: 100%;
}	
	
	
	
    .section-counter {
        transform: translate(0%, 0%) rotate(270deg);
        z-index: 1;
        width: auto;
        height: auto;
        top: 25%;
        left: auto;
        right: -9px;
        position: absolute;
	}
.section-number {
        font-family: "Courier Prime", monospace;
        font-size: 18px;
        font-weight: 300;
        color: #cccccc;
        opacity: .4;
        letter-spacing: -0.09em;
    }
  .more-button {
    font-size: 13px;
  }


	.nav-dot {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #cccccc;
  border-radius: 50%;
  margin: 12px 0;
	}
	
	#nav-button svg {
  transform: scale(0.5); /* Pfeil wird vergrößert */
}
	
#nav-button.rotate-up::before,
	#nav-button.enlarged::before {
  content: "";
  top: auto;
  left: auto;
	}
	
	.nav {
position: fixed;
    bottom: 0px;
    right: 47%;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
	
.marginleft6prozent {
  margin-left: auto;
}
	
	.korrekt78px {
  margin-top: unset;
}
.video-wrapperWrapper {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-left: auto;
  max-height: fit-content;
  overflow: hidden;
  margin-top: 0;
}	
	.flyTeaser {
  background-color: #000000;

  max-width: 100% !important;
  width: 100% !important;
  padding: 30px;
  position: relative;
  z-index: 1;
  transform: translateX(-21%);
  min-width: auto;
  min-height: auto;
}
	
	
	
	

	
	
	
	.mobileHeightCorrect{
		height: 47%;
	}
	.mobileHeightCorrectVH{
		height: 60vh;
	}
	
.fullHeight {
  height: auto;
}
.height100{
	min-height: auto;
}
	
	.height80{
	min-height: auto;
}
	
	.backgroundStyle01 {
  background-size: 100%;
  background-position: center;
		  background-color: rgba(255,255,255,0.90);
}
	
	
	.fourthSM, .halfSM {
  width: 100%;
  float: none;
  margin-bottom: 40px;
}
	.oneThirdSM, .twoThirdSM, .fourtySM, .sixtySM {
  width: 100%;
  height: auto;
  float: none;
	}
	
	.skeletton {

  padding: 0;
}
	.video-list > .max-title{
		font-size: 23px;
    line-height: 100%;
	}
	
	
.video-list li.active::after {
  width: 100%;

}
	.video-list li::after {
  content: '';
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.3s ease;
	}
	
	
	.flyTeaser-title {
  font-family: "Courier Prime", monospace;
  font-size: 20px;
  letter-spacing: -0.04em;
  font-weight: 300;
  line-height: 105%;
  word-spacing: -3px;
  width: 90%;
  display: block;
}
	.teaser-title {
  font-size: 20px;
	}
	
	.laterCenterer{
		text-align: center;
		margin: 0 auto;
	}
	
	.seperator {
  width: 100%;
  height: 70px;
}
	ul.footerMenue {
  float: none;
  text-align: center;
  width: 100%;
  margin-top: 40px;
}
	
ul.footerMenue li {
  display: block;
  float: none;
  margin-left: auto;
  margin-top: 15px;
  margin-bottom: 15px;
}

.textalignRight {
  text-align: center;
}	
	

.overlay-menu ul li {
  margin: 25px 0;
}
.overlay-menu ul li a {
  color: #ffffff;
  font-size: 30px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 300;
}	
	
    .laterScrollers {
height: auto;
    overflow: hidden;
    overflow-y: hidden;
    overflow-y: auto;
    padding: 0 5px 0px 0;
    width: auto;
    margin-right: 10px;
    max-height: 50vh;
    }
.home-teaser {

  background-color: transparent;
	}

	.pushLeft {
  margin-left: 0px;
}
	
.headerHeber{
	min-height: 100px;
}	

	
.content-tightWrapper{
  max-width: 84%;
  margin-left: 8%;
  margin-right: 8%;
}	
.mobileOut{
	display: none;
}
	
	
.designnumberLeft  {
  font-size: 250px;
  top: 0px;
  transform: rotate(90deg) translateY(0%);
}
.designnumberRight{
  font-size: 250px;
  top: 0px;
  transform: rotate(270deg) translateY(0%);		
}

	
	
	
.content-holder-gallery {
  width: 100% !important;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: block;
    align-items: unset;
    top: 0;
    margin-top: 0;
}

	
  .paddingbox {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 80%;
    margin: 0 10%;
    margin-top: 0px;
  
    margin-top: 0px;
    position: absolute !important;
    bottom: 0;
    transform: translateY(100vh);
    transform-origin: bottom;
    transform-box: stroke-box;
    max-height: none;
    margin-bottom: 100px;
	  min-height: 40vh;
	  top: -55vh;
  }
	
	.gallery-container {
  position: absolute;
  width: 100%;
  overflow: hidden;
  max-width: none;
  top: 0;
  left: 0;
  z-index: -1;
}
	
.gallery-slider {
display: block;
	height: 40vh;
    max-height: 40vh;
    min-height: auto;
    overflow: hidden;
	background: #000;
}
	
.gallery-item {
min-width: auto;
    cursor: pointer;
    background: #000000;
    width: 100%;
    height: auto;
    margin-top: -10%;
    background-blend-mode: overlay;
    opacity: 0.8;
}


video.gallery-item {
    min-width: auto;
    cursor: pointer;
    background: #000000;
    width: 100%;
    height: auto;
    margin-top: 0%;
    margin-left: 0%;
    transform: translate(0%,0%);
    min-height: 400px;

}
	
	.fullscreen-slider .gallery-item {	
min-width: auto;
    cursor: pointer;
    background: #000000;
    width: 100%;
    height: auto;
    margin-top: 0%;
    margin-left: 0%;
    transform: translate(0%,0%);
    background-blend-mode: overlay;
    opacity: 0.8;


}
	
.sidebar-menu {
  z-index: 2;
	   border-right: 1px solid #eee;
	height: 53vh;
}
	
.kategorienBox {
  width: 100%;
  height: auto;
  max-width: 100%;
  background: #4a4b4c;
  padding: 20px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  min-height: auto;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
}
.katBox {
  float: left;
  padding: 0px 15px;
  line-height: 115%;
  font-size: 95%;
}
	
.wischBlatt {
  height: 50px;

	}
	
	.steuerBox {
width: auto;
    height: 60px;
    padding: 0px 20px 10px 20px;
    background: #000000;
    position: absolute;
    bottom: 30px !important;
    transform: none;
    display: flex;
    align-items: center;
    right: 30px;
    top: auto;
}
	
		.sidebar-menu {

  height: 50%;
  margin-top: 40vh;
}  
	
	.nav.galleryNav{
		position: absolute;
    bottom: 10px;
    right: auto;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    left: 20px;
	}
	
	.galleryNav #nav-button svg path {
  fill: #ffffff;
  transition: fill 0.15s ease;
}
	
.myBR{

	height: 20px;
}	
	
	
  .fullscreen-slider {
    max-width: 80%;
  }

	
	
	
	
.video-wrapperContact {
  width: 100%;
  height: 35vh;
  overflow: hidden;
  margin-top: 79px;
  max-width: 100%;
  margin-left: 0%;
  margin-right: 0%;
}

	
.formularBlatt {
max-width: 84%;
	min-width: 715px;
}
.formButton {
padding: 21px 10px;
}
	
.columne {
  position: relative;
  height: auto;
  width: 100%;
  max-width: 40%;
  margin-left: 0;
  margin-top: 0;
	float: left;

	}
.columneSkeletton {
  padding: 30px 30px;
}
.map-container {
	 height: 48vh;
  height: auto;
	min-width: 800px;
	min-height: 550px;
}
.oberTeil {
  padding: 30px 30px;
}
	
#google-map {
  height: 48vh;
  width: 60%;
  float: left;
	min-height: 550px;
}
	.map-overlay {
  position: relative;
	}
	
	
	.mapOK {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 100%;
  height: 48vh;
  max-width: 60%;
  text-align: center;
  padding: 50px;
top: auto;
			min-height: 550px;
}
	
	
	
}


@media only screen and (max-width: 820px) {
 .columne {
    width: 100%;
	 max-width: 100%;
}
	
#google-map {
    width: 100%;
	}
	
  .map-container {
  width: 100%;
    min-width: auto;
  }	
	
  .formularBlatt {
    max-width: 100%;
    min-width: auto;
  }
	
	  .mapOK {
    position: relative;
    right: 0;
    bottom: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    text-align: center;
    padding: 30px;
    top: auto;
  }
	
	
	
	
	
	
}


@media only screen and (max-width: 580px) {
	
  .paddingbox > .reader-title {
    font-family: "Courier Prime", monospace;
    font-size: 15px;
    letter-spacing: 0.0125em;
    font-weight: 400;
    line-height: 140%;
    font-style: normal;
    opacity: 0.7;
    word-spacing: 0px;
    padding: 0 !important;
    margin-right: 0 !important;
    margin-top: -10px;
    max-height: 55vh !important;
  }
.paddingbox {
margin: 0 6% 0 14%;
    margin-top: 0px;
    transform: translateY(2vh);
    transform-origin: top;
    transform-box: stroke-box;
    max-height: none;
    min-height: auto;
    top: 30vh;
    bottom: auto;
 
  }
	
  .sidebar-menu {
    height: 63%;
    margin-top: 30vh;
  }
	
  .katBox {
    float: left;
    padding: 0px 10px;
    line-height: 110%;
    font-size: 85%;
  }
	
  .gallery-slider {
    height: 30vh;
	}
	
  video.gallery-item {
    min-width: auto;
    width: 120%;
    height: 100%;
    margin-top: 0%;
    margin-left: -10%;
    transform: translate(0%,0%);
    min-height: auto;
  }
	.gallery-item {
    margin-top: -5%;
  }
	.katBox .menu-item{
		font-size: 80%;
    letter-spacing: 0.1em;
	}
	  .katBox {
   float: left;
    padding: 0px 6px;
    line-height: 105%;
    font-size: 80%;
    min-width: 60px;
    overflow: visible;
  }
	  .kategorienBox {
    padding: 20px 10px 20px 40px;
    min-height: auto;
    min-width: auto;
  }
	
	.myBR{

	height: 10px;
}	
	.paddingbox > h3{
		position: absolute;
  top: -60px;
  color: #fff !important;
	}
	
	
	  .steuerBox {
    width: auto;
    height: 30px;
    padding: 0px 5px 10px 5px;
    background: #000000;
    position: absolute;
    bottom: 13px !important;
    transform: none;
    display: flex;
    align-items: center;
    right: 10px;
    top: auto;
  }
	
	
	  .nav.galleryNav {
    position: absolute;
    bottom: 0px;
    right: auto;
    width: auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    left: 10px;
  }
	
	 .fullscreen-slider {
    max-width: 100%;
	}
	.fullscreen-overlay .nav-right {
  right: 0px;
  padding: 0px 5px 0px 15px;
}
	.fullscreen-overlay .nav-left {
  left: 0px;
  padding: 0px 15px 0px 5px;
}
	
	.fullscreen-slider video.gallery-item {
  width: 100%;
  height: auto;
}
	
	
	
	.cInput {
  width: 100%;
  height: auto;
  padding: 30px 20px;
  margin-bottom: 15px;
}
	
	.flyTeaserKontakt {
  padding: 20px;
	}
	
.formButton, .file-upload-label {
  min-width: auto;
  padding: 20px 20px;
	}
	  .formButton {
    padding: 21px 20px;
    min-width: auto;
		  margin-bottom: 20px;
	}
	
	
Element {
  transform: translate(0px);

  opacity: 1;

}
.flyTeaserKontakt h2, .flyTeaserKontakt p, .flyTeaserKontakt span {
  opacity: 0;

  transform: translateY(20px);

}
.text-Wrapper80 {
  max-width: 100%;
}
	
.reader-title {
  line-height: 140%;
	}
	
	
	
	
	
}

