#page.sitemap {
  padding-top: 50px;
}
#page.sitemap .page-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 100px;
}
#page.sitemap .sitemap-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 120px;
}
#page.sitemap .sitemap-list {
  width: 30%;
  margin-bottom: 50px;
}
#page.sitemap .sitemap-list:nth-child(3n+2) {
  margin: 0 5% 50px;
}
#page.sitemap .sitemap-link {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 25px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#page.sitemap .sitemap-link::before {
  content: "";
  display: inline-block;
  background-color: #22ac38;
  vertical-align: middle;
  width: 15px;
  height: 1px;
  margin-right: 5px;
}
#page.sitemap .sitemap-child-list {
  margin-bottom: 10px;
}
#page.sitemap .sitemap-child-link {
  display: block;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #page.sitemap .page-title {
    font-size: 25px;
    margin-bottom: 50px;
  }
  #page.sitemap .sitemap-list {
    width: 100%;
    margin-bottom: 50px;
  }
  #page.sitemap .sitemap-list:nth-child(3n+2) {
    margin: 0 0% 50px;
  }
}
@media (hover: hover) {
  #page.sitemap .sitemap-link:hover {
    color: #22AC38;
  }
  #page.sitemap .sitemap-child-link:hover {
    color: #22AC38;
  }
}