/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


	
	
.logo-track1 {
  display: inline-flex; /* Chạy ngang */
  animation: scroll 20s linear infinite;
}

.logo-track1 img {
  height: 80px; /* Kích thước logo */
  margin: 0 40px; /* Khoảng cách giữa logo */
  flex-shrink: 0; /* Không bị co lại */
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

}