:root {
  --red: #b52622;
  --deep-red: #8f1f1c;
  --ink: #22252d;
  --muted: #6f7480;
  --line: #e8eaee;
  --paper: #ffffff;
  --soft: #f6f7f9;
  --dark: #2d3035;
  --shadow: 0 18px 50px rgba(30, 35, 44, .12);
  --rm-header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.7;
  background: var(--paper);
  overflow-x: hidden;
}

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

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

.rm-container {
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
}

.rm-page-shell {
  width: 100%;
  margin: 0 auto;
  padding-top: var(--rm-z-header-height, var(--rm-header-height));
  background: var(--paper);
  overflow: hidden;
}

html.rm-zoom-canvas body {
  background: #fff;
}

html.rm-zoom-canvas .rm-page-shell {
  width: 100%;
  box-shadow: none;
}

html.rm-browser-zoomed-out body {
  background: #fff;
}

html.rm-browser-zoomed-out .rm-page-shell {
  width: min(var(--rm-z-canvas-width, 1920px), 100%);
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  box-shadow: none;
}

.rm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  min-height: var(--rm-z-header-height, var(--rm-header-height));
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(22, 24, 29, .06);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.rm-header.is-scrolled,
.rm-header.menu-open {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px rgba(22, 24, 29, .08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.rm-header-inner {
  height: var(--rm-z-header-height, var(--rm-header-height));
  display: flex;
  align-items: center;
  gap: 26px;
}

.rm-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 156px;
}

.rm-logo-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 34px;
  font-family: Georgia, serif;
  font-weight: 800;
  border-radius: 4px;
  background: var(--red);
}

.rm-logo-image {
  width: 138px;
  height: 64px;
  object-fit: contain;
  border-radius: 4px;
}

.rm-logo strong {
  display: block;
  color: var(--red);
  font-size: 24px;
  line-height: 1.05;
  transition: color .28s ease;
}

.rm-logo em {
  display: block;
  color: var(--red);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  transition: color .28s ease;
}

.rm-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.rm-nav > a,
.rm-nav-item > a {
  display: inline-flex;
  align-items: center;
  padding: 28px 14px;
  color: #343842;
  font-weight: 700;
  border-bottom: 3px solid transparent;
  transition: color .28s ease, border-color .28s ease;
}

.rm-nav > a:hover,
.rm-nav > a.active,
.rm-nav-item > a:hover,
.rm-nav-item > a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.rm-nav-item {
  position: relative;
}

.rm-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(860px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 54px rgba(22, 24, 29, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.rm-nav-item:hover .rm-nav-dropdown,
.rm-nav-item:focus-within .rm-nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.rm-nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rm-nav-dropdown-cases {
  width: min(1220px, calc(100vw - 48px));
  padding: 14px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
}

.rm-nav-dropdown-cases .rm-nav-dropdown-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.rm-case-strip-card {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 10px;
  border: 1px solid #edf0f4;
  border-radius: 6px;
  background: #fff;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.rm-case-strip-card:hover {
  border-color: rgba(181, 38, 34, .28);
  box-shadow: 0 14px 30px rgba(22, 24, 29, .1);
  transform: translateY(-2px);
}

.rm-case-strip-card img {
  width: 100%;
  height: 92px;
  border-radius: 5px;
  object-fit: contain;
  background: #fff;
}

.rm-case-strip-card strong {
  min-height: 42px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rm-nav-dropdown-products {
  width: min(920px, calc(100vw - clamp(24px, 4vw, 72px)));
  padding: 18px 22px;
  border-color: rgba(226, 232, 240, .72);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 58px rgba(15, 23, 42, .14);
  transform: translate(-50%, 10px) scale(.985);
  transform-origin: top center;
}

.rm-nav-item:hover .rm-nav-dropdown-products,
.rm-nav-item:focus-within .rm-nav-dropdown-products {
  transform: translate(-50%, 0) scale(1);
}

.rm-product-dropdown-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
}

.rm-product-dropdown-line,
.rm-product-dropdown-subline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  max-width: 100%;
  min-width: 0;
}

.rm-product-dropdown-line a,
.rm-product-dropdown-subline a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: #2f3541;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.rm-product-dropdown-line span {
  color: #9aa1ad;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.rm-product-dropdown-line a:not(.rm-route-link)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  opacity: 0;
  transform: scaleX(.3);
  transform-origin: center;
  transition: opacity .2s ease, transform .2s ease;
}

.rm-product-dropdown-line a:hover,
.rm-product-dropdown-line a.active,
.rm-product-dropdown-subline a:hover,
.rm-product-dropdown-subline a.active {
  color: var(--red);
}

.rm-product-dropdown-line a:not(.rm-route-link):hover::after,
.rm-product-dropdown-line a:not(.rm-route-link).active::after {
  opacity: 1;
  transform: scaleX(1);
}

.rm-product-dropdown-line .rm-route-link {
  color: #737b8a;
  font-size: 13px;
  font-weight: 800;
}

.rm-product-dropdown-subline {
  justify-self: start;
  max-width: 100%;
  margin-top: 2px;
  padding: 8px 0 0;
  border-top: 1px solid rgba(229, 231, 235, .76);
  outline: 0;
  background: transparent;
}

.rm-product-dropdown-subline a {
  min-height: 28px;
  padding: 0 10px;
  color: #49515f;
  font-size: 14px;
  border-radius: 999px;
  background: #f5f6f8;
}

.rm-product-dropdown-subline a:hover,
.rm-product-dropdown-subline a.active {
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(181, 38, 34, .16);
}

.rm-product-dropdown-title {
  align-self: end;
  justify-self: center;
  margin-top: 34px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0;
}

.rm-nav-product-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 4px 12px;
  min-height: 104px;
  padding: 10px;
  border: 1px solid #edf0f4;
  border-radius: 6px;
  background: #fff;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.rm-nav-product-card:hover {
  border-color: rgba(181, 38, 34, .28);
  box-shadow: 0 14px 30px rgba(22, 24, 29, .1);
  transform: translateY(-2px);
}

.rm-nav-product-card img {
  grid-row: 1 / span 3;
  width: 92px;
  height: 84px;
  border-radius: 5px;
  object-fit: cover;
}

.rm-nav-product-card span {
  justify-self: start;
  padding: 2px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
  border-radius: 4px;
  background: var(--red);
}

