/* =========================
   BILD + TEXT BEREICH
   ========================= */

.image-text-section {
  padding: 100px 20px;
  background: #fbfbfb;
}


.image-text-section__container {
  max-width: 900px;
  margin: 0 auto;
}


/* Bild */

.image-text-section__image {
  width: 100%;
}

.image-text-section__image img {
  display: block;
  width: 100%;
  height: auto;
}


/* Text */

.image-text-section__content {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
}


.image-text-section__content h2 {
  margin: 0 0 20px;

  font-size: var(--font-size-h2);
  line-height: var(--line-height-heading);
  font-weight: 700;

  color: #242422;
}


.image-text-section__content p {
  margin: 0;

  font-size: var(--font-size-body);
  line-height: var(--line-height-body);

  color: #4a4a49;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

  .image-text-section {
    padding: 60px 20px;
  }

  .image-text-section__content {
    margin-top: 28px;
  }

}