:root {
  --color-ink: #142129;
  --color-muted: #58717c;
  --color-blue: #125687;
  --color-blue-dark: #0b3a5d;
  --color-teal: #125687;
  --color-teal-soft: #eef6fb;
  --color-yellow: #ec6b08;
  --color-green: #1f9d6a;
  --color-page: #f5f9fc;
  --color-line: rgba(20, 33, 41, 0.12);
  --shadow-soft: 0 20px 50px rgba(18, 86, 135, 0.12);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--color-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(236, 107, 8, 0.38);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  border-radius: 8px;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--color-ink);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(18, 86, 135, 0.1);
}

.site-header__inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  overflow-wrap: anywhere;
  font-size: 1.06rem;
  line-height: 1.2;
}

.brand small {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 8px;
  padding: 9px 12px;
  color: #254653;
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--color-teal-soft);
  color: var(--color-blue-dark);
}

.site-nav .nav-phone {
  background: var(--color-blue);
  color: #ffffff;
}

.site-nav .nav-phone:hover {
  background: var(--color-yellow);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 8px 12px;
  background: #ffffff;
  color: var(--color-ink);
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  min-height: 84svh;
  align-items: center;
  overflow: hidden;
  background: var(--color-blue-dark);
  color: #ffffff;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background: linear-gradient(90deg, rgba(11, 58, 93, 0.92) 0%, rgba(18, 86, 135, 0.78) 38%, rgba(18, 86, 135, 0.22) 72%, rgba(18, 86, 135, 0.08) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  padding-block: 92px 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-teal);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--color-yellow);
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 4.8rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.12rem;
}

p {
  margin: 0;
}

.hero__lead {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
}

.button--primary {
  background: var(--color-yellow);
  color: #ffffff;
}

.button--primary:hover {
  background: #d95f05;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.hero__facts {
  display: grid;
  max-width: 780px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 44px 0 0;
}

.hero__facts div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.hero__facts dt {
  font-weight: 900;
}

.hero__facts dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.trust-band {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding-bottom: 34px;
  background: linear-gradient(180deg, transparent 0, transparent 48px, #ffffff 48px, #ffffff 100%);
}

.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-band__item {
  display: flex;
  min-height: 126px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(18, 86, 135, 0.14);
  border-top: 2px solid rgba(236, 107, 8, 0.9);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(18, 86, 135, 0.1);
}

.trust-band__icon {
  display: inline-grid;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  place-items: center;
  border: 1px solid rgba(18, 86, 135, 0.12);
  border-radius: 8px;
  background: var(--color-teal-soft);
}

.trust-band__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.trust-band__item > div {
  min-width: 0;
}

.trust-band__item > div strong,
.trust-band__item > div span {
  display: block;
}

.trust-band__item strong {
  color: var(--color-blue-dark);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.25;
}

.trust-band__item > div span {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.section {
  padding-block: 80px;
  background: #ffffff;
}

.section--light {
  background: var(--color-page);
}

.section--blue {
  background: var(--color-blue);
  color: #ffffff;
}

.section--contact {
  background: #eef6fb;
}

.video-section {
  border-block: 1px solid rgba(18, 86, 135, 0.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: stretch;
}

.split--reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.split__content {
  display: grid;
  align-content: center;
  gap: 20px;
}

.split__content p {
  color: var(--color-muted);
}

.section--blue .split__content p {
  color: rgba(255, 255, 255, 0.78);
}

.video-embed {
  overflow: hidden;
  align-self: center;
  border: 1px solid rgba(18, 86, 135, 0.14);
  border-radius: 8px;
  background: #0b3a5d;
  box-shadow: var(--shadow-soft);
}

.video-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #264755;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-green);
  content: "✓";
  font-weight: 900;
}

.media-card {
  display: grid;
  height: 100%;
  margin: 0;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 981px) {
  .split .media-card img {
    height: 100%;
    min-height: 520px;
    aspect-ratio: auto;
  }

  .section--blue .media-card img {
    min-height: 560px;
  }

  #szolgaltatasok .split {
    align-items: stretch;
  }

  #szolgaltatasok .media-card,
  #szolgaltatasok .split__content {
    min-height: 560px;
  }

  #szolgaltatasok .media-card img {
    height: 100%;
    min-height: 0;
    object-position: center center;
  }
}