.rm-nav-product-card strong {
  min-width: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rm-nav-product-card em {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rm-case-dropdown-card {
  grid-template-columns: 116px minmax(0, 1fr);
  min-height: 112px;
  padding: 12px;
  gap: 5px 14px;
}

.rm-case-dropdown-card img {
  width: 116px;
  height: 88px;
}

.rm-case-dropdown-card span {
  padding: 3px 9px;
}

.rm-case-dropdown-card strong {
  font-size: 17px;
}

.rm-case-dropdown-card em {
  font-size: 14px;
  -webkit-line-clamp: 2;
}

@media (min-width: 981px) {
  .rm-header-inner {
    display: grid;
    grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  }

  .rm-header .rm-container {
    width: min(1600px, calc(100% - 64px));
  }

  .rm-logo {
    justify-self: start;
  }

  .rm-nav {
    justify-self: center;
    margin-left: 0;
  }
}

@media (max-width: 1280px) and (min-width: 981px) {
  .rm-nav-dropdown-cases .rm-nav-dropdown-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rm-product-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.rm-cta,
.rm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  color: #fff;
  font-weight: 800;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  cursor: pointer;
}

.rm-button.light {
  color: var(--red);
  background: #fff;
}

.rm-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  transition: color .28s ease, border-color .28s ease, background .28s ease;
}

.rm-hero {
  position: relative;
  height: clamp(360px, 36.46vw, 700px);
  min-height: 0;
  overflow: hidden;
  background: #111;
}

.rm-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  background-color: #fff;
  background-image: var(--desktop-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1.02);
  transition: opacity .7s ease, transform 1.1s ease;
}

.rm-slide-plain-desktop {
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.rm-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .38), rgba(0, 0, 0, .05));
}

.rm-slide-plain-desktop::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .04), rgba(0, 0, 0, 0));
}

.rm-slide.active {
  opacity: 1;
  transform: scale(1);
}

.rm-slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.rm-slide-content-desktop-hidden {
  display: none;
}

.rm-slide-content h1 {
  max-width: 720px;
  margin: 8px 0 16px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.08;
  letter-spacing: 0;
}

.rm-slide-content p:not(.rm-kicker) {
  max-width: 640px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
}

.rm-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rm-slide-content .rm-kicker,
.rm-page-hero .rm-kicker,
.rm-red-band .rm-kicker {
  color: #fff;
}

.rm-dots {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.rm-dots button {
  width: 38px;
  height: 4px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, .42);
  transition: width .2s ease, background .2s ease, opacity .2s ease;
}

.rm-dots button:hover,
.rm-dots button:focus-visible {
  width: 48px;
  background: rgba(255, 255, 255, .78);
  outline: none;
}

.rm-dots button.active {
  width: 48px;
  background: #fff;
}

.rm-mobile-hero {
  position: relative;
  padding-top: 0;
  overflow: hidden;
  background: #fff;
}

.rm-mobile-slide {
  display: none;
}

.rm-mobile-slide.active {
  display: block;
}

.rm-mobile-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.rm-mobile-slide-content {
  padding: 18px 20px 22px;
  color: var(--ink);
  background: #fff;
}

.rm-mobile-slide-content .rm-kicker {
  color: var(--red);
}

.rm-mobile-slide-content h1 {
  margin: 4px 0 10px;
  font-size: 28px;
  line-height: 1.18;
}

.rm-mobile-slide-content p:not(.rm-kicker) {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.rm-mobile-hero .rm-dots {
  position: static;
  justify-content: center;
  padding: 12px 0 18px;
  transform: none;
  background: #fff;
}

.rm-mobile-hero .rm-dots button {
  background: #d8dce4;
}

.rm-mobile-hero .rm-dots button.active {
  background: var(--red);
}

.rm-section {
  padding: 86px 0;
}

.rm-muted {
  background: var(--soft);
}

.rm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.rm-split h2,
.rm-section-head h2,
.rm-page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.22;
  letter-spacing: 0;
}

.rm-split h2.rm-company-title-single,
.rm-split h2.rm-about-strength-title-single {
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(28px, 2.7vw, 38px);
}

.rm-split h2.rm-about-strength-title-single {
  font-size: clamp(24px, 2.2vw, 34px);
}

.rm-section-head h2.rm-value-section-title {
  font-size: var(--value-title-size, clamp(30px, 3.5vw, 44px));
}

.rm-split p,
.rm-card p,
.rm-news-card p,
.rm-footer p,
.rm-service-grid p,
.rm-value-grid p {
  color: var(--muted);
}

.rm-intro img,
.rm-red-band img,
.rm-detail img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.rm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.rm-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.rm-stats strong {
  display: block;
  color: var(--red);
  font-size: 28px;
  line-height: 1.1;
}

.rm-stats span {
  color: var(--muted);
  font-size: 13px;
}

.rm-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.rm-section-head a {
  color: var(--red);
  font-weight: 800;
}

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

.rm-card,
.rm-news-card,
.rm-service-grid article,
.rm-value-grid article,
.rm-contact-panel,
.rm-form {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(30, 35, 44, .07);
}

.rm-card {
  position: relative;
  overflow: hidden;
}

.rm-card img {
  width: 100%;
  height: 235px;
  object-fit: contain;
  background: #fff;
  transition: transform .4s ease;
}

.rm-news-card:hover img {
  transform: scale(1.05);
}

.rm-card span {
  display: inline-block;
  margin: 18px 20px 0;
  padding: 4px 10px;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  background: var(--red);
}

.rm-card h3,
.rm-card p {
  padding: 0 20px;
}

.rm-card h3,
.rm-news-card h3,
.rm-service-grid h3,
.rm-value-grid h3 {
  margin: 12px 0 8px;
  font-size: 21px;
  line-height: 1.35;
}

.rm-card p {
  min-height: 76px;
  margin-bottom: 22px;
}

.rm-card-more {
  display: inline-flex;
  margin: 0 20px 22px;
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.rm-value-grid,
.rm-service-grid,
.rm-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rm-value-grid article,
.rm-service-grid article {
  min-height: 220px;
  padding: 26px;
}

.rm-service-grid article {
  overflow: hidden;
  padding: 0;
}

.rm-service-grid article a {
  display: block;
  height: 100%;
}

.rm-service-grid article img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #fff;
}

.rm-service-grid article div {
  padding: 20px 22px 24px;
}

.rm-value-grid article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.rm-value-grid article::before,
.rm-value-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .32s ease, transform .5s ease;
  pointer-events: none;
}

.rm-value-grid article::before {
  z-index: -2;
  background-image: var(--value-bg);
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.rm-value-grid article::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 20, 27, .34), rgba(17, 20, 27, .78));
}

.rm-value-grid article h3,
.rm-value-grid article p {
  transition: color .28s ease, opacity .28s ease;
}

.rm-value-grid article:hover,
.rm-value-grid article:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(181, 38, 34, .18);
  box-shadow: 0 22px 50px rgba(30, 35, 44, .16);
  outline: 0;
}

.rm-value-grid article:hover::before,
.rm-value-grid article:hover::after,
.rm-value-grid article:focus-visible::before,
.rm-value-grid article:focus-visible::after {
  opacity: 1;
}

.rm-value-grid article:hover::before,
.rm-value-grid article:focus-visible::before {
  transform: scale(1);
}

.rm-value-grid article:hover h3,
.rm-value-grid article:hover p,
.rm-value-grid article:focus-visible h3,
.rm-value-grid article:focus-visible p {
  color: #fff;
}

.rm-value-grid article.rm-value-hide-text-on-image:hover h3,
.rm-value-grid article.rm-value-hide-text-on-image:hover p,
.rm-value-grid article.rm-value-hide-text-on-image:focus-visible h3,
.rm-value-grid article.rm-value-hide-text-on-image:focus-visible p {
  opacity: 0;
}

