:root {
  --effectcolor: #ffaa33;
  --backcolor: #2c2c2c;
  --textcolor: #eeeeee;
  --neutralcolor: #888888;
}

.higrumain {
  background-color: var(--effectcolor);
  color: var(--backcolor);
}

.higrudark {
  background-color: var(--backcolor);
  color: var(--textcolor);
}

.higrulite {
  background-color: var(--textcolor);
  color: var(--backcolor);
}

/*
@font-face {
  font-family: "Catamaran";
  src: url("./fonts/Catamaran.woff2") format("woff2");
}
*/

@font-face {
  font-family: "OpenSans";
  src: url("./fonts/OpenSans-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "OpenSansBold";
  src: url("./fonts/OpenSans-ExtraBold.woff2") format("woff2");
}

@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 900;
  src: url("./fonts/fa-solid-900.woff2") format("woff2");
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

body {
  height: 100%;
  background-color: var(--backcolor);
  font-size: 1rem;
  font-family: "OpenSans", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--textcolor);
}

.fas {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 900;
}

.fa-rotate:before {
  content: "\f2f1";
}
.fa-robot:before {
  content: "\f544";
}
.fa-dumbbell:before {
  content: "\f44b";
}
.fa-person-chalkboard:before {
  content: "\e53d";
}
.fa-handshake:before {
  content: "\f2b5";
}
.fa-chart-bar:before {
  content: "\f080";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-envelope-open-text:before {
  content: "\f658";
}
.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}
.fa-project-diagram:before {
  content: "\f542";
}
.fa-brain:before {
  content: "\f5dc";
}
.fa-code:before {
  content: "\f121";
}
.fa-chalkboard-teacher:before {
  content: "\f51c";
}
.fa-chart-line:before {
  content: "\f201";
}
.fa-running:before {
  content: "\f70c";
}
.fa-map-marked-alt:before {
  content: "\f5a0";
}
.fa-code-branch:before {
  content: "\f126";
}
.fa-tachometer-alt:before {
  content: "\f3fd";
}
.fa-image:before {
  content: "\f03e";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-lock:before {
  content: "\f023";
}
.fa-fire-alt:before {
  content: "\f7e4";
}
.fa-comment-dots:before {
  content: "\f4ad";
}
.fa-microphone-lines:before {
  content: "\f3c9";
}
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-screwdriver-wrench:before {
  content: "\f7d9";
}
.fa-diagnoses:before {
  content: "\f470";
}
.fa-award:before {
  content: "\f559";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-computer:before {
  content: "\e4e5";
}
.fa-arrow-circle-down:before {
  content: "\f358";
}
.fa-signature:before {
  content: "\f5b7";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-star:before {
  content: "\f005";
}
.fa-users:before {
  content: "\f0c0";
}
.fa-hand-holding-dollar:before {
  content: "\f4c0";
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--neutralcolor);
  /* text-shadow: 1px 1px 1px #000000; */
}

/* a:hover {
  transform: rotate(-5deg);
  transition-duration: 0.5s;
} */

hr {
  width: 50%;
}

p {
  font-size: 1.1rem;
  line-height: 1.75rem;
}
h1 {
  font-family: "OpenSansBold", sans-serif;
  font-size: 4.5rem;
  line-height: 4.5rem;
  text-shadow: 0 0 5px var(--backcolor);
}
h2 {
  font-size: 2.5rem;
  font-weight: normal;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
  font-weight: normal;
}
h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: normal;
}
h5 {
  font-size: 1.2rem;
  font-weight: normal;
}

input {
  font-family: "OpenSans", sans-serif;
  font-size: 1.2rem;
  line-height: 2rem;
  width: 320px;
  background-color: var(--textcolor);
  border: 2px solid #888888;
}

input[type="submit"] {
  margin-bottom: 50px;
  width: auto;
  border: none;
}

#regularcheckbox {
  display: inline;
  width: 20px;
}

#nav {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 0;
  transition: 0.5s;
  z-index: 5;
}

#nav a img {
  float: left;
}

/* Logo bleibt unverändert */
#logo {
  height: 80px;
  margin: 10px;
  transition: 0.5s;
}

/*Strip the ul of padding and list styling*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-right: 25px;
}
/*Create a horizontal list with spacing*/
li {
  /* display:inline-block; */
  float: right;
  text-align: center;
  padding-top: 7px;
}
/*Style for menu links*/
li a {
  display: block;
  font-size: 1.2rem;
  margin: 0px 10px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s;
}

