:root {
  --color-primary: #0068b4;
  --color-secondary: #009ee3;
  --color-black: #121212;
  --color-white: #ffffff;
  --color-gray: #e6e9ea;
  --color-muted: rgba(18, 18, 18, 0.62);
  --font-main: "Poppins", "Noto Sans", Arial, sans-serif;
  --text-xs: 0.875rem;
  --text-sm: 1rem;
  --text-md: 1.25rem;
  --text-lg: 1.375rem;
  --text-xl: clamp(2.25rem, 4.2vw, 4.5rem);
  --text-h2: clamp(2.25rem, 3.1vw, 3rem);
  --radius-sm: 10px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --duration-fast: 160ms;
  --duration-base: 280ms;
  --duration-slow: 560ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1504px;
  --header-h: 123px;
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: var(--font-main);
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(230, 233, 234, 0.72);
  backdrop-filter: blur(18px);
}
.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link img { width: 264px; height: auto; }
.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-size: var(--text-sm);
  line-height: 1.3;
  transition: color var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}
.nav-link:hover {
  color: var(--color-primary);
}
.nav-link.is-active {
  color: var(--color-primary);
  font-weight: 600;
}
.nav-link:hover { transform: translateY(-1px); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.language { position: relative; }
.language__button {
  min-width: 75px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--color-black);
  cursor: pointer;
}
.language__chevron {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--color-black);
  transition: transform var(--duration-base) var(--ease-out);
}
.language.is-open .language__chevron { transform: rotate(180deg); }
.language__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 118px;
  padding: 8px;
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: 0 18px 50px rgba(18, 18, 18, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
}
.language.is-open .language__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.language__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
}
.language__menu a:hover { background: rgba(0, 158, 227, 0.08); color: var(--color-primary); }

.burger {
  display: none;
  position: relative;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 5px;
  width: 22px;
  height: 2px;
  background: var(--color-black);
  transform-origin: center;
  transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-base) var(--ease-out);
}
.burger span:nth-child(1) { top: 9px; width: 16px; left: 11px; }
.burger span:nth-child(2) { top: 15px; }
.burger span:nth-child(3) { top: 21px; }
.burger span:nth-child(4) { top: 27px; width: 16px; }
.burger.is-open span:nth-child(1),
.burger.is-open span:nth-child(4) { opacity: 0; transform: scaleX(0.4); }
.burger.is-open span:nth-child(2) { transform: rotate(45deg); }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  z-index: 18;
  top: 79px;
  right: 0;
  width: min(236px, 62vw);
  height: calc(100vh - 79px);
  padding: 39px 30px;
  background: var(--color-white);
  transform: translateX(105%);
  transition: transform var(--duration-slow) var(--ease-out);
  box-shadow: -30px 0 80px rgba(18, 18, 18, 0.16);
  pointer-events: none;
}
.mobile-panel::before {
  content: "";
  position: fixed;
  inset: 0 100% auto auto;
  width: 100vw;
  height: calc(100vh - 79px);
  background: rgba(18, 18, 18, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-slow) var(--ease-out);
}
.mobile-panel.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-panel.is-open::before { opacity: 1; }
.mobile-panel__nav,
.mobile-panel__langs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mobile-panel__langs { margin-top: 30px; gap: 14px; }
.mobile-panel__langs a.is-active { color: var(--color-primary); font-weight: 600; }
.page-shell {
  transition: filter var(--duration-slow) var(--ease-out);
}
body.is-menu-open .page-shell,
body.is-menu-open .footer {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  display: grid;
  place-items: end center;
  isolation: isolate;
  background: var(--color-white);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: -2;
}
.hero__video--mobile { display: none; }
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0 40%, rgba(255,255,255,0.08) 68%, rgba(255,255,255,0.24) 100%);
}
.hero__content {
  padding-bottom: clamp(48px, 9svh, 96px);
  text-align: center;
  color: var(--color-black);
}
.hero h1 {
  margin: 0 0 15px;
  font-size: var(--text-xl);
  line-height: 1.05;
  font-weight: 500;
  text-transform: uppercase;
}
.hero p:not(.hero__date) {
  margin: 0 auto 35px;
  max-width: 820px;
  font-size: var(--text-md);
  line-height: 1.4;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 64px;
  padding: 18px 45px;
  border-radius: 11px;
  font-size: var(--text-md);
  line-height: 1.35;
  font-weight: 600;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out);
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease-out);
}
.button:hover::before { transform: translateX(120%); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(0.98); }
.button--primary { background: var(--color-primary); color: var(--color-white); }
.button--primary:hover { background: #005a9c; }
.button img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}
.section { padding-block: 70px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 100px;
}
h2 {
  margin: 0;
  font-size: var(--text-h2);
  line-height: 1.1;
  font-weight: 500;
}
.section-title { text-align: center; margin-bottom: 45px; }
.date-tabs {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scrollbar-width: none;
}
.date-tabs::-webkit-scrollbar { display: none; }
.date-tab {
  flex: 0 0 auto;
  padding: 10px 20px;
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-black);
  font-size: var(--text-md);
  line-height: 1.97;
  cursor: pointer;
  transition: color var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}
