/* getaway-pro home/kunden overrides — system font stack + OUR CLIENTS infinite ticker.
   Ported verbatim from the original inline <style id="js-slides-fonts"> on index.html.
   Loaded on the home + kunden routes (after the Slides framework CSS). */

.slides,
.slides p {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    "Helvetica Neue", sans-serif;
  font-weight: normal;
}
.slides h1,
.slides h2,
.slides h3,
.slides h4,
.slides h5,
.slides h6 {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    "Helvetica Neue", sans-serif;
  font-weight: bold;
}
.slides .button,
.slides .slides-form {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    "Helvetica Neue", sans-serif;
  font-weight: bold;
}

/* Infinite Carousel (OUR CLIENTS) */
.infinite-carousel {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: 30px 0px 15px 0px;
  position: absolute;
  bottom: 0;
}
.carousel-title {
  color: gray;
  text-align: center;
  margin-bottom: 10px;
}
.carousel-container {
  display: flex;
  animation: scroll 40s linear infinite;
  width: calc(170px * 22);
}
.carousel-item {
  height: 100px;
  margin: 0 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.carousel-item img,
.carousel-item svg {
  max-height: 50%;
  width: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(100%);
}
.carousel-item svg {
  height: auto;
  width: auto;
}
.carousel-item:hover {
  transform: translateY(-10px) scale(1.05);
}
.carousel-item:hover img {
  filter: grayscale(0%);
}
.carousel-item:hover .carousel-overlay {
  transform: translateY(0);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-170px * 11));
  }
}
.carousel-container:hover {
  animation-play-state: paused;
}

@media (max-width: 680px) {
  .infinite-carousel {
    padding: 0px 0px 80px 0px;
  }
  .carousel-title {
    display: none;
  }
  .carousel-item img {
    max-height: 40%;
  }
  .carousel-item img,
  .carousel-item svg {
    filter: none;
  }
  .carousel-container {
    width: calc(266px * 22);
    animation-duration: 35s;
  }
  body section[data-cid="slide-118-23874518"] div.wrap {
    padding-top: 0 !important;
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-266px * 11));
    }
  }
}

@media (min-height: 800px) {
  .hero {
    justify-content: center;
  }
}
