.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 50vw;
}
@media (max-width: 750px) {
  .contact-form {
    max-width: 100vw;
    padding: 12px;
  }
}

textarea:focus,
input:focus {
  outline: none;
}

.input-con {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  flex-direction: "column";
  background-color: transparent;
  flex-grow: 1;
  width: 100%;
  color: #9756c7;
  margin-bottom: 10px;
}
.input-con img {
  flex-grow: 1;
  width: 100%;
  padding: 5px;
}

.floating-label {
  color: #4d0383;
  position: absolute;
  background-color: transparent;
  padding: 0px;
  font-size: 14px;
  top: 50%;
  left: 10px;
  transform: translate(0%, -50%);
  pointer-events: none;
}

.floating-label-edit {
  position: absolute;
  background-color: transparent;
  padding: 0px;
  font-size: 14px;
  top: 50%;
  left: 10px;
  transform: translate(0%, -50%);
  pointer-events: none;
}

.input-field {
  position: relative;
  font-family: "Gudea", sans-serif;
  font-size: 14px;
  color: white;
  background-color: rgba(8, 114, 169, 0.6196078431);
  width: 100%;
  padding: 20px 6px 7px;
  border: none;
  flex-grow: 1;
}
.input-field:focus ~ .floating-label, .input-field:not(:focus):valid ~ .floating-label {
  top: 10px;
  left: 8px;
  font-size: 13px;
  transition: 0.2s;
}
.input-field:focus ~ .floating-label-edit, .input-field:not(:focus):valid ~ .floating-label-edit {
  top: 10px;
  left: 8px;
  font-size: 13px;
  transition: 0.2s;
}

.textArea {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: "column";
  background-color: transparent;
  font-family: "Gudea", sans-serif;
  font-size: 14px;
  color: white;
  background-color: rgba(8, 114, 169, 0.6196078431);
  width: 100%;
  padding: 20px 6px 7px;
  border: none;
  background-color: rgba(8, 114, 169, 0.6196078431);
  color: white;
  font-size: 15px;
  position: relative;
  flex-grow: 1;
  width: 100%;
  padding: 20px 6px 7px;
  min-height: 200px;
  outline: 0px none transparent;
  border-style: none;
  border-bottom: 2px solid #9756c7;
  border-radius: 4px;
}
.textArea:focus ~ .floating-label, .textArea:not(:focus):valid ~ .floating-label {
  top: 10px;
  left: 8px;
  font-size: 13px;
  transition: 0.2s;
}

#responses {
  display: none;
  min-width: 600px;
}
#responses img {
  width: 244px;
  min-height: unset;
}

#success_message,
#error_message {
  border-radius: 3px;
  position: relative;
  text-align: center;
  background: #2e2e2e;
  color: white;
  padding: 20px;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px white solid;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.label-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  /* Style the checkmark/indicator */
  /* Hide the browser's default checkbox */
}
.label-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.label-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Show the checkmark when checked */
.label-container input:checked ~ .checkmark:after {
  display: block;
}

/* When the checkbox is checked, add a blue background */
.label-container input:checked ~ .checkmark {
  background-color: #9756c7;
}

.label-container:hover input ~ .checkmark {
  background-color: #5596b9;
}

/* Style the checkmark/indicator */
.label-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.map-responsive {
  margin: auto;
  min-width: 100%;
}

iframe {
  width: 100%;
  height: 400px;
}

.select-wrapper {
  position: relative;
  font-size: 14px;
  background-color: rgba(8, 114, 169, 0.6196078431);
  width: 100%;
  padding: 20px 6px 7px;
  border: none;
  color: white;
  padding: 17px 6px 7px;
  width: 100%;
  height: 40px;
}
.select-wrapper:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 15px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgb(255, 255, 255);
  clear: both;
}
.select-wrapper ul {
  display: none;
  position: absolute;
  top: 40px;
  flex-direction: column;
  background: #9756c7;
  width: 90%;
  padding: 15px;
  box-shadow: 2px 2px 11px #202020;
}
.select-wrapper li {
  cursor: pointer;
  list-style-type: none;
  padding: 10px;
  margin: 0;
  color: white;
}
.select-wrapper li:hover {
  background-color: #4d0383;
  color: white;
}

.tooltip-contact {
  display: none;
  inline-size: -moz-min-content;
  inline-size: min-content;
  color: #9756c7;
  position: absolute;
  text-align: center;
  box-shadow: 2px -1px 5px #686868;
  z-index: 1000;
  position: absolute;
  font-size: 15px;
  border-top: none;
  left: 42px;
  bottom: -100%;
  text-align: left;
}
.tooltip-contact .block {
  background: white;
  border-radius: 4px;
  padding: 9px;
  width: 250px;
}
.tooltip-contact .block {
  width: 100%;
  min-width: 200px;
}
.tooltip-contact .dreieck {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  left: 14%;
  top: -9px;
  transform: translate(-50%);
}

#termin-info {
  display: none;
}
@media (max-width: 750px) {
  #termin-info {
    display: flex;
  }
}

/*cookie*/
.cookie-background {
  display: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1999;
  background-color: rgba(255, 255, 255, 0.719);
}

#cookie {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  background-color: #9756c7;
  position: absolute;
  z-index: 2000;
  opacity: 1;
  transform: translate(0px, 0px);
  padding: 30px;
  margin: auto;
  max-width: 5500px;
  color: rgb(255, 255, 255);
  left: 50%;
  top: -100%;
  transform: translate(-50%);
  width: 100%;
}
#cookie a {
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

/**************************************************
            IMPRESSUM
****************************************************/
.bottom-con .container-impress {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: "column";
  background-color: transparent;
  background-color: #6634ab;
  color: white;
  font-size: 14px;
  gap: 20px;
  padding: 10px 30px 10px;
}
.bottom-con .container-impress a {
  color: white;
  text-decoration: none;
}

