/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --red:        #5e1914;   /* RAL 3005 wine red */
  --red2:       #7a211b;   /* hover */
  --red-pale:   rgba(94,25,20,.07);
  --red-light:  rgba(94,25,20,.16);

  --dark:       #0d0e10;   /* near-black hero / footer */
  --dark2:      #161719;
  --dark-card:  rgba(255,255,255,.045);
  --dark-bdr:   rgba(255,255,255,.08);
  --dark-muted: rgba(235,230,228,.48);

  --bg:         #f7f6f4;   /* warm off-white page bg */
  --alt:        #f0eeeb;   /* mission section */
  --paper:      #ffffff;

  --text:       rgba(10,8,8,.88);
  --muted:      rgba(10,8,8,.52);
  --muted2:     rgba(10,8,8,.36);
  --line:       rgba(10,8,8,.08);
  --line2:      rgba(10,8,8,.05);

  --shadow:     0 2px 8px rgba(10,8,8,.05), 0 14px 40px rgba(10,8,8,.08);
  --shadow-lg:  0 4px 20px rgba(10,8,8,.06), 0 30px 80px rgba(10,8,8,.12);

  --max:        1160px;
  --r:          20px;
  --rsm:        12px;
  --ease:       cubic-bezier(.16,1,.3,1);
  --t:          .22s cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ──────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-bdr);
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.32) }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 24px 13px 16px;
  max-width: none;
  margin: 0;
}

.brand { display: flex; align-items: center; gap: 10px }

/* red wrapper + multiply blend: white PNG bg becomes red, black text stays dark */
.brand__logo-wrap {
  background: var(--red);
  border-radius: 6px;
  padding: 7px 14px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  isolation: isolate;
}
.brand__logo { height: 26px; width: auto; mix-blend-mode: multiply; display: block }

.menu { display: flex; gap: 2px }
.menu a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(235,230,228,.44);
  padding: 8px 11px;
  border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.menu a:hover { color: rgba(235,230,228,.88); background: rgba(255,255,255,.05) }

.header__right { display: flex; align-items: center; gap: 8px }

.lang { display: flex; gap: 5px }
.lang__btn {
  border: 1px solid rgba(255,255,255,.10);
  background: transparent;
  color: rgba(235,230,228,.44);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 11px;
  cursor: pointer;
  transition: all var(--t);
}
.lang__btn:hover { border-color: rgba(255,255,255,.22); color: rgba(235,230,228,.80) }
.lang__btn.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.burger {
  display: none;
  border: 1px solid rgba(255,255,255,.10);
  background: transparent;
  border-radius: var(--rsm);
  width: 40px; height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 16px; height: 2px;
  background: rgba(235,230,228,.68);
  border-radius: 2px;
}

.drawer {
  display: none;
  border-top: 1px solid var(--dark-bdr);
  background: rgba(13,14,16,.98);
}
.drawer__inner {
  padding: 12px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.drawer__link {
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rsm);
  background: rgba(255,255,255,.02);
  letter-spacing: .12em;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(235,230,228,.44);
  transition: all var(--t);
}
.drawer__link:hover { color: rgba(235,230,228,.88); background: rgba(255,255,255,.06) }
.drawer.is-open { display: block }

@media (max-width: 960px) {
  .menu { display: none }
  .burger { display: flex }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  min-height: calc(100svh - 58px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* background video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* dark overlay dims video to ~20% visible */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,8,.80);
  z-index: 1;
  pointer-events: none;
}
/* red glow on top of overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 700px at 15% 50%, rgba(94,25,20,.22), transparent 55%),
    radial-gradient(700px 500px at 85% 60%, rgba(94,25,20,.10), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: stretch;
  width: 100%;
  min-height: calc(100svh - 58px);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 0;
}

.hero__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.chip {
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  color: rgba(235,230,228,.62);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
}

.hero__headline {
  margin: 0 0 22px;
  font-size: clamp(54px, 7.8vw, 100px);
  line-height: .90;
  letter-spacing: -0.03em;
  font-weight: 950;
  color: rgba(235,230,228,.96);
}
.hero__headline span { display: block }
.hero__headline span:last-child { color: var(--red) }

.hero__lead {
  margin: 0;
  color: var(--dark-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 50ch;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  border: 1px solid transparent;
  transition: all var(--t);
  cursor: pointer;
}

.btn--white {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn--white:hover {
  background: rgba(240,236,232,.92);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
}

.btn--ghost-inv {
  background: transparent;
  color: rgba(235,230,228,.72);
  border-color: rgba(255,255,255,.18);
}
.btn--ghost-inv:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.32);
  color: rgba(235,230,228,.95);
}

.btn--accent {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--accent:hover {
  background: var(--red2);
  border-color: var(--red2);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(94,25,20,.30);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: rgba(10,8,8,.05);
  border-color: rgba(10,8,8,.16);
}

/* ── HERO PANEL (right) ──────────────────────────────────── */
.hero__panel {
  border-left: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.32);
  display: flex;
  align-items: flex-end;
  padding: 48px 36px;
}

