/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/*vars*/

:root {
	--clr_text: #3B3B3A;
	--clr_main: #A51E37;
	--clr_hlt: #9AD5CF;
}

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: var(--clr_text);
	font-family: "SlateLight", Arial, sans-serif;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
	height: auto;
}
a {
	color: var(--clr_text);
	text-decoration:none;
}
a:hover {
	color: var(--clr_text);
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	font-size: 2.1rem;
	position:relative;
}

main {
	padding-top: 90px;
}

section > * {
	width: 95%;
	max-width: 1600px;
	margin: 0 auto;
}

.main_section {
	padding-bottom: 6em;
}

/* header */
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0.3);
	z-index: 10;
}
.header_inner {
	width: 95%;
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* logo */
.logo {
	height: 90px;
	padding: 10px 0;
}
.logo-img {
	height: 100% !important;
	width: auto !important;
}
/* nav */
.nav {
	display: flex;
	align-items: center;
}

.nav ul {
	list-style: none;
	display: flex;
	letter-spacing: 0.04em;
	padding: 0;
	margin: 0;
}

.nav > ul > li  {
	display: inline-block;
	margin-right: 1em;
	position: relative;
}

.nav > ul > li > a {
	text-transform: uppercase;
	padding: 1em;
	display: inline-block;
}

.nav > ul > li.menu-item-has-children > a::after {
	content: ' ';
	font-family: "Font Awesome 5 Pro";
}



.nav > ul > li:hover > a {
	color: var(--clr_main);
}

.nav .sub-menu {
	position: absolute;
	display: none;
	flex-direction: column;
}

.nav li:hover .sub-menu {
	display: flex;
}

.nav .sub-menu li {
	display: block;
}

.nav .sub-menu a {
	padding: 0.6em 1.2em;
	background-color: var(--clr_hlt);
	display: block;
	white-space: nowrap;
}

.nav .sub-menu a:hover {
	background-color: var(--clr_main);
	color: #fff;
}

.wech_burger {
	width: 1.3em;
	height: 1.3em;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.burger_line {
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: var(--clr_main);
}

.wech_burger:hover .burger_line {
	background-color: var(--clr_hlt);
}

.burger_line.line1 {
	transform: translateY(-200%);
}

.burger_line.line3 {
	transform: translateY(200%);
}



/* sidemenu */
#sidemenu {
	position: fixed;
	width: auto;
	height: 100%;
	z-index: 12;
	right: 0;
	top: 0;
	background-color: var(--clr_main);
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	padding-bottom: 1.5em;
	transition: all 0.5s;
	transform: translateX(105%);
}

#sidemenu.active {
	transform: translateX(0%);
}

.sidemenu_close {
	width: 2em;
	height: 2em;
	position: fixed;
	top: 2em;
	right: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.sidemenu_close::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: #fff;
	transform: rotate(45deg);
	transform-origin: center center;
}

.sidemenu_close::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: #fff;
	transform: rotate(-45deg);
	transform-origin: center center;
}

.sidemenu_close:hover::before, .sidemenu_close:hover::after {
	background-color: #000;
}


.sidemenu_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2em 6em 2em 3em;
	text-transform: uppercase;
	font-size: 1.5em;
	overflow-y: auto;
}

.sidemenu_inner strong {
	margin-top: 1.5em;
}

.sidemenu_inner a {
	color: #fff;
	padding-left: 1em;
}

.sidemenu_inner a:hover {
	text-decoration: underline;
}

.mobile_nav {
	display: none;
}

/* footer */
.footer {
	padding: 3em 0;
	font-size: 0.9em;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

.page_head {
	min-height: 22em;
	padding-top: 4em;
	padding-bottom: 2em;
	position: relative;
	/*background-color: #f3f3f3;*/
	color: #fff;
	padding-right: calc(50% - ((100vw - 1600px) / 2) + 4em);
}

.page-template-template-reduziert .page_head, .woocommerce-page .page_head {
	min-height: 16em;
}

 .page_head h2 {
	margin-bottom: 0;
}

.page_head::before {
	content: '';
	position: absolute;
	background-color: var(--clr_main);
	width: 100vw;
	height: 100%;
	top: 0;
	right: 5em;
	z-index: -1;
}


/*
.home .page_head::before {
	right: 5em;
}
*/

.page_head_img {
	width: 50%;
	padding-bottom: 33%;
	position: absolute;
	right: 0;
	top: 5em;
	display: flex;
}

.page_head_img > span {
	position: absolute;
	color: #000;
	top: 100%;
	right: 0;
	font-size: 0.8em;
	letter-spacing: 0.05em;
}


.page_head_img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center center;
}