.rm-service-grid article span {
  display: block;
  color: var(--red);
  font-size: 36px;
  font-weight: 900;
}

.rm-red-band {
  color: #fff;
  background: linear-gradient(120deg, var(--deep-red), var(--red));
}

.rm-red-band p {
  color: rgba(255, 255, 255, .82);
}

.rm-page-hero {
  padding: 98px 0;
  color: #fff;
  background: linear-gradient(120deg, #2e3036, var(--red));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.rm-page-hero p:not(.rm-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
}

.rm-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.rm-filters a {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.rm-filters a.active,
.rm-filters a:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.rm-catalog-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 72px;
  color: #fff;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.rm-catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(22, 24, 29, .82), rgba(22, 24, 29, .44), rgba(22, 24, 29, .12));
}

.rm-catalog-hero h1 {
  max-width: 780px;
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.12;
}

.rm-catalog-hero p:not(.rm-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
}

.rm-catalog-section {
  background: linear-gradient(180deg, #fff, #f7f8fa 72%, #fff);
}

.rm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -34px 0 28px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(30, 35, 44, .08);
}

.rm-breadcrumb a {
  color: var(--muted);
}

.rm-breadcrumb a::after {
  content: "/";
  margin-left: 10px;
  color: #b9bec8;
}

.rm-breadcrumb span {
  color: var(--red);
  font-weight: 800;
}

.rm-case-filter {
  display: grid;
  gap: 0;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(30, 35, 44, .07);
}

.rm-filter-row {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 20px 24px;
}

.rm-filter-row + .rm-filter-row {
  border-top: 1px solid var(--line);
}

.rm-filter-row strong {
  color: var(--ink);
  line-height: 38px;
}

.rm-filter-row div,
.rm-series-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rm-filter-row a,
.rm-series-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  color: #4d535e;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}

.rm-filter-row a:hover,
.rm-filter-row a.active,
.rm-series-nav a:hover,
.rm-series-nav a.active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-1px);
}

.rm-catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.rm-catalog-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.rm-catalog-head > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 800;
}

.rm-product-head {
  justify-content: center;
  margin-bottom: 22px;
  text-align: center;
}

.rm-series-nav {
  margin-bottom: 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.rm-product-taxonomy {
  display: grid;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: 13px 18px 14px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.rm-product-major-nav,
.rm-product-sub-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 18px;
  overflow: visible;
}

.rm-product-major-nav {
  min-height: 0;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(229, 231, 235, .72);
}

.rm-product-sub-nav {
  justify-self: stretch;
  max-width: none;
  padding: 1px 0 0;
  border: 0;
  gap: 4px 16px;
}

.rm-product-route-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 22px;
  color: #8a93a3;
  font-size: 12px;
  font-weight: 800;
}

.rm-product-route-line > span {
  flex: 0 0 auto;
  color: #9aa1ad;
  font-weight: 900;
}

.rm-product-major-nav > .rm-route-link,
.rm-product-major-nav > span {
  display: none;
}

.rm-product-major-nav a,
.rm-product-sub-nav a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: auto;
  padding: 0;
  min-height: 28px;
  color: #3f4652;
  font-weight: 900;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  white-space: nowrap;
  transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.rm-product-major-nav a {
  font-size: 16px;
}

.rm-product-major-nav a.rm-route-link {
  padding: 0 2px;
  color: #667085;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
}

.rm-product-route-line a.rm-route-link {
  width: auto;
  min-height: 24px;
  padding: 0;
  color: #667085;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
}

.rm-product-major-nav a:not(.rm-route-link),
.rm-product-sub-nav a {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.rm-product-major-thumb {
  width: 36px;
  height: 28px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.rm-product-major-nav a:hover,
.rm-product-major-nav a.active {
  color: var(--red);
  border-color: transparent;
  background: transparent;
}

.rm-product-major-nav a.rm-route-link:hover {
  color: var(--red);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.rm-product-major-nav a.active,
.rm-product-sub-nav a.active {
  color: var(--red);
  border-color: transparent;
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--red);
}

.rm-product-sub-nav a:hover,
.rm-product-sub-nav a.active {
  color: var(--red);
  border-color: transparent;
  background: transparent;
}

.rm-product-sub-nav a.active {
  color: var(--red);
  border-color: transparent;
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--red);
}

.rm-product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: 18px;
}

.rm-product-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(30, 35, 44, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.rm-product-item:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 38, 34, .3);
  box-shadow: 0 24px 54px rgba(30, 35, 44, .14);
}

.rm-product-item a {
  position: relative;
  display: block;
  color: var(--ink);
}

.rm-product-item figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #fff;
}

.rm-product-image-item figure {
  aspect-ratio: 4 / 3;
}

.rm-product-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  transition: transform .42s ease;
}

.rm-product-item:hover img {
  transform: none;
}

.rm-product-item-body {
  min-height: 0;
  padding: 14px 15px 16px;
}

.rm-product-gallery-caption {
  position: static;
  display: grid;
  gap: 6px;
  background: #fff;
}

.rm-product-item span,
.rm-case-card span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 4px;
  background: var(--red);
}

.rm-product-item h3,
.rm-case-card h3 {
  margin: 12px 0 8px;
  font-size: 21px;
  line-height: 1.35;
}

.rm-product-gallery-caption h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
}

.rm-product-gallery-caption p {
  display: -webkit-box;
  min-height: 3.1em;
  margin: 0;
  overflow: hidden;
  color: #69717d;
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rm-product-item p,
.rm-case-card p {
  color: var(--muted);
}

.rm-product-gallery-caption em {
  color: var(--red);
  font-size: 13px;
}

.rm-product-item em,
.rm-case-card em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.rm-product-item em::after,
.rm-case-card em::after {
  content: ">";
  font-family: Arial, sans-serif;
}

body.rm-lightbox-open {
  overflow: hidden;
}

.rm-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(10, 14, 22, .82);
}

.rm-product-lightbox[hidden] {
  display: none;
}

.rm-product-lightbox figure {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: auto;
  max-width: min(94vw, 1320px);
  max-height: 100%;
  margin: 0;
}

.rm-product-lightbox img {
  width: auto;
  max-width: min(94vw, 1320px);
  max-height: min(82vh, 820px);
  object-fit: contain;
  border-radius: 6px;
  background: transparent;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.rm-product-lightbox figcaption {
  display: grid;
  gap: 4px;
  color: #fff;
  text-align: center;
}

.rm-product-lightbox figcaption strong {
  font-size: 18px;
}

.rm-product-lightbox figcaption span {
  color: rgba(255, 255, 255, .72);
}

.rm-product-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(0, 0, 0, .28);
  cursor: pointer;
}

.rm-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.rm-case-card {
  overflow: hidden;
  border-radius: 6px;
  background: #171a20;
  box-shadow: 0 18px 46px rgba(30, 35, 44, .12);
}

.rm-case-card-large {
  grid-column: span 2;
}

