@import url('editor-fonts.css');

:root {
  --hm-ink: #14191b;
  --hm-muted: #687276;
  --hm-panel: #eef2f1;
  --hm-orange: #ed760e;
  --hm-red: #d71920;
  --hm-steel: #596260;
  --hm-dark: #151515;
  --hm-display-font: Georgia, "Times New Roman", serif;
  --hm-display-size: clamp(32px, 3.35vw, 52px);
  --hm-display-weight: 500;
  --hm-display-line-height: 1.05;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #151515;
  color: var(--hm-ink);
  font-family: "Arial", "Helvetica Neue", sans-serif;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.hm-wp-site {
  min-height: 0;
  overflow: hidden;
}

.hm-wp-site--sticky-nav {
  overflow-x: clip;
  overflow-y: visible;
}

/* Approved HILLMan split-screen concept. Keep this as the home design base. */
.hm-split-hero {
  position: relative;
  --hm-menu-left: clamp(335px, 28.5vw, 420px);
  min-height: 500px;
  height: clamp(500px, 55vh, 640px);
  overflow: hidden;
  background: #f4f5f4;
  perspective: 1300px;
  isolation: isolate;
}

.hm-split-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/backgrounds/menu-hero-bg.jpg") center center / cover no-repeat;
  filter: none;
  opacity: 1;
}

.hm-split-hero::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -1px;
  z-index: 8;
  height: clamp(26px, 3.6vw, 44px);
  pointer-events: none;
  background: #ffffff;
  clip-path: ellipse(68% 78% at 50% 100%);
}

.hm-split-brand {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: var(--hm-menu-left);
  padding: 0 42px 58px;
  clip-path: none;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.hm-split-brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 46px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), transparent 34%),
    linear-gradient(180deg, rgba(39, 45, 47, .92), rgba(12, 15, 16, .84));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .16) inset,
    0 -10px 18px rgba(0, 0, 0, .2) inset;
}

.hm-split-ticker {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 46px;
  overflow: hidden;
  pointer-events: none;
}

.hm-split-ticker__track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  height: 100%;
  gap: 42px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
  text-shadow: 0 10px 18px rgba(0, 0, 0, .34);
  animation: hm-split-ticker 36s linear infinite;
}

.hm-split-ticker__track span {
  flex: 0 0 auto;
}

.hm-split-ticker__brand {
  font-size: 1.06em;
  font-weight: 650;
}

@keyframes hm-split-ticker {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.hm-split-brand > img:not(.hm-split-brand__logo),
.hm-split-brand__copy {
  display: none;
}

.hm-split-brand__logos {
  position: absolute;
  left: 50%;
  top: clamp(96px, 7vw, 124px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(76%, 300px);
  gap: clamp(22px, 2vw, 30px);
  transform: translateX(-50%);
  pointer-events: none;
}

.hm-split-brand__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(255, 255, 255, .34));
}

.hm-split-brand__logo--main {
  width: clamp(214px, 15.7vw, 266px);
}

.hm-split-brand__logo--pro {
  width: clamp(168px, 12vw, 204px);
  filter: drop-shadow(0 6px 12px rgba(255, 255, 255, .28));
}

.hm-split-menu {
  position: absolute;
  z-index: 4;
  inset: 0 0 0 var(--hm-menu-left);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: 46px 1fr;
  overflow: hidden;
  transform-style: preserve-3d;
}

.hm-split-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 46px;
  bottom: 0;
  z-index: 0;
  background: transparent;
}

.hm-split-top {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  color: rgba(255, 255, 255, .68);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), transparent 34%),
    linear-gradient(180deg, rgba(39, 45, 47, .92), rgba(12, 15, 16, .84));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .16) inset,
    0 -10px 18px rgba(0, 0, 0, .2) inset;
  font-size: 16px;
  line-height: 1.05;
  font-weight: 600;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease, filter .25s ease;
  will-change: transform;
}

.hm-split-tab {
  position: absolute;
  top: 46px;
  bottom: 0;
  z-index: 2;
  --hm-shutter-hover-x: 18px;
  --hm-tab-number-left: calc(22.8% + .56em);
  --hm-tab-label-left: calc(var(--hm-tab-number-left) - .56em);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 29%;
  padding: 38px 24px 56px 34px;
  clip-path: polygon(40% 0, 100% 0, 60% 100%, 0 100%);
  color: rgba(255, 255, 255, .9);
  background:
    linear-gradient(180deg, rgba(96, 104, 104, .5), rgba(42, 50, 51, .36)),
    linear-gradient(120deg, rgba(255, 255, 255, .24), transparent 38%);
  box-shadow:
    12px 0 24px rgba(0, 0, 0, .14),
    1px 0 0 rgba(255, 255, 255, .18) inset;
  backdrop-filter: saturate(.95) blur(1.5px);
  text-decoration: none;
  transform: translateZ(0);
  transform-origin: center top;
  transform-style: preserve-3d;
  transition: transform .28s ease, filter .28s ease, color .28s ease, box-shadow .28s ease, clip-path .28s ease;
}

.hm-split-tab--home { left: 0; }
.hm-split-tab--catalog { left: 17.75%; }
.hm-split-tab--pros { left: 35.5%; }
.hm-split-tab--dealers { left: 53.25%; }
.hm-split-tab--cooperation,
.hm-split-tab--contacts { left: 71%; }

.hm-split-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .34), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, .1), transparent 44%);
  opacity: .55;
  transition: background .28s ease, opacity .28s ease;
}

.hm-split-tab::after {
  content: "";
  position: absolute;
  inset: auto 16% 52px 8%;
  display: none;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .18);
  filter: blur(20px);
  transform: translateZ(-60px);
}

.hm-split-tab span,
.hm-split-tab strong {
  position: relative;
  z-index: 1;
  transform: translateZ(46px);
}

.hm-split-tab span {
  position: absolute;
  left: var(--hm-tab-number-left);
  top: 43%;
  z-index: 1;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(88px, 9.8vw, 150px);
  line-height: .8;
  font-weight: 300;
  text-shadow: none;
  transform: translate3d(-50%, -50%, 46px);
  pointer-events: none;
}

.hm-split-tab strong {
  position: absolute;
  left: var(--hm-tab-label-left);
  right: auto;
  z-index: 3;
  display: block;
  width: max-content;
  max-width: calc(100% - var(--hm-tab-label-left) - 18px);
  color: rgba(255, 255, 255, .96);
  text-align: left;
  text-transform: uppercase;
}

.hm-split-tab strong {
  top: calc(clamp(246px, 54%, 320px) + 1.05em);
  padding-left: 0;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.hm-split-tab small {
  display: none;
}

.hm-split-top:hover,
.hm-split-top:focus-visible {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .14), transparent 34%),
    linear-gradient(180deg, rgba(66, 72, 74, .94), rgba(24, 29, 31, .86));
  box-shadow:
    0 24px 44px rgba(0, 0, 0, .42),
    0 10px 18px rgba(237, 118, 14, .12),
    0 2px 0 rgba(255, 255, 255, .24) inset,
    0 -12px 20px rgba(0, 0, 0, .24) inset;
  filter: saturate(1.06) contrast(1.04);
  transform: translate3d(0, -2px, 36px) scale(1.025);
  outline: none;
}

.hm-split-tab:hover,
.hm-split-tab:focus-visible {
  z-index: 7;
  color: #fff;
  clip-path: polygon(40% 0, 100% 0, 60% 100%, 0 100%);
  filter: saturate(1.08) contrast(1.05);
  box-shadow:
    34px 0 72px rgba(0, 0, 0, .5),
    0 36px 76px rgba(0, 0, 0, .28),
    1px 0 0 rgba(255, 255, 255, .28) inset;
  transform: translateX(var(--hm-shutter-hover-x));
  outline: none;
}

.hm-split-tab:hover::before,
.hm-split-tab:focus-visible::before {
  opacity: .76;
  background:
    linear-gradient(180deg, rgba(237, 118, 14, .22), rgba(237, 118, 14, .06) 46%, rgba(0, 0, 0, .08)),
    linear-gradient(115deg, rgba(255, 255, 255, .58), transparent 26%);
}

.hm-split-tab:hover span,
.hm-split-tab:focus-visible span {
  color: var(--hm-orange);
}

.hm-split-tab:hover strong,
.hm-split-tab:focus-visible strong {
  color: #fff;
}

.hm-wp-after-hero {
  min-height: 340px;
  padding: 58px 20px 66px;
  color: var(--hm-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(239, 243, 242, .96)),
    #eef2f1;
  border-top: 1px solid rgba(20, 25, 27, .08);
}

.hm-wp-after-hero__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hm-wp-after-hero span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--hm-orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hm-wp-after-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--hm-ink);
  font-size: clamp(36px, 4vw, 62px);
  line-height: .95;
}

.hm-wp-after-hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--hm-muted);
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .hm-split-hero {
    height: auto;
    min-height: 720px;
  }

  .hm-split-brand {
    width: 100%;
    height: 300px;
    bottom: auto;
    clip-path: none;
  }

  .hm-split-brand::before,
  .hm-split-brand::after {
    display: none;
  }

  .hm-split-ticker {
    display: none;
  }

  .hm-split-brand__logos {
    top: 74px;
    width: min(74%, 260px);
    gap: 18px;
  }

  .hm-split-brand__logo--main {
    width: 214px;
  }

  .hm-split-brand__logo--pro {
    width: 166px;
  }

  .hm-split-menu {
    inset: 286px 0 0;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 46px 1fr;
  }

  .hm-split-tab {
    top: 46px;
    width: 30%;
  }

  .hm-split-tab span {
    font-size: clamp(72px, 17vw, 128px);
  }

  .hm-split-tab strong {
    top: 66%;
    font-size: 16px;
  }

  .hm-split-tab small {
    display: none;
  }
}

@media (max-width: 700px) {
  .hm-split-hero {
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .hm-split-menu {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 46px) repeat(5, 92px);
    gap: 0;
    padding-top: 300px;
    background: url("../images/backgrounds/menu-hero-bg.jpg") center center / cover no-repeat;
  }

  .hm-split-menu::before {
    display: none;
  }

  .hm-split-top {
    justify-content: flex-start;
    padding-left: 28px;
  }

  .hm-split-tab {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 92px;
    padding: 18px 24px 18px 96px;
    clip-path: none;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .22), transparent 42%),
      linear-gradient(180deg, rgba(137, 147, 148, .62), rgba(82, 92, 94, .46));
    border-top: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .24) inset;
    transform: none;
  }

  .hm-split-tab:hover,
  .hm-split-tab:focus-visible {
    clip-path: none;
    transform: translateX(6px);
  }

  .hm-split-tab::after {
    display: none;
  }

  .hm-split-tab span {
    left: 26px;
    top: 50%;
    color: rgba(255, 255, 255, .24);
    font-size: 58px;
    transform: translateY(-50%);
  }

  .hm-split-tab strong,
  .hm-split-tab small {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    max-width: none;
    transform: none;
  }

  .hm-split-tab strong {
    margin-top: 6px;
    padding-left: 0;
    font-size: 18px;
    text-align: left;
  }

  .hm-split-tab small {
    display: none;
  }

  .hm-wp-after-hero {
    min-height: 320px;
    padding: 42px 18px 52px;
  }

  .hm-wp-after-hero p {
    font-size: 16px;
  }
}

.hm-section {
  position: relative;
  padding: clamp(52px, 5.8vw, 82px) 22px;
  --hm-orange: #fc5200;
  --hm-ink: #111111;
  --hm-muted: #5f6366;
}

.hm-section--light,
.hm-section--white {
  color: var(--hm-ink);
  background: #ffffff;
}

.hm-section--muted {
  color: var(--hm-ink);
  background: #f6f6f6;
}

.hm-section--graphite {
  color: #ffffff;
  background: #151515;
}

.hm-section__inner {
  position: relative;
  z-index: 2;
  width: min(1140px, 100%);
  margin: 0 auto;
}

.hm-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.hm-section-head {
  margin-bottom: clamp(24px, 3.2vw, 38px);
}

.hm-section-head--center {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--hm-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hm-kicker::before,
.hm-kicker::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.hm-section h1,
.hm-section h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.35vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.hm-section h3 {
  margin: 0;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.2;
}

.hm-section p {
  margin: 16px 0 0;
  color: var(--hm-muted);
  font-size: 17px;
  line-height: 1.65;
}

.hm-section--graphite p {
  color: rgba(255, 255, 255, .72);
}

.hm-section--graphite .hm-feature-card,
.hm-section--graphite .hm-product-card {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .12);
  background: #1b1f20;
  box-shadow: none;
}

.hm-section--graphite .hm-category-chip {
  color: #fc5200;
  background: #151515;
}

.hm-wave {
  isolation: isolate;
}

.hm-wave--top::before,
.hm-wave--bottom::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 66px;
  pointer-events: none;
  background: inherit;
}

.hm-wave--top::before {
  top: -46px;
  clip-path: ellipse(68% 74% at 50% 100%);
}

.hm-wave--bottom::after {
  bottom: -46px;
  clip-path: ellipse(68% 74% at 50% 0);
}

.hm-featured {
  padding-top: clamp(50px, 5vw, 76px);
}

.hm-featured .hm-section-head {
  margin-bottom: clamp(22px, 2.8vw, 34px);
}

.hm-decor {
  display: none;
}

.hm-decor::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(237, 118, 14, .22);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.hm-decor--pipe-right {
  right: -92px;
  top: 72px;
  width: 250px;
  height: 420px;
  background-image: url("../images/decor/pipe-right.png");
}

.hm-decor--pipe-left {
  left: -118px;
  bottom: -28px;
  width: 300px;
  height: 230px;
  background-image: url("../images/decor/pipe-left.png");
  opacity: .22;
}

.hm-decor--fitting-corner {
  right: -96px;
  bottom: 6px;
  width: 260px;
  height: 260px;
  background-image: url("../images/decor/fitting-corner.png");
  opacity: .2;
  filter: grayscale(.1) contrast(.95);
}

.hm-slider-shell {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
}

.hm-slider-shell--blog {
  grid-template-columns: 40px minmax(0, 1fr) 40px;
}

.hm-round-arrow {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20, 25, 27, .16);
  border-radius: 50%;
  color: var(--hm-ink);
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 28px rgba(20, 25, 27, .08);
}

.hm-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hm-brand-intro__layout {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, .98fr);
  gap: clamp(34px, 4.8vw, 64px);
  align-items: center;
  width: min(1018px, 100%);
}

.hm-brand-intro__media {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.hm-brand-video-placeholder {
  position: relative;
  display: grid;
  width: min(390px, 100%);
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(252, 82, 0, .86);
  border-radius: 9px;
  color: rgba(20, 25, 27, .6);
  text-align: center;
  background:
    radial-gradient(circle at 34% 42%, rgba(255, 255, 255, .86), rgba(234, 237, 236, .68) 58%, rgba(222, 228, 226, .8) 100%),
    linear-gradient(90deg, rgba(20, 25, 27, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 25, 27, .045) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.hm-brand-video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, transparent 0 48%, rgba(252, 82, 0, .12) 48% 49%, transparent 49% 100%);
  pointer-events: none;
}

.hm-brand-video-placeholder span {
  position: relative;
  z-index: 1;
}

.hm-brand-video-placeholder > span {
  max-width: 210px;
  color: rgba(20, 25, 27, .6);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hm-brand-intro__copy {
  max-width: 560px;
}

.hm-brand-intro__copy h2 {
  margin-top: 0;
  max-width: 550px;
  font-size: clamp(30px, 2.35vw, 42px);
  font-weight: 700;
  line-height: 1.05;
}

.hm-brand-intro__text {
  max-width: 550px;
  margin-top: 24px;
}

.hm-brand-intro__text p {
  margin-top: 0;
  color: #666b6d;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.38;
}

.hm-brand-intro__text p + p {
  margin-top: 15px;
}

.hm-brand-intro__text strong {
  color: #111111;
  font-weight: 800;
}

.hm-brand-intro__icons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.5vw, 34px);
  align-items: center;
  margin-top: 34px;
}

.hm-brand-intro__icons img {
  display: block;
  width: clamp(82px, 7.3vw, 112px);
  height: auto;
  object-fit: contain;
}

.hm-text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  color: var(--hm-orange);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom: 1px solid currentColor;
}