article > div:first-child {
	padding-right: calc(50% + 4em);
	padding-top: 2.5em;
	min-height: 15em;
}

.page-template-template-reduziert article > div:first-child, .woocommerce-page article > div:first-child {
	padding-right: 0;
	min-height: 0;
}

.newsletter_section {
	overflow: hidden;
}

.newsletter_wrapper {
	padding: 3em 0;
	line-height: normal;
	background-color: var(--clr_hlt);
	position: relative;
}

.newsletter_wrapper::before {
	content: '';
	background-color: var(--clr_hlt);
	position: absolute;
	width: 50vw;
	height: 100%;
	right: 50%;
	top: 0;
	z-index: -1;
}

.newsletter_wrapper::after {
	content: '';
	position: absolute;
	width: 50vw;
	height: 100%;
	left: 50%;
	top: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(/wp-content/uploads/2023/03/Newsletter_Weltethos-scaled.jpg);
}



/*------------------------------------*\
    BLOCKS
\*------------------------------------*/

/* timeline */

.wech-timeline {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.timeline_item {
	display: flex;
}

.timeline_item:nth-child(even){
	flex-direction: row-reverse;
}

.timeline_item > div {
	padding: 3em;
	width: 50%;
}

.timeline_item:nth-child(odd) .timeline_text_wrapper, .timeline_item:nth-child(even) .timeline_image_wrapper {
	border-right: 1px solid var(--clr_main);
}

.timeline_text {
	position: relative;
	-webkit-box-shadow: 0 0 1.5em 0 rgba(0,0,0,0.15);
	box-shadow: 0 0 1.5em 0 rgba(0,0,0,0.15);
}


.timeline_text::after {
	content: '';
	position: absolute;
	width: 2em;
	height: 2em;
	background-color: var(--clr_main);
	border-radius: 100%;
	top: calc(50% - 1em);
	border: 7px solid #fff;
	outline: 1px solid var(--clr_main);
}

.timeline_item:nth-child(odd) .timeline_text::after {
	right: calc(-4em - 1px);
}

.timeline_item:nth-child(even) .timeline_text::after {
	left: calc(-4em - 1px);
}

.timeline_inner {
	padding: 1.5em 2em;
	background-color: #fff;
	position: relative;
	transition: all 0.5s;
	z-index: 2;
}

.timeline_item:nth-child(odd) .timeline_inner {
	border-right: 3px solid #fff;
}

.timeline_item:nth-child(even) .timeline_inner {
	border-left: 3px solid #fff;
}

.timeline_text::before {
	content: '';
	width: 0.8em;
	height: 0.8em;
	background-color: #fff;
	transform-origin: center center;
	position: absolute;
	top: calc(50% - 0.4em);
	z-index: 0;
	transform: rotate(45deg);
	transition: all 0.5s;
}

.timeline_item:nth-child(odd) .timeline_text::before {	
	right: calc(-0.4em);
}

.timeline_item:nth-child(even) .timeline_text::before {
	left: calc(-0.4em + 1px);
}

.timeline_item:nth-child(odd):hover .timeline_inner {
	border-right: 3px solid var(--clr_main);
}

.timeline_item:nth-child(even):hover .timeline_inner {
	border-left: 3px solid var(--clr_main);
}

.timeline_item:hover .timeline_text::before {
	background-color: var(--clr_main);
}


.timeline_image_wrapper img {
	width: 100%;
}



/* foldbox */

.foldbox_wrapper {
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0);
	transition: all 0.5s;
	padding-right: 2em;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.foldbox_wrapper:hover {
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.2);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0.2);
}


.foldbox_titel {
	font-family: "SlateBold";
	padding: 1em;
	cursor: pointer;
	position: relative;
	transition: all 0.5s;
}

.active .foldbox_titel {
	color: var(--clr_main);
}

