:root {
  --mo-blue: #0d3e79;
  --mo-blue-dark: #082f62;
  --mo-blue-deep: #052451;
  --mo-blue-light: #2e74b8;
  --mo-accent: #ff8200;
  --mo-accent-hover: #ec7200;
  --mo-text: #182846;
  --mo-muted: #5c6679;
  --mo-border: #e3e8f1;
  --mo-bg: #f4f6f9;
  --mo-white: #ffffff;
  --mo-shadow: 0 10px 24px rgba(15, 44, 82, .12);
  --mo-container: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--mo-text);
  background: var(--mo-white);
  font-size: 16px;
  line-height: 1.45;
}

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

a {
  color: #1d64a7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--mo-blue-deep);
}

.mo-container {
  width: min(var(--mo-container), calc(100% - 64px));
  margin-inline: auto;
}

.mo-section {
  padding-block: 28px;
}

.mo-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mo-header {
  background: #fff;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(16, 36, 69, .08);
}

.mo-header__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-block: 17px 16px;
}

.mo-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  color: var(--mo-text);
  text-decoration: none;
}

.mo-logo__title {
  color: #1c3f7b;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.07;
  letter-spacing: .01em;
  font-size: clamp(22px, 2.1vw, 32px);
}

.mo-logo__subtitle {
  color: #26344f;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
}

.mo-header__contacts {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 20px;
  row-gap: 3px;
  align-items: start;
  text-align: right;
  white-space: nowrap;
  padding-top: 7px;
}

.mo-city {
  grid-row: span 2;
  font-size: 13px;
  color: #17243f;
  padding-top: 3px;
}

.mo-phone {
  color: var(--mo-text);
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.mo-phone:hover {
  color: var(--mo-blue);
}

.mo-menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(13, 62, 121, .25);
  border-radius: 4px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mo-menu-toggle span:not(.mo-visually-hidden) {
  width: 22px;
  height: 2px;
  background: var(--mo-blue);
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}

.mo-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mo-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mo-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mo-nav {
  background: linear-gradient(180deg, #0d3f7a 0%, #07356d 100%);
  color: #fff;
}

.mo-nav__inner {
  min-height: 50px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.mo-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .015em;
  display: flex;
  align-items: center;
  padding-inline: 22px;
  position: relative;
}

.mo-nav a + a::before {
  content: "";
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, .32);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mo-nav a:hover,
.mo-nav a:focus-visible {
  background: rgba(255, 255, 255, .08);
}

.mo-hero {
  color: #fff;
  background-image: linear-gradient(90deg, rgba(8, 15, 28, .94) 0%, rgba(8, 15, 28, .78) 42%, rgba(8, 15, 28, .36) 100%), url("../img/hero-steel.jpg");
  background-size: cover;
  background-position: center right;
  min-height: 318px;
  display: flex;
  align-items: stretch;
}

.mo-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: 44px;
  align-items: center;
  padding-block: 38px;
}

.mo-hero h1 {
  margin: 0 0 24px;
  max-width: 720px;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}

.mo-hero__actions {
  display: grid;
  justify-items: start;
  gap: 15px;
}

.mo-hero__actions p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.mo-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.mo-btn:hover {
  transform: translateY(-1px);
}

.mo-btn--accent {
  background: var(--mo-accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 130, 0, .28);
}

.mo-btn--accent:hover {
  background: var(--mo-accent-hover);
  color: #fff;
}

.mo-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .86);
}

.mo-btn--outline:hover {
  background: rgba(255, 255, 255, .11);
  color: #fff;
}

.mo-btn--primary {
  background: var(--mo-blue);
  color: #fff;
  border-color: var(--mo-blue);
  min-width: 240px;
}

.mo-btn--primary:hover {
  background: var(--mo-blue-deep);
  color: #fff;
}

.mo-hero__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 15px;
  justify-self: start;
  font-size: 16px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.mo-hero__features li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: center;
}

.mo-hero__features li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #4da5df, #1d6aaa);
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
}

.mo-catalog {
  padding-top: 34px;
}

.mo-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 22px;
}

.mo-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  background: #f7f8fa;
  color: var(--mo-text);
  text-align: center;
  text-decoration: none;
  border: 1px solid #edf0f5;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .02);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mo-card:hover,
