/**
* Theme Name: 	Katalina
* Description:	Child Theme auf der Basis des Basis Themes, allerdings ohne Stylesheet
* Author:	Katrin Birke und Lina Glaser
* Template:	basis
* Version:	01.0
*/

/* ***** font-family kann durch eigene Bezeichnung ersetzt werden ***** */

@font-face {
    font-family: 'schrift-text';
    src: url('/wp-content/themes/katalina/fonts/RobotoFlex-VariableFont/RobotoFlex-VariableFont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'schrift-akzent';
    src: url('/wp-content/themes/katalina/fonts/NotoSerifJP-VariableFont_wght/NotoSerifJP-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'schrift-zitat';
    src: url('/wp-content/themes/katalina/fonts/BLACKJAR/BLACKJAR.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
/* *************** Schriften  **************************************************************** */
	--schrift-text: 'schrift-text', sans-serif;
	--schrift-akzent: 'schrift-akzent', serif;
	--schrift-zitat: 'schrift-zitat', serif;
	--schriftgroesse-text: 20px;
	--schriftgroesse-h1: 215%;
	--schriftgroesse-h2: 180%;
	--schriftgroesse-h3: 127%;
	--unterzeile-ueberschrift: 115%;
	--schriftgroesse-zitate: 360%;
	--schriftgroesse-button: 100%;
	--schriftgroesse-button: 100%;
	--schriftgroesse-button-gross: 166%;
	--schriftgroesse-menu: 105%;
	
/* *************** Farben **************************************************************** */
	--schriftfarbe-text: #595156;
	--akzent: #bf007a;
	--akzent-shadow: rgba(191, 0, 122, 0.7);
	--link: #951967;
	--link-hover: #bf007a;
	--background-hell:  rgba(240, 239, 240, 0.8);
	--weiss-transparent: rgba(255, 255, 255, 0.5);
	--weiss-trans-spalten: rgba(255, 255, 255, 0.88);

/* *************** Abstände **************************************************************** */
	--abstand-1: 180px;
	--abstand-2: 150px;
	--abstand-3: 120px;
	--abstand-4: 90px;
	--abstand-5: 65px;
	--abstand-6: 50px;
	--abstand-7: 30px;
	--abstand-8: 13px;
	--textabsatz: 18px;
	--abstand-border: 39px;
	--abstand-border-2: 18px;
}

}  /*muss bleiben, da sonst der Kopf der Webseite entfernt wird*/

/* *************** grundlegende Elemente *********************************************************** */
html, body {
	height: 100%; 
	width: 100%; 
	scroll-behavior: smooth;
}
#alles {
	height: 100%; 
	width: 100%; 
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
align-items: center;
	font-family: var(--schrift-text);
	font-size: var(--schriftgroesse-text);
	line-height: 1.35;
	color: var(--schriftfarbe-text);
	hyphens: auto;
	scroll-behavior: smooth;
}

#inhalt, #primary, #content {
	height: auto; 
	width: 100%;
	max-width: 1920px; 
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
a {
	text-decoration: none;	
	color: var(--link);
}
a:hover {
	color: var(--link-hover);
}
.textabsatz {
	margin-bottom: var(--textabsatz);
}

h1 {	
	hyphens: auto;
	text-align: center;
	font-size: var(--schriftgroesse-h1);
	font-weight: 500;
	line-height: 1.25;
	margin: 0;
}
h2 {	
	hyphens: auto;
	text-align: center;
	font-size: var(--schriftgroesse-h2);
	font-weight: 500;
	line-height: 1.3;
	margin: 0;
}
h3 {	
	hyphens: auto;
	font-size: var(--schriftgroesse-h3);
	font-weight: 500;
	line-height: 1.25;
	margin: 0;
}
ul {
	margin: 15px 0;
}
li {
	margin: 0 0 9px 0;
}
span {
  display: inline;
}
/* ***** BACK TO TOP ******* */
#back-to-top {
	position: fixed;
	z-index: 9999;
	bottom: 20px;
	right: 30px;
}

/* ***** ENTSCHLÜSSELTE TEXTE ***** */
.decode { 
	white-space: pre-wrap; 
}
/* *************** Kopfzeile mit Menü *********************************************************** */
#kopfzeile-container-aussen {
	width: 100%;
	max-width: 1920px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
	background: white;
	border-bottom: 1px solid transparent;
	box-shadow: 0px 8px 3px -5px var(--akzent-shadow);
}
#kopfzeile-container-innen {
	width: 95%; 
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
#kopfzeile-container-titel {
	width: 33%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
#kopfzeile-titel-logo {
	width: 9%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 9px;
}
#kopfzeile-titel-logo img {
	width: 100%;
}
#kopfzeile-container-text {
	width: 64%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-left: 2%;	
}
#kopfzeile-titel-text1,
#kopfzeile-titel-text2 {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
#kopfzeile-titel-text1 {
	font-size: 136%;
	letter-spacing: 1px;
}
#kopfzeile-titel-text2 {
	font-size: 83%;
	margin-top: -5px;
}
#kopfzeile-titel-text1 a,
#kopfzeile-titel-text1 a:hover {
	color: var(--schriftfarbe-text);
}
/* *************** Menü von Wordpress********************************************** */
#kopfzeile-menu-container {
	width: 80%;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	font-size: var(--schriftgroesse-menu);
}
.container-hauptmenu {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	font-size: var(--schriftgroesse-menu);
}
.menu-desk {
	display: flex;
	flex-wrap: nowrap;         /* EINZEILIG, kein Umbrechen */
	gap: 9px;
	overflow-x: auto;          /* falls zu breit → horizontal scrollbar statt 2. Zeile */
}
.menu-desk > li {
	list-style: none; 
	flex: 0 0 auto;
	margin: 0;
}
.menu-desk > li > a {
	display: block; 
	padding: 0 20px;
	color: var(--schriftfarbe-text);
}
.menu-desk > li > a:hover {
	color: var(--akzent);
}
.menu-desk .current_page_item a {
	color: var(--akzent);
}
#menu-menu-1 {
	margin: 30px 0 0 0;
}
/* *************** rep. menü*********************************************************** */
#kopfbereich-hamburger-container {
	display: none;
	flex-direction: column;  
	justify-content: center;
	align-items: center;
}
#kopfbereich-hamburger {
	height: 23px;
	width: 45px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}	
.menu-hamburger-balken {
	background-color: var(--schriftfarbe-text);	
	height: 3px;
	width: 100%;
	cursor: pointer;
}
.menu-responsiv {
	display: block;
	padding: 0;
}
#kopfzeile-menu-2-container {
	text-align: left;
	position: absolute;
	left: 50%;
	width: 100%;
	padding: 15px 0;
	font-size: 115%;
	background-color:  #f0eff0;
	transition-property: transform;
	transition-duration: 1s;
	z-index: 10000;
}
.herunterziehen { /* JS-gesteuert */
	transform: translateX(-50%) translateY(30%); /* Behält horizontale Zentrierung bei */
}
.hochschieben { /* JS-gesteuert */
	transform: translateX(-50%) translateY(-105%); /* Verschiebt das Menü vertikal und behält Zentrierung */
}
#menu-menu2 {
	list-style: none;
}
#menu-menu2 .menu-item {
	padding-left: 36%;
}
#menu-menu2 li {
	padding: 9px 0;
	margin: 0;
	transition: background-color 0.5s ease;
}
#menu-menu2 li a {
	display: block;
    transition: color 0.5s ease;
}
#menu-menu2 a {
	color: var(--schriftfarbe-text);
	text-decoration: none;
}
#menu-menu2 li:hover {
	background-color: white;
}
#menu-menu2 li:hover a {
	color: var(--akzent);
}
#menu-menu2 .current_page_item a {
	color: var(--akzent);
}
#menu-menu2 .current_page_item {
	background-color: white;
}
/* *************** Start-kopf *********************************************************** */
.seite-kopf-container {
	width: 100%;
	max-width: 1920px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background-image: url("/wp-content/uploads/2025/10/naturheilpraxis-waltraud-berchtenbreiter-background-image.jpg");  
	background-size: cover;
	padding: 136px 0;
	margin-top: 13px;
}
#start-kopf-container-transparenz {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--weiss-transparent);
	border-bottom: 1px solid transparent;
	box-shadow: 0px 0px 21px -6px var(--akzent-shadow);
}
#start-kopf-container-logo-titel {
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 96px 0;
}
#start-kopf-logo {
	width: 39%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 21px;
}
#start-kopf-logo img {
	width: 100%;
}
#start-kopf-titel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 13px;	
}
#start-kopf-titel h1 {
	letter-spacing: 4px;
}
.titel-zeile2 {
	font-size: 123%;
	letter-spacing: 2px;
	margin-top: -5px;
}
#start-kopf-unterzeile {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: var(--unterzeile-ueberschrift);
	border-top: 3px solid var(--schriftfarbe-text);
	padding-top: 13px;
}

