/* SITEMAP */
.sitemap-content .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sitemap-section {
  width: 100%;
  border-left: 2px solid #216196;
  padding-left: 20px;
  padding-top: 4px;
}
.sitemap-section h2 {
  margin: 0;
}
.sitemap-posts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.sitemap-posts a,
.sitemap-posts a:visited {
  color: #000000;
  margin: 3px 0;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: calc(25% - 15px);
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  padding: 3px 15px 3px 0;
  text-transform: lowercase;
}
.sitemap-section-title,
.sitemap-section-title:visited {
  color: #000;
  text-decoration: none;
  font-size: 34px;
  font-weight: bold;
  margin-top: 0;
  transition: 0.25s;
}
a.sitemap-section-title:hover {
  color: #216196;
  transition: 0.25s;
}
.sitemap-branch-cat {
  border-bottom: 1px solid #c4c4c4;
}
.sitemap-branch-cat-title a,
.sitemap-branch-cat-title a:visited {
  font-size: 20px;
  color: #216196;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .sitemap-posts a {
    width: calc(33% - 15px);
  }
}
@media (max-width: 768px) {
  .sitemap-posts a {
    width: calc(50% - 15px);
  }
}
@media (max-width: 480px) {
  .sitemap-posts a {
    width: calc(100% - 15px);
  }
}