.rm-case-card a {
  position: relative;
  display: block;
  min-height: 335px;
  color: #fff;
  isolation: isolate;
}

.rm-case-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform .5s ease;
}

.rm-case-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 20, 27, .08), rgba(17, 20, 27, .78));
  transition: background .32s ease;
}

.rm-case-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px;
}

.rm-case-card h3 {
  max-width: 760px;
  font-size: 25px;
}

.rm-case-card h3:first-child {
  margin-top: 0;
}

.rm-case-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
}

.rm-case-card em {
  color: #fff;
}

.rm-case-card:hover img {
  transform: scale(1.06);
}

.rm-case-card:hover a::after {
  background: linear-gradient(180deg, rgba(17, 20, 27, .18), rgba(143, 31, 28, .86));
}

.rm-partner-logo-carousel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 30px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(30, 35, 44, .08);
}

.rm-partner-logo-carousel::before,
.rm-partner-logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}

.rm-partner-logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.rm-partner-logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.rm-partner-logo-row {
  overflow: hidden;
}

.rm-partner-logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0 22px;
  animation: rm-partner-logo-scroll 30s linear infinite;
}

.rm-partner-logo-row-2 .rm-partner-logo-track {
  animation-direction: reverse;
  animation-duration: 34s;
}

.rm-partner-logo-row-3 .rm-partner-logo-track {
  animation-duration: 38s;
}

.rm-partner-logo-carousel:hover .rm-partner-logo-track {
  animation-play-state: paused;
}

.rm-partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(142px, 12vw, 190px);
  height: 92px;
  padding: 14px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(30, 35, 44, .05);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.rm-partner-logo-item:hover {
  border-color: rgba(181, 38, 34, .28);
  box-shadow: 0 18px 36px rgba(30, 35, 44, .12);
  transform: translateY(-3px);
}

.rm-partner-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes rm-partner-logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.rm-empty-state {
  padding: 42px 24px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed #cdd2da;
  border-radius: 6px;
  background: #fff;
}

.rm-timeline-section {
  background: #fff;
}

.rm-timeline-figure {
  margin: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(30, 35, 44, .08);
  -webkit-overflow-scrolling: touch;
}

.rm-timeline-figure img {
  width: max(100%, 1180px);
  height: auto;
  object-fit: contain;
  background: #fff;
}

body.rm-page-products .rm-float-ad,
body.rm-page-cases .rm-float-ad {
  display: none;
}

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

.rm-news-card {
  overflow: hidden;
}

.rm-news-card img {
  width: 100%;
  height: 210px;
  transition: transform .4s ease;
}

.rm-news-card div {
  padding: 18px 20px 22px;
}

.rm-news-card .rm-card-more {
  margin: 4px 0 0;
}

.rm-news-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.rm-contact-panel,
.rm-form,
.rm-map-card {
  padding: 30px;
}

.rm-map-card {
  display: grid;
  grid-template-rows: minmax(220px, auto) 1fr;
  gap: 0;
  overflow: hidden;
  color: var(--ink);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(30, 35, 44, .07);
}

.rm-map-card figure {
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  background: #eef0f4;
}

.rm-map-card img,
.rm-map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  transition: transform .42s ease;
}

.rm-map-card img {
  object-fit: cover;
}

.rm-map-placeholder {
  display: grid;
  place-items: center;
  padding: 28px;
  color: #4a4f58;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(181, 38, 34, .12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(181, 38, 34, .12) 1px, transparent 1px),
    #f7f8fa;
  background-size: 34px 34px;
}

.rm-map-card > div {
  padding: 24px 26px 28px;
}

.rm-map-card span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0;
}

.rm-map-card h2 {
  margin: 8px 0 8px;
  font-size: 28px;
  line-height: 1.25;
}

.rm-map-card p {
  margin: 0;
  color: var(--muted);
}

.rm-map-card:hover img,
.rm-map-card:hover .rm-map-placeholder {
  transform: scale(1.06);
}

.rm-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #343842;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  border: 1px solid #d8dce4;
  border-radius: 4px;
}

textarea {
  resize: vertical;
}

.rm-notice {
  padding: 10px 14px;
  color: #1d6b45;
  border-radius: 4px;
  background: #e8f6ef;
}

.rm-detail {
  max-width: 960px;
}

.rm-product-detail-nav-section {
  padding: 24px 0 0;
  background: #fff;
}

.rm-product-detail-nav-section .rm-product-taxonomy {
  margin-bottom: 0;
}

.rm-product-detail-nav-section + .rm-section {
  padding-top: 42px;
}

.rm-detail-product {
  max-width: 1120px;
}

.rm-detail img.rm-detail-cover {
  max-height: 560px;
  margin-bottom: 28px;
}

.rm-rich-text {
  color: #343842;
  font-size: 18px;
}

.rm-detail-product .rm-rich-text {
  max-width: 960px;
  margin: 0 auto 24px;
  color: #3f4652;
  font-size: 16px;
}

.rm-detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
  gap: 16px;
  margin-top: 30px;
}

.rm-detail-gallery a {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.rm-detail-gallery img {
  width: 100%;
  max-height: none;
  aspect-ratio: 4 / 3;
  margin-bottom: 0;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 35, 44, .08);
}

.rm-detail-product .rm-detail-gallery {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 190px), 1fr));
  align-items: start;
  margin-top: 18px;
}

.rm-detail-product .rm-detail-gallery img {
  height: auto;
  object-fit: contain;
}

.rm-detail-gallery span {
  color: var(--muted);
  font-size: 14px;
}

.rm-float-ad {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  top: 50%;
  z-index: 46;
  width: 220px;
  overflow: hidden;
  color: #4f535a;
  border: 1px solid rgba(34, 37, 45, .34);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 45px rgba(30, 35, 44, .14);
  transform: translateY(-50%) scale(var(--float-scale, 1));
  transform-origin: right center;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

body.rm-hide-float-ad .rm-float-ad {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(18px) scale(var(--float-scale, 1));
}

.rm-float-ad-logo,
.rm-float-ad-qr,
.rm-float-ad-phone {
  display: grid;
  place-items: center;
  padding: 20px 16px;
  text-align: center;
}

.rm-float-ad-logo,
.rm-float-ad-qr {
  border-bottom: 1px solid rgba(34, 37, 45, .22);
}

.rm-float-ad-logo {
  min-height: 118px;
}

.rm-float-ad-logo img {
  width: 100%;
  max-height: 104px;
  object-fit: contain;
}

.rm-float-ad-logo strong {
  color: #3c4047;
  font-size: 21px;
  line-height: 1.25;
}

.rm-float-ad-logo span {
  margin-top: 8px;
  color: #555a62;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.2;
}

.rm-float-ad-qr img,
.rm-float-ad-placeholder {
  width: 142px;
  height: 142px;
}

.rm-float-ad-qr img {
  object-fit: contain;
}

.rm-float-ad-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 14px;
  border: 1px dashed #cfd3da;
  border-radius: 8px;
  background: #f7f8fa;
}

