@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --fs-mainhead-: clamp(1.6rem, 4vw, 3rem);

  --fs-Welcome-H1-: clamp(2rem, 4vw, 3rem);
  --fs-Welcome-H3-: clamp(1.1rem, 2vw, 1.6rem);

  --ls-Welcome-Logo-: clamp(10rem, 15vw, 30rem);

  --s-uebAnimation1-: 0.7;
  --s-uebAnimation2-: 0.5;

  /* Grundfarben */

  /* --bright-grey-hex-: #A0A3AB;
  --bright-grey-rgb-: rgb(160, 163, 171);
  --bright-grey-rgba-: rgba(160, 163, 171, 1);
  --bright-grey-hsl-: hsl(220, 5%, 65%); */

  /* --mid-grey-hex-: #55585F;
  --mid-grey-rgb-: rgb(85, 88, 95);
  --mid-grey-rgba-: rgba(85, 88, 95, 1);
  --mid-grey-hsl-: hsl(220, 6%, 35%); */

  /* --dark-grey-hex-: #1B1C20;
  --dark-grey-rgb-: rgb(27, 28, 32);
  --dark-grey-rgba-: rgba(27, 28, 32, 1);
  --dark-grey-hsl-: hsl(220, 10%, 12%); */

  /* --dark-grey-lighter-hex-: #2A2B30;
  --dark-grey-lighter-rgb-: rgb(42, 43, 48);
  --dark-grey-lighter-rgba-: rgba(42, 43, 48, 1);
  --dark-grey-lighter-hsl-: hsl(220, 8%, 18%); */

  --blue-hex-: #00A1D6;
  --blue-rgb-: rgb(0, 161, 214);
  --blue-rgba-: rgba(0, 161, 214, 1);
  --blue-hsl-: hsl(195, 100%, 42%);

  --orange-hex-: #E67E22;
  --orange-rgb-: rgb(230, 126, 34);
  --orange-rgba-: rgba(230, 126, 34, 1);
  --orange-hsl-: hsl(28, 77%, 52%);

  --text-color-hex-: #FFFFFF;
  --text-color-rgb-: rgb(255, 255, 255);
  --text-color-rgba-: rgba(255, 255, 255, 1);
  --text-color-hsl-: hsl(0, 0%, 100%);

  --text-color-grayed-rgba-: rgba(255, 255, 255, 0.6);

  /* Abwandlungen */
  --mid-grey-bright-hsl-: hsl(220, 6%, 45%);
  --mid-grey-low-opacity-rgba-: rgba(28, 30, 34, 0.4);

  --dark-grey-bright-hsl-: hsl(220, 10%, 20%);
  --blue-glow-hsl-: hsl(195, 100%, 50%);
  --orange-bright-hsl-: hsl(28, 77%, 60%);

  --blue-hsl-unsaturated-: hsl(195, 30%, 60%);

  --dark-grey-hex-: #0B0C10;
  --dark-grey-rgb-: rgb(11, 12, 16);
  --dark-grey-rgba-: rgba(11, 12, 16, 1);
  --dark-grey-hsl-: hsl(220, 20%, 5%);

  --mid-grey-hex-: #121417;
  --mid-grey-rgb-: rgb(18, 20, 23);
  --mid-grey-rgba-: rgba(18, 20, 23, 1);
  --mid-grey-hsl-: hsl(220, 15%, 8%);

  --bright-grey-hex-: #2A2C36;
  --bright-grey-rgb-: rgb(42, 44, 54);
  --bright-grey-rgba-: rgba(42, 44, 54, 1);
  --bright-grey-hsl-: hsl(220, 13%, 19%);

  --bright-grey-darker-hex-: #1A1B22;
  --bright-grey-rgb-: rgb(26, 27, 34);
  --bright-grey-darker-rgba-: rgba(26, 27, 34, 1);
  --bright-grey-hsl-: hsl(220, 13%, 12%);

  --bright-grey-lighter-hex-: #404352;
  --bright-grey-rgb-: rgb(64, 67, 82);
  --bright-grey-rgba-: rgba(64, 67, 82, 1);
  --bright-grey-hsl-: hsl(220, 13%, 28%);

  --dark-grey-lighter-hex-: #0D0E11;
  --dark-grey-lighter-rgb-: rgb(13, 14, 17);
  --dark-grey-lighter-rgba-: rgba(13, 14, 17, 1);
  --dark-grey-lighter-hsl-: hsl(220, 15%, 6%);

  --mid-grey-lighter-hex-: #16181C;
  --mid-grey-lighter-rgb-: rgb(22, 24, 28);
  --mid-grey-lighter-rgba-: rgba(22, 24, 28, 1);
  --mid-grey-lighter-hsl-: hsl(220, 15%, 10%);

  --ff-standart-: "Plus Jakarta Sans", arial;

  --ff-secondary-: "montserrat", arial;

}

html {
  background-color: var(--dark-grey-rgb-);
}

body {
  /* background: radial-gradient(circle, rgb(65, 68, 77), rgb(61.75, 64.6, 73.15)); */
  /* background: radial-gradient(hsl(240, 20%, 1%), hsl(240, 20%, 8%)); */
  background: radial-gradient(var(--dark-grey-rgb-), var(--dark-grey-lighter-rgb-));
  color: var(--text-color-hex-);
  overflow-x: hidden;
}

footer {
  background-color: var(--mid-grey-hex-);
  padding-block: 0.5rem;
  font-family: var(--ff-secondary-);
  font-size: large;
  text-wrap: nowrap;
}

.headerBG {
  background-color: var(--mid-grey-hex-);
  height: 5rem;
}

header {
  display: flex;
  width: 100%;
  align-items: center;
  padding-inline: 10%;
  height: 5rem;
  background-color: var(--mid-grey-low-opacity-rgba-);
  top: 0;
  position: fixed;
  z-index: 999;
  backdrop-filter: blur(3px);
  padding-block: 0.5rem;
  font-family: var(--ff-secondary-);
  font-size: large;
  text-wrap: nowrap;

  /* -webkit-mask: linear-gradient(180deg, white 95%, transparent);
  mask: linear-gradient(180deg, white 95%, transparent); */

  box-shadow: var(--dark-grey-hex-) 0 0 10px;

}

main {
  margin-top: 5rem;
  padding-inline: 10%;
  display: flex;
  flex-direction: column;
  min-height: 76vh;
  height: 100%;
  width: 100%;
  gap: 2rem;

  font-family: var(--ff-standart-);
}

footer {
  display: flex;
  padding-inline: 10%;
  padding-block: 1rem;
  box-shadow: var(--dark-grey-hex-) 0 0 10px;
}

a {
  text-decoration: none;
  color: var(--text-color-grayed-rgba-);
}

li {
  list-style: none;
}

p {
  font-family: var(--ff-standart-);
  font-weight: lighter;
  font-size: 1rem;
}

hr {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}

section {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}