.hm-feature-card,
.hm-product-card,
.hm-blog-card,
.hm-page-card,
.hm-page-panel {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(17, 17, 17, .07);
}

.hm-feature-card__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px 18px;
}

.hm-feature-card h2,
.hm-feature-card h3 {
  margin: 0;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.hm-category-chip {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(252, 82, 0, .5);
  border-radius: 50%;
  color: var(--hm-orange);
  font-size: 11px;
  font-weight: 900;
  background: #ffffff;
}

.hm-photo-placeholder,
.hm-placeholder,
.hm-map-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 174px;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(20, 25, 27, .1);
  border-radius: 8px;
  text-align: center;
  color: rgba(20, 25, 27, .64);
  background:
    radial-gradient(circle at 18% 16%, rgba(237, 118, 14, .16), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #eef1ef 58%, #dfe3e1 100%);
}

.hm-photo-placeholder::before,
.hm-placeholder::before,
.hm-map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(20, 25, 27, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 25, 27, .045) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0, transparent 47%, rgba(237, 118, 14, .16) 47%, rgba(237, 118, 14, .16) 48%, transparent 48%, transparent 100%);
  background-size: 28px 28px, 28px 28px, 100% 100%;
  opacity: .72;
  pointer-events: none;
}

.hm-photo-placeholder::after,
.hm-placeholder::after,
.hm-map-placeholder::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px solid rgba(20, 25, 27, .1);
  border-left: 3px solid rgba(237, 118, 14, .72);
  border-radius: 6px;
  pointer-events: none;
}

.hm-photo-placeholder span,
.hm-placeholder span,
.hm-map-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 240px;
  color: rgba(20, 25, 27, .62);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hm-photo-placeholder--product {
  min-height: 176px;
}

.hm-photo-placeholder--brand {
  min-height: 300px;
  border-radius: 20px;
}

.hm-photo-placeholder--article {
  min-height: 142px;
}

.hm-placeholder strong,
.hm-map-placeholder strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 220px;
  margin-top: 8px;
  color: rgba(20, 25, 27, .78);
  font-size: 16px;
  line-height: 1.3;
}

.hm-placeholder--product {
  min-height: 176px;
}

.hm-placeholder--logo {
  min-height: 112px;
}

.hm-map-placeholder {
  min-height: 360px;
  border-radius: 18px;
}

.hm-trust {
  padding-top: clamp(70px, 7vw, 102px);
  padding-bottom: clamp(70px, 7vw, 102px);
}

.hm-trust__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.hm-trust__badge {
  display: grid;
  place-items: center;
  width: clamp(220px, 21vw, 280px);
  aspect-ratio: 1;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(252, 82, 0, .68);
  border-radius: 50%;
  background: rgba(255, 255, 255, .045);
  box-shadow: none;
}

.hm-trust__badge strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(82px, 8vw, 120px);
  font-weight: 500;
  line-height: .8;
}

.hm-trust__badge span {
  display: block;
  max-width: 130px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hm-trust__content {
  max-width: 760px;
}

.hm-trust-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hm-trust-icons article {
  display: grid;
  grid-template-rows: 128px auto;
  min-height: 188px;
  align-content: center;
  justify-items: center;
  padding: 18px 14px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 18px 42px rgba(15, 20, 21, .08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.hm-trust-icons article:hover {
  transform: translateY(-3px);
  border-color: rgba(252, 82, 0, .28);
  box-shadow: 0 26px 54px rgba(15, 20, 21, .13);
}

.hm-visual-icon {
  display: grid;
  place-items: center;
  width: 150px;
  height: 124px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hm-visual-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-9px) scale(1.34);
  transition: transform .28s ease, filter .28s ease;
}

.hm-trust-icons article:hover .hm-visual-icon img {
  transform: translateY(-11px) scale(1.42);
  filter: saturate(1.06) contrast(1.04);
}

.hm-line-icon {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border: 1px solid rgba(252, 82, 0, .62);
  border-radius: 50%;
}

.hm-line-icon::before,
.hm-line-icon::after {
  content: "";
  position: absolute;
  background: var(--hm-orange);
}

.hm-line-icon::before {
  left: 11px;
  top: 19px;
  width: 16px;
  height: 1px;
}

.hm-line-icon::after {
  left: 18px;
  top: 12px;
  width: 1px;
  height: 15px;
}

.hm-trust-icons h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.hm-trust.hm-section--white .hm-trust__badge {
  background: #f6f6f6;
}

.hm-trust.hm-section--white .hm-trust__badge strong {
  color: #111111;
}

.hm-trust.hm-section--white .hm-trust__badge span {
  color: #5f6366;
}

.hm-trust.hm-section--white .hm-trust-icons article {
  border-color: rgba(17, 17, 17, .1);
  background: #ffffff;
}

.hm-trust.hm-section--white .hm-trust-icons h3 {
  color: #111111;
}

.hm-services {
  padding-top: clamp(58px, 6vw, 82px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.hm-service-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.hm-service-row a {
  display: grid;
  grid-template-rows: 128px auto;
  gap: 14px;
  justify-items: center;
  min-height: 188px;
  align-content: center;
  padding: 18px 14px 20px;
  color: var(--hm-ink);
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(17, 17, 17, .1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 17, 17, .06);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.hm-service-row a:hover,
.hm-service-row a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(252, 82, 0, .28);
  box-shadow: 0 28px 58px rgba(15, 20, 21, .14);
  outline: none;
}

.hm-service-icon {
  display: grid;
  place-items: center;
  width: 150px;
  height: 124px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hm-service-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-9px) scale(1.34);
  transition: transform .28s ease, filter .28s ease;
}

.hm-service-row a:hover .hm-service-icon img,
.hm-service-row a:focus-visible .hm-service-icon img {
  transform: translateY(-11px) scale(1.42);
  filter: saturate(1.06) contrast(1.04);
}

.hm-service-row strong {
  margin: 0;
  max-width: 150px;
  font-size: 15px;
  line-height: 1.22;
}

.hm-blog {
  padding-top: clamp(44px, 4.8vw, 68px);
  padding-bottom: clamp(66px, 6.4vw, 92px);
}

.hm-news-carousel {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 18px;
  align-items: center;
}

.hm-news-carousel--lead {
  position: relative;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 18px;
}

.hm-news-viewport {
  min-width: 0;
  overflow: hidden;
  padding: 1px;
  border-radius: 23px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .58)) padding-box,
    linear-gradient(135deg, rgba(20, 25, 27, .13), rgba(252, 82, 0, .2), rgba(20, 25, 27, .08)) border-box;
  box-shadow:
    0 16px 38px rgba(20, 25, 27, .07),
    0 4px 16px rgba(20, 25, 27, .05);
}

.hm-news-track {
  display: flex;
  gap: 18px;
  overflow: hidden;
  padding: 4px 2px 10px;
}

.hm-news-carousel--lead .hm-news-track {
  gap: 0;
  overflow: visible;
  padding: 0;
  transition: transform 1.15s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.hm-news-card {
  display: grid;
  grid-template-columns: minmax(180px, 25%) minmax(0, 1fr);
  flex: 0 0 min(820px, 82vw);
  min-height: 218px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 17, 17, .07);
}

.hm-news-carousel--lead .hm-news-card {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(230px, 30%) minmax(0, 1fr);
  flex: 0 0 100%;
  height: clamp(214px, 17vw, 250px);
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 10%, rgba(252, 82, 0, .075), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fbfbf8 48%, #ffffff 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 0 0 1px rgba(20, 25, 27, .045) inset;
}

.hm-news-carousel--lead .hm-news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 25, 27, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 25, 27, .026) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 100%);
}

.hm-news-carousel--lead .hm-news-card[aria-hidden="true"] {
  pointer-events: none;
}

.hm-photo-placeholder--news {
  align-self: stretch;
  min-height: 100%;
  margin: 10px 0 10px 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 64% 22%, rgba(252, 82, 0, .18), transparent 26%),
    linear-gradient(145deg, #272c2e 0%, #111517 100%);
  box-shadow:
    0 12px 28px rgba(20, 25, 27, .14),
    0 0 0 1px rgba(20, 25, 27, .08);
}

.hm-photo-placeholder--news img {
  object-fit: cover;
  object-position: center;
}

.hm-news-card__body {
  display: grid;
  align-content: center;
  padding: 26px clamp(22px, 3vw, 38px);
}

.hm-news-meta {
  display: block;
  color: var(--hm-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hm-news-card h2,
.hm-news-card h3 {
  max-width: 540px;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.08;
}

.hm-news-card p {
  max-width: 570px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
}

.hm-news-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--hm-ink);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom: 1px solid rgba(252, 82, 0, .55);
}

.hm-news-carousel--lead .hm-news-card__body {
  position: relative;
  min-width: 0;
  padding: 22px clamp(24px, 3vw, 38px);
}

.hm-news-carousel--lead .hm-news-card__body::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(20, 25, 27, .12), transparent);
}

.hm-news-carousel--lead .hm-news-meta {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 2px solid rgba(252, 82, 0, .24);
}

.hm-news-carousel--lead .hm-news-card h2 {
  display: -webkit-box;
  max-width: 560px;
  margin-top: 12px;
  overflow: hidden;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hm-news-carousel--lead .hm-news-card p {
  display: -webkit-box;
  max-width: 620px;
  margin-top: 10px;
  overflow: hidden;
  color: #4f5659;
  font-size: 15px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hm-news-carousel--lead .hm-news-card a {
  margin-top: 14px;
  transition: color .22s ease, border-color .22s ease, transform .22s ease;
}

.hm-news-carousel--lead .hm-news-card a:hover,
.hm-news-carousel--lead .hm-news-card a:focus-visible {
  color: var(--hm-orange);
  border-color: currentColor;
  outline: none;
  transform: translateX(2px);
}

.hm-news-carousel__arrow {
  position: relative;
  z-index: 3;
  cursor: pointer;
  transition:
    color .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease,
    transform .22s ease;
}

.hm-news-carousel__arrow:hover,
.hm-news-carousel__arrow:focus-visible {
  color: #ffffff;
  border-color: rgba(252, 82, 0, .72);
  background: var(--hm-orange);
  box-shadow:
    0 18px 34px rgba(252, 82, 0, .2),
    0 8px 18px rgba(20, 25, 27, .08);
  outline: none;
  transform: translateY(-1px);
}

.hm-news-carousel__arrow:active {
  transform: translateY(0) scale(.97);
}

.hm-news-carousel.is-single .hm-news-carousel__arrow,
.hm-news-carousel.is-single .hm-news-dots {
  display: none;
}

.hm-news-dots {
  grid-column: 2;
  display: none;
  justify-content: center;
  gap: 8px;
  min-height: 10px;
  margin-top: 12px;
}

.hm-news-dot {
  width: 28px;
  height: 4px;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 25, 27, .16);
  transition: width .28s ease, background .28s ease, transform .22s ease;
}

.hm-news-dot[aria-current="true"] {
  width: 44px;
  background: var(--hm-orange);
}

.hm-news-dot:hover,
.hm-news-dot:focus-visible {
  background: rgba(252, 82, 0, .72);
  outline: none;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .hm-news-carousel--lead .hm-news-track {
    transition: none;
  }
}

.hm-products-marquee {
  overflow: hidden;
  padding: 4px 0 10px;
}

.hm-product-strip {
  display: flex;
  width: max-content;
  overflow: hidden;
  animation: hmProductsMarquee 38s linear infinite;
  will-change: transform;
}

.hm-products-marquee:hover .hm-product-strip,
.hm-products-marquee:focus-within .hm-product-strip {
  animation-play-state: paused;
}

.hm-product-card {
  flex: 0 0 clamp(224px, 22vw, 292px);
  margin-right: 18px;
}

.hm-product-card__body {
  display: grid;
  gap: 8px;
  padding: 16px 18px 18px;
}

.hm-product-card__meta {
  color: #bdbec0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hm-product-card h3 {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

@keyframes hmProductsMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.hm-catalog-brief {
  padding-top: clamp(58px, 5.6vw, 92px);
  padding-bottom: clamp(86px, 7vw, 124px);
}

.hm-catalog-brief__head {
  margin-bottom: clamp(34px, 4vw, 58px);
}

.hm-home-catalog-carousel {
  --hm-home-catalog-gap: clamp(20px, 2.2vw, 34px);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
}

.hm-home-catalog-viewport {
  overflow: hidden;
}

.hm-home-catalog-track {
  display: flex;
  gap: var(--hm-home-catalog-gap);
  will-change: transform;
  transition: transform .92s cubic-bezier(.2, .72, .2, 1);
}

.hm-home-catalog-carousel.is-looping {
  grid-template-columns: minmax(0, 1fr);
}

.hm-home-catalog-carousel.is-looping .hm-home-catalog-carousel__arrow {
  display: none;
}

.hm-home-catalog-carousel.is-looping .hm-home-catalog-track {
  animation: hm-home-catalog-loop var(--hm-home-catalog-loop-duration, 46s) linear infinite;
  transition: none;
}

.hm-home-catalog-carousel.is-paused .hm-home-catalog-track {
  animation-play-state: paused;
}

@keyframes hm-home-catalog-loop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--hm-home-catalog-loop-distance, 0px)), 0, 0);
  }
}

.hm-home-catalog-card {
  flex: 0 0 calc((100% - var(--hm-home-catalog-gap) - var(--hm-home-catalog-gap)) / 3);
}

.hm-home-catalog-carousel__arrow {
  justify-self: center;
  color: #151515;
  background: #ffffff;
  box-shadow: none;
}

.hm-home-catalog-carousel.is-single .hm-home-catalog-carousel__arrow {
  visibility: hidden;
}

.hm-home-catalog-carousel__arrow:hover,
.hm-home-catalog-carousel__arrow:focus-visible {
  color: #ffffff;
  border-color: var(--hm-orange);
  background: var(--hm-orange);
  outline: none;
}

.hm-home-catalog-carousel__arrow:active {
  transform: scale(.96);
}

@media (prefers-reduced-motion: reduce) {
  .hm-home-catalog-track {
    animation: none;
    transition: none;
  }
}

.hm-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hm-blog-card__body {
  padding: 17px 17px 18px;
}

