/* ==========================================================================
   Студия Стекла и Зеркал — стили сайта
   Палитра: тёмно-синий #071735, синий #2448ff, светлый фон #f8f9fc, белый
   ========================================================================== */

:root {
  --ink: #071735;
  --blue: #2448ff;
  --blue-dark: #1736d1;
  --gray-bg: #f8f9fc;
  --line: #e2e8f0;
  --text: #475569;
  --text-dark: #0f172a;
  --container: 1440px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font: inherit; -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p, ol, ul, figure { margin: 0; }
::selection { background: var(--blue); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 1180px; }
.container--faq { max-width: 1280px; }

.section { padding: 80px 0; }
.section--gray { background: var(--gray-bg); }

.kicker {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.h2 {
  margin-top: 12px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--ink);
}
.h2--wide { max-width: 900px; }

.lead {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: #334155;
}
.narrow { max-width: 760px; }

/* ---------- ШАПКА ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(7, 23, 53, .95);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
  color: #fff;
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 72px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  position: relative;
  width: 32px;
  height: 40px;
  background: #2142ff;
  overflow: hidden;
  flex: none;
}
.logo__line { position: absolute; background: #fff; }
.logo__line--1 { left: -4px; top: 12px; width: 44px; height: 1px; transform: rotate(35deg); }
.logo__line--2 { left: -4px; top: 24px; width: 44px; height: 1px; transform: rotate(-40deg); }
.logo__line--3 { left: 12px; top: -4px; width: 1px; height: 48px; transform: rotate(24deg); }
.logo__text { line-height: 1; }
.logo__top {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .36em;
  color: #93c5fd;
}
.logo__bottom {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
}

.nav { display: none; align-items: center; gap: 28px; }
.nav a { font-size: 12px; font-weight: 500; color: rgba(255, 255, 255, .7); transition: color .2s; }
.nav a:hover { color: #fff; }

.header__contacts { display: none; align-items: center; gap: 16px; }
.header__phone { text-align: right; }
.header__phone-num { display: block; font-size: 14px; font-weight: 600; white-space: nowrap; }
.header__phone-city { display: block; font-size: 10px; color: rgba(255, 255, 255, .5); }

.msg-round { display: flex; align-items: center; gap: 8px; }
.msg-round__btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: transform .2s, filter .2s;
  color: #fff;
}
.msg-round__btn svg { width: 20px; height: 20px; }
.msg-round__btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.msg-round__btn--tg { background: #229ED9; }
.msg-round__btn--max { background: linear-gradient(135deg, #4A90E2, #9B59D6); }
.msg-round__btn--wa { background: #25D366; }

.burger {
  width: 40px; height: 40px;
  display: grid; place-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.burger span {
  display: block; width: 20px; height: 1px; background: #fff;
  transition: transform .25s, opacity .25s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  background: #071735;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 12px 20px 24px;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.mobile-menu__msg { margin-top: 20px; display: grid; gap: 10px; }

/* ---------- КНОПКИ МЕССЕНДЖЕРОВ ---------- */
.msg-grid { display: grid; gap: 10px; }

.msg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  color: #fff;
  transition: transform .2s, filter .2s;
}
.msg-btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.msg-btn__icon { flex: none; width: 24px; height: 24px; }
.msg-btn__icon svg { width: 24px; height: 24px; }
.msg-btn__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.msg-btn__name { font-size: 14px; font-weight: 700; white-space: nowrap; }
.msg-btn__note { margin-top: 4px; font-size: 11px; opacity: .85; white-space: nowrap; }

