/* #region */
/* #endregion */

/* Text-Elements ------------------------------------------------------- */
/* #region */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

h1 {
    font-size: 1.8em;
    margin-bottom: 0.9em;
    color: var(--blue);
}

h2 {
    font-size: 1.4em;
    margin-bottom: 0.5em;
    
}

h3 {
    font-size: 1.1em;
    margin-bottom: 0.4em;
}

h4 {
    font-size: 1em;
    margin-bottom: 0.3em;
}

h5, h6 {
    font-size: 1em;
    margin-bottom: 0.2em;
}

p {
    margin-bottom: var(--default-margin-bottom);
}

a {
    text-decoration: none;
    color: var(--blue);
}

a:hover {
    text-decoration: underline;
    color: var(--gray_darker);
}

strong {
    font-weight: 500;
}

em {
   
}

figure {
    margin-bottom: var(--default-margin-bottom);
}

figure.for_blockquotes {
    
    padding: 30px 1.5% 36px 2.4%;
    border-left: 5px solid var(--blue);
}

figure.for_blockquotes p {
    margin-bottom: 1em;
}

blockquote {
    font-size: 1.2em;
}

q {
    quotes: "«" "»";
}

figcaption {

}

figure.for_blockquotes figcaption {
    font-weight: 500;
}

figure.for_blockquotes figcaption cite {
    font-weight: 300;
    color: black;
}

/* #endregion */

/* Lists ------------------------------------------------------- */
/* #region */
ul, ol {
    margin-left: 20px;
    margin-bottom: var(--default-margin-bottom);
}

ul {

}

li {
    margin-bottom: 3px;
}

ul.char_list {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 6px;
}

ul.char_list li {
    display: inline-block;
    padding: 8px;
    font-size: 1.2em;
}
/* #endregion */

/* Tables ------------------------------------------------------- */
/* #region */
table {
    border-collapse: collapse;
    margin-bottom: var(--default-margin-bottom);
}

th {
    font-weight: 600;
}

th, td {
    text-align: left;
    padding: 5px 10px 5px 10px;
}

table.bordered th,
table.bordered td {
    border: 1px solid var(--darkgray);

}

table.row_bordered tr {
    border-bottom: 1px solid var(--darkgray);
}

table.row_bordered tr:first-child {
    border-top: 1px solid var(--darkgray);
}

table.zebra tr:nth-child(even) {
    background-color: var(--lightgray)
}

table.tbl_big th, table.tbl_big td {
    font-size: 1.2em;
    padding: 8px 14px 8px 14px;
}

table.tbl_small th, table.tbl_small td {
    font-size: 0.9em;
    padding: 3px 8px 3px 8px;
}

.table_wrapper {
    width: 100%;
    overflow-y: auto;
    margin: 0 0 1em;
  }
  
  .table_wrapper::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
  }
  
  .table_wrapper::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 3px solid #fff;
    background-color: rgba(0, 0, 0, .3);
  }
  
table.small_table td {
	padding: 0px 6px 0px 0px;
	white-space: nowrap;
	font-size: 16px;
}
/* #endregion */

/* Media ------------------------------------------------------- */
/* #region */

audio {
    width: 100%;
    height: 50px;
}

video {
    
}

/* Classes for Media */
.responsive {
    max-width: 100%;
    height: auto;
}

.width_75 {
    max-width: 75%;
    height: auto;
}

.width_50 {
    max-width: 50%;
    height: auto;
}

.width_25 {
    max-width: 25%;
    height: auto;
}

figure.for_images img {
    display: block;
    margin-bottom: 8px;
}

figure.for_images figcaption {
    font-size: 0.9em;
}

.video_block {
    margin-bottom: var(--default-margin-bottom);
    background-color: black;
    width: 640px;
    max-width: 100%;
}

.video_wrapper {
    position: relative;
	height: 0;
}

