.elementor-widget-section .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-section .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-158 .elementor-element.elementor-element-55009252{overflow:visible;}.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-2e945f7b */.marquee {
  width: 100%;
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee__content {
  display: flex;
  align-items: center;
  list-style: none;
  animation: scrolling 20s linear infinite;
}

.marquee__item {
  font-family: 'Drupadi', serif;
  color: #ffffff;
  flex-shrink: 0;
  margin-right: 60px;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 2px;
  
  white-space: nowrap;
  transition: opacity 0.4s ease;
}

.marquee__item:hover {
  opacity: 1;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}/* End custom CSS */