/* *************** Start - 1. Abschn.*********************************************************** */
.textbereich-aussen {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: var(--abstand-3);
	margin-bottom: var(--abstand-2);
}
.textbereich-innen {
	width: 60%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.unterzeile-ueberschrift-h2 {
	display: none;
}
.unterzeile-ueberschrift,
.unterzeile-ueberschrift-profil,
#unterzeile-ueberschrift-footer {
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: var(--unterzeile-ueberschrift);
	line-height: 1.25;
	text-align: center;
	hyphens: none;
}
.nur-text {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;	
}
/* *************** Start - Spalten Angebote*********************************************************** */
.hintergrund-ganze-breite-aussen {
	width: 100%;
	max-width: 1920px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background-image: url("/wp-content/uploads/2025/10/naturheilpraxis-waltraud-berchtenbreiter-background-footer.jpg");
	background-size: cover;
	border-bottom: 0px solid transparent;
	box-shadow: 0px 0px 21px -6px var(--akzent-shadow);
	padding: 136px 0;
}
#start-alle-spalten-aussen {
	width: 90%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}	
.start-drei-spalten {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	row-gap: 0;
	column-gap: 5%;
	box-sizing: border-box;
}
.spalte-einzeln {
	display: flex;
	flex-grow: 1;
	flex-basis: 0;
	flex-direction: column;
	align-items: center;
	padding: 39px;
}
#spalte-1 {
	background-image: url("/wp-content/uploads/2025/10/naturheilpraxis-waltraud-berchtenbreiter-start-spalte-1.jpg");	
	position: relative;
	background-size: cover;
}
#spalte-2 {
	background-image: url("/wp-content/uploads/2025/10/naturheilpraxis-waltraud-berchtenbreiter-start-spalte-2.jpg");	
	position: relative;
	background-size: cover;
}
#spalte-3 {
	background-image: url("/wp-content/uploads/2025/10/naturheilpraxis-waltraud-berchtenbreiter-start-spalte-3.jpg");	
	position: relative;
	background-size: cover;
}
.spalte-textbereich {
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--weiss-trans-spalten);
	padding: 36px;
	color: var(--akzent);
	flex-grow: 1;
	flex-basis: 0;
}
.spalte-text-oben h3 {
	font-size: 115%;
	text-align: center;
}
.spalte-text-oben {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	flex-grow: 1;
	flex-basis: 0;
}
#start-spalte-gesamte-breite {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url("/wp-content/uploads/2025/10/naturheilpraxis-waltraud-berchtenbreiter-start-amnanda.jpg");
	position: relative;
	background-size: cover;
	margin-top: 91px;
	padding-top: 39px;
	padding-bottom: 39px;
}
#spalte-amnanda-textbereich {
	width: 96%;
}
#amnanda-textbereich-innen {
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--weiss-trans-spalten);
	padding: 36px;
	color: var(--akzent);
	font-size: 110%;	
}
/* *************** Start - Profil*********************************************************** */
.start-textbereich-aussen-profil {
	margin-top: var(--abstand-1);
	margin-bottom: var(--abstand-3);
}
.start-profil {
	width: 39%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: var(--abstand-6);
}
.start-profil img {
	width: 100%;
	border-radius: 50%;
	border: 6px solid var(--akzent);
}
.profil-textbereich {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: var(--abstand-4);
}
#profil-zitat-aussen {
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url("/wp-content/uploads/2025/10/naturheilpraxis-waltraud-berchtenbreiter-profil-hintergrund.jpg");
	position: relative;
	background-size: cover;
	margin-top: var(--abstand-4);
	margin-bottom: 88px;
}
#profil-zitat-innen {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.88);	
}
#profil-zitat-grafik {
	width: 13%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: -27px;
	margin-bottom: var(--abstand-5);
}
#profil-zitat-grafik img {
	width: 100%;
}
#profil-zitat-text {
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: var(--schrift-zitat);
	font-size: var(--schriftgroesse-zitate);
	color: #ea7ca6;
	text-align: center;
	line-height: 1.18;
	letter-spacing: 5px;
	margin-bottom: var(--abstand-7);
}
#profil-zitat-autor {
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 77%;
	color: #ea7ca6;
	text-align: center;
	margin-bottom: var(--abstand-5);
}

/* *************** amnanda *********************************************************** */
.amnanda-kopf-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.seite-streifen-hintergrund {
	width: 100%;
	height: 630px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 309px;
	background-image: url("/wp-content/uploads/2025/10/naturheilpraxis-waltraud-berchtenbreiter-amnanda-background-1.jpg");
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 0;
}
.amnanda-foto-auf-streifen {
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: -356px;
	z-index: 10;
}
.amnanda-foto-auf-streifen img {
	width: 100%;
}
.a-amnanda {
	font-family: var(--schrift-akzent);
	font-size: 133%;
	color: var(--akzent);
}
#textbereich-aussen-amnanda {
	margin-top: var(--abstand-4);
}
#nur-text-amnanda {
	margin-top: 13px;
}
.hervorhebung {  
	margin: 9px 0 13px 0;
	font-weight: 600;
}
/* ***** KLAPPELEMENTE ***** */
.klappelemente-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	align-self: flex-start;
	margin: 63px 0 85px 0;
}
.klappelement-einzelelement {
	width: 80%;
	padding: 21px 0 21px 0;
	border-top: 2px dotted;
}
.klappelement-letztes {
	border-bottom: 2px dotted;
}
.klappelement-ueberschrift {  
	width: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
	  margin: 0;
	overflow-anchor: auto;
	scroll-margin-top: 16px; /* ggf. auf deine Headerhöhe anpassen */
}
.klappelement-ueberschrift h2 {
	font-size: var(--unterzeile-ueberschrift);
}
.klappelement-ueberschrift.open {
	color: var(--akzent);
}
.klappelement-unterzeile-ueberschrift {
	font-size: 85%;
	margin-top: 6px;
	margin-bottom: 21px;
	margin-left: 33px;
}
.container-inhalt-klappelement {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-left: 33px;
}
.klappelement-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	margin-bottom: 33px;
}
.klappelement-ueberschrift::before { /* JS-gesteuert */
  content: '';
	flex: 0 0 1.0em;
	height: 0.93em;
	margin: 0 11px 0 0;
	background: url("/wp-content/uploads/2025/10/naturheilpraxis-waltraud-berchtenbreiter-accordion-zu.png") no-repeat center/contain;
}
.klappelement-ueberschrift-amnanda::before {
	margin: 11px 11px 0 0;
}
.klappelement-ueberschrift.open::before { /* JS-gesteuert */
	background-image: url('/wp-content/uploads/2025/10/naturheilpraxis-waltraud-berchtenbreiter-accordion-auf.png');
}
.klappelement-inhalt-container {
	overflow: hidden;
	transition: height .6s ease;
	will-change: height;
	overflow-anchor: none;
	height: 0;
}
.klappelement-zugeklappt { /* JS-gesteuert */
  height: 0;
  overflow: hidden;
}
.container-ausbildung {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 13px;
	margin-bottom: 39px;
	background-image: url("/wp-content/uploads/2025/10/naturheilpraxis-waltraud-berchtenbreiter-amnanda-background-button.jpg");
}
#button-ausbildung,
#button-anfrage {
	margin: 88px 0;
}