.mo-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--mo-shadow);
  border-color: #cfdae9;
  color: var(--mo-text);
}

.mo-card img {
  width: 100%;
  aspect-ratio: 2.22 / 1;
  object-fit: cover;
  background: #eef1f5;
}

.mo-card__title {
  background: var(--mo-blue);
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.1;
  padding: 9px 10px;
}

.mo-card__text {
  color: #283854;
  padding: 14px 10px 18px;
  font-size: 15px;
  line-height: 1.28;
  min-height: 66px;
}

.mo-benefits {
  padding-top: 22px;
}

.mo-benefits h2,
.mo-process h2,
.mo-content h2 {
  margin: 0 0 20px;
  color: var(--mo-blue);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .015em;
}

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

.mo-benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.mo-benefit h3 {
  margin: 0 0 4px;
  color: var(--mo-blue);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.mo-benefit p {
  margin: 0;
  color: #24334e;
  font-size: 14px;
  line-height: 1.32;
}

.mo-benefit ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.32;
}

.mo-icon {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(13, 62, 121, .54);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--mo-blue);
  font-weight: 900;
  background: #f7f9fc;
  position: relative;
  flex: 0 0 auto;
}

.mo-icon::before,
.mo-icon::after,
.mo-process__icon::before,
.mo-process__icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.mo-icon--speed::before {
  width: 23px;
  height: 23px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.mo-icon--speed::after {
  width: 10px;
  height: 11px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  left: 23px;
  top: 15px;
}

.mo-icon--warehouse::before {
  width: 27px;
  height: 19px;
  left: 9px;
  bottom: 11px;
  border: 3px solid currentColor;
}

.mo-icon--warehouse::after {
  width: 20px;
  height: 20px;
  left: 14px;
  top: 8px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: rotate(45deg);
}

.mo-icon--clients::before {
  width: 11px;
  height: 11px;
  left: 18px;
  top: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -11px 7px 0 -2px currentColor, 11px 7px 0 -2px currentColor;
}

.mo-icon--clients::after {
  width: 31px;
  height: 15px;
  left: 8px;
  bottom: 10px;
  border: 3px solid currentColor;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom: 0;
}

.mo-icon--docs::before {
  width: 22px;
  height: 27px;
  left: 15px;
  top: 9px;
  border: 3px solid currentColor;
  background:
    linear-gradient(currentColor, currentColor) 5px 8px / 11px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 5px 15px / 11px 2px no-repeat;
}

.mo-icon--docs::after {
  width: 22px;
  height: 27px;
  left: 10px;
  top: 13px;
  border: 3px solid currentColor;
  opacity: .32;
}

.mo-icon--delivery::before {
  width: 29px;
  height: 17px;
  left: 7px;
  top: 16px;
  border: 3px solid currentColor;
}

.mo-icon--delivery::after {
  width: 28px;
  height: 17px;
  right: 5px;
  top: 18px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  background:
    radial-gradient(circle at 7px 16px, currentColor 0 4px, transparent 4px),
    radial-gradient(circle at 21px 16px, currentColor 0 4px, transparent 4px);
}

.mo-icon--cut::before {
  width: 11px;
  height: 11px;
  left: 10px;
  top: 11px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 15px 0 -3px #f7f9fc, 0 15px 0 0 currentColor;
}

.mo-icon--cut::after {
  width: 28px;
  height: 28px;
  right: 8px;
  top: 10px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-28deg);
}

.mo-icon--discount::before {
  width: 26px;
  height: 3px;
  background: currentColor;
  transform: rotate(-45deg);
}

.mo-icon--discount::after {
  width: 8px;
  height: 8px;
  left: 11px;
  top: 11px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 17px 17px 0 -3px #f7f9fc, 17px 17px 0 0 currentColor;
}

.mo-process {
  margin-top: 10px;
  background: #f2f5fa;
  border-block: 1px solid #e4eaf3;
}

.mo-process__list {
  counter-reset: process;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
}

.mo-process__list li {
  position: relative;
  min-height: 170px;
  padding-left: 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-areas:
    "num icon"
    "title title"
    "text text";
  align-items: center;
  gap: 9px 12px;
}

