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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-style: normal;
  overflow-x: hidden;
  position: relative;
  font-size: 16px;
  font-family: "IBM Plex Sans";
  color: var(--black);
  background-color: var(--bg);
  hyphens: auto;
  cursor: none;
}

/* Falls das Cookie-Banner sichtbar ist, soll der Cursor auf pointer wechseln */
#usercentrics-root, 
#usercentrics-root * {
    cursor: default !important;
}

/* Allgemeine Farbeinstellungen, GrÃ¶ÃŸen, etc. */
:host {
  --swiper-theme-color: white !important;
}



:root {
  /* Voreingestellte Farben, diese sind von Projekt zu Projekt unterschiedlich. Also anpassen!
      Hauptfarben: */
  --green: #51ff00;

  /* Farben fÃ¼r Schriften */
  /* Schriftfarbe fÃ¼r FlieÃŸtexte, reines Schwarz vermeiden -> Kann zu einer Ãœberanstrengung der Augen fÃ¼hren, wenn Nutzer den Text Ã¼ber einen lÃ¤ngeren Zeitraum lesen. */
  --black: #fcfcfc;

  /* Hintergrundfarbe, Abwandlung von weiÃŸ, reines WeiÃŸ vermeiden -> starke Helligkeit von reinem WeiÃŸ kann einen hohen Kontrast zu den umgebenden Elementen erzeugen => "White Glare-Effect" */
  --bg: #3a3a3a;

  /* Abstandswerte */
  /* Sehr kleiner Abstand */
  --g-xs: 8px;
  /* Kleiner Abstand */
  --g-m1: 16px;
  /* Mittlerer Abstand */
  --g-m2: 24px;
  /* GroÃƒÅ¸er Abstand */
  --g-m3: 32px;
  /* Sehr groÃƒÅ¸er Abstand */
  --g-l1: 40px;
  --g-l2: 48px;
  --g-xl: 56px;
  --g-xxl: 64px;
  --g-mega: 36px;

  /* Abstand zwischen Paragraphen */
  --p-gap: 20px;

  /* Abstand von Ãœberschriften zur Section */
  --h-gap: 2rem;

  --section: var(--g-mega);

  /* rem Angaben: Hauptsächlich für Schriftgröße!*/
  --xs-rem: 1rem;
  --s-rem: 1.1rem;
  --m-rem: 1.2rem;
  --l-rem: 1.3rem;
  --xl-rem: 1.4rem;
  --xxl-rem: 1.5rem;
  --xxl-I-rem: 1.6rem;
}

@media screen and (min-width:1024px){
  :root{
    --xs-rem: 1.3rem;
    --s-rem: 1.4rem;
    --m-rem: 1.5rem;
    --xxl-I-rem: 2.5rem;
  }
}

@media screen and (min-width:1024px){
  :root{
    --g-mega:136px;
  }
}
/* @media screen and (min-width:768px){
    :root{
      --h-gap:2rem;
    }
  } */

/* Voreinstellung von AbstÃ¤nden */
/* Abstand zwischen Paragraphen */
.p-gap {
  margin-top: var(--p-gap);
}

/* Abstand Ãœberschriften nach oben und nach unten */
.h-all {
  margin-top: var(--h-gap);
  margin-bottom: var(--h-gap);
}

/* Abstand Ãœberschrift nach oben */
.h-top {
  margin-top: var(--h-gap);
}

ul{
  list-style-position: inside;
}

.h-top-md {
  margin-top: var(--h-gap);
}

@media screen and (min-width: 768px) {
  .h-top-md {
    margin-top: unset;
  }
  /* Damit Abstand zwischen Referenzen/Leistungen ist, da nur margin wegen pos absolute beim Bild nicht ausreicht */
  .pa-top {
    padding-top: var(--h-gap);
  }
  .ma-top {
    margin-top: var(--h-gap);
  }
}

@media screen and (min-width: 1400px) {
  #leistungen .pa-top {
    padding-top: 4rem;
  }

  #leistungen .ma-top {
    margin-top: 6rem;
    padding-bottom: 3.5rem;
  }
}

.abstand-oben {
  margin-top: var(--g-m3);
}

/* Abstand Ãœberschrift nach unten */
.h-bot {
  margin-bottom: var(--h-gap);
}

/* Allgemeine Gestaltung */
a {
  text-decoration: none;
  color: unset;
  cursor: none;
}

a:hover,
a li:hover {
  transition: 0.4s;
  color: #8dc275;
}

.rounded {
  border-radius: 10px;
}

h1,
h2,
h4 {
  margin-bottom: var(--g-m2);
  font-size:var(--xxl-I-rem);
  margin-bottom:var(--g-m1);
  text-transform: uppercase;
  color: var(--green);
  font-family: "Kumbh Sans";
}

/* @media screen and (min-width:){
  h1, h2, h4{
    font-size: 2rem;
  }
} */

h3 {
  font-size: var(--m-rem);
  font-family: "Kumbh Sans";
}