/* *************** Therapieangebote *********************************************************** */
.inhalt-ganze-breite {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#inhalt-ganze-breite-therapieangebote {
	margin-bottom: var(--abstand-2);	
}
.textbereich-innen-abstand {
	margin-top: var(--abstand-5);
}
.therapieangebote-abschnitt-einzeln {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 277px;
	margin-bottom: 96px;
	
}
.hintergrund-ganze-breite-therapieangebote {
	width: 100%;
	max-width: 1920px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-bottom: 0px solid transparent;
	box-shadow: 0px 0px 21px -6px var(--akzent-shadow);
	z-index: 0;
}
.hintergrund-ganze-breite-therapieangebote img {
	width: 100%;
}
.hintergrund-ganze-breite-therapieangebote-2,
.hintergrund-ganze-breite-therapieangebote-3 {
	display: none;
}
.therapieangebote-textbereich {
	width: 70%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: -450px;
	z-index: 20;
}
.therapieangebote-textbereich-links {
	width: 63%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: flex-start;	
}
.therapieangebote-textbereich-rechts {
	width: 63%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: flex-end;	
}
.therapieangebote-bild {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 70px;
}
.therapieangebote-bild img {
	width: 100%;
}
.therapieangebote-textbereich-aussen {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;	
}
.therapieangebote-titel {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: flex-start;
	text-align: left;
	margin-bottom: var(--abstand-7);	
}
.therapieangebote-titel h2 {
	align-self: flex-start;
	text-align: left;	
}
.klappelement-einzelelement-therapieangebote {
	width: 100%;
	padding: 21px 0 21px 0;
	border-top: 2px dotted;
}
.klappelement-ueberschrift h3 {  
	font-size: var(--unterzeile-ueberschrift);
}
.inhalt-klappelement-therapien {
	margin-top: 18px;
}
.klappelement-text-therapieangebote {
	margin-bottom: 9px;
}

/* *************** Kurse & Ausbildung *********************************************************** */
.ganze-breite-bottom {
	margin-bottom: var(--abstand-7);
}
.hintergrund-ganze-breite {
	max-width: 1920px;
	background-color: var(--background-hell);
}
.foto-kurse {
	width: 39%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 77px;
}
.foto-kurse img {
	width: 100%;
	border-radius: 50%;
	border: 6px solid var(--akzent);
}
.textbereich-innen-kurse {
	padding: var(--abstand-3) 0 var(--abstand-4) 0;
}
.fliesstext {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 18px;
}
.button-aussen-kurse {
	display: flex;
	margin-top: var(--abstand-4);
}
.button-innen-kurse {
	padding: 15px 99px;
	border: 3px solid var(--akzent);
	font-size: var( --schriftgroesse-button-gross);
	color: var(--akzent);
	letter-spacing: 1px;
}
.button-innen-kurse:hover {
	background-color: var(--akzent-shadow);
	color: #ffffff;
	border: 3px solid var(--akzent-shadow);
}
/* *************** grafische Elemente für alle *********************************************************** */
.border-bottom {
	width: 27%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-bottom: 5px solid var(--akzent);
	padding-top: var(--abstand-border-2);
	margin-bottom: var(--abstand-border);
}
.border-bottom-2 {
	width: 60%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-bottom: 3px solid var(--akzent);
	padding-top: 14px;
	margin-bottom: 27px;
}
.border-bottom-amnanda {
	width: 13%;	
}
.border-bottom-3 {
	width: 24%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-bottom: 5px solid var(--akzent);
	padding-top: 9px;
	margin-bottom: var(--abstand-border);
}
.button-aussen {
	display: flex;
	margin-top: 45px;
}
.button-innen {
	padding: 7px 27px;
	border: 2px solid var(--akzent);
	font-size: var( --schriftgroesse-button);
	color: var(--akzent);
}
.button-innen:hover {
	background-color: var(--background-hell);
	color: var(--link);
}
/* *************** Footer *********************************************************** */
#footer-aussen {
	width: 100%;
	max-width: 1920px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background-image: url("/wp-content/uploads/2025/10/naturheilpraxis-waltraud-berchtenbreiter-background-footer.jpg");
	background-size: cover;
	border-top: 0px solid transparent;
  	box-shadow: 0px -8px 3px -5px var(--akzent-shadow);
	padding: 0 0 63px 0;
}
.footer-innen {
	width: 70%;
	margin-top: -69px;
}
#footer-logo {
	width: 11%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 21px;
}
#footer-logo img {
	width: 100%;
}
#fusszeile-kontakt {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;	
}
#fusszeile-titel,
#fusszeile-adresse,
#fusszeile-tel-mail {
	line-height: 1.2;
	margin-bottom: var(--abstand-8); 
}
#fusszeile-titel h2 {
	letter-spacing: 2px;
}
#unterzeile-ueberschrift-footer {
	margin-top: -27px;
}
#fusszeile-impressum {
	font-size: 80%;	
	margin-top: var(--abstand-8); 
}
#fusszeile-impressum a {
	color: var(--schriftfarbe-text);	
}
#fusszeile-impressum a:hover {
	color: var(--link-hover);	
}
#border-bottom-footer {
	width: 61%;
	border-bottom: 4px solid var(--akzent);
	margin: 24px 0 33px 0;
}
#footer-kosten h2 {
	margin-bottom: 13px;
}
/* *************** Impressum/ Datenschutz *********************************************************** */
.textbereich-aussen-impressum {
	margin-bottom: 240px;
	margin-top: 96px;
}
.textbereich-impressum-innen {
	width: 60%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.textbereich-datenschutz-innen {
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.textbereich-impressum-ueberschrift h2 {
	font-size: var(--schriftgroesse-h3);
	margin-bottom: 9px;
	text-align: left;
	line-height: 1.15;
	}
.textabsatz-impressum {
	margin-bottom: 33px;
}
p {
	margin: 0;
}

/* ****************************************  RESPONSIVE DESIGN **************************************** */
/* ------------------------------------------------------------------------------------ 1800 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1800px) {
/* --------------------------------------------------------------- allgemein ------ */
	.textbereich-innen {
		width: 70%;
	}
/* --------------------------------------------------------------- Start ------ */	
	#start-kopf-container-transparenz {
		width: 55%;
	}
	#start-kopf-logo {
		width: 36%;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */	
	.therapieangebote-textbereich {
		margin-top: -415px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 256px;
	}
/* --------------------------------------------------------------- Kurse ------ */		
	.textbereich-innen-kurse {
		width: 60%;
	}
}
/* ------------------------------------------------------------------------------------ 1700 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1700px) {
/* --------------------------------------------------------------- Therapieangebote ------ */	
	.therapieangebote-textbereich {
		margin-top: -380px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 233px;
	}
}
/* ------------------------------------------------------------------------------------ 1600 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1600px) {
/* --------------------------------------------------------------- Kopfzeile ------ */
	#kopfzeile-container-aussen {
		padding-bottom: 11px;
	}
	.menu-desk {
		gap: 6px;
	}
	.seite-kopf-container {
		padding: 111px 0;
	}
	#start-kopf-container-logo-titel {
		margin: 75px 0;
	}
	#start-kopf-logo {
		width: 33%;
	}
