:root {
  --apl-navy: #062a50;
  --apl-navy-deep: #031b33;
  --apl-navy-ink: #08223f;
  --apl-blue: #16416d;
  --apl-red: #e63b32;
  --apl-green: #5aa347;
  --apl-ink: #173153;
  --apl-muted: #66758a;
  --apl-line: #dfe7f0;
  --apl-soft-line: #edf2f7;
  --apl-bg: #f5f8fb;
  --apl-white: #fff;
  --apl-radius: 10px;
  --apl-shadow: 0 18px 46px rgba(8, 34, 63, .12);
}

* {
  box-sizing: border-box;
}

body.apl-home {
  margin: 0;
  overflow-x: hidden;
  color: var(--apl-ink);
  background: var(--apl-white);
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

.apl-home a {
  color: inherit;
  text-decoration: none;
}

.apl-home-header {
  position: relative;
  z-index: 20;
  box-shadow: 0 2px 14px rgba(3, 27, 51, .06);
}

.apl-home-utility {
  min-height: 32px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--apl-white);
  background: linear-gradient(90deg, #031b33 0%, #062a50 58%, #0d355e 100%);
  font-size: 12px;
}

.apl-home-utility-message,
.apl-home-utility-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.apl-home-utility small,
.apl-home-utility a,
.apl-home-utility-links span {
  color: #b9cbe0;
}

.apl-home-lang-toggle {
  padding: 0;
  border: 0;
  color: #b9cbe0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.apl-home-lang-toggle.is-active {
  color: var(--apl-white);
  font-weight: 700;
}

.apl-home-nav {
  min-height: 74px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(223, 231, 240, .72);
  background: rgba(255, 255, 255, .98);
}

.apl-home-brand {
  min-width: 306px;
  display: grid;
  grid-template-columns: 84px auto;
  grid-template-areas:
    "logo company"
    "logo en";
  align-items: center;
  column-gap: 12px;
  color: var(--apl-navy);
}

.apl-home-brand img {
  grid-area: logo;
  width: 76px;
  height: auto;
}

.apl-home-brand > span {
  display: none;
}

.apl-home-brand strong {
  grid-area: company;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.apl-home-brand small {
  grid-area: en;
  margin-top: 3px;
  color: #52657c;
  font-size: 11px;
  font-weight: 600;
}

.apl-home-menu {
  display: flex;
  align-items: stretch;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.apl-home-menu a {
  display: grid;
  align-content: center;
  min-height: 74px;
  color: var(--apl-navy);
  white-space: nowrap;
}

.apl-home-menu small {
  display: block;
  margin-top: 3px;
  color: #6e7f95;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .01em;
}

.apl-home-quote {
  min-height: auto !important;
  align-self: center;
  padding: 11px 18px;
  color: var(--apl-white) !important;
  background: linear-gradient(135deg, #f04a3f, #cf2d28);
  border-radius: 3px;
  box-shadow: 0 10px 22px rgba(230, 59, 50, .25);
}

.apl-home-quote small {
  color: rgba(255, 255, 255, .78);
}

.apl-home-menu-button {
  display: none;
}

.apl-home-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--apl-white);
  background:
    radial-gradient(circle at 20% 25%, rgba(22, 65, 109, .72), transparent 38%),
    linear-gradient(90deg, #031b33 0%, #062a50 58%, #081f38 100%),
    var(--apl-navy);
}

.apl-home-hero::before,
.apl-home-contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .75) 45%, transparent 100%);
  pointer-events: none;
}

.apl-home-hero::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1240px) / 2));
  top: 60px;
  width: 34px;
  height: 34px;
  border-top: 2px solid rgba(93, 178, 82, .85);
  border-left: 2px solid rgba(93, 178, 82, .85);
  box-shadow: 12px 12px 0 -10px rgba(93, 178, 82, .85);
}

.apl-home-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 42%;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.96) contrast(1.03);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.apl-home-hero-scale {
  position: absolute;
  left: max(12px, calc((100vw - 1320px) / 2));
  top: 95px;
  bottom: 86px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(202, 219, 237, .72);
  font-size: 11px;
}

.apl-home-hero-copy {
  position: relative;
  z-index: 3;
  width: min(570px, calc(100% - 48px));
  margin-left: max(54px, calc((100vw - 1240px) / 2));
  padding: 70px 0 78px;
}

.apl-home-hero h1 {
  margin: 12px 0 8px;
  max-width: 560px;
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1.12;
  letter-spacing: -.04em;
  overflow-wrap: anywhere;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .26);
}

