@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@1,700;1,800;1,900&family=Golos+Text:wght@400;500;600;700&display=swap");
@keyframes drive {
  to {
    transform: scale(1.13) translateX(-1%);
  }
}
@keyframes speed {
  0% {
    left: 115%;
    opacity: 0;
  }
  12% {
    opacity: 0.65;
  }
  65% {
    opacity: 0.15;
  }
  100% {
    left: -65%;
    opacity: 0;
  }
}
:root {
  --navy: #082654;
  --dark: #061a3b;
  --red: #dc2f2f;
  --paper: #f2f5fa;
  --muted: #62728a;
  font-family: "Golos Text", Arial, sans-serif;
  color: var(--navy);
  background: white;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #2279ee;
  outline-offset: 5px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 30;
  background: white;
  padding: 16px;
}
.skip:focus {
  top: 10px;
}
.header {
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 35px;
  position: relative;
  z-index: 10;
  background: #fff;
}
.logo {
  width: 245px;
  height: 55px;
  overflow: hidden;
  margin-right: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
nav a {
  padding: 14px 0;
}
nav a:hover {
  color: var(--red);
}
.header-cta {
  background: var(--navy);
  color: white;
  font-size: 14px;
  display: flex;
  gap: 25px;
  align-items: center;
  padding: 18px 25px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 26px;
  color: var(--navy);
}
.hero {
  position: relative;
  min-height: 690px;
  background: var(--dark);
  color: white;
  overflow: hidden;
  padding: 65px 6% 0;
}
.hero-picture {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  background-size: cover;
  background-position: center;
  background-image: url("assets/mercedes-w213-restored.webp");
  animation: drive 4s ease-out 1 both;
}
.hero-picture:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 22, 53, 0.98) 0%,
      rgba(4, 22, 53, 0.82) 25%,
      rgba(4, 22, 53, 0.14) 68%
    ),
    linear-gradient(0deg, #061a3bc9, transparent 30%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 28px;
}
.red-line {
  height: 3px;
  width: 30px;
  background: var(--red);
}
h1 {
  font-family: "Exo 2", Arial, sans-serif;
  font-size: clamp(4rem, 7.1vw, 7rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.045em;
  line-height: 0.97;
  margin: 0 0 27px;
}
h1 em {
  font-style: inherit;
  color: #fff;
  position: relative;
}
h1 em:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  height: 6px;
  width: 88px;
  background: var(--red);
  transform: skewX(-20deg);
}
.hero-description {
  font-size: 18px;
  line-height: 1.65;
  color: #c8d4e5;
  margin: 30px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 26px;
  transition:
    background 0.25s,
    transform 0.25s;
  min-height: 60px;
}
.button:hover {
  transform: translateY(-3px);
}
.red {
  background: var(--red);
  color: #fff;
}
.red:hover {
  background: #c12727;
}
.hero-caption {
  position: relative;
  z-index: 2;
  margin-top: 47px;
  border-top: 1px solid #ffffff30;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #b8c6de;
}
.speed-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.55;
}
.speed-lines i {
  position: absolute;
  height: 2px;
  width: 34%;
  top: 26%;
  left: 100%;
  background: linear-gradient(90deg, transparent, #c8e2ff);
  transform: rotate(-13deg);
  animation: speed 3s ease-out 1 both;
}
.speed-lines i:nth-child(2) {
  top: 67%;
  background: linear-gradient(90deg, transparent, var(--red));
  animation-delay: 0.35s;
}
.speed-lines i:nth-child(3) {
  top: 88%;
  width: 22%;
  height: 1px;
  animation-delay: 0.7s;
}
.direction-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy);
  color: white;
}
.direction-bar a {
  display: flex;
  align-items: center;
  padding: 27px 10%;
  border-right: 1px solid #ffffff26;
  font-size: 16px;
  transition: background 0.25s;
  gap: 20px;
}
.direction-bar a:hover {
  background: var(--red);
}
.section {
  padding: 95px 6%;
}
.section-title {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0 70px;
  margin-bottom: 45px;
}
.section-title .eyebrow {
  grid-column: 1/-1;
  color: var(--red);
}
h2 {
  font-family: "Exo 2", Arial, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  line-height: 1.06;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.035em;
  margin: 0;
}
h2 em {
  color: var(--red);
  font-style: inherit;
}
.section-title > p:last-child:not(.eyebrow) {
  align-self: end;
  justify-self: end;
  max-width: 390px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
.product-rows {
  border-top: 1px solid #dbe2ed;
}
.product-row {
  display: grid;
  align-items: center;
  gap: 35px;
  padding: 38px 20px 38px 0;
  border-bottom: 1px solid #dbe2ed;
  transition:
    background 0.3s,
    padding 0.3s;
  grid-template-columns: 1fr 180px;
}
.product-row:hover {
  background: var(--paper);
  padding-left: 20px;
}
.product-row h3 {
  font-size: 27px;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0 0 12px;
}
.product-row p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 580px;
  margin: 0 0 18px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags span {
  font-size: 12px;
  background: var(--paper);
  border: 1px solid #dfe6f0;
  padding: 7px 11px;
}
.row-code {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #8b9bb4;
}
.row-code b {
  font-family: "Exo 2", sans-serif;
  letter-spacing: -0.04em;
  font-size: 42px;
  line-height: 1.2;
  font-style: italic;
  color: #c1cddd;
}
footer {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 35px 6%;
  background: var(--dark);
  color: #9cacc7;
  font-size: 12px;
}
footer strong {
  font-family: "Exo 2", sans-serif;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: white;
}
footer > span:last-child {
  margin-left: auto;
}
[hidden] {
  display: none !important;
}
.brands {
  background: var(--paper);
  padding-top: 80px;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1px;
  background: #dce4ef;
  border: 1px solid #dce4ef;
}
.brand.mirax .partner-logo {
  background: #082654;
  padding: 7px 12px;
  border-radius: 4px;
}
.brand-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 22px 0 0;
}
.solutions {
  background: var(--navy);
  color: white;
}
.solutions-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 55px;
}
.solutions-top .eyebrow {
  margin: 0;
  color: #b7c8e5;
}
.audience-tabs {
  display: flex;
  border: 1px solid #41608a;
  padding: 5px;
  flex-shrink: 0;
}
.audience-tabs button {
  border: 0;
  color: #c4d1e6;
  padding: 15px 22px;
  background: transparent;
  font-size: 14px;
}
.audience-tabs button span {
  font-size: 12px;
  margin-left: 12px;
  opacity: 0.7;
}
.audience-tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--navy);
}
.audience-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 85px;
}
.solution-lead {
  font-size: 16px;
  line-height: 1.8;
  color: #bdcbe2;
  max-width: 430px;
  margin: 27px 0 30px;
}
.solution-list article {
  padding: 26px 0;
  border-bottom: 1px solid #ffffff24;
  display: block;
}
.solution-list article:first-child {
  padding-top: 0;
}
.solution-list h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.solution-list p {
  font-size: 15px;
  line-height: 1.8;
  color: #bdcbe2;
  margin: 0;
}
.media-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 30px;
}
.media-filters button {
  background: transparent;
  border: 1px solid #d0dcea;
  color: #526682;
  padding: 12px 20px;
  font-size: 14px;
}
.media-filters button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.media-card h3 {
  font-weight: 600;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 15px;
}
.about {
  background: var(--paper);
}
.about > .eyebrow {
  color: var(--red);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
}
.about-grid > div > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.about-grid > div > .about-lead {
  font-size: 23px;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.03em;
  margin-top: 0;
}
.text-link {
  font-size: 14px;
  display: inline-flex;
  gap: 25px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #abbad0;
  line-height: 1.7;
}
.text-link:hover {
  color: var(--red);
}
.contact {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--red);
}
.contact > .eyebrow {
  color: #b8c8e2;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: center;
}
.contact-grid h2 {
  font-size: clamp(2.8rem, 4.1vw, 4.5rem);
}
.contact-grid p {
  font-size: 16px;
  color: #bdcbe2;
  line-height: 1.7;
  margin: 0 0 25px;
}
.contact-note {
  display: block;
  font-size: 12px;
  color: #a9bfdf;
  margin-top: 16px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-style: normal;
  margin: 0 0 22px;
}
.contact-phone {
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.3;
  white-space: nowrap;
}
.contact-email {
  font-size: 19px;
  border-bottom: 1px solid #ffffff66;
  padding-bottom: 4px;
}
.contact-details > span {
  font-size: 14px;
  line-height: 1.7;
  color: #c2cdd9;
}
.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}
.hero-content a {
  pointer-events: auto;
}
.plate-overlay {
  position: absolute;
  overflow: visible;
  pointer-events: none;
}
.plate-hit {
  fill: transparent;
  pointer-events: all;
}
.plate-digits {
  font:
    italic 14px Arial,
    sans-serif;
  fill: #4b535b;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.company-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 38px 0 0;
  padding-top: 28px;
  border-top: 1px solid #cbd4dc;
}
.company-facts dt {
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--red);
}
.company-facts dd {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.company-mission {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #cbd4dc;
}
.company-mission h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--navy);
}
.company-mission p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transform: none;
}
.brand-grid .brand {
  display: grid;
  grid-template-rows: 80px 1fr auto;
  align-items: stretch;
  justify-content: normal;
  min-width: 0;
  min-height: 278px;
  padding: 25px 20px;
  gap: 18px;
  border: 0;
  background: #fff;
  text-align: center;
  position: relative;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.brand-grid .brand .partner-logo {
  width: 185px;
  max-width: 100%;
  height: 68px;
  object-fit: contain;
  display: block;
}
.brand-grid .brand.mozer .partner-logo {
  height: 80px;
}
.brand-grid .brand.vmp .partner-logo {
  height: 68px;
}
.brand-grid .brand-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.brand-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 8px 16px;
  position: relative;
  z-index: 1;
}
.brand-links a {
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid #dce4ef;
  padding-bottom: 3px;
}
.brand-links a:hover {
  color: var(--red);
  border-color: currentColor;
}
.brand-mark:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 5px;
}
.brand-mark:after {
  content: "";
  position: absolute;
  inset: 0;
}
.brand.efele .brand-links {
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.brand-grid .brand-links {
  min-height: 52px;
}
.media-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #d5dde2;
  background: white;
  min-width: 0;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.media-card:hover {
  border-color: var(--red);
  box-shadow: 0 6px 20px #14212809;
}
.media-card .media-meta {
  margin: 0 0 20px;
  align-items: flex-start;
  line-height: 1.5;
  font-size: 13px;
  gap: 20px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}
.media-meta strong {
  color: var(--navy);
  font-size: 13px;
  white-space: nowrap;
}
.media-card p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 18px;
  color: var(--muted);
}
.media-audience {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: auto;
  padding-top: 6px;
}
.media-card .media-link {
  align-self: flex-start;
  margin-top: 22px;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
  border-bottom: 1px solid #b5c2cc;
  padding-bottom: 4px;
}
.filter-status,
.media-source-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.filter-status {
  margin: 25px 0 7px;
}
.media-source-note {
  margin: 0;
  max-width: 870px;
}
.industrial-guide {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 55px;
  background: var(--paper);
  padding: 35px;
  margin: 0 0 36px;
  border-left: 4px solid var(--red);
}
.industrial-guide .eyebrow {
  color: var(--red);
  margin: 0 0 17px;
}
.industrial-guide h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--navy);
}
.industrial-guide p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 15px;
}
.industrial-guide ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
.industrial-guide li {
  display: grid;
  gap: 6px;
}
.industrial-guide li strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.industrial-guide li span {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
@media (max-width: 1100px) {
  .header {
    gap: 20px;
  }
  .logo {
    width: 199px;
    height: 47px;
  }
  nav {
    gap: 18px;
    font-size: 13px;
  }
  .header-cta {
    gap: 12px;
  }
  .direction-bar a {
    padding: 24px 7%;
    font-size: 14px;
  }
  .product-row {
    gap: 22px;
    grid-template-columns: 1fr 140px;
  }
  .row-code b {
    font-size: 34px;
  }
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1000px) {
  .solutions-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .audience-panel {
    gap: 45px;
  }
  .about-grid {
    gap: 45px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid > div {
    max-width: 450px;
  }
}
@media (max-width: 760px) {
  .header {
    height: 80px;
    padding: 0 5%;
    gap: 12px;
  }
  .logo {
    width: 167px;
    height: 43px;
  }
  .header-cta {
    font-size: 12px;
    gap: 10px;
    padding: 13px;
  }
  .menu-toggle {
    display: block;
    margin-left: 0;
  }
  nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 6%;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid #dbe2ed;
  }
  nav.open {
    display: flex;
  }
  .hero {
    padding: 48px 6% 0;
    min-height: 690px;
  }
  h1 {
    font-size: clamp(3.4rem, 11vw, 5.5rem);
  }
  .hero .eyebrow {
    font-size: 11px;
    letter-spacing: 0.03em;
    gap: 10px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-picture {
    background-position: 65% center;
  }
  .hero-picture:after {
    background:
      linear-gradient(90deg, #061a3be8, #061a3b65), linear-gradient(0deg, #061a3b, transparent 35%);
  }
  .hero-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    line-height: 1.7;
    font-size: 11px;
    margin-top: 55px;
  }
  .direction-bar {
    grid-template-columns: 1fr;
  }
  .direction-bar a {
    padding: 20px 6%;
    border-right: 0;
    border-bottom: 1px solid #ffffff26;
    font-size: 15px;
  }
  .section {
    padding: 62px 6%;
  }
  .section-title {
    display: block;
    margin-bottom: 30px;
  }
  .section-title > p:last-child:not(.eyebrow) {
    margin-top: 22px;
    font-size: 15px;
  }
  .section-title .eyebrow {
    margin-bottom: 22px;
  }
  .product-row {
    gap: 15px;
    padding: 28px 0;
    grid-template-columns: 1fr;
  }
  .product-row h3 {
    font-size: 23px;
  }
  .product-row p {
    font-size: 14px;
    max-width: 100%;
  }
  .row-code {
    display: none;
  }
  .tags span {
    font-size: 11px;
    padding: 6px 9px;
  }
  .product-row:hover {
    padding-left: 0;
  }
  footer {
    flex-wrap: wrap;
    gap: 15px;
  }
  footer > span:last-child {
    width: 100%;
    margin-left: 0;
  }
  .brands {
    padding-top: 60px;
  }
  .brand-note {
    font-size: 12px;
  }
  .solutions-top {
    gap: 24px;
    margin-bottom: 37px;
  }
  .solutions-top .eyebrow {
    font-size: 11px;
    letter-spacing: 0.03em;
  }
  .audience-tabs {
    width: 100%;
  }
  .audience-tabs button {
    flex: 1;
    padding: 14px 10px;
  }
  .audience-tabs button span {
    margin-left: 8px;
  }
  .audience-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solution-list h3 {
    font-size: 21px;
  }
  .solution-list p {
    font-size: 15px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .about-grid > div > .about-lead {
    font-size: 22px;
  }
  .contact-grid h2 {
    font-size: clamp(2.4rem, 8.6vw, 3.5rem);
  }
  .contact-phone {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .contact-email {
    font-size: 18px;
  }
  .company-facts {
    margin-top: 28px;
    gap: 20px;
  }
  .industrial-guide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px 22px;
  }
  .industrial-guide h3 {
    font-size: 25px;
  }
  .media-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .media-card {
    padding: 25px 22px;
  }
  .media-card h3 {
    font-size: 23px;
  }
  .media-card .media-meta {
    gap: 14px;
  }
  .media-filters {
    gap: 8px;
  }
  .media-filters button {
    font-size: 13px;
    padding: 11px 13px;
  }
}
@media (max-width: 540px) {
  .brand-grid .brand {
    padding: 23px 15px;
    gap: 15px;
    min-height: 285px;
    grid-template-rows: 68px 1fr auto;
  }
  .brand-grid .brand .partner-logo {
    height: 58px;
  }
  .brand-grid .brand.mozer .partner-logo {
    height: 68px;
  }
  .brand-links {
    align-content: end;
    align-items: center;
    gap: 5px 12px;
  }
  .brand.efele .brand-links {
    gap: 8px;
  }
}
@media (max-width: 365px) {
  .header-cta {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  h1 {
    font-size: 3.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-picture,
  .speed-lines i {
    animation: none;
  }
  .plate-digits {
    transition: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .plate-zone:hover .plate-digits {
    opacity: 0.85;
  }
}