.legal {
  background-color: #e2c7f7;
}
.legal .home-button {
  color: white;
  cursor: pointer;
  background: #7524b3;
  top: 0px;
  padding: 10px;
  text-align: center;
  width: 100%;
  max-width: 1500px;
}
.legal .container-legal {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  color: #122439;
  padding: 180px 100px 160px;
  text-align: left;
  max-width: 1000px;
  max-width: 90%;
  margin: 30px auto 30px;
  background-color: #f9f1ff;
  box-shadow: 0px 2px 7px rgb(140, 83, 203);
  /* margin-top: 40px; */
  border-radius: 10px;
}
@media (max-width: 600px) {
  .legal .container-legal {
    padding: 60px 20px 60px;
    margin: 0px auto 0px;
    max-width: 100%;
    border-radius: 0px;
  }
}
.legal .container-legal .text {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #4d0383;
}
@media (max-width: 600px) {
  .legal .container-legal .text {
    font-size: 14px;
  }
}
.legal .container-legal .head {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #4d0383;
  margin: 20px 0px 6px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .legal .container-legal .head {
    font-size: 16px;
  }
}
.legal .container-legal a {
  border-bottom: 0.5px solid #4d0383;
  padding: 0px 0px 0px;
}

* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/opensans/OpenSans-Regular.ttf");
}
@font-face {
  font-family: "dancing";
  src: url("fonts/dancing/DancingScript-Medium.ttf");
}
@font-face {
  font-family: "Playfair", serif;
  src: url("fonts/playfair/playfair-regular.ttf");
}
@font-face {
  font-family: "Noto";
  src: url("fonts/Noto/NotoSerif.ttf");
}
@font-face {
  font-family: "GreatVibes";
  src: url("fonts/greatVibes/GreatVibes-Regular.ttf");
}
.img-icon {
  width: 30px;
  height: 30px;
  background-color: #9756c7;
  padding: 1px 0px 1px;
  border-radius: 50%;
}

html {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #173f3d;
  max-width: 1500px;
  margin: auto;
  background-color: white;
}

a {
  color: #9756c7;
  padding: 0px 10px 0px;
}

.a-underline {
  color: #9756c7;
  padding: 0px 10px 0px;
  border-bottom: 1px solid #9756c7;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 36px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  color: rgb(255, 255, 255);
  text-rendering: optimizeLegibility;
  background: #9756c7;
  /* Support for IE. */
  font-feature-settings: "liga";
  padding: 15px;
  border-radius: 4px;
}

.material-icons.md-16 {
  background-color: #2ca9bb;
  padding: 5px;
  font-size: 16px;
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
  background-color: #274e74;
  padding: 5px;
  font-size: 16px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

.material-icons.pointer {
  cursor: pointer;
}

.icon-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
  color: #6634ab;
}
.icon-text .text {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 450px) {
  .icon-text .text {
    font-size: 14px;
  }
}
.icon-text img {
  height: 30px;
}
@media (max-width: 400px) {
  .icon-text img {
    height: 30px;
  }
}

/* Next & previous buttons */
.prev,
.next {
  z-index: 11;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 48px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: #5596b9;
}

.close-btn {
  z-index: 1000;
  position: absolute;
  cursor: pointer;
  top: 15px;
  right: 15px;
}

.disable-scroll {
  overflow: hidden;
}

#content-main {
  background-color: white;
  max-width: 5500px;
  margin: auto;
}

#center {
  display: flex;
  flex-direction: column;
  max-width: 5500px;
  margin: auto;
  background-color: white;
  overflow: hidden;
}

.fliess-standard {
  color: #6634ab;
  font-size: 19px;
  text-shadow: none;
  text-align: left;
  line-height: 34px;
  text-align: left;
}
@media (max-width: 600px) {
  .fliess-standard {
    font-size: 15px;
    line-height: 25px;
  }
}

.table-right {
  text-align: left;
}
.table-right td {
  padding: 0px 0px 0px;
}

a {
  text-decoration: none;
}

.button-standard {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  margin: auto;
  cursor: pointer;
  background-color: #9756c7;
  color: white;
  padding: 10px 15px 10px;
  min-width: 200px;
  max-width: 100%;
  max-width: 200px;
  border: 1px transparent solid;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
}
.button-standard:hover {
  background-color: #4d0383;
  color: white;
}
@media (max-width: 600px) {
  .button-standard {
    font-size: 14px;
    max-width: 100%;
    padding: 10px 9px 10px;
    min-width: 100px;
  }
}

.button-outline {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  margin: auto;
  cursor: pointer;
  background-color: white;
  color: white;
  padding: 10px 15px 10px;
  min-width: 200px;
  max-width: 100%;
  max-width: 200px;
  border: 1px transparent solid;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
  background: transparent;
  border: 1px solid white;
  padding: 9px 14px 9px;
}
.button-outline:hover {
  background-color: #4d0383;
  color: white;
}
@media (max-width: 600px) {
  .button-outline {
    font-size: 14px;
    max-width: 100%;
    padding: 10px 9px 10px;
    min-width: 100px;
  }
}

.button-standard-bright {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  margin: auto;
  cursor: pointer;
  background-color: #4d0383;
  color: white;
  padding: 10px 15px 10px;
  min-width: 200px;
  max-width: 100%;
  max-width: 200px;
  border: 1px transparent solid;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
}
.button-standard-bright:hover {
  background-color: #4d0383;
  color: white;
}
@media (max-width: 600px) {
  .button-standard-bright {
    font-size: 14px;
    max-width: 100%;
    padding: 10px 9px 10px;
    min-width: 100px;
  }
}

.button-image {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  margin: auto;
  cursor: pointer;
  background-color: #4d0383;
  color: #9756c7;
  padding: 10px 15px 10px;
  min-width: 200px;
  max-width: 100%;
  max-width: 200px;
  border: 1px transparent solid;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
  min-width: unset;
  padding: 6px;
  border-radius: 2px;
}
.button-image:hover {
  background-color: #4d0383;
  color: white;
}
@media (max-width: 600px) {
  .button-image {
    font-size: 14px;
    max-width: 100%;
    padding: 10px 9px 10px;
    min-width: 100px;
  }
}
@media (max-width: 600px) {
  .button-image {
    max-width: 60px;
    min-width: 50px;
  }
}
.button-image img {
  height: 20px !important;
  max-width: 30px;
  transition: all 0.5s;
}

.rotate180 {
  transform: rotate(180deg);
}

.two-buttons-row {
  display: flex;
  margin-top: 25px;
  gap: 20px;
}
@media (max-width: 440px) {
  .two-buttons-row {
    flex-direction: column;
  }
}

