:root {
  --milk: #fbf8f1;
  --paper: #fffdf8;
  --ink: #121212;
  --muted: #6d6863;
  --wine: #9a342d;
  --wine-dark: #742720;
  --blush: #f3e5df;
  --radius-ui: 16px;
  --wrap: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--milk);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.35;
  letter-spacing: 0;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: calc(var(--scroll, 0) * 100%);
  height: 3px;
  background: var(--wine);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 64px;
  padding: 10px max(16px, calc((100vw - 1180px) / 2));
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand__logo {
  width: 174px;
  height: auto;
}

.desktop-nav {
  display: none;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}

.desktop-nav a:hover,
.footer a:hover,
.footer button:hover {
  color: var(--wine);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.header-cta {
  display: none;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 52, 45, 0.28);
  border-radius: var(--radius-ui);
  padding: 0 19px;
  background: rgba(154, 52, 45, 0.08);
  color: var(--wine);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(116, 39, 32, 0.08);
  transition: box-shadow 0.2s ease, border-color 0.25s ease, transform 0.2s ease;
}

.header-cta:hover {
  border-color: rgba(154, 52, 45, 0.44);
  box-shadow: 0 12px 24px rgba(116, 39, 32, 0.12);
  transform: translateY(-1px);
}

.menu-toggle {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(154, 52, 45, 0.24);
  border-radius: var(--radius-ui);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.menu-toggle span:first-child {
  transform: translate(-50%, -4px);
}

.menu-toggle span:last-child {
  transform: translate(-50%, 4px);
}

.menu-open .menu-toggle span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 64px 0 auto;
  z-index: 29;
  display: grid;
  padding: 12px 16px 22px;
  background: var(--milk);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a,
.mobile-menu button {
  padding: 16px 0;
  font-size: 20px;
  font-weight: 560;
  text-transform: uppercase;
}

.mobile-menu button,
.footer button {
  width: fit-content;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.section {
  width: var(--wrap);
  margin: 0 auto;
  padding: 58px 0;
}

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

.hero {
  position: relative;
  width: 100%;
  height: 620px;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media::after {
  position: absolute;
  inset: 0 0 -36px;
  background:
    linear-gradient(0deg, rgba(251, 248, 241, 0.98) 0 18.75%, rgba(251, 248, 241, 0.34) 38.94%, rgba(251, 248, 241, 0) 62.18%),
    linear-gradient(90deg, rgba(251, 248, 241, 0.52) 0 16%, rgba(251, 248, 241, 0.04) 56%);
  content: "";
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  animation: slow-scale 16s ease-in-out infinite alternate;
}

.hero .hero__media.reveal {
  transform: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: var(--wrap);
  height: 100%;
  flex-direction: column;
  justify-content: end;
  gap: 24px;
  margin: 0 auto;
  padding: 0 0 40px;
}

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

h1 {
  max-width: 295px;
  margin: 0;
  background:
    linear-gradient(138deg, rgba(0, 0, 0, 0.88) 3%, rgba(154, 52, 45, 0.88) 65%),
    linear-gradient(90deg, var(--ink), var(--ink));
  background-clip: text;
  color: transparent;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 34px;
  font-size: 39px;
  font-weight: 600;
  line-height: 1.02;
  text-transform: uppercase;
}

.btn,
.final-order {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-ui);
  padding: 0 24px;
  background: var(--wine);
  color: var(--paper);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.quick-card:hover,
.work-card:hover,
.final-order:hover {
  transform: translateY(-3px);
}

.btn--ghost {
  border: 1px solid rgba(154, 52, 45, 0.26);
  background: rgba(251, 248, 241, 0.65);
  color: var(--wine);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.quick-card {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(154, 52, 45, 0.24);
  border-radius: var(--radius-ui);
  background: var(--blush);
  color: var(--wine);
  box-shadow: 0 2px 6px rgba(154, 52, 45, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.25s ease;
}

.quick-card img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.quick-card span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.quick-card--main {
  grid-column: span 3;
  border-color: #732823;
  background: var(--wine);
  color: var(--paper);
  box-shadow: 0 2px 6px rgba(154, 52, 45, 0.3);
}

.quick-card--small {
  grid-column: span 2;
  background: var(--blush);
  box-shadow: 0 2px 6px rgba(154, 52, 45, 0.2);
}

.hero-contact-grid .quick-card:hover,
.contact-dialog__grid .quick-card:hover {
  border-color: rgba(154, 52, 45, 0.42);
}

.hero-contact-grid .quick-card--main:hover,
.contact-dialog__grid .quick-card--main:hover {
  box-shadow: 0 2px 6px rgba(154, 52, 45, 0.35);
}

.quick-card--vk img {
  width: 22px;
  height: 22px;
}

.quick-card--small:first-of-type {
  order: 3;
}

.hero-contact-grid .quick-card--small span {
  font-size: 0;
}

.works {
  padding-top: 64px;
}

.section-heading {
  margin-bottom: 34px;
}

.masonry {
  position: relative;
  display: grid;
  height: 980px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  overflow: hidden;
  border-radius: var(--radius-ui);
}

.masonry::before,
.masonry::after {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 112px;
  pointer-events: none;
  content: "";
}

.masonry::before {
  top: 0;
  background: linear-gradient(180deg, var(--milk) 0%, rgba(251, 248, 241, 0) 100%);
}

.masonry::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--milk) 0%, rgba(251, 248, 241, 0) 100%);
}

.masonry__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  animation: gallery-drift-down 28s linear infinite alternate;
}

.masonry__column--reverse {
  animation-name: gallery-drift-up;
}

.work-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-ui);
  background: var(--work-image) center / cover, #eee2dc;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.work-card:hover {
  filter: saturate(1.05) contrast(1.02);
}