.video_wrapper iframe {
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ratio_21_9 {
     /* 9 / 21 * 100 */
     padding-bottom: 42.85%; 
}

.ratio_16_9 {
    /* 9 / 16 * 100 */
    padding-bottom: 56.25%; 
}

.ratio_4_3 {
     /* 3 / 4 * 100 */
     padding-bottom: 75%; 
}

.topic_image {
    width: 100%;
    max-width: 320px;
    padding: 12px;
    height: auto;
}

/* #endregion */


/* Other Common Tags ----------------------- */
/* #region */
hr {
    border: 0;
    height: 1px;
    background: var(--darkgray);
    margin-bottom: var(--default-margin-bottom);
}
/* #endregion */


/* Navigation ------------------------------------------------------- */
/* #region */

/* Hamburger-Icon animiert */
#hamburger {
    display: none;
}

.hamburger-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    height: 1.7em;
    width: 1.7em;
    position: relative;
    cursor: pointer;
    background: currentColor;
    border:10px solid currentColor;
    border-radius: 3px;
}
  
.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after {
    content: '';
    position: absolute;
    height: 3px;
    width: 1.7em;
    background: white;
    transition: all .2s ease;
  }
  
  .hamburger-icon {
    top: 0.75em
  }
  
  .hamburger-icon:before {
    top: -0.55em
  }
  
  .hamburger-icon:after {
    top: 0.55em
  }
  
  
/* Darstellung wenn das Close-Icon angezeigt werden soll */
.hamburger-active .hamburger-icon-container {
    color: var(--blue);
  }
  
.hamburger-active .hamburger-icon {
    background: transparent;
    transform: rotate(-135deg)
}
  
.hamburger-active .hamburger-icon:before,
.hamburger-active .hamburger-icon:after {
    top: 0
  }
  
.hamburger-active .hamburger-icon:before {
    transform: rotate(90deg)
}
  
nav {
    text-align: right;
    align-self: end;
    padding-bottom: 30px;
    padding-right: 4px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
   	padding-top: 32px;
}

nav ul li {
    display: inline-block;
    text-align: left;
    vertical-align: top;
}

nav ul li a {
    text-decoration: none;
    padding: 10px 12px;
    color: black;
    font-size: 1.11em;
    line-height: 1.15em;
    display: inline-block;
}

nav ul li a:hover {
    color: var(--blue);
}

nav ul li.active a {
    color: var(--blue);
}

nav ul li.active a:hover {
    color: black;
}
/* #endregion */

/* Page Structure ------------------------------------------------------- */
/* #region */
#container {
    max-width: 1280px;
    margin: 0 auto 25px auto;
    background-color: #FFFFFF;
}

#nav_wrapper {
    padding: 25px 2% 16px 5.2%;
    display: grid;
    /* Angabe MIT Lang-Switcher  */
    grid-template-columns: 10% 78% 8%;
   	/* Angabe OHNE Lang-Switcher */
    /* grid-template-columns: 18% 78%;  */
    background-color: #FFFFFF;
}

#logo {
    text-align: left;
}

#logo a img {
    max-width: 72px;
    width: 100%;
    height: auto;
}

#lang_switcher {
	/* Wird vorläufig ausgeblendet */
	/* display: none; */
    text-align: right;
    
    align-self: end;
   
    padding-bottom: 37px;
    font-size: 1.11em;

}

#lang_switcher a {

    text-decoration: none;
    color: black;
}

#lang_switcher a.active {
    text-decoration: none;
    color: var(--red);
}

main, div.teaserblock_startseite {
    padding: 25px 5.2% 20px 5.2%;
}

main.pos_relative {
    position: relative;
}

#hero_img {
    margin: 0 auto;
    text-align: center;
}

#hero_img img {
    width: 100%;
    max-width: 1182px;
    height: auto;
}

#homepage_text_block {
    top: 62%;
    left: 6%;
    position: absolute;
    z-index: 5;
}

#homepage_text_block p {
    font-size: 1.3em;
}

#ueber_mich_grid {
    display: grid;
    grid-template-columns: 40% 60%;
}

#uebermich_mittelteil {
    text-align: center;
    width: 72%;
    margin: 24px auto;
}

#uebermich_mittelteil img {
    width: 100%;
    max-width: 1079px;
    height: auto;
    
}

#bild_col img {
    width: 96%;
    max-width: 1224px;
    height: auto;
}

#angebot_grid {
    margin-bottom: var(--default-margin-bottom);
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    border-top: 1px solid black;
    border-left: 1px solid black;
}