.mo-process__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 43px;
  right: -31px;
  width: 50px;
  height: 16px;
  background: linear-gradient(90deg, #bec7d5 0 70%, transparent 70% 100%);
  clip-path: polygon(0 43%, 78% 43%, 78% 15%, 100% 50%, 78% 85%, 78% 57%, 0 57%);
  opacity: .72;
}

.mo-process__num {
  grid-area: num;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mo-blue);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.mo-process__icon {
  grid-area: icon;
  color: var(--mo-blue);
  width: 58px;
  height: 58px;
  opacity: .9;
  position: relative;
  display: block;
}

.mo-process__icon--request::before,
.mo-process__icon--calc::before {
  inset: 8% 24% 8% 15%;
  border: 4px solid currentColor;
  border-radius: 2px;
}

.mo-process__icon--request::after {
  width: 20%;
  height: 20%;
  right: 24%;
  top: 8%;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
}

.mo-process__icon--calc::before {
  background:
    linear-gradient(currentColor, currentColor) 24% 30% / 50% 4px no-repeat,
    linear-gradient(currentColor, currentColor) 24% 48% / 50% 4px no-repeat,
    linear-gradient(currentColor, currentColor) 24% 66% / 34% 4px no-repeat;
}

.mo-process__icon--calc::after {
  width: 16%;
  height: 16%;
  right: 17%;
  bottom: 10%;
  background: currentColor;
  box-shadow: -13px 0 0 currentColor, 0 -13px 0 currentColor, -13px -13px 0 currentColor;
}

.mo-process__icon--payment::before {
  inset: 20% 7% 22% 7%;
  border: 4px solid currentColor;
  border-radius: 3px;
}

.mo-process__icon--payment::after {
  left: 12%;
  right: 12%;
  top: 33%;
  height: 4px;
  background: currentColor;
  box-shadow: 0 12px 0 -1px currentColor;
}

.mo-process__icon--shipping::before {
  width: 56%;
  height: 42%;
  left: 7%;
  top: 25%;
  border: 4px solid currentColor;
}

.mo-process__icon--shipping::after {
  width: 35%;
  height: 32%;
  right: 6%;
  top: 33%;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  background:
    radial-gradient(circle at 20% 100%, currentColor 0 4px, transparent 4px),
    radial-gradient(circle at 88% 100%, currentColor 0 4px, transparent 4px);
}

.mo-process h3 {
  grid-area: title;
  margin: 8px 0 0;
  color: var(--mo-blue);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.mo-process p {
  grid-area: text;
  margin: 0;
  color: #273754;
  font-size: 14px;
  line-height: 1.35;
}

.mo-content {
  padding-top: 34px;
}

.mo-content h2 {
  margin-top: 0;
  margin-bottom: 13px;
}

.mo-content h2:not(:first-child) {
  margin-top: 28px;
}

.mo-content p {
  margin: 0 0 12px;
  color: #24334e;
  font-size: 15px;
  line-height: 1.45;
}

.mo-final-cta {
  margin-block: 14px 34px;
  padding: 22px 34px;
  background: linear-gradient(90deg, #f2f4f7, #e7ebf1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.mo-final-cta p {
  margin: 0;
  font-size: 18px;
  color: #24334e;
  font-weight: 700;
}

.mo-footer {
  background: linear-gradient(180deg, #252525, #161616);
  color: #fff;
  padding-block: 25px;
}

.mo-footer__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.mo-footer__brand {
  display: grid;
  gap: 13px;
  text-transform: uppercase;
  color: #fff;
  font-size: 17px;
}

.mo-footer__brand a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}

.mo-footer__content {
  text-align: right;
}

.mo-footer__nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 18px;
}

.mo-footer__nav a {
  color: #00a2e9;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

.mo-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  line-height: 1.38;
}

.mo-main {
  background: var(--mo-white);
}

.mo-subhero {
  color: #fff;
  background-image: linear-gradient(90deg, rgba(8, 15, 28, .94) 0%, rgba(8, 15, 28, .76) 48%, rgba(8, 15, 28, .42) 100%), url("../img/hero-steel.jpg");
  background-size: cover;
  background-position: center right;
}

.mo-subhero__inner {
  min-height: 170px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding-block: 34px;
}

.mo-subhero h1 {
  margin: 0;
  max-width: 900px;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  font-weight: 900;
}

.mo-subhero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  font-weight: 700;
}

