h2 {
  font-family: chloe;
  font-size: clamp(2.1rem, 7vw, 3rem);
}
span {
  color: #dbb383;
}
.main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../images/krijtbordhero.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 30px 0px;
  height: 50vh;
  width: 100%;
  font-size: 25px;
  font-family: chloe;
  line-height: 0.2;
}
.hero p {
  color: white;
  font-family: crayon;
  font-size: clamp(0.3rem, 5vw, 2.2rem);
  animation: mist ease-in 3s;
}
.krijtkoe {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: end;
  width: 100%;
  overflow: hidden;
  margin-top: -245px;
  z-index: 1;
}
.krijtkoe img {
  width: 500px;
}
.hero-img img {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  width: 90%;
  overflow: hidden;
}
.producten {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
}
.producten div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40%;
}
.boerderijwinkel {
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-sizing: border-box; */
  max-width: 100%;
  max-height: auto;
  gap: 15px;
  padding: 3rem 25rem;
  overflow: hidden;
}
.boerderijwinkel div {
  /* background-color: #ebe8e5;
    /* background-color: #e8e3dd; */
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;  */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 30%;
  height: 100%;
  font-family: crayon;
  font-size: 1.8rem;
  /* gap: 15px; */
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.boerderijwinkel div p {
  color: #dbb383;
  font-weight: 700;
  margin-top: 50px;
  padding: 12px 20px;
}
.boerderijwinkel div img {
  max-width: 100%;
  max-height: auto;
  /* width: 14rem; */
  margin-bottom: -50px;
  /* background-color: rgb(252, 249, 244); */
}
@media (max-width: 1380px) {
  .boerderijwinkel {
    padding: 5rem 6rem;
  }
}
@media (max-width: 37.5rem) {
  .hero {
    margin-top: -70px;
  }
  .krijtkoe {
    margin-top: -149px;
  }
  .krijtkoe img {
    width: 300px;
  }
  .producten div {
    width: 90%;
  }
  .boerderijwinkel {
    padding: 5rem 3.5rem;
    gap: 1px;
  }
}

@keyframes mist {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(1px);
    opacity: 1;
  }
}
