.content-width {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-content {
  font-size: clamp(1.05rem, 1.1vw, 1.35rem);
  line-height: 1.65;
}

.text-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 3rem 0 -0.5rem;
  font-weight: 400;
}

.text-content h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin: 3rem 0 -1rem;
  font-weight: 400;
}
.content-width {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 6rem;
  padding-right: 6rem;
}
@media (max-width: 768px) {
  .content-width {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/*===============================================================
                        Text normal                              
=================================================================*/
/*.text-content {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.65;
  color: #666;
}*/

/*===============================================================
                        Text mit weissem Hintergrung und
                        abgerundeten Ecken und Schatten                              
=================================================================*/

.text-content {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.65;
  color: #666;
  background-color: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-radius: 3rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  max-width: calc(100% - 12rem);
  margin: 0 auto;
}

/* Tablet */
@media (max-width: 980px) {
  .text-content {
    max-width: calc(100% - 6rem);
  }
}

/* Smartphone */
@media (max-width: 767px) {
  .text-content {
    max-width: calc(100% - 2rem);
  }
}