.date-tab.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}
.program-list {
  display: flex;
  flex-direction: column;
}
.program-item {
  position: relative;
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 217px;
  /*margin-bottom: 47px;*/
  padding-block: 47px;
  border-bottom: 2px solid var(--color-gray);
  opacity: 1;
  max-height: 680px;
  overflow: hidden;
  transform: translateY(0);
  transition:
    max-height 520ms var(--ease-out),
    margin-bottom 520ms var(--ease-out),
    padding-top 520ms var(--ease-out),
    padding-bottom 520ms var(--ease-out),
    border-color 520ms var(--ease-out),
    opacity 360ms var(--ease-out),
    transform 520ms var(--ease-out),
    background-color var(--duration-base) var(--ease-out);
}
.program-item:last-child {
  margin-bottom: 0;
}
.program-item.is-extra {
  max-height: 0;
  margin-bottom: 0;
  padding-block: 0;
  border-color: transparent;
  border-bottom-width: 0;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}
.program-list.is-expanded .program-item.is-extra {
  max-height: 680px;
  /*margin-bottom: 47px;*/
  padding-block: 47px;
  border-color: var(--color-gray);
  border-bottom-width: 2px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: calc(var(--item-index) * 28ms);
}
.program-list.is-expanded .program-item.is-extra:last-child {
  margin-bottom: 0;
}
.program-item.is-current {
  margin-inline: -24px;
  padding-inline: 24px;
  padding-top: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(0, 158, 227, 0.12), rgba(0, 104, 180, 0.04) 58%, transparent);
  border-bottom-color: rgba(0, 158, 227, 0.35);
}
.program-time {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program-time strong {
  color: var(--color-primary);
  font-size: 48px;
  line-height: 1.1;
  font-weight: 500;
}
.program-time span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
}
.program-time span img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}
.program-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 32px;
  max-width: 944px;
}
.program-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: rgba(0, 158, 227, 0.1);
  color: var(--color-secondary);
}
.program-icon img { width: 48px; height: 48px; object-fit: contain; }
.program-item.is-current .program-icon {
  background: rgba(0, 158, 227, 0.18);
}
.program-card h3 {
  margin: 0 0 13px;
  font-size: var(--text-md);
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
}
.program-card p {
  margin: 0 0 13px;
  color: var(--color-black);
  font-size: var(--text-sm);
  line-height: 1.35;
}
.program-card small {
  font-size: var(--text-md);
  line-height: 1.4;
}
.program-more {
  display: block;
  margin: 35px auto 0;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  transition: color var(--duration-base) var(--ease-out);
}
.program-more[hidden] {
  display: none;
}
.program-more:hover { color: var(--color-secondary); }