#angebot_grid > div {
    padding: 15px 4px 1px 10px;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    position: relative;
 }
 
/* Buttons für Anmeldung Angebote */
.wrapper_anmeldenBtn {
	width: 100%;
	height: 46px;
	display: flex;
  	justify-content: center;
  	align-items: center;
}

.anmeldenBtn {
	display: inline-block;	
	background-color: var(--blue);
  	border: none;
  	border-radius: 5px;
  	color: white;
  	padding: 10px 24px;
  	text-align: center;
  	text-decoration: none;
  	font-size: 18px;
  	cursor: pointer;
  	position: absolute;
  	bottom: 10px;
}

.anmeldenBtn:hover {
	color: white;
	text-decoration: none;
}
  
#kunsttherapie_centered_box {
    margin-top: 24px;
    margin-bottom: 24px;
    text-align: center;
}

#kunsttherapie_centered_box img {
    width: 100%;
    max-width: 1182px;
    height: auto;
}

.claim_kunstherapie {
    font-size: 1.2em;
    margin-bottom: 2px;
}

#my-gallery figure {
    display: inline-block;
    margin-right: 1.2%;
    max-width: 300px;
    width: 31.2%;
    height: auto;
    margin-bottom: 22px;
}

#my-gallery figure img {
	width: 100%;
	height: auto;
}

#my-gallery figure figcaption {
	font-size: 0.9em;
}

.einblicke_gallery_separator {
    margin-bottom: 18px;
    display: flex;
  	align-items: start;
}

#my-gallery figure.figure_einblicke {
    margin-bottom: 0;
    display: inline-block;
    max-width: 300px;
    width: 31.2%;
    margin-right: 1.2%;

}

#my-gallery figure.figure_einblicke img {
    width: 100%;
    height: auto;
}


#kontakt_grid {
	display: grid;
    grid-template-columns: 42% 42%;
    margin-bottom: 2px;
}


footer {
    border-top: 1px solid var(--blue);
    padding: 30px 2.4% 16px 2.4%;
    text-align: center;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    display: inline-block;
}

footer ul li a {
    color: black;
    text-decoration: none;
    display: inline-block;
    padding: 10px 16px;
    margin: 0 5px;
}

footer ul li.active a {
    color: var(--blue);
}

footer ul li.active a:hover {
    color: black;
}


/* #endregion */

/* Common Classes ------------------------------------------------------- */
/* #region */
/* Klassen für Schriftzug "Tor zur Kraft" */

.brand_font {
	 font-family: 'morningdewregular';
}

h1.brand {
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.75);
    font-size: 4.8em;
    letter-spacing: 1px;
}

.brand_white {
	color: white;
}

.brand_blue {
	color: var(--blue);
}

.brand_brown {
	color: var(--brown);
}

.brand_klein {
	font-size: 0.6em;
}

.brand_name {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.6em;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.75);
}

.brand_name_lauftext {
    text-transform: uppercase;
    font-size: 1.2em;
    letter-spacing: 1px;
}


.bg_gray_lighter {
    background-color: var(--gray_lighter);
}

.bg_gray_light {
    background-color: var(--gray_light);
}

.bg_gray {
    background-color: var(--gray);
    color: white;
}

.bg_gray_dark {
    background-color: var(--gray_dark);
    color: white;
}

.bg_gray_darker {
    background-color: var(--gray_darker);
    color: white;
}

.bg_gray_darkest {
    background-color: var(--gray_darkest);
    color: white;
}


.bg_red {
    background-color: var(--red);
}

.border_red {
    border: 2px solid var(--red);
}

.text_red {
    color: var(--red);
}

.bg_green {
    background-color: var(--green);
}

.border_green {
    border: 2px solid var(--green);
}

.text_green {
    color: var(--green);
}

.bg_blue {
    background-color: var(--blue);
}

.border_blue {
    border: 2px solid var(--blue);
}

.text_blue {
    color: var(--blue);
}

.text_black {
    color: black;
}


.highlight {
    color: var(--blue);
}

.introtext {

}
/* #endregion */

/* Mediaqueries ------------------------------------------------------- */

/* Breakpoint smaller as 1100px */
/* #region */
@media screen and (max-width: 1100px) {
    h1.brand {
        font-size: 4em;
    }
}
/* #endregion */

