.location-pills.rietlanden {
  display: none;
}
.location-pills.show {
  display: block;
}
.location-pills.hide {
  display: none;
}
.location-pills .nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 12px;
  margin-bottom: 72px;
}
.location-pills .nav .btn-custom {
  background-color: var(--theme-color);
  color: white;
}
.location-pills .nav .btn-custom.active {
  background-color: var(--theme-color);
}
.location-pills .nav .btn-custom:not(.active) {
  background-color: var(--theme-color);
  opacity: 0.5;
  color: color-mix(in srgb, var(--theme-color) 24%, black);
}
.location-pills .nav .btn-custom:hover {
  background-color: color-mix(in srgb, var(--theme-color) 80%, black);
}
.location-pills .nav .nav-link {
  border-radius: 20px;
}
.location-pills .content {
  text-align: center;
}
@media (min-width: 1200px) {
  .location-pills .content {
    text-align: left;
  }
}
.location-pills .content h2 {
  color: var(--theme-color);
}
.location-pills .content p {
  margin-bottom: 8px;
}
.location-pills .svg, .location-pills svg {
  position: absolute;
  width: 0;
  height: 0;
}
.location-pills .blob {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
@media (min-width: 1200px) {
  .location-pills .blob {
    display: unset;
    justify-content: unset;
    margin-bottom: unset;
  }
}
.location-pills .blob .blob-shape {
  -webkit-clip-path: var(--clip, url(#blob-shape-pills));
  background-color: #6d8d63;
  aspect-ratio: var(--aspect-ratio, 1/1);
  width: 320px;
}
@media (min-width: 1200px) {
  .location-pills .blob .blob-shape {
    width: 420px;
  }
}
.location-pills .blob .blob-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}