.content-p {
  margin-top: 32px;
  line-height: 24px;
  letter-spacing: -0.176px;
}

.card_wrapper {
  flex-wrap: wrap;
  margin-top: 59px;
  gap: 15px;
}

.card {
  display: flex;
  padding: 30px 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 8px;
  background: var(--tertiary);
  width: 264px;
  height: 250px;
  border: none;
  z-index: 5;
  position: relative;
  transition: background-color 0.3s ease-in-out;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  top: var(--btn-top, 90%);
  left: var(--btn-left, 90%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}

.card h4,
.card p {
  transition: color 0.3s ease-in-out;
}

/* Hover */
.card:hover h4,
.card:hover p {
  color: var(--tertiary);
}

.card:hover::before {
  transform: translate(-50%, -50%) scale(8);
}

.card:hover {
  --btn-top: 90%;
  --btn-left: 90%;
}

.arrow_icon {
  display: flex;
  width: 38px;
  height: 38px;
  padding: 7px;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 19px;
  background: var(--primary);
  position: relative;
  z-index: 10;
}

.card_icon {
  width: 100%;
  gap: 10px;
}

/* over ons */

#over_ons .button-secondary {
  border: 1px solid var(--border-main);
  color: var(--quantity);
  background-color: transparent;
}

#over_ons .button-secondary img {
  width: 28px;
  height: 25px;
}
/*miauwemiauw*/
/* Duurzaamheid */
.duurzaamheidd_section {
  background-color: var(--secondary);
  padding-top: 120px;
  padding-bottom: 256px;
}
.duurzaamheidd_wrapper {
  justify-content: space-between;
  gap: 15px;
}

.text_area {
  width: 405px;
}

.text_area p {
  margin-top: 24px;
}

.duurzaamheid_card {
  gap: 16px;
}
.duurzaamheid_card .card {
  display: flex;
  width: 320px;
  height: 279px;
  padding: 30px 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.card_bottom {
  margin-top: 16px;
  width: 100%;
  display: flex;
  height: 177px;
  padding: 30px 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 8px;
  background: var(--tertiary);



  flex: 1 0 0;
  background: var(--tertiary);
  border: none;
  z-index: 5;
  position: relative;
  transition: background-color 0.3s ease-in-out;
  overflow: hidden;
}

.card_bottom:hover::before {
  transform: translate(-50%, -50%) scale(8);
}
.card_bottom::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary);
  border-radius: 50%;
  top: var(--btn-top, 90%);
  left: var(--btn-left, 90%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}

