@charset "UTF-8";
/* ============================================================
   Section 1 — Marquee logo đối tác
   Nguồn: section-1/style.css — toàn bộ scope trong .section-1
   ============================================================ */
/* Keyframes phải nằm ngoài wrapper (tên keyframes là global) */
/* Nội dung được nhân đôi nên dịch đúng nửa track + nửa gap = 1 bộ logo */
@keyframes partners-scroll {
  to {
    transform: translateX(calc(-50% - 60px));
  }
}
.section-1,
.section-1 *,
.section-1 *::before,
.section-1 *::after {
  box-sizing: border-box;
}
.section-1 {
  /* ---------- Marquee logo đối tác ---------- */
}
.section-1.vib-partners {
  background: #ffffff;
  height: 77px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.section-1 .vib-partners__container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}
.section-1 .vib-partners__track {
  display: flex;
  align-items: center;
  gap: 120px;
  width: -moz-max-content;
  width: max-content;
  animation: partners-scroll 40s linear infinite;
  will-change: transform;
}
@media (min-width: 1025px) {
  .section-1 .vib-partners__track:hover {
    animation-play-state: paused;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-1 .vib-partners__track {
    animation: none;
  }
}
.section-1 .vib-partners__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.section-1 .vib-partners__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-1 .vib-partners__item img {
  height: 56px;
  /* 1 giá trị chung */
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=section-1.css.map */