/* --------------------------------------------------------------- Start ------ */	
	.textbereich-aussen {
		margin-top: 99px;
	}
	.hintergrund-ganze-breite-aussen {
		padding: 118px 0;
	}
	.start-drei-spalten {
		column-gap: 3%;
	}
	.border-bottom-2-spalten {
		width: 75%;
		padding-top: 9px;
		margin-bottom: 13px;
	}
	.border-bottom-amnanda {
		width: 18%;
		padding-top: 9px;
		margin-bottom: 13px;
	}
	#start-spalte-gesamte-breite {
	margin-top: 43px;
	}
	#spalte-amnanda-textbereich {
		width: 94.5%;
	}
	.button-aussen-spalten {
		margin-top: 33px;
	}
	#profil-zitat-aussen {
		width: 100%;
		margin-top: var(--abstand-5);
	}
/* --------------------------------------------------------------- Kurse ------ */		
	.foto-kurse {
		margin-bottom: 45px;
	}
	.fliesstext {
		margin-top: 0;
	}
	.textbereich-innen-kurse {
		padding: 109px 0 var(--abstand-5) 0;
	}
}
/* ------------------------------------------------------------------------------------ 1550 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1550px) {
	#kopfzeile-menu-container {
		width: 90%;
	}
	.menu-desk {
		gap: 0;
	}
	.menu-desk > li > a {
		padding: 0 16px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */	
	.therapieangebote-textbereich {
		margin-top: -356px;
	}
}
/* ------------------------------------------------------------------------------------ 1440 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1440px) {
/* --------------------------------------------------------------- allgemein ------ */
	h1 {
		font-size: 200%;
	}
	h2 {
		font-size: 169%;
	}
	.unterzeile-ueberschrift,
	.unterzeile-ueberschrift-profil,
	#unterzeile-ueberschrift-footer {
		font-size: 111%;
	}
/* --------------------------------------------------------------- Kopfzeile ------ */
	#kopfzeile-container-titel {
		width: 21%;
	}
	#kopfzeile-container-text {
		width: 100%;
		margin-left: 4%;
	}
	#kopfzeile-titel-logo {
		width: 18%;
	}
/* --------------------------------------------------------------- Start ------ */	
	#start-kopf-logo {
		width: 29%;
		margin-bottom: 18px;
	}
	.titel-zeile2 {
		font-size: 115%;
	}
	#start-kopf-unterzeile {
		font-size: 111%;
	}
	.start-textbereich-aussen-profil {
		margin-top: var(--abstand-2);
	}
	.start-profil,
	.foto-kurse {
		width: 45%;
	}
	#profil-zitat-aussen {
    	margin-bottom: 69px;
	}
/* --------------------------------------------------------------- amnanda ------ */	
	.seite-streifen-hintergrund {
		height: 444px;
		margin-top: 345px;
	}
	.amnanda-foto-auf-streifen {
		width: 69%;
		margin-top: -372px;
	}	
	#textbereich-aussen-amnanda {
		margin-top: 69px;
	}
	.textbereich-aussen {
		margin-bottom: var(--abstand-4);
	}
/* --------------------------------------------------------------- Therapieangebote ------ */	
	.therapieangebote-textbereich-links,
	.therapieangebote-textbereich-rechts {
		width: 73%;
	}
	.therapieangebote-textbereich-aussen {
		width: 100%;
	}
	.therapieangebote-bild {
		margin-bottom: 55px;
	}
/* --------------------------------------------------------------- Kurse ------ */		
	.textbereich-innen-kurse {
		width: 70%;
	}
/* --------------------------------------------------------------- Fusszeile ------ */
	#footer-logo {
		width: 14%;
		margin-bottom: 42px;
	}

/* --------------------------------------------------------------- Impressum/ Datenschutz ------ */
.textbereich-aussen-impressum {
	margin-bottom: 240px;
	margin-top: 96px;
}
	.textbereich-impressum-innen {
		width: 80%;
	}
	
	.border-bottom-impressum {
		width: 39%;  
		padding-top: 18px;
		margin-bottom: 30px;	
	}
}
/* ------------------------------------------------------------------------------------ 1366 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1366px) {
/* --------------------------------------------------------------- Kopfzeile ------ */	
	.menu-desk > li > a {
		padding: 0 14px;
	}
/* --------------------------------------------------------------- Start ------ */		
	.spalte-einzeln {
		padding: 30px;
	}
	#start-spalte-gesamte-breite {
		padding: 30px 0;
	}
	.spalte-textbereich {
		padding: 24px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */	
	#textbereich-innen-angebote {
		margin-top: 57px;
	}
	.therapieangebote-textbereich {
		margin-top: -337px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 206px;
	}
}
/* ------------------------------------------------------------------------------------ 1280 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1280px) {
/* --------------------------------------------------------------- allgemein ------ */
	.textbereich-aussen {
		margin: 80px 0 111px 0;
	}
	.textbereich-innen {
		width: 80%;
	}
	.border-bottom {
		width: 39%;
	}
/* --------------------------------------------------------------- Kopfzeile ------ */
	#kopfzeile-container-titel {
		width: 50%;
	}
	#kopfzeile-titel-logo {
		width: 9%;
	}
	#kopfzeile-container-text {
    	margin-left: 2%;
	}
	.menu-desk {
		display: none;
	}
	#kopfzeile-menu-container {
		width: auto;
	}
	.herunterziehen {
		transform: translateX(-50%) translateY(33%);
	}
	#kopfbereich-hamburger-container {
		display: flex;
	}
/* --------------------------------------------------------------- Start ------ */		
	#start-alle-spalten-aussen {
		width: 93%;
	}
	.hintergrund-ganze-breite-aussen {
		padding: 72px 0;
	}
	.spalte-einzeln {
		padding: 9px;
	}
	#start-spalte-gesamte-breite {
		padding: 9px 0;
	}
	#spalte-amnanda-textbereich {
    	width: 98.5%;
	}
	.spalte-textbereich {
		background: rgba(255, 255, 255, 0.93);
	}
	.start-textbereich-aussen-profil {
		margin-top: var(--abstand-3);
	}
	.start-profil {
    	width: 42%;
	}
	#profil-zitat-grafik {
		margin-top: -37px;
	}
/* --------------------------------------------------------------- amnanda ------ */	
	.seite-streifen-hintergrund {
		height: 369px;
		margin-top: 313px;
	}
	.amnanda-foto-auf-streifen {
		width: 66%;
		margin-top: -304px;
	}	
	#textbereich-aussen-amnanda {
		margin-top: 56px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */	
	#textbereich-innen-angebote {
		margin-top: 57px;
	}
	.therapieangebote-textbereich {
		width: 80%;
		margin-top: -408px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 213px;
	}
	.therapieangebote-textbereich-aussen {
		width: 100%;
	}
	.hintergrund-ganze-breite-therapieangebote-1,
	.hintergrund-ganze-breite-therapieangebote-3 {
		display: none;
	}
	.hintergrund-ganze-breite-therapieangebote-2 {
		display: flex;
	}
/* --------------------------------------------------------------- Kurse ------ */		
	.foto-kurse {
    	width: 39%;
	}
	.button-aussen-kurse {
		margin-top: var(--abstand-5);
	}
	.button-innen-kurse {
		padding: 9px 78px;
		font-size: 145%;
	}
/* --------------------------------------------------------------- Fusszeile ------ */
	.footer-innen {
		margin-top: -71px;
	}
	#footer-logo {
		margin-bottom: 36px;
	}
	#border-bottom-footer {
		width: 70%;
		margin: 27px 0 45px 0;
	}