.mo-inner {
  padding-block: 24px 42px;
}

.mo-breadcrumbs {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: var(--mo-muted);
  font-size: 13px;
}

.mo-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mo-breadcrumbs li + li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #9aa7ba;
  border-right: 2px solid #9aa7ba;
  transform: rotate(45deg);
}

.mo-breadcrumbs a {
  color: #315f95;
  text-decoration: none;
}

.mo-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.mo-sidebar {
  background: #f5f7fb;
  border: 1px solid var(--mo-border);
  box-shadow: 0 2px 0 rgba(10, 38, 78, .03);
}

.mo-sidebar__title {
  margin: 0;
  padding: 14px 18px;
  background: var(--mo-blue);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.mo-side-menu,
.mo-side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mo-side-menu a,
.mo-side-menu span {
  display: block;
  padding: 11px 18px;
  color: var(--mo-text);
  text-decoration: none;
  border-bottom: 1px solid #e2e8f2;
  font-size: 14px;
  font-weight: 700;
}

.mo-side-menu ul a,
.mo-side-menu ul span {
  padding-left: 30px;
  color: #3b4a62;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
}

.mo-side-menu a:hover,
.mo-side-menu .current_page_item > a,
.mo-side-menu .current_page_item > span {
  color: #fff;
  background: var(--mo-accent);
}

.mo-content--panel {
  min-width: 0;
  padding: 28px 30px;
  border: 1px solid var(--mo-border);
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 44, 82, .07);
}

.mo-content h1,
.mo-content--panel h1,
.mo-page-heading {
  margin: 0 0 18px;
  color: var(--mo-blue);
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 900;
}

.mo-content h3,
.mo-content--panel h3 {
  margin: 22px 0 10px;
  color: var(--mo-blue);
  font-size: 20px;
  line-height: 1.2;
}

.mo-content ul,
.mo-content ol {
  padding-left: 22px;
  color: #24334e;
}

.mo-content li {
  margin-bottom: 6px;
}

.mo-muted {
  color: var(--mo-muted);
}

.mo-grid-cards,
.categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.mo-mini-card,
.categories-submenu-parent {
  border: 1px solid var(--mo-border);
  background: #f8fafc;
  padding: 18px;
}

.mo-mini-card h3,
.categories-submenu-parent h3 {
  margin: 0 0 10px;
  color: var(--mo-blue);
  font-size: 17px;
  line-height: 1.2;
}

.categories-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.categories-submenu-item {
  margin: 0;
  border-top: 1px solid #e5ebf4;
}

.categories-submenu-item a {
  display: block;
  padding: 9px 0;
  text-decoration: none;
  font-size: 14px;
}

.mo-category-offer,
.category-offer {
  display: grid;
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid #d9e2ef;
  background: linear-gradient(135deg, #f8fafc, #eef3f9);
}

.category-offer-img,
.mo-category-offer img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #dfe5ec;
}

.category-offer-price,
.mo-price-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  margin-right: 12px;
  background: #fff;
  border: 1px solid #d8e0ea;
  color: var(--mo-blue);
  font-weight: 900;
}

.mo-filter-shell,
.msearch2 {
  margin-top: 10px;
}

.mo-filter-block,
.filter-block {
  margin-bottom: 18px;
  padding: 16px;
  background: #f3f6fa;
  border: 1px solid #dfe6f0;
}

.mo-filters,
.filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 12px;
}

.mo-filters fieldset,
.filters fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.filter_title,
.mo-label {
  display: block;
  margin-bottom: 6px;
  color: #34445f;
  font-size: 13px;
  font-weight: 800;
}

.mo-filters select,
.filters select,
.mo-form input,
.mo-form textarea,
.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #ccd6e4;
  border-radius: 3px;
  background: #fff;
  color: var(--mo-text);
  padding: 10px 12px;
  font: inherit;
}

.mo-filters select:focus,
.filters select:focus,
.mo-form input:focus,
.mo-form textarea:focus,
.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(13, 62, 121, .18);
  border-color: var(--mo-blue-light);
}

