.hero-img-container {
  max-height: 25rem;
}

.hero-img {
  width: 100vw;
}

.tooltip-value {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.position-relative {
  position: relative;
}

.content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.selection {
  margin: auto;
  margin-bottom: 20px;
}

.selection button {
  padding: 12px 24px;
  font-size: 2.4em;
  cursor: pointer;
  margin: 15px;
  border: none;
  background-color: #ddd;
  color: #002137;
}

.selection button.active {
  background-color: #002137;
  color: #fff;
  font-size: 2.4rem !important;
  padding: 20px 40px !important;
}

.selection button.active:hover {
  color: #002137 !important;
}

.display-container {
  position: relative;
  height: calc(25.05rem + 0.66vw);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.item {
  display: none;
  position: absolute;
  width: 80%;
  transition: opacity 0.5s ease-in-out;
  text-align: center;
}

.item.active {
  display: block;
  opacity: 1;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px; /* Abgerundete Ecken */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schatteneffekt */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation bei Hover */
}

.image-card img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.image-card .zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.image-card .zoom-icon:hover {
  opacity: 1;
}

.image-card:hover {
  transform: translateY(-5px); /* Leichte Bewegung bei Hover */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Stärkerer Schatten bei Hover */
}

.card-body {
  text-align: center;
  background-color: #ffffff; /* Heller Hintergrund für Text */
  border-radius: 0 0 15px 15px; /* Nur die unteren Ecken abrunden */
}

.card-title {
  color: #333; /* Dunkler Text für besseren Kontrast */
}

/* Entfernt den Standard-Border von Bootstrap */
.card {
  border: none;
}

.arrow {
  cursor: pointer;
  color: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
}

#prevExperience {
  left: 0px;
}

#nextExperience {
  right: 0px;
}

.pagination {
  margin-top: calc(24.05rem + 0.66vw);
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #333;
}

.team-section {
  margin: 0 auto;
  text-align: center;
  border-radius: 8px;
}

.container-area {
  box-sizing: border-box;
  position: relative;
  display: flex;
  height: 700px;
  width: 1200px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.center-text-area {
  position: absolute;
  max-width: 450px;
  font-size: 1rem;
  color: #333;
  text-align: center;
}
.circle-area {
  position: relative;
  width: 100%;
  height: 100%;
}
.circle-area img {
  position: absolute;
  width: 175px;
  height: 175px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.circle-area img:nth-child(1) {
  top: calc(50% - 40%);
  left: 50%;
  transform: translate(-50%, -50%);
}
.circle-area img:nth-child(2) {
  top: calc(50% - 40% * cos(51.43deg));
  left: calc(50% + 40% * sin(51.43deg));
  transform: translate(-50%, -50%);
}
.circle-area img:nth-child(3) {
  top: calc(50% - 40% * cos(102.86deg));
  left: calc(50% + 40% * sin(102.86deg));
  transform: translate(-50%, -50%);
}
.circle-area img:nth-child(4) {
  top: calc(50% - 40% * cos(154.29deg));
  left: calc(50% + 40% * sin(154.29deg));
  transform: translate(-50%, -50%);
}
.circle-area img:nth-child(5) {
  top: calc(50% - 40% * cos(205.71deg));
  left: calc(50% + 40% * sin(205.71deg));
  transform: translate(-50%, -50%);
}
.circle-area img:nth-child(6) {
  top: calc(50% - 40% * cos(257.14deg));
  left: calc(50% + 40% * sin(257.14deg));
  transform: translate(-50%, -50%);
}
.circle-area img:nth-child(7) {
  top: calc(50% - 40% * cos(308.57deg));
  left: calc(50% + 40% * sin(308.57deg));
  transform: translate(-50%, -50%);
}
.circle-area img.active {
  width: 250px;
  height: 250px;
  opacity: 1;
  z-index: 1;
}
.circle-area img.inactive {
  opacity: 0.3;
}

#movable-image {
  width: 75px; /* Größe des Bildes anpassen */
  height: auto;
  display: block;
  z-index: 1000; /* Sicherstellen, dass das Bild über anderen Elementen liegt */
}
#curve_chart {
  min-height: 500px;
}

/* Popup-Design */
.popup {
  position: absolute;
  z-index: 100;
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: none;
  font-size: 0.9rem;
  width: 300px;
  line-height: 1.4;
  text-align: left;
}
.popup h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
  font-weight: bold;
}
.popup p {
  margin: 5px 0;
}
.highlight {
  opacity: 0.5 !important; /* Setzt die Transparenz auf 0.3 */
  transition: opacity 0.5s;
}

.team-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.034);
}

.team-section h2 {
  margin-top: 20px;
  color: #333;
}

.team-section p {
  font-size: 18px;
  margin-top: 10px;
}

.faq-section {
  margin: 0 auto;
  width: 100%;
}

.faq-question {
  width: 100%;
  cursor: pointer;
  padding: 10px;
  margin: 7px 0;
  border: 2px solid #002137;
  background-color: white;
  text-align: left;
  outline: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #ccd3d7;
}

.faq-answer {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
  border-left: 3px solid #f1f1f1;
}

.active .faq-answer {
  display: block;
}

label {
  display: block;
  margin: 10px 0 5px;
  color: #343a40;
}

input[type="number"],
select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #343a40;
}

.result {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #e9ecef;
  border-radius: 4px;
}

.video-placeholder {
  width: auto;
  height: auto;
  min-height: 540px;
  background-color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555;
  font-size: 18px;
  border: 2px dashed #aaa;
}
.wall-project-img {
  width: 100%;
  height: auto;
}

.custom-list li {
  margin-bottom: 5px;
}

@media (max-width: 1200px) {
  .display-container {
    height: 35rem;
  }
  .pagination {
    margin-top: 34rem;
  }
}

@media (max-width: 550px) {
  .display-container {
    height: 44rem;
  }

  .pagination {
    margin-top: 43rem;
  }
}

@media (max-width: 430px) {
  .display-container {
    height: 55rem;
  }

  .pagination {
    margin-top: 54rem;
  }
}

@media (max-width: 860px) {
  .wall-project-img {
    height: 100%;
    width: auto;
  }
}

@media (max-width: 720px) {
  .hero-img-container {
    height: 50vh;
    text-align: center !important;
    left: 0;
  }
  .hero-img {
    width: auto !important;
    height: 100%;
  }
}
