.elementor-22509 .elementor-element.elementor-element-6ba0652{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--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 container, class: .elementor-element-6ba0652 */.l-header {
    top:32px !important; /* Push main nav down */
}
    
.ticker-tape {
  background-color: black;
  overflow: hidden;
  position: fixed; /* <-- now applies to all screens */
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  padding: 10px 0;
  min-height: 32px;
}


.ticker-track {
  display: flex;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden; /* hides text before fade-in */
  transition: opacity 0.4s ease;
  will-change: transform;
}

.ticker-track.ready {
  opacity: 1;
  visibility: visible;
}

.ticker-track.animate {
  animation-name: scroll-left;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.scroll-text {
  display: inline-block;
  font-size: 18px;
  color: white;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: bold;
  padding: 0 100px;
}

.ticker-tape:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--scroll-distance));
  }
}

/* MOBILE OVERRIDES */
@media screen and (max-width: 767px) {
    
    .l-nav, .l-header {
        top: 105px !important;
    }
  .scroll-text {
    font-size: 16px;
    font-weight: normal;
    padding: 0 40px;
  }


  .ticker-tape {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }
}/* End custom CSS */