.foldbox_titel::after {
	content: '';
	font-family: "Font Awesome 5 Pro";
	position: absolute;
	right: -1em;
	top: 0.7em;
	font-weight: 700;
	font-size: 1.2em;
	transition: all 0.5s;
	transform: rotate(0deg);
	transform-origin: center center;
}

.active .foldbox_titel::after {
	transform: rotate(90deg);
}

.foldbox_content {
	display: none;
}

.foldbox_content > div {
	padding: 1em;
	padding-top: 0;
}

.foldbox_content > div p:first-of-type {
	margin-top: 0;
}



.buch_box img {
	-webkit-box-shadow: 0 0 0.6em 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 0.6em 0 rgba(0,0,0,0.3);
}


/*------------------------------------*\
    IMAGES
\*------------------------------------*/

/* slick slider */


.slick_ct {
	position: relative;
	width: 100%;
	/*height: 100%;
	top: 0;
	left: 0;*/
}

.slick-slide {
	padding-bottom: 1em;
}


.slick-dots {
	list-style: none;
	padding: 0;
	margin: 0 0.5em;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 3rem;
	/*column-gap: 0.5em;*/
	pointer-events: auto;
	padding-top: 0em;
	position: absolute;
	width: 100%;
}

.slick-dots li {
	margin: 0;
	padding: 0;
	display: flex;
	width: 1em;
	height: 1em;
	position: relative;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.slick-dots li::before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	display: inline-block;
	background-color: rgba(0,0,0,0.25);
}

.slick-dots li:hover::before {
	background-color: rgba(0,0,0,0.5);
}

.slick-dots li.slick-active::before {
	background-color: var(--clr_main);
}

.slick-dots button {	
	display: none;
}

.slick_ct .slick_item {
	padding-bottom: 60%;
	width: 100%;
	position: relative;
}

.slick_ct .slick_item img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center center;
}

.slick_ct .slick_item::after {
	content: attr(title);
	position: absolute;
	top: 100%;
	right: 0;
	font-size: 0.8em;
	color: #333;
}

.wech-slider.nocrop .slick_ct .slick_item img {
	object-fit: contain;
}

.slick_nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	top: 50%;
	padding: 0 0.5em;
	transform: translateY(-50%);
	font-size: 1.4em;
	position: absolute;
	z-index: 2;
	opacity: 0;
	transition: all 0.5s;
}

.slick_ct:hover .slick_nav {
	opacity: 1;
}

.slick_nav .nav_box {
	width: 1.5em;
	height: 1.5em;
	background-color: rgba(0,0,0,0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-radius: 100%;
	color: #fff;
}

.slick_nav .nav_box:hover {
	background-color: var(--clr_main);
}


/* embeds */

.wp-embed-aspect-16-9 {
	position: relative;
}

.wp-embed-aspect-16-9 > div {
	position: relative;
	width: 100%;
	padding-bottom: 56.6%;
}

.wp-embed-aspect-16-9 iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.wp-block-embed-spotify {
	margin: 1em 0;
}




/*------------------------------------*\
	SHOP
\*------------------------------------*/


body.spende .wc-block-grid__product-image img {
	object-fit: contain;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
	background-color: var(--clr_main);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
	background-color: var(--clr_hlt);
	color: var(--clr_text)
}

.theme-twentytwenty .wc-block-grid.has-4-columns:not(.alignwide):not(.alignfull) .wc-block-grid__product, .theme-twentytwenty .wc-block-grid.has-5-columns.alignfull .wc-block-grid__product, .wc-block-grid.has-4-columns:not(.alignwide):not(.alignfull) .wc-block-grid__product, .wc-block-grid.has-5-columns.alignfull .wc-block-grid__product {
	font-size: 1em;
}

.woocommerce .products ul, .woocommerce ul.products  {
	padding-top: 4em;
	display: flex;
	flex-wrap: wrap;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	width: 300px;
	margin: 0 4em 6em 0;
	text-align: center;
}

.woocommerce ul.products li.product a img {
	background-color: rgba(0,0,0,0.0);
	border: 5px solid rgba(0,0,0,0.04);
	object-fit: contain;
	object-position: center center;
	mix-blend-mode: multiply;
	height: 300px;
}

.woocommerce ul.products li.product a img:hover {
	background-color: #fff;
	border: 5px solid rgba(154, 213, 207,0.25);
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
	float: none;
}

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
	float: none;
}