.work-card span {
  display: none;
}

.work-card--small {
  min-height: 174px;
}

.work-card--mid {
  min-height: 248px;
}

.work-card--tall {
  min-height: 326px;
}

.work-card--wide {
  min-height: 214px;
}

.work-card:nth-child(3n + 1) {
  --work-image: url("assets/figma-work-01.webp");
}

.work-card:nth-child(3n + 2) {
  --work-image: url("assets/figma-work-02.webp");
}

.work-card:nth-child(3n) {
  --work-image: url("assets/figma-hero.webp");
}

.section-cta {
  display: grid;
  margin-top: 34px;
}

.section-cta .btn {
  width: 100%;
  min-height: 62px;
  font-size: 17.5px;
}

.location {
  display: grid;
  gap: 28px;
}

.location__card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 0;
}

.location h2 {
  margin-bottom: 0;
}

.location dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.location dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.36;
  text-transform: uppercase;
}

.location dd {
  margin: 2px 0 0;
  color: var(--wine);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.map-preview {
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-ui);
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(18, 18, 18, 0.08) 1px, transparent 1px),
    #ebe5dc;
  background-size: 46px 46px;
}

.map-preview iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.review-widgets {
  display: grid;
  gap: 16px;
}

.review-widget {
  display: flex;
  min-height: 122px;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: var(--radius-ui);
  padding: 12px 18px;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.review-widget:hover {
  transform: translateY(-3px);
}

.review-widget__logo {
  display: flex;
  width: 98px;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}

.review-widget__logo img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.review-widget--gis .review-widget__logo img {
  border-radius: 16px;
}

.review-widget__content {
  display: flex;
  width: 112px;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.review-widget__rating {
  display: flex;
  width: 93px;
  align-items: center;
  gap: 8px;
}

.review-widget strong {
  font-size: 38px;
  font-weight: 700;
  line-height: 38px;
}

.review-widget__rating img {
  width: 24px;
  height: 24px;
}

.review-widget small {
  color: currentColor;
  opacity: 0.68;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.9px;
  white-space: nowrap;
}

.review-widget--yandex {
  background: #ffdb4d;
  color: #1d1d1b;
}

.review-widget--gis {
  background: #21a038;
  color: #fff;
}

.review-widget--vk {
  background: #0077ff;
  color: #fff;
}

.faq {
  display: grid;
  gap: 26px;
}

.faq__intro {
  padding-top: 34px;
}

.accordion {
  display: grid;
}

.accordion details {
  margin-bottom: 10px;
  border-radius: var(--radius-ui);
  background: rgba(255, 253, 248, 0.56);
  padding: 0 18px;
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
  text-transform: uppercase;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion p {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 17px;
}

.final-cta {
  display: grid;
  gap: 28px;
}

.final-cta h2 {
  margin-bottom: 0;
}

.final-order {
  position: relative;
  width: 100%;
  min-height: 68px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(154, 52, 45, 0.98), rgba(116, 39, 32, 0.92)),
    url("assets/figma-work-01.webp") center / cover;
  font-size: 22px;
  letter-spacing: 0;
}

.final-order::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(116, 39, 32, 0.96) 0 42%, rgba(154, 52, 45, 0.54) 68%, rgba(154, 52, 45, 0.28)),
    url("assets/figma-work-01.webp") center / cover;
  content: "";
  transition: transform 0.45s ease, filter 0.45s ease;
}