.SectionTitle {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 800px;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.SectionTitle * {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

section.content {
  background: linear-gradient(60deg, var(--mid-grey-hex-), var(--mid-grey-lighter-hex-));
  padding: 2rem 1rem;
  border-radius: 1rem;
  transition: all 0.5s;
}

.logo {
  margin-right: auto;
}

.CtaBtn button {
  padding: 0.8rem 3rem;
  color: var(--text-color-hex-);
  background: transparent;
  border: var(--blue-glow-hsl-) 2px solid;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: var(--ff-secondary-);
  transition: all 0.3s;
  border-radius: 0.5rem;
}

.CtaBtn button:hover {
  transform: scale(1.1);
  background: var(--blue-glow-hsl-);
  color: var(--dark-grey-hex-);
}

.secondaryBtn button {
  padding: 0.5rem;
  background: var(--bright-grey-hex-);
  display: flex;
  border-radius: 0.5rem;
  height: fit-content;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px var(--bright-grey-hex-) solid;

  color: var(--text-color-hex-);
  font-family: var(--ff-secondary-);
}

.secondaryBtn button:hover {
  background: var(--bright-grey-lighter-hex-);
}

.secondaryBtn button:active {
  border: var(--blue-glow-hsl-) 2px solid;
  box-shadow: 0 0 0.8rem var(--blue-hex-);
}

.buttonBorder {
  /* border: 0.2rem solid transparent;
  background:
    linear-gradient(var(--dark-grey-hex-), var(--dark-grey-hex-)) padding-box,
    linear-gradient(30deg, var(--orange-hsl-), var(--orange-bright-hsl-)) border-box;
  transition: all 0.3s; */
  padding: 0.5rem;
  background: var(--mid-grey-hex-);
  display: flex;
  margin-left: 0.5rem;
  border-radius: 0.5rem;
  height: fit-content;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px var(--mid-grey-hex-) solid;
}

.buttonBorder:hover {
  background: var(--bright-grey-hex-);
}

.buttonBorder:active {
  border: 2px var(--blue-glow-hsl-) solid;
  box-shadow: 0 0 0.8rem var(--blue-hex-);
}

.fadeMask {
  -webkit-mask: linear-gradient(90deg,
      transparent,
      white 40%,
      white 60%,
      transparent);
  mask: linear-gradient(90deg, transparent, white 30%, white 70%, transparent);
  opacity: 0.7;
}

/* ###---Header---### */

header nav {
  display: flex;
  height: 100%;
}

header nav ul {
  display: flex;
}

header li {
  height: 70%;
  margin-left: 1rem;
  align-self: center;
  transition: all 0.3s;
}

header a {
  display: flex;
  transition: all 0.3s;
  position: relative;
  height: 100%;
  width: 100%;
  align-items: center;
}

header a:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--blue-glow-hsl-);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
  box-shadow: 0 0 5px 0.1px var(--blue-hsl-);
}

header a:hover {
  color: var(--text-color-hex-);
}

header a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
  color: var(--text-color-hex-);
}

header a.CtaBtn:after {
  content: '';
  position: relative;
  width: 100%;
  transform: scaleX(1);
  background-color: var(--blue-glow-hsl-);
  transform-origin: center;
  transition: all 0.3s;
  box-shadow: none;
}

header a.CtaBtn:hover {
  color: var(--text-color-hex-);
}

header a.CtaBtn:hover:after {
  transform: scaleX(1);
  transform-origin: center;
  color: var(--text-color-hex-);
}

header .nav_active a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(1);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--blue-glow-hsl-);
  transform-origin: bottom right;
}

header .nav_active a {
  color: var(--text-color-hex-);
}

header li:active {
  opacity: 0.8;
  transform: scale(0.95);
}

.LogoBtn:hover:after {
  transform: scaleX(0);
}

/* ###---Main---### */

main h1 {
  font-size: var(--fs-mainhead-);
  line-height: calc(3rem * 1.2);
  text-align: center;
}

main h3 {
  font-size: 1.5rem;
  line-height: calc(1.5rem * 1.2);
}

main h4 {
  font-size: 1.1rem;
  line-height: calc(1.1rem * 1.2);
}

main p {
  max-width: 600px;
  line-height: calc(1rem * 1.4);
}

.hero {
  position: absolute;
  text-align: center;
  top: 50%;
  /* Platzierung in der Mitte des oberen Randes der Eltern-Div */
  left: 50%;
  /* Platzierung in der Mitte des linken Randes der Eltern-Div */
  transform: translate(-50%, -70%);
  text-shadow: var(--dark-grey-hex-) 0 2px 8px;
  width: 100%;
  padding-inline: 10%;
}

.hero h1 {
  font-size: var(--fs-Welcome-H1-);
  line-height: calc(var(--fs-Welcome-H1-) * 1.2);
  font-family: var(--ff-standart-);
}

.hero p {
  font-size: var(--fs-Welcome-H3-);
  font-family: var(--ff-standart-);
  margin-block: 1rem;
}

.Welcome {
  position: absolute;
  top: 50%;
  /* Platzierung in der Mitte des oberen Randes der Eltern-Div */
  left: 50%;
  /* Platzierung in der Mitte des linken Randes der Eltern-Div */
  transform: translate(-50%, -70%);
  text-shadow: var(--dark-grey-hex-) 0 2px 8px;
}

.WelcomeLogo {
  height: clamp(2rem, 18vw, 5rem);
}

.heroArrow {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  transform: translate(-50%, -10%);
}

.heroArrow a svg {
  transition: all 0.3s;
}

.heroArrow a svg:hover {
  transform: scale(1.1);
}

.mainHome {
  margin-top: 0;
}

.uspWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.uspCard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(60deg, var(--mid-grey-hex-), var(--mid-grey-lighter-hex-));
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.uspCard p {
  margin-inline: auto;
}

.uspCard h3 {
  margin-inline: auto;
}

.uspCard a {
  margin-top: auto;
  margin-inline: auto;
}

.uspCard:nth-of-type(1) {
  transform: translateX(-3rem);
  opacity: 0;
}

.uspCard:nth-of-type(3) {
  transform: translateX(3rem);
  opacity: 0;
}

.active .uspCard:nth-of-type(1) {
  transform: translateX(0);
  opacity: 1;
}

.active .uspCard:nth-of-type(3) {
  transform: translateX(0);
  opacity: 1;
}

@media only screen and (max-width: 1000px) {
  .uspCard:nth-of-type(1) {
    transform: translateX(0);
    opacity: 1;
  }

  .uspCard:nth-of-type(3) {
    transform: translateX(0);
    opacity: 1;
  }

  .uspWrapper {
    grid-template-columns: 1fr;
  }
}

.uspImgWrapper {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  display: flex;
  border-radius: 0.5rem;
}

.uspImgWrapper img {
  object-fit: cover;
  transform: scale(1.05);
  width: 100%;
}

.testimonialContainer {
  position: relative;
  height: 40rem;
  -webkit-mask: linear-gradient(180deg, transparent, white 30%, white 70%, transparent);
  mask: linear-gradient(180deg, transparent, white 30%, white 70%, transparent);
}

.testimonialContainerShow {
  height: auto;
  -webkit-mask: none;
  mask: none;
}

