.sitemap {
  padding: 3rem 0;
  color: #47ee40;
  background-color: #f6f7f9;
}
.sitemap .siterow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sitemap .item-wrapper {
  box-sizing: border-box;
}
.sitemap .sitemap-item {
  background-color: #f9f9f9;
  padding: 10px;
  border: 1px solid #ddd;
  height: auto;
}
.sitemap h1,
.sitemap h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1b9541;
  line-height: 1.75em;
  font-family: var(--main-font, "Filson Pro");
  cursor: default;
}
.sitemap .sitemap-item {
  background: rgba(226, 223, 223, 0.1019607843);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: 350ms;
}
.sitemap .sitemap-item .list-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #004135;
  line-height: 1.75em;
  font-family: var(--main-font, "Filson Pro");
  cursor: default;
}
.sitemap .sitemap-item p {
  text-align: center;
  color: #797878;
}
.sitemap .sitemap-item ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.sitemap .sitemap-item ul li {
  margin-left: 10px;
}
.sitemap .sitemap-item ul li a {
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none !important;
  color: #797878 !important;
}

@media (max-width: 768px) {
  .sitemap .siterow {
    grid-template-columns: repeat(1, 1fr);
  }
}