.speakers { padding-bottom: 70px; }
.speakers-scroller {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  /*scroll-snap-type: x proximity;*/
  scrollbar-width: none;
}
.speakers-scroller::-webkit-scrollbar { display: none; }
.speaker-card {
  flex: 0 0 352px;
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-md);
  background: var(--color-white);
  scroll-snap-align: start;
  transition: transform var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}
.speaker-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 158, 227, 0.65);
}
.speaker-card h3 {
  margin: 0 0 3px;
  font-size: var(--text-lg);
  line-height: 1.2;
  font-weight: 500;
}
.speaker-card p { margin: 0; font-size: var(--text-sm); line-height: 1.3; }
.speaker-card__role { margin-bottom: 12px !important; color: var(--color-secondary); }

.slido {
  padding-block: 50px;
  background: linear-gradient(90deg, rgba(0, 158, 227, 0.08), rgba(0, 104, 180, 0.03));
}
.slido__inner {
  display: grid;
  grid-template-columns: 224px 1fr 352px;
  gap: min(9vw, 160px);
  align-items: center;
}
.slido__qr {
  width: 224px;
  height: 224px;
  display: grid;
  place-items: center;
  background: var(--color-white);
}
.slido__qr img { width: 197px; height: 209px; }
.slido__content h2 { margin-bottom: 20px; }
.slido__content p {
  max-width: 548px;
  margin: 0 0 39px;
  color: var(--color-muted);
  line-height: 1.4;
}
.slido__steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.slido__steps li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: var(--text-md);
  line-height: 1.4;
}
.slido__steps span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid var(--color-secondary);
  border-radius: 999px;
  color: var(--color-secondary);
  font-weight: 600;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 47px;
}
.logo-card {
  min-height: 184px;
  display: grid;
  place-items: center;
  padding: 32px;
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}
.logo-card img {
  max-width: 100%;
  max-height: 126px;
  object-fit: contain;
}

