.aktionen {
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  height: 33vw;
  position: relative;
  height: 800px;
}

.aktionen img {
  position: absolute;
  width: 44%;
}

.ak1 {
  left: 0;
  bottom: 0;
  z-index: 10;
}

.ak2 {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}

.ak3 {
  right: 0;
  bottom: 0;
  z-index: 20;
}

.aktionen_wrapper {
  height: 50vh;
}

.aktion {
  filter: drop-shadow(10px 10px 5px #00000050);
}

.aktion:hover {
  filter: drop-shadow(10px 10px 5px #00000090);
  cursor: pointer;
  transform: scale(1.04);
  transition: all 0.3s ease;
}

.ak2:hover {
  filter: drop-shadow(10px 10px 5px #00000090);
  cursor: pointer;
  transform: translate(-50%, 0%) scale(1.04);
  transition: all 0.3s ease;
}

@media only screen and (max-width: 1600px) {
  .aktionen {
    position: relative;
    height: 100vw;
  }
  .aktionen img {
    width: 60%;
  }
  .ak3 {
    top: 50%;
    transform: translate(0%, -50%);
    z-index: 10;
  }
  .ak3:hover {
    transform: translate(0%, -50%) scale(1.04);
  }
  .ak1 {
    bottom: 0;
  }

  .ak2 {
    left: 0;
    transform: translate(0%, 0%);
  }
  .ak2:hover {
    transform: translate(0%, 0%) scale(1.04);
  }
}