.mo-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #dce4ef;
}

.products-table,
.mo-products-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}

.products-table th,
.products-table td,
.mo-products-table th,
.mo-products-table td {
  padding: 13px 12px;
  border-bottom: 1px solid #e3e9f2;
  vertical-align: middle;
}

.products-table th,
.mo-products-table th {
  background: var(--mo-blue);
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
}

.products-table tbody tr:nth-child(even),
.mo-products-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.products-table .center,
.mo-products-table .center {
  text-align: center;
}

.products-table a {
  font-weight: 700;
}

.products-table-th.mob {
  display: none;
}

.order-cart,
.mo-cart-btn {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 3px;
  background: var(--mo-accent);
  color: #fff;
  text-decoration: none;
  position: relative;
}

.order-cart::before,
.mo-cart-btn::before {
  content: "";
  width: 17px;
  height: 13px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: translateY(-1px);
}

.order-cart::after,
.mo-cart-btn::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  top: 8px;
  transform: skewX(-18deg);
}

.order-cart:hover,
.mo-cart-btn:hover {
  background: var(--mo-accent-hover);
  color: #fff;
}

.pagination {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pagination a,
.pagination span {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding-inline: 9px;
  border: 1px solid #d4deeb;
  text-decoration: none;
  font-weight: 800;
}

.pagination span,
.pagination a:hover {
  color: #fff;
  background: var(--mo-blue);
}

.mo-service-grid,
.service-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.mo-service-card,
.service-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--mo-border);
  background: #f8fafc;
}

.service-item a,
.mo-service-card h3 {
  margin: 0 0 6px;
  color: var(--mo-blue);
  text-decoration: none;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.service-item p,
.mo-service-card p {
  margin: 0;
  color: #2b3a55;
  font-size: 14px;
  line-height: 1.35;
}

.mo-service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mo-blue);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.mo-product-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  background: #f3f6fa;
  border: 1px solid #dfe6f0;
}

.mo-product-lead__price {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dce4ef;
}

.mo-product-lead__price strong {
  color: var(--mo-blue);
  font-size: 24px;
  line-height: 1.1;
}

.content-br,
.mo-note-block {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--mo-accent);
  background: #f8fafc;
}

.mo-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: stretch;
}

.mo-contact-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.mo-contact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #e2e8f2;
}

.mo-contact-row b {
  color: var(--mo-blue);
}

.mo-contact-card {
  padding: 20px;
  background: #f3f6fa;
  border: 1px solid #dfe6f0;
}

.mo-map-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 22px;
  color: #fff;
  text-align: center;
  background-image: linear-gradient(135deg, rgba(13, 62, 121, .95), rgba(8, 47, 98, .86)), url("../img/cat-sheets.jpg");
  background-size: cover;
  background-position: center;
}

.mo-doc-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mo-doc-list a {
  display: block;
  padding: 13px 16px;
  border: 1px solid #dfe6f0;
  background: #f8fafc;
  text-decoration: none;
  font-weight: 800;
}

.otk-person,
.mo-otk-person {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  margin: 20px 0;
  padding: 18px;
  background: #f3f6fa;
  border: 1px solid #dfe6f0;
}

.otk-person-img,
.mo-otk-person img {
  width: 150px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #dfe5ec;
}

.otk-person-info p {
  margin: 0 0 8px;
}

#calc {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #dce4ef;
  background: #fff;
}

#calc .calc_leftbar {
  background: var(--mo-blue);
  color: #fff;
  padding: 20px;
}

#calc .calc_body {
  padding: 24px;
  background: #f8fafc;
}

#calc .calc_length-mass {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

#calc .calc_mass-button,
#calc .calc_length-button,
#calc .calc_result-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #ccd6e4;
  color: var(--mo-blue);
  font-weight: 900;
  cursor: pointer;
}

#calc .active-ml,
#calc .calc_result-button {
  background: var(--mo-accent);
  border-color: var(--mo-accent);
  color: #fff;
}

#calc .calc_wrap {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 1fr);
  gap: 20px;
  align-items: start;
}

#calc .calc_img {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #dce4ef;
}

#calc .calc_rightbar {
  display: grid;
  gap: 12px;
}

#calc label {
  display: grid;
  gap: 6px;
}

