/* =================================
Sitemap
================================= */
.grid-sitemap {
  width: 100%;
  margin-top: 10px;
}
  .grid-sitemap ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .grid-sitemap li {
    margin: 0 0 5px;
    padding: 0;
  }
  .grid-sitemap a {
    position: relative;
    text-decoration: none;
  }
  .grid-sitemap a::before {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    vertical-align: -1px;
    border: solid 1px #000000;
  }
  .grid-sitemap a:hover::before {
    opacity: 0.8;
    background: #006c9f;
  }

@media screen and (min-width: 751px) {
  .grid-sitemap {
    -js-display: -webkit-flex;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
    .grid-sitemap ul {
      width: 30%;
    }
}
