.info-beschreibung {
  max-width: 88%;
}

.info-hover {
  width: max-content;
  transform: translateX(0px);
  transition: transform 0.3s var(--ease);
}

.info-hover:hover {
  transform: translateX(10px);
  transition: transform 0.3s var(--ease);
}

.swiper-pagination {
  position: relative;
  text-align: center;
}

.swiper-pagination-bullet-active {
  background: var(--clr-green);
}

.hover-link-beschreibung {
  color: var(--clr-green);
  transform: translateX(0px);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.hover-link-beschreibung:hover {
  color: var(--clr-greendark);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  transform: translateX(5px);
}

/* stoerer */
.stoerer {
  border-radius: 50%;
  background-color: var(--clr-green);
  color: var(--clr-light);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-15deg);
  text-decoration: none;
  transition: transform 0.25s var(--ease);
  position: absolute;
  width: 130px;
  height: 130px;
  top: -130px;
  right: 20px;
}

.stoerer:hover {
  transform: rotate(-10deg);
  transition: transform 0.3s var(--ease);
}

/* video */
.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.hero_video {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0;
  object-fit: cover;
}

/* sound toggle */
#toggle_sound {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 32px;
  color: white;
  z-index: 3;
  cursor: pointer;
  opacity: 1;
  background-color: var(--clr-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.sound_muted,
.sound_unmuted {
  fill: white;
  width: 40px;
  height: auto;
  opacity: 0;
  display: none;
}

#toggle_sound.video_muted .sound_muted {
  opacity: 1;
  display: block;
}

#toggle_sound.video_unmuted .sound_unmuted {
  opacity: 1;
  display: block;
}

/* loading spinner */
.lds-ellipsis {
  position: relative;
  width: 80px;
  height: 80px;
  opacity: 0;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--clr-dark);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

@media screen and (min-width: 640px) {
  .info-beschreibung {
    max-width: 55%;
  }
  .swiper-pagination {
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .stoerer {
    width: 300px;
    height: 300px;
    top: -333px;
    right: -66px;
  }
}