.btnTestimonialCardsWrapper {
  width: 100%;
  display: flex;
  margin-block: 2rem;
}

#btnTestimonialCards {
  margin-inline: auto;
}

.testimonialNoContent {
  /* ENTFERNEN */
  z-index: 999;
  position: absolute;
  font-weight: lighter;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}


.testimonialWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-rows: repeat(6, 1fr); */
  overflow: hidden;
  gap: 1rem;
  /* filter: blur(5px); */
  /* ENTFERNEN */
}

.testimonialCard {
  background: linear-gradient(60deg, var(--mid-grey-hex-), var(--mid-grey-lighter-hex-));
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.5s;
  /* grid-row: span 2; */
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* transform: translateY(-3rem); */
}

.testimonialCard>div {
  margin-top: auto;
}

.active .testimonialCard {
  transform: translateY(0);
}

.testimonialCard div p:nth-child(1) {
  font-weight: bold;
  color: var(--orange-hex-);
  margin-top: auto;
}

/* .testimonialCard:nth-of-type(3n) {
  transform: translateY(-3rem);
} */

.active .testimonialCard:nth-of-type(3n+1) {
  transform: translateY(-3rem);
}

.active .testimonialCard:nth-of-type(3n+2) {
  transform: translateY(-6rem);
}

.active .testimonialCard:nth-of-type(3n) {
  transform: translateY(-3rem);
}



/* .testimonialCard:nth-child(2),
.testimonialCard:nth-child(5),
.testimonialCard:nth-child(8) {
  transform: translateY(-3rem);
}


.active .testimonialCard:nth-child(2),
.active .testimonialCard:nth-child(5),
.active .testimonialCard:nth-child(8) {
  transform: translateY(-6rem);
} */

@media only screen and (max-width: 1000px) {
  .testimonialWrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .testimonialCard {
    height: auto;
    transform: translateY(0rem);
  }

  /* .active .testimonialCard,
  .active .testimonialCard:nth-child(5) {
    transform: translateY(0);
  }

  .testimonialCard:nth-child(2),
  .testimonialCard:nth-child(5),
  .testimonialCard:nth-child(8) {
    transform: translateY(0);
  }

  .testimonialCard:nth-of-type(even) {
    transform: translateY(-3.25rem);
  }

  .active .testimonialCard:nth-of-type(even) {
    transform: translateY(-7.5rem);
  } */

  /* .active .testimonialCard:nth-of-type(3n+1) {
    transform: translateY(0);
  }
  
  .active .testimonialCard:nth-of-type(3n+2) {
    transform: translateY(0);
  }
  
  .active .testimonialCard:nth-of-type(3n) {
    transform: translateY(0);
  } */

  .active .testimonialCard:nth-of-type(2n+1) {
    transform: translateY(-3.25rem);
  }
  .active .testimonialCard:nth-of-type(2n) {
    transform: translateY(-7.5rem);
  }


  .heroArrow {
    bottom: 10%;
  }
}

@media only screen and (max-width: 600px) {
  .testimonialWrapper {
    grid-template-columns: 1fr;
  }

  .testimonialCard:nth-of-type(2n) {
    transform: translateY(0);
  }

  .active .testimonialCard:nth-of-type(2n) {
    transform: translateY(0);
  }

  .testimonialCard:nth-of-type(2n+1) {
    transform: translateY(0);
  }

  .active .testimonialCard:nth-of-type(2n+1) {
    transform: translateY(0);
  }

  .testimonialCard {
    height: auto;
    transform: translateY(0);
  }

  .active .testimonialCard {
    transform: translateY(0);
  }
}

.testimonialContainerShow * {
  transform: translate(0) !important; 
}

/* @media only screen and (max-width: 800px) {
  .Welcome {
    position: relative;
    transform: none;
    top: 0;
    left: 0;
    margin: 0;
    margin-top: 2rem;
  }
  .mainHome {
    margin-top: 2rem;
  }
} */

main section {
  margin-block: 3rem;
}

.planet-container {
  position: absolute;
  overflow: hidden;
  height: 20rem;
  width: 100%;
  max-width: 100vw;
  transform: translateY(-50%);

  -webkit-mask: linear-gradient(90deg, transparent, white 30%, white 70%, transparent);
  mask: linear-gradient(90deg, transparent, white 30%, white 70%, transparent);
}

.planet {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -999;
  width: 500vw;
  height: 500vw;
  border-radius: 50%;
  background-color: var(--dark-grey-hex-);
  /* Farbe des Planeten */
  box-shadow: 0 0 20px 2px var(--blue-glow-hsl-);
  /* Schein um den Planeten */
}

/* .SkillListe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.SkillListe div {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.SkillListe h4 {
  margin-bottom: 1rem;
} */

#wirLiebenMedien {
  text-align: center;
  margin-bottom: 1rem;
}

.skillsWrapper {
  display: grid;
  flex-direction: column;
  max-width: fit-content;
  margin-inline: auto;
  gap: 1rem;
}

.skills {
  display: inline-flex;
  /* margin-inline: auto; */
  gap: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(60deg, var(--mid-grey-hex-), var(--mid-grey-lighter-hex-));
  transition: all 0.3s ease;
}

.active .skills {
  transform: translateX(10%);
}

.active .skills:nth-of-type(odd) {
  transform: translateX(-10%);
}

.skillsIcon {
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skillsIcon svg {
  height: 100%;
  fill: var(--orange-hex-);
}

.skills .skillsText {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.skills .skillsText p {
  font-weight: lighter;
}

@media only screen and (max-width: 1000px) {
  .skills {
    display: inline-flex;
    /* margin-inline: auto; */
    gap: 2rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(60deg, var(--mid-grey-hex-), var(--mid-grey-lighter-hex-));
  }

  .active .skills {
    transform: translateX(0);
  }

  .active .skills:nth-of-type(odd) {
    transform: translateX(0);
  }

}

@media only screen and (max-width: 450px) {
  .skills {
    display: inline-flex;
    /* margin-inline: auto; */
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 1rem;
    background: linear-gradient(60deg, var(--mid-grey-hex-), var(--mid-grey-lighter-hex-));
  }

  .active .skills {
    transform: translateX(0);
  }

  .active .skills:nth-of-type(odd) {
    transform: translateX(0);
  }

  .skillsIcon {
    height: 2rem;
    width: 2rem;
    margin-block: auto;
  }

  .skillsText * {
    font-size: 1rem;
  }
}

.SectionHeadline {
  position: relative;
  display: inline-block;
  width: 100%;
}

@media only Screen and (max-width: 1000px) {
  .SkillListe {
    display: flex;
    flex-direction: column;
  }

}

.line1 {
  left: 0;
  top: 50%;
  width: 100%;
  height: 4px;
  /* Farbe der Linie */
  background-color: var(--blue-hex-);
  z-index: 1;
}

.line2 {
  left: 0;
  top: 50%;
  width: 100%;
  height: 4px;
  /* Farbe der Linie */
  background-color: var(--orange-hex-);
  z-index: 1;
}

.line3 {
  left: 0;
  top: 50%;
  width: 100%;
  height: 4px;
  /* Farbe der Linie */
  background-color: var(--bright-grey-lighter-hex-);
  z-index: 1;
}


.SectionHeadline h3 {
  margin-left: 2rem;
  position: relative;
  z-index: 2;
  padding: 0 10px;
  /* Abstand zwischen Text und Linie */
  width: fit-content;
  background-color: var(--dark-grey-hex-);
}

.glow {
  box-shadow: 0 0 10px var(--blue-glow-hsl-);
}

.section1 {
  display: flex;
  width: 100%;
  max-width: 900px;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  margin-top: 1rem;
  gap: 2rem;
}

.section2 {
  display: flex;
  width: 100%;
  max-width: 900px;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  margin-top: 1rem;
  gap: 2rem;
}

.section3 {
  display: flex;
  width: 100%;
  max-width: 900px;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  margin-top: 1rem;
  gap: 2rem;
}

.section1 div {
  margin-right: auto;
}

.section2 div {
  margin-left: auto;
}

.section3 div {
  margin-right: auto;
}

@media only screen and (max-width: 1000px) {

  .line1,
  .line2,
  .line3 {
    top: 100%;
  }

  .SectionHeadline h3 {
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
  }

  #sec div div img {
    order: 1;
    margin-top: 1.5rem;
  }

  #sec div div {
    margin: 0;
  }

  #sec div p {
    order: 2;
  }

  .section1,
  .section2,
  .section3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

}

