/* No show Brand Navi */
.page-id-1168 header nav {display: none;}
.page-id-1168 header {display: none;}



/* Form als Grid */
.wpcf7 form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Felder, die über die volle Breite gehen */
.wpcf7 form label:nth-child(5),
.wpcf7 form label:nth-child(6),
.wpcf7 form label:nth-child(7),
.wpcf7 form label:nth-child(8) {
  grid-column: 1 / -1;
}

/* Submit-Button anpassen */
.wpcf7 form p:last-of-type {
    grid-column: 1 / -1;
    text-align: center;
}

.wpcf7 form .wpcf7-submit {
    text-wrap: nowrap;
}


/* Mobil: alles einspaltig */
@media (max-width: 768px) {
  .wpcf7 form {
    grid-template-columns: 1fr;
  }
}

/* Formulare  */
@media only screen and (min-width : 240px) {
   .wpcf7-textarea,
   .wpcf7-text {
     max-width: 100%;
     padding: 10px 1px !important;
   }
}


/* Texttrennungen */

body {
	hyphens: auto;
}

/*--- ANCOR LINKS ---*/

.sprung {
  visibility: hidden;
  height: 0px !important;
  position: absolute;
  margin: 1px;
}

/* img round */

.img-round {
  -webkit-box-shadow: 2px 2px 5px 0px #e77a24;
  box-shadow: 2px 2px 5px 0px #143f74;
  -webkit-transition: all 0s ease;
  -moz-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
}