.apl-home-hero h1 span {
  display: block;
}

.apl-home-en-title {
  margin: 0 0 14px;
  color: #e5eef8;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}

.apl-home-eyebrow {
  position: relative;
  margin: 0;
  color: #dce8f6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}

.apl-home-section-heading p::before,
.apl-home-trust-heading p::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 3px;
  margin-right: 4px;
  vertical-align: middle;
  background: var(--apl-green);
}

.apl-home-hero-description {
  max-width: 535px;
  margin: 0;
  color: #d5e3f2;
  font-size: 16px;
  line-height: 1.72;
}

.apl-home-standards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  color: #eaf2fb;
  font-size: 14px;
  font-weight: 700;
}

.apl-home-standards span:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: rgba(255, 255, 255, .56);
}

.apl-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.apl-home-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 5px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.apl-home-button::after,
.apl-home-inline-link::after,
.apl-home-card-link::after {
  content: "→";
  margin-left: 10px;
}

.apl-home-button-primary {
  border-color: var(--apl-red);
  background: linear-gradient(135deg, #f04a3f, #d42f2a);
  box-shadow: 0 14px 28px rgba(230, 59, 50, .26);
}

.apl-home-button-secondary {
  background: rgba(5, 33, 63, .42);
  backdrop-filter: blur(8px);
}

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

.apl-home-trust {
  padding: 28px max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--apl-line);
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.apl-home-trust-heading {
  padding: 8px 28px 8px 0;
}

.apl-home-trust-heading h2 {
  margin: 0;
  color: var(--apl-navy);
  font-size: 24px;
  line-height: 1.15;
}

.apl-home-trust-heading p {
  margin: 5px 0 0;
  color: var(--apl-muted);
  font-size: 13px;
}

.apl-home-trust article {
  position: relative;
  padding: 8px 24px 8px 64px;
  border-left: 1px solid var(--apl-line);
}

.apl-home-trust article::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 14px;
  width: 26px;
  height: 26px;
  border: 2px solid #27456c;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(39, 69, 108, .06);
}

.apl-home-trust strong,
.apl-home-trust small {
  display: block;
}

.apl-home-trust strong {
  color: var(--apl-navy);
}

.apl-home-trust small {
  color: #62768e;
  font-size: 12px;
}

