#sitemap {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#sitemap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sitemap li {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', verdana, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
#sitemap li a {
  text-decoration: underline;
  color: #666666;
}
#sitemap li a:hover {
  color: #333333;
}
#sitemap li img {
  display: inline-block;
  border: none;
  width: 32px;
  height: 32px;
}
#sitemap ul:last-of-type li {
  text-align: right;
}
#copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: 'Open Sans', verdana, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
@media (max-width: 480px) { /* MINIMAAL */
  #sitemap {
    position: relative;
    display: block;
    padding-top: 10px;
  }
  #sitemap ul {
    margin-bottom: 10px;
  }
  #sitemap ul:nth-last-of-type(2) {
    margin-bottom: 0px;
  }
  #sitemap ul:last-of-type {
    position: absolute;
    top: 10px;
    right: 0;
    margin: 0;
  }
  #copyright {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) { /* MOBIEL */
  #sitemap {
    position: relative;
    display: block;
    padding-top: 20px;
  }
  #sitemap ul {
    margin-bottom: 20px;
  }
  #sitemap ul:nth-last-of-type(2) {
    margin-bottom: 0px;
  }
  #sitemap ul:last-of-type {
    position: absolute;
    top: 20px;
    right: 0;
    margin: 0;
  }
  #copyright {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1280px) { /* BREDER */
}
@media (min-width: 1281px) { /* BREEDST */
}