/** Shopify CDN: Minification failed

Line 49:7 Unexpected "and"

**/
.scrolling-text--outer {
    overflow: hidden;
    display: flex
  }

.scrolling-text--inner {
    animation: marquee-left 25s linear infinite;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 50px;
    margin-right: 50px;
}

.scrolling-text--inner img {
    max-height: 30px;
}

@keyframes marquee-left {
    0% {
      transform: translateX(0%); }
    100% {
      transform: translateX(-100%); } 
}

.marquee-heading {
    display: flex;
    align-items: center;
}

.marquee-heading strong {
    color: #6a6a6a;
    font-weight: 700;
}

.marquee-heading::after {
    content: '';
    flex: 1;
    margin-left: 10px;
    height: 1px;
    background-color: #000;
}

@media and (min-width: 990px) {
    .hero-banner p {
        font-size: 2.2rem;
        line-height: 1.4;
    }
}