.hm-blog-card__body > span {
  display: block;
  color: var(--hm-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hm-blog-card h3 {
  min-height: 58px;
  margin-top: 10px;
  font-size: 17px;
}

.hm-blog-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--hm-ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.hm-bottom-cta {
  padding-top: clamp(78px, 7vw, 110px);
  padding-bottom: clamp(44px, 4vw, 62px);
}

.hm-bottom-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.hm-bottom-cta__copy {
  max-width: 680px;
}

.hm-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 24px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 999px;
  background: var(--hm-orange);
  box-shadow: none;
}

.hm-contact-mini {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
}

.hm-contact-mini dl,
.hm-contact-mini dt,
.hm-contact-mini dd {
  margin: 0;
}

.hm-contact-mini dl {
  display: grid;
  gap: 18px;
}

.hm-contact-mini div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.hm-contact-mini div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hm-contact-mini dt {
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hm-contact-mini dd {
  margin-top: 6px;
  color: #fff;
  font-size: 18px;
}

.hm-bottom-cta.hm-section--white .hm-contact-mini {
  border-color: rgba(17, 17, 17, .11);
  background: #f6f6f6;
}

.hm-bottom-cta.hm-section--white .hm-contact-mini div {
  border-bottom-color: rgba(17, 17, 17, .1);
}

.hm-bottom-cta.hm-section--white .hm-contact-mini dt {
  color: #5f6366;
}

.hm-bottom-cta.hm-section--white .hm-contact-mini dd {
  color: #111111;
}

.hm-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .9fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.hm-form-mock {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(20, 25, 27, .11);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 44px rgba(23, 29, 31, .08);
}

.hm-form-mock label {
  display: grid;
  gap: 7px;
  color: var(--hm-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hm-form-mock input,
.hm-form-mock textarea {
  width: 100%;
  border: 1px solid rgba(20, 25, 27, .13);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--hm-ink);
  font: inherit;
  background: #fff;
}

.hm-form-consent {
  grid-template-columns: auto 1fr;
  align-items: center;
  text-transform: none;
  letter-spacing: 0;
}

.hm-form-consent input {
  width: 18px;
  height: 18px;
}

.hm-form-mock button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--hm-orange);
}

.hm-site-footer {
  --hm-orange: #fc5200;
  padding: 42px clamp(24px, 6.2vw, 118px) 16px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: rgba(255, 255, 255, .78);
  background: #151515;
}

.home .hm-site-footer,
.front-page .hm-site-footer {
  margin-top: -1px;
}

body:not(.home):not(.front-page) .hm-wp-main {
  padding-bottom: clamp(72px, 7vw, 112px);
  background: #ffffff;
}

.hm-site-footer__inner {
  display: grid;
  grid-template-columns: minmax(310px, .95fr) minmax(420px, 1fr) minmax(240px, .72fr) minmax(300px, .8fr);
  gap: clamp(28px, 4.2vw, 64px);
  align-items: start;
  width: min(1660px, 100%);
  margin: 0 auto;
}

.hm-site-footer__logo {
  display: block;
  width: min(180px, 100%);
  height: auto;
  margin-bottom: 10px;
}

.hm-site-footer__pro {
  display: block;
  width: min(147px, 100%);
  height: auto;
  margin-left: 16.5px;
  margin-bottom: 14px;
}

.hm-site-footer__brand p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

.hm-site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(18px, 1.05vw, 20px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

.hm-site-footer__nav {
  display: grid;
  gap: 0;
}

.hm-site-footer__menu-grid {
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(0, max-content);
  gap: 10px clamp(34px, 4.4vw, 78px);
  align-items: start;
}

.hm-site-footer__menu-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-site-footer__menu-list li {
  margin: 0;
  padding: 0;
}

.hm-site-footer__contacts,
.hm-site-footer__docs {
  display: grid;
  gap: 10px;
}

.hm-site-footer__contacts span,
.hm-site-footer__bottom span {
  display: block;
}

.hm-site-footer a {
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.hm-site-footer__nav a,
.hm-site-footer__docs a,
.hm-site-footer__contacts span {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
  white-space: nowrap;
}

.hm-site-footer__docs a {
  font-weight: 400;
}

.hm-site-footer a:hover,
.hm-site-footer a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.hm-site-footer__contacts {
  text-align: left;
}

.hm-site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1660px, 100%);
  margin: 26px auto 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.hm-site-footer__bottom span:last-child {
  text-align: right;
}

@media (max-width: 1500px) {
  .hm-site-footer {
    padding-right: clamp(24px, 4vw, 72px);
    padding-left: clamp(24px, 4vw, 72px);
  }

  .hm-site-footer__inner {
    grid-template-columns: minmax(260px, .9fr) minmax(360px, 1fr) minmax(220px, .72fr) minmax(260px, .78fr);
    gap: clamp(24px, 2.8vw, 42px);
  }
}

@media (max-width: 1280px) {
  .hm-site-footer__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px clamp(32px, 5vw, 64px);
  }

  .hm-site-footer__brand p {
    max-width: 460px;
  }
}

.hm-page {
  --hm-orange: #fc5200;
  --hm-ink: #111111;
  --hm-graphite: #151515;
  --hm-muted: #5f6366;
  --hm-line: rgba(17, 17, 17, .12);
  color: var(--hm-ink);
  background: #ffffff;
}

.hm-inner-nav {
  --hm-inner-nav-sticky-offset: 0px;
  --hm-orange: #fc5200;
  position: sticky;
  top: var(--hm-inner-nav-sticky-offset, 0px);
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #ffffff;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .08);
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, backdrop-filter .22s ease;
}

body.admin-bar .hm-inner-nav {
  --hm-inner-nav-sticky-offset: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .hm-inner-nav {
    --hm-inner-nav-sticky-offset: 46px;
  }
}

.hm-inner-nav__inner {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  width: min(1460px, 100%);
  margin: 0 auto;
  padding: 10px clamp(18px, 2.4vw, 34px);
  transition: gap .22s ease, padding .22s ease;
}

.hm-inner-nav__brand {
  display: inline-flex;
  width: clamp(100px, 8vw, 128px);
  min-width: 96px;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.hm-inner-nav__logo {
  display: block;
  width: clamp(88px, 7vw, 112px);
  height: auto;
  flex: 0 0 auto;
}

.hm-inner-nav__menu {
  flex: 1 1 auto;
  min-width: 0;
}

.hm-inner-nav__links {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), transparent 34%),
    linear-gradient(180deg, rgba(39, 45, 47, .96), rgba(12, 15, 16, .92));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .14) inset,
    0 -10px 18px rgba(0, 0, 0, .22) inset;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.hm-inner-nav.is-glass {
  border-bottom-color: rgba(255, 255, 255, .16);
  background: rgba(9, 13, 15, .78);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .28),
    0 1px 0 rgba(255, 255, 255, .08) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hm-inner-nav.is-glass .hm-inner-nav__inner {
  padding-top: 6px;
  padding-bottom: 6px;
}

.hm-inner-nav.is-glass .hm-inner-nav__brand {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .3));
}

.hm-inner-nav.is-glass .hm-inner-nav__links {
  border-color: rgba(255, 255, 255, .18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .14), transparent 34%),
    linear-gradient(180deg, rgba(35, 42, 45, .78), rgba(5, 8, 9, .66));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .18) inset,
    0 -12px 18px rgba(0, 0, 0, .22) inset,
    0 14px 32px rgba(0, 0, 0, .26);
}

.hm-inner-nav.is-glass .hm-inner-nav__link {
  color: rgba(255, 255, 255, .82);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .09), transparent 34%),
    linear-gradient(180deg, rgba(41, 49, 52, .55), rgba(10, 13, 14, .42));
}

.hm-inner-nav__link {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 0 clamp(8px, .68vw, 12px);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .72);
  font-size: clamp(9px, .64vw, 11px);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .025em;
  white-space: nowrap;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .06), transparent 34%),
    linear-gradient(180deg, rgba(39, 45, 47, .88), rgba(12, 15, 16, .84));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .12) inset,
    0 -10px 18px rgba(0, 0, 0, .18) inset;
  transition: box-shadow .22s ease, color .22s ease, transform .22s ease, filter .22s ease, background .22s ease;
}

.hm-inner-nav__link:first-child {
  border-left: 0;
}

.hm-inner-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--hm-orange);
  transition: transform .18s ease;
}

.hm-inner-nav__link:hover,
.hm-inner-nav__link:focus-visible,
.hm-inner-nav__link.is-active {
  color: var(--hm-orange);
  transform: translateY(-2px);
  filter: saturate(1.06) contrast(1.04);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), transparent 34%),
    linear-gradient(180deg, rgba(66, 72, 74, .96), rgba(24, 29, 31, .88));
  box-shadow:
    0 18px 32px rgba(0, 0, 0, .32),
    0 1px 0 rgba(255, 255, 255, .2) inset,
    0 -12px 20px rgba(0, 0, 0, .22) inset;
  outline: none;
}

.hm-inner-nav__link:hover::after,
.hm-inner-nav__link:focus-visible::after,
.hm-inner-nav__link.is-active::after {
  transform: scaleX(1);
}

.hm-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  height: clamp(320px, 29vw, 400px);
  align-items: center;
  padding: 0 22px;
  color: #ffffff;
  background-color: #151515;
  background-image: url("../images/page-headers/heade.png");
  background-position: center;
  background-size: cover;
}

.hm-page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(17, 17, 17, .52) 52%, rgba(0, 0, 0, .34)),
    rgba(0, 0, 0, .18);
}

.hm-page-hero__inner {
  width: min(1080px, calc(100% - clamp(72px, 8vw, 152px)));
  margin: 0 auto;
  max-height: calc(100% - 40px);
}

.hm-page-hero h1 {
  max-width: 720px;
  margin: 16px 0 0;
  font-family: var(--hm-display-font);
  font-size: var(--hm-display-size);
  font-weight: var(--hm-display-weight);
  line-height: var(--hm-display-line-height);
  letter-spacing: 0;
  text-wrap: balance;
}

.hm-page-hero p {
  max-width: 860px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hm-page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hm-page-hero__meta li {
  min-height: 36px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, .06);
}

:is(.hm-page, .hm-product-category) {
  position: relative;
}

.hm-inner-nav--brand,
.hm-inner-nav--brand.is-glass {
  border-bottom: 0;
  background: #0b0f10;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

:is(.hm-page, .hm-product-category) .hm-inner-nav--brand,
:is(.hm-page, .hm-product-category) .hm-inner-nav--brand.is-glass {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hm-product-category .hm-inner-nav--brand,
.hm-product-category .hm-inner-nav--brand.is-glass {
  position: sticky;
  top: var(--hm-inner-nav-sticky-offset, 0px);
  right: auto;
  left: auto;
  z-index: 80;
  background: #0b0f10;
}

body:not(.home):not(.front-page) .hm-inner-nav--brand,
body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass {
  position: fixed;
  top: var(--hm-inner-nav-sticky-offset, 0px);
  right: 0;
  left: 0;
  z-index: 90;
  border-bottom: 0;
  min-height: 88px;
  background: rgba(5, 9, 10, .97);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .22),
    0 1px 0 rgba(255, 255, 255, .07) inset;
  pointer-events: auto;
  transition: background .22s ease, box-shadow .22s ease, backdrop-filter .22s ease;
}

body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass {
  background: rgba(5, 9, 10, .84);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, .32),
    0 1px 0 rgba(255, 255, 255, .1) inset;
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__inner,
body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__inner {
  justify-content: space-between;
  width: min(1720px, calc(100% - 46px));
  min-height: 88px;
  gap: clamp(18px, 2vw, 34px);
  padding: 0;
}

body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__brand,
body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__brand {
  display: inline-flex;
  width: clamp(162px, 13vw, 246px);
  min-width: clamp(162px, 13vw, 246px);
  margin-left: 0;
  pointer-events: auto;
}

body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__logo,
body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__logo {
  width: clamp(150px, 12.2vw, 230px);
  opacity: 1;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .34));
}

body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__menu,
body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__menu {
  width: auto;
  max-width: calc(100vw - clamp(270px, 26vw, 430px));
  flex: 0 1 auto;
  margin-left: auto;
  pointer-events: auto;
}

body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__links,
body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__links {
  width: auto;
  min-height: 58px;
  justify-content: flex-start;
  gap: clamp(18px, 1.45vw, 30px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hm-inner-nav--brand .hm-inner-nav__inner,
.hm-inner-nav--brand.is-glass .hm-inner-nav__inner {
  width: min(1720px, calc(100% - 46px));
  gap: clamp(20px, 2.3vw, 36px);
  padding: 16px 0 0;
}

.hm-inner-nav--brand .hm-inner-nav__brand {
  width: clamp(202px, 15.8vw, 286px);
  min-width: clamp(202px, 15.8vw, 286px);
  margin-left: clamp(6px, .75vw, 14px);
}

.hm-inner-nav--brand .hm-inner-nav__logo {
  width: clamp(196px, 15.1vw, 276px);
}

.hm-inner-nav--brand .hm-inner-nav__menu {
  width: 100%;
  max-width: min(1260px, calc(100% - clamp(420px, 23vw, 500px)));
  flex: 0 1 auto;
  margin-left: auto;
}

.hm-inner-nav--brand .hm-inner-nav__links,
.hm-inner-nav--brand.is-glass .hm-inner-nav__links {
  min-height: 58px;
  align-items: stretch;
  justify-content: flex-end;
  gap: clamp(18px, 1.45vw, 30px);
  overflow-x: auto;
  overflow-y: hidden;
  border: 0;
  background: #0b0f10;
  box-shadow: none;
  scrollbar-width: none;
}

.hm-inner-nav--brand .hm-inner-nav__links::-webkit-scrollbar {
  display: none;
}

.hm-inner-nav--brand .hm-inner-nav__link,
.hm-inner-nav--brand.is-glass .hm-inner-nav__link {
  min-height: 58px;
  flex: 0 0 auto;
  min-width: max-content;
  padding: 0 clamp(4px, .35vw, 7px);
  border: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(10px, .72vw, 13px);
  font-weight: 700;
  letter-spacing: .025em;
  background: transparent;
  box-shadow: none;
  filter: none;
  transform: none;
  transition: color .18s ease;
}

.hm-inner-nav--brand .hm-inner-nav__link:hover,
.hm-inner-nav--brand .hm-inner-nav__link:focus-visible,
.hm-inner-nav--brand .hm-inner-nav__link.is-active,
.hm-inner-nav--brand.is-glass .hm-inner-nav__link:hover,
.hm-inner-nav--brand.is-glass .hm-inner-nav__link:focus-visible,
.hm-inner-nav--brand.is-glass .hm-inner-nav__link.is-active {
  color: var(--hm-orange);
  background: transparent;
  box-shadow: none;
  filter: none;
  transform: none;
  outline: none;
}

.hm-inner-nav--brand .hm-inner-nav__link:hover::after,
.hm-inner-nav--brand .hm-inner-nav__link:focus-visible::after {
  transform: scaleX(0);
}

.hm-inner-nav--brand .hm-inner-nav__link.is-active::after,
.hm-inner-nav--brand.is-glass .hm-inner-nav__link.is-active::after {
  transform: scaleX(1);
}

:is(.hm-page, .hm-product-category) .hm-page-hero {
  min-height: 0;
  height: clamp(350px, 22.8vw, 448px);
  align-items: flex-start;
  padding: clamp(102px, 6.4vw, 124px) 22px clamp(34px, 3.4vw, 56px);
  background-color: #151515;
  background-image: url("../images/page-headers/about-hero-bg.jpg");
  background-position: center top;
  background-size: cover;
}

:is(.hm-page, .hm-product-category) .hm-page-hero__overlay {
  background: none;
}

:is(.hm-page, .hm-product-category) .hm-page-hero__inner {
  width: min(1480px, calc(100% - clamp(44px, 8vw, 168px)));
  max-height: none;
}

:is(.hm-page, .hm-product-category) .hm-page-hero h1 {
  max-width: min(1120px, 100%);
  margin-top: 12px;
  line-height: 1.04;
}

:is(.hm-page, .hm-product-category) .hm-page-hero p {
  max-width: min(800px, 100%);
  margin-top: 14px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.48;
}

:is(.hm-page, .hm-product-category) .hm-page-hero__meta {
  margin-top: 22px;
}

.hm-page-section {
  padding: clamp(56px, 7vw, 98px) 22px;
  --hm-orange: #fc5200;
  color: var(--hm-ink);
  background: #ffffff;
}

.hm-page-section--white {
  background: #ffffff;
}

.hm-page-section--gray {
  background: #f6f6f6;
}

.hm-page-section--dark {
  color: #ffffff;
  background: #151515;
}

.hm-page-section__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hm-page-section__head {
  max-width: 760px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.hm-page-section__head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hm-page-section h2 {
  margin: 12px 0 0;
  font-family: var(--hm-display-font);
  font-size: var(--hm-display-size);
  font-weight: var(--hm-display-weight);
  line-height: var(--hm-display-line-height);
  letter-spacing: 0;
  text-wrap: balance;
}

.hm-page-section h3 {
  margin: 14px 0 0;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.2;
}

.hm-page-section p {
  color: var(--hm-muted);
  line-height: 1.72;
}

.hm-page-section--dark p {
  color: rgba(255, 255, 255, .68);
}

.hm-about-welcome {
  --hm-orange: #fc5200;
  padding: 0;
  color: var(--hm-ink);
  background: #f6f6f6;
}

.hm-about-welcome__media {
  position: relative;
  width: min(1900px, 100%);
  min-height: clamp(620px, 46vw, 760px);
  margin: 0 auto;
  overflow: hidden;
  background: #f6f6f6;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, .08);
}

.hm-about-welcome__media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0) 52%);
}

.hm-about-welcome__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.96) contrast(1.03);
}

.hm-about-welcome__panel {
  position: absolute;
  top: 50%;
  left: clamp(28px, 9.5vw, 180px);
  z-index: 2;
  box-sizing: border-box;
  width: min(640px, calc(100% - 56px));
  padding: clamp(28px, 3.1vw, 44px) clamp(28px, 3.6vw, 50px);
  border-left: 5px solid var(--hm-orange);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
  transform: translateY(-50%);
}

.hm-about-welcome__panel .hm-kicker {
  color: var(--hm-orange);
}