/*Hover state for top level links*/
li:hover a {
  border-bottom: 1px solid var(--effectcolor);
}

/*Style for dropdown links*/
li:hover ul a {
  text-align: left;
  border-bottom: none;
  padding: 5px;
}
/*Hover state for dropdown links*/
li ul a:hover {
  color: var(--effectcolor);
}
/*Hide dropdown links until they are needed*/
li ul {
  /* display: none;*/
  position: absolute;

  background-color: var(--backcolor);
  transform: translateY(-400px);
  transition: transform 0.5s;
  margin: 0;
}

/*Make dropdown links vertical*/
li ul li {
  display: block;
  float: none;
  padding: 0;
}
/*Prevent text wrapping*/
li ul li a {
  padding: 5px;
  margin: 2px 0 0 0;
  font-size: 1.1rem;
  text-align: left;
  background-color: var(--textcolor);
  color: var(--backcolor);
  border-bottom: none;
}

/* show dropdown links on hover 
li:hover > ul {
  transform: scaleY(1);
}*/

.submenu {
  text-align: center;
  color: var(--neutralcolor);
  font-size: 1.2rem;
  margin: 0px 10px;
  display: inline-block;
  cursor: pointer;
}

.testi01 {
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}

.testi01:hover {
  transform: translateY(2px);
}

.testi02 {
  margin-left: 5px;
  transition: transform 0.5s;
}

/*Show submenu when invisible checkbox is checked*/

#untermenu:checked + .submenu .testi02 {
  transform: rotate(180deg);
}
#untermenu:checked ~ #subliste {
  transform: translateY(5px);
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
  position: absolute;
  text-decoration: none;
  padding: 10px;
  display: none;
  width: 100%;
  height: 52px;
  background-color: var(--backcolor);
  cursor: pointer;
}

.strich1 {
  height: 4px;
  width: 32px;
  margin: 5px;
  border-radius: 2px;
  background: var(--neutralcolor);
  transition: transform 0.5s;
  transform-origin: 12.5%;
}

.strich2 {
  height: 4px;
  width: 32px;
  margin: 5px;
  border-radius: 2px;
  background: var(--neutralcolor);
  transition: 0.4s;
}

.strich3 {
  height: 4px;
  width: 32px;
  margin: 5px;
  border-radius: 2px;
  background: var(--neutralcolor);
  transition: transform 0.5s;
  transform-origin: 12.5%;
}

/*ab hier ersetze ich mal input[type=checkbox] mit der id showmenu - das klappt weil es im html vorher definiert wird*/
/*Hide checkbox*/
#shomenu {
  display: none;
}

#untermenu {
  display: none;
}

.aktuell {
  border-bottom: 1px solid var(--effectcolor);
}
.aktuell2 {
  color: var(--effectcolor);
}

.intro {
  background-color: var(--backcolor);
  width: 100%;
  height: 100vh;
  /* margin-top: 80px; */
  position: relative;
  overflow: hidden;
}

.introbkgr {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rect1 {
  width: 30vw;
  height: 40vh;
  border: 3px solid #f885;
  border-radius: 25px;
  transform: translate(100px, 150px) rotate(-90deg);
}

.rect2 {
  width: 40vw;
  height: 40vh;
  border: 3px solid #8f85;
  border-radius: 25px;
}
.rect3 {
  width: 30vw;
  height: 30vh;
  border: 3px solid #88f5;
  border-radius: 25px;
  transform: translate(-50px, -150px) rotate(40deg);
}

.welcomefirst {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 70vw;
  z-index: 2;
}

.headersub {
  position: relative;
  width: 100%;
  height: 150px;
}

.headersub1,
.headersub2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  animation: fadeInOut 14s infinite;
}

.headersub1 {
  animation-delay: 0s;
}

.headersub2 {
  animation-delay: 7s;
}

@keyframes fadeInOut {
  0%,
  1% {
    opacity: 0; /* Element ist sichtbar */
  }
  6%,
  45% {
    opacity: 1; /* Element ist unsichtbar */
  }
  50%,
  100% {
    opacity: 0; /* Element ist unsichtbar */
  }
}

.abstandhalterresponsive {
  width: 100%;
  height: 60px;
}

.vanish {
  display: block;
}

.textboxblock {
  width: 90%;
  margin: 10px auto;
  text-align: justify;
}

.textboxcenter {
  width: 85%;
  margin: 10px auto;
  text-align: center;
}

.textboxleft {
  width: 90%;
  margin: 10px auto;
  text-align: left;
}