.media-card figcaption {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.media-card--dark figcaption {
  color: rgba(255, 255, 255, 0.72);
}

.founder-section {
  background: #ffffff;
  padding-block: 72px 34px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #eef6fb 100%);
  box-shadow: var(--shadow-soft);
}

.founder-card__media {
  margin: 0;
}

.founder-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 8px;
}

.founder-card__content {
  display: grid;
  gap: 16px;
}

.founder-card__content p:not(.eyebrow) {
  color: var(--color-muted);
}

.section-head {
  display: grid;
  max-width: 720px;
  gap: 16px;
  margin-bottom: 34px;
}

#folyamat {
  padding-top: 52px;
}

.section-head p:not(.eyebrow) {
  color: var(--color-muted);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step,
.price-card,
.service-list article,
.faq-list details {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
}

.step {
  min-height: 250px;
  padding: 22px;
}

.step__num {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--color-teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.step p,
.price-card p,
.service-list p,
.faq-list p {
  color: var(--color-muted);
}

.step h3,
.price-card h3,
.service-list h3 {
  margin-bottom: 10px;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  border-color: rgba(255, 255, 255, 0.14);
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.service-list article p + p {
  margin-top: 10px;
}

.unit-care-section {
  background: #ffffff;
}

.unit-care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.unit-care-card {
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid rgba(18, 86, 135, 0.14);
  border-radius: 8px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(18, 86, 135, 0.08);
}

.unit-care-card--accent {
  background: linear-gradient(135deg, #ffffff 0%, #eef6fb 100%);
}

.unit-care-card__tag {
  width: fit-content;
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(236, 107, 8, 0.12);
  color: var(--color-yellow);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.feature-list,
.note-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.note-list li {
  position: relative;
  padding-left: 28px;
  color: #264755;
}

.feature-list li::before,
.note-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-yellow);
  content: "✓";
  font-weight: 900;
}

.outdoor-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 22px;
  border: 1px solid rgba(18, 86, 135, 0.14);
  border-radius: 8px;
  padding: 26px;
  background: var(--color-page);
}

.outdoor-panel__content {
  display: grid;
  height: 100%;
  align-content: center;
  gap: 16px;
  border: 1px solid rgba(18, 86, 135, 0.12);
  border-radius: 8px;
  padding: 30px;
  background: #ffffff;
}

.outdoor-panel__content h3 {
  font-size: 2rem;
}

.outdoor-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
}

.outdoor-before-after figure {
  position: relative;
  height: 100%;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.outdoor-before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outdoor-before-after figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(11, 58, 93, 0.9);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  display: grid;
  min-height: 260px;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.price-card strong {
  color: var(--color-blue);
  font-size: 1.48rem;
  font-weight: 950;
}

.price-card a {
  align-self: end;
  margin-top: 8px;
  color: var(--color-blue);
  font-weight: 900;
  text-underline-offset: 4px;
}

.reference-section {
  background: #ffffff;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reference-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(18, 86, 135, 0.08);
}

.reference-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reference-card div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.reference-card p {
  color: var(--color-muted);
}

.section--reviews {
  overflow: hidden;
  background: #ffffff;
}

.google-reviews-widget {
  min-width: 0;
  margin-top: 28px;
}

.google-reviews-widget iframe {
  max-width: 100%;
}

.reviews-preview {
  display: grid;
  grid-template-columns: 250px repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 28px;
}

.reviews-preview__summary,
.reviews-preview__card {
  border: 1px solid rgba(18, 86, 135, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(18, 86, 135, 0.1);
}

.reviews-preview__summary {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
}

.reviews-preview__summary strong {
  color: #080d12;
  font-size: 1.45rem;
  font-weight: 950;
  text-transform: uppercase;
}

.reviews-preview__stars {
  color: #f8b400;
  font-size: 1.55rem;
  letter-spacing: 0;
  line-height: 1;
}

.reviews-preview__summary span {
  color: #2d3f48;
  font-weight: 800;
}

.reviews-preview__card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
}

.reviews-preview__card header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-preview__avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-blue);
  color: #ffffff;
  font-weight: 900;
}