.hm-about-welcome__panel h2 {
  margin: 0 0 22px;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 2.7vw, 52px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hm-about-welcome__panel p {
  max-width: 55ch;
  margin: 0 0 18px;
  color: #343a3d;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.48;
}

.hm-about-welcome__panel .hm-text-link {
  margin-top: 8px;
}

.hm-page--about .hm-page-section--gray {
  padding-top: clamp(42px, 5vw, 74px);
}

.hm-page--about .hm-page-section--gray .hm-page-section__inner {
  width: min(1500px, calc(100% - 56px));
}

.hm-page--about .hm-page-grid--five {
  gap: clamp(14px, 1.45vw, 24px);
}

.hm-about-pillar {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: clamp(20px, 1.8vw, 28px) clamp(18px, 1.7vw, 26px) clamp(22px, 2vw, 30px);
  border: 1px solid #d3d6d8;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(252, 252, 252, .94)),
    #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .78),
    0 18px 42px rgba(0, 0, 0, .05);
  text-align: center;
}

.hm-about-pillar::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(189, 190, 192, .28);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.hm-about-pillar__icon {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(94px, 6.2vw, 126px);
  height: clamp(94px, 6.2vw, 126px);
  margin: 0 auto 14px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .14));
}

.hm-about-pillar h3,
.hm-about-pillar p {
  position: relative;
  z-index: 1;
}

.hm-about-pillar h3 {
  margin-top: 0;
  text-align: center;
}

.hm-about-pillar p {
  max-width: 24ch;
  margin: 14px auto 0;
  text-align: center;
  line-height: 1.54;
}

.hm-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hm-page-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hm-page-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hm-page-grid--professionals {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hm-professional-library-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 24px);
}

.hm-professional-library-item {
  min-width: 0;
}

.hm-professional-library-item:not(.hm-professional-library-item--linked),
.hm-professional-library-card__link {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: clamp(270px, 20vw, 322px);
  overflow: hidden;
  color: var(--hm-ink);
  text-decoration: none;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 20, 21, .08);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.hm-professional-library-card__link:hover,
.hm-professional-library-card__link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(237, 118, 14, .32);
  box-shadow: 0 28px 58px rgba(15, 20, 21, .15);
  outline: none;
}

.hm-professional-library-item:not(.hm-professional-library-item--linked) {
  cursor: default;
}

.hm-professional-library-item:not(.hm-professional-library-item--linked)::after,
.hm-professional-library-card__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 38px;
  height: 38px;
  background: var(--hm-orange);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.hm-professional-library-item:not(.hm-professional-library-item--linked)::after {
  background: rgba(17, 17, 17, .18);
}

.hm-professional-library-card__image {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  margin: 0;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: clamp(30px, 2.6vw, 42px) clamp(18px, 2vw, 28px) clamp(18px, 2vw, 26px);
  background: #f8f9f9;
}

.hm-professional-library-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 238px;
  max-height: 188px;
  object-fit: contain;
  object-position: center top;
  transform: scale(1.18);
  transition: transform .34s ease, filter .34s ease;
}

.hm-professional-library-card__link:hover .hm-professional-library-card__image img,
.hm-professional-library-card__link:focus-visible .hm-professional-library-card__image img {
  transform: scale(1.32);
  filter: saturate(1.05) contrast(1.04);
}

.hm-professional-library-item:not(.hm-professional-library-item--linked) > h3,
.hm-professional-library-card__link > h3 {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 72px;
  align-items: center;
  margin: 0;
  padding: 16px clamp(16px, 1.5vw, 22px);
  color: #111111;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
  border-top: 1px solid rgba(17, 17, 17, .08);
  background: #ffffff;
}

.hm-professional-library-item:not(.hm-professional-library-item--linked) > p,
.hm-professional-library-card__link > p,
.hm-professional-library-card__link > small,
.hm-professional-library-card__link > strong {
  display: none;
}

.hm-page-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.hm-page-split--wide {
  grid-template-columns: minmax(280px, .72fr) minmax(420px, 1.28fr);
}

.hm-page-card,
.hm-page-panel {
  border: 1px solid var(--hm-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .06);
}

.hm-page-section--dark .hm-page-card,
.hm-page-section--dark .hm-page-panel {
  border-color: rgba(255, 255, 255, .12);
  background: #1b1f20;
  box-shadow: none;
}

.hm-page-card {
  overflow: hidden;
}

.hm-page-card__body {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: clamp(22px, 3vw, 32px);
}

.hm-page-card__body .hm-text-link {
  margin-top: auto;
}

.hm-page-card p,
.hm-page-panel p {
  color: var(--hm-muted);
}

.hm-page-panel {
  padding: clamp(24px, 3vw, 36px);
}

.hm-professional-card {
  padding: 0;
}

.hm-cooperation-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.hm-cooperation-card__media {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  min-height: 0;
  border: 0;
  border-radius: 0;
}

.hm-cooperation-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hm-cooperation-card__body {
  display: grid;
  min-height: 220px;
  align-content: start;
  padding: clamp(24px, 3vw, 36px);
}

.hm-cooperation-card__body .hm-text-link {
  align-self: end;
  margin-top: 24px;
}

.hm-professional-card__link {
  display: grid;
  height: 100%;
  min-height: 260px;
  align-content: start;
  padding: clamp(24px, 3vw, 36px);
  color: inherit;
  text-decoration: none;
}

.hm-professional-card__link small {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(252, 82, 0, .28);
  border-radius: 8px;
  color: var(--hm-orange);
  font-size: 12px;
  font-weight: 900;
  background: #fff4ee;
}