.con-inMiddle-pic {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  background: linear-gradient(to bottom, #9756c7 0%, #5596b9 100%);
  flex-direction: row;
  justify-content: center;
  justify-content: space-between;
  padding: 0px 0px 0px;
}
@media (max-width: 600px) {
  .con-inMiddle-pic {
    padding: 0px;
  }
}
.con-inMiddle-pic .container-two-horizont {
  display: flex;
  flex-direction: row;
  gap: 34px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 900px;
  height: 332px;
}
.con-inMiddle-pic .middle {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 600px;
  gap: 20px;
  width: 100%;
  padding: 30px;
}
@media (max-width: 600px) {
  .con-inMiddle-pic .middle {
    min-width: 100%;
    padding: 0px;
    top: 30%;
  }
}
.con-inMiddle-pic .middle-rows {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: row;
  background-color: transparent;
  position: relative;
  min-width: 600px;
  gap: 50px;
  padding-bottom: 53px;
}
@media (max-width: 400px) {
  .con-inMiddle-pic .middle-rows {
    min-width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: flex-start;
    gap: 20px;
  }
}
.con-inMiddle-pic .img-back {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  min-height: 650px;
}
@media (max-width: 600px) {
  .con-inMiddle-pic .img-back {
    min-width: 100%;
    flex-direction: column;
    -o-object-position: -487px center;
       object-position: -487px center;
    min-height: 533px;
  }
}
.con-inMiddle-pic .text-container {
  display: flex;
  color: white;
  max-width: 300px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(8, 114, 169, 0.6196078431);
  border-radius: 10px;
  box-shadow: 2px 4px 8px #195960;
}
@media (max-width: 750px) {
  .con-inMiddle-pic .text-container {
    display: none;
  }
}
.con-inMiddle-pic .text-container .head {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}
.con-inMiddle-pic .text-container .text {
  font-size: 14px;
}

.modal-card {
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.two-blocks {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.two-blocks .spalte1 {
  width: 50%;
}
.two-blocks .spalte2 {
  width: 50%;
  text-align: end;
}

.foto-card-container {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin: 0px auto 0px;
  flex-wrap: wrap;
  max-width: 5500px;
  padding: 40px 10px 40px;
}
@media (max-width: 600px) {
  .foto-card-container {
    flex-direction: column;
  }
}

.foto-card {
  overflow: hidden;
  display: flex;
  position: relative;
  text-align: left;
  border: 1px solid lightgrey;
  box-shadow: var(--shadowWhite);
  flex-direction: column;
  align-items: center;
  background-color: #9756c7;
  width: 100%;
  width: 420px;
  gap: 20px;
  padding-bottom: 20px;
  transition: all 1s;
}
@media (max-width: 450px) {
  .foto-card {
    width: 100%;
  }
}
.foto-card .head {
  color: white;
  font-size: 22px;
  text-shadow: none;
  text-align: center;
}
.foto-card .cardtext {
  color: white;
  font-size: 16px;
  text-shadow: none;
  text-align: left;
  padding: 20px;
  max-width: 90%;
}
.foto-card img {
  height: 160px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.foto-card .button {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  margin: auto;
  cursor: pointer;
  background-color: #d9eceb;
  color: #9756c7;
  padding: 10px 15px 10px;
  min-width: 200px;
  max-width: 100%;
  max-width: 200px;
  border: 1px transparent solid;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
  max-width: 100px;
}
.foto-card .button:hover {
  background-color: #4d0383;
  color: white;
}
@media (max-width: 600px) {
  .foto-card .button {
    font-size: 14px;
    max-width: 100%;
    padding: 10px 9px 10px;
    min-width: 100px;
  }
}

.con-modal {
  display: none;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #9756c7;
  text-align: center;
}

.container-modal-cards {
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, rgba(0, 138, 158, 0) 0%, rgb(0, 138, 158) 31%, rgb(0, 138, 158) 100%);
  margin: auto;
  align-items: center;
}
.container-modal-cards ::-moz-selection {
  background: #d9eceb;
  /* WebKit/Blink Browsers */
  color: #9756c7;
}
.container-modal-cards ::selection {
  background: #d9eceb;
  /* WebKit/Blink Browsers */
  color: #9756c7;
}
.container-modal-cards .head {
  color: white;
  font-size: 35px;
  text-shadow: none;
  text-align: left;
  text-align: center;
  text-transform: uppercase;
  margin-top: 30px;
  width: 90%;
}
@media (max-width: 1100px) {
  .container-modal-cards .head {
    font-size: 23px;
  }
}
@media (max-width: 600px) {
  .container-modal-cards .head {
    font-size: 25px;
  }
}
.container-modal-cards img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 60vh;
}
.container-modal-cards .text {
  color: white;
  font-size: 16px;
  text-shadow: none;
  text-align: left;
  display: flex;
  padding: 50px;
  text-align: left;
  max-width: 60vw;
  max-width: 800px;
  border-radius: 10px;
  padding: 0px 20px 0px;
  line-height: 30px;
  margin-top: 20px;
  align-items: center;
}
@media (max-width: 1400px) {
  .container-modal-cards .text {
    max-width: 80vw;
  }
}
@media (max-width: 980px) {
  .container-modal-cards .text {
    max-width: 80vw;
    line-height: 27px;
  }
}
@media (max-width: 600px) {
  .container-modal-cards .text {
    max-width: 90vw;
    padding: 10px 10px 10px;
  }
}
.container-modal-cards .background {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0, 138, 158, 0) 0%, rgb(0, 138, 158) 31%, rgb(0, 138, 158) 100%);
  top: 41%;
  width: 100%;
}
@media (max-width: 750px) {
  .container-modal-cards .background {
    top: 37%;
  }
}

.con-horizon-abso {
  z-index: 10;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0%);
  display: flex;
  background-color: white;
  background-color: #9756c7;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0px auto 0px;
  gap: 10px;
  width: 100%;
}
@media (max-width: 980px) {
  .con-horizon-abso {
    bottom: 30px;
  }
}

.con-horizon {
  z-index: 10;
  display: flex;
  background-color: #9756c7;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0px auto 0px;
  gap: 80px;
  width: 100%;
  padding: 30px;
  color: white;
  margin-bottom: 5px;
}
@media (max-width: 1100px) {
  .con-horizon {
    flex-direction: row;
  }
}

