@charset "UTF-8";

:root {
  --mbt-ink: #102f3c;
  --mbt-muted: #5a6870;
  --mbt-teal: #075f73;
  --mbt-teal-dark: #062a34;
  --mbt-orange: #ef7b21;
  --mbt-line: #e3eaed;
}

html {
  scroll-padding-top: 96px;
}

body {
  padding-top: 78px;
}

.mbt-wrap {
  width: min(100% - 96px, 1536px);
  margin: 0 auto;
}

.mbt-site-header {
  height: 78px;
  background: #fff;
  border-bottom: 1px solid #edf2f4;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.mbt-header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 166px 1fr auto;
  align-items: center;
  gap: 28px;
}

.mbt-logo {
  width: 146px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.mbt-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mbt-nav {
  height: 78px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.mbt-nav-link {
  height: 78px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  color: #152f3a;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
  position: relative;
  transition: color .2s ease;
}

.mbt-nav-link:hover,
.mbt-nav-link.is-active {
  color: var(--mbt-teal);
}

.mbt-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  background: var(--mbt-teal);
}

.mbt-product-menu {
  position: relative;
}

.mbt-mega {
  position: absolute;
  top: 78px;
  left: 50%;
  width: max-content;
  max-width: min(1200px, calc(100vw - 64px));
  transform: translate(-50%, 8px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  background: #fff;
  border: 1px solid #e5ecef;
  box-shadow: 0 20px 34px rgba(9, 38, 48, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 130;
}

.mbt-product-menu:hover .mbt-mega,
.mbt-product-menu:focus-within .mbt-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mbt-mega-col {
  min-height: 184px;
  padding: 22px 22px 18px;
  border-right: 1px solid #e7eef0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}

.mbt-mega-col:last-child {
  border-right: 0;
}

.mbt-mega-title {
  margin: 0;
  color: var(--mbt-teal);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
}

.mbt-mega-list {
  display: grid;
  align-content: start;
  gap: 7px;
}

.mbt-mega-list a {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d424b;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.mbt-mega-list a::before {
  content: "›";
  color: #77878d;
  font-weight: 900;
}

.mbt-mega-list a:hover {
  color: var(--mbt-orange);
}

.mbt-mega-img {
  height: 72px;
  max-width: 146px;
  object-fit: contain;
  justify-self: end;
  align-self: end;
}

.mbt-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mbt-lang {
  color: #52646c;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.mbt-lang strong {
  color: var(--mbt-teal);
}

.mbt-mobile-lang {
  display: none;
  position: relative;
}

.mbt-mobile-lang summary {
  list-style: none;
}

.mbt-mobile-lang summary::-webkit-details-marker {
  display: none;
}

.mbt-menu-toggle {
  width: 42px;
  height: 38px;
  border: 1px solid #dce7eb;
  border-radius: 2px;
  background: #fff;
  color: var(--mbt-teal);
  display: none;
  place-items: center;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.mbt-menu-toggle:hover {
  border-color: var(--mbt-teal);
  background: #f4fafb;
}

.mbt-menu-toggle span {
  display: grid;
  place-items: center;
}

.mbt-close-icon {
  display: none !important;
}

.mbt-site-header.is-mobile-open .mbt-menu-icon {
  display: none !important;
}

.mbt-site-header.is-mobile-open .mbt-close-icon {
  display: grid !important;
}

.mbt-mobile-menu {
  display: none;
}

.mbt-site-footer {
  background: linear-gradient(180deg, #f7fbfc 0%, #edf5f7 100%);
  color: #40535b;
  border-top: 1px solid #dce8ec;
  padding: 40px 0 24px;
}

.mbt-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr .75fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.mbt-footer-logo {
  margin-bottom: 14px;
}

.mbt-footer-logo .mbt-logo {
  width: 136px;
  height: 56px;
}

.mbt-footer-logo .mbt-logo img {
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.mbt-site-footer h3 {
  margin: 0 0 16px;
  color: var(--mbt-teal);
  font-size: 17px;
  font-weight: 900;
}

.mbt-site-footer p,
.mbt-site-footer a,
.mbt-site-footer span {
  color: #40535b;
  line-height: 1.65;
  font-size: 15px;
  font-weight: 700;
}

.mbt-site-footer a:hover {
  color: var(--mbt-orange);
}

.mbt-site-footer a,
.mbt-site-footer span {
  display: block;
  margin-bottom: 8px;
}

.mbt-footer-contact a,
.mbt-footer-address {
  overflow-wrap: anywhere;
}

.mbt-footer-icons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.mbt-footer-icons span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(7, 95, 115, .28);
  color: var(--mbt-teal);
  display: grid;
  place-items: center;
  margin: 0;
}

.mbt-copy {
  margin: 22px 0 0;
  text-align: center;
  color: #6d7e85;
  font-size: 15px;
}

@media (max-width: 1180px) {
  .mbt-wrap {
    width: min(100% - 48px, 1536px);
  }

  .mbt-header-inner {
    grid-template-columns: 158px 1fr;
  }

  .mbt-nav {
    display: none;
  }

  .mbt-header-actions {
    justify-content: end;
    gap: 12px;
  }

  .mbt-menu-toggle {
    display: grid;
  }

  .mbt-mobile-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 0 solid #dfe9ec;
    box-shadow: 0 22px 36px rgba(8, 39, 50, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height .28s ease, opacity .2s ease, transform .2s ease;
  }

  .mbt-site-header.is-mobile-open .mbt-mobile-menu {
    max-height: calc(100vh - 78px);
    border-bottom-width: 1px;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mbt-mobile-panel {
    padding: 14px 0 20px;
    display: grid;
    gap: 0;
  }

  .mbt-mobile-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e6eef1;
    color: #17323d;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
  }

  .mbt-mobile-link:hover,
  .mbt-mobile-link.is-active {
    color: var(--mbt-teal);
  }

  .mbt-mobile-link.is-active {
    box-shadow: inset 3px 0 0 var(--mbt-teal);
    padding-left: 12px;
  }

  .mbt-mobile-product {
    border-bottom: 1px solid #e6eef1;
    padding-bottom: 14px;
  }

  .mbt-mobile-product .mbt-mobile-link {
    border-bottom: 0;
  }

  .mbt-mobile-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .mbt-mobile-product-col {
    min-height: 152px;
    padding: 14px;
    background: #f7fbfc;
    border: 1px solid #e0eaee;
  }

  .mbt-mobile-product-col h3 {
    margin: 0 0 9px;
    color: var(--mbt-teal);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
  }

  .mbt-mobile-product-col a {
    min-height: 28px;
    display: flex;
    align-items: center;
    color: #31464f;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
  }

  .mbt-mobile-product-col a:hover {
    color: var(--mbt-orange);
  }

  .mbt-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    padding-top: 70px;
  }

  .mbt-wrap {
    width: min(100% - 32px, 1536px);
  }

  .mbt-site-header,
  .mbt-nav-link {
    height: 70px;
  }

  .mbt-header-inner {
    grid-template-columns: 138px auto;
    gap: 14px;
  }

  .mbt-logo {
    width: 126px;
    height: 54px;
  }

  .mbt-lang {
    display: none;
  }

  .mbt-mobile-lang {
    display: block;
  }

  .mbt-mobile-lang summary {
    width: 76px;
    height: 40px;
    padding: 0 8px;
    border: 1px solid #dce7eb;
    border-radius: 2px;
    background: #fff;
    color: var(--mbt-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
  }

  .mbt-mobile-lang[open] summary {
    border-color: var(--mbt-teal);
    background: #f4fafb;
  }

  .mbt-mobile-lang-chevron {
    transition: transform .18s ease;
  }

  .mbt-mobile-lang[open] .mbt-mobile-lang-chevron {
    transform: rotate(180deg);
  }

  .mbt-mobile-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 20;
    width: 116px;
    padding: 5px;
    border: 1px solid #dce7eb;
    background: #fff;
    box-shadow: 0 12px 28px rgba(8, 39, 50, .16);
  }

  .mbt-mobile-lang-menu a {
    min-height: 38px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: #31464f;
    font-size: 14px;
    font-weight: 800;
  }

  .mbt-mobile-lang-menu a:hover,
  .mbt-mobile-lang-menu a.is-active {
    background: #eef7f8;
    color: var(--mbt-teal);
  }

  .mbt-header-actions {
    gap: 8px;
  }

  .mbt-menu-toggle {
    width: 40px;
  }

  .mbt-mobile-menu {
    top: 70px;
  }

  .mbt-site-header.is-mobile-open .mbt-mobile-menu {
    max-height: calc(100vh - 70px);
  }

  .mbt-mobile-panel {
    padding: 12px 0 18px;
  }

  .mbt-mobile-products {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mbt-mobile-product-col {
    min-height: 0;
    padding: 12px 14px;
  }

  .mbt-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 360px) {
  .mbt-header-inner {
    grid-template-columns: 116px auto;
    gap: 8px;
  }

  .mbt-logo {
    width: 108px;
  }

  .mbt-mobile-lang summary {
    width: 68px;
    padding: 0 5px;
    gap: 3px;
  }
}