.kontaktsection {
  display: flex;
  gap: 1rem;
}

.kontaktSectionContent {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.callsection {
  display: none;
}

.callsection,
.kontaktsection {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 30rem;
  text-align: center;
  margin-bottom: 4rem;
}

.call button {
  display: flex;
  padding: 1rem;
  max-width: fit-content;
  align-items: center;
  justify-content: center;
  color: var(--text-color-hex-);
}

.phone {
  margin-right: 0.5rem;
}

.phone svg path {
  fill: #ffffff;
  transition: all 0.3s;
}

.CtaBtn:hover .phone svg path {
  fill: #000;
}

@media only screen and (max-width: 800px) {
  .callsection {
    display: flex;
  }
}

/* ###---Footer---### */

footer nav ul {
  display: flex;
}

footer nav ul li {
  margin: 0;
  margin-right: 1rem;
}

footer a {
  transition: all 0.3s;
}

footer a:hover {
  color: var(--text-color-hex-);
}

footer p {
  font-size: 0.8rem;
  color: var(--text-color-grayed-rgba-);
  font-family: var(--ff-standart-);
  font-weight: lighter;
  align-self: center;
}

footer nav li a button {
  display: none;
}

/* ###---Background Slider---### */

.BGs {
  position: relative;
  padding-inline: 0;
}

.slider {
  margin: 0 auto;
}

.slide_viewer {
  width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 25 / 9;
  height: calc(100vh - 5rem);
  height: calc(100svh - 5rem);
}

.slide_group {
  height: 100%;
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  height: 100%;
  position: absolute;
  width: 100%;
  opacity: 0.9;
}

.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--blue-hsl-unsaturated-);
  /* Farbe und Transparenz des Overlays */
  opacity: 0.3;
  mix-blend-mode: multiply;
  /* Mix-Blending-Modus */
  pointer-events: none;
  /* Klick-Ereignisse passieren durch das Overlay hindurch */
}

.slide:first-child {
  display: block;
}