.final-order::after {
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: calc(var(--radius-ui) - 4px);
  content: "";
  opacity: 0.7;
  transition: inset 0.25s ease, opacity 0.25s ease;
}

.final-order:hover::before {
  filter: saturate(1.15) contrast(1.04);
  transform: scale(1.04);
}

.final-order:hover::after {
  inset: 9px;
  opacity: 1;
}

.final-order span {
  position: relative;
}

.footer {
  padding: 48px max(16px, calc((100vw - 1180px) / 2)) 30px;
  background: var(--paper);
}

.footer__brand {
  display: grid;
  margin-bottom: 35px;
}

.footer__brand img {
  width: min(358px, 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 18px;
}

.footer__grid > div:last-child {
  grid-column: 1 / -1;
}

.footer h2 {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1;
}

.footer a,
.footer p,
.footer button {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
}

.footer button {
  color: var(--ink);
  font-size: 16px;
}

.copyright {
  margin: 36px 0 0;
}

.reveal {
  opacity: 0;
  transition: opacity 0.65s ease;
}

.reveal.is-visible,
.hero .reveal {
  opacity: 1;
}

.lightbox {
  width: min(680px, calc(100vw - 32px));
  border: 0;
  border-radius: var(--radius-ui);
  padding: 0;
  background: var(--paper);
  color: var(--ink);
}

.lightbox::backdrop {
  background: rgba(18, 18, 18, 0.52);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius-ui);
  background: var(--paper);
  cursor: pointer;
  font-size: 28px;
}

.lightbox__image {
  min-height: 430px;
  border-radius: var(--radius-ui) var(--radius-ui) 0 0;
  background-size: cover !important;
  background-position: center !important;
}

.lightbox__copy {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
}

