.faq {
  position: relative;
}
.faq .achtergrond-afbeelding {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
}
.faq .wrapper {
  z-index: 2;
}
.faq h2.title {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 60px;
  line-height: 76px;
  font-weight: 400;
  color: #485544;
  margin-bottom: 20px;
  font-family: Galatia;
}

.faq .faqs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.faq .faqs .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq .faqs .item .title {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 17px 16px 29px;
  background-color: #ffffff;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  font-size: 18px;
  line-height: 26px;
  color: #1d1d1d;
  cursor: pointer;
  font-family: OpenSans;
  font-weight: 600;
  text-align: left;
}

.faq .faqs .item .content {
  font-size: 16px;
  line-height: 32px;
  color: #676767;
  display: none;
}

@media screen and (max-width: 1180px) and (orientation: portrait),
  screen and (max-width: 1024px) {
  .faq .title {
    font-size: 36px;
    line-height: 54px;
  }

  .faq .faqs {
    gap: 10px;
  }

  .faq .faqs .item .title {
    padding: 22px 15px 22px 29px;
    font-size: 14px;
    line-height: 22px;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
  }
}
