:root {
  --ink: #55473f;
  --ink-deep: #3c312a;
  --muted: #998f89;
  --taupe: #c3b9b2;
  --taupe-dark: #a99b91;
  --paper: #ffffff;
  --paper-warm: #f4f1ee;
  --line: #ded8d3;
  --accent: #3b9ca1;
  --content: 1300px;
  --narrow: 940px;
  --header-height: 116px;
  --shadow: 0 18px 55px rgb(42 31 23 / 16%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 155px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0 0 1.15em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 300;
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.15rem, 5vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.wrap {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  color: #fff;
  background-color: #826247;
  background-image:
    linear-gradient(90deg, rgb(51 30 17 / 14%), rgb(255 255 255 / 5%) 38%, rgb(42 26 16 / 16%)),
    repeating-linear-gradient(2deg, rgb(255 255 255 / 4%) 0 1px, transparent 1px 8px);
  background-position: center;
  background-size: cover;
  box-shadow: 0 2px 12px rgb(36 24 15 / 18%);
}

.header-inner {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 34px;
  align-items: center;
  min-height: 116px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 224px;
  min-height: 78px;
}

.brand img {
  width: 100%;
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
}

.header-right {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.utilities {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  min-height: 42px;
}

.utility-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 8px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.utility-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.utility-divider {
  width: 1px;
  height: 22px;
  margin-inline: 3px;
  background: rgb(255 255 255 / 58%);
}

.main-nav ul,
.subnav ul,
.mobile-nav ul,
.footer-links,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav ul {
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  align-items: center;
  justify-content: flex-end;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 12px 0 16px;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #fff;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  content: "";
  transition: 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  z-index: 90;
  inset: var(--header-height) 0 0;
  display: none;
  overflow-y: auto;
  padding: 26px 24px 50px;
  color: #fff;
  background: rgb(22 18 16 / 97%);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-nav > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-nav > ul > li > a::after {
  content: "›";
  font-size: 1.6rem;
  font-weight: 200;
}

.mobile-nav .mobile-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid rgb(255 255 255 / 36%);
}

.mobile-nav .mobile-secondary a {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgb(255 255 255 / 35%);
  font-size: 0.9rem;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.page-shell {
  padding-top: var(--header-height);
}

.subnav {
  position: sticky;
  z-index: 50;
  top: var(--header-height);
  color: #fff;
  background: var(--ink-deep);
}

.subnav ul {
  display: flex;
  gap: 26px;
  justify-content: center;
  overflow-x: auto;
  padding: 10px 24px;
  scrollbar-width: none;
}

.subnav ul::-webkit-scrollbar {
  display: none;
}

.subnav a {
  white-space: nowrap;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subnav a:hover,
.subnav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(480px, 58vw, 720px);
  overflow: hidden;
  color: #fff;
  background: #514238;
}

.hero.compact {
  min-height: clamp(390px, 43vw, 610px);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(20 15 12 / 55%), rgb(20 15 12 / 8%) 65%, rgb(20 15 12 / 25%));
  content: "";
}

.hero-media,
.hero-slide {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding-block: clamp(72px, 9vw, 125px);
}

.hero-label,
.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 940px;
  text-shadow: 0 2px 18px rgb(0 0 0 / 28%);
}

.hero-intro {
  max-width: 720px;
  margin-top: 22px;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-dots {
  position: absolute;
  right: max(24px, calc((100vw - var(--content)) / 2));
  bottom: 35px;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgb(255 255 255 / 58%);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  transition: 180ms ease;
}

.button.dark {
  color: #fff;
  border-color: rgb(255 255 255 / 68%);
  background: rgb(30 25 22 / 72%);
  backdrop-filter: blur(3px);
}

.button.solid {
  color: #fff;
  border-color: var(--ink-deep);
  background: var(--ink-deep);
}

.button.light {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button:hover,
.button:focus-visible {
  color: var(--ink-deep);
  border-color: #fff;
  background: #fff;
  transform: translateY(-2px);
}

.button.light:hover,
.button.light:focus-visible {
  color: #fff;
  border-color: var(--ink-deep);
  background: var(--ink-deep);
}

.intro,
.section {
  padding-block: clamp(74px, 9vw, 120px);
}

.intro {
  text-align: center;
}

.intro-icon {
  width: 86px;
  height: 76px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.intro .eyebrow,
.section-heading .eyebrow {
  color: var(--muted);
}

.intro h1,
.intro h2 {
  margin-bottom: 32px;
}

.intro p {
  text-align: left;
}

.intro .lead {
  font-size: 1.12em;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading h2,
.section-heading h1 {
  margin-bottom: 22px;
}

.section-heading p {
  max-width: 760px;
  margin-inline: auto;
}

.section.muted {
  background: var(--paper-warm);
}

.section.taupe {
  color: #fff;
  background: var(--taupe);
}

.story-banner {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.story-banner::before,
.story-banner::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
}

.story-banner::before {
  background: var(--story-image) center / cover no-repeat;
}

.story-banner::after {
  background: rgb(30 23 19 / 50%);
}

.story-content {
  max-width: 860px;
  padding: 90px 24px;
}

.story-content h2 {
  margin-bottom: 28px;
}

.story-content .button {
  margin-top: 20px;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.mosaic-card {
  min-height: 410px;
}

.mosaic-image {
  position: relative;
  overflow: hidden;
  background: #d9d3ce;
}

.mosaic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.mosaic-image:hover img {
  transform: scale(1.035);
}

.mosaic-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(38px, 6vw, 80px);
  color: #fff;
  background: var(--taupe);
  text-align: center;
}

.mosaic-copy:nth-child(4n + 2),
.mosaic-copy.alt {
  background: var(--ink-deep);
}

.mosaic-copy h2,
.mosaic-copy h3 {
  margin-bottom: 22px;
}

.mosaic-copy p {
  max-width: 540px;
}

.mosaic-copy .button {
  margin-top: 10px;
}

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

.card {
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd7d2;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.card:hover .card-media img {
  transform: scale(1.045);
}

.card-body {
  padding: 28px;
}

.card-body h2,
.card-body h3 {
  margin-bottom: 14px;
}

.card-body .meta {
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

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

.split-media {
  min-height: 470px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.split-copy h2,
.split-copy h3 {
  margin-bottom: 24px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature {
  padding: 38px;
  background: #fff;
}

.feature h3 {
  margin-bottom: 15px;
}

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

.gallery-strip img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.timeline {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--taupe);
  content: "";
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  margin-bottom: 58px;
}

.timeline-year {
  position: relative;
  z-index: 1;
  grid-column: 2;
  padding: 8px 4px;
  color: var(--muted);
  background: var(--paper-warm);
  font-size: 1.45rem;
  font-weight: 300;
  text-align: center;
}

.timeline-card {
  padding: 30px;
  background: #fff;
  box-shadow: 0 12px 35px rgb(53 41 33 / 10%);
}

.timeline-item:nth-child(odd) .timeline-card {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-card {
  grid-column: 3;
}

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

.person {
  display: grid;
  grid-template-columns: 145px 1fr;
  min-height: 190px;
  background: var(--paper-warm);
}

.person img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.person-copy {
  padding: 24px;
}

.person h3 {
  margin-bottom: 8px;
  font-size: 1.32rem;
}

.person p {
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.person a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 145px;
  padding: 30px;
  color: #fff;
  background: var(--ink-deep);
}

.job:nth-child(4n + 2),
.job:nth-child(4n + 3) {
  background: var(--taupe-dark);
}

.job h3 {
  margin-bottom: 8px;
}

.job::after {
  content: "›";
  font-size: 2.4rem;
  font-weight: 200;
}

.price {
  display: block;
  margin: 14px 0;
  color: var(--ink-deep);
  font-size: 1.8rem;
  font-weight: 600;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
}

.sale-facts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
  margin: 20px 0 0;
  font-size: 0.9rem;
}

.sale-facts dt {
  color: var(--muted);
  font-weight: 600;
}

.sale-facts dd {
  margin: 0;
}

.contact-band {
  padding: 64px 0;
  color: #fff;
  background: var(--ink-deep);
}

.contact-band .wrap {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}

.contact-band h2 {
  max-width: 780px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 420px;
  padding: 45px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink-deep);
  text-align: center;
}

.map-placeholder::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgb(53 43 37 / 82%), rgb(53 43 37 / 82%)),
    url("/fileadmin/user_upload/Headerbilder/Kontakt_Topbild.jpg") center / cover;
  content: "";
}

.map-placeholder > div {
  position: relative;
  max-width: 600px;
}

.map-placeholder h2 {
  margin-bottom: 18px;
}

.legal {
  padding-block: 80px 120px;
}

.legal h1 {
  margin-bottom: 45px;
}

.legal h2 {
  margin: 48px 0 18px;
  font-size: 1.75rem;
}

.legal h3 {
  margin: 30px 0 12px;
  font-size: 1.25rem;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 58px 0 36px;
  color: #fff;
  background: var(--taupe);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.9fr 0.9fr;
  gap: 0;
}

.footer-column {
  min-height: 150px;
  padding: 0 32px;
  border-left: 1px solid rgb(255 255 255 / 72%);
}

.footer-column:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-column h2 {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column p,
.footer-column li {
  margin: 0 0 7px;
  font-size: 0.88rem;
}

.footer-links a {
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 25px;
  border-top: 1px solid rgb(255 255 255 / 45%);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.recovery-note {
  color: rgb(255 255 255 / 78%);
}

.anchor-target {
  scroll-margin-top: 165px;
}

@media (max-width: 1120px) {
  :root {
    --header-height: 88px;
  }

  .header-inner {
    grid-template-columns: 190px 1fr auto;
    min-height: 88px;
  }

  .brand {
    width: 180px;
    min-height: 58px;
  }

  .header-right {
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    display: none;
  }

  .utilities .utility-link span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }

  .footer-column:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 840px) {
  body {
    font-size: 17px;
  }

  .wrap,
  .narrow,
  .mosaic {
    width: min(calc(100% - 32px), var(--content));
  }

  .hero,
  .hero.compact {
    min-height: 560px;
  }

  .hero-content {
    padding-block: 70px;
  }

  .hero h1 {
    max-width: 680px;
  }

  .mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-card {
    min-height: 360px;
  }

  .mosaic-image:nth-child(4n + 3) {
    order: initial;
  }

  .card-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .split-media {
    min-height: 390px;
  }

  .gallery-strip img {
    height: 240px;
  }

  .timeline::before {
    left: 35px;
  }

  .timeline-item {
    grid-template-columns: 70px 1fr;
    gap: 15px;
    margin-bottom: 35px;
  }

  .timeline-year {
    grid-column: 1;
    grid-row: 1;
    padding: 6px 0;
    font-size: 1rem;
  }

  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .contact-band .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    grid-template-columns: 138px 1fr auto;
    gap: 5px;
    min-height: 76px;
  }

  .brand {
    width: 132px;
    min-height: 48px;
  }

  .utilities {
    gap: 0;
  }

  .utility-link {
    padding: 7px 5px;
  }

  .utility-link:nth-of-type(n + 4),
  .utility-divider {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    padding-inline: 7px;
  }

  .mobile-panel {
    padding-inline: 18px;
  }

  .subnav ul {
    justify-content: flex-start;
    padding-inline: 16px;
  }

  .hero,
  .hero.compact {
    min-height: 530px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgb(20 15 12 / 66%), rgb(20 15 12 / 5%) 75%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-block: 55px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-dots {
    display: none;
  }

  .intro,
  .section {
    padding-block: 68px;
  }

  .story-banner {
    min-height: 600px;
  }

  .mosaic-card {
    min-height: 310px;
  }

  .mosaic-copy {
    padding: 42px 24px;
  }

  .card-grid,
  .feature-list,
  .team-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip img {
    height: 290px;
  }

  .feature {
    padding: 30px 25px;
  }

  .person {
    grid-template-columns: 115px 1fr;
  }

  .contact-actions {
    display: grid;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-column,
  .footer-column:nth-child(3) {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid rgb(255 255 255 / 55%);
    border-left: 0;
  }

  .footer-column:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}
