@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat/static/Montserrat-Regular.woff2") format("woff2"),
       url("assets/fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat/static/Montserrat-SemiBold.woff2") format("woff2"),
       url("assets/fonts/Montserrat/static/Montserrat-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat/static/Montserrat-Bold.woff2") format("woff2"),
       url("assets/fonts/Montserrat/static/Montserrat-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

:root {
  --navy: #062b51;
  --navy-deep: #031e3a;
  --navy-soft: #eaf1f7;
  --green: #1dab6b;
  --green-deep: #078650;
  --green-pale: #e6f6ee;
  --gold: #ffba23;
  --gold-pale: #fff4d8;
  --ink: #12304c;
  --muted: #5d7185;
  --line: #d7e1e8;
  --white: #fff;
  --shell: 1180px;
  --radius: 22px;
  --shadow: 0 18px 55px rgba(6, 43, 81, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }

button, input, textarea { font: inherit; }

button { cursor: pointer; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.container { width: min(calc(100% - 48px), var(--shell)); margin: 0 auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 9px 14px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(6, 43, 81, .06); }

.header-inner { display: flex; align-items: center; min-height: 80px; gap: 28px; }

.brand { display: flex; flex: 0 0 auto; width: 154px; min-height: 58px; align-items: center; }

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

.main-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 32px); margin-left: auto; }

.main-nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--green-deep); }

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafc;
}

.language-switcher a {
  display: grid;
  min-width: 29px;
  height: 26px;
  place-items: center;
  padding: 0 5px;
  border: 0;
  border-radius: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.language-switcher a:hover { color: var(--green-deep); background: var(--green-pale); }

.language-switcher a[aria-current="page"] { color: var(--white); background: var(--green-deep); }

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 9px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary { background: var(--gold); box-shadow: 0 7px 0 rgba(225, 153, 1, .45); }

.button-primary:hover { background: #ffc547; box-shadow: 0 9px 0 rgba(225, 153, 1, .45); }

.button-small { min-height: 42px; padding: 9px 15px; font-size: 13px; background: var(--green); color: var(--white); }

.button-small:hover { background: var(--green-deep); }

.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--green-deep); font-size: 14px; font-weight: 700; }

.light-link { color: var(--white); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .115em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }

.eyebrow-blue { color: var(--green-deep); }

