:root {
  --mh-ink: #071a2f;
  --mh-navy: #07345b;
  --mh-blue: #4e9ee3;
  --mh-cyan: #19b4c7;
  --mh-muted: #5e6c79;
  --mh-line: #dce5ec;
  --mh-mist: #f4f7fa;
  --mh-white: #fff;
  --mh-shell: 1220px;
  --mh-radius: 16px;
  --mh-shadow: 0 20px 50px rgba(11, 35, 56, .09);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--mh-white);
  color: var(--mh-ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .mh-site-header.is-scrolled {
  top: 32px;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mh-shell {
  width: min(var(--mh-shell), calc(100% - 48px));
  margin-inline: auto;
}

.mh-site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 102px;
  transition: box-shadow .25s ease, background-color .25s ease, min-height .25s ease;
}

body:not(.home) .mh-site-header {
  position: relative;
  border-bottom: 1px solid rgba(8, 42, 72, .08);
  background: #fff;
}

.mh-site-header.is-scrolled {
  position: fixed;
  min-height: 78px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 9px 30px rgba(5, 28, 51, .08);
  backdrop-filter: blur(14px);
}

.mh-site-header__inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.mh-brand {
  display: inline-flex;
  width: 218px;
  max-width: 100%;
}

.mh-brand .custom-logo-link,
.mh-brand .custom-logo {
  display: block;
  width: 100%;
  height: auto;
}

.mh-primary-nav__list,
.mh-primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.45vw, 27px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.mh-primary-nav a {
  position: relative;
  padding: 12px 0;
  color: #10243a;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.mh-primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 6px;
  height: 1px;
  background: var(--mh-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.mh-primary-nav a:hover::after,
.mh-primary-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mh-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
}

.mh-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0d2239;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.mh-header-phone svg {
  width: 17px;
  height: 17px;
  color: #395e7f;
}

.mh-language {
  color: #2e526f;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.mh-language small {
  margin-left: 3px;
}

.mh-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--mh-line);
  border-radius: 50%;
  background: #fff;
  color: var(--mh-ink);
}

.mh-nav-toggle span:not(.screen-reader-text) {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.mh-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 22px;
  border: 1px solid var(--mh-navy);
  border-radius: 999px;
  background: var(--mh-navy);
  box-shadow: 0 12px 26px rgba(3, 47, 82, .14);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.mh-button:hover,
.mh-button:focus-visible {
  background: #0b4777;
  box-shadow: 0 16px 34px rgba(3, 47, 82, .21);
  transform: translateY(-2px);
}

.mh-button--small {
  min-height: 42px;
  gap: 15px;
  padding-inline: 19px;
  font-size: 11px;
}

.mh-button--light {
  border-color: rgba(7, 52, 91, .14);
  background: rgba(255, 255, 255, .85);
  box-shadow: none;
  color: var(--mh-ink);
  backdrop-filter: blur(8px);
}

.mh-button--light:hover,
.mh-button--light:focus-visible {
  background: #fff;
}

.mh-button--compact {
  min-height: 43px;
  padding-inline: 22px;
  font-size: 12px;
}

.mh-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .91) 28%, rgba(255, 255, 255, .28) 59%, rgba(255, 255, 255, .02) 100%), url("../images/hero-office.jpg");
  background-position: center, center;
  background-size: cover;
}

.mh-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.mh-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 188px;
}

.mh-eyebrow,
.mh-kicker {
  margin: 0 0 20px;
  color: #1f5f91;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.mh-hero h1 {
  max-width: 590px;
  margin: 0 0 24px;
  color: #06182a;
  font-size: clamp(58px, 5.1vw, 84px);
  font-weight: 300;
  letter-spacing: -.052em;
  line-height: .99;
  text-transform: uppercase;
}

.mh-hero__lead {
  margin: 0 0 31px;
  color: #263849;
  font-size: 14px;
  line-height: 1.62;
}

.mh-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mh-benefits-wrap {
  position: relative;
  z-index: 5;
  margin-top: -108px;
}

.mh-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 140px;
  overflow: hidden;
  border: 1px solid rgba(189, 204, 216, .74);
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--mh-shadow);
  backdrop-filter: blur(14px);
}

.mh-benefit {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-content: center;
  gap: 17px;
  padding: 26px 27px;
}

.mh-benefit + .mh-benefit {
  border-left: 1px solid rgba(205, 216, 225, .64);
}

.mh-line-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  color: #2f80d0;
}

.mh-benefit h2,
.mh-service-card h3,
.mh-solution-card h3 {
  margin: 0;
  color: var(--mh-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.mh-benefit p,
.mh-service-card p {
  margin: 10px 0 0;
  color: var(--mh-muted);
  font-size: 11px;
  line-height: 1.55;
}

.mh-section {
  position: relative;
  padding: 78px 0;
}

.mh-section-title {
  margin: 0 0 34px;
  color: var(--mh-ink);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.mh-needs {
  padding-top: 89px;
}

.mh-needs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.mh-image-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid #dde5eb;
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.82) 27%, rgba(255,255,255,.18) 58%, rgba(255,255,255,0) 100%), var(--mh-card-image) center/cover no-repeat;
  box-shadow: 0 14px 35px rgba(16, 39, 58, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.mh-image-card:hover {
  box-shadow: 0 20px 44px rgba(16, 39, 58, .12);
  transform: translateY(-4px);
}

.mh-image-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px 27px 23px;
}

.mh-image-card h3 {
  margin: 0 0 13px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.mh-image-card p {
  margin: 0;
  color: var(--mh-muted);
  font-size: 12px;
  line-height: 1.55;
}

.mh-image-card a,
.mh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  color: #0b416c;
  font-size: 12px;
  font-weight: 600;
}

.mh-image-card a span,
.mh-text-link span {
  font-size: 18px;
  transition: transform .2s ease;
}

.mh-image-card a:hover span,
.mh-text-link:hover span {
  transform: translateX(4px);
}

.mh-services {
  padding-top: 54px;
}

.mh-services__layout,
.mh-solutions__layout,
.mh-about__layout {
  display: grid;
  grid-template-columns: 29% minmax(0, 1fr);
  align-items: start;
  gap: 38px;
}

.mh-section-copy {
  padding: 14px 8px 0 18px;
}

.mh-section-copy h2 {
  margin: 0 0 22px;
  color: var(--mh-ink);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.12;
}

.mh-section-copy > p:not(.mh-kicker) {
  margin: 0 0 31px;
  color: var(--mh-muted);
  font-size: 13px;
  line-height: 1.65;
}

.mh-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #e4eaf0;
  border-radius: 17px;
  background: #fbfcfd;
}

