@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://img1.wsimg.com/gfonts/s/cinzel/v26/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnfY3lDQ.woff2") format("woff2");
}

:root {
  --brand-green: #006400;
  --heading-color: rgb(27, 27, 27);
  --body-color: rgb(94, 94, 94);
  --muted-color: rgb(89, 89, 89);
  --content-width: 1112px;
  --body-font: "Quicksand", sans-serif;
  --display-font: "Cinzel", Georgia, serif;
}

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

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  color: #000;
  background: #fff;
  font-family: var(--body-font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  padding: 8px 14px;
  color: #fff;
  background: var(--brand-green);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.mission-section,
.expertise-section,
.services-section {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
}

.mission-section {
  padding: 0 24px;
}

.mission-panel {
  min-height: 312px;
  padding: 56px 0;
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, .42), rgba(0, 0, 0, .42)),
    url("020.webp") center / cover no-repeat;
}

.mission-content {
  width: 66.6667%;
  margin-left: 16.6667%;
  padding: 0 24px;
  text-align: center;
}

.mission-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  fill: currentColor;
}

.mission-content h1 {
  margin: 0;
  padding: 0 0 8px;
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}

.expertise-section,
.services-section {
  padding: 56px 24px;
}

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

.expertise-card img {
  width: 100%;
  height: auto;
  margin: 0 0 24px;
}

.expertise-card h2 {
  margin: 0 0 24px;
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.card-description p {
  margin: 0;
  color: var(--body-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.services-content {
  width: 66.6667%;
  margin-left: 16.6667%;
  padding: 0 8px;
}

.services-content h2 {
  margin: 0 0 40px;
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.service-links {
  display: grid;
  gap: 16px;
}

.service-links a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  color: #fff;
  background: var(--brand-green);
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  transition: filter .2s ease, transform .2s ease;
}

.service-links a:hover,
.service-links a:focus-visible {
  filter: brightness(.88);
}

.service-links a:active {
  transform: translateY(1px);
}

.site-footer {
  min-height: 164.796875px;
  padding: 56px 24px;
  background: #fff;
}

.footer-container {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.copyright {
  margin: 0;
  color: var(--muted-color);
  font-size: 16px;
  line-height: 1.8;
}

.powered-by {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--muted-color);
  font-size: 16px;
  line-height: 1.8;
}

.powered-by span {
  margin: 0 0 4px;
}

.powered-by img {
  width: 131px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .mission-section,
  .expertise-section,
  .services-section {
    width: 100%;
  }

  .mission-section {
    padding: 0 24px;
  }

  .mission-panel {
    min-height: 405px;
    padding: 40px 0;
  }

  .mission-content {
    width: 100%;
    margin-left: 0;
    padding: 0 24px;
  }

  .mission-content h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .expertise-section,
  .services-section {
    padding: 40px 24px;
  }

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

  .services-content {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .services-content h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .site-footer {
    min-height: 214.390625px;
    padding: 40px 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .powered-by {
    align-items: center;
  }

  .powered-by span {
    margin: 24px 0 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