.imgCon {
  position: relative;
  float: left;
}
.imgCon .imgRound {
  position: relative;
  float: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0px 0px 10px;
  transition: all 0.2s;
  box-shadow: 1px 2px 5px rgb(160, 160, 160);
}
.imgCon .imgRound:hover {
  border: 4px solid white;
}
@media (max-width: 1100px) {
  .imgCon .imgRound {
    width: 50px;
    height: 50px;
  }
}

.tooltip {
  display: none;
  inline-size: -moz-min-content;
  inline-size: min-content;
  color: white;
  position: absolute;
  text-align: center;
  box-shadow: 2px -1px 5px #686868;
  top: -50px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.tooltip .block {
  background: rgb(53, 53, 53);
  border-radius: 4px;
  padding: 5px;
  width: 250px;
}
.tooltip .dreieck {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid black;
  left: 50%;
  bottom: -9px;
  transform: translate(-50%);
}

.tooltip-white {
  display: none;
  inline-size: -moz-min-content;
  inline-size: min-content;
  color: #9756c7;
  position: absolute;
  text-align: center;
  box-shadow: 2px -1px 5px #686868;
  font-size: 15px;
  border-top: none;
  transform: translate(-50%, 25%);
}
.tooltip-white .block {
  background: white;
  border-radius: 4px;
  padding: 17px;
  width: 250px;
}
.tooltip-white .dreieck {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  left: 68%;
  top: -9px;
  transform: translate(-50%);
}

#gbzk-site:hover ~ #gbzk-tooltip {
  display: block;
}

.active-round {
  border: 4px solid white;
}

#header {
  position: relative;
  max-width: 5500px;
  margin: auto;
}

.con-head-image {
  background: #9756c7;
  display: flex;
  position: relative;
  justify-content: center;
  flex-direction: column;
}
.con-head-image .head {
  position: absolute;
  margin-top: 10px;
  color: white;
  background: #008a9e;
  text-align: right;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 5px 10px 5px;
  font-size: 30px;
  left: 3%;
  bottom: 10%;
  box-shadow: 2px -1px 5px #686868;
}

.container-hi {
  position: absolute;
  bottom: -13%;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: rgba(0, 137, 158, 0.4941176471);
  width: 100%;
}

.text-over-image {
  font-family: "Rajdhani", sans-serif;
  color: white;
  font-size: 80px;
  text-shadow: 2px -1px 5px #686868;
  text-align: center;
  font-size: 80px;
  margin: auto;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 15px;
  padding: 0px 15px;
}
.text-over-image img {
  position: absolute;
  width: 100%;
}
@media (max-width: 1300px) {
  .text-over-image {
    font-size: 60px;
    letter-spacing: 12px;
  }
}
@media (max-width: 1000px) {
  .text-over-image {
    font-size: 40px;
    letter-spacing: 10px;
  }
}
@media (max-width: 600px) {
  .text-over-image {
    font-size: 20px;
    letter-spacing: 7px;
  }
}
@media (max-width: 440px) {
  .text-over-image {
    font-size: 16px;
    letter-spacing: 3px;
  }
}

.text-container {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #4e4e4e;
  display: flex;
  max-width: 700px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 80px auto 20px;
  padding: 0px 20px 0px;
}

.text-spacing {
  font-family: "Gudea", sans-serif;
  color: #0c554f;
  font-size: 20px;
  text-shadow: none;
  text-align: center;
  margin-bottom: 11px;
  letter-spacing: 2px;
  word-spacing: 8px;
  border-bottom: 4px dotted #5596b9;
  padding-bottom: 4px;
  margin-bottom: 24px;
}

.text-in-pic {
  display: flex;
  position: absolute;
  top: 50%;
  flex-direction: column;
  transform: translate(0%, -50%);
}

.text-normal {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #9756c7;
  align-self: left;
}

.text-normal-back-white {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #9756c7;
  background-color: rgb(255, 255, 255);
  padding: 3px;
  max-width: 200px;
  align-self: center;
}

.text-white {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: white;
  line-height: 27px;
}

.head-plakativ {
  font-family: "Gudea", sans-serif;
  color: #9756c7;
  font-size: 70px;
  text-align: center;
  text-shadow: 3px 0px 3px #008a9e;
  font-style: italic;
  margin-left: 40px;
  background: rgba(255, 255, 255, 0.7960784314);
  padding: 20px 20px 20px;
  border-radius: 5px;
  align-self: center;
}
.head-plakativ .text {
  font-size: 20px;
  color: #9756c7;
  text-align: end;
  text-shadow: none;
}
@media (max-width: 980px) {
  .head-plakativ {
    font-size: 50px;
    padding: 8px 10px 8px;
    text-shadow: none;
  }
}
@media (max-width: 600px) {
  .head-plakativ {
    font-size: 30px;
    padding: 8px 10px 8px;
  }
}

.head-main {
  font-family: "Open Sans";
  font-size: 40px;
  color: black;
  margin: 0px 0px 30px;
  text-align: left;
  line-height: 67px;
}
@media (max-width: 1200px) {
  .head-main {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 440px) {
  .head-main {
    font-size: 20px;
    line-height: 30px;
    margin: 0px auto 10px;
  }
}

.head-transparent {
  color: rgba(255, 255, 255, 0.3490196078);
  font-size: 13em;
  text-shadow: none;
  text-align: left;
  position: absolute;
  text-align: center;
  -webkit-text-stroke: 2px rgb(255, 255, 255);
  bottom: 10%;
}
@media (max-width: 5500px) {
  .head-transparent {
    font-size: 11vw;
  }
}
@media (max-width: 600px) {
  .head-transparent {
    -webkit-text-stroke: 1px rgb(255, 255, 255);
    font-size: 18vw;
    margin: 0px auto 10px;
  }
}

.head-small-upper {
  color: white;
  font-size: 20px;
  text-shadow: none;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0px 20px;
}

.head-rajdhani {
  color: #4d0383;
  font-size: 20px;
  text-shadow: none;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.overlay {
  display: none;
  justify-content: center;
  position: absolute;
  z-index: 2001;
  top: 115px;
  left: -100%;
  width: 100%;
  background: #9756c7;
  overflow-x: hidden;
}
.overlay a {
  color: white;
  padding: 17px;
  text-decoration: none;
  font-size: 18px;
  display: block;
  transition: 0.3s;
}
.overlay ul {
  width: 100%;
  min-width: 300px;
}
.overlay ul li {
  position: relative;
  width: 100%;
}

#blocker {
  display: none;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #9756c7;
  opacity: 30%;
}

.overlay-content {
  position: relative;
  margin-top: 0;
  margin: auto;
  text-align: center;
  width: 100%;
}
.overlay-content li {
  text-align: center;
  list-style-type: none;
  border-bottom: 0.5px dotted white;
}
.overlay-content li:hover {
  background-color: #4d0383;
}

.top-bar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(208, 165, 242, 0.6196078431);
}
.top-bar .info-bar {
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: "column";
  background-color: transparent;
  position: relative;
  gap: 10px;
  font-size: 20px;
  padding: 6px;
  margin-right: 30px;
}
.top-bar .info-bar .termin-button {
  cursor: pointer;
  text-align: center;
  background: #4d0383;
  color: white;
  font-size: 14px;
  padding: 7px 7px 7px;
  border-radius: 2px;
}
@media (max-width: 600px) {
  .top-bar .info-bar .termin-button {
    font-size: 12px;
    padding: 3px 10px 3px;
    border-radius: 0px;
  }
}
@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
  }
}