/* --------------------------------------------------------------- Impressum/ Datenschutz ------ */
	.textbereich-aussen-impressum {
		margin-bottom: 227px;
		margin-top: 72px;
	}
	.border-bottom-impressum {
		width: 100%; 
		border-bottom: 3px solid var(--akzent);
	}
}
/* ------------------------------------------------------------------------------------ 1180 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1180px) {
/* --------------------------------------------------------------- Kopfzeile ------ */
	#kopfzeile-container-text {
    	margin-left: 2.5%;
	}
	#kopfzeile-titel-text1 {
		font-size: 127%;
		letter-spacing: 2px;
	}
	#kopfzeile-titel-text2 {
		font-size: 86%;
	}
/* --------------------------------------------------------------- Start ------ */	
	.seite-kopf-container {
		padding: 88px 0;
	}
	#start-kopf-container-transparenz {
		width: 69%;
	}
	#profil-zitat-aussen {
    	width: 80%;
    	margin-top: var(--abstand-6);
 	}
	#profil-zitat-grafik {
    	margin-top: -27px;
		margin-bottom: 39px;
	}
	#profil-zitat-text {
		font-size: 312%;
		line-height: 1.1;
		letter-spacing: 3px;
		margin-bottom: 24px;
	}
	#profil-zitat-autor {
		margin-bottom: 39px;
	}
/* --------------------------------------------------------------- amnanda ------ */	
	.seite-streifen-hintergrund {
		height: 333px;
		margin-top: 377px;
	}
	.amnanda-foto-auf-streifen {
		width: 74%;
		margin-top: -417px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */	
	.therapieangebote-titel h2{
		font-size: 152%;
	}
	#textbereich-innen-angebote {
		margin-top: 45px;
	}
	.therapieangebote-textbereich {
		margin-top: -370px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 182px;
	}
}
/* ------------------------------------------------------------------------------------ 1080 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 1080px) {
/* --------------------------------------------------------------- Kopfzeile ------ */	
	#kopfzeile-titel-logo {
		width: 11%;
	}
	#kopfbereich-hamburger {
		height: 21px;
		width: 39px;
	}
	.herunterziehen {
		transform: translateX(-50%) translateY(34%);
	}
/* --------------------------------------------------------------- Start ------ */	
	.seite-kopf-container {
		padding: 79px 0;
	}
	#start-kopf-logo {
		width: 26%;
		margin-bottom: 13px;
	}
	#start-kopf-titel {
		margin-bottom: 9px;
	}
	#start-kopf-unterzeile {
		padding-top: 9px;
	}
	.hintergrund-ganze-breite-aussen {
		padding: 63px 0;
	}  
	.start-drei-spalten {
    	column-gap: 2.3%;
	}
	#start-spalte-gesamte-breite {
    	margin-top: 23px;
	}
	.start-profil {
    	width: 53%;
	}
/* --------------------------------------------------------------- amnanda ------ */	
	.seite-streifen-hintergrund {
		margin-top: 326px;
	}
	.amnanda-foto-auf-streifen {
		margin-top: -333px;
	}	
	.textbereich-aussen {
		margin-bottom: 75px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */
	.therapieangebote-textbereich {
		margin-top: -317px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 145px;
	}
	.therapieangebote-bild {
		margin-bottom: 44px;
	}  
	.therapieangebote-titel {
		margin-bottom: 21px;
	}
/* --------------------------------------------------------------- Kurse ------ */		
	.foto-kurse {
    	width: 45%;
	}
/* --------------------------------------------------------------- Fusszeile ------ */	
	.footer-innen {
		margin-top: -60px;
	}
/* --------------------------------------------------------------- Impressum/ Datenschutz ------ */
	.textbereich-aussen-impressum {
		margin-bottom: 156px;
		margin-top: 45px;
	}
}
/* ------------------------------------------------------------------------------------ 960 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 960px) {
/* --------------------------------------------------------------- allgemein ------ */	
	#alles {
		font-size: 18px;
	}
	.textbereich-aussen {
		margin: 66px 0 99px 0;
	}
/* --------------------------------------------------------------- Kopfzeile ------ */		
	#kopfzeile-titel-text1 {
    	font-size: 124%;
	}
/* --------------------------------------------------------------- Start ------ */	
	.seite-kopf-container {
		padding: 69px 0;
	}
	#start-kopf-container-logo-titel {
		margin: 54px 0;
	}
	#start-kopf-logo {
		width: 21%;
		margin-bottom: 11px;
	}
	.border-bottom-2-spalten {
		width: 100%;
	}
	.border-bottom-amnanda {
		width: 27%;
	}
	.start-textbereich-aussen-profil {
    	margin-top: var(--abstand-4);
	} 
	.profil-textbereich {
		margin-bottom: var(--abstand-5);
	}
	.start-profil {
		margin-bottom: var(--abstand-7);
	}  
	#profil-zitat-aussen {
		margin-top: var(--abstand-7);
    	margin-bottom: 54px;
	}
/* --------------------------------------------------------------- amnanda ------ */	
	.seite-streifen-hintergrund {
		height: 285px;
	}
	#textbereich-aussen-amnanda {
		margin-top: 44px;
	}
	.klappelemente-container {
		margin-bottom: 56px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */
	.therapieangebote-textbereich {
		width: 70%;
		margin-top: -349px;
	}
	.therapieangebote-textbereich-links, 
	.therapieangebote-textbereich-rechts {
		width: 100%;
		align-self: center;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 193px;
	}
	#inhalt-ganze-breite-therapieangebote {
		margin-bottom: var(--abstand-4);
	}
	
	.klappelement-einzelelement-therapieangebote {
		padding: 15px 0 15px 0;
	}
/* --------------------------------------------------------------- Kurse ------ */		
	.textbereich-innen-kurse {
		padding-top: 88px;  
	}
	.foto-kurse {
		margin-bottom: 27px;
	}
/* --------------------------------------------------------------- Impressum/ Datenschutz ------ */
	.textbereich-aussen-impressum {
		margin-bottom: 156px;
		margin-top: 45px;
	}
}
/* ------------------------------------------------------------------------------------ 900 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 900px) {
/* --------------------------------------------------------------- Start ------ */		
	#start-alle-spalten-aussen {
		width: 80%;
		flex-direction: column-reverse;
	}
	.start-drei-spalten {
		flex-direction: column;
		justify-content: space-between;
	}
	.spalte-einzeln {
		margin-top: 36px;
	}
	#start-spalte-gesamte-breite {
    	margin-top: 0;
		padding: 0;
	}
	.spalte-textbereich,
	#amnanda-textbereich-innen {
		padding: 33px;
	}
	
	#spalte-amnanda-textbereich {
    	width: auto;
		padding: 9px;
	}
	.border-bottom-amnanda {
		width: 49%;  
		margin-bottom: 21px;
	}
	.border-bottom-2-spalten {
		width: 49%;  
		margin-bottom: 21px;
	}
	.button-aussen-spalten {
		margin-top: 24px;
	}
	#profil-zitat-aussen {
    	width: 100%;
	}  
	#profil-zitat-grafik {
		width: 11%;
    	margin-top: -18px;
		margin-bottom: 27px;
	}
	#profil-zitat-text {
    	font-size: 295%;
	}
/* --------------------------------------------------------------- amnanda ------ */	
	.seite-streifen-hintergrund {
		height: 260px;
		margin-top: 316px;
	}
	.amnanda-foto-auf-streifen {
		width: 77%;
	}
	.container-inhalt-klappelement,
	.klappelement-unterzeile-ueberschrift {
		margin-left: 30px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */
	.therapieangebote-textbereich {
		margin-top: -327px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 180px;
	}
	.inhalt-klappelement-therapien {
		margin-top: 9px;
	}
/* --------------------------------------------------------------- Fusszeile ------ */	  
	.footer-innen {
		margin-top: -56px;
	}
	#footer-logo {
		width: 16%;
	}
