/* Start custom CSS for html, class: .elementor-element-4518c52 */.scrolling-text {
  background: #f1ebe1;    /* Your requested color */
  color: #000;            /* Black text */
  padding: 10px 0;
  font-size: 108px;
  font-weight: 1600;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  white-space: nowrap;
}

.scrolling-text span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 28s linear infinite;
}

/* Scrolling Animation */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}/* End custom CSS */