<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*****************************************************************************/
/* topbar-2024 */

/* Marquee styles */
.marquee {
  --gap: 4rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 60s linear infinite;
  color: #fff;
  line-height: 24px;
  font-family: 'SharpGrotesk';
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  text-indent: 50px;
  padding-left: 0;
  list-style: none;
}

.marquee__content_link {
  color: #fff;
  text-underline-offset: 6px;
}

.marquee__content_link:hover {
  color: #1066E6;
}

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

@media only screen and (max-width: 480px) {


}
</pre></body></html>