.hm-professional-card__link > strong {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--hm-orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hm-professional-card__link > strong::after {
  content: "->";
  margin-left: 8px;
}

.hm-professional-relations {
  display: grid;
  gap: clamp(26px, 4vw, 46px);
}

.hm-professional-relations--single {
  padding: clamp(48px, 7vw, 82px) 22px;
  background: #f4f6f5;
}

.hm-professional-relations__group {
  display: grid;
  gap: 18px;
}

.hm-professional-relations__group h3 {
  margin: 0;
}

.hm-professional-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.hm-placeholder,
.hm-map-placeholder {
  min-height: 220px;
}

.hm-placeholder--tall {
  min-height: 420px;
}

.hm-placeholder--media {
  min-height: 190px;
}

.hm-placeholder--product {
  min-height: 250px;
}

.hm-photo-placeholder img,
.hm-placeholder img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hm-photo-placeholder--product,
.hm-placeholder--product {
  background:
    radial-gradient(circle at 50% 38%, rgba(237, 118, 14, .1), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f4f6f5 100%);
}

.hm-photo-placeholder--product img,
.hm-placeholder--product img {
  box-sizing: border-box;
  object-fit: contain;
  padding: clamp(12px, 5%, 24px);
  filter: drop-shadow(0 14px 24px rgba(20, 25, 27, .12));
}

.hm-news-carousel--lead .hm-photo-placeholder--news img {
  box-sizing: border-box;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.hm-photo-placeholder:has(img:not(.is-image-missing))::before,
.hm-photo-placeholder:has(img:not(.is-image-missing))::after,
.hm-placeholder:has(img:not(.is-image-missing))::before,
.hm-placeholder:has(img:not(.is-image-missing))::after,
.hm-map-placeholder:has(img:not(.is-image-missing))::before,
.hm-map-placeholder:has(img:not(.is-image-missing))::after {
  opacity: 0;
}

.hm-photo-placeholder.is-image-missing img,
.hm-placeholder.is-image-missing img,
.hm-map-placeholder.is-image-missing img,
.hm-product-single__main-image.is-image-missing img,
.hm-catalog-content__media.is-image-missing img,
.hm-catalog-sidebar__icon.is-image-missing img,
.hm-cooperation-card__media.is-image-missing img {
  display: none;
}

.hm-placeholder--dark,
.hm-page-section--dark .hm-placeholder,
.hm-page-section--dark .hm-map-placeholder {
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .76);
  background:
    radial-gradient(circle at 20% 16%, rgba(237, 118, 14, .22), transparent 30%),
    linear-gradient(145deg, #2b3031 0%, #151515 100%);
}

.hm-placeholder--dark::before,
.hm-page-section--dark .hm-placeholder::before,
.hm-page-section--dark .hm-map-placeholder::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
}

.hm-placeholder--dark::after,
.hm-page-section--dark .hm-placeholder::after,
.hm-page-section--dark .hm-map-placeholder::after {
  border-color: rgba(255, 255, 255, .14);
  border-left-color: rgba(237, 118, 14, .8);
}

.hm-placeholder--dark span,
.hm-page-section--dark .hm-placeholder span,
.hm-page-section--dark .hm-map-placeholder span,
.hm-placeholder--dark strong,
.hm-page-section--dark .hm-placeholder strong,
.hm-page-section--dark .hm-map-placeholder strong {
  color: rgba(255, 255, 255, .78);
}

.hm-cooperation-card__media.hm-placeholder {
  min-height: 0;
  padding: 18px;
}

.hm-product-single__main-image [data-media-fallback],
.hm-catalog-content__media [data-media-fallback],
.hm-cooperation-card__media [data-media-fallback] {
  position: relative;
  z-index: 1;
  max-width: 240px;
  color: rgba(20, 25, 27, .62);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hm-product-single__thumb-fallback {
  display: grid;
  min-height: 0;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 8px;
  color: rgba(20, 25, 27, .54);
  font-size: 11px;
  font-weight: 900;
  background:
    radial-gradient(circle at 50% 42%, rgba(237, 118, 14, .1), transparent 34%),
    #f4f6f5;
}

.hm-map-placeholder {
  min-height: 390px;
}

.hm-card-meta,
.hm-category-card__top,
.hm-chip-row,
.hm-filter-tags,
.hm-file-stack,
.hm-subcategory-list,
.hm-link-tile-grid,
.hm-requisites {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hm-card-meta {
  align-items: center;
  margin-bottom: 16px;
  color: var(--hm-orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hm-chip-row span,
.hm-filter-tags span,
.hm-file-stack span,
.hm-file-stack a,
.hm-subcategory-list span,
.hm-requisites span,
.hm-category-card__top span,
.hm-category-card__top small,
.hm-card-label,
.hm-step-number,
.hm-dealer-card__badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 8px;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
  background: #f6f6f6;
}

.hm-page-section--dark .hm-chip-row span,
.hm-page-section--dark .hm-file-stack span,
.hm-page-section--dark .hm-file-stack a,
.hm-page-section--dark .hm-requisites span {
  border-color: rgba(255, 255, 255, .14);
  color: #ffffff;
  background: rgba(255, 255, 255, .06);
}

.hm-file-stack a {
  gap: 8px;
  text-decoration: none;
}

.hm-file-stack a span {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.hm-article-single {
  display: flow-root;
  background: #ffffff;
}

.hm-article-single__wrap {
  width: min(1180px, calc(100% - 80px));
  margin: clamp(44px, 6vw, 78px) auto clamp(64px, 7vw, 96px);
}

.hm-article-single__header {
  display: grid;
  gap: 14px;
  max-width: 1060px;
  margin-bottom: 30px;
}

.hm-article-single__lead {
  margin-bottom: 30px;
}

.hm-article-single__lead .hm-article-single__header {
  margin-bottom: 0;
}

.hm-article-single--home-news .hm-article-single__lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(320px, 24vw, 430px);
  gap: clamp(34px, 4.2vw, 68px);
  align-items: start;
}

.hm-article-single--home-news .hm-article-single__header {
  max-width: none;
}

.hm-article-single__header h1 {
  margin: 0;
  color: #111111;
  font-family: var(--hm-display-font);
  font-size: var(--hm-display-size);
  font-weight: var(--hm-display-weight);
  line-height: var(--hm-display-line-height);
  letter-spacing: 0;
}

.hm-article-single__header p {
  max-width: 980px;
  margin: 0;
  color: var(--hm-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.58;
}

.hm-article-single__media {
  margin: 0 0 30px;
  overflow: hidden;
  border-radius: 8px;
  background: #f2f2f2;
}

.hm-article-single--home-news .hm-article-single__media {
  width: 100%;
  margin: clamp(12px, 1.8vw, 22px) 0 0;
  aspect-ratio: 4 / 3;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(20, 25, 27, .08);
}

.hm-article-single__media img {
  display: block;
  width: 100%;
  max-height: none;
  height: auto;
  object-fit: contain;
}

.hm-article-single--home-news .hm-article-single__media img {
  height: 100%;
}

.hm-article-single__content {
  max-width: 1040px;
  color: #242424;
  font-size: 18px;
  line-height: 1.72;
}

.hm-article-single__content > *:first-child {
  margin-top: 0;
}

.hm-article-single__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: 8px;
}

.hm-article-single__content p:has(img) {
  margin: 30px 0;
}

.hm-event-single {
  background: #ffffff;
}

.hm-event-single__wrap {
  width: min(1040px, calc(100% - 40px));
  margin: clamp(42px, 7vw, 84px) auto;
}

.hm-event-single__header {
  display: grid;
  gap: 14px;
  max-width: 800px;
  margin-bottom: 28px;
}

.hm-event-single__header h1 {
  margin: 0;
  color: #111111;
  font-family: var(--hm-display-font);
  font-size: var(--hm-display-size);
  font-weight: var(--hm-display-weight);
  line-height: var(--hm-display-line-height);
  letter-spacing: 0;
}

.hm-event-single__header p,
.hm-event-single__header time {
  margin: 0;
  color: var(--hm-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.58;
}

.hm-event-single__media {
  margin: 0 0 30px;
  overflow: hidden;
  border-radius: 8px;
  background: #f2f2f2;
}

.hm-event-single__media img {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}

.hm-event-single__content {
  max-width: 820px;
  color: #242424;
  font-size: 18px;
  line-height: 1.72;
}

.hm-event-single__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: 8px;
}

.hm-event-single__content > *:first-child {
  margin-top: 0;
}

.hm-document-single {
  background: #ffffff;
}

.hm-document-single__wrap {
  width: min(1040px, calc(100% - 40px));
  margin: clamp(42px, 7vw, 84px) auto;
}

.hm-document-single__header {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 28px;
}

.hm-document-single__header h1 {
  margin: 0;
  color: #111111;
  font-family: var(--hm-display-font);
  font-size: var(--hm-display-size);
  font-weight: var(--hm-display-weight);
  line-height: var(--hm-display-line-height);
  letter-spacing: 0;
}

.hm-document-single__header p {
  margin: 0;
  color: var(--hm-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.58;
}

.hm-document-single__content {
  max-width: 820px;
  margin-bottom: clamp(30px, 5vw, 54px);
  color: #242424;
  font-size: 18px;
  line-height: 1.72;
}

.hm-document-single__content > *:first-child {
  margin-top: 0;
}

.hm-document-files {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(17, 17, 17, .1);
  border-radius: 8px;
  background: #f6f6f6;
}

.hm-document-files .hm-page-section__head {
  margin-bottom: 4px;
}

.hm-document-files__list {
  display: grid;
  gap: 10px;
}

.hm-document-files__list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 8px;
  color: #111111;
  text-decoration: none;
  background: #ffffff;
}

.hm-document-files__list span {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: var(--hm-orange);
}

.hm-document-files__list strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.hm-document-files__list em {
  color: var(--hm-orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.hm-filter-shell {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.hm-filter-tags {
  justify-content: flex-end;
}

.hm-news-list {
  display: grid;
  gap: 18px;
}

.hm-news-list-card {
  display: grid;
  grid-template-columns: minmax(220px, .38fr) minmax(0, 1fr);
}

.hm-news-list-card .hm-page-card__body {
  min-height: 0;
}

.hm-event-card .hm-page-card__body {
  min-height: 245px;
}

.hm-category-card__top {
  justify-content: space-between;
  margin-bottom: 18px;
}

.hm-category-card h2,
.hm-product-skeleton-card h2 {
  margin: 0;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}

.hm-news-list-card h2,
.hm-event-card h2 {
  max-width: 540px;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.hm-text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--hm-orange);
  font-weight: 900;
  text-decoration: none;
}

.hm-text-link::after {
  content: "->";
  margin-left: 8px;
}

.hm-product-card-public h2 {
  margin: 12px 0 0;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.hm-product-card-public .hm-chip-row {
  margin: 18px 0;
}

.hm-chip-row a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 8px;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  background: #f6f6f6;
}

.hm-product-single,
.hm-product-category {
  background: #ffffff;
}

.hm-product-single__wrap {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  width: min(1280px, calc(100% - 80px));
  margin: clamp(42px, 6vw, 78px) auto clamp(56px, 7vw, 90px);
}

.hm-product-single__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #6d7475;
  font-size: 14px;
  line-height: 1.4;
}

.hm-product-single__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.hm-product-single__breadcrumb a:hover {
  color: var(--hm-orange);
}

.hm-product-single__header h1 {
  max-width: 1320px;
  margin: 0;
  color: #111111;
  font-family: var(--hm-display-font);
  font-size: clamp(26px, 2.7vw, 42px);
  font-weight: var(--hm-display-weight);
  line-height: var(--hm-display-line-height);
  letter-spacing: 0;
  text-wrap: balance;
}

.hm-product-single__top {
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(300px, 1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.hm-product-single__gallery-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hm-product-single__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: min(610px, 100%);
  align-items: stretch;
}

.hm-product-single__side {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

.hm-product-single__side-image {
  display: grid;
  overflow: hidden;
  height: clamp(140px, 14vw, 190px);
  margin: 0;
  place-items: center;
  border-radius: 6px;
  background: #ffffff;
}

.hm-product-single__side-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

.hm-product-single__side-text {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 0;
  max-height: clamp(420px, 34vw, 560px);
  padding-right: 10px;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, .28) transparent;
  color: #303637;
  font-size: 17px;
  line-height: 1.36;
}

.hm-product-single__side-text::-webkit-scrollbar {
  width: 8px;
}

.hm-product-single__side-text::-webkit-scrollbar-track {
  background: transparent;
}

.hm-product-single__side-text::-webkit-scrollbar-thumb {
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: rgba(17, 17, 17, .28);
}

.hm-product-single__side-text::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 17, 17, .42);
}

.hm-product-single__side-text > *:first-child {
  margin-top: 0;
}

.hm-product-single__side-text > *:last-child {
  margin-bottom: 0;
}

.hm-product-single__side-text p,
.hm-product-single__side-text ul,
.hm-product-single__side-text ol {
  margin-top: 0;
  margin-bottom: 10px;
}

.hm-product-single__side-text ul,
.hm-product-single__side-text ol {
  padding-left: 20px;
}

.hm-product-single__side-text li + li {
  margin-top: 6px;
}

.hm-product-single__main-image,
.hm-product-single__thumb,
.hm-product-category__media {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 8px;
  background: #f2f4f3;
}

.hm-product-single__main-image {
  display: grid;
  box-sizing: border-box;
  place-items: center;
  height: clamp(360px, 33vw, 500px);
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(237, 118, 14, .1), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f4f6f5 100%);
}

.hm-product-single__main-image img,
.hm-product-single__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

.hm-product-category__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.hm-product-single__main-image img {
  filter: drop-shadow(0 18px 28px rgba(20, 25, 27, .13));
}

.hm-product-single__empty-image {
  grid-column: 1 / -1;
}

.hm-product-single__thumbs {
  display: grid;
  grid-template-columns: repeat(var(--hm-product-thumbs-count, 1), minmax(0, 1fr));
  gap: 10px;
  height: auto;
}

.hm-product-single__thumb {
  display: grid;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1.18 / 1;
  place-items: center;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
}

.hm-product-single__thumb img {
  transition: transform .18s ease;
}

.hm-product-single__thumb:hover,
.hm-product-single__thumb[aria-pressed="true"] {
  border-color: rgba(237, 118, 14, .42);
}

.hm-product-single__thumb:hover img {
  transform: scale(1.04);
}

.hm-product-single__thumb:focus-visible {
  outline: 3px solid rgba(237, 118, 14, .38);
  outline-offset: 3px;
}

.hm-product-tabs {
  width: min(1040px, 100%);
  margin-top: 4px;
}

.hm-product-tabs__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hm-product-tabs__controls {
  display: flex;
  align-items: stretch;
  gap: 16px;
  max-width: 100%;
}

.hm-product-tabs__nav {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(108px, 1fr));
  gap: 4px;
  min-width: 0;
  max-width: 100%;
  padding: 4px;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 10px;
  background: #f3f4f3;
}

.hm-product-tabs__tab {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 8px;
  color: #2e3435;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.hm-product-tabs__tab:hover {
  color: var(--hm-orange);
}

.hm-product-tabs__input:nth-of-type(1):focus-visible ~ .hm-product-tabs__controls .hm-product-tabs__tab--description,
.hm-product-tabs__input:nth-of-type(2):focus-visible ~ .hm-product-tabs__controls .hm-product-tabs__tab--characteristics,
.hm-product-tabs__input:nth-of-type(3):focus-visible ~ .hm-product-tabs__controls .hm-product-tabs__tab--technical-passports,
.hm-product-tabs__input:nth-of-type(4):focus-visible ~ .hm-product-tabs__controls .hm-product-tabs__tab--certificates,
.hm-product-tabs__input:nth-of-type(5):focus-visible ~ .hm-product-tabs__controls .hm-product-tabs__tab--rrc-prices {
  outline: 2px solid rgba(237, 118, 14, .52);
  outline-offset: 2px;
}

.hm-product-tabs__input:nth-of-type(1):checked ~ .hm-product-tabs__controls .hm-product-tabs__tab--description,
.hm-product-tabs__input:nth-of-type(2):checked ~ .hm-product-tabs__controls .hm-product-tabs__tab--characteristics,
.hm-product-tabs__input:nth-of-type(3):checked ~ .hm-product-tabs__controls .hm-product-tabs__tab--technical-passports,
.hm-product-tabs__input:nth-of-type(4):checked ~ .hm-product-tabs__controls .hm-product-tabs__tab--certificates,
.hm-product-tabs__input:nth-of-type(5):checked ~ .hm-product-tabs__controls .hm-product-tabs__tab--rrc-prices {
  color: #111111;
  background: #ffffff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 7px 16px rgba(17, 17, 17, .08);
}

.hm-product-tabs__buy {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border: 1px solid rgba(237, 118, 14, .62);
  border-radius: 8px;
  color: #111111;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(237, 118, 14, .1);
}

.hm-product-tabs__buy:hover,
.hm-product-tabs__buy:focus-visible {
  color: #111111;
  outline: none;
  border-color: var(--hm-orange);
  box-shadow: 0 0 0 3px rgba(237, 118, 14, .24);
}

.hm-product-tabs__panels {
  padding-top: 24px;
}

.hm-product-tabs__panel {
  display: none;
}

.hm-product-tabs__input:nth-of-type(1):checked ~ .hm-product-tabs__panels .hm-product-tabs__panel--description,
.hm-product-tabs__input:nth-of-type(2):checked ~ .hm-product-tabs__panels .hm-product-tabs__panel--characteristics,
.hm-product-tabs__input:nth-of-type(3):checked ~ .hm-product-tabs__panels .hm-product-tabs__panel--technical-passports,
.hm-product-tabs__input:nth-of-type(4):checked ~ .hm-product-tabs__panels .hm-product-tabs__panel--certificates,
.hm-product-tabs__input:nth-of-type(5):checked ~ .hm-product-tabs__panels .hm-product-tabs__panel--rrc-prices {
  display: block;
}

.hm-product-single__description {
  max-width: 860px;
  color: #242424;
  font-size: 18px;
  line-height: 1.68;
}

.hm-product-single__description > *:first-child {
  margin-top: 0;
}

.hm-product-tabs__panel--description .hm-product-single__description img {
  display: block;
  width: 70%;
  max-width: 100%;
  height: auto;
  margin: clamp(28px, 4vw, 48px) 0;
}

.hm-product-tabs__panel--description .hm-product-single__description figure {
  width: 70%;
  max-width: 100%;
  margin: clamp(28px, 4vw, 48px) 0;
}

.hm-product-tabs__panel--description .hm-product-single__description figure img {
  width: 100%;
  margin: 0;
}

.hm-product-characteristics {
  margin: 0 0 0 clamp(12px, 2vw, 32px);
  width: min(760px, 100%);
}

.hm-product-characteristics__row {
  display: flex;
  min-height: 32px;
  align-items: baseline;
  gap: 8px;
  color: #6d6778;
  font-size: 18px;
  line-height: 1.35;
}

.hm-product-characteristics__row + .hm-product-characteristics__row {
  margin-top: 7px;
}

.hm-product-characteristics dt,
.hm-product-characteristics dd {
  margin: 0;
}

.hm-product-characteristics dt {
  flex: 0 1 auto;
  max-width: 52%;
  color: inherit;
  font-weight: 650;
}

.hm-product-characteristics__dots {
  flex: 1 1 auto;
  min-width: 28px;
  border-bottom: 3px dotted rgba(109, 103, 120, .18);
  transform: translateY(-4px);
}

.hm-product-characteristics dd {
  flex: 0 1 auto;
  max-width: 38%;
  color: inherit;
  font-weight: 700;
  text-align: right;
}

.hm-product-tabs__empty {
  margin: 0;
  color: var(--hm-muted);
  font-size: 17px;
  line-height: 1.55;
}

.hm-product-documents {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.hm-product-documents__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid rgba(17, 17, 17, .1);
  border-radius: 8px;
  color: #1f2526;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  background: #ffffff;
}

.hm-product-documents__link:hover,
.hm-product-documents__link:focus-visible {
  border-color: rgba(237, 118, 14, .38);
  color: #111111;
  outline: none;
}

.hm-product-documents__link::after {
  content: "PDF";
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--hm-orange);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  background: rgba(237, 118, 14, .1);
}

.hm-product-rrc {
  max-width: 900px;
  overflow-x: auto;
  border: 1px solid rgba(237, 118, 14, .36);
  border-radius: 8px;
  background: #ffffff;
}

.hm-product-rrc__table {
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  color: #202728;
}

.hm-product-rrc__table th,
.hm-product-rrc__table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.hm-product-rrc__table th {
  color: #111111;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
  background: rgba(237, 118, 14, .08);
}

.hm-product-rrc__table td {
  border-top: 1px solid rgba(17, 17, 17, .08);
  color: #303739;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
}

.hm-product-rrc__table tbody tr:first-child td {
  border-top-color: rgba(237, 118, 14, .16);
}

.hm-product-single__back {
  width: fit-content;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hm-product-single__top {
    grid-template-columns: 1fr;
  }

  .hm-product-tabs__controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hm-product-tabs__nav {
    grid-template-columns: 1fr;
  }

  .hm-product-tabs__tab,
  .hm-product-tabs__buy {
    justify-content: flex-start;
  }
}

.hm-related-products {
  padding: clamp(48px, 7vw, 82px) 0;
  background: #f4f6f5;
}

.hm-related-products__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

.hm-related-products__track .hm-page-card {
  scroll-snap-align: start;
}

.hm-product-category__intro {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(300px, .65fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.hm-product-category__intro h2 {
  margin: 10px 0 16px;
}

.hm-product-category__intro p {
  max-width: 720px;
  color: var(--hm-muted);
  font-size: 18px;
  line-height: 1.65;
}

.hm-product-category__media {
  display: grid;
  min-height: 300px;
  place-items: center;
  color: var(--hm-muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.hm-category-page {
  background: #ffffff;
}

.hm-category-page__wrap {
  display: grid;
  gap: clamp(24px, 3vw, 38px);
  width: min(1280px, calc(100% - 80px));
  margin: clamp(42px, 6vw, 78px) auto 0;
  padding-top: 0;
}

.hm-category-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(360px, 1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.hm-category-page__copy {
  padding-top: 4px;
}

.hm-category-page__copy h1 {
  max-width: 620px;
  margin: 0 0 28px;
  color: #111111;
  font-family: var(--hm-display-font);
  font-size: clamp(30px, 2.75vw, 42px);
  font-weight: var(--hm-display-weight);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.hm-category-page__copy p {
  max-width: 620px;
  margin: 0;
  color: #32383a;
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.46;
}

.hm-category-page__downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.hm-category-page__downloads a {
  display: inline-flex;
  min-width: 206px;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 0;
  border-radius: 0;
  color: #4b5254;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #f4f5f3;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.hm-category-page__downloads a:hover,
.hm-category-page__downloads a:focus-visible {
  color: #ffffff;
  background: var(--hm-orange);
  outline: none;
}

.hm-category-page__downloads a:active {
  transform: translateY(1px);
}

.hm-category-page__media {
  display: grid;
  overflow: hidden;
  min-height: 236px;
  margin: 0;
  place-items: center;
  border-radius: 18px;
  color: #9da5a7;
  font-size: 28px;
  font-weight: 900;
  background: #f7f8f7;
}

.hm-category-page__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

.hm-category-page__products {
  margin-top: clamp(18px, 3vw, 36px);
}

.hm-category-page__product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hm-category-page__product-grid .hm-product-card-public {
  overflow: hidden;
  min-height: 0;
  border: 1px solid #e4e6e5;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: none;
}

.hm-category-page__product-grid .hm-product-card-public:hover {
  border-color: rgba(237, 118, 14, .32);
  box-shadow: 0 14px 30px rgba(20, 25, 27, .08);
  transform: translateY(-1px);
}

.hm-category-page__product-grid .hm-product-card-public__link {
  grid-template-rows: auto minmax(0, 1fr);
}

.hm-category-page__product-grid .hm-product-card-public .hm-placeholder--product {
  height: clamp(108px, 9.8vw, 126px);
  min-height: clamp(108px, 9.8vw, 126px);
  border-bottom: 1px solid #eaebea;
  background: #f8f8f7;
}

.hm-category-page__product-grid .hm-product-card-public .hm-page-card__body {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  padding: 13px 14px 14px;
}

.hm-category-page__product-grid .hm-product-card-public .hm-card-label {
  min-height: 22px;
  width: 100%;
  justify-content: flex-start;
  padding: 4px 8px;
  border: 1px solid #e5e7e6;
  border-radius: 4px;
  color: #111111;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
  background: #f9faf9;
}

.hm-category-page__product-grid .hm-product-card-public h2 {
  margin: 12px 0 0;
  color: #111111;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.18;
}

.hm-category-page__product-grid .hm-product-card-public p {
  -webkit-line-clamp: 3;
  margin: 10px 0 0;
  color: #5f686b;
  font-size: 12px;
  line-height: 1.3;
}

.hm-category-page__product-grid .hm-product-card-public__more {
  margin-top: auto;
  padding-top: 12px;
  color: var(--hm-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}

.hm-category-page__product-grid .hm-product-card-public__more::after {
  content: "  >";
}

.hm-category-page__empty {
  margin: 0;
  color: #667074;
  font-size: 17px;
}

.hm-category-page__videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(64px, 7vw, 88px);
}

.hm-category-video {
  display: grid;
  gap: 22px;
}

.hm-category-video h2 {
  margin: 0;
  color: #51595c;
  font-size: clamp(17px, 1.28vw, 20px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.hm-category-video__frame {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  place-items: center;
  border-radius: 0;
  background: #000000;
}

.hm-category-video__frame iframe,
.hm-category-video__frame video,
.hm-category-video__frame a {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hm-category-video__frame iframe {
  border: 0;
}

.hm-category-video__frame video {
  display: block;
  object-fit: cover;
  background: #000000;
}

.hm-category-video__frame a {
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.hm-category-fact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(210px, 20vw, 278px);
  gap: clamp(46px, 11vw, 126px);
  align-items: start;
  margin-top: clamp(80px, 8vw, 112px);
}

.hm-category-fact__body h2 {
  display: inline-flex;
  max-width: 100%;
  margin: 0 0 42px;
  padding: 11px 18px 13px;
  border-radius: 0;
  color: #ffffff;
  font-size: clamp(19px, 1.58vw, 25px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: var(--hm-orange);
}

.hm-category-fact__text {
  max-width: 820px;
  color: #111111;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.52;
}

.hm-category-fact__text > *:first-child {
  margin-top: 0;
}

.hm-category-fact__text > *:last-child {
  margin-bottom: 0;
}

.hm-category-fact__text p {
  margin: 0 0 28px;
}

.hm-category-fact__text ul,
.hm-category-fact__text ol {
  margin: 0 0 28px;
  padding-left: 1.3em;
}

.hm-category-fact__text li + li {
  margin-top: 12px;
}

.hm-category-fact__image {
  display: grid;
  overflow: hidden;
  width: 100%;
  margin: 4px 0 0;
  aspect-ratio: 1.12 / 1;
  place-items: center;
  border-radius: 0;
  background: #ffffff;
}

.hm-category-fact__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

.hm-catalog-showcase {
  padding: clamp(58px, 5.6vw, 92px) 22px clamp(86px, 7vw, 124px);
  background:
    linear-gradient(180deg, #f4f6f5 0%, #ffffff 44%, #f4f6f5 100%);
}

.hm-catalog-showcase__inner {
  width: min(1120px, calc(100% - clamp(44px, 6vw, 120px)));
  margin: 0 auto;
}

.hm-catalog-showcase__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  margin-bottom: clamp(34px, 4vw, 58px);
  text-align: center;
}

.hm-catalog-showcase__head::before,
.hm-catalog-showcase__head::after {
  content: "";
  width: clamp(62px, 10vw, 176px);
  height: 2px;
  background: var(--hm-orange);
  box-shadow: 0 0 18px rgba(237, 118, 14, .22);
}

.hm-catalog-showcase__head h2 {
  max-width: min(760px, 100%);
  margin: 0;
  color: #111111;
  font-family: var(--hm-display-font);
  font-size: clamp(40px, 3.7vw, 58px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.hm-catalog-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 30px);
  justify-content: center;
}

.hm-catalog-showcase-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: clamp(310px, 22vw, 380px);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 6px;
  color: #151819;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 22px 46px rgba(15, 20, 21, .1);
  transition: border-color .28s ease, box-shadow .28s ease;
}

.hm-catalog-showcase-card:hover,
.hm-catalog-showcase-card:focus-visible {
  border-color: rgba(237, 118, 14, .32);
  box-shadow: 0 28px 58px rgba(15, 20, 21, .16);
  outline: none;
}

.hm-catalog-showcase-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 42px;
  height: 42px;
  background: var(--hm-orange);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  pointer-events: none;
}

.hm-catalog-showcase-card__image {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(18px, 2vw, 28px);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .96) 0 32%, rgba(234, 237, 236, .88) 68%, rgba(226, 230, 229, .96) 100%);
}

.hm-catalog-showcase-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transform-origin: center;
  transition: transform .58s cubic-bezier(.2, .72, .2, 1), filter .58s ease;
}

.hm-catalog-showcase-card__image span {
  display: block;
  max-width: 210px;
  color: rgba(20, 25, 27, .58);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.hm-catalog-showcase-card:hover .hm-catalog-showcase-card__image img,
.hm-catalog-showcase-card:focus-visible .hm-catalog-showcase-card__image img {
  transform: scale(1.2);
  filter: saturate(1.04) contrast(1.04);
}

.hm-catalog-showcase-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 18px clamp(18px, 2vw, 26px);
  border-top: 1px solid rgba(17, 17, 17, .08);
  background: #ffffff;
}

.hm-catalog-showcase-card h3 {
  max-width: 100%;
  margin: 0;
  color: #111111;
  font-size: clamp(17px, 1.15vw, 22px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.hm-catalog-showcase__grid .hm-catalog-showcase-card {
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
}

.hm-catalog-showcase__grid .hm-catalog-showcase-card__image {
  padding: clamp(16px, 1.8vw, 24px);
}

.hm-catalog-showcase__grid .hm-catalog-showcase-card__body {
  min-height: 68px;
  padding: 14px clamp(16px, 1.6vw, 22px);
}

.hm-catalog-showcase__grid .hm-catalog-showcase-card h3 {
  font-size: clamp(16px, 1vw, 20px);
}

.hm-catalog-showcase__empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 6px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 20, 21, .08);
}

.hm-catalog-showcase__empty p {
  margin: 0;
  color: #5f686b;
  font-size: 17px;
  line-height: 1.5;
}

.hm-catalog-browser {
  min-height: calc(100vh - 84px);
  padding: 18px 0 clamp(56px, 7vw, 92px);
  background: #f4f6f5;
}

.hm-catalog-browser__inner {
  width: min(1840px, calc(100% - 40px));
  margin: 0 auto;
}

.hm-catalog-browser__layout {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: clamp(26px, 3vw, 44px);
  align-items: start;
}

.hm-catalog-sidebar {
  position: sticky;
  top: 96px;
  margin-top: clamp(188px, 13.5vw, 230px);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(20, 25, 27, .06);
}

.hm-catalog-sidebar__head {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(17, 17, 17, .08);
}

.hm-catalog-sidebar__head h2 {
  margin: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 850;
}

.hm-catalog-sidebar__all,
.hm-catalog-sidebar__link {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  color: #111111;
  text-decoration: none;
}

.hm-catalog-sidebar__link {
  width: 100%;
  border: 0;
  font: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.hm-catalog-sidebar__all {
  min-height: 64px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  font-weight: 760;
}

.hm-catalog-sidebar__row--all {
  grid-template-columns: minmax(0, 1fr);
  min-height: 64px;
}

.hm-catalog-sidebar__all.is-active,
.hm-catalog-sidebar__row.is-active {
  color: #00708a;
  background: #f0f7f8;
}

.hm-catalog-sidebar__list,
.hm-catalog-sidebar__children {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-catalog-sidebar__children {
  border-top: 1px solid rgba(17, 17, 17, .06);
  background: #f8faf9;
}

.hm-catalog-sidebar__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: stretch;
  min-height: 58px;
  border-bottom: 1px solid rgba(17, 17, 17, .07);
}

.hm-catalog-sidebar__row--depth-1 .hm-catalog-sidebar__link {
  padding-left: 18px;
}

.hm-catalog-sidebar__row--depth-2 .hm-catalog-sidebar__link {
  padding-left: 34px;
}

.hm-catalog-sidebar__row--depth-3 .hm-catalog-sidebar__link {
  padding-left: 50px;
}

.hm-catalog-sidebar__link {
  min-height: 58px;
  padding: 9px 12px 9px 20px;
}

.hm-catalog-sidebar__link:hover,
.hm-catalog-sidebar__link:focus-visible,
.hm-catalog-sidebar__all:hover,
.hm-catalog-sidebar__all:focus-visible {
  color: var(--hm-orange);
}

.hm-catalog-sidebar__icon {
  position: relative;
  display: grid;
  width: 40px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .1);
  border-radius: 8px;
  color: var(--hm-orange);
  font-size: 11px;
  font-weight: 900;
  background: #ffffff;
}

.hm-catalog-sidebar__icon img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.hm-catalog-sidebar__name {
  min-width: 0;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.22;
}

.hm-catalog-sidebar__toggle {
  display: grid;
  width: 42px;
  min-height: 58px;
  place-items: center;
  border: 0;
  border-left: 1px solid rgba(17, 17, 17, .06);
  color: #111111;
  background: transparent;
  cursor: pointer;
}

.hm-catalog-sidebar__toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.hm-catalog-sidebar__toggle::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease, color .2s ease;
}

.hm-catalog-sidebar__toggle[aria-expanded="true"]::before {
  color: var(--hm-orange);
  transform: translateY(2px) rotate(225deg);
}

.hm-catalog-content {
  min-width: 0;
}

.hm-catalog-content__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  margin-bottom: 26px;
}

.hm-catalog-content__intro h1 {
  margin: 0 0 22px;
  color: #111111;
  font-family: var(--hm-display-font);
  font-size: var(--hm-display-size);
  font-weight: var(--hm-display-weight);
  line-height: var(--hm-display-line-height);
  letter-spacing: 0;
  text-wrap: balance;
}

.hm-catalog-content__intro p {
  max-width: 920px;
  margin: 0;
  color: #667074;
  font-size: 18px;
  line-height: 1.62;
}

.hm-catalog-content__media {
  position: relative;
  display: grid;
  min-height: 154px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 8px;
  color: #99a2a4;
  font-size: 28px;
  font-weight: 900;
  background: #ffffff;
}

.hm-catalog-content__media img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  filter: drop-shadow(0 14px 24px rgba(20, 25, 27, .1));
}

.hm-catalog-view-shell {
  display: grid;
  gap: 18px;
}

.hm-catalog-view-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hm-catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid rgba(17, 17, 17, .1);
}

.hm-catalog-view-switch {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.hm-catalog-view-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #3c4244;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.hm-catalog-view-button:hover,
.hm-catalog-view-button:focus-visible {
  color: var(--hm-orange);
  border-color: rgba(237, 118, 14, .22);
  background: #ffffff;
}

.hm-catalog-view-button:active {
  transform: scale(.97);
}

.hm-catalog-view-button span {
  display: block;
}

.hm-catalog-view-button--list span {
  width: 20px;
  height: 16px;
  background: repeating-linear-gradient(to bottom, currentColor 0 3px, transparent 3px 7px);
}

.hm-catalog-view-button--grid span {
  width: 19px;
  height: 19px;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 8px 8px no-repeat,
    linear-gradient(currentColor 0 0) 100% 0 / 8px 8px no-repeat,
    linear-gradient(currentColor 0 0) 0 100% / 8px 8px no-repeat,
    linear-gradient(currentColor 0 0) 100% 100% / 8px 8px no-repeat;
}

.hm-catalog-view-button--compact span {
  width: 22px;
  height: 17px;
  background: repeating-linear-gradient(to right, currentColor 0 3px, transparent 3px 8px);
}

#hm-catalog-view-list:checked ~ .hm-catalog-toolbar label[for="hm-catalog-view-list"],
#hm-catalog-view-grid:checked ~ .hm-catalog-toolbar label[for="hm-catalog-view-grid"],
#hm-catalog-view-compact:checked ~ .hm-catalog-toolbar label[for="hm-catalog-view-compact"] {
  color: var(--hm-orange);
  border-color: rgba(237, 118, 14, .24);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(20, 25, 27, .06);
}

#hm-catalog-view-list:focus-visible ~ .hm-catalog-toolbar label[for="hm-catalog-view-list"],
#hm-catalog-view-grid:focus-visible ~ .hm-catalog-toolbar label[for="hm-catalog-view-grid"],
#hm-catalog-view-compact:focus-visible ~ .hm-catalog-toolbar label[for="hm-catalog-view-compact"] {
  outline: 3px solid rgba(237, 118, 14, .36);
  outline-offset: 3px;
}

.hm-catalog-count {
  color: #1f2628;
  font-size: 13px;
  font-weight: 850;
}

.hm-catalog-products {
  display: grid;
  gap: 18px;
}

.hm-catalog-products--list {
  grid-template-columns: 1fr;
}

#hm-catalog-view-grid:checked ~ .hm-catalog-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#hm-catalog-view-compact:checked ~ .hm-catalog-products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#hm-catalog-view-list:checked ~ .hm-catalog-products {
  grid-template-columns: 1fr;
}

@media (max-width: 1500px) and (min-width: 1051px) {
  #hm-catalog-view-grid:checked ~ .hm-catalog-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hm-product-card-public {
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hm-product-card-public:hover {
  border-color: rgba(237, 118, 14, .28);
  box-shadow: 0 20px 48px rgba(20, 25, 27, .1);
  transform: translateY(-2px);
}

.hm-product-card-public__link {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.hm-product-card-public .hm-placeholder--product {
  display: grid;
  position: relative;
  overflow: hidden;
  height: 150px;
  min-height: 150px;
  place-items: center;
  border-width: 0 0 1px;
  border-color: rgba(20, 25, 27, .08);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(237, 118, 14, .08), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f4f6f5 100%);
}

.hm-product-card-public .hm-placeholder--product img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  padding: 0;
  filter: drop-shadow(0 12px 20px rgba(20, 25, 27, .12));
}

.hm-product-card-public__link:focus-visible {
  outline: 3px solid rgba(237, 118, 14, .38);
  outline-offset: 4px;
}

.hm-product-card-public .hm-page-card__body {
  min-height: 0;
  padding: 16px 18px 18px;
}

.hm-product-card-public .hm-card-label {
  min-height: 28px;
  width: 100%;
  justify-content: flex-start;
  padding: 6px 10px;
  font-size: 11px;
  text-transform: none;
}

.hm-product-card-public h2 {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.18;
}

.hm-product-card-public p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  color: #5f686b;
  font-size: 14px;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hm-product-card-public__more {
  margin-top: auto;
  padding-top: 14px;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

#hm-catalog-view-grid:checked ~ .hm-catalog-products .hm-product-card-public__link {
  grid-template-rows: auto 1fr;
}

#hm-catalog-view-grid:checked ~ .hm-catalog-products .hm-placeholder--product {
  height: 160px;
  min-height: 160px;
}