.logo-nav {
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: "column";
  background-color: transparent;
  width: 100%;
  max-width: 5500px;
  background-color: #9756c7;
}
@media (max-width: 600px) {
  .logo-nav {
    display: none;
  }
}

#logo {
  display: flex;
  padding: 5px 20px 5px;
  text-align: left;
  justify-content: center;
}
#logo img {
  width: 251px;
  max-width: 100%;
}

#navigation {
  z-index: 1;
  display: flex;
  text-align: center;
  border-top: 1px solid #6634ab;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  background: linear-gradient(to bottom, #cd9ff1 0%, #f4e7ff 100%);
  padding: 8px 20px 14px;
}
#navigation ul {
  display: flex;
  list-style: none;
  list-style-image: none;
  gap: 2px;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  border-radius: 2px;
}
#navigation li {
  font-size: 18px;
  float: left;
}
#navigation li a {
  color: white;
  font-size: 14px;
  border-left: 1px solid white;
  border-left: 1px solid rgba(255, 255, 255, 0.507);
  text-transform: uppercase;
  border-bottom: 4px solid rgba(255, 255, 255, 0.741);
  padding: 10px 20px 11px;
  transition: 0.3s all;
}
@media (max-width: 800px) {
  #navigation li a {
    padding: 5px 1.7vw 5px;
  }
}
#navigation li a:hover {
  background-color: #9756c7;
  color: white;
}
#navigation .active-a {
  background-color: rgb(255, 179, 66);
  border-bottom: 4px solid rgb(255, 153, 0);
}

.index-head-pic {
  display: block;
  width: 100%;
  z-index: 0;
  vertical-align: baseline;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 550px;
}
@media (max-width: 600px) {
  .index-head-pic {
    min-height: 280px;
  }
}

#kontakt-bar {
  position: absolute;
  left: 50%;
  top: 44px;
  transform: translate(-50%, 0%);
}

.site-pad {
  padding: 90px 20px 150px;
}
@media (max-width: 600px) {
  .site-pad {
    padding: 20px 10px 20px;
  }
}

.site-nopad {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  max-width: 100%;
  background-color: #d9eceb;
  padding: 136px 0px 136px;
  gap: 40px;
}
.site-nopad img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 157px;
  max-width: 975px;
}
@media (max-width: 600px) {
  .site-nopad {
    padding: unset;
  }
}

.panel-index1 {
  position: relative;
  color: #4e4e4e;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0px 0px;
  background-color: white;
  line-height: 32px;
  font-size: 16px;
}
@media (max-width: 900px) {
  .panel-index1 {
    padding: 0px;
  }
}
@media (max-width: 600px) {
  .panel-index1 {
    line-height: 24px;
  }
}
.panel-index1 .head-sub {
  color: white;
  font-size: 20px;
  text-shadow: none;
  text-align: left;
  background: rgb(187, 25, 60);
  padding: 5px 15px 5px;
  border-radius: 3px;
  margin: 0px 0px 20px;
  width: 100%;
}

.banner {
  position: relative;
  background: #7345b3;
  padding: 8px 0px 8px;
}
.banner .text {
  color: #ffffff;
  font-size: 50px;
  background: #a976ef;
  padding: 3px;
  width: 100%;
  text-align: center;
}
@media (max-width: 600px) {
  .banner .text {
    font-size: 22px;
  }
}