/* --------------------------------------------------------------- Back to top ------ */		
	#back-to-top {
		right: 18px;
	}
}
/* ------------------------------------------------------------------------------------ 769 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 769px) {
/* --------------------------------------------------------------- allgemein ------ */	
	h1 {
		font-size: 178%;
	} 
	h2 {
    	font-size: 149%;
	}
	.a-amnanda {
		font-size: 125%;
	}
	.unterzeile-ueberschrift,
	.unterzeile-ueberschrift-profil,
	#unterzeile-ueberschrift-footer {
		font-size: 105%;
	}
	.border-bottom {
		width: 52%;
		padding-top: 13px;
		margin-bottom: 33px;
		border-bottom: 4px solid var(--akzent);
	}
	.textbereich-aussen {
		margin: 50px 0 80px 0;
	}
/* --------------------------------------------------------------- Kopfzeile ------ */		
	#kopfzeile-titel-logo {
		width: 15%;
	}
/* --------------------------------------------------------------- Start ------ */	
	#start-kopf-container-transparenz {
		width: 73%;
		background: rgba(255, 255, 255, 0.65);
	}
	.seite-kopf-container {
		padding: 49px 0;
	}
	#start-kopf-logo {
		width: 18%;
		margin-bottom: 9px;
	}
	.titel-zeile2 {
		font-size: 104%;
	}
	#start-kopf-unterzeile {
		font-size: 108%;
	}
	.button-innen {
		padding: 5px 24px;
		font-size: 93%;
	}
	.start-textbereich-aussen-profil {
    	margin-top: var(--abstand-4);
	}
	.start-profil {
		width: 63%;
	}
/* --------------------------------------------------------------- amnanda ------ */
	#unterzeile-ueberschrift-amnanda {
		display: none;
	}
	#nur-text-amnanda {
		margin-top: 0;
	}
	.seite-streifen-hintergrund {
		height: 228px;
		margin-top: 275px;
	}
	.amnanda-foto-auf-streifen {
		width: 80%;
		margin-top: -278px;
	}
	#textbereich-aussen-amnanda {
		margin-top: 36px;
	}
	.klappelemente-container {
		margin-top: 45px;
		margin-bottom: 49px;
	}
	.klappelement-einzelelement {
		width: 100%;
		padding: 15px 0 15px 0;
	}
	
	.hervorhebung {  
		margin: 9px 0 9px 0;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */
	#textbereich-innen-angebote {
		margin-top: 35px;
	}
	.therapieangebote-titel h2 {
		font-size: 147%;
	}
	.therapieangebote-textbereich {
		margin-top: -287px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 160px;
	}
	.therapieangebote-abschnitt-einzeln-top {
		margin-top: 135px;
	}
	.therapieangebote-bild {
		margin-bottom: 36px;
	}
/* --------------------------------------------------------------- Kurse ------ */	
	.ganze-breite-bottom {
		margin-bottom: 18px;
	}
	.textbereich-innen-abstand {
		margin-top: var(--abstand-6);
	}
	.textbereich-innen-kurse {
		padding-top: 72px; 
		padding-bottom: var(--abstand-7);
		margin-bottom: 44px;
	}
	.border-bottom-3 {
		width: 39%;
		border-bottom: 4px solid var(--akzent);
		padding-top: 6px;
		margin-bottom: 33px;
	}
	.button-aussen-kurse {
		margin-top: var(--abstand-6);
	}
	.button-innen-kurse {
		padding: 9px 66px;
		font-size: 133%;
	}
/* --------------------------------------------------------------- Fusszeile ------ */	  
	.footer-innen {
		margin-top: -56px;
	}
	#footer-logo {
    	margin-bottom: 24px;
	}
	#border-bottom-footer {
		width: 75%;
		margin: 18px 0 27px 0;
	}
	#fusszeile-titel h2 {
 		font-size: 169%;
		letter-spacing: 3px;
	}
	#unterzeile-ueberschrift-footer {
		letter-spacing: 1px;
		margin-top: -25px;
	}
	#fusszeile-adresse {
		line-height: 1.3;
	}
/* --------------------------------------------------------------- Impressum/ Datenschutz ------ */
	.textbereich-aussen-impressum {
		margin-bottom: 156px;
		margin-top: 45px;
	}
	.border-bottom-impressum {
		width: 100%;
		border-bottom: 3px solid var(--akzent);
		padding-top: 13px;
		margin-bottom: 30px;	
	}
	ul {
		padding-left: 18px;
	}
	li {
		margin: 0 0 3px 0;
	}
}
/* ------------------------------------------------------------------------------------ 700 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 700px) {
/* --------------------------------------------------------------- Therapieangebote ------ */
	.therapieangebote-titel h2 {
		font-size: 143%;
	}
	.therapieangebote-titel {
    	margin-bottom: 27px;
	}
	#textbereich-innen-angebote {
		margin-top: 30px;
	}
	.therapieangebote-titel h2 {
		font-size: 147%;
	}
	.therapieangebote-textbereich {
		width: 80%;
		margin-top: -318px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 127px;
	}
	.hintergrund-ganze-breite-therapieangebote-1,
	.hintergrund-ganze-breite-therapieangebote-2 {
		display: none;
	}
	.hintergrund-ganze-breite-therapieangebote-3 {
		display: flex;
	}
	.klappelement-einzelelement-therapieangebote {
		padding: 11px 0 11px 0;
	}
	.therapieangebote-abschnitt-einzeln-top {
    	margin-top: 109px;
	}
	#inhalt-ganze-breite-therapieangebote {
		margin-bottom: 45px;
	}
}
/* ------------------------------------------------------------------------------------ 660 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 660px) {
/* --------------------------------------------------------------- allgemeim ------ */	
	h1 {
		font-size: 155%;
	}
	h2 {
		font-size: 145%;
	}
	.unterzeile-ueberschrift,
	.unterzeile-ueberschrift-profil {
    	font-size: 100%;
	}
	.klappelemente-container {
		margin-top: 39px;
		margin-bottom: 45px;
	}
	.klappelement-einzelelement {
		padding: 13px 0 13px 0;
	}
	.klappelement-unterzeile-ueberschrift {
		margin-top: 3px;
		margin-left: 0;
	}
	.container-inhalt-klappelement {
		margin-left: 0;
	}
/* --------------------------------------------------------------- Kopfzeile ------ */	
	#kopfzeile-container-titel {
		width: 69%;
	}
	#kopfzeile-container-aussen {
		padding-top: 11px;
		padding-bottom: 7px;
	}
	#kopfzeile-titel-logo {
		width: 13%;
		margin-top: 6px;
	}
	.seite-kopf-container {
		padding: 33px 0;
	}
	#kopfzeile-menu-2-container {
		padding: 9px 0;
	}
	.herunterziehen {
		transform: translateX(-50%) translateY(36%);
	}
	#menu-menu2 li {
		padding: 6px 0;
	}
	#kopfbereich-hamburger {
		width: 36px;
	}
/* --------------------------------------------------------------- Start ------ */	
	#start-kopf-container-logo-titel {
		margin: 36px 0;
	}
	#start-kopf-titel h1 {
		letter-spacing: 3px;
	}
	.titel-zeile2 {
		font-size: 99%;
		letter-spacing: 1px;
		margin-top: -3px;
	}
	#start-kopf-logo {
		width: 17%;
	}
	.textbereich-aussen {
		margin: 39px 0 66px 0;
	}
	.start-textbereich-aussen-profil {
		margin-top: 76px;
	}
	.start-profil {
		margin-bottom: 24px;
	}
	.profil-textbereich {
		margin-bottom: var(--abstand-6);
	}
	#profil-zitat-aussen {
		margin-top: 27px;
		margin-bottom: 44px;
	}
	#profil-zitat-grafik {
		width: 10%;
		margin-top: -13px;
		margin-bottom: 18px;
	}	
	#profil-zitat-text {
		font-size: 264%;
		line-height: 1.15;
		letter-spacing: 2px;
		margin-bottom: 13px;
	}
	#profil-zitat-autor {
		margin-bottom: 27px;
	}