.lightbox__copy p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 100;
  width: min(640px, calc(100vw - 32px));
  border-radius: var(--radius-ui);
  padding: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(18, 18, 18, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(18, 18, 18, 0.52);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-dialog.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.contact-dialog h2 {
  margin-right: 44px;
  margin-bottom: 22px;
  font-size: clamp(36px, 9vw, 74px);
}

.contact-dialog__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.contact-dialog__grid--balanced .quick-card--main {
  grid-column: span 3;
}

.contact-dialog__grid--balanced .quick-card--small {
  grid-column: span 2;
}

@keyframes slow-scale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

@keyframes gallery-drift-down {
  from {
    transform: translateY(-120px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes gallery-drift-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-120px);
  }
}

@media (min-width: 720px) {
  .section {
    padding: 100px 0;
  }

  .hero {
    height: calc(100svh - 72px);
    min-height: 741px;
    max-height: 741px;
  }

  .hero__media {
    inset: 0 auto 0;
    left: 50%;
    width: var(--wrap);
    border-radius: var(--radius-ui);
    transform: translateX(-50%);
  }

  .hero .hero__media.reveal {
    transform: translateX(-50%);
  }

  .hero__media::after {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(251, 248, 241, 0.96) 0 34%, rgba(251, 248, 241, 0.62) 48%, rgba(251, 248, 241, 0.02) 72%),
      linear-gradient(0deg, rgba(251, 248, 241, 0.78), transparent 24%);
  }

  .hero__media img {
    height: 100%;
    object-position: 78% 50%;
  }

  .hero__copy {
    position: absolute;
    inset: 0 auto auto 50%;
    height: 100%;
    justify-content: end;
    gap: 70px;
    padding: 0 0 40px;
    transform: translateX(-50%);
  }

  .hero .hero__copy.reveal {
    transform: translateX(-50%);
  }

  h1 {
    max-width: 636px;
    font-size: clamp(58px, 5.55vw, 80px);
  }

  h2 {
    font-size: clamp(56px, 5.55vw, 80px);
  }

  .hero-contact-grid {
    width: 631px;
    gap: 16px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .hero-contact-grid .quick-card--main,
  .contact-dialog__grid .quick-card--main {
    min-height: 74px;
    border-color: #64231f;
    background:
      linear-gradient(93.2858deg, rgba(154, 52, 45, 0.14) 0.3499%, rgba(255, 118, 109, 0.14) 22.149%, rgba(163, 30, 21, 0.14) 52.43%, rgba(242, 60, 48, 0.14) 74.576%, rgba(154, 52, 45, 0.14) 99.319%),
      var(--wine);
    box-shadow: 0 2px 6px rgba(154, 52, 45, 0.35);
  }

  .hero-contact-grid .quick-card--small,
  .contact-dialog__grid .quick-card--small {
    min-height: 56px;
    box-shadow: 0 2px 6px rgba(154, 52, 45, 0.25);
  }

  .quick-card img {
    width: 32px;
    height: 32px;
  }

  .quick-card--vk img {
    width: 32px;
    height: 32px;
  }

  .quick-card span {
    font-size: 20px;
  }

  .quick-card--main span {
    font-weight: 600;
  }

  .quick-card--vk span {
    font-weight: 500;
  }

  .hero-contact-grid .quick-card--small span {
    font-size: 20px;
    font-weight: 600;
  }

  .works {
    padding-top: 99px;
  }

  .masonry {
    height: 858px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 14px;
  }

  .masonry__column {
    gap: 14px;
  }

  .location {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    padding: 100px 0;
  }

  .location__card {
    padding-top: 0;
  }

  .map-preview,
  .map-preview iframe {
    min-height: 449px;
  }

  .review-widgets {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .faq {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .faq__intro {
    padding-top: 0;
  }

  .final-cta {
    grid-template-columns: minmax(0, 1fr) 202px;
    align-items: stretch;
  }

  .final-order {
    min-height: 229px;
    align-items: end;
    justify-content: start;
    padding: 24px;
    font-size: 28px;
  }

  .footer__brand img {
    width: 460px;
    margin: 0;
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid > div:last-child {
    grid-column: auto;
  }
}

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

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .site-header {
    grid-template-columns: 194px minmax(0, 1fr) 194px;
    min-height: 72px;
  }

  .brand__logo {
    width: 194px;
  }

  .contact-dialog {
    width: 687px;
  }

  .contact-dialog__grid {
    width: 631px;
    gap: 16px;
  }

  .contact-dialog__grid .quick-card--main {
    min-height: 74px;
  }

  .contact-dialog__grid .quick-card--small {
    min-height: 56px;
  }

  .contact-dialog__grid .quick-card img {
    width: 32px;
    height: 32px;
  }

  .contact-dialog__grid .quick-card span {
    font-size: 20px;
  }
}

@media (max-width: 719px) {
  .btn {
    width: 100%;
  }

  .hero-contact-grid .quick-card {
    min-height: 54px;
  }

  .hero-contact-grid .quick-card--main:nth-child(2) span {
    font-size: 14px;
  }

  .quick-card--small span {
    font-size: 0;
  }

  .contact-dialog {
    padding: 22px;
  }
}

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