.eyebrow-gold { color: #d68b00; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 { color: var(--navy); line-height: 1.12; }

h1 { margin-bottom: 25px; color: var(--white); font-size: clamp(44px, 6vw, 78px); font-weight: 700; letter-spacing: -.055em; }

h2 { margin-bottom: 22px; font-size: clamp(31px, 4vw, 49px); font-weight: 700; letter-spacing: -.05em; }

h3 { margin-bottom: 12px; font-size: 18px; letter-spacing: -.025em; }

.hero { position: relative; isolation: isolate; overflow: hidden; min-height: clamp(650px, 62vw, 855px); color: var(--white); background: radial-gradient(circle at 17% 34%, #0c4776 0, #062e58 30%, var(--navy-deep) 78%); }

.hero-background { position: absolute; z-index: -1; inset: 0; overflow: hidden; }

.hero-background::before, .hero-background::after { position: absolute; display: block; content: ""; background-image: radial-gradient(circle, rgba(117, 198, 255, .34) 1.1px, transparent 1.35px); background-size: 16px 16px; opacity: .52; }

.hero-background::before { top: -24px; right: -10px; width: 420px; height: 390px; }

.hero-background::after { bottom: -110px; left: -42px; width: 380px; height: 235px; background-image: radial-gradient(circle, rgba(29, 171, 107, .62) 1.1px, transparent 1.45px); }

.hero::after { position: absolute; z-index: -1; right: -14vw; bottom: -36vw; width: min(68vw, 980px); aspect-ratio: 1; border: clamp(52px, 7vw, 106px) solid rgba(35, 104, 158, .22); border-radius: 50%; content: ""; }

.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr); align-items: center; min-height: clamp(650px, 62vw, 855px); gap: 30px; }

.hero-copy { max-width: 805px; padding: 104px 0 92px; }

.hero h1 { max-width: 820px; margin-bottom: 25px; font-size: clamp(56px, 7vw, 103px); letter-spacing: -.065em; line-height: 1.06; }

html[lang="en"] .hero h1,
html[lang="de"] .hero h1 { font-size: clamp(52px, 6vw, 88px); }

.hero-rule { display: block; width: 86px; height: 8px; margin: 0 0 30px; border-radius: 99px; background: var(--green); }

.hero-lead { max-width: 650px; margin-bottom: 48px; color: #edf5fb; font-size: clamp(18px, 2.1vw, 25px); line-height: 1.62; }

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 40px; }

.hero .button-primary { min-width: 272px; min-height: 70px; padding: 17px 30px; font-size: 17px; }

.hero .light-link { padding-bottom: 9px; border-bottom: 2px solid var(--green); color: var(--white); font-size: 16px; text-decoration: none; }

.hero .light-link span { color: var(--green); font-size: 24px; line-height: .7; }

.hero-art { position: relative; align-self: stretch; min-height: 620px; }

.hero-art::before { position: absolute; top: 50%; left: 50%; width: min(42vw, 520px); aspect-ratio: 1; border-radius: 50%; content: ""; background: radial-gradient(circle, rgba(16, 96, 147, .34), transparent 68%); transform: translate(-50%, -50%); }

.hero-art img { position: absolute; top: 50%; left: 50%; width: min(390px, 78%); filter: drop-shadow(0 28px 45px rgba(0, 0, 0, .19)); transform: translate(-50%, -50%); }

.intro-strip { background: var(--green); color: var(--white); }

.intro-grid { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 92px; }

.intro-grid p { margin: 0; font-size: 14px; font-weight: 700; }

.intro-grid span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.section { padding: clamp(74px, 10vw, 130px) 0; }

.about-section { background: var(--white); }

.two-column { display: grid; grid-template-columns: minmax(250px, .93fr) minmax(0, 1.07fr); gap: clamp(48px, 10vw, 150px); }

.rich-text { max-width: 570px; color: #3f586f; font-size: 17px; }

.rich-text p { margin-bottom: 20px; }

.vision-section { overflow: hidden; color: var(--white); background: var(--navy-deep); }

.vision-layout { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 28px; align-items: start; max-width: 950px; }

.vision-mark { color: var(--gold); font-family: Georgia, serif; font-size: 150px; line-height: .78; }

.vision-section .eyebrow { color: var(--gold); }

blockquote { max-width: 760px; margin: 0; color: var(--white); font-size: clamp(25px, 3.2vw, 39px); font-weight: 600; line-height: 1.36; letter-spacing: -.04em; }

.vision-caption { margin: 25px 0 0; color: #a9bbcd; font-size: 13px; }

.action-section { background: #f7fafc; }

.section-heading { display: flex; justify-content: space-between; gap: 45px; margin-bottom: 54px; }

.section-heading > div { max-width: 670px; }

.section-heading > p { max-width: 360px; margin: 37px 0 0; color: var(--muted); font-size: 15px; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.feature-card { min-height: 310px; padding: 32px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 32px rgba(6, 43, 81, .04); }

.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

.feature-icon { position: relative; display: block; width: 55px; height: 55px; margin-bottom: 32px; border-radius: 15px; background: var(--green-pale); }

.feature-icon-image { padding: 2px; border-radius: 0; background: transparent; object-fit: contain; }

.feature-icon-flip-y { transform: scaleY(-1); }

.values-section { background: var(--green-pale); }

.values-layout { display: grid; grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr); gap: clamp(48px, 9vw, 140px); align-items: start; }

.values-copy > p:last-child { max-width: 430px; color: #3f6570; }

.value-list { display: grid; gap: 19px; padding: 0; margin: 0; list-style: none; }

.value-list li { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 19px; padding: 24px 0; border-top: 1px solid rgba(6, 43, 81, .18); }

.value-list li:last-child { border-bottom: 1px solid rgba(6, 43, 81, .18); }

.value-list span { color: var(--green-deep); font-size: 12px; font-weight: 700; }

.value-list p { margin: 0; color: #3f6570; font-size: 15px; }

.value-list strong { color: var(--navy); }

.join-explainer { color: var(--white); background: var(--green); }

.join-explainer-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(48px, 10vw, 140px); }

.join-explainer h2 { color: var(--white); }

.join-explainer p:not(.eyebrow) { max-width: 500px; color: #e2f6ec; }

.join-explainer .eyebrow { color: var(--gold); }

.join-steps { display: grid; gap: 22px; margin: 0; padding: 0; list-style: none; }

.join-steps li { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 18px; align-items: start; }

.join-steps > li > span { display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid rgba(255, 255, 255, .64); border-radius: 50%; color: var(--white); font-size: 14px; font-weight: 700; }

.join-steps h3 { margin: 2px 0 4px; color: var(--white); }

.join-steps p { margin: 0; font-size: 14px; }

.documents-section { background: #f7fafc; }

.documents-layout { display: grid; grid-template-columns: minmax(0, .93fr) minmax(300px, .8fr); gap: clamp(46px, 10vw, 130px); align-items: center; }

.documents-layout > div > p:last-child { max-width: 545px; color: var(--muted); }

.document-card { display: grid; grid-template-columns: 64px minmax(0, 1fr) 24px; gap: 22px; align-items: center; padding: 28px; border: 1px solid #cbd9e3; border-radius: 18px; color: var(--navy); background: var(--white); box-shadow: var(--shadow); text-decoration: none; transition: transform .2s ease, border-color .2s ease; }

.document-card:hover { border-color: var(--green); transform: translateY(-3px); }

.document-icon { display: block; width: 58px; height: 68px; object-fit: contain; }

.document-card-copy { display: grid; gap: 5px; }

.document-card strong { font-size: 17px; line-height: 1.4; }

.document-card small { color: var(--muted); font-size: 12px; }

.document-arrow { color: var(--green-deep); font-size: 25px; }

.form-section { background: var(--navy); }

.form-layout { display: grid; grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr); gap: clamp(48px, 10vw, 145px); align-items: start; }

.form-intro { padding-top: 17px; }

.form-intro h2 { color: var(--white); }

.form-intro > p:not(.eyebrow) { max-width: 430px; color: #c6d8e9; }

.form-intro .eyebrow { color: var(--gold); }

.form-mail-link { color: var(--white); font-size: 15px; font-weight: 700; }

.join-form { padding: clamp(25px, 4vw, 42px); border-radius: var(--radius); background: var(--white); box-shadow: 0 21px 55px rgba(0, 0, 0, .19); }

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

.form-field { margin-bottom: 18px; }

.form-field label, .consent-field label { display: block; margin-bottom: 8px; color: var(--navy); font-size: 13px; font-weight: 700; line-height: 1.5; }

.form-field input, .form-field textarea { width: 100%; padding: 12px 13px; border: 1px solid #b9c9d6; border-radius: 7px; color: var(--navy); background: #fff; font-size: 15px; line-height: 1.5; transition: border-color .2s ease, box-shadow .2s ease; }

.form-field textarea { min-height: 132px; resize: vertical; }

.form-field input:focus, .form-field textarea:focus { border-color: var(--green); outline: 0; box-shadow: 0 0 0 4px rgba(29, 171, 107, .17); }

.consent-field { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 10px; align-items: start; margin: 6px 0 24px; }

.consent-field input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--green-deep); }

.consent-field label { margin: 0; color: var(--muted); font-size: 12px; font-weight: 400; }

.consent-field a { color: var(--green-deep); font-weight: 700; }

.turnstile-field { display: grid; gap: 8px; margin: 0 0 24px; }

.turnstile-field p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

.button-submit { width: 100%; }

.form-note { margin: 20px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

.form-feedback { display: none; margin-bottom: 20px; padding: 12px 14px; border-radius: 7px; font-size: 13px; font-weight: 600; }

.form-feedback.is-visible { display: block; }

.form-feedback.is-success { color: #075839; background: var(--green-pale); border: 1px solid #a6e0c2; }

.form-feedback.is-error { color: #8d261b; background: #fff0eb; border: 1px solid #f0b7aa; }

.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { color: #c4d5e4; background: var(--navy-deep); }

.footer-main { display: grid; grid-template-columns: minmax(240px, 1.65fr) repeat(3, 1fr); gap: clamp(30px, 5vw, 80px); padding: 65px 0 50px; }

.footer-brand img { width: 185px; filter: brightness(0) invert(1); }

.footer-brand p { max-width: 320px; margin: 20px 0 0; font-size: 13px; line-height: 1.65; }

.footer-column { display: grid; align-content: start; gap: 11px; }

.footer-column h2 { margin: 0 0 7px; color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 0; }

.footer-column a, .footer-column p { margin: 0; color: #c4d5e4; font-size: 12px; line-height: 1.6; text-decoration: none; }

.footer-column a:hover { color: var(--gold); }

.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding: 20px 0; border-top: 1px solid rgba(196, 213, 228, .25); }

.footer-bottom p { margin: 0; color: #93a9bc; font-size: 10px; }

.cookie-banner { position: fixed; z-index: 90; right: 20px; bottom: 20px; display: flex; align-items: center; max-width: 560px; gap: 20px; padding: 15px 16px 15px 19px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 12px; color: var(--white); background: rgba(3, 30, 58, .97); box-shadow: 0 13px 42px rgba(0, 0, 0, .25); }

.cookie-banner[hidden] { display: none; }

.cookie-banner p { margin: 0; font-size: 11px; line-height: 1.55; }

.cookie-banner a { color: var(--gold); }

.button-cookie { flex: 0 0 auto; min-height: 38px; padding: 8px 12px; background: var(--gold); font-size: 12px; }

.legal-header { padding: 20px 0; border-bottom: 1px solid var(--line); }

.legal-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 60px; }

.legal-brand { display: flex; width: 165px; min-height: 55px; align-items: center; }

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

.legal-shell { max-width: 800px; padding: 80px 0 100px; }

.legal-shell h1 { color: var(--navy); font-size: clamp(34px, 5vw, 58px); }

.legal-shell h2 { margin-top: 45px; font-size: 24px; letter-spacing: -.035em; }

.legal-shell h3 { margin-top: 28px; font-size: 17px; }

.legal-shell p, .legal-shell li { color: #465f75; }

.legal-shell ul { padding-left: 22px; }

.legal-shell li + li { margin-top: 8px; }

.legal-meta { color: var(--muted); font-size: 13px; }

.legal-table { width: 100%; margin: 24px 0; border-collapse: collapse; font-size: 14px; }

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

.legal-table th { color: var(--navy); background: var(--navy-soft); }

@media (max-width: 820px) {
  .header-inner { min-height: 70px; gap: 14px; }
  .brand { width: 130px; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; width: 40px; height: 40px; place-content: center; gap: 4px; margin-left: auto; padding: 0; border: 0; border-radius: 7px; background: var(--navy-soft); }
  .menu-toggle span:not(.sr-only) { display: block; width: 19px; height: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle.is-open span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(3) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 12px 24px 20px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 12px 22px rgba(6, 43, 81, .08); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 11px 0; border-bottom: 1px solid #edf1f4; }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav .language-switcher { justify-self: start; margin-top: 12px; }
  .main-nav .language-switcher a { height: 28px; padding: 0 7px; border: 0; }
  .hero { min-height: auto; }
  .hero-content { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 84px 0 32px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(49px, 13vw, 72px); }
  .hero-rule { width: 64px; height: 6px; margin-bottom: 23px; }
  .hero-lead { margin-bottom: 34px; font-size: 17px; }
  .hero-actions { gap: 23px; }
  .hero .button-primary { min-width: 0; min-height: 58px; font-size: 15px; }
  .hero .light-link { font-size: 14px; }
  .hero-art { display: none; }
  .intro-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; padding: 16px 0; }
  .intro-grid p { padding: 6px 0; font-size: 12px; }
  .intro-grid span { display: none; }
  .two-column, .values-layout, .join-explainer-grid, .documents-layout, .form-layout { grid-template-columns: 1fr; }
  .two-column { gap: 17px; }
  .section-heading { display: block; margin-bottom: 33px; }
  .section-heading > p { margin: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .vision-layout { grid-template-columns: 48px minmax(0, 1fr); gap: 15px; }
  .vision-mark { font-size: 80px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1.35fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 6px; }
}

@media (min-width: 821px) and (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 32px), var(--shell)); }
  .hero-copy { padding-top: 65px; }
  .hero h1 { font-size: 48px; }
  html[lang="en"] .hero h1 { font-size: 40px; }
  html[lang="de"] .hero h1 { font-size: 39px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; justify-items: start; gap: 20px; }
  .button-primary { width: 100%; }
  .hero .light-link { justify-self: center; }
  .vision-layout { grid-template-columns: 1fr; gap: 10px; }
  .vision-mark { margin-bottom: -10px; font-size: 64px; }
  .vision-section blockquote { max-width: none; font-size: 24px; line-height: 1.34; letter-spacing: -.025em; }
  .section { padding: 70px 0; }
  .document-card { grid-template-columns: 53px minmax(0, 1fr) 18px; gap: 15px; padding: 21px 17px; }
  .document-icon { width: 48px; height: 58px; }
  .document-card strong { font-size: 14px; }
  .join-form { padding: 23px 18px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .cookie-banner { right: 12px; bottom: 12px; left: 12px; align-items: flex-start; gap: 11px; }
  .legal-shell { padding: 60px 0 75px; }
  .legal-table { display: block; overflow-x: auto; }
}

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