.mh-service-card {
  min-height: 166px;
  padding: 27px 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.97), rgba(246,249,251,.95));
}

.mh-service-card:nth-child(2),
.mh-service-card:nth-child(3),
.mh-service-card:nth-child(5),
.mh-service-card:nth-child(6) {
  border-left: 1px solid #e7edf1;
}

.mh-service-card:nth-child(n+4) {
  border-top: 1px solid #e7edf1;
}

.mh-service-card .mh-line-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 15px;
}

.mh-solutions {
  padding-top: 46px;
}

.mh-solutions__layout {
  grid-template-columns: 24% minmax(0, 1fr);
}

.mh-solutions .mh-section-copy {
  min-height: 286px;
  display: flex;
  flex-direction: column;
}

.mh-solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 22px;
}

.mh-solution-card {
  min-width: 0;
}

.mh-solution-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(9, 34, 56, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.mh-solution-card:hover img {
  box-shadow: 0 14px 30px rgba(9, 34, 56, .16);
  transform: translateY(-3px);
}

.mh-solution-card h3 {
  margin-top: 10px;
  font-weight: 500;
}

.mh-about {
  padding-top: 55px;
}

.mh-about__layout {
  grid-template-columns: 27% minmax(0, 1fr);
}

.mh-about__visual {
  position: relative;
  min-width: 0;
}

.mh-about__visual > img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.mh-stats-card {
  position: absolute;
  inset: 24px 24px 24px auto;
  width: 248px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 22px 25px;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 11px;
  background: rgba(246, 249, 251, .87);
  box-shadow: 0 16px 40px rgba(7, 28, 45, .14);
  backdrop-filter: blur(12px);
}

.mh-stats-card > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 13px;
}

.mh-stats-card .mh-line-icon {
  width: 25px;
  height: 25px;
}

.mh-stats-card p {
  margin: 0;
  line-height: 1.25;
}

.mh-stats-card strong,
.mh-stats-card span {
  display: block;
}

.mh-stats-card strong {
  margin-bottom: 3px;
  font-size: 17px;
  font-weight: 600;
}

.mh-stats-card span {
  color: var(--mh-muted);
  font-size: 10px;
}

.mh-request {
  padding: 42px 0 82px;
}

.mh-request__panel {
  position: relative;
  min-height: 210px;
  display: grid;
  grid-template-columns: 45% 1fr;
  align-items: end;
  overflow: hidden;
  padding: 34px 34px 31px;
  border-radius: 12px;
  background-image: linear-gradient(90deg, rgba(7, 26, 47, .47), rgba(255, 255, 255, .1) 50%, rgba(255,255,255,.76)), url("../images/cta-building.jpg");
  background-position: center;
  background-size: cover;
}

.mh-request__copy {
  color: #fff;
}

.mh-request__copy h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.03em;
}

.mh-request__copy p {
  margin: 0 0 20px;
  font-size: 11px;
  line-height: 1.55;
}

.mh-request__features {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding-bottom: 12px;
}

.mh-request__features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #123451;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
}

.mh-request__features .mh-line-icon {
  width: 22px;
  height: 22px;
}

.mh-site-footer {
  padding: 66px 0 24px;
  background: #071a2f;
  color: rgba(255,255,255,.74);
}

.mh-site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr 1fr;
  gap: 60px;
}

.mh-site-footer__logo {
  width: 245px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
}

.mh-site-footer p,
.mh-site-footer a {
  font-size: 13px;
}

.mh-site-footer h2 {
  margin: 0 0 17px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.mh-site-footer__menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mh-site-footer__menu li + li {
  margin-top: 7px;
}

.mh-site-footer__grid > div:last-child a,
.mh-site-footer__grid > div:last-child p {
  display: block;
  margin: 0 0 8px;
}

.mh-site-footer a:hover {
  color: #fff;
}

.mh-site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding-top: 21px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
}

.mh-content {
  min-height: 55vh;
  padding-top: 70px;
  padding-bottom: 90px;
}

.mh-entry__header h1 {
  margin: 0 0 30px;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -.04em;
}

