@font-face {
  font-family: Nunito;
  src: url(../fonts/Nunito/static/Nunito-Regular.ttf);
}
@font-face {
  font-family: Nunito;
  src: url(../fonts/Nunito/static/Nunito-Bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: Anton;
  src: url(../fonts/Anton/Anton-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: #F4F5F7;
  scroll-behavior: smooth;
  font-family: "Nunito";
}

h1 {
  color: #87B1C2;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0px;
}

h2 {
  margin-top: 5px;
  color: #87B1C2;
  font-size: 1.5rem;
  text-align: center;
}

.divider {
  width: 90%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.divider .line {
  width: 100%;
  height: 1px;
  background-color: #87B1C2;
}
.divider img {
  width: 30px;
  height: 30px;
  margin: 0 10px;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.5rem;
  color: #87B1C2;
  white-space: nowrap;
  padding: 0 20px;
  margin-bottom: 20px;
}

header {
  z-index: 1000;
  position: fixed;
  width: 100%;
  background-color: #87B1C2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 80px;
}
header nav #logo {
  width: 50%;
}
header nav #logo img {
  width: 100%;
}
header nav .nav {
  display: none;
}
header nav #menu {
  color: #F4F5F7;
  cursor: pointer;
}

#darkBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -10;
  transition: background-color 0.3s ease;
}
#darkBg.show {
  z-index: 1100;
  background-color: rgba(0, 0, 0, 0.5);
}

#mobile-menu {
  z-index: 1500;
  position: fixed;
  display: flex;
  flex-direction: column;
  right: -75%;
  top: 0;
  height: 100%;
  width: 75%;
  z-index: 1600;
  background-color: #F4F5F7;
  transition: right 0.4s ease;
}
#mobile-menu.show {
  right: 0;
}
#mobile-menu #close {
  color: #87B1C2;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}
#mobile-menu nav {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
#mobile-menu nav a {
  width: 100%;
  display: flex;
}
#mobile-menu nav a img {
  width: 75%;
  margin: 20px auto;
}
#mobile-menu nav ul {
  margin-left: 20px;
}
#mobile-menu nav ul li {
  list-style: none;
  margin: 20px 0;
}
#mobile-menu nav ul li a {
  color: #87B1C2;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0 10px;
}

#start {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#start .img-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 25px 0;
}
#start .img-wrapper img {
  width: 100%;
}
#start p {
  color: #87B1C2;
  font-size: 1.1rem;
  line-height: 2rem;
  text-align: center;
  margin: 20px;
  margin-bottom: 10px;
}
#start a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #87B1C2;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
  border-radius: 50px;
  padding: 25px;
  box-shadow: 0px 0px 20px 10px rgba(135, 177, 194, 0.3);
  transition: transform 0.2s ease;
}
#start a:hover {
  transform: scale(1.05);
}
#start a i {
  margin-right: 10px;
}
#start h2 {
  margin-bottom: 20px;
}

#therapie {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
}
#therapie p {
  margin: 20px;
  margin-top: 0;
  font-size: 1.1rem;
  line-height: 2rem;
}
#therapie .angebots-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 20px;
}
#therapie .angebots-wrapper .angebot {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 2px rgba(135, 177, 194, 0.3);
}
#therapie .angebots-wrapper .angebot img {
  width: 25%;
  margin: 15px auto;
}
#therapie .angebots-wrapper .angebot h4 {
  color: #87B1C2;
  word-break: break-word;
  font-size: 1.25rem;
  padding-top: 10px;
}
#therapie .angebots-wrapper .angebot p {
  margin: 0;
}

.accordion {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.accordion .accordion-item {
  display: flex;
  flex-direction: column;
  margin: 10px 0px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 2px rgba(135, 177, 194, 0.3);
}
.accordion .accordion-item .accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion .accordion-item .accordion-title.active i {
  transform: rotate(180deg);
}
.accordion .accordion-item .accordion-title .icon {
  display: none;
}
.accordion .accordion-item .accordion-title h4 {
  color: #87B1C2;
  font-size: 1.2rem;
  margin: 0px;
  max-width: 85%;
}
.accordion .accordion-item .accordion-title i {
  color: #87B1C2;
  transition: all 0.2s ease;
}
.accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion .accordion-item .accordion-content p {
  margin-bottom: 5px;
  line-height: 1.75rem;
  padding-right: 50px;
}
.accordion .accordion-item .accordion-content ul {
  padding-left: 20px;
}
.accordion .accordion-item .accordion-content ul li {
  line-height: 2rem;
  font-size: 1.1rem;
}
.accordion .accordion-item .accordion-content ul li::marker {
  color: #87B1C2;
}

#ueber {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
}
#ueber p {
  margin: 20px;
  margin-top: 0;
  font-size: 1.1rem;
  line-height: 2rem;
}
#ueber .img-wrapper {
  margin: 10px 20px;
}
#ueber .img-wrapper img {
  width: 100%;
  border-radius: 15px;
}
#ueber #portrait {
  display: none;
}
#ueber .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#ueber .readmore {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  color: #87B1C2;
  font-weight: 600;
  margin: 0 20px;
  text-decoration: none;
}
#ueber .readmore p {
  margin: 0;
  font-size: 1.2rem;
}
#ueber .readmore i {
  margin-left: 10px;
  transition: all 0.2s ease;
}

#infos {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
}