.hero__panel-inner { display: flex; flex-direction: column }

.hero__pname {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 950;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(235,230,228,.90);
  line-height: 1.08;
}
.hero__pline {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,.14);
  margin: 20px 0;
}
.hero__pest {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--red);
}
.hero__ploc {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(235,230,228,.28);
  letter-spacing: .04em;
}
.hero__ptag {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(235,230,228,.32);
  letter-spacing: .04em;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .hero { min-height: auto; padding: 64px 0 52px }
  .hero__inner { grid-template-columns: 1fr; min-height: auto }
  .hero__content { padding: 0 }
  .hero__panel { display: none }
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 84px 0 48px }
.section--dark { background: var(--dark); padding: 84px 0 64px }
.section--alt  { background: var(--alt) }

.section__head { margin-bottom: 36px }

.section__head h2 {
  margin: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  flex-direction: column;
  gap: 9px;
}
.section__head h2::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.section--dark .section__head h2 {
  color: rgba(235,230,228,.35);
}
.section--dark .section__head h2::after {
  background: rgba(235,230,228,.15);
}

.section__head p {
  margin: 14px 0 0;
  font-size: 17px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.65;
}
.section--dark .section__head p { color: var(--dark-muted) }

.section__head--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section__head--center p { margin-left: auto; margin-right: auto }

/* ── ABOUT CARDS ─────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--r);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: var(--r) var(--r) 0 0;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card__num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--red);
  opacity: .55;
  margin-bottom: 16px;
  display: block;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.01em;
}
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.70 }

@media (max-width: 880px) { .cards { grid-template-columns: 1fr } }

/* ── NUMBERS (dark section) ──────────────────────────────── */
.numbers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.number {
  border: 1px solid var(--dark-bdr);
  background: var(--dark-card);
  border-radius: var(--r);
  padding: 26px 18px;
  text-align: center;
  transition: background var(--t);
}
.number:hover { background: rgba(255,255,255,.075) }
.number__value {
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -.01em;
  color: rgba(235,230,228,.96);
  line-height: 1;
}
.number__label {
  margin-top: 8px;
  color: rgba(235,230,228,.34);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}
@media (max-width: 960px) { .numbers { grid-template-columns: repeat(2, 1fr) } }

/* Fleet block */
.fleet-block {
  border: 1px solid var(--dark-bdr);
  border-radius: var(--r);
  padding: 28px 28px;
  background: var(--dark-card);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}
.fleet-block__info h3 {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(235,230,228,.32);
}
.fleet-block__info p {
  margin: 0;
  color: rgba(235,230,228,.34);
  font-size: 13px;
  line-height: 1.65;
}
.fleet-block__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fleetrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--rsm);
  padding: 11px 16px;
  background: rgba(255,255,255,.025);
  transition: background var(--t);
}
.fleetrow:hover { background: rgba(255,255,255,.06) }
.fleetrow span:first-child { color: rgba(235,230,228,.64); font-size: 14px }
.fleetrow span:last-child  { font-weight: 900; color: rgba(235,230,228,.90); font-size: 15px }
@media (max-width: 760px) { .fleet-block { grid-template-columns: 1fr } }

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline {
  list-style: none;
  margin: 0; padding: 0 0 0 32px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--red) 0%, rgba(94,25,20,.08) 100%);
  border-radius: 2px;
}
.timeline li {
  position: relative;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.timeline li:not(.tl__photos)::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid rgba(94,25,20,.22);
  transition: all var(--t);
}
.timeline li:not(.tl__photos):not(.has-photos):hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-light);
}
.timeline li.has-photos:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--red-light);
}
.timeline li:not(.tl__photos):hover::before {
  background: var(--red);
  border-color: var(--red);
}
.tl__time {
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--red);
  font-size: 13px;
  align-self: start;
  padding-top: 3px;
}
.tl__desc { color: var(--muted); font-size: 14px; line-height: 1.65 }

