.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-6dae1b9 */.marquee {
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.marquee li {
	list-style: none;
  font-size: 50px;
}

.marquee__content {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  list-style: none;
  animation: scrolling 25s linear infinite;
}

.marquee__item {
  flex-shrink: 0;
}

.marquee__item img{
height:80px;
margin-right: 30px;
opacity: 0.5;
transition: all 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 */