.container-area {
  box-sizing: border-box;
  position: relative;
  display: flex;
  height: 700px;
  width: 1100px;
  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: 150px;
  height: 150px;
  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(72deg));
  left: calc(50% + 40% * sin(72deg));
  transform: translate(-50%, -50%);
}
.circle-area img:nth-child(3) {
  top: calc(50% - 40% * cos(144deg));
  left: calc(50% + 40% * sin(144deg));
  transform: translate(-50%, -50%);
}
.circle-area img:nth-child(4) {
  top: calc(50% - 40% * cos(216deg));
  left: calc(50% + 40% * sin(216deg));
  transform: translate(-50%, -50%);
}
.circle-area img:nth-child(5) {
  top: calc(50% - 40% * cos(288deg));
  left: calc(50% + 40% * sin(288deg));
  transform: translate(-50%, -50%);
}
.circle-area img.active {
  width: 200px;
  height: 200px;
  opacity: 1;
  z-index: 1;
}
.circle-area img.inactive {
  opacity: 0.3;
}

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

/* Popup-Design */
.popup {
  position: absolute;
  z-index: 100;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: none;
  font-size: 0.9rem;
  width: 350px;
  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 {
  margin: 0 auto;
  text-align: center;
  border-radius: 8px;
}

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

.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;
}

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

.hero-img {
  width: 100vw;
}

.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;
}

@media (max-width: 544px) {
  .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%;
  }
}

@media (max-width: 540px) {
  .hero-img-container {
    height: 30rem !important;
    width: 100% !important;
    left: 0;
  }
  .hero-img {
    width: auto !important;
    height: 100%;
  }
}