/* @media screen and (min-width:){
  h3{
    font-size:1.8rem;
  }
} */
p {
  font-family: "IBM Plex Sans";
}

.small {
  text-transform: none;
}

p,
a,
li,
address {
  font-size: var(--xs-rem);
}

/* @media screen and (min-width:){
  p,
a,
li,
address {
  font-size: var(--m-rem);
}
} */

address {
  font-style: normal;
}

section {
  margin-top: var(--section);
  padding: var(--g-m3) 0;
}

main .container > section:last-of-type {
  padding-bottom: var(--section);
}

ol {
  list-style-position: outside;
  padding-left: 20px;
}

ol li {
  padding-left: 8px;
  margin-top: var(--p-gap);
}

main > section:nth-child(1) {
  margin-top: unset;
  padding-top: var(--section);
}

main div > section:nth-child(1) {
  margin-top: unset;
  padding-top: var(--section);
}

img {
  width: 100%;
}

.no-img {
  width: unset;
}

.gray-section {
  background-color: #535353;
}

header {
  height: 64vh;
  min-height:500px;
  background-size: cover;
  background-position: center;
}

@media screen and (min-width:768px){
  header{
    height:100vh;
  }
}



#index {
  background-image: url("../media/cover/cover_start.png");
}

#about {
  background-image: url("../media/cover/about_cover_neu.png");
  background-position:60%;
}

#leistungen {
  background-image: url("../media/cover/cover_leistungen.png");
}

#karriere {
  background-image: url("../media/cover/cover_karriere.png");
}

#kontakt {
  background-image: url("../media/cover/cover_kontakt.png");
}

#rechtl{
  background-image:url("../media/DSC00827.jpg")
}

#rechtl2{
  background-image:url("../media/DSC00862.jpg")
}

.rounded {
  border-radius: 27px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  /* background-color: #33333319; */

  color: white;
  position: relative;
  z-index: 22;
}

.navbar-logo {
  font-size: 1.5em;
  font-weight: bold;
  width:fit-content;
}

.nav-items {
  display: flex;
  gap: 20px;
  font-family: "Audiowide";
  width:100%;
  justify-content:flex-end;
}

.nav-items a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}

.nav-items a:hover {
  color: var(--green);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  /* cursor: pointer; */
}

.hamburger div {
  height: 4px;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  z-index: 21;
}

.menu-overlay a {
  color: white;
  font-size: 2em;
  text-decoration: none;
  font-family: "Audiowide";
}

.active {
  color: var(--green) !important;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}

.menu-overlay.active {
  display: flex;
}

