@charset "UTF-8";
/* Marquee styles */
.marquee-container {
  width: 100%;
  padding: 5rem 0;
  align-content: center;
  justify-content: center;
  background-color: white;
  border-bottom: 2px rgba(218, 218, 218, 0.24) solid;
  z-index: 3;
}
.marquee-container .marquee-headline {
  align-items: flex-start;
  color: var(--c_grey);
  font-size: var(--step-3);
  padding-bottom: 5rem;
  width: 100%;
  text-align: center;
  font-weight: bold;
}
.marquee-container .marquee {
  --gap: var(--step-8);
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}
.marquee-container .marquee li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee-container .marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  height: fit-content;
}
.marquee-container .marquee__content img {
  height: 75px;
  aspect-ratio: 3/1;
  width: auto;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}
/* Enable animation */
.enable-animation .marquee__content {
  animation: scroll 30s linear infinite;
}

/* Reverse animation */
.marquee--reverse .marquee__content {
  animation-direction: reverse;
}

/* Pause on hover */
.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}

/* Attempt to size parent based on content. Keep in mind that the parent width is equal to both content containers that stretch to fill the parent. */
.marquee--fit-content {
  max-width: fit-content;
}

/* A fit-content sizing fix: Absolute position the duplicate container. This will set the size of the parent wrapper to a single child container. Shout out to Olavi's article that had this solution 👏 @link: https://olavihaapala.fi/2021/02/23/modern-marquee.html  */
.marquee--pos-absolute .marquee__content:last-child {
  position: absolute;
  top: 0;
  left: 0;
}

/* Enable position absolute animation on the duplicate content (last-child) */
.enable-animation .marquee--pos-absolute .marquee__content:last-child {
  animation-name: scroll-abs;
}

@keyframes scroll-abs {
  from {
    transform: translateX(calc(100% + var(--gap)));
  }
  to {
    transform: translateX(0);
  }
}

/*# sourceMappingURL=marquee.css.map */