.mh-entry__content > * {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.mh-entry__content > .alignwide {
  max-width: 1200px;
}

.mh-entry__content > .alignfull {
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.mh-elementor-page,
.web-mh-elementor-full-width .mh-entry__content,
.web-mh-elementor-full-width .elementor {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.woocommerce .site-main,
.woocommerce-page .site-main {
  width: min(var(--mh-shell), calc(100% - 48px));
  margin-inline: auto;
  padding: 64px 0 90px;
}

@media (max-width: 1220px) {
  .mh-site-header__inner {
    grid-template-columns: 205px 1fr auto;
    gap: 18px;
  }

  .mh-brand {
    width: 198px;
  }

  .mh-header-phone span,
  .mh-language {
    display: none;
  }

  .mh-primary-nav__list,
  .mh-primary-nav ul {
    gap: 14px;
  }
}

@media (max-width: 1024px) {
  body.admin-bar .mh-site-header.is-scrolled {
    top: 32px;
  }

  .mh-site-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .mh-nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .mh-header-actions {
    order: 3;
  }

  .mh-header-phone,
  .mh-language {
    display: none;
  }

  .mh-primary-nav {
    position: absolute;
    inset: 84px 24px auto;
    display: none;
    padding: 20px;
    border: 1px solid var(--mh-line);
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--mh-shadow);
  }

  .mh-primary-nav.is-open {
    display: block;
  }

  .mh-primary-nav__list,
  .mh-primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .mh-primary-nav a {
    display: block;
    padding: 11px 8px;
    font-size: 14px;
  }

  .mh-hero {
    min-height: 680px;
    background-image: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.78) 55%, rgba(255,255,255,.16)), url("../images/hero-office.jpg");
  }

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

  .mh-benefit:nth-child(3),
  .mh-benefit:nth-child(4) {
    border-top: 1px solid rgba(205, 216, 225, .64);
  }

  .mh-benefit:nth-child(3) {
    border-left: 0;
  }

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

  .mh-image-card:last-child {
    grid-column: 1 / -1;
  }

  .mh-services__layout,
  .mh-solutions__layout,
  .mh-about__layout {
    grid-template-columns: 1fr;
  }

  .mh-section-copy {
    padding-left: 0;
  }

  .mh-solutions .mh-section-copy {
    min-height: auto;
  }

  .mh-solutions .mh-text-link,
  .mh-about .mh-text-link {
    margin-top: 0;
  }

  .mh-request__panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mh-request__features {
    justify-content: flex-start;
  }
}