.rm-float-ad-qr p {
  margin: 12px 0 0;
  color: #575b63;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.22;
}

.rm-float-ad-phone {
  color: #575b63;
  transition: color .2s ease, background .2s ease;
}

.rm-float-ad-phone:hover {
  color: var(--red);
  background: #fafafa;
}

.rm-float-ad-phone span {
  font-size: 26px;
  line-height: 1.1;
}

.rm-float-ad-phone strong {
  margin-top: 8px;
  width: 100%;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  overflow: visible;
}

.rm-mobile-bottom-nav {
  display: none;
}

.rm-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, .86);
  background: #24262c;
}

.rm-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr 1.1fr 1.2fr;
  gap: 34px;
}

.rm-footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

.rm-footer a {
  display: block;
  margin: 6px 0;
  color: rgba(255, 255, 255, .78);
}

.rm-footer-logo {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.rm-footer-icp {
  margin-top: 34px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.rm-footer-copy {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.rm-footer-icp a {
  display: inline-flex;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.rm-footer-icp a:hover {
  color: #fff;
}

html.rm-zoom-managed body {
  font-size: var(--rm-z-body-font);
}

html.rm-zoom-managed .rm-container {
  width: min(var(--rm-z-container-max), calc(100% - var(--rm-z-page-gutter)));
}

html.rm-zoom-managed .rm-header .rm-container {
  width: min(1600px, calc(100% - 64px));
}

html.rm-zoom-managed .rm-header-inner {
  height: var(--rm-z-header-height, var(--rm-header-height));
}

html.rm-zoom-managed .rm-logo-image {
  width: 138px;
  height: 64px;
}

html.rm-zoom-managed .rm-nav > a,
html.rm-zoom-managed .rm-nav-item > a {
  padding: 28px 14px;
  font-size: 15px;
}

html.rm-zoom-managed .rm-nav-dropdown {
  width: min(var(--rm-z-dropdown-width), calc(100vw - var(--rm-z-page-gutter)));
  padding: var(--rm-z-dropdown-pad);
}

html.rm-zoom-managed .rm-nav-dropdown-products {
  width: min(920px, calc(100vw - var(--rm-z-page-gutter)));
  padding: 18px 22px;
}

html.rm-zoom-managed .rm-nav-dropdown-grid {
  gap: var(--rm-z-dropdown-gap);
}

html.rm-zoom-managed .rm-product-dropdown-line,
html.rm-zoom-managed .rm-product-dropdown-subline {
  gap: 8px 16px;
}

html.rm-zoom-managed .rm-product-dropdown-line a,
html.rm-zoom-managed .rm-product-dropdown-subline a,
html.rm-zoom-managed .rm-product-dropdown-line span {
  font-size: 15px;
}

html.rm-zoom-managed .rm-product-dropdown-line .rm-route-link {
  font-size: 13px;
}

html.rm-zoom-managed .rm-product-dropdown-subline a {
  font-size: 14px;
}

html.rm-zoom-managed .rm-nav-product-card {
  grid-template-columns: var(--rm-z-nav-card-img-w) minmax(0, 1fr);
  min-height: var(--rm-z-nav-card-min-h);
  padding: var(--rm-z-nav-card-pad);
  gap: var(--rm-z-nav-card-gap-y) var(--rm-z-nav-card-gap-x);
}

html.rm-zoom-managed .rm-nav-product-card img {
  width: var(--rm-z-nav-card-img-w);
  height: var(--rm-z-nav-card-img-h);
}

html.rm-zoom-managed .rm-nav-product-card strong {
  font-size: var(--rm-z-nav-card-title);
}

html.rm-zoom-managed .rm-nav-product-card em {
  font-size: var(--rm-z-nav-card-text);
}

html.rm-zoom-managed .rm-hero {
  height: clamp(var(--rm-z-hero-min), 36.46vw, var(--rm-z-hero-max));
}

html.rm-browser-zoomed-out .rm-hero {
  width: min(var(--rm-z-canvas-width, 1920px), 100%);
  max-width: 1920px;
  height: auto;
  aspect-ratio: 1920 / 700;
  margin-right: auto;
  margin-left: auto;
}

html.rm-browser-zoomed-out .rm-float-ad {
  right: var(--rm-z-canvas-right-gap, clamp(14px, 2vw, 24px));
}

html.rm-zoom-managed .rm-dots {
  bottom: var(--rm-z-dot-bottom);
  gap: var(--rm-z-dot-gap);
}

html.rm-zoom-managed .rm-dots button {
  width: var(--rm-z-dot-w);
  height: var(--rm-z-dot-h);
}

html.rm-zoom-managed .rm-dots button:hover,
html.rm-zoom-managed .rm-dots button:focus-visible,
html.rm-zoom-managed .rm-dots button.active {
  width: var(--rm-z-dot-active-w);
}

html.rm-zoom-managed .rm-slide-content h1 {
  font-size: clamp(var(--rm-z-slide-h1-min), 6vw, var(--rm-z-slide-h1-max));
}

html.rm-zoom-managed .rm-slide-content p:not(.rm-kicker) {
  font-size: var(--rm-z-slide-text);
}

html.rm-zoom-managed .rm-section {
  padding: var(--rm-z-section-pad) 0;
}

html.rm-zoom-managed .rm-page-hero {
  padding: var(--rm-z-page-hero-pad) 0;
}

html.rm-zoom-managed .rm-split {
  gap: var(--rm-z-split-gap);
}

html.rm-zoom-managed .rm-section-head h2,
html.rm-zoom-managed .rm-split h2,
html.rm-zoom-managed .rm-page-hero h1 {
  font-size: clamp(var(--rm-z-h2-min), 3.5vw, var(--rm-z-h2-max));
}

html.rm-zoom-managed .rm-split h2.rm-company-title-single {
  font-size: clamp(28px, 2.7vw, 38px);
}

html.rm-zoom-managed .rm-split h2.rm-about-strength-title-single {
  font-size: clamp(24px, 2.2vw, 34px);
}

html.rm-zoom-managed .rm-section-head h2.rm-value-section-title {
  font-size: var(--value-title-size, clamp(var(--rm-z-h2-min), 3.5vw, var(--rm-z-h2-max)));
}

html.rm-zoom-managed .rm-grid,
html.rm-zoom-managed .rm-product-catalog-grid {
  gap: var(--rm-z-grid-gap);
}

html.rm-zoom-managed .rm-product-catalog-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--rm-z-product-card-min-w)), 1fr));
}

html.rm-zoom-managed .rm-card img {
  height: var(--rm-z-card-img-h);
  object-fit: contain;
  background: #fff;
}

html.rm-zoom-managed .rm-card h3,
html.rm-zoom-managed .rm-news-card h3,
html.rm-zoom-managed .rm-product-item h3,
html.rm-zoom-managed .rm-case-card h3,
html.rm-zoom-managed .rm-service-grid h3,
html.rm-zoom-managed .rm-value-grid h3 {
  font-size: var(--rm-z-card-title);
}