#hm-catalog-view-list:checked ~ .hm-catalog-products .hm-product-card-public__link {
  grid-template-columns: 150px minmax(0, 1fr);
  grid-template-rows: 1fr;
}

#hm-catalog-view-list:checked ~ .hm-catalog-products .hm-placeholder--product {
  height: 132px;
  min-height: 132px;
}

#hm-catalog-view-list:checked ~ .hm-catalog-products .hm-page-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-content: center;
  padding: 16px 18px;
}

#hm-catalog-view-list:checked ~ .hm-catalog-products .hm-card-label,
#hm-catalog-view-list:checked ~ .hm-catalog-products h2,
#hm-catalog-view-list:checked ~ .hm-catalog-products p {
  grid-column: 1;
}

#hm-catalog-view-list:checked ~ .hm-catalog-products .hm-product-card-public__more {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
}

#hm-catalog-view-compact:checked ~ .hm-catalog-products .hm-product-card-public__link {
  grid-template-columns: 170px minmax(0, 1fr);
  grid-template-rows: 1fr;
}

#hm-catalog-view-compact:checked ~ .hm-catalog-products .hm-placeholder--product {
  height: 155px;
  min-height: 155px;
}

#hm-catalog-view-compact:checked ~ .hm-catalog-products .hm-page-card__body {
  padding: 16px 18px;
}

.hm-catalog-empty {
  background: #ffffff;
}

.hm-blog-content__intro h2 {
  margin: 0 0 18px;
  color: #14181a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.35vw, 52px);
  font-weight: 500;
  line-height: .98;
  text-wrap: balance;
}

#hm-blog-view-grid:checked ~ .hm-blog-articles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hm-blog-articles .hm-blog-article-card {
  display: block;
  overflow: hidden;
}

.hm-blog-articles .hm-blog-article-card[hidden] {
  display: none !important;
}

.hm-blog-articles .hm-product-card-public h2 {
  max-width: none;
  margin: 12px 0 0;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.18;
}

#hm-blog-view-grid:checked ~ .hm-blog-articles .hm-product-card-public__link {
  grid-template-rows: auto 1fr;
}

#hm-blog-view-grid:checked ~ .hm-blog-articles .hm-placeholder--product {
  height: 160px;
  min-height: 160px;
}

#hm-blog-view-list:checked ~ .hm-blog-articles {
  grid-template-columns: 1fr;
}

#hm-blog-view-list:checked ~ .hm-blog-articles .hm-product-card-public__link {
  grid-template-columns: 150px minmax(0, 1fr);
  grid-template-rows: 1fr;
}

#hm-blog-view-list:checked ~ .hm-blog-articles .hm-placeholder--product {
  height: 132px;
  min-height: 132px;
}

#hm-blog-view-list:checked ~ .hm-blog-articles .hm-page-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-content: center;
  padding: 16px 18px;
}

#hm-blog-view-list:checked ~ .hm-blog-articles h2,
#hm-blog-view-list:checked ~ .hm-blog-articles p {
  grid-column: 1;
}

#hm-blog-view-list:checked ~ .hm-blog-articles .hm-product-card-public__more {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
}

#hm-blog-view-compact:checked ~ .hm-blog-articles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#hm-blog-view-compact:checked ~ .hm-blog-articles .hm-product-card-public__link {
  grid-template-columns: 170px minmax(0, 1fr);
  grid-template-rows: 1fr;
}

#hm-blog-view-compact:checked ~ .hm-blog-articles .hm-placeholder--product {
  height: 155px;
  min-height: 155px;
}

#hm-blog-view-compact:checked ~ .hm-blog-articles .hm-page-card__body {
  padding: 16px 18px;
}

@media (max-width: 1500px) and (min-width: 1051px) {
  #hm-blog-view-grid:checked ~ .hm-blog-articles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hm-link-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hm-link-tile-grid a {
  min-height: 112px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  background: rgba(255, 255, 255, .05);
}

.hm-page-note {
  padding: 26px;
  border-left: 4px solid var(--hm-orange);
  color: var(--hm-ink);
  background: #ffffff;
}

.hm-file-stack {
  justify-content: flex-start;
}

.hm-dealer-card dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.hm-dealer-card dt {
  color: var(--hm-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hm-dealer-card dd {
  margin: 4px 0 0;
}

.hm-dealer-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.hm-dealer-card__actions button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  background: var(--hm-orange);
  cursor: default;
}

.hm-static-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--hm-line);
  border-radius: 8px;
  background: #f6f6f6;
}