@media (max-width: 897px) {
  .nav-items {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

.logo {
  width: 176px;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .logo {
    width: 240px;
  }
}

.linear-gradient-gray {
  background: rgb(77, 77, 77);
  background: -moz-linear-gradient(
    180deg,
    rgba(77, 77, 77, 1) 0%,
    rgba(178, 178, 178, 0) 81%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(77, 77, 77, 1) 0%,
    rgba(178, 178, 178, 0) 81%
  );
  background: linear-gradient(
    180deg,
    rgba(77, 77, 77, 1) 0%,
    rgba(178, 178, 178, 0) 81%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4d4d4d",endColorstr="#b2b2b2",GradientType=1);
  height: 37%;
  min-height: 200px;
}

.hero-text {
  height: 63vh;
  min-height:500px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  flex-direction: column;
  font-family: "Orbitron";
  color: #141414;
  text-align: center;
}

#about .hero-text{
  justify-content: flex-end;
  padding-bottom:3rem;
}

/* .hero-text {
  height: 63vh;
  min-height:500px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  flex-direction: column;
  font-family: "Orbitron";
  color: #141414;
  text-align: center;
} */

@media screen and (min-width:768px){
  .hero-text{
    height:100vh;
  }
}

@media screen and (min-width:1356px){
  #about .hero-text{
    justify-content: flex-end;
    padding-bottom:8rem;
  }
}

.white {
  color: var(--black);
}

.green {
  color: var(--green);
}

.black {
  color: var(--bg);
}

.green-underline {
  text-decoration: underline;
  text-decoration-color: #287e00;
  text-underline-offset: 0.5mm;
  text-decoration-thickness: 0.5mm;
}

.hero-text p {
  font-size: 2rem;
  font-family: "Orbitron";
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.groesser {
  font-weight: 800;
  font-size: 2rem;
  font-family: "Orbitron";
}

@media screen and (min-width: 768px) {
  .groesser,
  .hero-text p {
    font-size: 4.5rem;
  }
}

.hero-under {
  font-weight: 100;
  font-size:var(--l-rem) !important;
  margin-top: var(--g-m2);
  font-family: "Orbitron";
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

@media screen and (min-width: 768px) {
  .hero-under {
    font-size: 2.1rem !important;
  }
}

.strom-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 46vh;
  min-height:410px;
  width: 100vw;
  position: relative;
  bottom: -7rem;
}

@media screen and (min-width:552px){
  .strom-container{
    bottom:-8rem;
  }
}

@media screen and (min-width:768px){
  .strom-container{
    height:85vh;
  }
}

@media screen and (min-width: 1440px) {
  .strom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85vh;
    width: 100vw;
    position: absolute;
    top: 8rem;
  }
}

.strom-container img {
  width: 50%;
}

@media screen and (min-width: 1024px) {
  .strom-container img {
    width: unset;
  }
}

.image-container {
  position: relative;
  display: inline-block;
}
.image-container img {
  display: block;
}
.image-container::before {
  content: "";
  border-radius: 27px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(58, 58, 58);
  background: -moz-linear-gradient(
    90deg,
    rgba(58, 58, 58, 0.008841036414565795) 0%,
    rgba(58, 58, 58, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(58, 58, 58, 0.008841036414565795) 0%,
    rgba(58, 58, 58, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(58, 58, 58, 0.008841036414565795) 0%,
    rgba(58, 58, 58, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4c4c4c",endColorstr="#4c4c4c",GradientType=1);
  pointer-events: none; /* Damit das Pseudo-Element keine Interaktionen blockiert */
}

.green-list {
  list-style: none; /* Entfernt die Standard-Listensymbole */
  padding: 0;
}

.green-list li {
  position: relative;
  padding-left: 30px; /* Platz für das Symbol */
  margin-top: 0.8rem;
  font-family: "IBM Plex Sans";
}

.green-list li::before {
  content: url("../media/svg/list.svg");
  position: absolute;
  left: 0;
  top: 63%;
  transform: translateY(-50%); /* Zentriert das Symbol vertikal */
  width: 20px; /* Größe des Symbols anpassen */
  height: auto; /* Höhe automatisch anpassen */
}
.btn-17,
.btn-17 *,
.btn-17 :after,
.btn-17 :before,
.btn-17:after,
.btn-17:before {
  border: none;
  box-sizing: border-box;
}
.btn-17 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: var(--green);
  background-image: none;
  color: #232323;
  cursor: none;
  font-family: "Kumbh Sans";
  font-size:var(--xs-rem);
  font-weight: 900;
  line-height: 1.5;
  -webkit-mask-image: -webkit-radial-gradient(#fff, #fff);
  padding: 0;
  margin-top: var(--g-m3);
}

/* @media screen and (min-width:){
  .btn-17{
    font-size:var(--m-rem);
  }
} */

.btn-17:disabled {
  cursor: default;
}
.btn-17:-moz-focusring {
  outline: auto;
}
.btn-17 svg {
  display: block;
  vertical-align: middle;
}
.btn-17 [hidden] {
  display: none;
}
.btn-17 {
  border-radius: 99rem;
  border-width: 2px;
  padding: 0.8rem 3rem;
  z-index: 0;
}
.btn-17,
.btn-17 .text-container {
  overflow: hidden;
  position: relative;
}
.btn-17 .text-container {
  display: block;
  mix-blend-mode: difference;
}
.btn-17 .text {
  display: block;
  position: relative;
}
.btn-17:hover .text {
  -webkit-animation: move-up-alternate 0.3s forwards;
  animation: move-up-alternate 0.3s forwards;
}
@-webkit-keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(80%);
  }
  51% {
    transform: translateY(-80%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(80%);
  }
  51% {
    transform: translateY(-80%);
  }
  to {
    transform: translateY(0);
  }
}
.btn-17:after,
.btn-17:before {
  --skew: 0.2;
  background: #8dc275;
  content: "";
  display: block;
  height: 102%;
  left: calc(-50% - 50% * var(--skew));
  pointer-events: none;
  position: absolute;
  top: -104%;
  transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
  transition: transform 0.2s ease;
  width: 100%;
  z-index: -1;
}
.btn-17:after {
  --progress: 0%;
  left: calc(50% + 50% * var(--skew));
  top: 102%;
  z-index: -1;
}
.btn-17:hover:before {
  --progress: 100%;
}
.btn-17:hover:after {
  --progress: -102%;
}

.btn-17 {
  display: flex;
  justify-content: flex-start;
}

.btn-arrow {
  width: 10px;
  margin-left: var(--g-m1);
}

.card {
  /* max-width: 348px; */
  background-color: #ebeaef;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* box-shadow: inset 0.3em 0.3em 0.9em #0000005e; */
  height: 196px;
  transition: all 0.3s ease;
  padding:21px;
}

.a-card{
  width:100%;
  max-width:348px;
}

@media screen and (min-width:768px){
  .a-card{
    max-width:100%;
    width:25%;
  }
}

/* @media screen and (min-width:768px){
  .card{
    max-width:unset;
  }
} */
/* 
@media screen and (min-width:){
  .card{
    height:306px;
  }
} */

@media screen and (min-width: 768px) {
  .card {
    padding: 10px;
    height: 206px;
  }
}

@media screen and (min-width: 1024px) {
  .card {
    height: 306px;
  }
}

.card:hover {
  background-color: #8dc275;
  transition: all 0.3s ease;
}

.card-icon img {
  width: 90px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .card-icon img {
    margin-bottom: 0.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .card-icon img {
    margin-bottom: 2rem;
  }
}

.card-text p {
  color: #1a1a1a;
  font-family: "Kumbh Sans";
  font-weight: 900;
  font-size: var(--s-rem);
  margin-bottom: 2rem;
}

/* @media screen and (min-width:){
  .card-text p{
    font-size:var(--xxl-rem);
  }
} */

@media screen and (min-width: 768px) {
  .card-text {
    text-align: center;
  }
}

swiper-container {
  width: 100%;
  height: auto;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-container swiper-slide {
  /* height: 300px; */
  min-height: 300px;
}

swiper-container swiper-slide:nth-child(2n) {
 height: 500px; 
}
 .container-job {
  background-color: #ebeaef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
 
} 

@media screen and (min-width: 768px) {
  .container-job {
    flex-direction: row;
    max-width:unset;
  }
} 

@media screen and (min-width) {
  .container-job {
    background-color: #ebeaef;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
   align-items: center;
  }
} 


@media screen and (max-width:768px){
  .team-white-bg-1{
    border-top-right-radius:10px;
    border-top-left-radius:10px ;
    border-bottom-left-radius: unset!important;
    background: linear-gradient(1deg, rgb(235 234 239) 2%, rgb(81 255 0 / 41%) 71%) !important;
  }
}

.team-white-bg-1{
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: rgb(235,234,239);
background: -moz-linear-gradient(270deg, rgba(235,234,239,1) 39%, rgba(81,255,0,1) 71%);
background: -webkit-linear-gradient(270deg, rgba(235,234,239,1) 39%, rgba(81,255,0,1) 71%);
background: linear-gradient(270deg, rgb(235 234 239) 39%, rgb(81 255 0 / 41%) 71%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ebeaef",endColorstr="#51ff00",GradientType=1);
  padding-left:0;
}

@media screen and (max-width:768px){
  .team-white-bg-right{
    border-top-right-radius:10px;
    border-top-left-radius:10px ;
    border-bottom-right-radius: unset!important;
    background: linear-gradient(1deg, rgb(235 234 239) 2%, rgb(81 255 0 / 41%) 71%) !important;
    padding-right:0;
  }
}

.team-white-bg-right{
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: rgb(235,234,239);
background: -moz-linear-gradient(90deg, rgba(235,234,239,1) 39%, rgba(81,255,0,1) 71%);
background: -webkit-linear-gradient(90deg, rgba(235,234,239,1) 39%, rgba(81,255,0,1) 71%);
background: linear-gradient(90deg, rgb(235 234 239) 39%, rgb(81 255 0 / 41%) 71%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ebeaef",endColorstr="#51ff00",GradientType=1);
  padding-left:0;
  padding-right:0;
  display:flex !important;
  justify-content:flex-end !important;
}

@media screen and (max-width:768px){
  .team-white-bg-2{
    border-top-right-radius:unset !important;
    border-bottom-left-radius:10px !important;
  }
}

.team-white-bg-2{
  background-color:#ebeaef;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media screen and (max-width:768px){
  .team-white-bg-right-2{
    border-top-left-radius:unset !important;
    border-bottom-left-radius:10px !important;
    border-bottom-right-radius:10px;
  }
}

.team-white-bg-right-2{
  background-color:#ebeaef;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.job-pic img {
  max-width: 546px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit:cover;
}

@media screen and (min-width: 768px) {
  .job-pic img {
    width: 298px;
    max-width: unset;
  }
}

@media screen and (min-width: 1024px) {
  .job-pic img {
    width: 390px;
  }
}

@media screen and (min-width: 1440px) {
  .job-pic img {
    width: 543px;
  }
}

@media screen and (min-width) {
  .job-pic img {
    width: 546px;
    height: auto;
    border-radius: 10px;
  }
}

.team-img{
  display:flex;
  justify-content:center;
}

@media screen and (min-width:768px){
  .team-img{
    justify-content:flex-start;
  }
}

@media screen and (max-width:768px){
  .team-img img{
    width:60% !important;
  }
}

.team-img img{
  width:100%;
  height:auto;
  object-fit: contain;
  object-position:bottom;
  border-radius:10px;
}

@media screen and (min-width:992px){
  .team-img img{
    max-width: 277px;
    border-radius: 10px;
    margin-left:0rem;
  }
}

.team-text{
  padding:var(--g-m1);
}

@media screen and (min-width:768px){
  .team-text-right{
    text-align:right;
  }
}


.job-text {
  width:100%;
  padding: 21px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .job-text {
    padding: unset;
  }
}

.job-text h3 {
  font-family: "Kumbh Sans";
  color: #1a1a1a;
  text-transform: none;
  margin-bottom: 7px;
  font-size: var(--xl-rem);
}

/* @media screen and (min-width:){
  .job-text h3{
    font-size:2.2rem;
  }
} */

.job-text p:nth-child(2) {
  font-size: var(--xs-rem);
  color: #1a1a1a;
  font-family: "Kumbh Sans";
  font-weight: 200;
}

.job-text p:nth-child(3) {
  font-size: var(--xs-rem);
  color: #287e00;
  font-family: "Kumbh Sans";
  font-weight: 400;
  margin-top: 28px;
  margin-bottom: 34px;
}

.job-text a {
  font-size: var(--m-rem);
  color: #1a1a1a;
  font-family: "Kumbh Sans";
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 1mm;
  text-decoration-color: #287e00;
}

@media (max-width: 768px) {
  .team-text h3 br {
    display: none;
  }
}


.team-text h3 {
  font-family: "Kumbh Sans";
  font-weight: 800;
  color: #1a1a1a;
  text-transform: none;
  margin-bottom: unset;
  font-size:var(--xxl-rem);
}
@media screen and (min-width:992px){
 .team-text h3{
  font-size:1.4rem;
  margin-bottom:0.5rem;
 } 
}

.team-text p:nth-child(2) {
  font-family: "Kumbh Sans";
  font-weight: 300;
  font-size: var(--xl-rem);
  color: #1a1a1a;
}

@media screen and (min-width:992px){
  .team-text p:nth-child(2){
    font-size:1.3rem;
  }
}

.stelle{
  margin-bottom:2.8rem;
}

.contact-in-card p {
  font-family: "Kumbh Sans";
  font-weight: 500 !important;
  font-size:var(--m-rem) !important;
  color: #1a1a1a;
  margin-top: 0.5rem;
}

@media screen and (min-width:992px){
  .contact-in-card p{
    font-size:1.1rem !important;
  }
}

.contact-in-card a {
  font-family: "Kumbh Sans";
  font-weight: 300 !important;
  font-size: var(--m-rem) !important;
  color: #1a1a1a;
}

@media screen and (min-width:992px){
  .contact-in-card a{
    font-size:1.1rem !important;
  }
}

.contact-in-card {
  margin-top: 17px;
}

/* @media screen and (min-width:){
  .contact-in-card{
    margin-top:50px;
  }
} */

.gender {
  font-weight: 200;
  font-size:var(--l-rem);
}

.rezension {
  width: 70%;
  padding-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .rezension {
    width: 50%;
  }
}

.rezension h2 {
  font-family: "Kumbh Sans";
  font-weight: 800;
  color: var(--black);
  text-transform: none;
  font-size: var(--xxl-rem);
}

.rezension p {
  font-size: var(--xs-rem);
  font-weight:300;
}

@media screen and (min-width:992px){
  .rezension p {
    font-size:var(--xs-rem);
  }
}

#rezension {
  background-image: url("../media/svg/bewertung.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 15%;
}

.right-flex {
  justify-content: end;
}

.img-right img {
 margin:0;
}

@media screen and (min-width:992px){
  .img-right img{
    margin-right: unset;
    margin-left: 12.99rem;
  }
}

.align-right {
  text-align: right;
}

.container-job .align-right{
  text-align:left;
}

@media screen and (min-width:768px){
  .container-job .align-right{
    text-align:right;
  }
}


.footer-mt {
  padding:5rem 0;
}

footer {
  background-color: #414141;
  font-family: "Kumbh Sans";
}

.footer-logo {
  width: 203px;
  padding: 22px 0;
  margin-top: 13px;
}

footer h3 {
  font-size:var(--xl-rem);
  margin-bottom:13px;
}

footer ul li {
  list-style-type: none;
}

footer address {
  font-style: normal;
}

footer h3, footer address, footer p, footer a, footer ul li a{
  font-size:1rem;
}

.header-icons {
  position: fixed;
  right: -2px;
  top: 40%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* cursor: pointer; */
  width: 52px;
  padding: 10px;
  border-radius: 5px;
  background-color: #fcfcfc;
}

@media screen and (min-width: 768px) {
  .icon-wrapper {
    width: 79px;
  }
}

.header-icon {
  height: 29px;
  width: 29px;
  transition: transform 0.3s ease;
}

@media screen and (min-width: 768px) {
  .header-icon {
    height: 40px;
    width: 40px;
  }
}

main {
  background-image: url("../media/svg/bg_strom.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-info {
  position: absolute;
  color: var(--bg);
  right: 100%; /* Start from the right of the icon */
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  background-color: white;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  transition: opacity 0.3s ease, visibility 0.3s ease, right 0.3s ease;
  font-size: 14px;
  z-index: 10; /* Ensure it appears above other elements */
}

.icon-wrapper:hover .header-icon {
  transform: scale(1.2);
}

.icon-wrapper:hover .icon-info {
  opacity: 1;
  visibility: visible;
  right: 120%; /* Move the info box out to the left */
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}

/* @keyframes shake {
  0%, 100% {
      transform: translateX(0);
  }
  25% {
      transform: translateX(-5px);
  }
  50% {
      transform: translateX(5px);
  }
  75% {
      transform: translateX(-5px);
  }
} */

.header-icon {
  transition: transform 0.3s ease;
}

.shaking {
  animation: shake 1.5s ease-in-out;
}

/* .strom-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto; /* Oder eine feste Höhe, wenn nötig */

.no-img {
  position: relative;
  /* width: 100%; */
  height: auto; /* Oder eine feste Höhe, wenn nötig */
  clip-path: inset(
    0 100% 0 0
  ); /* Startet vollständig außerhalb des sichtbaren Bereichs */
  animation: reveal 5s ease-in-out forwards; /* Dauer und Art der Animation anpassen */
}

/* Linke Grafik - Verzögerung hinzufügen, um die Animation nacheinander zu starten */
.strom-container .no-img:nth-child(1) {
  animation-delay: 0s;
}

/* Rechte Grafik - Verzögerung hinzufügen, um die Animation nacheinander zu starten */
.strom-container .no-img:nth-child(2) {
  animation-delay: 4s; /* Verzögerung, damit sie nicht gleichzeitig angezeigt werden */
}

@media screen and (min-width: 1024px) {
  .strom-container .no-img:nth-child(2) {
    right: 1rem;
  }
}

@keyframes reveal {
  from {
    clip-path: inset(
      0 100% 0 0
    ); /* Startet außerhalb des sichtbaren Bereichs */
  }
  to {
    clip-path: inset(0 0 0 0); /* Wird vollständig sichtbar */
  }
}

.kumbhsans {
  font-family: "Kumbh Sans";
}

.rechtl {
  text-align: center;
  margin-bottom: var(--g-m1);
  font-size: 0.9rem;
}

#scrollToTopButton:hover {
  background-color: var(--light-blue);
}

#scrollToTopButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fcfcfc;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  /* cursor: pointer; */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 999;
}

#showBtn {
  opacity: 1;
  transform: translateY(0);
}

.cursor-ball,
  .cursor-outline {

    z-index: 20020;

  }


@media screen and (min-width: 1024px) {
  .cursor-ball {
    width: 8px;
    height: 8px;
    background-color: #000;
    overflow: hidden;
  }

  .cursor-outline {
    width: 3rem;
    height: 3rem;
    border: 1px solid #000;
    transition: all 0.5s ease;
    overflow: hidden;
  }

  .cursor-ball,
  .cursor-outline {
    border-radius: 50%;
    position: absolute;
    z-index: 20020;
    pointer-events: none;
    transform: translate(-50%, -50%);
  }

  .cursor-mousedown {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid #000;
    background-color: var(--green);
  }
}

.upper-under {
  font-size: var(--s-rem);
  text-transform: uppercase;
  font-family: "Kumbh Sans";
  font-weight: 200;
}

/* @media screen and (min-width:){
  .upper-under{
    font-size:1.8rem;
  }
} */

.r-img {
  height: 299px;
  width: 100%;
  border-radius: 27px;
  object-fit: cover;
  margin-top:2rem;
}

/* @media screen and (min-width){
  .r-img{
    height:505px;
    width:533px;
  }
} */

.inner-text-big {
  color: var(--green);
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Kumbh Sans";
  font-size:var(--s-rem);
}

/* @media screen and (min-width:){
  .inner-text-big{
    font-size:var(--xl-rem);
  }
} */

.inner-text {
  color: var(--green);
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Kumbh Sans";
}

/* .timeline {
  position: relative;
  margin: 40px auto;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 1280px) {
  .timeline {
    margin: 77px auto;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-top: var(--g-xs);
}

.timeline-dot {
  position: absolute;
  top: 9px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--green);
  border-radius: 50%;
}

/* .timeline-item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  z-index: -1;
} */

/* .timeline-item:first-child::before {
  display: none;
}

.timeline-date {
  position: relative;
  top: 0;
  left: 3rem;
  font-size: 16px;
  font-weight: bold;
}

.timeline-date h3 {
  margin-bottom: 0.5rem;
  color: var(--black);
  font-size: var(--xl-rem);
}

.timeline-item p {
  margin-left: 3rem;
}

.strich {
  height: calc(100% + 2rem);
  width: 2px;
  top: 10px;
  margin-left: 8.5px;
  position: absolute;
  background-color: var(--green);
}  */

.timeline-date h3{
  text-align:left;
}

.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start; /* Vertikale Ausrichtung */
  padding-left: 50px; /* Platz für den Strich */
}


.timeline-item p{
  padding-bottom:4rem;
  margin-left:-2rem;
}

@media screen and (min-width:768px){
  .timeline-item p{
    margin-left:14rem;
  }
}

.timeline-date {
  display:none;
  
}


@media screen and (min-width:768px){
  .timeline-date{
    display:block;
    position: absolute;
  left: 0; /* Abstand vom Strich */
  text-align: right; /* Datum rechtsbündig */
  font-weight: bold;
  }
}

.date-timeline{
  font-weight:800;
  font-size:var(--m-rem);
  margin-bottom:0.5rem;
  display:block;
}

@media screen and (min-width:768px){
  .date-timeline{
    display:none;
  }
}

#stellenangebot-short{
  padding-bottom:var(--section);
}

.timeline-line {
  position: absolute;
  top: 0; /* Startposition des Strichs */
  left: 15px; /* Platz für den Punkt */
  height: 100%; /* Höhe des Strichs */
  width: 2px; /* Breite des Strichs */
  background-color: var(--green); /* Strichfarbe */
  z-index: 0; /* hinter den Punkten */
}

.timeline-dot {
  position: absolute;
  top: 0; /* Startposition des Punkts */
  left: -0.55rem; /* Position des Punkts */
  width: 20px;
  height: 20px;
  background-color: var(--green);
  border-radius: 50%; /* Runde Form */
  transition: top 0.5s ease; /* Animation beim Bewegen */
}


@media screen and (min-width:768px){
  .timeline-dot{
    left:13.45rem;
  }
}



.timeline-content {
  flex: 1; /* Nimmt den verfügbaren Platz ein */
  padding-left: 20px; /* Abstand zwischen Punkt und Text */
  opacity: 0; /* Initial unsichtbar */
  transition: opacity 0.5s; /* Übergang für Sichtbarkeit */
}


.strich {
  position: absolute;
  left:0;
  width: 2px;
  height: 100%; /* Höhe des Strichs */
  background-color: var(--green);
  z-index: 0;
}

@media screen and (min-width:768px){
.strich{
  left: 14rem; /* Position des Strichs */
}
}



.anrede-h{
  position:absolute;
  z-index:-2;
}

.teammember-info{
  margin-bottom:3rem;
}

.teammember-no-mb{
  margin-bottom:unset;
}

/* @media screen and (min-width:){
  .teammember-info{
    margin-bottom:unset;
  }
} */

.teammember-info p {
  font-family: "Kumbh Sans";
}

.teammember-info p:nth-child(1) {
  font-weight: 800;
  font-size:var(--l-rem);
}

/* @media screen and (min-width:){
  .teammember-info p:nth-child(1) {
    font-weight: 800;
    font-size:var(--s-rem);
  }
} */

.teammember-info p:nth-child(2) {
  font-weight: 200;
}

.container-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.container-grid a{
  display:inline-grid;
}

.item {
  padding: 16px 0;
  display:grid;
  align-self:center;
  justify-content:space-between;
}

.item img {
  width: 90%;
  object-fit: cover;
}

@media (min-width: 600px) {
  .container-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .container-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.grid-5 .item {
  padding: 16px 0;
}

@media (min-width: 600px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1500px) {
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.accordion {
  margin: 10px 0;
}

.ma-top-2 {
  margin-top: 2rem !important;
}

/* Mobile-Version Margin-Top */
.m-t-2{
  margin-top:2rem;
}

@media screen and (min-width:768px){
  .m-t-2{
    margin-top:unset;
  }
}

.accordion-header {
  background-color: #535353;
  border: 1px solid transparent;
  border-radius: 27px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
  width: 100%;
  text-align: left;
  cursor: none;
  transition: all 0.3s ease-out;
}

.accordion-title {
  font-size: var(--xl-rem);
  font-family: "Kumbh Sans";
  color: var(--black);
  font-weight: 500;
  margin-left: 21px;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  margin-right: 21px;
}

.accordion-content {
  padding: 10px;
  background-color: #535353;
  border-top: none;
  display: none;
  border-bottom-left-radius: 27px;
  border-bottom-right-radius: 27px;
  padding: 0 30px;
  padding-bottom: 1rem;
  transition: all 0.3s ease-out;
}

.accordion-header.open {
  border-radius: unset;
  border-top-left-radius: 27px;
  border-top-right-radius: 27px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: all 0.3s ease-out;
}

.mehr-lesen-accordion {
  display: none;
  max-height: auto;
  transition: all 0.3s ease-out;
  overflow: hidden;
  margin-left: 1rem;
  margin-right: 1rem;
}


.mehr-lesen-normal{
  margin-left:0;
}

@media screen and (min-width:768px){
  .mehr-lesen-normal{
    margin-left:93px;
  }
}

@media screen and (min-width:992px){
  .mehr-lesen-normal{
    margin-left:34px;
  }
}

@media screen and (min-width:1024px){
  .mehr-lesen-normal{
    margin-left:125px;
  }
}

@media screen and (min-width:1200px){
  .mehr-lesen-normal{
    margin-left:78px;
  }
}

@media screen and (min-width:1400px){
  .mehr-lesen-normal{
    margin-left:32px;
  }
}

@media screen and (min-width:1440px){
  .mehr-lesen-normal{
    margin-left:185px;
  }
}

.mehr-text-bereich{
  display:none;
}

.mehr-lesen-normal {
  /* margin-left: 0;
  margin-right: 0;
  margin-top: 1rem;
  color: var(--bg); */
  background-color:#ebeaef;
    margin-right: 0;
    margin-top: -1rem;
    color: #1a1a1a !important;
    border-bottom-left-radius: 10px;
    padding: 21px;
    border-bottom-right-radius: 10px;
}

.mehr-lesen-accordion.active {
  display: block;
  transition: all 0.3s ease-out;
}

.mehr-lesen-accordion h3,
.smaller {
  font-size: var(--l-rem);
}

.p-merherfahren{
  font-size:var(--xs-rem);
}

.btn-arrow img{
  margin-bottom:6px;
}

summary {
  color: var(--green);
  font-size: var(--l-rem);
}

.summary-container {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}

.summary-container article {
  margin-top: 24px;
}

/* .summary-container article:nth-child(1){
  margin-top:unset;
} */

.video-container {
  max-width: 100%;
  margin: 2rem auto;
  text-align: center;
}
video {
  width: 100%;
  height: auto;
}

form {
  font-family: "Kumbh Sans";
  padding: var(--g-m3);
}

@media screen and (min-width:768px){
  form{
    padding:var(--g-xl);
  }
}

.form-control {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding: 10px 0;
  margin-bottom: 20px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #b0b0b0;
  font-size: var(--xs-rem);
  box-sizing: border-box;
  font-family: "Kumbh Sans";
  color: #5c5c5c;
}

@media screen and (min-width:768px){
  .form-control{
    font-size:var(--xs-rem);
  }
}

.form-container {
  background-color: #d9d9d9;
  border-radius:26px;
}

@media screen and (min-width:768px){
  .form-container {
    border-radius:unset;
    border-top-left-radius: 26px;
    border-bottom-left-radius: 26px;
  }
}


.form-control:focus {
  outline: none;
}

.form-check-label {
  margin-left: 5px;
  font-size: 14px;
  font-family: "Kumbh Sans";
  color: #5c5c5c;
}

.form-check-input {
  margin-top: 0.3rem;
  margin-right: 5px;
}

.contact-img{
  display:none;
}

@media screen and (min-width:768px){
.contact-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-img img {
  height: 64rem;
  width: 100%;
  max-height: 100%;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
}
}


@media (max-width: 767.98px) {
  .contact-img {
    margin-top: 20px;
    height: auto; /* Sicherstellen, dass das Bild korrekt skaliert */
  }

  .contact-img img {
    height: auto;
    width: 100%; /* Bild in voller Breite anzeigen */
  }
}

.pflicht {
  font-size: 0.9rem;
  font-family: "Kumbh Sans";
  margin-bottom: 1rem;
  font-weight: 200;
}

textarea {
  resize: vertical; /* Nur vertikales Skalieren zulassen */
  width: 100%; /* Breite auf 100% setzen, damit es innerhalb des Containers bleibt */
}

.deco-freq {
  position: absolute;
  right: 0;
  height: 300px !important;
  width: 300px !important;
  margin-top: 320px;
}

@media screen and (min-width:1200px){
  .deco-freq{
    height:396px !important;
    width:385px !important;
    margin-top:250px !important;
  }
}

.small-swiper{
  width:80% !important;
}

#swiper{
  margin: unset !important;
  padding-top: unset !important;
}

swiper-slide img{
  height:588px;
  object-fit: contain;
}

.under-slide{
 padding:30px;
  height:120px !important;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  z-index: 1000;
  background-color: transparent; /* Standard: transparent */
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar.scrolled {
  background-color: #3a3a3aec /* Beispiel: schwarzer Hintergrund mit Transparenz */;
  backdrop-filter: blur(10px);
}

.navbar.scrolled .navbar-logo a img{
  width:20%;

}

.form-check-label a{
  font-size:14px;
  color:#5c5c5c;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 1mm;
}

.gRvRiD:hover, .gRvRiD:active{
  cursor: pointer !important;
}

video{
  margin-left:auto;
  margin-right:auto;
}

#mockup{
  width:276px;
  height:490.66px;
  border-radius:31px;
  margin-top:2rem;
}

@media screen and (min-width:1042px){
  #mockup{
    width:370px;
    height:auto;
    border-radius:66px;
  }
  video{
    margin-left:unset;
    margin-right:unset;
  }
}

/* Fortschrittsbalken, Zeitanzeige, Fullscreen, Bild-im-Bild, Download-Optionen ausblenden */
#mockup::-webkit-media-controls-timeline,
#mockup::-webkit-media-controls-current-time-display,
#mockup::-webkit-media-controls-time-remaining-display,
#mockup::-webkit-media-controls-seek-back-button,
#mockup::-webkit-media-controls-seek-forward-button,
#mockup::-webkit-media-controls-fullscreen-button,
#mockup::-webkit-media-controls-picture-in-picture-button,
#mockup::-webkit-media-controls-overflow-menu-button {
    display: none !important;
}

/* Verhindert den schwarzen Farbverlauf am unteren Rand */
#mockup::-webkit-media-controls-panel {
    border-bottom-left-radius:28px;
    border-bottom-right-radius: 28px;
    padding-bottom:2rem;
    margin: 14px 18px;
}

@media screen and (min-width:1042px){

/* Verhindert den schwarzen Farbverlauf am unteren Rand */
#mockup::-webkit-media-controls-panel {
    border-bottom-left-radius:38px;
    border-bottom-right-radius: 38px;
    padding-bottom:2rem;
    margin: 18px 22px;
}
}