@media (max-width: 782px) {
  body.admin-bar .mh-site-header.is-scrolled {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .mh-shell {
    width: min(100% - 30px, var(--mh-shell));
  }

  .mh-site-header,
  .mh-site-header.is-scrolled {
    min-height: 78px;
  }

  .mh-site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .mh-brand {
    width: 176px;
  }

  .mh-nav-toggle {
    order: 3;
  }

  .mh-header-actions {
    display: none;
  }

  .mh-primary-nav {
    top: 72px;
  }

  .mh-hero {
    min-height: 670px;
    background-position: 58% center;
  }

  .mh-hero__content {
    padding-top: 138px;
  }

  .mh-hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .mh-hero__lead br {
    display: none;
  }

  .mh-hero__lead {
    max-width: 520px;
    padding-right: 10px;
  }

  .mh-benefits-wrap {
    margin-top: -80px;
  }

  .mh-benefits {
    grid-template-columns: 1fr;
  }

  .mh-benefit + .mh-benefit,
  .mh-benefit:nth-child(3) {
    border-top: 1px solid rgba(205, 216, 225, .64);
    border-left: 0;
  }

  .mh-section {
    padding: 62px 0;
  }

  .mh-needs__grid,
  .mh-services__grid,
  .mh-solutions__grid {
    grid-template-columns: 1fr;
  }

  .mh-image-card:last-child {
    grid-column: auto;
  }

  .mh-services__grid {
    overflow: visible;
    border: 0;
    background: transparent;
    gap: 10px;
  }

  .mh-service-card,
  .mh-service-card:nth-child(n) {
    min-height: 145px;
    border: 1px solid #e7edf1;
    border-radius: 14px;
  }

  .mh-solutions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .mh-solution-card h3 {
    font-size: 12px;
  }

  .mh-about__visual > img {
    min-height: 430px;
  }

  .mh-stats-card {
    inset: auto 16px 16px;
    width: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .mh-request__panel {
    min-height: 360px;
    align-content: end;
    padding: 26px 22px;
    background-image: linear-gradient(0deg, rgba(7,26,47,.73), rgba(255,255,255,.05)), url("../images/cta-building.jpg");
  }

  .mh-request__features {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mh-request__features span {
    color: #fff;
  }

  .mh-site-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mh-site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .mh-hero__buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .mh-button {
    width: 100%;
  }

  .mh-stats-card {
    grid-template-columns: 1fr;
  }
}

/* Classic Elementor sections/columns ------------------------------------- */
.mh-elementor-page .mh-elementor-block .elementor-inner-section,
.mh-elementor-page .mh-elementor-block .elementor-inner-section > .elementor-container {
  width: 100%;
}

/*
 * The PHP fallback uses the same semantic class names directly on CSS Grid
 * wrappers. In classic Elementor those classes live one level higher, on an
 * inner section whose child `.elementor-container` owns the grid. Reset the
 * fallback layout here so Elementor's container can span the complete shell.
 */
.mh-elementor-page .mh-elementor-block .elementor-inner-section {
  display: block;
}

.mh-elementor-page .elementor-column.mh-benefit,
.mh-elementor-page .elementor-column.mh-section-copy,
.mh-elementor-page .elementor-column.mh-service-card,
.mh-elementor-page .elementor-column.mh-services__grid,
.mh-elementor-page .elementor-column.mh-solutions__grid,
.mh-elementor-page .elementor-column.mh-request__features {
  display: block;
  padding: 0;
}

.mh-elementor-page .elementor-column.mh-services__grid {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mh-elementor-page .elementor-column.mh-service-card {
  min-height: 0;
  background: transparent;
}

.mh-elementor-page .elementor-column.mh-solutions__grid {
  grid-template-columns: none;
  gap: 0;
}

.mh-elementor-page .mh-stats-card.elementor-section {
  display: block;
  align-content: normal;
  gap: 0;
}

.mh-elementor-page .mh-elementor-block .elementor-inner-section > .elementor-container {
  max-width: none;
}

.mh-elementor-page .mh-elc-section.elementor-section {
  width: 100%;
  padding: 78px 0;
}

.mh-elementor-page .elementor-section.mh-shell {
  width: min(var(--mh-shell), calc(100% - 48px));
  max-width: var(--mh-shell);
  margin-inline: auto;
}

.mh-elementor-page .elementor-section.mh-shell > .elementor-container {
  width: 100%;
  max-width: none;
}

.mh-elementor-page .mh-elc-full-column,
.mh-elementor-page .mh-elc-section-column,
.mh-elementor-page .mh-elc-hero-column {
  width: 100% !important;
}

.mh-elementor-page .mh-elc-full-column > .elementor-widget-wrap,
.mh-elementor-page .mh-elc-section-column > .elementor-widget-wrap {
  padding: 0;
}

.mh-elementor-page .mh-elc-hero.elementor-section {
  position: relative;
  min-height: 720px;
  overflow: visible;
}

.mh-elementor-page .mh-elc-hero > .elementor-container,
.mh-elementor-page .mh-elc-hero-column > .elementor-widget-wrap {
  width: 100%;
  max-width: none;
  min-height: 720px;
}

.mh-elementor-page .mh-elc-hero-column > .elementor-widget-wrap {
  position: relative;
  display: block;
  padding: 0;
}

.mh-elementor-page .mh-elc-hero-copy-row {
  position: relative;
  z-index: 2;
}

.mh-elementor-page .mh-hero__content {
  width: 100% !important;
}

.mh-elementor-page .mh-hero__content > .elementor-widget-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 188px 0 0;
}

.mh-elementor-page .mh-hero__buttons.elementor-section {
  width: auto;
  max-width: 100%;
}

.mh-elementor-page .mh-hero__buttons > .elementor-container {
  width: auto;
  max-width: none;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.mh-elementor-page .mh-elc-button-column {
  width: auto !important;
}

.mh-elementor-page .mh-elc-button-column > .elementor-widget-wrap {
  padding: 0;
}

.mh-elementor-page .mh-benefits.elementor-section {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 34px;
  left: 0;
  min-height: 140px;
  margin: 0 auto;
  overflow: hidden;
}

.mh-elementor-page .mh-benefits.elementor-section > .elementor-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 140px;
}

.mh-elementor-page .mh-benefit {
  width: 100% !important;
}

.mh-elementor-page .mh-benefit > .elementor-widget-wrap {
  min-height: 140px;
  display: flex;
  align-items: center;
  padding: 26px 27px;
}

.mh-elementor-page .mh-el-benefit-box .elementor-icon-box-wrapper {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
  text-align: left;
}

.mh-elementor-page .mh-el-benefit-box .elementor-icon-box-icon {
  margin: 0 !important;
}

.mh-elementor-page .mh-el-benefit-box .elementor-icon {
  color: #2f80d0;
  font-size: 27px;
}

.mh-elementor-page .mh-el-benefit-box .elementor-icon-box-title {
  margin: 0;
  color: var(--mh-ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.mh-elementor-page .mh-el-benefit-box .elementor-icon-box-description {
  margin-top: 10px;
  color: var(--mh-muted);
  font-family: Manrope, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.55;
}

.mh-elementor-page .mh-needs.elementor-section {
  padding-top: 89px;
}

.mh-elementor-page .mh-elc-section-column > .elementor-widget-wrap {
  display: flex;
  flex-direction: column;
}

.mh-elementor-page .mh-needs__grid > .elementor-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 21px;
}

.mh-elementor-page .mh-image-card {
  width: 100% !important;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid #dde5eb;
  border-radius: 17px;
  box-shadow: 0 14px 35px rgba(16, 39, 58, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.mh-elementor-page .mh-image-card:hover {
  box-shadow: 0 20px 44px rgba(16, 39, 58, .12);
  transform: translateY(-4px);
}

.mh-elementor-page .mh-image-card > .elementor-widget-wrap {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 27px 27px 23px;
  border-radius: inherit;
  background-position: center !important;
  background-size: cover !important;
}

.mh-elementor-page .mh-image-card > .elementor-widget-wrap::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.82) 27%, rgba(255,255,255,.18) 58%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.mh-elementor-page .mh-image-card > .elementor-widget-wrap > .elementor-element {
  position: relative;
  z-index: 1;
}

.mh-elementor-page .mh-services.elementor-section {
  padding-top: 54px;
}

.mh-elementor-page .mh-services__layout > .elementor-container,
.mh-elementor-page .mh-solutions__layout > .elementor-container,
.mh-elementor-page .mh-about__layout > .elementor-container {
  width: 100%;
  display: grid;
  grid-template-columns: 29% minmax(0, 1fr);
  align-items: start;
  gap: 38px;
}

.mh-elementor-page .mh-services__layout > .elementor-container > .elementor-column,
.mh-elementor-page .mh-solutions__layout > .elementor-container > .elementor-column,
.mh-elementor-page .mh-about__layout > .elementor-container > .elementor-column {
  width: 100% !important;
}

.mh-elementor-page .mh-section-copy > .elementor-widget-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 8px 0 18px;
}

.mh-elementor-page .mh-services__grid > .elementor-widget-wrap {
  overflow: hidden;
  padding: 0;
  border: 1px solid #e4eaf0;
  border-radius: 17px;
  background: #fbfcfd;
}

.mh-elementor-page .mh-services__grid-row > .elementor-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mh-elementor-page .mh-service-card {
  width: 100% !important;
}

.mh-elementor-page .mh-service-card > .elementor-widget-wrap {
  min-height: 166px;
  padding: 27px 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.97), rgba(246,249,251,.95));
}

.mh-elementor-page .mh-services__grid-row--bottom {
  border-top: 1px solid #e7edf1;
}

.mh-elementor-page .mh-service-card + .mh-service-card {
  border-left: 1px solid #e7edf1;
}

.mh-elementor-page .mh-el-service-box .elementor-icon-box-wrapper {
  display: block;
  text-align: left;
}

.mh-elementor-page .mh-el-service-box .elementor-icon-box-icon {
  margin: 0 0 15px !important;
}

.mh-elementor-page .mh-el-service-box .elementor-icon {
  color: #2f80d0;
  font-size: 30px;
}

.mh-elementor-page .mh-el-service-box .elementor-icon-box-title {
  margin: 0;
  color: var(--mh-ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.mh-elementor-page .mh-el-service-box .elementor-icon-box-description {
  margin-top: 10px;
  color: var(--mh-muted);
  font-family: Manrope, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.55;
}

.mh-elementor-page .mh-solutions.elementor-section {
  padding-top: 46px;
}

.mh-elementor-page .mh-solutions__layout > .elementor-container {
  grid-template-columns: 24% minmax(0, 1fr);
}

.mh-elementor-page .mh-solutions__grid > .elementor-widget-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.mh-elementor-page .mh-solutions__row > .elementor-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mh-elementor-page .mh-solution-card {
  width: 100% !important;
}

.mh-elementor-page .mh-solution-card > .elementor-widget-wrap {
  padding: 0;
}

.mh-elementor-page .mh-about.elementor-section {
  padding-top: 55px;
}

.mh-elementor-page .mh-about__layout > .elementor-container {
  grid-template-columns: 27% minmax(0, 1fr);
}

.mh-elementor-page .mh-about__visual > .elementor-widget-wrap {
  position: relative;
  padding: 0;
}

.mh-elementor-page .mh-stats-card.elementor-section {
  position: absolute;
  z-index: 2;
  inset: 24px 24px 24px auto;
  width: 248px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 11px;
  background: rgba(246, 249, 251, .87);
  box-shadow: 0 16px 40px rgba(7, 28, 45, .14);
  backdrop-filter: blur(12px);
}

.mh-elementor-page .mh-stats-card > .elementor-container {
  height: 100%;
}

.mh-elementor-page .mh-elc-stats-column {
  width: 100% !important;
}

.mh-elementor-page .mh-elc-stats-column > .elementor-widget-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 22px 25px;
}

.mh-elementor-page .mh-el-stat-box .elementor-icon-box-wrapper {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  text-align: left;
}

.mh-elementor-page .mh-el-stat-box .elementor-icon-box-icon {
  margin: 0 !important;
}

.mh-elementor-page .mh-el-stat-box .elementor-icon {
  color: #2f80d0;
  font-size: 24px;
}

.mh-elementor-page .mh-el-stat-box .elementor-icon-box-title {
  margin: 0;
  color: var(--mh-ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.mh-elementor-page .mh-el-stat-box .elementor-icon-box-description {
  margin-top: 3px;
  color: var(--mh-muted);
  font-family: Manrope, Arial, sans-serif;
  font-size: 10px;
  line-height: 1.25;
}

.mh-elementor-page .mh-request.elementor-section {
  padding: 42px 0 82px;
}

.mh-elementor-page .mh-request__panel.elementor-section {
  min-height: 210px;
  overflow: hidden;
  padding: 0;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
}

.mh-elementor-page .mh-request__panel.elementor-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 47, .47), rgba(255, 255, 255, .1) 50%, rgba(255,255,255,.76));
  pointer-events: none;
}

.mh-elementor-page .mh-request__panel > .elementor-container {
  position: relative;
  z-index: 1;
  min-height: 210px;
  display: grid;
  grid-template-columns: 45% minmax(0, 1fr);
  align-items: end;
  padding: 34px 34px 31px;
}

.mh-elementor-page .mh-request__panel > .elementor-container > .elementor-column {
  width: 100% !important;
}

.mh-elementor-page .mh-request__copy > .elementor-widget-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}

.mh-elementor-page .mh-request__features > .elementor-widget-wrap {
  padding: 0 0 12px;
}

.mh-elementor-page .mh-elc-request-features-row > .elementor-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 28px;
}