.hm-static-form label {
  display: grid;
  gap: 7px;
  color: #111111;
  font-size: 13px;
  font-weight: 800;
}

.hm-static-form input,
.hm-static-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 8px;
  padding: 13px 14px;
  color: #111111;
  font: inherit;
  background: #ffffff;
}

.hm-static-form__consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.hm-static-form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.hm-static-form button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  background: var(--hm-orange);
  cursor: default;
}

.hm-dealer-card__actions button {
  padding: 0 16px;
}

.hm-page--dealers {
  min-height: 100vh;
  background: #f6f6f6;
}

.hm-locator {
  --hm-locator-border: rgba(17, 17, 17, .13);
  --hm-locator-shadow: 0 20px 58px rgba(17, 17, 17, .08);
  color: #111111;
  background: #f6f6f6;
}

.hm-locator__shell {
  display: grid;
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(360px, .78fr) minmax(560px, 1.72fr);
  border-top: 1px solid rgba(17, 17, 17, .08);
}

.hm-locator__sidebar {
  position: relative;
  z-index: 2;
  display: flex;
  max-height: calc(100vh - 72px);
  flex-direction: column;
  padding: clamp(24px, 3.2vw, 42px) clamp(22px, 2.4vw, 34px);
  overflow: auto;
  background: #ffffff;
  box-shadow: 10px 0 34px rgba(17, 17, 17, .08);
}

.hm-locator__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.hm-locator__search {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.hm-locator__search label {
  color: #343a3d;
  font-size: 14px;
  font-weight: 900;
}

.hm-locator__search-field {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--hm-locator-border);
  border-radius: 8px;
  background: #f6f6f6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
}

.hm-locator__search-field span {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: var(--hm-orange);
  font-size: 20px;
  font-weight: 900;
}

.hm-locator__search-field input {
  width: 100%;
  min-height: 48px;
  border: 0;
  color: #111111;
  font: inherit;
  font-size: 15px;
  background: transparent;
  outline: none;
}

.hm-locator__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hm-locator-border);
}

.hm-locator__toolbar p {
  margin: 0;
  color: #5f6366;
  font-size: 13px;
  font-weight: 800;
}

.hm-locator__toolbar span {
  color: #111111;
}

.hm-locator__toolbar button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(252, 82, 0, .35);
  border-radius: 8px;
  color: var(--hm-orange);
  font-size: 12px;
  font-weight: 900;
  background: #fff7f0;
  cursor: pointer;
}

.hm-locator__list {
  display: grid;
  gap: 13px;
}

.hm-locator-card {
  position: relative;
  display: grid;
  gap: 13px;
  overflow: hidden;
  padding: 21px;
  border: 1px solid #d3d6d8;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(252, 252, 252, .96)),
    #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .8),
    0 18px 42px rgba(0, 0, 0, .055);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}

.hm-locator-card::before {
  position: absolute;
  inset: 8px;
  z-index: 0;
  border: 1px solid rgba(189, 190, 192, .32);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.hm-locator-card > * {
  position: relative;
  z-index: 1;
}

.hm-locator-card[hidden] {
  display: none;
}

.hm-locator-card:hover,
.hm-locator-card:focus-within {
  border-color: rgba(176, 181, 183, .95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 250, 250, .98)),
    #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .9),
    0 24px 52px rgba(0, 0, 0, .075);
}

.hm-locator-card.is-active {
  border-color: rgba(252, 82, 0, .62);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .9),
    0 22px 48px rgba(252, 82, 0, .14);
}

.hm-locator-card.is-active::before {
  border-color: rgba(252, 82, 0, .24);
}

.hm-locator-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 13px;
  align-items: start;
}

.hm-locator-card h2 {
  margin: 0;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 1.16vw, 19px);
  font-weight: 900;
  line-height: 1.08;
}

.hm-locator-card__logo,
.hm-seller-profile__logo {
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 8px;
  color: #111111;
  font-size: 15px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(216, 220, 221, .72)),
    #f6f6f6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
}

.hm-locator-card__logo {
  width: 42px;
  height: 42px;
  font-size: 13px;
}

.hm-locator-card__logo img,
.hm-seller-profile__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}

.hm-locator-card address {
  color: #343a3d;
  font-size: 14px;
  font-style: normal;
  line-height: 1.4;
}

.hm-locator-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.hm-locator-card dt {
  color: #5f6366;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hm-locator-card dd {
  margin: 4px 0 0;
  color: #111111;
  font-size: 14px;
  line-height: 1.38;
}

.hm-locator-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hm-locator-card__actions button,
.hm-locator-card__actions a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.hm-locator-card__actions button {
  padding: 0 12px;
  border: 0;
  color: #ffffff;
  background: var(--hm-orange);
}

.hm-locator-card__actions a {
  color: var(--hm-orange);
}

.hm-locator-card__actions a::after {
  content: "->";
  margin-left: 8px;
}

.hm-locator__map-panel {
  position: sticky;
  top: 0;
  height: calc(100vh - 72px);
  min-height: calc(100vh - 72px);
  overflow: hidden;
  border-left: 1px solid rgba(17, 17, 17, .12);
  background: #d8dcdd;
}

.hm-locator__map-frame,
.hm-locator__yandex-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hm-locator__yandex-map {
  background: #eef1f2;
}

.hm-locator__map-panel .hm-locator__yandex-map {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.hm-map-status {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 6;
  max-width: 430px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 8px;
  color: #343a3d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.42;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 38px rgba(17, 17, 17, .16);
}

.hm-map-status[hidden] {
  display: none;
}

.hm-map-status.is-error {
  color: #111111;
  border-color: rgba(206, 91, 31, .34);
  background: rgba(255, 247, 242, .96);
}

.hm-locator__map-panel.is-map-unavailable .hm-locator__yandex-map {
  opacity: .35;
}

.hm-locator__map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hm-map-cluster,
.hm-map-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.hm-map-cluster {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  background: rgba(17, 17, 17, .9);
  box-shadow:
    0 14px 28px rgba(17, 17, 17, .28),
    0 0 0 7px rgba(17, 17, 17, .08);
}

.hm-map-cluster:hover,
.hm-map-cluster:focus-visible,
.hm-map-cluster.is-active {
  background: var(--hm-orange);
  transform: translate(-50%, -50%) scale(1.08);
  outline: none;
}

.hm-map-point {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  font-size: 10px;
  background: #111111;
  box-shadow: 0 13px 28px rgba(17, 17, 17, .28);
  transform: translate(-50%, -70%) rotate(-45deg);
}

.hm-map-point span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  overflow: hidden;
  transform: rotate(45deg);
}

.hm-map-point span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}

.hm-locator.is-detail-mode .hm-map-cluster {
  opacity: .22;
}

.hm-locator.is-detail-mode .hm-map-point {
  display: grid;
}

.hm-locator.is-detail-mode .hm-map-point.is-hidden {
  display: none;
}

.hm-map-point:hover,
.hm-map-point:focus-visible,
.hm-map-point.is-active {
  background: var(--hm-orange);
  transform: translate(-50%, -74%) rotate(-45deg) scale(1.08);
  outline: none;
}

.hm-map-popup {
  position: absolute;
  left: var(--popup-x, 50%);
  top: var(--popup-y, 40%);
  z-index: 4;
  width: min(310px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 8px;
  color: #111111;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 58px rgba(17, 17, 17, .22);
  transform: translate(-50%, calc(-100% - 18px));
}

.hm-map-popup[hidden] {
  display: none;
}

.hm-map-popup strong,
.hm-map-popup span,
.hm-map-popup small,
.hm-map-popup a {
  display: block;
}

.hm-map-popup strong {
  font-size: 18px;
  line-height: 1.16;
}

.hm-map-popup span {
  margin-top: 9px;
  color: #343a3d;
  line-height: 1.45;
}

.hm-map-popup small {
  margin-top: 8px;
  color: #5f6366;
  line-height: 1.45;
}

.hm-map-popup a {
  width: fit-content;
  margin-top: 12px;
  color: var(--hm-orange);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.hm-map-popup a::after {
  content: "->";
  margin-left: 8px;
}

.hm-map-zoom {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(17, 17, 17, .18);
}

.hm-map-zoom button {
  width: 46px;
  height: 44px;
  border: 0;
  color: #343a3d;
  font-size: 30px;
  line-height: 1;
  background: #ffffff;
  cursor: pointer;
}

.hm-map-zoom button + button {
  border-top: 1px solid rgba(17, 17, 17, .12);
}

.hm-map-zoom button:hover,
.hm-map-zoom button:focus-visible {
  color: var(--hm-orange);
  outline: none;
}

.hm-seller-profile {
  padding: clamp(38px, 5vw, 72px) 22px clamp(58px, 7vw, 92px);
  background: #f6f6f6;
}

.hm-seller-profile__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hm-seller-profile__back {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--hm-orange);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hm-seller-profile__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  margin-top: 18px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--hm-locator-shadow);
}

.hm-seller-profile__hero h1 {
  max-width: 820px;
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 500;
  line-height: 1;
}

.hm-seller-profile__hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #5f6366;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.58;
}

.hm-seller-profile__logo {
  width: 92px;
  height: 92px;
  font-size: 24px;
}

.hm-seller-profile__grid {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(320px, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.hm-seller-profile__panel,
.hm-seller-profile__map {
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(17, 17, 17, .06);
}

.hm-seller-profile__panel {
  padding: clamp(22px, 2.6vw, 34px);
}

.hm-seller-profile__panel h2 {
  margin: 0 0 18px;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.hm-seller-profile__panel p {
  color: #5f6366;
  line-height: 1.68;
}

.hm-seller-profile__contacts {
  display: grid;
  gap: 15px;
  margin: 0;
}

.hm-seller-profile__contacts dt {
  color: #5f6366;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hm-seller-profile__contacts dd {
  margin: 5px 0 0;
  color: #111111;
  line-height: 1.48;
}

.hm-seller-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hm-seller-profile__tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 8px;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
  background: #f6f6f6;
}

.hm-seller-profile__map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  grid-column: 1 / -1;
}

.hm-seller-profile__map iframe,
.hm-seller-profile__map-canvas {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.hm-seller-profile__map .hm-map-status {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.hm-dealer-single {
  background: #f6f6f6;
}

.hm-dealer-single__wrap {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(42px, 7vw, 84px) auto;
}

.hm-dealer-single__header {
  display: grid;
  gap: 18px;
}

.hm-dealer-single__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, .08);
}

.hm-dealer-single__hero h1 {
  max-width: 820px;
  margin: 16px 0 0;
  color: #111111;
  font-family: var(--hm-display-font);
  font-size: var(--hm-display-size);
  font-weight: var(--hm-display-weight);
  line-height: var(--hm-display-line-height);
  letter-spacing: 0;
}

.hm-dealer-single__hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #5f6366;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.58;
}

.hm-dealer-single__logo {
  display: grid;
  width: 132px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 8px;
  color: #111111;
  font-size: 30px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(216, 220, 221, .72)),
    #f6f6f6;
}

.hm-dealer-single__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.hm-dealer-single__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .44fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

.hm-dealer-single__content,
.hm-dealer-single__contacts {
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(17, 17, 17, .06);
}

.hm-dealer-single__content h2,
.hm-dealer-single__contacts h2 {
  margin: 10px 0 18px;
  color: #111111;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
}

.hm-dealer-single__content {
  color: #242424;
  font-size: 18px;
  line-height: 1.72;
}

.hm-dealer-single__content > *:last-child {
  margin-bottom: 0;
}

.hm-dealer-single__contacts dl {
  display: grid;
  gap: 15px;
  margin: 0;
}

.hm-dealer-single__contacts dt {
  color: #5f6366;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hm-dealer-single__contacts dd {
  margin: 5px 0 0;
  color: #111111;
  line-height: 1.48;
}

.hm-dealer-single__contacts a {
  color: inherit;
  text-decoration: none;
}

.hm-dealer-single__map {
  position: relative;
  min-height: 280px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 8px;
  background: #eef1f2;
}

