/**
 * Theme Name:     Stratum Civil
 * Author:         Stratum Civil
 * Template:       hello-elementor
 * Text Domain:	   stratum-civil
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */


/*  SCROLLING TEXT */

.marquee {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 50px; /* space between text and image */
  padding-right: 50px; /* controls distance between repeats */
}

.marquee__group span {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 62px;
  white-space: nowrap;
}

.marquee__group img {
  width: 100%;
  height: auto;
}

/* Smooth infinite loop */
@keyframes marquee {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Optional: Pause on hover */
/* .marquee:hover .marquee__inner {
  animation-play-state: paused;
} */

/* Responsive text and icon sizes */
@media (max-width: 768px) {
  .marquee__group span {
    font-size: 32px;
  }
  .marquee__group img {
    width: 28px;
    height: 28px;
  }
}


/*  */