/** Shopify CDN: Minification failed

Line 32:1 Expected "}" to go with "{"

**/


/* CSS from section stylesheet blocks */
#gallery_logo {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
    max-width:880px;
    margin: auto;
}

#gallery_logo p {
  display: inline-block;
  padding-right: 50px; /* Adjust the spacing between text blocks */
  animation: slide-left-right 20s linear infinite;
}

@keyframes slide-left-right {
  0% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
}