html.rm-zoom-managed .rm-card p,
html.rm-zoom-managed .rm-news-card p,
html.rm-zoom-managed .rm-product-item p,
html.rm-zoom-managed .rm-case-card p,
html.rm-zoom-managed .rm-rich-text {
  font-size: var(--rm-z-card-text);
}

html.rm-zoom-managed .rm-card h3,
html.rm-zoom-managed .rm-card p {
  padding-right: var(--rm-z-card-pad-x);
  padding-left: var(--rm-z-card-pad-x);
}

html.rm-zoom-managed .rm-card-more,
html.rm-zoom-managed .rm-product-item em,
html.rm-zoom-managed .rm-case-card em {
  font-size: var(--rm-z-card-more);
}

html.rm-zoom-managed .rm-value-grid,
html.rm-zoom-managed .rm-service-grid {
  gap: var(--rm-z-value-gap);
}

html.rm-zoom-managed .rm-value-grid article,
html.rm-zoom-managed .rm-service-grid article {
  min-height: var(--rm-z-value-min-h);
  padding: var(--rm-z-value-pad);
}

html.rm-zoom-managed .rm-catalog-hero {
  min-height: var(--rm-z-catalog-min-h);
  padding-top: var(--rm-z-catalog-pad-top);
  padding-bottom: var(--rm-z-catalog-pad-bottom);
}

html.rm-zoom-managed .rm-catalog-hero h1,
html.rm-zoom-managed .rm-catalog-head h2 {
  font-size: clamp(var(--rm-z-catalog-h1-min), 5vw, var(--rm-z-catalog-h1-max));
}

html.rm-zoom-managed .rm-catalog-hero p:not(.rm-kicker),
html.rm-zoom-managed .rm-page-hero p:not(.rm-kicker) {
  font-size: var(--rm-z-catalog-text);
}

html.rm-zoom-managed .rm-case-grid {
  gap: var(--rm-z-case-gap);
}

html.rm-zoom-managed .rm-case-card a {
  min-height: var(--rm-z-case-min-h);
}

html.rm-zoom-managed .rm-case-card div {
  padding: var(--rm-z-case-pad);
}

html.rm-zoom-managed .rm-case-card h3 {
  font-size: var(--rm-z-case-title);
}

html.rm-zoom-managed .rm-product-item-body {
  min-height: var(--rm-z-product-body-min-h);
  padding: var(--rm-z-product-body-pad-y) var(--rm-z-product-body-pad-x);
}

html.rm-zoom-managed .rm-product-item-body.rm-product-gallery-caption {
  min-height: 0;
  padding: 14px 15px 16px;
}

html.rm-zoom-managed .rm-news-card img {
  height: var(--rm-z-news-img-h);
}

html.rm-zoom-managed .rm-partner-logo-item {
  flex-basis: var(--rm-z-logo-item-w);
  height: var(--rm-z-logo-item-h);
}

html.rm-zoom-managed .rm-contact-panel,
html.rm-zoom-managed .rm-form,
html.rm-zoom-managed .rm-map-card > div {
  padding: var(--rm-z-panel-pad);
}

html.rm-zoom-managed .rm-map-card figure,
html.rm-zoom-managed .rm-map-card img,
html.rm-zoom-managed .rm-map-placeholder {
  min-height: var(--rm-z-map-min-h);
}

html.rm-zoom-managed .rm-float-ad {
  right: var(--rm-z-float-right);
  width: var(--rm-z-float-width);
}

html.rm-zoom-managed .rm-float-ad-logo {
  min-height: var(--rm-z-float-logo-min-h);
}

html.rm-zoom-managed .rm-float-ad-logo img {
  max-height: var(--rm-z-float-logo-max-h);
}

html.rm-zoom-managed .rm-float-ad-qr img,
html.rm-zoom-managed .rm-float-ad-placeholder {
  width: var(--rm-z-float-qr);
  height: var(--rm-z-float-qr);
}

html.rm-zoom-managed .rm-float-ad-qr p,
html.rm-zoom-managed .rm-float-ad-phone span {
  font-size: var(--rm-z-float-text);
}

html.rm-zoom-managed .rm-float-ad-phone strong {
  font-size: var(--rm-z-float-phone);
}

html.rm-zoom-managed .rm-footer {
  padding: var(--rm-z-footer-pad) 0;
}

html.rm-zoom-managed .rm-footer-grid {
  gap: var(--rm-z-footer-gap);
}

html.rm-zoom-managed .rm-button {
  min-height: var(--rm-z-button-h);
  padding-right: var(--rm-z-button-pad-x);
  padding-left: var(--rm-z-button-pad-x);
}

@media (max-width: 1440px) and (min-width: 981px) {
  .rm-container,
  html.rm-zoom-managed .rm-container {
    width: min(1180px, calc(100% - 48px));
  }

  .rm-header .rm-container,
  html.rm-zoom-managed .rm-header .rm-container {
    width: min(1180px, calc(100% - 48px));
  }

  .rm-section,
  html.rm-zoom-managed .rm-section {
    padding: 58px 0;
  }

  .rm-page-hero,
  html.rm-zoom-managed .rm-page-hero {
    padding: 64px 0;
  }

  .rm-split,
  html.rm-zoom-managed .rm-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, .86fr);
    gap: 30px;
  }

  body.rm-page-about .rm-section > .rm-split,
  .rm-intro .rm-split {
    align-items: start;
  }

  body.rm-page-about .rm-section > .rm-split > img,
  .rm-intro .rm-split > img {
    max-height: 430px;
    object-fit: contain;
    background: #fff;
  }

  body.rm-page-about .rm-section > .rm-split p,
  .rm-intro .rm-split p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.66;
  }

  body.rm-page-about .rm-split h2.rm-company-title-single,
  html.rm-zoom-managed body.rm-page-about .rm-split h2.rm-company-title-single {
    font-size: clamp(26px, 2.35vw, 32px);
  }

  .rm-stats {
    gap: 10px;
    margin-top: 22px;
  }

  .rm-stats div {
    padding: 14px;
  }

  .rm-stats strong {
    font-size: 24px;
  }

  .rm-catalog-hero,
  html.rm-zoom-managed .rm-catalog-hero {
    min-height: 340px;
    padding-top: 104px;
    padding-bottom: 52px;
  }

  .rm-case-grid,
  html.rm-zoom-managed .rm-case-grid {
    gap: 20px;
  }

  .rm-case-card a,
  html.rm-zoom-managed .rm-case-card a {
    min-height: 286px;
  }

  .rm-case-card div,
  html.rm-zoom-managed .rm-case-card div {
    padding: 24px;
  }

  .rm-partner-logo-carousel {
    gap: 12px;
    padding: 22px 0;
  }

  .rm-partner-logo-item,
  html.rm-zoom-managed .rm-partner-logo-item {
    flex-basis: 138px;
    height: 74px;
    padding: 10px;
  }
}

