/** Shopify CDN: Minification failed

Line 105:0 Unexpected "}"

**/
.marquee-wrapper {
    /* display: flex; */
    gap: 70px;
    position: relative;
    /* height: 100%; */
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: hidden;
}
@media screen and (max-width: 768px) {

}

:root {
    --color-text: navy;
    --color-bg-accent: #ecdcc0;
    --size: clamp(10rem, 1rem + 25vmin, 20rem);
    --gap: 70px;
    --duration: 20s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}

.marquee {
    display: flex;
    user-select: none;
    gap: var(--gap);
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
    animation: scroll var(--duration) linear infinite;
      padding: 0;
}

@media screen and (min-width: 990px) {
    .marquee:hover .marquee__group {
        animation-play-state: paused;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused;
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

@media screen and (max-width: 749px) {
    :root {
        --size: clamp(12rem, 1rem + 30vmin, 20rem);
            --gap: 30px;
    }
}

/* Element styles */
.marquee .featured-icon__item {
    display: grid;
    place-items: center;
    width: var(--size);
    height: 100%;
}
.multicolumn-card{
  height: 100%;
}
@media screen and (min-width: 990px) {
.featured-in-card__image-wrapper{
  margin: 0 1.5rem;
}
}
.featured-in-card__image-wrapper img{
  max-width: 100%;
  height:auto;
}
.featured-in-header{
  text-align:center;
  font-size: 16px;
  padding: 40px 20px;
  font-weight: 500;
  letter-spacing:0.18em;
}

.scrolling__item h2{
  margin: 0;
    font-size: 30px; 
    line-height: 1.4;
}
}
@media screen and (min-width: 990px) {
  .scrolling__item h2{
        --font-heading-scale: 1.75;
  }
}