/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 30px; /* space between logos */
  animation: marquee 30s linear infinite;
}

.logo-track img {
  height: 80px;      /* set fixed height */
  width: auto;
  flex: 0 0 auto;    /* prevent stretching */
}

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