.slide:nth-of-type(1) {
  background: url(assets/BG1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(2) {
  background: url(assets/BG2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(3) {
  background: url(assets/BG3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(4) {
  background: url(assets/BG4.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(5) {
  background: url(assets/BG5.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(6) {
  background: url(assets/BG6.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(7) {
  background: url(assets/BG7.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(8) {
  background: url(assets/BG8.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(9) {
  background: url(assets/BG9.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(10) {
  background: url(assets/BG10.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(11) {
  background: url(assets/BG11.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(12) {
  background: url(assets/BG12.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(13) {
  background: url(assets/BG13.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(14) {
  background: url(assets/BG16.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide:nth-of-type(15) {
  background: url(assets/BG22.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide_buttons {
  /* position: absolute; */
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  /*   background-color: rgba(0, 0, 0, 0.6); */
}

a.slide_btn {
  color: var(--bright-grey-hex-);
  font-size: 42px;
  margin: 0 0.175em;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /* text-shadow: #000 0 0 1px; */
}

.slide_btn.active,
.slide_btn:hover {
  color: var(--blue-glow-hsl-);
  text-shadow: var(--blue-hsl-) 0 0 5px;

  cursor: pointer;
}

.new {
  display: flex;
  align-items: center;
  background-color: var(--bright-grey-hex-);
  width: 60px;
  width: max-content;
  text-align: center;
  padding: 0.2rem 0.8rem;
  border-radius: 1rem;
  gap: 0.3rem;
  text-transform: uppercase;
}

.new i {
  display: flex;
  width: 8px;
  height: 8px;
  background-color: var(--blue-glow-hsl-);
  box-shadow: var(--blue-glow-hsl-) 0 0 8px;
  border-radius: 1rem;
}

.news {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media only Screen and (max-width: 1000px) {
  .slide_buttons {
    display: none;
  }

  /* .slide {
    height: 100vh;
    height: 100svh;
  } */
  .slide_viewer {
    height: 100vh;
    height: 100svh;
  }

}

/* ###---Impressum---### */

.Impressum_Content {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.Impressum_Content h1 {
  margin-bottom: 2rem;
  text-align: center;
}

.Impressum_Content p {
  margin-bottom: 2rem;
  max-width: 600px;
  width: 100%;
}

/* ###---Leistungen---### */

.leistungenSection {
  display: flex;
  min-height: 20rem;
  gap: 2rem;
}

.leistungenSection:nth-of-type(odd) div {
  order: 2;
}

.leistungenSection:nth-of-type(odd) .leistungenSectionImgContainer {
  order: 1;
}

.leistungenSection .SectionTitle * {
  text-align: left;
}

.leistungenSection>div {
  flex: 1;
  order: 1;
}

.leistungenSection .leistungenSectionImgContainer {
  order: 2;
}

.leistungenSectionImgContainer {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

/* .leistungenSectionTextContainer p:nth-of-type(1) {
  margin-bottom: 1rem;
  margin-top: 0.5rem;
} */

.leistungenSectionImgContainer img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1000px) {
  .leistungenSection {
    flex-direction: column;
  }

  .leistungenSection:nth-of-type(odd) div {
    order: 1;
  }

  .leistungenSection:nth-of-type(odd) .leistungenSectionImgContainer {
    order: 2;
  }
}

.leistungCardContainer {
  max-width: 1200px;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.leistungCardWrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 1rem;
}

.leistungCard {
  display: flex;
  background: linear-gradient(60deg, var(--mid-grey-hex-), var(--mid-grey-lighter-hex-));
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  height: 6rem;
  width: 24rem;
}

.active .leistungCard {
  transform: translateX(-2rem);
}

.LeistungenHashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.LeistungenHashtags p {
  padding: 0.5rem;
  border-radius: 5rem;
  border: var(--orange-hex-) 1px solid;
  /* background: linear-gradient(60deg, var(--mid-grey-hex-), var(--mid-grey-lighter-hex-)); */
}

.LeistungenHashtags p::before {
  content: '#';
  font-weight: bold;
}

/* @keyframes glide {
  0% {
    transform: translateX(-6rem);
  }
  100% {
    transform: translateX(6rem);
  }
} */

.active .leistungCard:nth-of-type(5),
.active .leistungCard:nth-of-type(6),
.active .leistungCard:nth-of-type(7),
.active .leistungCard:nth-of-type(8),
.active .leistungCard:nth-of-type(13),
.active .leistungCard:nth-of-type(14),
.active .leistungCard:nth-of-type(15),
.active .leistungCard:nth-of-type(16) {
  transform: translateX(2rem);
}

.leistungCard .subheadline {
  font-weight: lighter;
  color: var(--text-color-grayed-rgba-);
}

.leistungenIconContainer {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 4rem;
}

.leistungenIconContainer .fas {
  font-size: 2rem;
  color: var(--orange-hex-);
}

@media only screen and (max-width: 1000px) {

  .active .leistungCard:nth-of-type(5),
  .active .leistungCard:nth-of-type(6),
  .active .leistungCard:nth-of-type(7),
  .active .leistungCard:nth-of-type(8),
  .active .leistungCard:nth-of-type(13),
  .active .leistungCard:nth-of-type(14),
  .active .leistungCard:nth-of-type(15),
  .active .leistungCard:nth-of-type(16) {
    transform: translateX(0);
  }

  .active .leistungCard {
    transform: translateX(0);
  }

  .leistungCardWrapper {
    grid-template-columns: 1fr;
  }

  .leistungCardContainer {
    max-height: 80rem;
    -webkit-mask: linear-gradient(180deg, transparent, white 15%, white 85%, transparent);
    mask: linear-gradient(180deg, transparent, white 15%, white 85%, transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
  }

  .leistungCard {
    width: 100%;
    min-width: 24rem;
  }

  .leistungCard[data-order="high"] {
    order: 1;
  }

  .leistungCard[data-order="mid"] {
    order: 2;
  }

  .leistungCard[data-order="low"] {
    order: 3;
  }
}

@media only screen and (max-width: 600px) {
  .leistungCard {
    height: auto;
    width: auto;
    min-width: auto;
  }

  .leistungCardContainer {
    max-height: 90rem;
  }
}

.mainSecMed {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.MedSection {
  display: flex;
  gap: 2rem;
  max-width: 1000px;
}

.MedSection:nth-of-type(odd)>.MedSectionImg {
  order: 1;
  margin-left: 0;
  margin-right: auto;
}

.MedSection:nth-of-type(odd)>div {
  order: 2;
}

.MedSection>div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(60deg, var(--mid-grey-hex-), var(--mid-grey-lighter-hex-));
  padding: 1.5rem;
  width: fit-content;
  border-radius: 1rem;
}

.MedSection>div h3 {
  color: var(--orange-hex-);
}

.MedSection>.MedSectionImg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: none;
  padding: 0;
  width: fit-content;
  border-radius: 0;
  margin-left: auto;
}

@media only screen and (max-width: 1000px) {
  .MedSection {
    flex-direction: column;
  }

  .MedSection:nth-of-type(odd)>.MedSectionImg {
    order: 1;
    margin-left: 0;
    margin-right: 0;
    margin-inline: auto;
  }

  .MedSection:nth-of-type(odd)>div {
    order: 2;
  }

  .MedSection>.MedSectionImg {
    order: 1;
    margin: 0;
    margin-inline: auto;
  }

  .MedSection>div {
    order: 2;
    margin-inline: auto;
  }
}

.secondSecMed {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;

  background-color: var(--dark-grey-hex-);
  width: 100%;
  padding: 1rem;

  transition: all 0.5s;
}

.sectionMed {
  display: flex;
  width: 90%;
  max-width: 900px;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.sectionMed img {
  margin-right: auto;
}

.sectionMed p {
  margin-left: 2rem;
}

.roundetImg {
  border-radius: 1rem;
}

.MedBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-block: 2rem;
  gap: 2rem;
}

.MedBtn a {
  flex: 1;
  min-width: fit-content;
}

.MedBtn button {
  width: 100%;
  min-width: fit-content;
  padding-inline: 2rem;
  padding-block: 1rem;
  color: var(--text-color-hex-);
  border: none;
  border-radius: 0.3rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;

  border: 0.4rem solid transparent;
  background:
    linear-gradient(var(--dark-grey-hex-), var(--dark-grey-hex-)) padding-box,
    linear-gradient(30deg, var(--orange-hsl-), var(--orange-bright-hsl-)) border-box;
  border-radius: 1rem;
}

.MedBtn button:hover {
  transform: scale(1.05);
}

.MedBtn button:active {
  transform: scale(0.95);
  opacity: 0.7;
}


@media only Screen and (max-width: 1000px) {
  .sectionMed {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .sectionMed img {
    margin: 0;
    margin-block: 2rem;
  }

  .sectionMed p {
    margin: 0;
  }
}

/* Kameramann & Bildtechnik */

.mainSecKaBi {
  margin-top: 4rem;
  display: flex;
  width: 100%;
  height: 100%;
  gap: 2rem;
  justify-content: center;
}

.mainSecKaBi h1 {
  text-align: left;
}

.mainSecKaBi:nth-of-type(1) {
  align-items: center;
}

.mainSecKaBi:nth-of-type(even) .mainSecKaBiImgContainer {
  order: 1;
}

.mainSecKaBi:nth-of-type(even) .mainSecKaBiTextContainer {
  order: 2;
}

.mainSecKaBiImgContainer {
  overflow: hidden;
  aspect-ratio: 1/1;
}

.mainSecKaBiImgContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainSecKaBiTextContainer .SectionTitle * {
  text-align: left;
}

.mainSecKaBiTextContainer ul {
  display: block;
  list-style: disc;
  height: auto;
}

.mainSecKaBiTextContainer ul li {
  font-weight: bold;
  list-style: disc;
  margin-left: 1.5rem;
  margin-block: 0.5rem;
}

.mainSecKaBiTextContainer ul li p {
  font-weight: lighter;
}

/* .mainSecKaBiTextContainer p:nth-of-type(1) {
  margin-top: 0.5rem;
} */

.mainSecKaBi>div {
  flex: 1;
}

.calltoactionKaBi {
  width: fit-content;
  margin-block: 1rem;
  padding-block: 0.5rem;
  color: var(--text-color-grayed-rgba-);
  border-bottom: var(--text-color-grayed-rgba-) 2px solid;
}

/* Grid-Container für die Galerie */
.galerieWrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  /* 12 Spalten */
  grid-template-rows: repeat(8, 1fr);
  /* 8 Reihen */
  gap: 0.5rem;
  height: auto;
  /* Höhe passt sich an den Inhalt an */
}

/* Container für jedes Bild */
.galerieImgContainer {
  overflow: hidden;
  display: flex;
  height: 100%;
  width: 100%;
}

/* Bilder im Container */
.galerieImgContainer img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Responsive Anpassung für kleinere Bildschirmgrößen (z.B. iPad) */
@media (max-width: 768px) {
  .galerieWrapper {
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 1000px) {
  .mainSecKaBi {
    flex-direction: column;
  }

  .mainSecKaBi:nth-of-type(1) {
    align-items: flex-start;
  }

  .mainSecKaBiImgContainer {
    order: 2;
  }

  .mainSecKaBiTextContainer {
    order: 1;
  }

  .mainSecKaBi:nth-of-type(even) .mainSecKaBiImgContainer {
    order: 2;
  }

  .mainSecKaBi:nth-of-type(even) .mainSecKaBiTextContainer {
    order: 1;
  }
}

/* Portfolio */

.MainSecArb {
  display: grid;
  grid-template-columns: repeat(5, minmax(15%, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  align-self: center;
  margin-bottom: 8rem;
}

.navArb {
  display: flex;
  align-items: center;
  margin-block: 2rem;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}

.navArb2 {
  display: flex;
  margin-left: auto;
  align-items: center;
}

.lineToggleWrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  margin-right: auto;
}

.lineToggleWrapper p {
  flex-grow: 1;
  /* Der Text kann den verfügbaren Raum einnehmen */
  word-wrap: break-word;
  /* Text wird umgebrochen */
  width: 100%;
  /* Nimmt den gesamten Restraum */
}

/* The container */
.toggle-container {
  display: flex;
  position: relative;
  width: 60px;
  height: 34px;
  cursor: pointer;
  user-select: none;
  margin-left: 0.5rem;
}

/* Hide the default HTML checkbox */
.toggle-container input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.switch {
  display: flex;
  position: absolute;
  width: 60px;
  height: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bright-grey-hex-);
  border: var(--bright-grey-hex-) 2px solid;
  border-radius: 34px;
  transition: 0.4s;
}

.switch:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.toggle-container:hover input~.switch {
  background-color: var(--bright-grey-lighter-hex-);
}

input:checked+.switch {
  /* background-color: var(--blue-glow-hsl-); */
  border: var(--blue-glow-hsl-) 2px solid;
  box-shadow: 0 0 0.8rem var(--blue-hex-);
}

input:checked+.switch:before {
  transform: translateX(26px);
}

/* Rounded sliders */
.switch.round {
  border-radius: 34px;
}

.switch.round:before {
  border-radius: 50%;
}


.navArb p {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navArb p input {
  margin-left: 0.5rem;
  cursor: pointer;
}

.navArb p input:checked {
  border: 2px var(--blue-glow-hsl-) solid;
  box-shadow: 0 0 0.8rem var(--blue-hex-);
}

@media only Screen and (max-width: 800px) {
  .navArb {
    flex-direction: column;
  }

  .navArb2 {
    margin: 0;
    width: 100%;
    margin-top: 1rem;
  }

  .navArb2 p {
    margin: 0;
    padding: 0;
    margin-right: auto;
  }
}

.ArbIcon {
  padding: 0.5rem;
  background: var(--bright-grey-hex-);
  display: flex;
  margin-left: 0.5rem;
  border-radius: 0.5rem;
  height: fit-content;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px var(--bright-grey-hex-) solid;
}

.ArbIcon:hover {
  background: var(--bright-grey-lighter-hex-);
}

.ArbIcon svg {
  padding: 0;
  margin: 0;
  max-width: 2rem;
  min-width: 1rem;
  width: 100%;
  height: 100%;
  fill: white;
}

/* DropDown */

.dropdown {
  min-width: 15rem;
  position: relative;
}

.dropdown * {
  box-sizing: border-box;
}

.select {
  background: var(--bright-grey-hex-);
  color: var(--text-color-hex-);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px var(--bright-grey-hex-) solid;
  border-radius: 0.5rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.select-clicked {
  border: 2px var(--blue-glow-hsl-) solid;
  box-shadow: 0 0 0.8rem var(--blue-hex-);
}

.select:hover {
  background-color: var(--bright-grey-lighter-hex-);
}

.caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-color-hex-);
  transition: 0.3s;
}

.caret-rotate {
  transform: rotate(180deg);
}

.menu {
  height: auto;
  list-style: none;
  padding: 0.2rem 0.5rem;
  background: var(--bright-grey-hex-);
  border: 1px var(--mid-grey-hex-) solid;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  color: var(--text-color-grayed-rgba-);
  position: absolute;
  top: 4rem;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  opacity: 0;
  display: none;
  transition: 0.2s;
  z-index: 999;
}

.menu li {
  padding: 0.7rem 0.5rem;
  margin: 0.3rem 0;
  border-radius: 0.5rem;
  cursor: pointer;
}

.menu li:hover {
  background: var(--bright-grey-lighter-hex-);
}

.activeDropDown {
  background: var(--bright-grey-darker-hex-);
}

.menu-open {
  display: block;
  opacity: 1;
}

.listObjInfo {
  display: inline-block;
  text-wrap: nowrap;
}

.WatchIcon {
  fill: var(--text-color-grayed-rgba-);
  display: flex;
  margin-block: auto;
}

.WatchIcon svg {
  height: 1rem;
}

.infoIcon {
  height: 1rem;
  min-width: 100%;
  cursor: pointer;
  transition: all 0.1s;
}

.infoIcon:hover {
  opacity: 0.9;
}

.date {
  margin-top: 0.3rem;
}

/* CSS für die Tooltip-Positionierung */
.tooltip {
  width: 100%;
  position: relative;
  display: inline-block;
}

/* CSS für die Tooltip-Animation */
.tooltip-text {
  position: absolute;
  top: calc(100% + 10px);
  /* Abstand zum Button */
  left: 50%;
  transform: translateX(-50%) scale(0);
  /* Zentrierung und Skalierung */
  background-color: var(--mid-grey-hex-);
  border: 1px solid var(--bright-grey-hex-);
  color: var(--text-color-hex-);
  padding: 5px;
  border-radius: 5px;
  white-space: nowrap;
  transform-origin: top;
  transition: transform 0.3s ease;
  /* Übergangseigenschaft */
  z-index: 999;
}

.tooltip-text.show {
  animation: scaleInAnimation 0.3s forwards;
  /* Animation starten */
}

/* Stil für die ungeordnete Liste */
.tooltip-text ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tooltip-text li {
  margin-bottom: 5px;
  /* Abstand zwischen den Listenpunkten */
  list-style: none;
  /* Listenpunkte entfernen */
  font-family: var(--ff-standart-);
}

.tooltip-text li::before {
  content: "- ";
}

/* CSS für die Tooltip-Animation */
@keyframes scaleInAnimation {
  from {
    transform: translateX(-50%) scale(0);
  }

  to {
    transform: translateX(-50%) scale(1);
  }
}

.lineContainer {
  display: none;
  text-align: left;
  position: relative;
  overflow: hidden;
  grid-column: span 5;
}

.trennstrich {
  position: relative;
  padding-right: 15px;
  display: inline-block;
  color: var(--text-color-grayed-rgba-);
}

.trennstrich::after,
.trennstrich::before {
  content: '';
  position: absolute;
  top: 40%;
  height: 2px;
  background-color: var(--text-color-grayed-rgba-);
  width: 100vw;
}

.trennstrich::before {
  right: 100%;
  left: 0;
  transform: translateX(-100%);
}

.trennstrich::after {
  right: 0;
  left: 100%;
}

.showLine {
  display: block;
}

.activeViewBtn {
  border: 2px var(--blue-glow-hsl-) solid;
  box-shadow: 0 0 0.8rem var(--blue-hex-);
}


.inTheEnd {
  align-self: center;
  width: 100%;
  max-width: 25rem;
  color: var(--text-color-grayed-rgba-);
  text-align: center;
  margin-bottom: 8rem;
}

.inTheEnd a {
  text-decoration: underline;
}

@media only Screen and (max-width: 1200px) {
  .MainSecArb {
    grid-template-columns: repeat(4, minmax(20%, 1fr));
  }

  .lineContainer {
    grid-column: span 4;
  }
}

@media only Screen and (max-width: 1000px) {
  .MainSecArb {
    grid-template-columns: repeat(3, minmax(20%, 1fr));
  }

  .lineContainer {
    grid-column: span 3;
  }
}

@media only Screen and (max-width: 800px) {
  .MainSecArb {
    grid-template-columns: repeat(2, minmax(20%, 1fr));
  }

  .lineContainer {
    grid-column: span 2;
  }

  .dropdown {
    width: 100%;
    min-width: 100%;
  }
}

.listView {
  grid-template-columns: 1fr;
  width: 100%;
}

.listView div.lineContainer {
  grid-column: span 1;
}

.listView div.info {
  display: flex;
  flex-direction: column;
}

.listView #listInfo {
  display: block;
  height: auto;
  width: auto;
}

.listView #listInfo li {
  margin: 0;
  padding: 0;
  padding-block: 0.3rem;
  padding-right: 0.5rem;
  color: var(--text-color-grayed-rgba-);
  text-wrap: wrap;
  display: flex;
  gap: 0.3rem;
}

.listView div.ArbObjekt {
  display: flex;
  flex-direction: row;
  gap: 0 2rem;
}

.listView div a {
  /* display: flex; */
  align-self: center;
  width: 15rem;
}

.listView div a img {
  width: 15rem;
  aspect-ratio: 14/9;
}

.listView div img.infoIcon {
  display: none;
}

.listView .tooltip {
  display: none;
}

.hideInfo {
  display: none;
}

.ArbObjekt {
  width: 100%;
  flex-direction: column;
  /* max-width: 15rem; */
}

@media only screen and (max-width: 800px) {
  .listView div.ArbObjekt {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
  }

  .listView #listInfo li {
    list-style: none;
  }

  .listView div.ArbObjekt h4 {
    margin-top: 0.5rem;
  }
}

/* .ArbObjekt p {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  width: 100%;
  max-width: 15rem;
} */

.ObjPicArb {
  width: 100%;
  max-width: 15rem;
  object-fit: cover;
  border-radius: 1rem;
  aspect-ratio: 14/9;
  /* Aspect Ratio 14:9 */
}

.ObjPicArbWrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 0.3rem;
  transition: all 0.3s ease;
}

.ObjPicArbWrapper .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.ObjPicArbWrapper:hover .overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

.ObjPicArbWrapper .play-button {
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
}

.ObjPicArbWrapper:hover {
  transform: scale(1.05);
}

.ObjPicArbWrapper:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button svg path {
  fill: var(--text-color-hex-);
}

.info {
  width: 100%;
  /* Info passt sich der Breite von .ArbObjekt an */
}

.info h4 {
  max-width: 100%;
  /* Titel passt sich der Breite von .info an */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media only screen and (max-width: 400px) {
  .info h4 {
    font-size: 0.8rem;
  }

  .info p {
    font-size: 0.7rem;
  }
}

/* .Up {
  position: fixed;
  top: 85%;
  right: 5%;
} */

/* Kontakt */

.mainSecKon {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.kontaktItemList {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.socialLinks {
  display: flex;
  align-items: center;
  width: 100%;
}

.socialLinks img {
  margin-left: auto;
}

.ico div {
  transition: all 0.3s;
}

.ico div:hover {
  transform: scale(1.08);
}

.ico div:active {
  opacity: 0.6;
  transform: scale(0.95);
}

.ico {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: 2rem;
}

.hidden {
  display: none;
}

.FAQSec {
  display: flex;
}

.FAQWrapper {
  display: flex;
}

.FAQWrapper>div {
  flex: 1;
  display: flex;
  flex-direction: column;

  gap: 1rem;
}

@media only Screen and (max-width: 1000px) {
  .FAQWrapper {
    flex-direction: column;
  }
}

.faq-header {
  padding-block: 0.5rem;
}

.faq-header h1 {
  text-align: left;
}

.faq-content {
  margin: 0 auto;
}

.faq-question {
  padding-block: 0.6rem;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  transform-origin: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
  margin-inline: 0.5rem;
}

.panel-title {
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-block: 0.5rem;
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;

  border-bottom: 1px solid var(--text-color-grayed-rgba-);
}

.panel-title p {
  margin-right: auto;
}

.panel-content {
  font-size: 1rem;
  font-weight: lighter;
  padding: 0px 0px;
  height: 0;
  overflow: hidden;
  position: relative;
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

.panel-content a {
  text-decoration: underline;
  cursor: pointer;
}

.panel:checked~.panel-content {
  height: auto;
  opacity: 1;
  padding-top: 14px;
}

.panel:checked~.panel-title>.arrow {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.panel {
  display: none;
}


/* Loader */

.load-wrapp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 20px;
  border-radius: 5px;
  text-align: center;
}

.letter {
  float: left;
  font-size: 14px;
  color: #777;
}

.load-6 .letter {
  animation-name: loadingF;
  animation-duration: 1.6s;
  animation-iteration-count: infinite;
  animation-direction: linear;
}

.l-1 {
  animation-delay: .48s;
}

.l-2 {
  animation-delay: .6s;
}

.l-3 {
  animation-delay: .72s;
}

.l-4 {
  animation-delay: .84s;
}

.l-5 {
  animation-delay: .96s;
}

.l-6 {
  animation-delay: 1.08s;
}

.l-7 {
  animation-delay: 1.2s;
}

.l-8 {
  animation-delay: 1.32s;
}

.l-9 {
  animation-delay: 1.44s;
}

.l-10 {
  animation-delay: 1.56s;
}

@keyframes loadingF {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media only Screen and (max-width: 1000px) {
  .mainSecKon {
    display: flex;
    flex-direction: column;
  }

  .socialLinks {
    flex-direction: column;
  }

  .socialLinks img {
    margin: 0;
  }
}

/* ###---Ueber---### */

.DaPunktenWir {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}

.DaPunktenWir div {
  padding: 1.5rem;
  background: linear-gradient(60deg, var(--mid-grey-hex-), var(--mid-grey-lighter-hex-));
  border-radius: 1rem;
  transition: all 0.5s;
}

.DaPunktenWir div h5 {
  color: var(--text-color-hex-);
  margin-bottom: 0.5rem;
}

.DaPunktenWir div p {
  color: var(--text-color-grayed-rgba-);
}

.DaPunktenWir div ul {
  margin-top: 0.5rem;
  color: var(--text-color-grayed-rgba-);
}

@media only Screen and (max-width: 1000px) {
  .DaPunktenWir div {
    grid-column: span 4;
  }
}

.UlDaPunktenWir {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: fit-content;
}

.UlDaPunktenWir li {
  text-wrap: nowrap;
  flex: 1;
  min-width: fit-content;
  margin: 0;
}

.h3Ueb {
  color: var(--orange-hex-);
  margin-bottom: 0.4rem;
}

.contentUeb {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.UebSec1 {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: flex-end;
}

.UebSec1 img {
  height: fit-content;
  justify-self: center;
  align-self: center;
  margin-right: auto;
}

.UebSec2 {
  display: flex;
  width: 100%;
  justify-content: center;
}

.section1Mit {
  display: flex;
  justify-content: center;
}

.employes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  max-width: 100%;
  overflow: hidden;
}

.employeProfile {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.employeProfile img {
  width: 100%;
  /* max-height: 14rem; */
}

.employePicture {
  width: 100%;
  max-width: 21rem;
  max-height: 15rem;
  /* aspect-ratio: 2/1; */
}

@media only Screen and (max-width: 1000px) {
  .employes {
    grid-template-columns: 1fr 1fr;
  }
}

@media only Screen and (max-width: 600px) {
  .employes {
    grid-template-columns: 1fr;
  }
}

/* .container p {
  text-shadow: 0 0 7px rgba(255,255,255,.3), 0 0 3px rgba(255,255,255,.3);
} */

.container {
  color: var(--text-color-hex-);
  font-size: 2.26rem;
  text-transform: uppercase;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 2rem;
}

.container p {
  font-size: 2rem;
}

.animation {
  height: 50px;
  /* Anfangshöhe von 100px */
  overflow: hidden;
  margin-left: 1rem;
  background-color: var(--blue-glow-hsl-);
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-container {
  display: flex;
  flex-direction: column;
  animation: text-animation 10s infinite alternate;
}

.text-container>div {
  padding: 0.25rem 0.75rem;
  height: 50px;
  /* Höhe jedes Textelements */
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes text-animation {
  0% {
    transform: translateY(100px);
  }

  /* Start bei 100px nach unten */
  15% {
    transform: translateY(100px);
  }

  25% {
    transform: translateY(50px);
  }

  35% {
    transform: translateY(50px);
  }

  45% {
    transform: translateY(0);
  }

  /* Zurück zur Ausgangsposition */
  55% {
    transform: translateY(0);
  }

  65% {
    transform: translateY(-50px);
  }

  75% {
    transform: translateY(-50px);
  }

  85% {
    transform: translateY(-100px);
  }

  /* Endet bei -100px */
  100% {
    transform: translateY(-100px);
  }

  /* Endet bei -100px */
}





.VPLTBtnContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 2rem;
}

.VPLTBtn {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  color: var(--text-color-hex-);
  font-size: 1.2rem;
  text-align: center;

  border-radius: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}

.VPLTBtn:hover {
  transform: scale(1.05);
}

.VPLTBtn:active {
  opacity: 0.7;
  transform: scale(0.95);
}

@media only Screen and (max-width: 1000px) {
  .container {
    color: var(--text-color-hex-);
    font-size: 2.26rem;
    text-transform: uppercase;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-block: 2rem;
    text-align: center;
    transform: scale(var(--s-uebAnimation1-));
  }

  .contentUeb section img {
    order: 1;
    margin: 0;
  }

  .contentUeb section div {
    order: 2;
  }

  .contentUeb section {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-block: 3rem;
  }
}

@media only Screen and (max-width: 600px) {
  .container {
    transform: scale(var(--s-uebAnimation2-));
  }
}

/* NAVbar */

ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

ul a {
  color: var(--text-color-hex-);
}

/* ul li {
  padding: 0.3rem;
  margin-left: 10px;
} */

/* ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
} */

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: var(--text-color-hex-);
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 5rem;
  left: 0;
  height: fit-content;
  width: 100%;
  padding-block: 1.5rem;
  z-index: 999;
  background-color: var(--mid-grey-hex-);
}

.mobile-menu li {
  margin: 0;
  margin-bottom: 0.5rem;
}

@media only screen and (max-width: 1200px) {
  .mobile-menu li {
    margin: 0;
    padding: 0;
    height: 100%;
    margin: 1.5rem;
  }

  header .nav_active a {
    font-weight: bold;
    color: var(--blue-glow-hsl-);
    text-shadow: var(--blue-hex-) 0 0 5px;
  }

  header .nav_active a::after {
    height: 100%;
    background: none;
    box-shadow: none;
  }

  header a {
    height: 100%;
  }

  header a:after {
    height: 100%;
    background: none;
    box-shadow: none;
  }

  header a::after {
    position: relative;
  }

  header a:hover {
    font-weight: bold;
    color: var(--blue-glow-hsl-);
    text-shadow: var(--blue-hex-) 0 0 5px;
  }

  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }

  .headerBG {
    display: none;
  }

  header {
    display: flex;
    width: 100%;
    align-items: center;
    padding-inline: 10%;
    height: 5rem;
    background-color: var(--mid-grey-hex-);
    top: 0;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(0px);
    padding-block: 0.5rem;
    font-family: var(--ff-secondary-);
    font-size: large;
    text-wrap: nowrap;

    -webkit-mask: none;
    mask: none;

  }

  main h1 {
    text-align: center;
  }

  footer {
    display: flex;
    flex-direction: column;
  }

  footer nav ul {
    display: flex;
    flex-direction: column;
    margin-block: 1rem;
  }

  footer nav ul li {
    margin: 0;
    margin-bottom: 0.3rem;
  }
}

/* Scroll Animation */

.scroller {
  width: 100%;
  max-width: 1200px;
  justify-self: center;
  align-self: center;
  opacity: 0.6;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.scroller__inner li img {
  max-width: 8rem;
  max-height: 4rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg,
      transparent,
      white 40%,
      white 60%,
      transparent);
  mask: linear-gradient(90deg, transparent, white 40%, white 60%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 50s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="mid"] {
  --_animation-duration: 45s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/* 404 */

.Main404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  text-align: center;
}

.Text404 {
  font-size: 10rem;
  line-height: normal;
}

@media only Screen and (max-width: 600px) {
  .Text404 {
    font-size: 5rem;
  }
}