.einleitung {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 20px 54px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  gap: 5%;
  background: #6634ab;
  background-image: radial-gradient(#6634ab 37%, #663d9f 50%, #a665ff 100%), linear-gradient(to right, hsl(270.78, 51.74%, 27.08%) 30%, rgba(255, 255, 255, 0.768627451) 50%, hsl(276.66, 45.04%, 26.16%) 70%);
  justify-content: center;
  gap: 5%;
  max-width: 100%;
}
@media (max-width: 900px) {
  .einleitung {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 61px 20px 54px;
  }
}
@media (max-width: 600px) {
  .einleitung {
    padding: 130px 20px 54px;
  }
}
.einleitung .start-upper {
  display: flex;
  align-content: center;
  align-items: center;
  margin-bottom: 100px;
  gap: 8%;
}
@media (max-width: 900px) {
  .einleitung .start-upper {
    flex-direction: column;
    align-items: center;
  }
}
.einleitung .start-upper .head-start {
  font-family: "Open Sans";
  font-size: clamp(30px, 7vw, 3em);
  color: rgb(255, 255, 255);
  margin: 50px 0px 8px;
  text-align: center;
  line-height: clamp(27px, 17vw, 1.2em);
}
@media (max-width: 900px) {
  .einleitung .start-upper .head-start {
    text-align: center;
  }
}
.einleitung .start-upper img {
  max-height: 265px;
}
@media (max-width: 900px) {
  .einleitung .start-upper img {
    max-height: 200px;
  }
}
.einleitung .start-down {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2%;
}
@media (max-width: 900px) {
  .einleitung .start-down {
    flex-direction: column;
  }
}
.einleitung .start-down .text-con {
  display: grid;
  align-content: stretch;
  gap: 20px;
  margin-bottom: 60px;
  box-shadow: 1px -1px 14px rgb(237, 32, 255);
}
@media (max-width: 900px) {
  .einleitung .start-down .text-con {
    grid-template-rows: none;
  }
}
.einleitung .start-down .text-con .text-start {
  color: white;
  font-size: 17px;
  padding: 30px 30px 30px;
  background-color: rgb(71, 35, 121);
  border-radius: 11px;
}
@media (max-width: 600px) {
  .einleitung .start-down .text-con .text-start {
    font-size: 15px;
  }
}
.einleitung .start-down .text-con .text-start .head-p {
  align-self: center;
  font-family: "Open Sans";
  font-size: 19px;
  color: rgb(255, 255, 255);
  text-align: center;
  /* line-height: clamp(19px, 13vw, 1.2em); */
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 5px;
  height: 70px;
}
@media (max-width: 900px) {
  .einleitung .start-down .text-con .text-start .head-p {
    height: 50px;
  }
}
.einleitung .text-end-1 {
  font-family: "open sans";
  color: white;
  font-size: 30px;
}
@media (max-width: 600px) {
  .einleitung .text-end-1 {
    font-size: 15px;
  }
}
.einleitung .text-end-hand {
  font-family: "dancing";
  font-size: 30px;
  color: white;
  padding: 20px;
  border-radius: 10px;
  /* font-weight: bold; */
  letter-spacing: 2px;
  line-height: 51px;
}
@media (max-width: 900px) {
  .einleitung .text-end-hand {
    font-size: 20px;
    line-height: 30px;
  }
}

.panel-20 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 169px;
  background-color: #9756c7;
}
.panel-20 img {
  max-width: 100%;
}
@media (max-width: 1100px) {
  .panel-20 {
    padding: 30px 30px 30px;
  }
}
@media (max-width: 450px) {
  .panel-20 {
    padding: 30px 0px 30px;
  }
}
@media (max-width: 600px) {
  .panel-20 {
    padding: 30px 0px 30px;
  }
}

.panel-0 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: left;
}
.panel-0 img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 300px;
  -o-object-position: right bottom;
     object-position: right bottom;
}

.panel-vio {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  padding: 61px 15px 68px;
  background: rgba(90, 44, 127, 0.2705882353);
  border-bottom: 1px solid #6634ab;
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 600px) {
  .panel-vio {
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
  }
}
.panel-vio .block {
  background: #6634ab;
  color: white;
  padding: 20px;
  border-radius: 4px;
}
.panel-vio .block .head {
  color: white;
  font-size: 25px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .panel-vio .block .head {
    font-size: 18px;
  }
}
.panel-vio .block .text {
  font-size: 18px;
  color: white;
  line-height: 30px;
}
@media (max-width: 600px) {
  .panel-vio .block .text {
    font-size: 16px;
  }
}
.panel-vio .block .vio-tab {
  color: white;
  letter-spacing: 1px;
  line-height: 190%;
  display: flex;
}
.panel-vio .block .vio-tab .tab {
  width: 120px;
}
.panel-vio img {
  width: 100%;
  max-width: 400px;
}

.panel-karte {
  display: flex;
  flex-direction: column;
  padding: 40px 0px 0px 0;
  background: #000000;
  align-items: center;
}
@media (max-width: 600px) {
  .panel-karte {
    flex-direction: column;
  }
}
.panel-karte img {
  z-index: 1;
  width: 100%;
  max-width: 900px;
}
.panel-karte .ad-head {
  font-family: "Playfair", serif;
  font-size: clamp(57px, 6vw, 7em);
  color: rgb(211, 123, 47);
  text-align: center;
  font-weight: bold;
  padding: 0px 15px 0px;
}
.panel-karte .ad-subhead {
  color: rgb(120, 120, 120);
  font-family: "Open Sans", serif;
  font-size: clamp(42px, 2vw, 4em);
  text-align: center;
  margin-bottom: 104px;
  padding: 0px 15px 0px;
  letter-spacing: 10px;
}
.panel-karte .ad {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: auto;
  justify-content: center;
  max-width: 80%;
}
@media (max-width: 600px) {
  .panel-karte .ad {
    max-width: 100%;
  }
}
.panel-karte .ad .hase1 {
  position: absolute;
  left: 0px;
  bottom: -59px;
  left: 51px;
  width: 123px;
  transform: rotate(-90deg);
}
.panel-karte .ad .hase2 {
  position: absolute;
  top: 33px;
  right: 0;
  width: 156px;
  transform: rotate(180deg);
}
.panel-karte .ad .ad-new {
  font-size: clamp(18px, 1.7vw, 4em);
  background: transparent;
  text-align: center;
  color: #f22c5d;
  padding: 75px 0px 70px;
  align-self: center;
  padding: 30px 15px 0px;
  margin: 30px auto 30px;
}
.panel-karte .ad .ad-new .head {
  margin-top: 3%;
  position: relative;
  color: #ffffff;
  font-size: clamp(18px, 1.5vw, 9em);
  font-weight: bold;
  background: #e92d7f;
  transform: rotate(357deg);
  padding: 20px;
}
.panel-karte .ad .ad-new .ad-text {
  color: #ffffff;
  font-size: clamp(18px, 1.5vw, 3em);
  text-align: center;
  margin-bottom: 50px;
}
.panel-karte .ad .ad-new .ad-text2 {
  color: #fbe919;
  font-size: clamp(38px, 1.5vw, 3em);
  text-align: center;
  margin-bottom: 20px;
}

.panel-flex-column {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: "column";
  background-color: #4d0383;
  gap: 20px;
  justify-content: center;
  background-color: #d9eceb;
  gap: 5%;
  width: 100%;
  padding: 30px 30px 50px;
}
@media (max-width: 600px) {
  .panel-flex-column {
    flex-direction: column;
    gap: 43px;
  }
}
.panel-flex-column img {
  width: 100%;
  max-width: 180px;
}