#praxis {
  padding-top: 100px;
}
#praxis .splide {
  margin: 40px 0px;
}
#praxis .splide .splide__arrow {
  background-color: #87B1C2;
  color: white;
  border-radius: 50%;
  box-shadow: 0px 0px 20px 2px rgba(135, 177, 194, 0.3);
  opacity: 1;
  height: 2.5rem;
  width: 2.5rem;
}
#praxis .splide .splide__slide {
  height: 100%;
  margin: 0px 10px;
}
#praxis .splide .splide__slide img {
  height: 100%;
  border-radius: 15px;
}

#kontakt {
  background-color: #87B1C2;
  color: #F4F5F7;
  padding: 0 20px;
  padding-top: 20px;
}
#kontakt .footer-logo img {
  width: 100%;
}
#kontakt .row {
  display: flex;
  align-items: center;
}
#kontakt .row a {
  margin-left: 5px;
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  line-height: 2rem;
}
#kontakt .row a:hover {
  text-decoration: underline;
}
#kontakt i {
  color: white;
}
#kontakt h4 {
  font-size: 1.3rem;
  line-height: 1.3rem;
  margin-bottom: 10px;
  margin-top: 20px;
}
#kontakt p {
  font-size: 1.1rem;
  line-height: 2rem;
}

footer {
  background-color: #87B1C2;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  line-height: 2rem;
  padding: 20px;
}
footer a {
  color: white;
  text-decoration: none;
  margin-right: 10px;
}
footer a:hover {
  text-decoration: underline;
}

#toTop {
  opacity: 0;
  z-index: -10;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #87B1C2;
  color: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0px 0px 20px 2px rgba(135, 177, 194, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
#toTop i {
  color: white;
}
#toTop.show {
  opacity: 1;
  z-index: 100;
}

#banner {
  opacity: 0;
  z-index: -10;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 2px rgba(135, 177, 194, 0.3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
#banner.show {
  opacity: 1;
  z-index: 1100;
}
#banner h2 {
  text-align: left;
  font-weight: bold;
  color: #87B1C2;
  margin-bottom: 20px;
}
#banner p {
  line-height: 1.5rem;
}
#banner .links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
}
#banner .links a {
  color: #87B1C2;
  text-decoration: none;
  margin: 0 10px;
}
#banner .links a:hover {
  text-decoration: underline;
}
#banner button {
  background-color: #87B1C2;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  margin-top: 20px;
  font-weight: bold;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  #mobile-menu {
    display: none;
  }
  header nav {
    padding: 0 50px;
  }
  header nav #logo {
    width: auto;
    height: 80%;
  }
  header nav #logo img {
    width: auto;
    height: 100%;
  }
  header nav .nav {
    display: flex;
  }
  header nav .nav a {
    color: #F4F5F7;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    margin-left: 20px;
  }
  header nav .nav a:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #F4F5F7;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  header nav .nav a:hover:before {
    opacity: 1;
  }
  header nav .nav a.active:before {
    opacity: 1;
  }
  header nav #menu {
    display: none;
  }
  #start {
    display: flex;
    flex-direction: row;
    height: 100vh;
    padding: 0 150px;
    padding-top: 80px;
  }
  #start .wrapper {
    width: 60vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #start .wrapper:first-of-type {
    width: 40vw;
  }
  #start .wrapper p {
    margin: 20px 40px;
  }
  #start .wrapper .img-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 25px 0;
  }
  #start .wrapper .img-wrapper img {
    width: 100%;
  }
  #start .wrapper a {
    width: 50%;
    min-width: -moz-fit-content;
    min-width: fit-content;
    font-size: 1.1rem;
    padding: 20px;
  }
  h3 {
    text-transform: uppercase;
  }
  #therapie,
  #infos,
  #ueber {
    padding: 0 200px;
    padding-top: 100px;
  }
  #therapie .angebots-wrapper {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  #therapie .angebots-wrapper .angebot {
    width: 45%;
    margin: 10px;
    display: flex;
    flex-direction: row;
  }
  #therapie .angebots-wrapper .angebot img {
    height: 40%;
    width: auto;
    margin: 15px;
  }
  #ueber .row {
    flex-direction: row;
  }
  #ueber #mobile-portrait {
    display: none;
  }
  #ueber #portrait {
    display: initial;
    min-width: 300px;
    width: 100%;
    max-width: 600px;
  }
  #ueber .readmore:hover i {
    margin-left: 15px;
  }
  #praxis h3 {
    margin-left: 200px;
  }
  .accordion .accordion-item .accordion-content p {
    margin-top: 15px;
  }
  #kontakt .footer-content {
    display: flex;
    flex-direction: column;
    padding: 50px 200px;
  }
  #kontakt .footer-content .footer-logo {
    width: 30%;
  }
  #kontakt .footer-content .footer-contact {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  #kontakt .footer-content .footer-contact h4 {
    margin-bottom: 20px;
  }
  #kontakt .footer-content .footer-contact p {
    margin: 0;
  }
  #kontakt .footer-content .footer-contact .wrapper {
    width: 50%;
  }
  #kontakt .footer-content .footer-contact iframe {
    width: 50%;
    height: auto;
  }
  footer {
    padding: 20px 220px;
  }
  #banner {
    width: 50%;
  }
  #banner .links {
    justify-content: initial;
  }
  #banner .links a {
    margin: 0;
    margin-right: 20px;
  }
}/*# sourceMappingURL=main.css.map */