.msg-btn--tg { background: #229ED9; }
.msg-btn--tg:hover { background: #178ac0; }
.msg-btn--max { background: linear-gradient(135deg, #4A90E2, #9B59D6); }
.msg-btn--wa { background: #25D366; }
.msg-btn--wa:hover { background: #20bd5a; }

/* ---------- ГЛАВНЫЙ ЭКРАН ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding-top: 72px;
  min-height: 760px;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__fade-x {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #071735, rgba(7, 23, 53, .6), transparent);
}
.hero__fade-y {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #071735, transparent, rgba(7, 23, 53, .2));
}
.hero__glow {
  position: absolute; left: -96px; top: 144px;
  width: 384px; height: 384px; border-radius: 999px;
  background: rgba(31, 66, 255, .2);
  filter: blur(110px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 20px 40px;
  min-height: 688px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__content { max-width: 780px; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: #93c5fd;
}
.hero__dash { width: 32px; height: 1px; background: #60a5fa; }
.hero__title {
  margin-top: 20px;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.hero__title span { color: #88a0ff; }
.hero__lead {
  margin-top: 24px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .8);
}
.hero__cta { margin-top: 32px; max-width: 620px; }
.hero__cta-label {
  margin-bottom: 12px;
  font-size: 12px; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  color: #bfdbfe;
}
.hero__cta-note { margin-top: 12px; font-size: 12px; color: rgba(255, 255, 255, .5); }

.hero__strip {
  margin-top: 40px;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.hero__strip div {
  background: rgba(7, 23, 53, .75);
  padding: 16px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}
.hero__strip span { margin-right: 8px; font-weight: 700; color: #93c5fd; }

/* ---------- БЕГУЩАЯ СТРОКА ---------- */
.marquee {
  overflow: hidden;
  background: #eef3ff;
  border-top: 1px solid #dbe3ff;
  border-bottom: 1px solid #dbe3ff;
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #17337e;
  white-space: nowrap;
}
.marquee__group i { width: 6px; height: 6px; background: var(--blue); transform: rotate(45deg); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- ЗАГОЛОВОК СЕКЦИИ В ДВЕ КОЛОНКИ ---------- */
.head-grid { display: grid; gap: 32px; }
.head-grid__text { font-size: 16px; line-height: 1.65; color: #334155; }

/* ---------- КАРТОЧКИ ПРЕИМУЩЕСТВ ---------- */
.cards { margin-top: 56px; display: grid; gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: #93c5fd; box-shadow: 0 8px 24px rgba(15, 23, 42, .08); }
.card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #eff6ff;
  color: #1d4ed8;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-top: 20px; font-size: 18px; font-weight: 700; color: var(--ink); }
.card p { margin-top: 10px; font-size: 14px; line-height: 1.65; color: var(--text); }

/* ---------- ГАЛЕРЕЯ ---------- */
.gallery { margin-top: 40px; display: grid; gap: 20px; }
.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease-out;
}
.gallery__item:hover { transform: translateY(-4px); border-color: #93c5fd; box-shadow: 0 16px 32px rgba(15, 23, 42, .12); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:focus-visible { outline: 4px solid var(--blue); outline-offset: 2px; }
.gallery__zoom {
  position: absolute; right: 12px; bottom: 12px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  opacity: 0;
  transition: opacity .2s;
}
.gallery__zoom svg { width: 16px; height: 16px; }
.gallery__item:hover .gallery__zoom { opacity: 1; }

/* ---------- МАТЕРИАЛЫ ---------- */
.materials { margin-top: 48px; display: grid; gap: 32px; }
.materials__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.materials__card h3 { font-size: 20px; font-weight: 700; color: var(--ink); }
.materials__list { margin-top: 24px; display: grid; gap: 16px; }
.materials__list > div { border-bottom: 1px solid #f1f5f9; padding-bottom: 16px; }
.materials__list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.materials__list h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.materials__list p { margin-top: 4px; font-size: 14px; line-height: 1.6; color: var(--text); }

.banner {
  margin-top: 48px;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  gap: 32px;
  padding: 32px;
}
.banner__kicker {
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: #93c5fd;
}
.banner__text h3 { margin-top: 8px; font-size: 24px; font-weight: 700; }
.banner__text p { margin-top: 16px; font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, .8); }
.banner__media { border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 10; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA ---------- */
.cta { background: var(--blue-dark); color: #fff; padding: 64px 0; }
.cta__inner { display: grid; gap: 32px; align-items: center; }
.cta__kicker {
  font-size: 11px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: #bfdbfe;
}
.cta__title { margin-top: 12px; font-size: 30px; font-weight: 700; line-height: 1.15; }
.cta__text { margin-top: 16px; max-width: 640px; font-size: 15px; line-height: 1.7; color: #dbeafe; }
.cta__card {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 25px 50px rgba(2, 8, 23, .25);
}
.cta__card-title { margin-bottom: 16px; font-size: 14px; font-weight: 700; }
.cta__phone {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
}
.cta__phone span { color: var(--text); }
.cta__phone strong { color: var(--text-dark); white-space: nowrap; }
.cta__phone:hover strong { color: #1d4ed8; }

/* ---------- ЭТАПЫ ---------- */
.steps {
  margin-top: 48px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 24px;
  counter-reset: step;
}
.steps li {
  background: var(--gray-bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.steps__num { font-size: 24px; font-weight: 900; color: var(--blue); }
.steps h3 { margin-top: 12px; font-size: 18px; font-weight: 700; color: var(--ink); }
.steps p { margin-top: 10px; font-size: 14px; line-height: 1.65; color: var(--text); }

/* ---------- SEO-ТЕКСТ ---------- */
.seo-text { margin-top: 40px; display: grid; gap: 40px; }
.seo-text p { margin-top: 20px; font-size: 16px; line-height: 1.7; color: #334155; }
.seo-text > div > p:first-child { margin-top: 0; }
.seo-text h3 { margin-top: 28px; font-size: 20px; font-weight: 700; color: var(--ink); }
.seo-text > div > h3:first-child { margin-top: 0; }
.seo-text a { color: var(--blue); font-weight: 600; }
.seo-text a:hover { text-decoration: underline; }

/* ---------- ВОПРОСЫ ---------- */
.container--faq { display: grid; gap: 48px; }
.faq__aside-text { margin-top: 20px; font-size: 14px; line-height: 1.7; color: var(--text); }
.faq__link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px; font-weight: 700; color: var(--blue);
}
.faq__link:hover { text-decoration: underline; }

.faq__list {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list details:last-child { border-bottom: 0; }
.faq__list details[open] { background: rgba(239, 246, 255, .5); }
.faq__list summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; flex: none; width: 20px; height: 20px; margin-top: 4px; }
.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  background: #1d4ed8;
  transition: transform .25s, opacity .25s;
}
.faq__plus::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq__plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
details[open] .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq__list p { padding: 0 24px 24px; font-size: 15px; line-height: 1.7; color: var(--text); }

/* ---------- ПОДВАЛ ---------- */
.footer { background: #051126; color: #fff; }
.footer__inner { display: grid; gap: 40px; padding-top: 56px; padding-bottom: 56px; }
.footer__kicker {
  font-size: 10px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase;
  color: #6f8cff;
}
.footer__title {
  margin-top: 16px;
  max-width: 640px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.15;
}
.footer__text { margin-top: 16px; max-width: 620px; font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, .7); }
.footer__msg { margin-top: 28px; max-width: 620px; }
.footer__label {
  margin-top: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4);
}
.footer__side > .footer__label:first-child { margin-top: 0; }
.footer__phone { display: block; margin-top: 4px; font-size: 24px; font-weight: 700; }
.footer__phone:hover { color: #93c5fd; }
.footer__addr { margin-top: 4px; max-width: 280px; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .8); }
.footer__vk {
  display: inline-block; margin-top: 4px;
  font-size: 14px; font-weight: 600; color: #93c5fd;
  text-decoration: underline; text-underline-offset: 4px;
}
.footer__vk:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0; }
.footer__bottom-inner {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 10px; text-transform: uppercase; letter-spacing: .18em;
  color: rgba(255, 255, 255, .4);
}

/* ---------- ПРОСМОТР ФОТО ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(2, 8, 23, .95);
  backdrop-filter: blur(8px);
}
.lightbox[hidden] { display: none; }
.lightbox__btn {
  position: absolute;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  transition: background .2s, color .2s;
  z-index: 2;
}
.lightbox__btn:hover { background: #fff; color: var(--ink); }
.lightbox__btn svg { width: 20px; height: 20px; }
.lightbox__close { right: 16px; top: 16px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__figure { width: 100%; max-width: 1024px; }
.lightbox__imgwrap {
  aspect-ratio: 4 / 3;
  max-height: 78vh;
  border-radius: 16px;
  overflow: hidden;
  background: #020617;
}
.lightbox__imgwrap img { width: 100%; height: 100%; object-fit: contain; }
.lightbox__count { padding-top: 16px; text-align: center; font-size: 12px; color: rgba(255, 255, 255, .6); }

/* ==========================================================================
   АДАПТАЦИЯ
   ========================================================================== */

@media (min-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 112px 0; }
  .h2 { font-size: 40px; }
  .hero__strip { grid-template-columns: repeat(3, 1fr); }
  .msg-grid--three { grid-template-columns: repeat(3, 1fr); }
  .msg-grid--two { grid-template-columns: repeat(2, 1fr); }
  .msg-btn--full { grid-column: span 2; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .header__contacts { display: flex; }
  .burger { display: none; }
  .mobile-menu { display: none !important; }
  .materials__card { padding: 36px; }
  .banner__text h3 { font-size: 30px; }
  .cta { padding: 80px 0; }
  .cta__title { font-size: 44px; }
  .cta__card { padding: 32px; }
  .steps li { padding: 28px; }
  .footer__title { font-size: 44px; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; }
  .faq__list summary { font-size: 18px; }
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .header__inner { padding: 0 32px; }
  .hero__inner { padding-left: 32px; padding-right: 32px; }
  .banner { grid-template-columns: repeat(2, 1fr); align-items: center; padding: 32px; }
  .footer__inner { grid-template-columns: 1.2fr .8fr; }
  .footer__side { border-left: 1px solid rgba(255, 255, 255, .1); padding-left: 40px; }
  .lightbox { padding: 32px; }
  .lightbox__close { right: 32px; top: 32px; }
  .lightbox__prev { left: 32px; }
  .lightbox__next { right: 32px; }
}

@media (min-width: 1024px) {
  .hero { min-height: 820px; }
  .hero__media { left: auto; width: 54%; }
  .hero__fade-x { background: linear-gradient(to right, rgba(7, 23, 53, .9), rgba(7, 23, 53, .6), transparent); }
  .hero__inner { min-height: 748px; padding-top: 64px; }
  .hero__strip { width: 58%; margin-left: auto; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .materials { grid-template-columns: repeat(2, 1fr); }
  .seo-text { grid-template-columns: repeat(2, 1fr); }
  .head-grid { grid-template-columns: 1fr 1.1fr; align-items: end; }
  .cta__inner { grid-template-columns: 1.2fr .8fr; }
  .container--faq { grid-template-columns: .75fr 1.25fr; }
  .banner { padding: 48px; }
}

@media (min-width: 1280px) {
  .nav { display: flex; }
}

@media (max-width: 380px) {
  .kicker { font-size: 9px; letter-spacing: .2em; }
  .h2 { font-size: 26px; }
  .footer__phone { font-size: 20px; }
}

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