/* --------------------------------------------------------------- amnanda ------ */
	.seite-streifen-hintergrund {
		height: 185px;
		margin-top: 244px;
	}
	.amnanda-foto-auf-streifen {
		margin-top: -248px;
	}
	.container-ausbildung {
		margin-top: 0;
		margin-bottom: 33px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */
	.therapieangebote-textbereich {
		margin-top: -278px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 88px;
	}
	.therapieangebote-bild {
		margin-bottom: 49px;
	}
	.therapieangebote-abschnitt-einzeln-top {
    	margin-top: 85px;
	}
	.inhalt-klappelement-therapien {
		margin-left: 30px;
	}
/* --------------------------------------------------------------- Fusszeile ------ */
	#footer-logo {
		width: 20%;
	}
	#fusszeile-titel h2 {
		letter-spacing: 2px;
	}
	#unterzeile-ueberschrift-footer {
		font-size: 97%;
	}
/* --------------------------------------------------------------- Impressum/ Datenschutz ------ */
	.textbereich-aussen-impressum {
		margin-bottom: 135px;
		margin-top: 45px;
	}
}
/* ------------------------------------------------------------------------------------ 630 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 630px) {
/* --------------------------------------------------------------- Therapieangebote ------ */
	.therapieangebote-textbereich {
		margin-top: -263px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 84px;
	}
}
/* ------------------------------------------------------------------------------------ 580 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 580px) {
/* --------------------------------------------------------------- amnanda ------ */
	.seite-streifen-hintergrund {
		margin-top: 204px;
	}
	.amnanda-foto-auf-streifen {
		margin-top: -193px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */
	.therapieangebote-textbereich {
		margin-top: -216px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 63px;
	}
	.therapieangebote-bild {
		margin-bottom: 30px;
	}
	.therapieangebote-abschnitt-einzeln-top {
		margin-top: 33px;
	}
	.klappelement-ueberschrift h3 {
		line-height: 1.15;
	}
/* --------------------------------------------------------------- Kurse ------ */	
	#unterzeile-ueberschrift-kurse {
		display: none;
	}
	#ganze-breite-kurse {
		margin-top: 36px;
		margin-bottom: 9px;
	}
	#unterzeile-ueberschrift-vhs {
		display: flex;
	}
	#border-bottom-kurse {
		width: 33%;
    	padding-top: 6px;
	}
	.foto-kurse {
		width: 55%;
		margin-bottom: 36px;
	}
	.textbereich-innen-kurse {
		padding-top: 66px;
		padding-bottom: 0;
		margin-bottom: 77px;
	}
}
/* ------------------------------------------------------------------------------------ 550 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 550px) {
/* --------------------------------------------------------------- allgemein ------ */	
	#alles {
    	font-size: 17px;
	}
	h2,
	#footer-kosten h2 {
    	font-size: 140%;
	}
/* --------------------------------------------------------------- Start ------ */	
	.textbereich-innen {
    	width: 88%;
	}
	.profil-textbereich h2 {
		font-size: 154%;
	}
/* --------------------------------------------------------------- amnanda ------ */
	.seite-streifen-hintergrund {
		margin-top: 185px;
	}
/* --------------------------------------------------------------- Fusszeile ------ */	
	#footer-aussen {
		padding: 0 0 86px 0;
	}
	.footer-innen {
		margin-top: -44px;
	}
	#footer-logo {
		width: 18%;
	}
	#fusszeile-titel, 
	#fusszeile-adresse, 
	#fusszeile-tel-mail {
		margin-bottom: 9px;
	}
	#border-bottom-footer {
		width: 90%;
		margin: 13px 0 27px 0;
	}
	#footer-kosten h2 {
		margin-bottom: 9px;
	}
}
/* ------------------------------------------------------------------------------------ 480 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 480px) {
/* --------------------------------------------------------------- allgemein ------ */	
	h1 {
		font-size: 145%;
	}
	h2 {
    	font-size: 130%;
	}
	.unterzeile-ueberschrift,
	.unterzeile-ueberschrift-profil {
		font-size: 93%;
	}
	.border-bottom {
		width: 100%;
		padding-top: 13px;
		margin-bottom: 21px;border-bottom: 3px solid var(--akzent);
	}	
/* --------------------------------------------------------------- Kopfzeile ------ */	
	#kopfzeile-container-aussen {
		box-shadow: 0px 6px 3px -5px var(--akzent-shadow);
	}
	#kopfzeile-titel-text1 {
		font-size: 118%;
	}
	#kopfzeile-titel-text2 {
		font-size: 84%;
	}
	#kopfbereich-hamburger {
		height: 18px;
		width: 33px;
	}
	.menu-hamburger-balken {
		height: 2px;
	}
/* --------------------------------------------------------------- Start ------ */	
	#start-kopf-container-transparenz {
		width: 75%;
		background: rgba(255, 255, 255, 0.8);
		box-shadow: 0px 0px 11px -6px var(--akzent-shadow);
	}
	#start-kopf-container-logo-titel {
		margin: 33px 0;
	}
	#start-kopf-titel {
		margin-bottom: 7px;
	}
	.titel-zeile2 {
		font-size: 94%;
	}
	#start-kopf-logo {
		width: 15%;
		margin-bottom: 6px;
	} 
	#start-kopf-unterzeile {
    	font-size: 105%;
		padding-top: 7px;
	}	
	#start-kopf-unterzeile {
		border-top: 2px solid var(--schriftfarbe-text);
	}
	.hintergrund-ganze-breite-aussen {
		box-shadow: 0px 0px 15px -6px var(--akzent-shadow);
	}	
	.textbereich-aussen {
    	margin: 30px 0 49px 0;
	}
	.unterzeile-ueberschrift-h2 {
		display: block;
		line-height: 1.25;
	}
	.start-titel-h2,
	.unterzeile-ueberschrift {
		display: none;
	}
	.start-textbereich-aussen-profil {
		margin-top: 60px;
	}
	.start-profil {
		width: 69%;
	}
	.border-bottom-profil {
		width: 66%;
		padding-top: 13px;
		margin-bottom: 33px;
	}
	#profil-zitat-text {
		font-size: 245%;
		letter-spacing: 1px;
	}
	#profil-zitat-aussen {
		margin-top: 9px;
		margin-bottom: 33px;
	}
	.profil-textbereich {
		margin-bottom: var(--abstand-7);
	}
/* --------------------------------------------------------------- amnanda ------ */
	.seite-streifen-hintergrund {
		height: 123px;
		margin-top: 204px;
	}
	#textbereich-aussen-amnanda {
		margin-top: 24px;
	}	
	.container-ausbildung {
		margin-top: -6px;
		margin-bottom: 24px;
	}
	#button-ausbildung, #button-anfrage {
		margin: 66px 0;
		font-size: 21px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */	
	#unterzeile-ueberschrift-angebote {
		display: block;
	}
	#border-bottom-angebote {
		width: 63%;
	}
	.therapieangebote-titel h2 {
		font-size: 136%;
		hyphens: none;
	}
	.therapieangebote-titel {
		margin-bottom: 18px;
	}
	.klappelement-ueberschrift h3 {
		font-size: 103%;
	}
	.therapieangebote-textbereich {
		margin-top: -185px;
	}
	.therapieangebote-bild {
		margin-bottom: 39px;
	} 
	.klappelement-einzelelement-therapieangebote {
    	padding: 9px 0 9px 0;
	}
	.therapieangebote-abschnitt-einzeln-top {
		margin-top: 11px;
	}
	#inhalt-ganze-breite-therapieangebote {
		margin-bottom: 15px;
	}