.woocommerce div.product {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	transform: translateY(-15em);
	pointer-events: none;
	background-color: #fff;
}

.single-product .posted_in, .single-product .wc-tabs, .single-product .wc-tabs-wrapper h2, .woocommerce-shop .products, .woocommerce-shop .woocommerce-pagination {
	display: none !important;
}

.woocommerce .quantity .qty {
	padding: 0.45em 0.2em;
}

.single-product .sku_wrapper {
	font-family: "SlateBold";
}

.single-product .sku {
	font-family: "SlateLight";
}


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

strong {
	font-family: "SlateBold";
	font-weight: normal;
}

h1, .h1 {
	font-size: 1.15em;
	text-transform: uppercase;
	line-height: normal;
	font-weight: normal;
	font-family: "SlateLight";
	letter-spacing: 0.04em;
}

h2, .h2 {
	font-size: 2.8em;
	text-transform: uppercase;
	line-height: normal;
	font-family: "SlateBold";
	font-weight: normal;
}

h3, .h3 {
	font-size: 2.1em;
	line-height: normal;
	font-family: "SlateBold";
	font-weight: normal;
	margin: 0.7em 0;
}

h4, .h4 {
	font-size: 1.5em;
	line-height: normal;
	font-family: "SlateBold";
	font-weight: normal;
	margin: 0.4em 0;
}

h5, .h5 {
	font-size: 1.5em;
	line-height: normal;
	font-family: "SlateBold";
	font-weight: normal;
	margin: 0.4em 0;
	color: var(--clr_main);
}

.rank-math-breadcrumb {
	font-size: 0.8em;
	padding-bottom: 1em;
}

.rank-math-breadcrumb a {
	text-decoration: underline;
	font-family: "SlateBold";
	color: #fff !important;
}


.wp-block-button {
	font-family: "SlateBold";	
}

.wp-block-button.is-style-outline {
	color: var(--clr_main);
	background-color: transparent;
}

.wp-block-button.is-style-outline:hover {
	color: var(--clr_text);
}

.wp-block-button .wp-block-button__link {
	border-radius: 0;
	background-color: var(--clr_main);
	font-size: 1em;
}

.wp-block-button .wp-block-button__link:hover {
	background-color: var(--clr_hlt);
	colro: var(--clr_text);
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
}

p  a {
	text-decoration: underline;
}

p  a:hover {
	color: var(--clr_main);
}

article ul:not([class]) {
	list-style: none;
	padding-left: 1em;
}

article ul:not([class]) li {
	position: relative;
	margin: 0.8em 0;
}

article ul:not([class]) li::before {
	background-color: var( --clr_main);
	width: 8px !important;
	height: 8px !important;
	position: absolute;
	border-radius: 100%;
	content: "" !important;
	color: red !important;
	left: -1em;
	top: 0.5em;
}

.einzug1 {
	max-width: 1300px;
	margin: 0 auto;
}

.einzug2 {
	max-width: 1000px;
	margin: 0 auto;
}

.einzug3 {
	max-width: 800px;
	margin: 0 auto;
}

.wp-block-separator {
	opacity: 0.3;
	margin: 3em 0;
	border: none;
	border-top: 1px solid;
}

.prt_cols {
	gap: 3em;
}

.prt_cols .wp-block-column {
	background-color: var(--clr_hlt);
	padding-bottom: 1em;
}

.prt_cols .wp-block-column figure img {
	width: 100%;
	height: auto;
}

.wp-block-button a[href$=".pdf"]::before {
	content: ' ';
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
}



  
@font-face {
  font-family: "SlateBold";
  src: url('fonts/SlateBold/font.woff2') format('woff2'), url('fonts/SlateBold/font.woff') format('woff');
}
@font-face {
  font-family: "SlateRegular";
  src: url('fonts/SlateRegular/font.woff2') format('woff2'), url('fonts/SlateRegular/font.woff') format('woff');
}
@font-face {
  font-family: "SlateLight";
  src: url('fonts/SlateLight/font.woff2') format('woff2'), url('fonts/SlateLight/font.woff') format('woff');
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width : 1600px)  {
	
	h2, .h2 {
		font-size: 2.4em;
	}
	
	h3, .h3 {
		font-size: 1.8em;
	}
	
}