#calc input,
#calc select {
  min-height: 42px;
  border: 1px solid #ccd6e4;
  border-radius: 3px;
  padding: 10px 12px;
  font: inherit;
}

#calc .calc_subtitle {
  font-weight: 900;
}

#calc .calc_result {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #dce4ef;
  color: var(--mo-blue);
  font-weight: 900;
}

.form,
.mo-modal-form {
  width: min(460px, calc(100vw - 30px));
  padding: 28px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}

.hidden {
  display: none;
}

.form form,
.mo-form {
  display: grid;
  gap: 12px;
}

.form-title {
  color: var(--mo-blue);
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.form textarea {
  min-height: 96px;
  resize: vertical;
}

.agree-label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  font-size: 13px;
  color: var(--mo-muted);
}

.agree-label input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
}

.form-btn {
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--mo-accent);
  color: #fff;
  text-transform: uppercase;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.form-btn:hover {
  background: var(--mo-accent-hover);
}

@media (max-width: 1045px) {
  .mo-container {
    width: min(var(--mo-container), calc(100% - 42px));
  }

  .mo-header__top {
    align-items: center;
  }

  .mo-logo__title {
    font-size: 24px;
  }

  .mo-logo__subtitle {
    font-size: 13px;
  }

  .mo-header__contacts {
    grid-template-columns: 1fr;
    text-align: right;
    gap: 3px;
  }

  .mo-city {
    grid-row: auto;
  }

  .mo-menu-toggle {
    display: inline-flex;
  }

  .mo-nav {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
  }

  .mo-nav.is-open {
    display: block;
  }

  .mo-nav__inner {
    width: 100%;
    min-height: auto;
    display: grid;
    padding-block: 8px;
  }

  .mo-nav a {
    min-height: 46px;
    justify-content: center;
    padding-inline: 20px;
  }

  .mo-nav a + a::before {
    display: none;
  }

  .mo-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .mo-hero__features {
    font-size: 15px;
  }

  .mo-benefits__grid {
    gap: 24px 28px;
  }

  .mo-process__list {
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .mo-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mo-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mo-process__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 42px;
  }

  .mo-process__list li:not(:last-child)::after {
    display: none;
  }

  .mo-footer__inner {
    grid-template-columns: 1fr;
  }

  .mo-footer__content,
  .mo-footer__nav {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 850px) {
  .mo-header__top {
    gap: 16px;
  }

  .mo-logo__subtitle br {
    display: none;
  }

  .mo-phone {
    font-size: 17px;
  }

  .mo-hero {
    min-height: 300px;
  }

  .mo-hero__inner {
    padding-block: 32px;
  }

  .mo-benefit {
    grid-template-columns: 48px 1fr;
  }

  .mo-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}

@media (max-width: 750px) {
  body {
    font-size: 15px;
  }

  .mo-header__top {
    align-items: flex-start;
  }

  .mo-header__contacts {
    display: none;
  }

  .mo-hero {
    background-image: linear-gradient(90deg, rgba(8, 15, 28, .93), rgba(8, 15, 28, .78)), url("../img/hero-steel.jpg");
  }

  .mo-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .mo-hero__features {
    justify-self: stretch;
    max-width: 520px;
  }

  .mo-card__title {
    font-size: 14px;
  }

  .mo-benefits h2,
  .mo-process h2,
  .mo-content h2 {
    font-size: 21px;
  }

  .mo-process__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mo-process__list li {
    min-height: auto;
    grid-template-columns: 46px 52px 1fr;
    grid-template-areas:
      "num icon title"
      "num icon text";
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid #dfe5ef;
  }

  .mo-process__list li:last-child {
    border-bottom: 0;
  }

  .mo-process__icon {
    font-size: 42px;
  }

  .mo-process h3 {
    margin: 0;
  }

  .mo-final-cta {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .mo-container {
    width: min(var(--mo-container), calc(100% - 28px));
  }

  .mo-header__top {
    padding-block: 13px;
  }

  .mo-logo__title {
    font-size: 19px;
  }

  .mo-logo__subtitle {
    font-size: 12px;
  }

  .mo-hero__inner {
    padding-block: 28px;
  }

  .mo-hero h1 {
    font-size: 27px;
    margin-bottom: 20px;
  }

  .mo-btn {
    width: 100%;
    min-height: 44px;
    padding-inline: 18px;
    text-align: center;
  }

  .mo-hero__actions {
    width: 100%;
  }

  .mo-hero__features {
    font-size: 14px;
  }

  .mo-catalog__grid,
  .mo-benefits__grid {
    grid-template-columns: 1fr;
  }

  .mo-section {
    padding-block: 22px;
  }

  .mo-card__text {
    min-height: auto;
  }

  .mo-benefit {
    grid-template-columns: 44px 1fr;
  }

  .mo-process__list li {
    grid-template-columns: 42px 44px 1fr;
  }

  .mo-process__num {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }

  .mo-process__icon {
    font-size: 36px;
  }

  .mo-content p {
    font-size: 14px;
  }

  .mo-final-cta {
    padding: 20px 18px;
    margin-bottom: 26px;
  }

  .mo-final-cta p {
    font-size: 16px;
  }

  .mo-footer {
    padding-block: 22px;
  }

  .mo-footer__brand,
  .mo-footer p {
    font-size: 14px;
  }
}

@media (max-width: 359px) {
  .mo-container {
    width: min(var(--mo-container), calc(100% - 20px));
  }

  .mo-logo__title {
    font-size: 17px;
  }

  .mo-logo__subtitle {
    display: none;
  }

  .mo-hero h1 {
    font-size: 24px;
  }

  .mo-card__title,
  .mo-card__text,
  .mo-benefit p,
  .mo-benefit ul,
  .mo-process p,
  .mo-content p {
    font-size: 13px;
  }

  .mo-benefits h2,
  .mo-process h2,
  .mo-content h2 {
    font-size: 19px;
  }
}

@media (max-height: 576px) and (orientation: landscape) {
  .mo-header__top {
    padding-block: 10px;
  }

  .mo-logo__subtitle {
    display: none;
  }

  .mo-nav.is-open {
    max-height: calc(100vh - 66px);
    overflow: auto;
  }

  .mo-hero {
    min-height: auto;
  }

  .mo-hero__inner {
    padding-block: 24px;
  }
}

@media (max-width: 1045px) {
  .mo-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 22px;
  }

  .mo-filters,
  .filters {
    grid-template-columns: repeat(3, minmax(145px, 1fr));
  }

  .mo-grid-cards,
  .categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .mo-layout,
  .mo-product-lead,
  .mo-contact-grid,
  .mo-category-offer,
  .category-offer {
    grid-template-columns: 1fr;
  }

  .mo-sidebar {
    order: 2;
  }

  .mo-service-grid,
  .service-items {
    grid-template-columns: 1fr;
  }

  #calc,
  #calc .calc_wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 750px) {
  .mo-subhero__inner {
    min-height: 140px;
    padding-block: 28px;
  }

  .mo-subhero h1,
  .mo-content h1,
  .mo-content--panel h1,
  .mo-page-heading {
    font-size: 28px;
  }

  .mo-content--panel {
    padding: 22px 18px;
  }

  .mo-filters,
  .filters {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .products-table,
  .mo-products-table {
    min-width: 720px;
  }

  .mo-contact-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .otk-person,
  .mo-otk-person {
    grid-template-columns: 110px 1fr;
  }

  .otk-person-img,
  .mo-otk-person img {
    width: 110px;
  }
}

@media (max-width: 576px) {
  .mo-inner {
    padding-block: 18px 30px;
  }

  .mo-subhero h1,
  .mo-content h1,
  .mo-content--panel h1,
  .mo-page-heading {
    font-size: 24px;
  }

  .mo-subhero p {
    font-size: 14px;
  }

  .mo-grid-cards,
  .categories,
  .mo-filters,
  .filters {
    grid-template-columns: 1fr;
  }

  .mo-category-offer,
  .category-offer {
    padding: 16px;
  }

  .mo-service-card,
  .service-item {
    grid-template-columns: 52px 1fr;
    padding: 15px;
  }

  .mo-service-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .otk-person,
  .mo-otk-person {
    grid-template-columns: 1fr;
  }

  .form,
  .mo-modal-form {
    padding: 22px 18px;
  }
}