.mh-elementor-page .mh-el-request-feature {
  width: 100% !important;
}

.mh-elementor-page .mh-el-request-feature > .elementor-widget-wrap {
  padding: 0;
}

.mh-elementor-page .mh-el-request-feature-box .elementor-icon-box-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.mh-elementor-page .mh-el-request-feature-box .elementor-icon-box-icon {
  margin: 0 !important;
}

.mh-elementor-page .mh-el-request-feature-box .elementor-icon {
  color: #2f80d0;
  font-size: 21px;
}

.mh-elementor-page .mh-el-request-feature-box .elementor-icon-box-title {
  margin: 0;
  color: #123451;
  font-family: Manrope, Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .mh-elementor-page .mh-benefits.elementor-section > .elementor-container,
  .mh-elementor-page .mh-needs__grid > .elementor-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mh-elementor-page .mh-benefits.elementor-section {
    position: relative;
    bottom: auto;
    margin-top: -108px;
  }

  .mh-elementor-page .mh-elc-hero > .elementor-container,
  .mh-elementor-page .mh-elc-hero-column > .elementor-widget-wrap {
    min-height: auto;
  }

  .mh-elementor-page .mh-services__layout > .elementor-container,
  .mh-elementor-page .mh-solutions__layout > .elementor-container,
  .mh-elementor-page .mh-about__layout > .elementor-container {
    grid-template-columns: 1fr;
  }

  .mh-elementor-page .mh-section-copy > .elementor-widget-wrap {
    padding-left: 0;
  }

  .mh-elementor-page .mh-request__panel > .elementor-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .mh-elementor-page .elementor-section.mh-shell {
    width: min(100% - 30px, var(--mh-shell));
  }

  .mh-elementor-page .mh-elc-hero.elementor-section,
  .mh-elementor-page .mh-elc-hero > .elementor-container,
  .mh-elementor-page .mh-elc-hero-column > .elementor-widget-wrap {
    min-height: 670px;
  }

  .mh-elementor-page .mh-hero__content > .elementor-widget-wrap {
    padding-top: 138px;
  }

  .mh-elementor-page .mh-benefits.elementor-section {
    position: relative;
    margin-top: -80px;
  }

  .mh-elementor-page .mh-benefits.elementor-section > .elementor-container,
  .mh-elementor-page .mh-needs__grid > .elementor-container,
  .mh-elementor-page .mh-services__grid-row > .elementor-container {
    grid-template-columns: 1fr;
  }

  .mh-elementor-page .mh-elc-section.elementor-section {
    padding: 62px 0;
  }

  .mh-elementor-page .mh-services__grid > .elementor-widget-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .mh-elementor-page .mh-services__grid-row {
    border: 0;
  }

  .mh-elementor-page .mh-service-card,
  .mh-elementor-page .mh-service-card + .mh-service-card {
    margin-bottom: 10px;
    border: 1px solid #e7edf1;
    border-radius: 14px;
  }

  .mh-elementor-page .mh-solutions__row > .elementor-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .mh-elementor-page .mh-stats-card.elementor-section {
    inset: auto 16px 16px;
    width: auto;
  }

  .mh-elementor-page .mh-request__panel.elementor-section,
  .mh-elementor-page .mh-request__panel > .elementor-container {
    min-height: 360px;
  }

  .mh-elementor-page .mh-request__panel.elementor-section::before {
    background: linear-gradient(0deg, rgba(7,26,47,.73), rgba(255,255,255,.05));
  }

  .mh-elementor-page .mh-request__panel > .elementor-container {
    align-content: end;
    padding: 26px 22px;
  }

  .mh-elementor-page .mh-elc-request-features-row > .elementor-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mh-elementor-page .mh-el-request-feature-box .elementor-icon-box-title {
    color: #fff;
  }
}