@media (max-width: 1920px) and (min-width: 981px) {
  body.rm-page-cases .rm-container,
  html.rm-zoom-managed body.rm-page-cases .rm-container {
    width: min(1180px, calc(100% - 48px));
  }

  body.rm-page-cases .rm-catalog-hero,
  html.rm-zoom-managed body.rm-page-cases .rm-catalog-hero {
    min-height: 260px;
    padding-top: 72px;
    padding-bottom: 42px;
  }

  body.rm-page-cases .rm-catalog-hero h1,
  html.rm-zoom-managed body.rm-page-cases .rm-catalog-hero h1 {
    max-width: 700px;
    font-size: clamp(32px, 3.2vw, 46px);
  }

  body.rm-page-cases .rm-catalog-hero p:not(.rm-kicker),
  html.rm-zoom-managed body.rm-page-cases .rm-catalog-hero p:not(.rm-kicker) {
    max-width: 700px;
    font-size: 16px;
  }

  body.rm-page-cases .rm-catalog-section,
  html.rm-zoom-managed body.rm-page-cases .rm-catalog-section {
    overflow: hidden;
  }

  body.rm-page-cases .rm-catalog-head {
    align-items: end;
    gap: 18px;
  }

  body.rm-page-cases .rm-catalog-head h2,
  html.rm-zoom-managed body.rm-page-cases .rm-catalog-head h2 {
    font-size: clamp(26px, 2.4vw, 34px);
  }

  body.rm-page-cases .rm-partner-logo-carousel {
    width: 100%;
    max-width: 100%;
    gap: 12px;
    padding: 20px 0;
    border-radius: 6px;
  }

  body.rm-page-cases .rm-partner-logo-carousel::before,
  body.rm-page-cases .rm-partner-logo-carousel::after {
    width: 44px;
  }

  body.rm-page-cases .rm-partner-logo-track {
    gap: 12px;
    padding: 0 14px;
  }

  body.rm-page-cases .rm-partner-logo-item,
  html.rm-zoom-managed body.rm-page-cases .rm-partner-logo-item {
    flex: 0 0 clamp(126px, 8vw, 150px);
    height: 72px;
    padding: 10px;
  }
}

@media (max-width: 1280px) and (min-width: 981px) {
  body.rm-page-cases .rm-container,
  html.rm-zoom-managed body.rm-page-cases .rm-container {
    width: min(1060px, calc(100% - 40px));
  }

  body.rm-page-cases .rm-catalog-hero,
  html.rm-zoom-managed body.rm-page-cases .rm-catalog-hero {
    min-height: 230px;
    padding-top: 58px;
    padding-bottom: 36px;
  }

  body.rm-page-cases .rm-partner-logo-item,
  html.rm-zoom-managed body.rm-page-cases .rm-partner-logo-item {
    flex-basis: 124px;
    height: 68px;
  }
}

