.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS for html, class: .elementor-element-8f58ad6 */.marquee {
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.marquee__content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.marquee__track {
  display: flex;
  animation: scrolling 20s linear infinite;
}

.marquee__item {
  flex-shrink: 0;
  margin-right: 30px;
  list-style: none;
}

.marquee__item img {
  height: 80px;
  opacity: 0.5;
  transition: opacity 0.5s ease;
  cursor: pointer;
  user-select: none;
}

.marquee__item img:hover {
  opacity: 1;
}

@keyframes scrolling {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}/* End custom CSS */