.hm-dealer-single__map-canvas {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.hm-dealer-single__map .hm-map-status {
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-size: 12px;
}

.hm-yandex-balloon {
  max-width: 270px;
  color: #111111;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.hm-yandex-balloon strong,
.hm-yandex-balloon span,
.hm-yandex-balloon small,
.hm-yandex-balloon a {
  display: block;
}

.hm-yandex-balloon strong {
  font-size: 16px;
  line-height: 1.2;
}

.hm-yandex-balloon span {
  margin-top: 7px;
  color: #343a3d;
  line-height: 1.42;
}

.hm-yandex-balloon small {
  margin-top: 6px;
  color: #5f6366;
  line-height: 1.42;
}

.hm-yandex-balloon a {
  width: fit-content;
  margin-top: 9px;
  color: var(--hm-orange);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.hm-contact-list,
.hm-legal-copy {
  display: grid;
  gap: 18px;
}

.hm-contact-list div,
.hm-legal-copy article {
  padding: 20px;
  border: 1px solid var(--hm-line);
  border-radius: 8px;
  background: #ffffff;
}

.hm-contact-list strong {
  color: #5f6366;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hm-contact-list span {
  display: block;
  margin-top: 6px;
}

.hm-requisites {
  align-items: flex-start;
}

@media (max-width: 1050px) {
  .hm-featured-grid,
  .hm-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-product-card {
    flex-basis: 260px;
  }

  .hm-home-catalog-card {
    flex-basis: calc((100% - var(--hm-home-catalog-gap)) / 2);
  }

  .hm-news-card {
    flex-basis: min(720px, 86vw);
  }

  .hm-service-row,
  .hm-page-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hm-professional-library-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hm-link-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-about-welcome__media {
    min-height: 620px;
  }

  .hm-about-welcome__panel {
    left: 32px;
    width: min(540px, calc(100% - 64px));
  }

  .hm-inner-nav__inner {
    gap: 16px;
  }

  .hm-inner-nav__menu {
    overflow: hidden;
  }

  .hm-inner-nav__links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hm-inner-nav__link {
    flex: 0 0 auto;
  }

  .hm-page-hero {
    height: 300px;
  }

  .hm-catalog-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-trust__layout,
  .hm-brand-intro__layout,
  .hm-bottom-cta__layout,
  .hm-page-split,
  .hm-catalog-browser__layout,
  .hm-catalog-content__intro,
  .hm-product-single__wrap,
  .hm-product-category__intro,
  .hm-dealer-single__hero,
  .hm-dealer-single__grid,
  .hm-site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hm-catalog-sidebar {
    position: relative;
    top: auto;
    margin-top: 0;
  }

  #hm-catalog-view-grid:checked ~ .hm-catalog-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #hm-blog-view-grid:checked ~ .hm-blog-articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-category-page__wrap {
    width: min(980px, calc(100% - 48px));
  }

  .hm-category-page__intro,
  .hm-category-fact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hm-category-page__media {
    min-height: 280px;
  }

  .hm-category-page__product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-category-page__videos {
    grid-template-columns: 1fr;
  }

  .hm-category-fact__image {
    width: min(280px, 100%);
  }

  .hm-site-footer__contacts {
    text-align: left;
  }

  .hm-site-footer__bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hm-trust-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-brand-intro__layout {
    width: min(640px, 100%);
  }
}

@media (max-width: 700px) {
  .hm-section {
    padding: 42px 18px;
  }

  .hm-brand-intro__media {
    gap: 18px;
  }

  .hm-brand-video-placeholder {
    width: 100%;
  }

  .hm-brand-intro__icons {
    gap: 16px;
    margin-top: 26px;
  }

  .hm-brand-intro__icons img {
    width: clamp(72px, 24vw, 92px);
  }

  .hm-home-catalog-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 10px;
  }

  .hm-home-catalog-card {
    flex-basis: min(78vw, 320px);
  }

  .hm-catalog-showcase {
    padding: 42px 16px 76px;
  }

  .hm-catalog-showcase__inner {
    width: 100%;
  }

  .hm-catalog-showcase__head {
    display: grid;
    gap: 12px;
    justify-items: center;
    margin-bottom: 28px;
  }

  .hm-catalog-showcase__head::before,
  .hm-catalog-showcase__head::after {
    width: 82px;
  }

  .hm-catalog-showcase__head h2 {
    max-width: 100%;
    font-size: clamp(32px, 8vw, 38px);
    line-height: 1.08;
    white-space: normal;
  }

  .hm-catalog-showcase__grid {
    grid-template-columns: 1fr;
  }

  .hm-professional-library-grid {
    grid-template-columns: 1fr;
  }

  .hm-service-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .hm-service-row a {
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .hm-catalog-showcase-card {
    height: 300px;
  }

  .hm-catalog-showcase__grid .hm-catalog-showcase-card {
    justify-self: center;
    width: min(100%, 340px);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .hm-catalog-showcase-card__image {
    padding: 16px;
  }

  .hm-catalog-showcase-card__body {
    min-height: 66px;
    padding: 14px 18px;
  }

  .hm-catalog-showcase-card h3 {
    font-size: 18px;
  }

  .hm-category-page__wrap {
    width: calc(100% - 32px);
    margin-bottom: 0;
    padding-top: 0;
  }

  .hm-category-page__copy h1 {
    margin-bottom: 20px;
    font-size: clamp(30px, 8.4vw, 38px);
  }

  .hm-category-page__copy p {
    font-size: 16px;
    line-height: 1.38;
  }

  .hm-category-page__downloads {
    gap: 12px;
  }

  .hm-category-page__downloads a {
    width: 100%;
    min-width: 0;
  }

  .hm-category-page__media {
    min-height: 220px;
    border-radius: 10px;
  }

  .hm-category-page__product-grid {
    grid-template-columns: 1fr;
  }

  .hm-category-page__product-grid .hm-product-card-public .hm-placeholder--product {
    height: 170px;
    min-height: 170px;
  }

  .hm-category-video {
    gap: 12px;
  }

  .hm-category-fact {
    margin-top: 58px;
  }

  .hm-category-fact__body h2 {
    margin-bottom: 26px;
  }

  .hm-category-fact__text {
    font-size: 16px;
    line-height: 1.42;
  }

  .hm-about-welcome {
    padding: 0;
  }

  .hm-about-welcome__media {
    width: calc(100% - 28px);
    min-height: 0;
  }

  .hm-about-welcome__media::after {
    display: none;
  }

  .hm-about-welcome__media img {
    position: relative;
    display: block;
    height: 260px;
    object-position: 62% center;
  }

  .hm-about-welcome__panel {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    max-height: none;
    margin: -34px 14px 18px;
    padding: 24px 22px 26px;
    transform: none;
  }

  .hm-about-welcome__panel h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .hm-about-welcome__panel p {
    font-size: 16px;
  }

  .hm-inner-nav__inner {
    gap: 12px;
    padding: 12px 18px 14px;
  }

  .hm-inner-nav__brand {
    width: 88px;
    min-width: 88px;
  }

  .hm-inner-nav__logo {
    width: 86px;
  }

  .hm-inner-nav__links {
    gap: 0;
  }

  .hm-inner-nav__link {
    min-height: 38px;
    padding: 0 8px;
    font-size: 10px;
  }

  .hm-page-hero {
    height: 260px;
    padding: 0 18px;
  }

  .hm-page-hero__inner {
    width: 100%;
  }

  .hm-page-hero h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hm-page-hero p {
    font-size: 16px;
  }

  .hm-product-single__wrap {
    width: min(100% - 28px, 680px);
    margin: 34px auto 48px;
  }

  .hm-catalog-browser {
    padding-top: 14px;
  }

  .hm-catalog-browser__inner {
    width: min(100% - 28px, 680px);
  }

  .hm-catalog-content__intro {
    gap: 18px;
    margin-bottom: 20px;
  }

  .hm-catalog-content__intro h1 {
    margin-bottom: 14px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .hm-catalog-content__intro p {
    font-size: 16px;
  }

  .hm-catalog-content__media {
    min-height: 112px;
  }

  .hm-catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  #hm-catalog-view-grid:checked ~ .hm-catalog-products,
  #hm-catalog-view-compact:checked ~ .hm-catalog-products,
  #hm-catalog-view-list:checked ~ .hm-catalog-products,
  #hm-blog-view-grid:checked ~ .hm-blog-articles,
  #hm-blog-view-compact:checked ~ .hm-blog-articles,
  #hm-blog-view-list:checked ~ .hm-blog-articles {
    grid-template-columns: 1fr;
  }

  #hm-catalog-view-list:checked ~ .hm-catalog-products .hm-product-card-public__link,
  #hm-catalog-view-compact:checked ~ .hm-catalog-products .hm-product-card-public__link,
  #hm-blog-view-list:checked ~ .hm-blog-articles .hm-product-card-public__link,
  #hm-blog-view-compact:checked ~ .hm-blog-articles .hm-product-card-public__link {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  #hm-blog-view-list:checked ~ .hm-blog-articles .hm-news-list-card,
  #hm-blog-view-compact:checked ~ .hm-blog-articles .hm-news-list-card {
    grid-template-columns: 1fr;
  }

  #hm-catalog-view-list:checked ~ .hm-catalog-products .hm-page-card__body {
    display: flex;
    gap: 0;
  }

  #hm-blog-view-list:checked ~ .hm-blog-articles .hm-page-card__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #hm-catalog-view-list:checked ~ .hm-catalog-products .hm-product-card-public__more,
  #hm-blog-view-list:checked ~ .hm-blog-articles .hm-product-card-public__more {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }

  #hm-blog-view-list:checked ~ .hm-blog-articles .hm-text-link {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }

  #hm-catalog-view-list:checked ~ .hm-catalog-products .hm-placeholder--product,
  #hm-catalog-view-grid:checked ~ .hm-catalog-products .hm-placeholder--product,
  #hm-catalog-view-compact:checked ~ .hm-catalog-products .hm-placeholder--product,
  #hm-blog-view-list:checked ~ .hm-blog-articles .hm-placeholder--product,
  #hm-blog-view-grid:checked ~ .hm-blog-articles .hm-placeholder--product,
  #hm-blog-view-compact:checked ~ .hm-blog-articles .hm-placeholder--product {
    height: 170px;
    min-height: 170px;
  }

  .hm-dealer-single__wrap {
    width: min(100% - 28px, 680px);
    margin: 34px auto 48px;
  }

  .hm-dealer-single__hero,
  .hm-dealer-single__content,
  .hm-dealer-single__contacts {
    padding: 22px;
  }

  .hm-dealer-single__logo {
    width: 104px;
    justify-self: start;
  }

  .hm-product-single__gallery {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hm-product-single__main-image {
    height: auto;
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .hm-product-single__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
  }

  .hm-product-single__thumb {
    aspect-ratio: 1 / 1;
  }

  .hm-product-tabs__panel--description .hm-product-single__description img,
  .hm-product-tabs__panel--description .hm-product-single__description figure {
    width: 100%;
  }

  .hm-product-characteristics__row {
    font-size: 16px;
  }

  .hm-product-characteristics dt,
  .hm-product-characteristics dd {
    max-width: none;
  }

  .hm-product-characteristics dd {
    flex-basis: 42%;
  }

  .hm-related-products__track {
    grid-auto-columns: minmax(250px, 82vw);
  }

  .hm-document-files__list a {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hm-document-files__list span,
  .hm-document-files__list em {
    width: fit-content;
  }

  .hm-section h1,
  .hm-section h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .hm-slider-shell,
  .hm-slider-shell--blog,
  .hm-news-carousel {
    grid-template-columns: 1fr;
  }

  .hm-news-carousel--lead {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .hm-round-arrow {
    display: none;
  }

  .hm-news-carousel--lead .hm-news-carousel__arrow {
    display: inline-grid;
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .hm-featured-grid,
  .hm-blog-grid,
  .hm-service-row,
  .hm-trust-icons,
  .hm-page-grid,
  .hm-page-grid--two,
  .hm-page-grid--five,
  .hm-link-tile-grid,
  .hm-filter-shell,
  .hm-news-list-card {
    grid-template-columns: 1fr;
  }

  .hm-filter-tags {
    justify-content: flex-start;
  }

  .hm-news-track {
    display: grid;
    overflow: visible;
  }

  .hm-news-carousel--lead .hm-news-track {
    display: flex;
    overflow: visible;
  }

  .hm-news-card {
    grid-template-columns: 1fr;
    flex-basis: auto;
  }

  .hm-news-carousel--lead .hm-news-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .hm-news-carousel--lead .hm-photo-placeholder--news {
    min-height: 142px;
    margin: 10px 10px 0;
    aspect-ratio: 16 / 8;
  }

  .hm-news-carousel--lead .hm-news-card__body {
    padding: 18px;
  }

  .hm-news-carousel--lead .hm-news-card__body::before {
    display: none;
  }

  .hm-news-carousel--lead .hm-news-card h2 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hm-article-single--home-news .hm-article-single__lead {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hm-article-single--home-news .hm-article-single__media {
    max-width: 420px;
    margin-top: 0;
  }

  .hm-news-dots {
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  .hm-decor {
    opacity: .16;
    transform: scale(.74);
  }

  .hm-trust__badge {
    width: min(230px, 78vw);
  }

  .hm-photo-placeholder--product,
  .hm-photo-placeholder--article {
    min-height: 160px;
  }

  .hm-products-marquee {
    margin-right: -18px;
    margin-left: -18px;
  }

  .hm-product-strip {
    animation-duration: 44s;
  }

  .hm-product-card {
    flex-basis: min(76vw, 280px);
    margin-right: 14px;
  }

  .hm-blog-card h3 {
    min-height: 0;
  }

  .hm-site-footer {
    padding: 34px 18px 18px;
  }

  .hm-site-footer__menu-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hm-site-footer__nav a,
  .hm-site-footer__docs a,
  .hm-site-footer__contacts span {
    white-space: normal;
  }

  .hm-site-footer__bottom span:last-child {
    text-align: left;
  }

  .hm-site-footer__brand p,
  .hm-site-footer__nav a,
  .hm-site-footer__docs a,
  .hm-site-footer__contacts span {
    font-size: 14px;
  }
}

@media (max-width: 1100px) {
  .hm-locator__shell {
    grid-template-columns: minmax(330px, .92fr) minmax(430px, 1.08fr);
  }

  .hm-locator__sidebar,
  .hm-locator__map-panel {
    max-height: none;
    min-height: 620px;
  }
}

@media (max-width: 820px) {
  .hm-locator__shell {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hm-locator__sidebar {
    max-height: none;
    overflow: visible;
  }

  .hm-locator__map-panel {
    position: relative;
    min-height: 560px;
    border-top: 1px solid rgba(17, 17, 17, .12);
    border-left: 0;
  }

  .hm-seller-profile__hero,
  .hm-seller-profile__grid {
    grid-template-columns: 1fr;
  }

  .hm-seller-profile__logo {
    width: 74px;
    height: 74px;
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .hm-locator__sidebar {
    padding: 24px 18px;
  }

  .hm-locator__toolbar,
  .hm-locator-card__head,
  .hm-seller-profile__hero {
    align-items: flex-start;
  }

  .hm-locator__toolbar {
    flex-direction: column;
  }

  .hm-locator__toolbar button {
    width: 100%;
  }

  .hm-locator-card {
    padding: 18px;
  }

  .hm-locator-card__head {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .hm-locator-card__logo {
    width: 46px;
    height: 46px;
  }

  .hm-locator-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hm-locator-card__actions button,
  .hm-locator-card__actions a {
    width: 100%;
  }

  .hm-locator__map-panel {
    min-height: 500px;
  }

  .hm-map-cluster {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .hm-map-popup {
    left: 50% !important;
    top: 36px !important;
    transform: translateX(-50%);
  }

  .hm-seller-profile {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hm-seller-profile__hero,
  .hm-seller-profile__panel {
    padding: 22px;
  }
}

@media (max-width: 1180px) {
  body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__inner,
  body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__inner {
    width: min(100% - 28px, 1720px);
    gap: 16px;
  }

  body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__brand,
  body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__brand {
    width: 150px;
    min-width: 150px;
  }

  body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__logo,
  body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__logo {
    width: 146px;
  }

  body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__menu,
  body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__menu {
    max-width: calc(100vw - 192px);
  }

  .hm-inner-nav--brand .hm-inner-nav__inner,
  .hm-inner-nav--brand.is-glass .hm-inner-nav__inner {
    width: min(100% - 28px, 1720px);
    gap: 16px;
  }

  .hm-inner-nav--brand .hm-inner-nav__brand {
    width: 142px;
    min-width: 142px;
  }

  .hm-inner-nav--brand .hm-inner-nav__logo {
    width: 140px;
  }

  .hm-inner-nav--brand .hm-inner-nav__links,
  .hm-inner-nav--brand.is-glass .hm-inner-nav__links {
    justify-content: flex-start;
    gap: 0;
  }

  .hm-inner-nav--brand .hm-inner-nav__link,
  .hm-inner-nav--brand.is-glass .hm-inner-nav__link {
    flex: 0 0 auto;
    font-size: 10px;
  }
}

@media (max-width: 700px) {
  body:not(.home):not(.front-page) .hm-inner-nav--brand,
  body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass,
  body:not(.home):not(.front-page) :is(.hm-page, .hm-product-category) .hm-inner-nav--brand,
  body:not(.home):not(.front-page) :is(.hm-page, .hm-product-category) .hm-inner-nav--brand.is-glass {
    position: fixed;
    top: var(--hm-inner-nav-sticky-offset, 0px);
    min-height: 112px;
    background: rgba(5, 9, 10, .96);
  }

  body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass,
  body:not(.home):not(.front-page) :is(.hm-page, .hm-product-category) .hm-inner-nav--brand.is-glass {
    background: rgba(5, 9, 10, .84);
    backdrop-filter: blur(16px) saturate(1.08);
    -webkit-backdrop-filter: blur(16px) saturate(1.08);
  }

  body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__inner,
  body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__inner {
    display: grid;
    width: 100%;
    min-height: 112px;
    gap: 8px;
    padding: 10px 14px 8px;
  }

  body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__brand,
  body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__brand {
    width: 150px;
    min-width: 0;
    margin-left: 0;
  }

  body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__logo,
  body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__logo {
    width: 150px;
  }

  body:not(.home):not(.front-page) .hm-inner-nav--brand .hm-inner-nav__menu,
  body:not(.home):not(.front-page) .hm-inner-nav--brand.is-glass .hm-inner-nav__menu {
    width: 100%;
    max-width: 100%;
  }

  .hm-inner-nav--brand,
  .hm-inner-nav--brand.is-glass,
  :is(.hm-page, .hm-product-category) .hm-inner-nav--brand,
  :is(.hm-page, .hm-product-category) .hm-inner-nav--brand.is-glass {
    position: relative;
    background: #0b0f10;
  }

  .hm-inner-nav--brand .hm-inner-nav__inner,
  .hm-inner-nav--brand.is-glass .hm-inner-nav__inner {
    display: grid;
    width: 100%;
    gap: 10px;
    padding: 12px 14px 0;
  }

  .hm-inner-nav--brand .hm-inner-nav__brand {
    width: 150px;
    min-width: 0;
    margin-left: 0;
  }

  .hm-inner-nav--brand .hm-inner-nav__logo {
    width: 150px;
  }

  .hm-inner-nav--brand .hm-inner-nav__menu {
    max-width: 100%;
  }

  .hm-inner-nav--brand .hm-inner-nav__links,
  .hm-inner-nav--brand.is-glass .hm-inner-nav__links {
    max-width: 100%;
    min-height: 44px;
  }

  .hm-inner-nav--brand .hm-inner-nav__link,
  .hm-inner-nav--brand.is-glass .hm-inner-nav__link {
    min-height: 44px;
    padding: 0 10px;
    font-size: 10px;
  }

  :is(.hm-page, .hm-product-category) .hm-page-hero {
    min-height: 0;
    height: 330px;
    padding: 128px 18px 44px;
    background-position: center top;
  }

  :is(.hm-page, .hm-product-category) .hm-page-hero__inner {
    width: 100%;
  }

  :is(.hm-page, .hm-product-category) .hm-page-hero h1 {
    max-width: calc(100vw - 36px);
    font-size: clamp(29px, 7.6vw, 36px);
    line-height: 1.08;
  }

  :is(.hm-page, .hm-product-category) .hm-page-hero p {
    max-width: calc(100vw - 36px);
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hm-product-strip {
    animation: none;
    transform: none;
  }
}
