/*import Google font - Poppins*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*font-family: "Poppins", sans-serif;*/
  /* scrollbar-width: none;  Firefox */
}

.hoofding-inhoud-slider i {
  height: 50px;
  width: 50px;
  background: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 1.25rem;
  transform: translateY(-50%);
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transition: transform 0.1s linear;
}

.hoofding-inhoud-slider i:active {
  transform: translateY(-50%) scale(0.85);
}

.hoofding-inhoud-slider i:first-child {
  left: 0;
}

.hoofding-inhoud-slider i:last-child {
  right: 0;
}

.hoofding-inhoud-slider .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 4px);
  gap: 7px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: 0;
  scroll-behavior: smooth;
}
 .carousel::-webkit-scrollbar {
  display: none;
}

.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}

.carousel :where(.card, .img) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel .card {
  scroll-snap-align: start;
  /*height: 342px;*/ 
  list-style: none;
  background: white;
  /*border-radius: 8px;*/
  /*display: flex;*/
  cursor: pointer;
  /*align-items: center;
  justify-content: center;*/
  flex-direction: column;
}
.card .img {
  /*background: #8B53FF;*/
  display: block;
  width: 100%;
  padding: 5px;
  /*height: 250px;*/
  /*border-radius: 50%;*/
}

.card .img img {
 /*max-width: 564px;*/
  /*height: 250px;*/
  display: block;
  width: 100%;
  object-fit: cover;
  /*border-radius: 50%;
  border: 4px solid #fff;*/
}

.carousel .card h2 {
  font-weight: 500;
  font-size: 1.56rem;
  margin: 30px 0 5px;
}

.carousel .card span {
  color: #6a6d78;
  font-size: 1.31rem;
}

@media screen and (max-width: 900px) {
  .hoofding-inhoud-slider .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .hoofding-inhoud-slider .carousel {
    grid-auto-columns: 100%;
  }

  .hoofding-inhoud-slider i {
    height: 30px;
    width: 30px;
    line-height: 30px;
    background: rgba(255, 255, 255, 0.8);
  }
}