/* --------------------------------------------------------------- Kurse ------ */	
	#ganze-breite-kurse {
		margin-top: 27px;
	}
	.border-bottom-3 {
		width: 63%;
		padding-top: 9px;
		margin-bottom: 26px;
	}
	.foto-kurse {
		width: 63%;
		margin-bottom: 27px;
	}
	.textbereich-innen-kurse {
		padding-top: 55px;
		padding-bottom: 0;
	}  
	.button-innen-kurse {
		padding: 9px 55px;
		font-size: 133%;
	}
/* --------------------------------------------------------------- Fusszeile ------ */	
	#footer-aussen {
		box-shadow: 0px -6px 3px -5px var(--akzent-shadow);
	}
	.footer-innen {
		margin-top: -39px;
	}
	#footer-logo {
		margin-bottom: 18px;
	}
	#border-bottom-footer {
		width: 66%;
		margin: 5px 0 14px 0;
		border-bottom: 3px solid var(--akzent);
	}
	#fusszeile-titel h2 {
		font-size: 145%;
		letter-spacing: 3px;
	}
	#unterzeile-ueberschrift-footer {
    	font-size: 94%;
	}
/* --------------------------------------------------------------- Impressum/ Datenschutz ------ */
	.textbereich-aussen-impressum {
		margin-bottom: 101px;
		margin-top: 45px;
	}
}
/* ------------------------------------------------------------------------------------ 450 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 450px) {
/* --------------------------------------------------------------- amnanda ------ */
	.seite-streifen-hintergrund {
		margin-top: 185px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */
	.therapieangebote-textbereich {
		margin-top: -169px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 48px;
	}
	.therapieangebote-titel h2 {
		font-size: 127%;
	}
	.therapieangebote-bild {
		margin-bottom: 30px;
	}
	.therapieangebote-abschnitt-einzeln-top {
		margin-top: 11px;
	}
/* --------------------------------------------------------------- Fusszeile ------ */	
	#footer-logo {
		width: 20%;
	}
}
/* ------------------------------------------------------------------------------------ 400 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 400px) {
/* --------------------------------------------------------------- allgemein ------ */	
	h1 {
		font-size: 121%;
	}
	h2 {
		font-size: 118%;
	}
	.titel-zeile2 {
		font-size: 82%;
	}
	.unterzeile-ueberschrift-h2 {
    	font-size: 115%;
		line-height: 1.15;
	}
	.a-amnanda {
		font-size: 118%;
	}
	.klappelemente-container {
		margin-top: 33px;
		margin-bottom: 39px;
	}
	.klappelement-einzelelement {
		padding: 11px 0 11px 0;
	}
	.klappelement-ueberschrift-amnanda::before {
		margin: 9px 6px 0 0;
	}
/* --------------------------------------------------------------- Kopfzeile ------ */
	#kopfzeile-titel-logo {
		width: 15%;
	}
	#kopfzeile-titel-text1 {
    	font-size: 103%;
	}
	#kopfzeile-titel-text2 {
    	font-size: 75%;
	}	
	#menu-menu2 .menu-item {
		padding-left: 9%;
	}
/* --------------------------------------------------------------- Start ------ */	
	.seite-kopf-container {
		padding: 27px 0;
		margin-top: 6px;
	}
	#start-kopf-container-logo-titel {
		margin: 24px 0;
	}
	#start-kopf-logo {
		width: 13%;
	}
	#start-kopf-unterzeile {
		font-size: 92%;
		padding-top: 7px;
	}
	#start-alle-spalten-aussen {
		width: 88%;
	}	
	.spalte-textbereich, 
	#amnanda-textbereich-innen {
		padding: 27px;
	}	
	
	.start-textbereich-aussen-profil {
		margin-top: 76px;
	}
	.start-profil,
	.foto-kurse {
		width: 80%;
	}	
	.border-bottom-profil {
		width: 72%;
		padding-top: 13px;
		margin-bottom: 33px;
	}
	#profil-zitat-grafik {
		width: 15%;
		margin-top: -15px;
		margin-bottom: 27px;
	}
	#profil-zitat-text {
		font-size: 264%;
		line-height: 1.1;
		letter-spacing: 2px;
		margin-bottom: 13px;
	}
	.profil-textbereich h2 {
		font-size: 139%;
	}
	.profil-textbereich {
		margin-bottom: 39px;
	}
/* --------------------------------------------------------------- amnanda ------ */
	.seite-streifen-hintergrund {
		margin-top: 142px;
	}
	.amnanda-foto-auf-streifen {
		margin-top: -136px;
	}
	#textbereich-aussen-amnanda {
		margin-top: 18px;
	}
	#button-ausbildung, #button-anfrage {
		margin: 54px 0;
		font-size: 19px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */
	.therapieangebote-titel {
		margin-bottom: 24px;
	}
	.therapieangebote-textbereich {
		margin-top: -149px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-top: 39px;
	}  
	.therapieangebote-abschnitt-einzeln-top {
    	margin-top: 0;
	}	
	.therapieangebote-titel h2 {
		font-size: 127%;
		line-height: 1.15;
	}
	.therapieangebote-bild {
		margin-bottom: 30px;
	}
/* --------------------------------------------------------------- Impressum/ Datenschutz ------ */
	.textbereich-aussen-impressum {
		margin-bottom: 101px;
		margin-top: 33px;
	}
	.textbereich-impressum-ueberschrift h2 {
		font-size: 109%;
		margin-bottom: 11px;
	}
}
/* ------------------------------------------------------------------------------------ 360 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 360px) {	
/* --------------------------------------------------------------- allgemein ------ */	
	.unterzeile-ueberschrift-h2 {
    	font-size: 100%;
	}
/* --------------------------------------------------------------- Kopfzeile ------ */
	#kopfzeile-titel-logo {
		width: 17%;
		margin-top: 5px;
	}
	
	#kopfbereich-hamburger {
		width: 30px;
	}
/* --------------------------------------------------------------- Start ------ */	
	.seite-kopf-container {
		padding: 24px 0;
		margin-top: 3px;
	}
	#start-kopf-container-transparenz {
		width: 88%;
	}
	.start-textbereich-aussen-profil {
		margin-top: 55px;
	}
	.spalte-text-oben h3 {
		font-size: 104%;
	}
	.border-bottom-2-spalten,
	.border-bottom-amnanda {
		width: 100%;
		margin-bottom: 15px;
	}
/* --------------------------------------------------------------- amnanda ------ */
	.seite-streifen-hintergrund {
		margin-top: 123px;
		height: 103px;
	}
	.amnanda-foto-auf-streifen {
		margin-top: -116px;
	}
	#button-ausbildung, #button-anfrage {
		margin: 45px 0;
		font-size: 17px;
	}
	.container-ausbildung {
		margin-top: -13px;
	}
/* --------------------------------------------------------------- Therapieangebote ------ */
	.klappelement-ueberschrift h3 {
		font-size: 100%;
	}
	.therapieangebote-textbereich {
		margin-top: -135px;
	}
	.therapieangebote-titel h2 {
		font-size: 106%;
	}	
	.therapieangebote-bild {
		margin-bottom: 21px;
	}
	.therapieangebote-titel {
		margin-bottom: 16px;
	}
	.therapieangebote-abschnitt-einzeln {
		margin-bottom: 80px;
	}
/* --------------------------------------------------------------- Fusszeile ------ */		
	.footer-innen {
		margin-top: -34px;
	}
	#footer-logo {
		width: 22%;
	}
	#fusszeile-adresse,
	#fusszeile-tel-mail {
    	font-size: 15px;
	}
}
/* ------------------------------------------------------------------------------------ 330 ------ */
/* ----------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 330px) {	
/* --------------------------------------------------------------- Therapieangebote ------ */
	#unterzeile-ueberschrift-angebote {
		display: none;
	}
	#border-bottom-angebote {
		width: 49%;
		padding-top: 6px;
		margin-bottom: 30px;		  
	}	
}