.hauptteil {
  position: relative;
  background-color: var(--backcolor);
  text-align: center;
  margin-bottom: 250px;
}

.modulecontainer {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.abschnittkompetenzen {
  width: 85%;
  margin: 0 auto;
  border-radius: 10px;
  padding: 35px 5px 60px 5px;
}

.flipcontainer {
  perspective: 1000px;
}
.flipcontainer:hover .moduleflip {
  transform: rotatex(180deg);
}

.moduleflip {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 30px 20px;
  transition: 0.5s;
  transform-style: preserve-3d;
}

.modulefront {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--backcolor);
  border-radius: 10px;
  transform: rotatex(0deg);
  backface-visibility: hidden;
}

.modulefront h3 {
  margin-bottom: 0;
}

.moduleback {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid var(--backcolor);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotateX(180deg);
  backface-visibility: hidden;
}

.moduleback p {
  font-size: 0.9rem;
}

.moduleback a {
  background-color: var(--textcolor);
  padding: 3px 10px 3px 10px;
  border-radius: 5px;
}

.moduleback a:hover {
  box-shadow: 0 0 15px var(--textcolor);
}

.abschnittabout {
  width: 85%;
  margin: 0 auto;
  padding: 20px 60px;
  border-radius: 20px;
}

.abschnittabout img {
  width: 300px;
  display: block;
}

.abschnittabout h2 {
  text-align: center;
}

.abschnittabout figure {
  float: left;
  margin: 5px 10px 0px 0px;
}

figcaption {
  margin: 0px;
  font-size: 0.8rem;
  font-style: italic;
}

.portfolio {
  width: 85%;
  text-align: left;
  margin: 0 auto;
  padding: 80px 50px 140px 50px;
  border-radius: 20px;
}

.portfolio figure {
  margin: 0 10px;
}

.portfolio h2 {
  text-align: center;
}

.left {
  float: left;
}
.right {
  float: right;
}

.abschnittplattform {
  width: 85%;
  margin: 0 auto;
  padding: 50px 0 100px 0;
  background-color: var(--backcolor);
  color: var(--textcolor);
  text-align: center;
}
.abschnittplattform h1 {
  text-align: center;
  margin-bottom: 10px;
}

.abschnittplattform h1 i {
  color: transparent; /* Macht den Text unsichtbar */
  -webkit-text-stroke: 1px #fa3;
}

.abschnittconsulting {
  text-align: center;
  padding: 80px 5%;
  overflow: hidden;
}

.abschnittconsulting img {
  width: 80%;
  height: auto;
  transform: translate(-30px, 25px);
}

.cta {
  margin: 50px auto;
  width: 75%;
  padding: 25px;
  border: 1px solid var(--effectcolor);
  border-radius: 10px;
}

.agilequestions {
  width: 65%;
  margin-left: 35%;
  padding: 5px 20px;
  color: var(--backcolor);
  text-align: left;
  font-size: 1.2rem;
  border: 4px solid var(--neutralcolor);
  border-radius: 10px;
  transform: translateY(-30px);
  background-color: #ffffffb0;
  backdrop-filter: blur(4px);
}

ol {
  list-style-type: decimal; /* Standard nummerierte Liste */
  margin-left: 20px; /* Abstand von links, um die Liste einzurücken */
  padding: 0px 10px 20px 20px; /* Innenabstand, um den Text einzurücken */
}

/* Stile für die Listenelemente */
ol li {
  float: none;
  text-align: left;
  margin-bottom: 10px; /* Abstand zwischen den Listenelementen */
  line-height: 1.5; /* Zeilenhöhe für bessere Lesbarkeit */
}

ol li::marker {
  font-size: 1.25rem;
  font-weight: bold;
}