.container-blue-dot {
  flex-direction: row;
  position: relative;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  gap: 5px;
}
@media (max-width: 800px) {
  .container-blue-dot {
    flex-direction: column;
  }
}
.container-blue-dot .box {
  display: flex;
  flex-direction: column;
  background: #9756c7;
  width: 50%;
  margin: auto;
  padding: 20px 10px 20px;
  align-items: center;
  height: 200px;
  justify-content: flex-start;
}
@media (max-width: 800px) {
  .container-blue-dot .box {
    height: unset;
  }
}
.container-blue-dot .box .zeile {
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.container-blue-dot .head {
  color: White;
  font-size: 20px;
  text-shadow: none;
  text-align: center;
  margin-bottom: 10px;
}
.container-blue-dot .text {
  color: white;
  font-size: 18px;
}
.container-blue-dot img {
  margin: 20px auto 20px;
  max-width: 250px;
}

.spoken-text {
  position: relative;
  color: white;
  font-size: 18px;
  padding: 30px 30px 30px;
  border-radius: 4px;
  width: 100%;
  max-width: 700px;
}
@media (max-width: 600px) {
  .spoken-text {
    font-size: 16px;
  }
}

.dotty-container {
  background-color: #d9eceb;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 30px;
}
.dotty-container .dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #9756c7;
  margin-bottom: 20px;
}

#foot {
  padding: 40px 30px 40px;
  background-color: #6634ab;
  max-width: 5500px;
  margin: auto;
}

.foot-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .foot-column {
    flex-direction: column;
    align-items: left;
  }
}

#foot-grid {
  display: flex;
  gap: 5%;
  align-items: flex-start;
  justify-content: space-around;
}
@media (max-width: 800px) {
  #foot-grid {
    flex-direction: column;
  }
}

.foot-fliess {
  font-size: 13px;
  color: white;
  letter-spacing: 1px;
  line-height: 190%;
}

.foot-tab {
  font-size: 13px;
  color: white;
  letter-spacing: 1px;
  line-height: 190%;
  display: flex;
}
.foot-tab .tab {
  width: 120px;
}

/**************************************************
            LISTUNGEN
****************************************************/
.block-head {
  background-color: linear-gradient(to bottom, rgb(175, 210, 216) 0%, rgb(125, 185, 232) 100%);
  padding: 30px;
  color: white;
  margin: 0;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
}

.point-li-container {
  padding: 30px 20px 30px;
}
@media (max-width: 600px) {
  .point-li-container {
    padding: 10px 20px 10px;
  }
}
.point-li {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  flex-direction: row;
  background-color: transparent;
  gap: 20px;
  padding: 5px 0px 5px;
  color: white;
}
@media (max-width: 600px) {
  .point-li img {
    height: 10px;
    gap: 10px;
  }
}

.leistungen-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 20px 20px 20px;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .leistungen-container {
    flex-direction: column;
    align-items: center;
  }
}
.leistungen-container .leistung {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(221, 221, 221);
  background: #008a9e;
  width: 100vw;
  max-width: 100%;
  flex: 1 1 30%;
}
@media (max-width: 600px) {
  .leistungen-container .leistung {
    max-height: 350px;
    transition: all 0.5s;
  }
}
.leistungen-container .leistung .moreButton {
  cursor: pointer;
  z-index: 1;
  left: 50%;
  text-align: center;
  padding: 3px;
  transform: translate(-50%);
  background-color: #5596b9;
  color: white;
  position: absolute;
  bottom: 10px;
  width: 80px;
  height: 30px;
  border-radius: 3px;
}
@media (max-width: 600px) {
  .leistungen-container .leistung .moreButton {
    display: block;
  }
}
.leistungen-container .leistung .moreButton:hover {
  background-color: #4d0383;
}
.leistungen-container .leistung .bottom-block {
  display: none;
  position: absolute;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 138, 158, 0) 0%, rgba(0, 138, 158, 0.55) 24%, rgb(0, 138, 158) 54%, rgb(0, 138, 158) 100%);
  width: 100%;
  bottom: 0;
}
@media (max-width: 600px) {
  .leistungen-container .leistung .bottom-block {
    display: block;
  }
}
.leistungen-container #leistung-8::after {
  content: none;
}

.vertical-two {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: column;
  background-color: transparent;
  background-color: #5596b9;
  padding: 30px 20px 0px;
  min-height: 200px;
  max-height: 200px;
}
@media (max-width: 600px) {
  .vertical-two {
    padding: 10px 10px 0px;
    min-height: 110px;
    margin-bottom: 10px;
  }
}

.vertical-head {
  text-align: center;
  font-size: 25px;
  color: white;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .vertical-head {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.vertical-head img {
  margin-bottom: 20px;
  max-width: 60px;
}
@media (max-width: 600px) {
  .vertical-head img {
    height: 40px;
  }
}

/**************************************************
           ABOUT
****************************************************/
.image-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.image-photo .text {
  font-size: 20px;
  color: #9756c7;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.image-photo .photo-round {
  display: flex;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: auto;
  box-shadow: 2px -1px 5px #686868;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-head {
  color: white;
  font-size: 60px;
  text-shadow: none;
  text-align: center;
  display: flex;
  background-color: #9756c7;
  padding: 120px 30px 60px;
  margin: 0;
  align-items: center;
  justify-content: center;
}

#about-container {
  color: #9756c7;
  padding: 100px 20px 104px;
  font-size: 17px;
  background-color: #d9eceb;
  margin: auto;
}
@media (max-width: 600px) {
  #about-container {
    font-size: 14px;
    padding: 50px 0px 60px;
  }
}
#about-container .about-row {
  padding: 20px;
  display: grid;
  grid-template-columns: 3fr 8fr;
  gap: 30px;
}
@media (max-width: 600px) {
  #about-container .about-row {
    grid-template-columns: none;
    gap: 15px;
  }
}
#about-container .about-date {
  font-weight: bold;
  text-align: right;
  min-width: 180px;
}
@media (max-width: 600px) {
  #about-container .about-date {
    text-align: left;
  }
}
#about-container .about-text {
  max-width: 700px;
}

/**************************************************
           INDEX
****************************************************/
#praxis-zeile1,
#praxis-zeile2,
#praxis-scroll {
  z-index: 1;
  opacity: 0%;
}

#start-logo {
  opacity: 0%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
}
@media (max-width: 600px) {
  #start-logo {
    top: 60%;
    width: 100px;
  }
}