@media (max-width: 430px) {
  .mh-elementor-page .mh-hero__buttons > .elementor-container {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .mh-elementor-page .mh-elc-button-column,
  .mh-elementor-page .mh-elc-button-column .elementor-button {
    width: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Native Elementor homepage ------------------------------------------------ */
.mh-elementor-page .elementor {
  --widgets-spacing: 0px;
}

.mh-elementor-page .elementor-widget,
.mh-elementor-page .elementor-widget p,
.mh-elementor-page .elementor-widget h1,
.mh-elementor-page .elementor-widget h2,
.mh-elementor-page .elementor-widget h3 {
  margin-block: 0;
}

.mh-elementor-page .mh-elementor-block.e-con,
.mh-elementor-page .mh-elementor-block .e-con {
  gap: 0;
}

.mh-elementor-page .mh-elementor-block.e-con {
  width: 100%;
  max-width: none;
  padding: 0;
}

.mh-elementor-page .mh-shell.e-con {
  width: min(var(--mh-shell), calc(100% - 48px));
  max-width: var(--mh-shell);
  margin-inline: auto;
}

.mh-elementor-page .mh-hero.e-con {
  width: 100%;
  max-width: none;
  min-height: 720px;
  padding: 0;
}

.mh-elementor-page .mh-hero__content.e-con {
  min-height: 720px;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 188px;
}

.mh-elementor-page .mh-el-eyebrow {
  margin-bottom: 20px;
}

.mh-elementor-page .mh-el-eyebrow p,
.mh-elementor-page .mh-el-kicker p {
  color: #1f5f91;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mh-elementor-page .mh-el-hero-title {
  margin-bottom: 24px;
}

.mh-elementor-page .mh-el-hero-title .elementor-heading-title {
  max-width: 590px;
  color: #06182a;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(58px, 5.1vw, 84px);
  font-weight: 300;
  letter-spacing: -.052em;
  line-height: .99;
  text-transform: uppercase;
}

.mh-elementor-page .mh-el-hero-lead {
  margin-bottom: 31px;
}

.mh-elementor-page .mh-el-hero-lead p {
  color: #263849;
  font-size: 14px;
  line-height: 1.62;
}

.mh-elementor-page .mh-hero__buttons.e-con {
  --display: flex;
  width: auto;
  flex-flow: row wrap;
  align-items: center;
  gap: 12px;
}

.mh-elementor-page .mh-el-button.elementor-widget-button {
  width: auto;
  max-width: max-content;
}

.mh-elementor-page .mh-el-button .elementor-button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--mh-navy);
  border-radius: 999px;
  background: var(--mh-navy);
  box-shadow: 0 12px 28px rgba(7, 52, 91, .18);
  color: #fff;
  font-family: Manrope, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.mh-elementor-page .mh-el-button--light .elementor-button {
  border-color: #cbd8e2;
  background: rgba(255, 255, 255, .76);
  box-shadow: none;
  color: #21384b;
  backdrop-filter: blur(10px);
}

.mh-elementor-page .mh-el-button--compact .elementor-button {
  min-height: 43px;
  padding-inline: 22px;
  font-size: 12px;
}

.mh-elementor-page .mh-el-button .elementor-button:hover,
.mh-elementor-page .mh-el-button .elementor-button:focus-visible {
  border-color: #0a4779;
  background: #0a4779;
  color: #fff;
  transform: translateY(-2px);
}

.mh-elementor-page .mh-benefits-wrap.e-con {
  position: relative;
  z-index: 5;
  margin-top: -108px;
}

.mh-elementor-page .mh-benefits.e-con {
  --display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 140px;
  overflow: hidden;
}

.mh-elementor-page .mh-benefit.e-con {
  --display: grid !important;
  grid-template-columns: 30px minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: 17px;
}

.mh-elementor-page .mh-el-icon.elementor-widget-icon {
  width: 30px;
}

.mh-elementor-page .mh-el-icon .elementor-icon {
  display: block;
  color: #2f80d0;
  font-size: 27px;
  line-height: 1;
}

.mh-elementor-page .mh-el-icon .elementor-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mh-elementor-page .mh-el-benefit-copy.e-con {
  align-items: flex-start;
}

.mh-elementor-page .mh-el-benefit-title .elementor-heading-title,
.mh-elementor-page .mh-el-service-title .elementor-heading-title,
.mh-elementor-page .mh-el-solution-title .elementor-heading-title {
  color: var(--mh-ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.mh-elementor-page .mh-el-benefit-text {
  margin-top: 10px;
}

.mh-elementor-page .mh-el-benefit-text p,
.mh-elementor-page .mh-el-service-text p {
  color: var(--mh-muted);
  font-size: 11px;
  line-height: 1.55;
}

.mh-elementor-page .mh-section.e-con {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 78px 0;
}

.mh-elementor-page .mh-needs.e-con {
  padding-top: 89px;
}

.mh-elementor-page .mh-el-section-inner.e-con {
  align-items: stretch;
}

.mh-elementor-page .mh-section-title {
  margin-bottom: 29px;
  text-align: center;
}

.mh-elementor-page .mh-section-title .elementor-heading-title {
  color: var(--mh-ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(29px, 3.1vw, 42px);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: 1.1;
  text-transform: uppercase;
}

.mh-elementor-page .mh-needs__grid.e-con {
  --display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 21px;
}

.mh-elementor-page .mh-image-card.e-con {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid #dde5eb;
  border-radius: 17px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 35px rgba(16, 39, 58, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.mh-elementor-page .mh-image-card.e-con::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.82) 27%, rgba(255,255,255,.18) 58%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.mh-elementor-page .mh-image-card.e-con:hover {
  box-shadow: 0 20px 44px rgba(16, 39, 58, .12);
  transform: translateY(-4px);
}

.mh-elementor-page .mh-image-card__content.e-con {
  position: absolute;
  z-index: 1;
  inset: 0;
  align-items: flex-start;
  padding: 27px 27px 23px;
}

.mh-elementor-page .mh-el-card-title {
  margin-bottom: 13px;
}

.mh-elementor-page .mh-el-card-title .elementor-heading-title {
  color: var(--mh-ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.mh-elementor-page .mh-el-card-text p {
  color: var(--mh-muted);
  font-size: 12px;
  line-height: 1.55;
}

.mh-elementor-page .mh-el-card-link.elementor-widget-button {
  width: auto;
  max-width: max-content;
  margin-top: auto;
}

.mh-elementor-page .mh-el-card-link .elementor-button,
.mh-elementor-page .mh-el-text-link .elementor-button {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #0b416c;
  font-family: Manrope, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.mh-elementor-page .mh-services.e-con {
  padding-top: 54px;
}

.mh-elementor-page .mh-services__layout.e-con,
.mh-elementor-page .mh-solutions__layout.e-con,
.mh-elementor-page .mh-about__layout.e-con {
  --display: grid !important;
  grid-template-columns: 29% minmax(0, 1fr);
  align-items: start;
  gap: 38px;
}

.mh-elementor-page .mh-section-copy.e-con {
  align-items: flex-start;
  padding: 14px 8px 0 18px;
}

.mh-elementor-page .mh-el-kicker {
  margin-bottom: 20px;
}

.mh-elementor-page .mh-el-section-heading {
  margin-bottom: 22px;
}

.mh-elementor-page .mh-el-section-heading .elementor-heading-title {
  color: var(--mh-ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.12;
}

.mh-elementor-page .mh-el-section-text {
  margin-bottom: 31px;
}

.mh-elementor-page .mh-el-section-text p {
  color: var(--mh-muted);
  font-size: 13px;
  line-height: 1.65;
}

.mh-elementor-page .mh-services__grid.e-con {
  --display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.mh-elementor-page .mh-service-card.e-con {
  min-height: 166px;
  align-items: flex-start;
}

.mh-elementor-page .mh-service-card .mh-el-icon {
  margin-bottom: 15px;
}

.mh-elementor-page .mh-el-service-text {
  margin-top: 10px;
}

.mh-elementor-page .mh-solutions.e-con {
  padding-top: 46px;
}

.mh-elementor-page .mh-solutions__layout.e-con {
  grid-template-columns: 24% minmax(0, 1fr);
}

.mh-elementor-page .mh-solutions .mh-section-copy.e-con {
  min-height: 286px;
}

.mh-elementor-page .mh-el-text-link.elementor-widget-button {
  width: auto;
  max-width: max-content;
  margin-top: auto;
}

.mh-elementor-page .mh-solutions__grid.e-con {
  --display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 22px;
}

.mh-elementor-page .mh-solution-card.e-con {
  min-width: 0;
  align-items: stretch;
}

.mh-elementor-page .mh-el-solution-image img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(9, 34, 56, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.mh-elementor-page .mh-solution-card:hover .mh-el-solution-image img {
  box-shadow: 0 14px 30px rgba(9, 34, 56, .16);
  transform: translateY(-3px);
}

.mh-elementor-page .mh-el-solution-title {
  margin-top: 10px;
}

.mh-elementor-page .mh-el-solution-title .elementor-heading-title {
  font-weight: 500;
}

.mh-elementor-page .mh-about.e-con {
  padding-top: 55px;
}

.mh-elementor-page .mh-about__layout.e-con {
  grid-template-columns: 27% minmax(0, 1fr);
}

.mh-elementor-page .mh-about__visual.e-con {
  position: relative;
  min-width: 0;
}

.mh-elementor-page .mh-el-about-image img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.mh-elementor-page .mh-stats-card.e-con {
  --display: grid !important;
  position: absolute;
  inset: 24px 24px 24px auto;
  width: 248px;
  align-content: center;
  gap: 16px;
}

.mh-elementor-page .mh-el-stat.e-con {
  --display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
}

.mh-elementor-page .mh-el-stat-copy.e-con {
  align-items: flex-start;
}

.mh-elementor-page .mh-el-stat-value .elementor-heading-title {
  color: var(--mh-ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.mh-elementor-page .mh-el-stat-label {
  margin-top: 3px;
}

.mh-elementor-page .mh-el-stat-label p {
  color: var(--mh-muted);
  font-size: 10px;
  line-height: 1.25;
}

.mh-elementor-page .mh-request.e-con {
  padding: 42px 0 82px;
}

.mh-elementor-page .mh-request__panel.e-con {
  --display: grid !important;
  grid-template-columns: 45% minmax(0, 1fr);
  align-items: end;
  min-height: 210px;
  overflow: hidden;
  padding: 34px 34px 31px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
}

.mh-elementor-page .mh-request__panel.e-con::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 47, .47), rgba(255, 255, 255, .1) 50%, rgba(255,255,255,.76));
  pointer-events: none;
}

.mh-elementor-page .mh-request__copy.e-con,
.mh-elementor-page .mh-request__features.e-con {
  position: relative;
  z-index: 1;
}

.mh-elementor-page .mh-request__copy.e-con {
  align-items: flex-start;
  color: #fff;
}

.mh-elementor-page .mh-el-request-title {
  margin-bottom: 12px;
}

.mh-elementor-page .mh-el-request-title .elementor-heading-title {
  color: #fff;
  font-family: Manrope, Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.mh-elementor-page .mh-el-request-text {
  margin-bottom: 20px;
}

.mh-elementor-page .mh-el-request-text p {
  color: #fff;
  font-size: 11px;
  line-height: 1.55;
}

.mh-elementor-page .mh-request__features.e-con {
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding-bottom: 12px;
}

.mh-elementor-page .mh-el-request-feature.e-con {
  flex-flow: row nowrap;
  width: auto;
  align-items: center;
  gap: 8px;
}

.mh-elementor-page .mh-el-request-feature .mh-el-icon {
  width: 22px;
}

.mh-elementor-page .mh-el-request-feature .mh-el-icon .elementor-icon {
  font-size: 22px;
}

.mh-elementor-page .mh-el-request-feature-text p {
  color: #123451;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .mh-elementor-page .mh-hero.e-con,
  .mh-elementor-page .mh-hero__content.e-con {
    min-height: 680px;
  }

  .mh-elementor-page .mh-benefits.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mh-elementor-page .mh-needs__grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mh-elementor-page .mh-image-card:last-child {
    grid-column: 1 / -1;
  }

  .mh-elementor-page .mh-services__layout.e-con,
  .mh-elementor-page .mh-solutions__layout.e-con,
  .mh-elementor-page .mh-about__layout.e-con {
    grid-template-columns: 1fr;
  }

  .mh-elementor-page .mh-section-copy.e-con {
    padding-left: 0;
  }

  .mh-elementor-page .mh-solutions .mh-section-copy.e-con {
    min-height: auto;
  }

  .mh-elementor-page .mh-el-text-link.elementor-widget-button {
    margin-top: 0;
  }

  .mh-elementor-page .mh-request__panel.e-con {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mh-elementor-page .mh-request__features.e-con {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .mh-elementor-page .mh-shell.e-con {
    width: min(100% - 30px, var(--mh-shell));
  }

  .mh-elementor-page .mh-hero.e-con {
    min-height: 670px;
    background-position: 58% center;
  }

  .mh-elementor-page .mh-hero__content.e-con {
    min-height: 670px;
    padding-top: 138px;
  }

  .mh-elementor-page .mh-el-hero-title .elementor-heading-title {
    font-size: clamp(48px, 15vw, 66px);
  }

  .mh-elementor-page .mh-el-hero-lead br {
    display: none;
  }

  .mh-elementor-page .mh-benefits-wrap.e-con {
    margin-top: -80px;
  }

  .mh-elementor-page .mh-benefits.e-con,
  .mh-elementor-page .mh-needs__grid.e-con,
  .mh-elementor-page .mh-services__grid.e-con {
    grid-template-columns: 1fr;
  }

  .mh-elementor-page .mh-section.e-con {
    padding: 62px 0;
  }

  .mh-elementor-page .mh-image-card:last-child {
    grid-column: auto;
  }

  .mh-elementor-page .mh-services__grid.e-con {
    overflow: visible;
    border: 0;
    background: transparent;
    gap: 10px;
  }

  .mh-elementor-page .mh-service-card.e-con,
  .mh-elementor-page .mh-service-card:nth-child(n) {
    min-height: 145px;
    border: 1px solid #e7edf1;
    border-radius: 14px;
  }

  .mh-elementor-page .mh-solutions__grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .mh-elementor-page .mh-el-solution-title .elementor-heading-title {
    font-size: 12px;
  }

  .mh-elementor-page .mh-el-about-image img {
    min-height: 430px;
  }

  .mh-elementor-page .mh-stats-card.e-con {
    inset: auto 16px 16px;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mh-elementor-page .mh-request__panel.e-con {
    min-height: 360px;
    align-content: end;
    padding: 26px 22px;
  }

  .mh-elementor-page .mh-request__panel.e-con::before {
    background: linear-gradient(0deg, rgba(7,26,47,.73), rgba(255,255,255,.05));
  }

  .mh-elementor-page .mh-request__features.e-con {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mh-elementor-page .mh-el-request-feature-text p {
    color: #fff;
  }
}

@media (max-width: 430px) {
  .mh-elementor-page .mh-hero__buttons.e-con {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .mh-elementor-page .mh-el-button.elementor-widget-button,
  .mh-elementor-page .mh-el-button .elementor-button {
    width: 100%;
    max-width: none;
  }

  .mh-elementor-page .mh-stats-card.e-con {
    grid-template-columns: 1fr;
  }
}
