.elementor-15962 .elementor-element.elementor-element-b6397c4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--background-transition:0.3s;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-edf05c4 */.marquee {
  display: flex;
  overflow: hidden;
  height: 6vh;
  user-select: none;
  gap: 4rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: black; /* Set background color to black */
  color: white; /* Set text color to white */
}

.marquee:hover {
  -webkit-text-stroke: 1px #fff;
  text-stroke: 0.1px #fff;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  transition: all 0.5s ease;
  -webkit-font-smoothing: antialiased;
  /*-moz-osx-font-smoothing: grayscale;*/
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 100%;
  animation: scroll 35s linear infinite reverse; /* Increased duration to 30s */
}

.marquee__group span {
  color: white;
  font-size: 5vw;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Marcellus', serif;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}

@media only screen and (min-width: 360px) {
    .marquee__group span {
        font-size: 11px;
    }
}/* End custom CSS */