/* Breakpoint smaller as 992px */
/* #region */
@media screen and (max-width: 992px) {
    body {
        font-size: 16px;
    }

    #logo a img {
        max-width: 64px;
        width: 100%;
        height: auto;
    }

    nav ul li a {
        padding-left: 10px;
        padding-right: 10px;
    }
    main {
        padding-left: 3%;
        padding-right: 3%;
    }
    #nav_wrapper {
        padding-left: 3%;
    }

    h1.brand {
        font-size: 3.6em;
    }
    
    .invisible_992 {
    	display: none;
    }
}
/* #endregion */

/* Breakpoint smaller as 880px */
/* #region */
@media screen and (max-width: 880px) {
    #logo a img {
        max-width: 56px;
        width: 100%;
        height: auto;
    }

    nav ul li a {
        padding-left: 8px;
        padding-right: 8px;
    }
    main {
        padding-left: 2%;
        padding-right: 2%;
    }
    #nav_wrapper {
        padding-left: 2%;
    }
    h1.brand {
        font-size: 3.2em;
    }
}
/* #endregion */

/* Breakpoint smaller as 768px */
/* #region */
@media screen and (max-width: 768px) {
    #nav_wrapper {
        padding-left: 1.5%;
    }

    main {
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
}
/* #endregion */

/* Breakpoint smaller as 767px, show hamburger menu */
/* #region */
@media screen and (max-width: 767px) {
    #logo a img {
        max-width: 40px;
        width: 100%;
        height: auto;
    }

    #nav_wrapper {
        padding-top: 10px;
        padding-bottom: 2px;
        display: block;
        position: fixed;
        width: 97%;
        z-index: 10;
        box-shadow: 0px 16px 12px 0px rgba(255,255,255,0.95);
    }

    nav {
        padding-bottom: 0;
    }

    nav ul {
        display: none;
        background-color: var(--blue);
        position: absolute;
        width: 60%;
        right: 0;
        top: 72px;
        z-index: 10;
        box-shadow: -4px 4px 7px 0px rgba(0,0,0,0.53);
    }
    
    nav ul li {
        display: block;
        border-bottom: 1px solid white;
        height: auto;
    }

    nav ul li:last-child {
        border-bottom: 0;
    }

    nav ul li a {
        color: white;
        display: block;
        padding: 12px 20px 12px 5px;
    }

    nav ul li a:hover {
        color: var(--brown);
        text-decoration: none;
    }

    nav ul li.active a {
        color: var(--brown);
    }

    #hamburger {
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 14px;
        z-index: 15;
    }
    #lang_switcher {
        position: absolute;
        right: 84px;
        top: 26px;
        z-index: 15;
    }
    #lang_switcher a {
        padding: 12px 10px;
    }

    main {
        padding-top: 92px;
    }

    h1.brand {
        font-size: 3em;
    }

    #ueber_mich_grid {
        display: block;
    }

    #ueber_mich_grid img {
        width: 60%;
        height: auto;
    }
    #kontakt_grid {
    	display: block;
    }
}
/* #endregion */

/* Breakpoint smaller as 576px */
/* #region */
@media screen and (max-width: 576px) {

    h1.brand {
        font-size: 2.4em;
    }

    #angebot_grid {
        display: block;
        border-top: 1px solid black;
        border-left: 0;
    }
    
    #angebot_grid > div {
        padding: 18px 0 6px 0;
        border-bottom: 1px solid black;
        border-right: 0
     }

    #angebot_grid p {
        margin-bottom: 1em;
     }

    #angebot_grid h2 {
        font-size: 1.2em;
    }

    #ueber_mich_grid img {
        width: 84%;
        height: auto;
    }

    #uebermich_mittelteil {
        width: 96%;
    }

    footer {
        padding: 12px 1% 14px 1%;
    }
    
    footer ul li a {
        padding: 10px 4px;
        font-size: 14px;
    }
}
/* #endregion */

/* Breakpoint smaller as 576px */
/* #region */
@media screen and (max-width: 576px) {

    h1.brand {
        font-size: 2.2em;
        line-height: 1;
    }
    
    #homepage_text_block p {
    font-size: 1.1em;
}
}
/* #endregion */


