* {
  box-sizing: border-box;
}
body {
  margin: 0;
  overflow-x: hidden;
  user-select: none;
  font-family: 'HelveticaNeueCyr', sans-serif;
  background: #f0f0f0;
  min-height: 100%;
  line-height: 1.5;
  @media (min-width:1800px) { font-size: 16px; }
  @media (min-width:1200px) and (max-width:1800px) { font-size: 15px; }
  @media (min-width:960px) and (max-width:1200px) { font-size: 15px; }
  @media (min-width:640px) and (max-width:960px) { font-size: 15px; }
  @media (min-width:480px) and (max-width:640px) { font-size: 14px; }
  @media (max-width:480px) { font-size: 14px; }
}

.sitemap__wrapper {
  width: min(72em, 100%);
  margin: auto;
  padding: 5%;
  background: #fff;
}

h1 {
  margin-bottom: 1em;
  font-size: 1.75em;
  font-weight: bold;
}

h1 ~ * {
  display: flex;
  flex-wrap: wrap;
}

h1 ~ * > div {
  flex: 1 0;
  min-width: 22em;
  margin-bottom: 2.5em;
}

h2 {
  flex-basis: 100%;
  margin-bottom: 1em;
  padding-bottom: 10px;
  font-size: 1.35em;
  font-weight: bold;
  border-bottom: 1px solid #0008;
}

h3 {
  margin-bottom: .5em;
  font-size: 1.15em;
  font-weight: bold;
}

a {
  display: block;
  padding-bottom: 10px;
  text-decoration: none;
  color: #06c;
}
a:hover {
  text-decoration: underline;
}