.announcement-bar {
  width: 100%;
  background: #111;
  color: #fff;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: slide-left 15s linear infinite;
}

.announcement-item {
  padding: 0 40px;
  white-space: nowrap;
  font-weight: 500;
  color: #ffcc00;
}

@keyframes slide-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile fix */
@media (max-width: 768px) {
  .announcement-bar {
    font-size: 12px;
    height: 36px;
  }
  .tp-header-bottom-3 {
        padding-bottom: 0px;
        padding-top: 0px; 
    }
}