@supports not (width: min(100%, 1px)) {
  .rm-container {
    width: calc(100% - 56px);
    max-width: 1320px;
  }

  .rm-header .rm-container {
    max-width: 1600px;
  }

  .rm-nav-dropdown,
  .rm-nav-dropdown-products,
  .rm-nav-dropdown-cases {
    max-width: calc(100vw - 48px);
  }

  .rm-product-catalog-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@supports not (aspect-ratio: 1 / 1) {
  .rm-product-item figure {
    height: 240px;
  }

  .rm-case-strip-card img {
    height: 132px;
  }
}

@media (max-width: 980px) {
  .rm-page-shell {
    padding-top: 94px;
  }

  .rm-header {
    min-height: 94px;
  }

  .rm-float-ad {
    right: 12px;
    width: 188px;
  }

  .rm-float-ad-qr img,
  .rm-float-ad-placeholder {
    width: 120px;
    height: 120px;
  }

  .rm-float-ad-qr p,
  .rm-float-ad-phone span {
    font-size: 20px;
  }

  .rm-float-ad-phone strong {
    font-size: 23px;
  }

  .rm-header-inner {
    height: auto;
    min-height: 74px;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .rm-menu-btn {
    display: block;
    margin-left: auto;
  }

  .rm-nav {
    display: none;
    width: 100%;
    order: 3;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
  }

  .rm-nav.open {
    display: grid;
  }

  .rm-nav > a,
  .rm-nav-item > a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .rm-nav-item {
    display: grid;
    grid-column: 1 / -1;
  }

  .rm-nav.open .rm-nav-dropdown {
    position: static;
    width: 100%;
    margin: 0 0 8px;
    padding: 12px;
    border-radius: 6px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: #f8fafc;
  }

  .rm-nav-dropdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rm-cta {
    display: none;
  }

  .rm-split,
  .rm-grid,
  .rm-product-catalog-grid,
  .rm-case-grid,
  .rm-news-grid,
  .rm-footer-grid,
  .rm-value-grid,
  .rm-service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1500px) {
  .rm-float-ad {
    display: none;
  }
}

@media (max-width: 640px) {
  .rm-float-ad {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .rm-page-shell {
    padding-top: 68px;
  }

  .rm-header {
    min-height: 68px;
  }

  .rm-container {
    width: min(100% - 24px, 1200px);
  }

  .rm-header-inner {
    height: 68px;
    min-height: 68px;
    gap: 12px;
    padding: 0;
  }

  .rm-logo {
    min-width: 0;
    gap: 10px;
  }

  .rm-logo-mark {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }

  .rm-logo-image {
    width: 92px;
    height: 48px;
  }

  .rm-logo strong {
    font-size: 22px;
  }

  .rm-logo em {
    font-size: 15px;
  }

  .rm-menu-btn {
    display: none;
  }

  .rm-nav {
    display: none !important;
  }

  .rm-nav > a,
  .rm-nav-item > a {
    justify-content: center;
    min-width: 0;
    padding: 9px 3px;
    font-size: 13px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .rm-nav-dropdown-grid {
    grid-template-columns: 1fr;
  }

  .rm-nav-product-card {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 88px;
  }

  .rm-nav-product-card img {
    width: 72px;
    height: 66px;
  }

  .rm-mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 -12px 30px rgba(22, 24, 29, .12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .rm-mobile-bottom-nav a {
    min-width: 0;
    min-height: 50px;
    display: grid;
    place-items: center;
    padding: 4px 2px;
    color: #454b55;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    border-radius: 8px;
  }

  .rm-mobile-bottom-nav a span {
    max-width: 100%;
  }

  .rm-mobile-bottom-nav a.active,
  .rm-mobile-bottom-nav a:active {
    color: #fff;
    background: var(--red);
  }

  .rm-mobile-hero {
    padding-top: 0;
  }

  .rm-mobile-slide-content {
    padding: 16px 16px 18px;
  }

  .rm-mobile-slide-content h1 {
    font-size: 24px;
  }

  .rm-hero {
    height: 540px;
    min-height: 0;
  }

  .rm-hero.rm-hero-plain-mobile {
    height: calc(68px + 36.46vw);
    min-height: 184px;
    max-height: 260px;
    background: #fff;
  }

  .rm-slide {
    align-items: flex-end;
    padding: 0 0 82px;
    background-image: var(--mobile-bg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .rm-slide-plain-desktop {
    background-position: center center;
    background-size: contain;
  }

  .rm-slide-plain-mobile {
    padding: 0;
    background-position: center 68px;
    background-size: contain;
  }

  .rm-slide::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .58) 48%, rgba(0, 0, 0, .84));
  }

  .rm-slide-plain-desktop::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .58) 48%, rgba(0, 0, 0, .84));
  }

  .rm-slide-plain-mobile::before {
    background: none;
  }

  .rm-slide-content-desktop-hidden {
    display: block;
  }

  .rm-slide-content-mobile-hidden {
    display: none;
  }

  .rm-hero.rm-hero-plain-mobile .rm-dots {
    bottom: 10px;
  }

  .rm-slide-content h1 {
    max-width: 100%;
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.14;
  }

  .rm-slide-content p:not(.rm-kicker) {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .rm-dots {
    bottom: 34px;
  }

  .rm-section {
    padding: 48px 0;
  }

  .rm-section-head {
    display: block;
    margin-bottom: 22px;
  }

  .rm-section-head h2,
  .rm-split h2,
  .rm-page-hero h1 {
    font-size: 26px;
    line-height: 1.25;
  }

  .rm-intro .rm-split h2 {
    font-size: 22px;
    line-height: 1.28;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .rm-split h2.rm-company-title-single,
  html.rm-zoom-managed .rm-split h2.rm-company-title-single {
    white-space: nowrap;
    font-size: clamp(20px, 5.8vw, 28px);
  }

  .rm-section-head h2.rm-value-section-title,
  html.rm-zoom-managed .rm-section-head h2.rm-value-section-title {
    font-size: min(var(--value-title-size, 34px), 34px);
  }

  .rm-page-hero {
    padding: 64px 0;
  }

  .rm-catalog-hero {
    min-height: 360px;
    padding: 118px 0 48px;
    background-position: center;
  }

  .rm-catalog-hero::before {
    background: linear-gradient(180deg, rgba(22, 24, 29, .38), rgba(22, 24, 29, .84));
  }

  .rm-catalog-hero h1 {
    font-size: 34px;
  }

  .rm-catalog-hero p:not(.rm-kicker) {
    font-size: 15px;
  }

  .rm-page-hero p:not(.rm-kicker) {
    font-size: 15px;
  }

  .rm-split,
  .rm-grid,
  .rm-product-catalog-grid,
  .rm-case-grid,
  .rm-news-grid,
  .rm-footer-grid,
  .rm-value-grid,
  .rm-service-grid,
  .rm-stats {
    grid-template-columns: 1fr;
  }

  .rm-breadcrumb {
    margin: -20px 0 22px;
    padding: 14px 16px;
  }

  .rm-case-filter {
    margin-bottom: 26px;
  }

  .rm-filter-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 17px 16px;
  }

  .rm-filter-row strong {
    line-height: 1.3;
  }

  .rm-filter-row div,
  .rm-series-nav,
  .rm-product-major-nav,
  .rm-product-sub-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .rm-filter-row a,
  .rm-series-nav a,
  .rm-product-major-nav a,
  .rm-product-sub-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .rm-catalog-head {
    display: block;
    margin-bottom: 20px;
  }

  .rm-catalog-head > span {
    display: block;
    margin-top: 8px;
  }

  .rm-series-nav {
    margin-bottom: 22px;
    padding: 14px;
  }

  .rm-product-taxonomy {
    margin-bottom: 22px;
    padding: 14px;
  }

  .rm-product-major-nav,
  .rm-product-sub-nav {
    display: flex;
    gap: 4px 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .rm-product-major-nav a,
  .rm-product-sub-nav a {
    width: auto;
    min-height: 28px;
    padding: 0;
    text-align: left;
    white-space: nowrap;
  }

  .rm-product-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .rm-product-item-body {
    min-height: 0;
    padding: 12px;
  }

  .rm-product-gallery-caption h3 {
    font-size: 14px;
  }

  .rm-product-gallery-caption em {
    font-size: 12px;
  }

  .rm-case-card-large {
    grid-column: auto;
  }

  .rm-case-card a {
    min-height: 300px;
  }

  .rm-case-card div {
    padding: 24px;
  }

  .rm-case-card h3 {
    font-size: 22px;
  }

  .rm-partner-logo-carousel {
    gap: 10px;
    padding: 22px 0;
    border-radius: 6px;
  }

  .rm-partner-logo-carousel::before,
  .rm-partner-logo-carousel::after {
    width: 36px;
  }

  .rm-partner-logo-track {
    gap: 10px;
    padding: 0 12px;
    animation-duration: 24s;
  }

  .rm-partner-logo-item {
    flex-basis: 118px;
    height: 70px;
    padding: 10px;
  }

  .rm-stats {
    gap: 10px;
  }

  .rm-stats div {
    padding: 16px;
  }

  .rm-card img {
    height: 210px;
    object-fit: contain;
    background: #fff;
  }

  .rm-case-card img,
  .rm-news-card img,
  .rm-intro img,
  .rm-red-band img {
    object-fit: contain;
    background: #fff;
  }

  .rm-card p {
    min-height: 0;
  }

  .rm-value-grid article {
    min-height: 0;
    padding: 22px;
  }

  .rm-service-grid article {
    min-height: 0;
    padding: 0;
  }

  .rm-news-card img {
    height: 205px;
  }

  .rm-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .rm-filters a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .rm-contact-panel,
  .rm-form,
  .rm-map-card > div {
    padding: 22px;
  }

  .rm-map-card figure,
  .rm-map-card img,
  .rm-map-placeholder {
    min-height: 210px;
  }

  .rm-detail img {
    max-height: none;
    margin-bottom: 20px;
  }

  .rm-footer {
    padding: 42px 0;
  }
}

@media (max-width: 420px) {
  .rm-hero {
    height: 520px;
  }

  .rm-slide-content h1 {
    font-size: 34px;
  }

  .rm-slide-content p:not(.rm-kicker) {
    font-size: 15px;
  }

  .rm-card img,
  .rm-news-card img {
    height: 205px;
  }
}

.rm-intro .rm-split .rm-outline-text,
body.rm-page-about .rm-section > .rm-split .rm-outline-text {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
}

.rm-intro .rm-split .rm-outline-text .rm-outline-title,
body.rm-page-about .rm-section > .rm-split .rm-outline-text .rm-outline-title {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.rm-intro .rm-split .rm-outline-text .rm-outline-item,
body.rm-page-about .rm-section > .rm-split .rm-outline-text .rm-outline-item {
  display: grid;
  gap: 4px;
}

.rm-intro .rm-split .rm-outline-text .rm-outline-item h3,
body.rm-page-about .rm-section > .rm-split .rm-outline-text .rm-outline-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.rm-intro .rm-split .rm-outline-text .rm-outline-item p,
body.rm-page-about .rm-section > .rm-split .rm-outline-text .rm-outline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.rm-intro .rm-split .rm-outline-text + .rm-stats,
body.rm-page-about .rm-section > .rm-split .rm-outline-text + p {
  margin-top: 22px;
}