.modulecontainernetz {
  position: relative;
  padding: 30px 0px;
  margin: 0;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.netzimage {
  background-image: url("images/netzquad.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translate(-250px, -250px) scale(1.5) rotate(0deg);
  animation: netz 180s ease-in-out infinite;
  z-index: 1;
  opacity: 0.3;
}

@keyframes netz {
  0% {
    transform: translate(-300px, -300px) scale(1.5) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(300px, 300px) scale(3) rotate(-90deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(300px, -300px) scale(2) rotate(-180deg);
    opacity: 0.5;
  }
  75% {
    transform: translate(-300px, 300px) scale(3) rotate(-270deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(-300px, -300px) scale(1.5) rotate(-360deg);
    opacity: 0.3;
  }
}

.moduleziele {
  width: 300px;
  height: 300px;
  margin: 20px;
  padding: 50px;
  border-radius: 50%;
  background-color: var(--textcolor);
  color: var(--backcolor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.moduleziele i {
  font-size: 60px;
}

.modulebotscontainer {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.modulebots {
  width: 160px;
  height: 160px;
  margin: 5px;
  padding: 30px;
  border: 3px solid var(--textcolor);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.abschnittwarum {
  display: flex;
  padding: 100px 0px;
}

.warumimage {
  flex: 40%;
  height: auto;
  background-image: url("images/heroimg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.warumtext {
  padding-top: 20px;
  flex: 60%;
}

.modulewarum {
  position: relative;
  margin: 0px 100px;
  text-align: left;
  padding: 15px 0px 20px 50px;
  border-left: 2px dashed var(--effectcolor);
}
.modulewarum h5 {
  margin: 10px 0;
  text-transform: uppercase;
}

.modulewarum p {
  margin: 0 0 0 -10px;
}

.warumicon {
  position: absolute;
  width: 80px;
  height: 80px;
  font-size: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0px;
  left: -40px;
}

.abschnittvoicebot {
  text-align: center;
  padding: 90px 5%;
}

.abschnittvoicebot img {
  width: 60%;
  height: auto;
}

.abschnittcontact {
  padding: 90px 5%;
}

.abschnittcontact i {
  font-size: 60px;
}

.modulecontactcontainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.modulecontact {
  padding: 15px;
  text-align: left;
}

.abschnitttrend {
  padding: 10px 5% 100px 5%;
}

.moduletrend {
  width: 260px;
  margin: 15px;
  padding-right: 5px;
  text-align: right;
  border-right: 2px solid var(--effectcolor);
}

.moduletrend em {
  font-family: "OpenSansBold", sans-serif;
  color: var(--effectcolor);
  font-style: normal;
  font-size: 50px;
}

.moduletrend em b {
  font-size: 100px;
}

.btn {
  cursor: pointer;
  padding: 2px 10px;
  margin: 35px 0px;
  border-radius: 5px;
  box-shadow: 4px 4px 5px var(--backcolor);
}

.btn:hover {
  box-shadow: 5px 5px 10px var(--backcolor);
}

.btn p {
  margin: 7px;
}

.abschnittpreise {
  width: 85%;
  margin: 0 auto;
  padding: 50px 0;
}

.preisliste {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 50px 0;
}

.preisspalte {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  border: 2px solid var(--effectcolor);
  background-color: var(--textcolor);
  color: var(--backcolor);
  border-radius: 5px;
}

.preisspalte hr {
  height: 2px;
  width: 80%;
  background-color: var(--backcolor);
}
.preis {
  width: auto;
  padding: 20px;
}

.preis h3 {
  margin: 0;
}

.preis p {
  font-weight: 700;
  margin-top: 0;
}

.preis ul {
  float: none;
  position: static;
  max-width: 200px;
  margin: 0 auto;
}

.preis li {
  list-style-type: none;
  float: none;
  position: static;
  text-align: left;
  margin-left: 20px;
  margin-bottom: 10px;
}

.preis li::before {
  content: "✔"; /* Unicode für Häkchen-Symbol */
  color: var(--effectcolor);
  margin-left: -20px;
  margin-right: 6px;
}

.abschnitttabelle {
  margin: 0 auto;
  padding: 90px 10px;
}

.dstabelle {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.dsspalte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 30px 1px;
}
.dsreihe {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.dszelle,
.dserstezelle,
.dsallererstezelle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--effectcolor);
  color: var(--backcolor);
  font-weight: bold;
  width: 110px;
  height: 120px;
  padding: 5px;
  border-bottom: 2px solid var(--backcolor);
}

.dserstezelle {
  display: none;
}

.dszelle {
  background-color: var(--textcolor);
  width: 150px;
}

.dszelle i {
  text-shadow: 4px 4px 3px var(--neutralcolor);
}

.dot {
  background-color: var(--textcolor);
  position: fixed;
  bottom: 55px;
  right: 55px;
  z-index: 10;
  transform-origin: 0 0;
}
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);
  }
}
.dot:nth-child(1) {
  --orbit-radius: 45px;
  animation: orbit 5s linear infinite;
  width: 1px;
  height: 1px;
}
.dot:nth-child(2) {
  --orbit-radius: 60px;
  animation: orbit 7s linear infinite;
  width: 1px;
  height: 1px;
}
.dot:nth-child(3) {
  --orbit-radius: 75px;
  animation: orbit 10s linear infinite;
  width: 2px;
  height: 2px;
}
.dot:nth-child(4) {
  --orbit-radius: 90px;
  animation: orbit 11s linear infinite;
  width: 2px;
  height: 2px;
}
.dot:nth-child(5) {
  --orbit-radius: 105px;
  animation: orbit 13s linear infinite;
  width: 3px;
  height: 3px;
}
.dot:nth-child(6) {
  --orbit-radius: 120px;
  animation: orbit 15s linear infinite;
  width: 3px;
  height: 3px;
}

.allbots {
  width: 50%;
  margin: 0 auto;
  padding: 150px 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.allbots h3 {
  border: 2px solid var(--neutralcolor);
  padding: 10px 20px;
  margin: 20px auto;
  border-radius: 25px;
}

.testimonialcontainer {
  width: 100%;
  padding: 70px 0 100px 0;
}

.testimonialflex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.testimonial {
  width: 80%;
  padding: 20px 5%;
  text-align: center;
}
.testimonial i {
  color: var(--effectcolor);
}
.testimonial h5 {
  text-align: justify;
  margin-top: 0;
}

.testimonialcontainer hr {
  width: 50%;
  margin: 60px auto;
}

.hauptdemo {
  background-color: #eeeeee;
  height: 100%;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.landing {
  text-align: center;
  font-family: "OpenSansBold", sans-serif;
  color: #07174a;
  font-size: 1.5em;
  padding: 10px;
}

.bluhm {
  height: 50vh;
  width: 100%;
  margin: 0;
  background-image: url(images/bluhm.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.comdat {
  height: 60vh;
  width: 100%;
  margin: 0;
  background-image: url(images/comdat2.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.demofuhta {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #111111;
}

.showmore {
  display: block;
}

.morenews {
  max-height: 0;
  overflow: hidden;
  transition: 10s ease-in;
}

#more:target ~ .morenews {
  max-height: 10000px;
}
#more:target ~ .showmore {
  display: none;
}

/*
iframe {
  border-radius: 10px;
  border: none;
  width: 40%;
}
*/

.safarihack {
  height: 1px;
  background: transparent;
}

.fuhta {
  width: 100%;
  height: 252px;
  position: fixed;
  bottom: 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.downlinks {
  display: flex;
  justify-content: center;
}

.downlinks a {
  padding: 20px;
  color: var(--backcolor);
}

.copyright {
  margin: 20px 0px 10px 0px;
}

/* ++++++++++++++++++++++++++ HIER KOMMT DER RESPONSIVE PART FÜR MOBILE DEVICES +++++++++++++++++++++++++ */

@media screen and (max-width: 700px) {
  input {
    width: 300px;
  }

  .vanish {
    display: none;
  }

  .left {
    float: none;
  }
  .right {
    float: none;
  }

  .module {
    width: 95%;
    margin: 20px auto;
    padding: 20px 10px;
  }

  .abstandhalterresponsive {
    height: 30px;
  }

  .abschnittabout {
    width: 94%;
    padding: 10px 20px 0px 20px;
  }

  .abschnittabout img {
    width: 100%;
  }

  .abschnittabout figure {
    float: none;
    margin: 10px auto;
  }

  .dsspalte {
    width: 85%;
  }

  .dserstezelle,
  .dsallererstezelle {
    display: flex;
    width: 140px;
    padding: 15px;
  }

  .dszelle {
    width: 180px;
    padding: 15px;
  }

  .testimonial {
    width: 85%;
    padding: 20px 2.5%;
  }
  .testimonialcontainer hr {
    width: 60%;
    margin: 40px auto;
  }

  .portfolio {
    width: 92%;
    padding: 20px;
  }

  .portfolio img {
    width: 100%;
  }

  .abschnittkompetenzen {
    width: 90%;
  }

  .abschnittconsulting img {
    width: 90%;
    transform: translate(0px, 12px);
    margin: 0 auto;
    text-align: center;
  }

  .agilequestions {
    width: 90%;
    transform: none;
    margin: 0 auto;
    padding: 0 10px 0 20px;
    font-size: 1.1rem;
  }

  .abschnittplattform {
    width: 85%;
    text-align: left;
  }
  .abschnittplattform h2 {
    text-align: center;
  }

  ol {
    margin-left: 0px; /* Abstand von links, um die Liste einzurücken */
    padding: 0px 6px 10px 15px; /* Innenabstand, um den Text einzurücken */
  }

  /* Stile für die Listenelemente */
  ol li {
    margin-bottom: 0px; /* Abstand zwischen den Listenelementen */
    line-height: 1.3; /* Zeilenhöhe für bessere Lesbarkeit */
  }

  .modulecontainernetz {
    margin: 0px;
    padding: 0;
  }

  .textboxcenter {
    width: 100%;
  }

  .modulecontact {
    padding: 0;
  }

  .abschnitttermin {
    display: none;
  }

  /*
  iframe {
    width: 60%;
  }
*/

  .downlinks {
    flex-direction: column;
  }

  .downlinks a {
    padding: 8px;
  }

  .copyright {
    margin: 15px 0px 10px 0px;
  }
  p {
    font-size: 1em;
  }
  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
  h5 {
    font-size: 1.1rem;
  }

  .abschnittvoicebot img {
    width: 80%;
  }

  .cta {
    width: 90%;
  }

  .intro {
    margin-top: 0px;
    /* height: 85%; */
  }

  .icons {
    font-size: 40px;
  }

  .abstandhalterhero {
    display: block;
  }

  .modulewarum {
    margin: 0px 25px 0px 50px;
  }

  .introbkgr {
    flex-direction: column;
  }

  .rect1 {
    transform: translate(100px, 30px) rotate(-75deg);
  }

  .rect3 {
    transform: translate(-100px, -80px) rotate(40deg);
  }

  .header {
    width: 80vw;
  }

  .aktuell {
    border-bottom: none;
    text-decoration: underline;
  }

  .abschnitticons {
    padding-top: 20px;
  }

  .abschnitticons em {
    font-size: 3rem;
    width: 60%;
  }

  .abschnitticons p {
    width: 90%;
  }

  .abschnittpreise {
    width: 92%;
  }

  .preisspalte {
    width: 85%;
    margin-bottom: 25px;
  }

  .preis ul {
    float: none;
    position: static;
    transform: none;
  }

  .preis li {
    list-style-type: none;
    float: none;
    position: static;
    text-align: left;
    margin-left: 20px;
    margin-bottom: 10px;
  }

  .preis li::before {
    content: "✔"; /* Unicode für Häkchen-Symbol */
    color: var(--effectcolor);
    margin-left: -20px;
    margin-right: 6px;
  }

  #nav {
    padding: 0px !important;
    background: none !important;
    color: var(--textcolor);
  }

  #nav a img {
    float: right;
    margin: 5px 10px 0 0;
    position: relative;
    z-index: 9;
  }

  #logo {
    height: 46px !important;
  }

  ul {
    position: fixed;
    margin: 0;
    padding: 25px 0 50px 0;

    transform: translateY(-644px);
    background: none;
    transition: 0.6s;
    width: 100%;
  }

  ul li {
    float: none;
  }

  li a {
    margin: 0;
    font-size: 1.5rem;
    padding: 15px 0;
    border-bottom: none;
  }

  li:hover a {
    text-decoration: underline;
    border-bottom: none;
  }

  li ul {
    text-align: center;
    height: auto;
    background-color: var(--backcolor);
    padding: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  li ul li a {
    background-color: var(--textcolor);
    color: var(--backcolor);
    width: 50%;
    font-size: 1.2rem;
    padding: 8px;
    margin: 3px auto;
  }

  li:hover > ul li a {
    background-color: var(--textcolor);

    text-decoration: none;
    width: 50%;

    padding: 8px;
    margin: 3px auto;
  }

  li ul li a:hover {
    color: var(--effectcolor);
  }

  /*Display 'show menu' link*/
  .show-menu {
    display: block;
  }

  /*Show menu when invisible checkbox is checked*/
  #shomenu:checked ~ #menu {
    background: var(--backcolor);
    transform: translateY(44px);
    top: 0px !important;
  }

  #shomenu:checked + .show-menu .strich1 {
    transform: rotate(45deg);
  }

  #shomenu:checked + .show-menu .strich2 {
    opacity: 0;
    transform: translateX(300px);
  }

  #shomenu:checked + .show-menu .strich3 {
    transform: rotate(-45deg);
  }

  #shomenu:checked + .show-menu {
    position: fixed;
    top: 0px !important;
  }

  /*Show menu when invisible checkbox is checked*/
  #untermenu:checked ~ #subliste {
    transform: scaleY(1);
  }
  .submenu {
    font-size: 1.5rem;
    padding: 15px 0;
  }
}