.contacts { padding-top: 20px; }
.contacts__top {
  display: grid;
  grid-template-columns: 470px 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 50px;
}
.contacts h2 {
  font-size: var(--text-xl);
  line-height: 1.05;
  margin-bottom: 20px;
}
.contacts p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.3;
}
.map-widget {
  min-height: 427px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-gray);
}
.map-widget__embed,
.map-widget__embed iframe {
  width: 100% !important;
  min-height: 427px;
  border: 0;
}
.map-widget__embed {
  position: relative;
  z-index: 1;
}
.map-widget__loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    linear-gradient(115deg, transparent 0 45%, rgba(18,18,18,0.08) 46% 47%, transparent 48%),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(18,18,18,0.06) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(18,18,18,0.06) 47px 48px),
    var(--color-gray);
  color: var(--color-black);
  font-weight: 500;
  transition: opacity var(--duration-base) var(--ease-out), visibility var(--duration-base) var(--ease-out);
}
.map-widget.is-loaded .map-widget__loader {
  opacity: 0;
  visibility: hidden;
}
.map-widget__spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(0, 104, 180, 0.18);
  border-top-color: var(--color-primary);
  border-radius: 999px;
  animation: map-spin 850ms linear infinite;
}
.map-widget__links,
.map-widget noscript {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 32px);
}
.map-widget noscript {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: #c00;
  font-size: var(--text-sm);
  font-weight: 700;
}
.map-widget__links a {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--color-primary);
  font-size: 12px;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.1);
}
@keyframes map-spin {
  to { transform: rotate(360deg); }
}
.contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.contact-item h3 {
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-gray);
  font-size: var(--text-md);
  line-height: 1.4;
}
.contact-item a {
  color: var(--color-primary);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer {
  min-height: 314px;
  padding-block: 60px;
  background: var(--color-black);
  color: var(--color-white);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}
.footer__brand {
  min-height: 202px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__brand img { width: 264px; height: auto; }
.footer__brand p {
  margin: 0;
  color: var(--color-gray);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer__nav h2 {
  margin: 0 0 4px;
  font-size: var(--text-lg);
  line-height: 1.2;
}
.footer__nav a { color: var(--color-white); opacity: 0.9; }
.footer__nav a:hover { color: var(--color-secondary); opacity: 1; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root { --header-h: 79px; }
  .header__inner { min-height: var(--header-h); }
  .logo-link img { width: 142px; }
  .desktop-nav,
  .header-actions .language { display: none; }
  .burger { display: block; }
  .program-item { gap: 72px; }
  .slido__inner { grid-template-columns: 180px 1fr; gap: 32px; }
  .slido__steps { grid-column: 2; }
  .contacts__top { grid-template-columns: 1fr; }
  .contact-links { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding-inline: 30px; }
  .hero {
    min-height: calc(100svh - var(--header-h));
    place-items: end center;
  }
  .hero__video--desktop { display: none; }
  .hero__video--mobile {
    display: block;
    inset-block: 0;
    left: 50%;
    right: auto;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: center top;
  }
  .hero__shade {
    display: block;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0 42%, rgba(255,255,255,0.12) 66%, rgba(255,255,255,0.42) 100%);
  }
  .hero__content {
    color: var(--color-black);
    padding-top: 0;
    padding-bottom: clamp(34px, 8svh, 64px);
  }
  .hero h1 { font-size: 40px; }
  .hero p:not(.hero__date) {
    margin-bottom: 21px;
    font-size: var(--text-sm);
    line-height: 1.3;
  }
  .button {
    min-height: 56px;
    padding: 16px 38px;
    font-size: var(--text-sm);
  }
  .section { padding-block: 40px; }
  .section-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  h2 { font-size: 40px; }
  .date-tab {
    padding: 15px 25px;
    font-size: var(--text-sm);
    line-height: 1.2;
  }
  .program-item {
    display: block;
    /*margin-bottom: 30px;*/
    padding-block: 30px;
    max-height: 860px;
  }
  .program-item.is-extra {
    max-height: 0;
    margin-bottom: 0;
    padding-block: 0;
  }
  .program-list.is-expanded .program-item.is-extra {
    max-height: 860px;
    /*margin-bottom: 30px;*/
    padding-block: 30px;
  }
  .program-item.is-current {
    margin-inline: -14px;
    padding-inline: 14px;
    padding-top: 16px;
  }
  .program-time {
    min-height: 96px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
  }
  .program-time div { display: flex; flex-direction: column; gap: 10px; }
  .program-card {
    display: block;
    max-width: none;
  }
  .program-icon {
    float: right;
    width: 96px;
    height: 96px;
    margin-left: 18px;
    margin-bottom: 10px;
  }
  .program-card h3 { font-size: var(--text-lg); }
  .program-card small { font-size: var(--text-md); }
  .speakers-scroller {
    gap: 15px;
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
  }
  .speaker-card { flex-basis: min(370px, calc(100vw - 60px)); }
  .slido { padding-block: 40px; }
  .slido__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .slido__steps {
    grid-column: auto;
    text-align: left;
    width: 100%;
  }
  .slido__steps li { font-size: var(--text-sm); }
  .slido__steps span { width: 45px; height: 45px; flex: 0 0 auto; }
  .logos-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .logo-card { min-height: 184px; }
  .contacts { padding-top: 15px; }
  .contacts__top { gap: 35px; }
  .contacts h2 {
    text-align: center;
    font-size: 40px;
  }
  .contacts p { font-size: var(--text-xs); line-height: 24px; }
  .map-widget,
  .map-widget__embed,
  .map-widget__embed iframe { min-height: 443px; }
  .contact-links { gap: 32px; }
  .contact-item h3 { font-size: var(--text-sm); }
  .contact-item a { font-size: var(--text-lg); }
  .footer {
    min-height: auto;
    padding-block: 23px;
  }
  .footer__inner {
    flex-direction: column;
    gap: 38px;
  }
  .footer__brand {
    min-height: 0;
    gap: 38px;
  }
}

@media (max-width: 430px) {
  .container { padding-inline: 30px; }
  .site-header .container { padding-inline: 30px; }
}

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