@media only screen and (max-width : 1400px)  {
	
	.wrapper {
		font-size: 1.8rem;
	}
	
	.nav > ul > li {
		margin-right: 0;
	}
	
	.nav > ul > li > a {
		padding: 1em 0.75em;
	}
	
	.page_head {
		padding-right: calc(50% +  0.5em);
	}
	
	
}


@media only screen and (max-width : 1200px)  {
	
	.nav > ul > li {
		display: none;
	}
	
	.nav > ul > li#wpmenucartli {
		display: inline-block;
		margin-right: 2em;
	}

	body.sidemenu_open {
		overflow-y: hidden;
	}
	
	#sidemenu {
		padding-bottom: 0;
	}
	
	.sidemenu_inner {
		font-size: 1em;
		padding: 2em 4em 2em 2em;
		justify-content: flex-start;
	}
	
	.sidemenu_close {
		top: 1.5em;
		right: 1.5em;
	}
	
	.mobile_nav {
		display: flex;
	}

	.mobile_nav ul {
		list-style: none;
		padding: 0;
		margin-top: 0;
	}
	
	.mobile_nav > ul > li {
		margin-top: 1.5em;
	}
	
	.mobile_nav > ul > li > a {
		font-family: "SlateBold";
		font-weight: normal;		
		padding-left: 0;
	}
	
	.mobile_nav  ul li li a {
		display: inline-block;
	}
	
	.mobile_nav #wpmenucartli {
		display: none;
	}
	
	.newsletter_wrapper::after {
		display: none;
	}
	
	.newsletter_section {
		overflow: hidden;
	}
	
	.newsletter_wrapper::before {
		width: 110vw;
		right: -5vw;
	}
	
	
}

@media only screen and (max-width : 1000px)  {
	
	.main_section {
		overflow-x: hidden;
	}
	
	.page_head {
		padding-right: 0;
		
	}
	
	.page_head::before {
		width: 110vw;
		right: -5vw;
		height: calc(100% - 20vw);
	}
	
	.page_head_img {
		width: 100%;
		padding-bottom: 0;
		position: relative;
		right: auto;
		top: auto;
		padding-top: 2em;
		flex-direction: column;
	}
	
	.page_head_img > span {
		position: relative;
	}
	
	
	.page_head_img img {
		height: auto;
		top: auto;
		left: auto;
		position: relative;
		max-height: 60vw;
	}
	
	article > div:first-child {
		padding-right: 0;
		padding-top: 0;
		min-height: unset;
	}
	
	footer > .wp-block-group {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 3em 2em;
	}
	
	.timeline_inner {
		padding-left: 1em;
		padding-right: 1em;
	}
	
	.timeline_item > div {
		padding: 1em;
	}
	
	.timeline_item:nth-child(odd) .timeline_text_wrapper {
		padding-left: 0;
		padding-right: 2em;
	}
	
	.timeline_item:nth-child(even) .timeline_text_wrapper {
		padding-right: 0;
		padding-left: 2em;
	}
	
	.timeline_item:nth-child(2n+1) .timeline_text::after {
		right: calc(-3em - 1px);
	}
	
	
	
	.timeline_item:nth-child(2n) .timeline_text::after {
		left: calc(-3em - 1px);
	}
	
	
	.timeline_item:nth-child(even) .timeline_image_wrapper {
		padding-left: 0;
		padding-right: 2em;
	}
	
	.timeline_item:nth-child(odd) .timeline_image_wrapper {
		padding-right: 0;
		padding-left: 2em;
	}
	
	.page-template-template-reduziert .page_head::before {
		height: 100%;
	}

	
	
	
}


@media only screen and (max-width : 600px)  {
	
	
	main {
		padding-top: 60px;
	}
	
	h2, .h2 {
		font-size: 2em;
	}
	
	.logo {
		height: 60px;
		padding: 5px 0;
	}
	
	.page_head {
		padding-top: 2em;
	}
	
	.wech-timeline {
		font-size: 0.86em;
	}
	
	.timeline_image_wrapper {
		display: flex;
		align-items: center;
	}
	
	footer > .wp-block-group {
		grid-template-columns: 1fr;
	}
	
	
}




/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