.img100 {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 450px;
}

.slide-main {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.slide-main .dot-container {
  position: absolute;
  bottom: -55px;
  z-index: 1;
  display: flex;
  flex-direction: row;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide-main .dot-container .dot {
  cursor: pointer;
  margin: 0px 10px 0px;
}
.slide-main .dot-container .dot img {
  height: 50px;
  width: 50px;
  background-color: rgb(255, 37, 37);
  border-radius: 50%;
  border: 2px white solid;
}
.slide-main .dot-container .dot img:hover {
  filter: sepia();
}
.slide-main .slideshow-container {
  z-index: 0;
  display: block;
  flex-direction: row;
  background-color: #5596b9;
  overflow: hidden;
  margin: auto;
  width: 1500px;
  height: 40vw;
  max-height: 615px;
  min-height: 290px;
}
.slide-main .slideshow-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  line-height: 0;
  min-height: 290px;
}
.slide-main .slideshow-container .text-container {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-end;
  position: absolute;
  right: 9%;
  bottom: 20%;
  font-size: 30px;
}
@media (max-width: 1100px) {
  .slide-main .slideshow-container .text-container {
    right: 9%;
    bottom: 10%;
    font-size: 25px;
  }
}
@media (max-width: 750px) {
  .slide-main .slideshow-container .text-container {
    right: 9%;
    bottom: 10%;
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .slide-main .slideshow-container .text-container {
    right: -2%;
    bottom: 15%;
    font-size: 17px;
  }
}
.slide-main .slideshow-container .text-container .line {
  margin-top: 10px;
  color: white;
  background: #9756c7;
  text-align: right;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 2px 2px 11px #202020;
}
@media (max-width: 600px) {
  .slide-main .slideshow-container .text-container .line {
    padding: 3px 3px 3px;
    border-radius: 2px;
  }
}
.slide-main .slideshow-container .mySlides {
  width: 100%;
  max-width: 1500px;
  position: absolute;
  text-align: center;
  margin: auto;
  display: block;
  box-sizing: border-box;
}
.slide-main .slideshow-container .slider-prev,
.slide-main .slideshow-container .slider-next {
  z-index: 10;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 35px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 600px) {
  .slide-main .slideshow-container .slider-prev,
  .slide-main .slideshow-container .slider-next {
    display: none;
  }
}
.slide-main .slideshow-container .slider-prev:hover,
.slide-main .slideshow-container .slider-next:hover {
  background-color: #6634ab;
}
.slide-main .slideshow-container .slider-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.slide-main .slideshow-container .active,
.slide-main .slideshow-container .dot:hover {
  background-color: #717171;
}

.photo-head-container {
  position: relative;
}
.photo-head-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 0;
     object-position: 100% 0;
  min-height: 500px;
}
@media (max-width: 600px) {
  .photo-head-container img {
    min-height: 300px;
  }
}
.photo-head-container .head-block {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #0d2136;
}
@media (max-width: 600px) {
  .photo-head-container .head-block {
    bottom: 0px;
    top: unset;
    font-size: 30px;
    left: 0%;
    border-bottom: 5px solid rgb(187, 25, 60);
    padding: 10px 10px 10px;
    width: 100%;
  }
}
.photo-head-container .head-block .head {
  font-size: 50px;
  color: white;
  font-weight: bold;
  padding: 14px 30px 65px;
  border-radius: 3px;
}
@media (max-width: 600px) {
  .photo-head-container .head-block .head {
    bottom: 0px;
    top: unset;
    font-size: 7vw;
    left: 0%;
    border-bottom: 0px solid rgb(187, 25, 60);
    padding: 14px 30px 15px;
    width: 100%;
  }
}
.photo-head-container .head-block .underline {
  position: absolute;
  display: flex;
  flex-direction: row;
  gap: 20px;
  top: 65%;
}
@media (max-width: 600px) {
  .photo-head-container .head-block .underline {
    display: none;
    top: 61%;
  }
}
.photo-head-container .head-block .underline .block {
  background-color: rgb(187, 25, 60);
  height: 18px;
  width: 200px;
}
.photo-head-container .head-block .underline .dot-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.photo-head-container .head-block .underline .dot-container .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgb(187, 25, 60);
}

.job-container {
  padding: 80px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.job-container .head {
  color: #9756c7;
  font-size: 30px;
  text-shadow: none;
  text-align: left;
  text-align: center;
  text-align: center;
}
.job-container .head2 {
  color: #9756c7;
  font-size: 30px;
  text-shadow: none;
  text-align: left;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 600px) {
  .job-container .head2 {
    font-size: 19px;
  }
}
.job-container .text-between {
  color: #4e4e4e;
  font-size: 20px;
  text-shadow: none;
  text-align: left;
  margin: 50px auto 30px;
  font-weight: bold;
  white-space: nowrap;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 600px) {
  .job-container .text-between {
    font-size: 16px;
  }
}
.job-container .icon-text-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #6634ab;
}
.job-container .icon-text-container .icon-text {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.job-container .icon-text-container .icon-text img {
  height: 20px;
  width: 20px;
}
.job-container .icon-text-container .icon-text .text {
  font-size: 16px;
  color: #6634ab;
}
.job-container #interesse {
  background-color: #9756c7;
  padding: 20px 15px 20px;
  border-radius: 4px;
  color: white;
  font-weight: normal;
}

.service-container {
  padding: 20px;
  background-color: white;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}
@media (max-width: 900px) {
  .service-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .service-container {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 5px;
  }
}
.service-container img {
  width: 220px;
  margin: 20px auto 20px;
}
@media (max-width: 600px) {
  .service-container img {
    width: 100px;
    margin: 0px 20px 0px;
  }
}
.service-container .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: white;
  box-shadow: 1px 2px 5px rgb(160, 160, 160);
  height: 150px;
  border-radius: 2px;
}
@media (max-width: 600px) {
  .service-container .service-card {
    flex-direction: row;
    height: 100px;
    justify-items: flex-start;
    border-radius: 0px;
  }
}
.service-container .text {
  font-weight: bold;
  font-size: 19px;
  color: #595959;
}
@media (max-width: 600px) {
  .service-container .text {
    font-size: 16px;
  }
}/*# sourceMappingURL=new_site.css.map */