.apl-home-trust p {
  margin: 7px 0 0;
  color: var(--apl-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.apl-home-section {
  padding: 70px max(24px, calc((100vw - 1240px) / 2));
}

.apl-home-section-muted {
  background: linear-gradient(180deg, #f7fafd 0%, #fff 100%);
}

.apl-home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.apl-home-section-heading h2 {
  margin: 0;
  color: var(--apl-navy);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.apl-home-section-heading p {
  margin: 4px 0 0;
  color: var(--apl-muted);
  font-size: 13px;
}

.apl-home-section-heading a,
.apl-home-inline-link,
.apl-home-card-link {
  color: #214b7a;
  font-weight: 800;
}

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

.apl-home-industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.apl-home-product-card,
.apl-home-industry-card,
.apl-home-resource-card {
  overflow: hidden;
  border: 1px solid var(--apl-line);
  border-radius: var(--apl-radius);
  background: var(--apl-white);
  box-shadow: 0 12px 28px rgba(9, 42, 80, .045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.apl-home-product-card:hover,
.apl-home-industry-card:hover,
.apl-home-resource-card:hover {
  transform: translateY(-4px);
  border-color: #cfdce9;
  box-shadow: var(--apl-shadow);
}

.apl-home-product-card img {
  width: 100%;
  height: 192px;
  object-fit: contain;
  padding: 20px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}

.apl-home-industry-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
}

.apl-home-product-card h3,
.apl-home-product-card small,
.apl-home-product-card p,
.apl-home-product-card .apl-home-card-link,
.apl-home-industry-card h3,
.apl-home-industry-card small,
.apl-home-industry-card p,
.apl-home-industry-card .apl-home-card-link {
  margin-left: 18px;
  margin-right: 18px;
}

.apl-home-product-card h3,
.apl-home-industry-card h3 {
  margin-top: 18px;
  margin-bottom: 4px;
  color: var(--apl-navy);
  font-size: 19px;
  line-height: 1.25;
}

.apl-home-product-card small,
.apl-home-industry-card small {
  display: block;
  color: #536982;
  font-weight: 700;
}

.apl-home-product-card p,
.apl-home-industry-card p {
  min-height: 46px;
  margin-top: 11px;
  margin-bottom: 14px;
  color: var(--apl-muted);
  font-size: 13px;
  line-height: 1.6;
}

.apl-home-card-link {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
}

.apl-home-technology,
.apl-home-case,
.apl-home-resources {
  padding: 70px max(24px, calc((100vw - 1240px) / 2));
}

.apl-home-technology {
  display: grid;
  grid-template-columns: minmax(390px, .92fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.apl-home-technology-visual {
  position: relative;
  min-height: 430px;
  padding: 26px 24px;
  overflow: hidden;
  border: 1px solid var(--apl-line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 63, 105, .12), transparent 36%),
    linear-gradient(145deg, #fff 0%, #f5f8fb 100%);
  box-shadow: 0 18px 42px rgba(16, 35, 55, .13);
}

.apl-home-technology-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(6, 42, 80, .07);
  border-radius: 10px;
  pointer-events: none;
}

.apl-home-tech-image {
  position: absolute;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: transparent;
}

.apl-home-tech-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.apl-home-tech-image-primary {
  left: 24px;
  right: 135px;
  bottom: 30px;
  height: 310px;
  z-index: 2;
}

.apl-home-tech-image-secondary {
  top: 34px;
  right: 18px;
  width: 210px;
  height: 330px;
  z-index: 1;
  padding: 8px;
  background: rgba(255, 255, 255, .62);
  opacity: .96;
  filter: drop-shadow(0 14px 22px rgba(8, 34, 63, .1));
}

.apl-home-technology h2,
.apl-home-case h2 {
  margin: 10px 0 15px;
  color: var(--apl-navy);
  font-size: 36px;
  line-height: 1.18;
  letter-spacing: -.03em;
}

.apl-home-technology p,
.apl-home-case p {
  color: var(--apl-muted);
  line-height: 1.75;
}

.apl-home-technology .apl-home-eyebrow,
.apl-home-case .apl-home-eyebrow {
  color: #455d78;
}

.apl-home-technology > div > p:not(.apl-home-eyebrow) {
  max-width: 640px;
  font-size: 14px;
}

.apl-home-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 20px;
}

.apl-home-metric-grid article {
  min-height: 90px;
  padding: 18px;
  border: 1px solid var(--apl-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.apl-home-metric-grid strong,
.apl-home-metric-grid span {
  display: block;
}

.apl-home-metric-grid strong {
  color: #173a67;
  font-size: 20px;
}

.apl-home-metric-grid span {
  margin-top: 7px;
  color: var(--apl-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.apl-home-case {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 32px;
  background: var(--apl-bg);
}

.apl-home-case > div,
.apl-home-case blockquote {
  margin: 0;
  padding: 42px;
  border-radius: 6px;
  background: var(--apl-white);
}

.apl-home-case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0 20px;
}

.apl-home-case-stats article {
  border-right: 1px solid var(--apl-line);
}

.apl-home-case-stats article:last-child {
  border-right: 0;
}

.apl-home-case-stats strong {
  display: block;
  color: var(--apl-navy);
  font-size: 28px;
}

.apl-home-case-stats span {
  color: var(--apl-muted);
  font-size: 12px;
}

.apl-home-case blockquote {
  position: relative;
  color: var(--apl-white);
  background:
    radial-gradient(circle at 12% 18%, rgba(51, 104, 157, .6), transparent 42%),
    linear-gradient(145deg, #073057, #031b33);
  font-size: 23px;
  line-height: 1.65;
  box-shadow: 0 16px 36px rgba(3, 27, 51, .16);
}

.apl-home-case blockquote::before {
  content: "“";
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 54px;
  line-height: .7;
}

.apl-home-case cite {
  display: block;
  margin-top: 26px;
  color: #b9cada;
  font-size: 13px;
  font-style: normal;
}

.apl-home-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.apl-home-resource-card img {
  width: 100%;
  height: 184px;
  object-fit: cover;
}

.apl-home-resource-card small,
.apl-home-resource-card h3,
.apl-home-resource-card .apl-home-card-link {
  display: block;
  margin-right: 20px;
  margin-left: 20px;
}

.apl-home-resource-card small {
  margin-top: 17px;
  color: #214b7a;
  font-weight: 800;
}

.apl-home-resource-card h3 {
  min-height: 58px;
  margin-top: 7px;
  margin-bottom: 14px;
  color: var(--apl-navy);
  line-height: 1.45;
}

.apl-home-resource-card .apl-home-card-link {
  margin-bottom: 22px;
}

.apl-home-contact-cta {
  position: relative;
  overflow: hidden;
  padding: 42px max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--apl-white);
  background: linear-gradient(135deg, #062a50, #031b33);
}

.apl-home-contact-cta > * {
  position: relative;
  z-index: 1;
}

.apl-home-contact-cta h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
}

.apl-home-contact-cta p {
  margin: 7px 0 0;
  color: #b9cada;
}

.apl-home-footer {
  padding: 48px max(24px, calc((100vw - 1240px) / 2)) 22px;
  color: #dbe7f2;
  background: #031b33;
}

.apl-home-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.apl-home-footer h2 {
  margin: 0 0 14px;
  font-size: 15px;
}

.apl-home-footer h2 small {
  display: block;
  margin-top: 4px;
  color: #829ab0;
}

.apl-home-footer a,
.apl-home-footer p {
  display: block;
  margin: 8px 0;
  color: #a9bdd1;
  font-size: 12px;
  line-height: 1.7;
}

.apl-home-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: 12px;
}

@media (max-width: 1199px) {
  .apl-home-menu-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--apl-line);
    border-radius: var(--apl-radius);
    background: var(--apl-white);
    color: var(--apl-ink);
  }

  .apl-home-menu {
    display: none;
    position: absolute;
    top: 106px;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--apl-line);
    background: var(--apl-white);
    box-shadow: 0 18px 30px rgba(3, 27, 51, .08);
  }

  .apl-home-menu.is-open {
    display: grid;
    gap: 16px;
  }

  .apl-home-menu a {
    min-height: auto;
  }

  .apl-home-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .apl-home-trust-heading {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .apl-home-product-grid,
  .apl-home-industry-grid,
  .apl-home-resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apl-home-technology,
  .apl-home-case {
    grid-template-columns: 1fr;
  }

  .apl-home-technology {
    gap: 30px;
  }

  .apl-home-technology-visual {
    min-height: 360px;
  }

  .apl-home-tech-image-primary {
    right: 120px;
    height: 255px;
  }

  .apl-home-tech-image-secondary {
    width: 185px;
    height: 285px;
  }

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

@media (max-width: 767px) {
  .apl-home-utility {
    min-height: 34px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .apl-home-utility-links {
    flex-wrap: wrap;
  }

  .apl-home-nav {
    min-height: 68px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .apl-home-menu {
    top: 108px;
  }

  .apl-home-brand {
    min-width: 0;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 8px;
  }

  .apl-home-brand img {
    width: 48px;
  }

  .apl-home-brand strong {
    font-size: 14px;
  }

  .apl-home-brand small {
    font-size: 10px;
  }

  .apl-home-hero {
    min-height: 585px;
    background:
      linear-gradient(180deg, rgba(3, 27, 51, .96) 0%, rgba(6, 42, 80, .92) 62%, rgba(6, 42, 80, .62) 100%),
      var(--apl-navy);
  }

  .apl-home-hero-image {
    left: 0;
    width: 100%;
    object-position: 62% center;
    opacity: .42;
    clip-path: none;
  }

  .apl-home-hero h1 {
    max-width: 8em;
    font-size: 39px;
    line-height: 1.16;
  }

  .apl-home-hero-copy {
    width: calc(100% - 48px);
    margin-left: 24px;
    padding: 58px 0 70px;
  }

  .apl-home-hero-scale {
    display: none;
  }

  .apl-home-en-title {
    font-size: 18px;
  }

  .apl-home-section,
  .apl-home-technology,
  .apl-home-case,
  .apl-home-resources {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .apl-home-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .apl-home-section-heading h2,
  .apl-home-contact-cta h2 {
    font-size: 26px;
  }

  .apl-home-trust,
  .apl-home-product-grid,
  .apl-home-industry-grid,
  .apl-home-resource-grid,
  .apl-home-metric-grid,
  .apl-home-case-stats {
    grid-template-columns: 1fr;
  }

  .apl-home-trust article {
    border-left: 0;
    border-top: 1px solid var(--apl-line);
  }

  .apl-home-product-card img {
    height: 180px;
  }

  .apl-home-technology-visual {
    min-height: 390px;
    padding: 22px;
  }

  .apl-home-tech-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .apl-home-tech-image-primary {
    height: 220px;
  }

  .apl-home-tech-image-secondary {
    width: 54%;
    height: 170px;
    margin: -18px 0 0 auto;
  }

  .apl-home-technology h2,
  .apl-home-case h2 {
    font-size: 30px;
  }

  .apl-home-case > div,
  .apl-home-case blockquote {
    padding: 28px;
  }

  .apl-home-case-stats article {
    padding-bottom: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--apl-line);
  }

  .apl-home-contact-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .apl-home-footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apl-home * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
