.sitemap .sitemap-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0 100px;
}
.sitemap .sitemap-list-item-link {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
}
.sitemap .sitemap-list li {
  margin-bottom: 10px;
  font-size: 16px;
}
.sitemap .sitemap-list ul li {
  font-size: 15px;
}
.sitemap .sitemap-list:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .sitemap .sitemap-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .sitemap .sitemap-list {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .sitemap .sitemap-flex {
    padding: 28px 0 78px;
  }
  .sitemap .sitemap-list {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 30px;
  }
}