.main-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  background-color: var(--bg-color);
  color: var(--text-color);
  border-bottom: 1px solid rgba(36, 88, 42, 0.15);
}
.main-header .main-header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 14px 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  position: relative;
}
.main-header .main-header-logo-wrap {
  justify-self: start;
  position: relative;
  z-index: 1250;
}
.main-header .main-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 1251;
}
.main-header .main-header-logo .main-header-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.main-header .main-header-nav {
  justify-self: center;
}
.main-header .main-header-menu-toggle {
  display: none;
}
.main-header .main-header-menu-button {
  display: none;
}
.main-header .main-header-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.main-header .main-header-nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}
.main-header .main-header-nav-link:hover {
  opacity: 0.7;
}
.main-header .main-header-nav-link.is-active {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.main-header .main-header-spacer {
  justify-self: end;
}

.main-footer {
  background-color: var(--bg-color);
  color: var(--text-color);
}
.main-footer .main-footer-inner {
  padding: 70px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.main-footer .main-footer-brand {
  display: block;
  text-decoration: none;
}
.main-footer .main-footer-brand .main-footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.main-footer .main-footer-contact {
  margin-top: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 300;
}
.main-footer .main-footer-right {
  justify-self: end;
  width: 100%;
  max-width: 520px;
}
.main-footer .main-footer-title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 400;
}
.main-footer .main-footer-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.main-footer .main-footer-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.25;
}
.main-footer .main-footer-links {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.main-footer .main-footer-links a {
  color: var(--text-color);
  font-size: 1rem;
  text-decoration: none;
}
.main-footer .main-footer-copy {
  margin-top: 26px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 300;
}
.main-footer .main-footer-copy a {
  color: var(--text-color);
}

@media (max-width: 998px) {
  .main-header .main-header-inner {
    grid-template-columns: 1fr auto;
    padding: 12px 10px;
    gap: 12px;
  }
  .main-header .main-header-logo {
    font-size: 16px;
  }
  .main-header .main-header-nav {
    justify-self: end;
  }
  .main-header .main-header-nav-list {
    gap: 16px;
    justify-content: flex-end;
  }
  .main-header .main-header-spacer {
    display: none;
  }
  .main-header .main-header-nav-link {
    font-size: 15px;
  }
  .main-footer .main-footer-inner {
    padding: 54px 24px;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .main-footer .main-footer-contact,
  .main-footer .main-footer-links {
    margin-top: 32px;
  }
  .main-footer .main-footer-right {
    justify-self: start;
    max-width: 620px;
  }
}
@media (max-width: 768px) {
  .main-header .main-header-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }
  .main-header .main-header-logo-wrap {
    justify-self: start;
  }
  .main-header .main-header-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    position: relative;
    z-index: 1250;
  }
  .main-header .main-header-nav {
    display: block;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background-color: var(--bg-color);
    border: none;
    border-radius: 0;
    padding: calc(var(--header-height) + 20px) 16px 24px;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1240;
  }
  .main-header .main-header-menu-toggle:checked ~ .main-header-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-header .main-header-nav-list {
    width: 100%;
    min-height: calc(100dvh - var(--header-height) - 44px);
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
  }
  .main-header .main-header-nav-link {
    font-size: 1rem;
  }
  .main-footer .main-footer-inner {
    padding: 40px 16px;
    gap: 24px;
  }
  .main-footer .main-footer-contact {
    margin-top: 18px;
    font-size: 0.95rem;
  }
  .main-footer .main-footer-title {
    font-size: 1.4rem;
  }
  .main-footer .main-footer-nav a {
    font-size: 1rem;
  }
  .main-footer .main-footer-links {
    margin-top: 28px;
  }
  .main-footer .main-footer-copy {
    margin-top: 16px;
    font-size: 0.92rem;
  }
}/*# sourceMappingURL=global.css.map */