/* ── timeline photo strips ────────────────────────────────── */
/* use .timeline li.tl__photos (specificity 0,2,1) to beat .timeline li (0,1,1) */
.timeline li.tl__photos {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 14px 22px 22px;
  margin-left: 0;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-top: none;
  background: var(--paper);
  box-shadow: var(--shadow);
  border-radius: 0 0 var(--r) var(--r);
  overflow: hidden;
}
/* entry whose photo strip follows — merge bottom edge into strip */
.timeline li.has-photos {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
  border-bottom-color: var(--line2);
}
/* photo strip images — equal width, side by side */
.timeline li.tl__photos img {
  flex: 1 1 0%;
  min-width: 0;
  height: 220px;
  object-fit: cover;
  border-radius: var(--rsm);
  box-shadow: var(--shadow);
  display: block;
  transition: transform .4s var(--ease), filter .4s;
  filter: brightness(.95) saturate(.9);
}
.timeline li.tl__photos img:hover {
  transform: translateY(-3px);
  filter: brightness(1) saturate(1);
  box-shadow: var(--shadow-lg);
}
/* brand logo cards inside photo strips */
.timeline li.tl__photos .tl__photos__brand {
  height: 90px;
  object-fit: contain;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--rsm);
  padding: 16px 24px;
  box-shadow: none;
  flex: 1;
  filter: none;
}
.timeline li.tl__photos .tl__photos__brand:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

@media (max-width: 860px) {
  .timeline li { grid-template-columns: 110px 1fr }
  .tl__img { display: none }
}
@media (max-width: 640px) {
  .timeline { padding-left: 20px }
  .timeline li { grid-template-columns: 1fr }
  .timeline li::before { left: -25px }
}

/* ── MISSION / VISION / VALUES ───────────────────────────── */
.mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mv__card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.mv__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: var(--r) var(--r) 0 0;
}
.mv__card h3 {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}
.mv__card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.70 }
.mv__card--wide { grid-column: 1 / -1 }

.values {
  margin: 0; padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.values li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--rsm);
  background: var(--bg);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  transition: background var(--t), border-color var(--t);
}
.values li:hover { background: var(--red-pale); border-color: var(--red-light) }

@media (max-width: 880px) {
  .mv { grid-template-columns: 1fr }
  .values { grid-template-columns: 1fr }
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

/* left: big heading */
.contact-intro h2 {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 950;
  letter-spacing: -.03em;
  color: rgba(235,230,228,.92);
  margin: 0 0 16px;
  line-height: .92;
  text-transform: uppercase;
}
.contact-intro p {
  color: var(--dark-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 38ch;
}
/* right: panel */
.contact-panel {
  border: 1px solid var(--dark-bdr);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  overflow: hidden;
}

.cri {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--t);
}
.cri:last-of-type { border-bottom: none }
.cri:hover { background: rgba(255,255,255,.04) }

.cri__icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(94,25,20,.35);
  background: rgba(94,25,20,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.cri__icon svg { width: 18px; height: 18px }

.cri__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cri__label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(235,230,228,.28);
}
.cri__val {
  font-size: 15px;
  color: rgba(235,230,228,.82);
  font-weight: 500;
  text-decoration: none;
}
.cri__val--link { transition: color var(--t) }
.cri__val--link:hover { color: #fff }

.contact-panel__actions {
  display: flex;
  gap: 10px;
  padding: 18px 22px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px }
  .contact-intro__logo { margin-top: 20px }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-bdr);
  padding: 28px 0 44px;
  font-size: 13px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(235,230,228,.38);
}
.footer__logo-wrap {
  background: var(--red);
  border-radius: 5px;
  padding: 3px 8px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  isolation: isolate;
  opacity: .55;
}
.footer__logo { height: 16px; width: auto; mix-blend-mode: multiply; display: block }
.footer__sub { color: rgba(235,230,228,.22) }

/* ── BRANDS MARQUEE ──────────────────────────────────────── */
.brands-section {
  background: var(--paper);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: 36px 0;
}
.brands-label {
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted2);
  margin: 0 0 28px;
}
.brands-strip {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brands-track {
  display: flex;
  align-items: center;
  /* NO gap — use margin-right on each img so trailing space is included in width,
     making translateX(-50%) land exactly at the loop point */
  width: max-content;
  animation: brands-scroll 28s linear infinite;
  padding: 4px 0;
}
.brands-track:hover { animation-play-state: paused }
.brands-track img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  margin-right: 72px;
  /* transparent-bg PNGs — opacity fade works cleanly (no white bg to grey out) */
  filter: grayscale(1) opacity(0.45);
  transition: filter .3s;
}
.brands-track img:hover { filter: grayscale(0) opacity(1) }
@keyframes brands-scroll {
  0%   { transform: translateX(0) }
  100% { transform: translateX(-50%) }
}
