/* Text umbruch */
.content-text * {
     word-break: break-word !important;
}

/* Unterstrich Effekt */

.underline {
  position: relative;
}

.underline:after {
  content: '';
  position: absolute;
  width: 10%;
  border-top: solid 3px #3f83c1;
  left: 0;
  bottom: -10px;
  border-radius: 50%;
  height: 8px;
}
/* Text Schatten */
.schatten {
text-shadow: 2px 2px 5px rgba(0,0,0,.72),2px 2px 5px rgba(0,0,0,.72)!important;
}