.reviews-preview__card strong {
  display: block;
  color: #080d12;
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.2;
}

.reviews-preview__card small {
  color: #7b8790;
  font-weight: 700;
}

.reviews-preview__card p {
  color: var(--color-ink);
  font-size: 1.05rem;
  line-height: 1.45;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--color-blue-dark);
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 100px;
}

.contact-copy p {
  color: var(--color-muted);
}

.contact-copy address {
  border-left: 4px solid var(--color-yellow);
  padding-left: 18px;
  color: #244756;
  font-style: normal;
}

.contact-copy a {
  color: var(--color-blue);
  font-weight: 800;
}

.form-panel {
  min-width: 0;
}

.missing-form {
  border-radius: 8px;
  padding: 20px;
  background: #fff1f1;
  color: #991b1b;
  font-weight: 800;
}

.site-footer {
  background: var(--color-blue);
  color: #ffffff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
  padding-block: 40px;
}

.site-footer p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer span {
  color: var(--color-yellow);
  font-weight: 900;
}

.site-footer a {
  color: #ffffff;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__credit {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__credit a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer__credit a:hover {
  color: #ffffff;
}

.legal-page {
  background: var(--color-page);
}

.legal-content {
  max-width: 860px;
}

.legal-content h1,
.legal-content h2 {
  color: var(--color-blue-dark);
}

.legal-content h1 {
  font-size: 3.6rem;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.legal-content p {
  margin-top: 14px;
  color: #314f5d;
}

.legal-content table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.legal-content th,
.legal-content td {
  border: 1px solid var(--color-line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  width: 32%;
  color: var(--color-blue-dark);
}

.legal-note {
  border-left: 4px solid var(--color-yellow);
  padding-left: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero__shade {
    background: rgba(11, 58, 93, 0.78);
  }

  .hero__content {
    padding-block: 72px 54px;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .legal-content h1 {
    font-size: 3rem;
  }

  .hero__facts,
  .trust-band__grid,
  .steps,
  .unit-care-grid,
  .price-grid,
  .reviews-preview,
  .reference-grid,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split--reverse,
  .founder-card,
  .outdoor-panel,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split--reverse .media-card {
    order: 2;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .brand {
    max-width: calc(100% - 96px);
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .hero {
    min-height: auto;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__content {
    padding-block: 58px 42px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 2rem;
  }

  .legal-content h1 {
    font-size: 2.35rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__facts,
  .trust-band__grid,
  .steps,
  .unit-care-grid,
  .outdoor-before-after,
  .price-grid,
  .reviews-preview,
  .reference-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .trust-band {
    margin-top: 0;
    padding-block: 14px 22px;
    background: #ffffff;
  }

  .trust-band__item {
    min-height: auto;
    padding: 16px;
  }

  .trust-band__icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .trust-band__icon img {
    width: 36px;
    height: 36px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding-block: 64px;
  }

  .step,
  .price-card {
    min-height: auto;
  }

  .outdoor-panel {
    min-width: 0;
    padding: 18px;
  }

  .outdoor-panel__content {
    padding: 20px;
  }

  .outdoor-panel__content h3 {
    font-size: 1.45rem;
  }

  .outdoor-before-after figure {
    min-height: 360px;
  }

  .legal-content th,
  .legal-content td {
    display: block;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
