/*
Theme Name: ALTENHILFE 3.0
Theme URI: https://offo.studio
Author: offo.studio
Author URI: https://offo.studio
Description: offo.studio
Version: 3.0
License: ©2026 offo.studio
*/



/** ========================================================================== RESET */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	-webkit-text-size-adjust: 100%; 
	text-transform: none;
}
html {
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
ul {
	list-style-type: none !important;
	-webkit-margin-before: 0 !important;
	-webkit-margin-after: 0 !important;
	-webkit-padding-start: 0 !important;

}




/** ========================================================================== VARIABLES */

:root {
	
	/* Fonts */
	--font-primary: 'source-serif-4', serif;
    --font-secondary: 'itc-avant-garde-gothic-pro', sans-serif;

    --font-size-small: 12px;
    --font-size-medium: 18px;
	--font-size-large: 24px;
    --font-size-xlarge: 36px;
	--font-size-button: var(--font-size-medium);
	
	/* Brand */
	--color-primary: #c8c870;			/* olive */
	--color-secondary: #f6c445;			/* gold */
	--color-accent: #cf4438;			/* coral */
	

	/* Neutral */
	--color-neutral-100: #fff;
	--color-neutral-200: #fefefa;
	--color-neutral-500: #141010;
	--color-neutral-900: #111;

	/* Semantic */
	--color-text: var(--color-neutral-500);
	--color-text-light: var(--color-neutral-200);

	--color-bg-light: var(--color-neutral-200);
	--color-bg-dark: var(--color-neutral-500);
	--color-bg-olive: var( --color-primary);
	--color-bg-gold: var( --color-secondary);

	--color-olive-text: #6f6f2e;	/* dark olive */
	--color-gold-text: #d9a300;	/* dark gold */


	--color-border: var(--color-neutral-200);
	--color-shadow: 20, 16, 16;
	--color-shadow-olive: 200, 200, 112;

}
@media only screen and (max-width: 768px) {
	:root {
		/* Fonts */
		--font-size-large: 20px;
		--font-size-xlarge: 26px;
	}
}


/** ========================================================================== BASIC */

body {
	font-family: var(--font-primary);
	font-size: var(--font-size-medium);
	text-transform: none;
	text-align: left;
	line-height: 1.5em; 
	font-style: normal;
	font-weight: normal;
	letter-spacing: 0em;
	color: var(--color-text);
	background: var(--color-bg-light);	
	
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	
	-webkit-hyphenate-limit-chars: auto 3;
	-moz-hyphenate-limit-chars: auto 3;
	-ms-hyphenate-limit-chars: auto 3;
	hyphenate-limit-chars: auto 3;

	-webkit-hyphenate-limit-lines: 2;
	-moz-hyphenate-limit-lines: 2;
	-ms-hyphenate-limit-lines: 2;
	hyphenate-limit-lines: 2;
} 
.site {
	margin: 0 auto;
	padding: 0;
	/*background: var(--color-bg-light);*/
	overflow: hidden;
}
main {
	min-height: 100vh;
}
.lazy {
	background: #f0efed;
}
img.lazy {
	background: none;
	display: block;
}
.top {
	padding-top: 20rem;
}
.chap {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.clear{
	clear: both;
}
.max { 
	max-width: 800px;
}
.maxx { 
	max-width: 1470px;
	max-width: 1770px;	
}
section {
	min-height: 100vh;
}
section.height_auto {
	min-height: auto;
}



/** ========================================================================== TYPO */

@font-face {
	font-family: 'Font Awesome';
	src: url('fonts/fa-solid-900.woff2') format('woff2'),
		url('fonts/fa-solid-900.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Font Awesome Brands';
	src: url("fonts/fa-brands-400.woff2") format("woff2"), 
		url("fonts/fa-brands-400.ttf") format("truetype");
	font-style: normal;
	font-weight: 900;
}

@font-face {
	font-family: 'offont';
	src: url("fonts/offont-regular.woff2") format("woff2"),
		 url("fonts/offont-regular.woff") format("woff");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}


::selection {
	background: #333;
	color: var(--color-bg-light);
}
::-moz-selection {
	background: #333;
	color: var(--color-bg-light);
}
h1, h2, h3, h4 { 
	font-family: var(--font-secondary);
	font-size: var(--font-size-large);
	font-weight: 700;
	line-height: 1.3em;
	text-align: left;
	padding-bottom: 1em;
}
h1 { 
	text-transform: uppercase;
	padding-bottom: 1em;
}
h1 span {
	display: inline;
}
h1,
h2 { 	
	text-transform: uppercase;
}
h1 {
	text-align: left;
}
h2 {
	text-align: center;
}
h3, h4 {
	font-size: var(--font-size-medium);
	color: var(--color-primary);
}
p, ul, li {
	font-family: var(--font-primary);
	font-size: var(--font-size-medium);
	text-transform: none;
	padding-bottom: 1em;
}
blockquote {
	padding: 1em 6em;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}
blockquote p {
	text-align: center;
}
li {
	padding-bottom: .5rem;
}
i, em {
	text-decoration: none; 
	font-style: italic;
	font-weight: 400;
}
b, strong { 
	letter-spacing: 0.05em;
	font-weight: 700;
}
mark {
	background: none !important;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 2px;
	padding-bottom: 2px;
}
a {
	color: var(--color-text);
	outline: none;
	text-transform: none;
	text-decoration: underline;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	border: none;
}
a:hover {
	color: var(--color-primary);
	border: none;
	cursor: pointer;
}
p a {
	white-space: nowrap;
}
.small h3,
.small p {
	padding-bottom: 0;
}

.text p {
	padding-bottom: 1.5em;
}
.text p:last-of-type {
	padding-bottom: 0;
}
.text h1,
.text h2 {
	padding-top: 1em;
	clear: both; 
}
.section_title {
	padding: 3em 0;
	
}
.text.l h1,
.section_title h1 {
	font-size: var(--font-size-xlarge);
	line-height: 1.3em;
	text-align: left;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}
.section_title.small h1 {
	font-size: var(--font-size-large);
	padding: 0 1em;
}
.text.l h2 {
	font-size: var(--font-size-xlarge);
	text-align: left;
	padding: 2em 0 1em 0;
	hyphens: none;
}
.text.l :is(p, ul, li) {
	font-size: var(--font-size-large);
	line-height: 1.3em;
}
.text.l p {
	padding-bottom: 1em;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}
.text ul,
.text ol {
	padding-bottom: 1em;
}

.text ol {
	margin-left: 2em;
}

.text ul li {
	list-style: none;
	padding-left: 1.5em;
}
.text ul li::before {
	display: inline-block;
	width: 1em;
 	margin-left: -1em;	
	content: "-";
}
.image { 
	height: auto;
	line-height: 1px;
	position: relative;
}
.image img {
	width: 100%; 
	height: auto;
}

.text_table {
	width: 100%;
	margin-bottom: 2em;
}
.text_table .period {
	width: 30%;
}
.text_table .name {
	width: 70%;
}


#about p:has(img),
#about .wp-caption {
	display: none;
}
@media only screen and (max-width: 1024px) { 
	#about p:has(img),
	#about .wp-caption {
		display: block;
	}
	#about .pin-spacer {
		display: none !important;
	}
}


/* ========================================================================== MAIN NAVIGATION */

header,
#logo,
#logo img,
#main-navigation, 
#main-navigation li,
#main-navigation li a,
#main-navigation_bg
{
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
header {
	position: fixed;
	top: 0;
	width: 100%;
	height: auto;
	margin: auto;
	z-index: 99999;
	background: transparent;
}
.menu-main-navigation-container,
.mobile-nav-container {
	pointer-events: all;
}

#main-navigation_bg {
	background: transparent;
	width: 100%;
	height: 64px;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.small_nav #main-navigation_bg {
	background: var(--color-bg-light);
}
.small_nav #main-navigation_bg.change_dark {
	background: var(--color-text);	
}
.small_nav #main-navigation_bg.change_gold {
	background: var(--color-bg-gold);	
}
.small_nav #main-navigation_bg.change_olive {
	background: var(--color-bg-olive);	
}

#branding {
	grid-column-end: span 2;
}
#main-navigation {
	grid-column-end: span 10;
}


#fixhead svg {
	width: 100%;
	height: auto;
	box-sizing: border-box;
}

#fixhead .logo,
#fixhead #logo {
	box-sizing: border-box;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;	
}

#fixhead .logo {
	width: 240px;
	height: 240px;
	margin-top: 16px;
}
.small_nav #fixhead .logo {
	width: 80px;
	height: 60px;
	margin-top: 8px;
}


.small_nav #logo #icon path {
	fill: var(--color-primary);
}
.small_nav #logo #name,
.small_nav #logo #subline,
.small_nav #logo #subline_b {
	display: none;
}
.small_nav :is(#main-navigation, #main-navigation li) {
	padding-top: 0;
	padding-bottom: 0;
}


.menu-main-navigation-container,
.menu-main-navigation-customer-container {
	text-align: right;
}
#main-navigation ul {
	margin: 0;
	padding: 0;
	text-align: right;
}
#main-navigation li {
	line-height: 0;
	display: inline-block;
	padding: 0;
	position: relative;
}
#main-navigation li a {
	font-family: var(--font-secondary);
	font-size: var(--font-size-medium);
	font-weight: 700;
	color: var(--color-text);
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: none;
	line-height: 60px;
	padding-left: 16px;
	padding-right: 16px;
	letter-spacing: 0.02em;
	display: block;
	border-top: 4px solid transparent;
}
#main-navigation a:hover,
#main-navigation .nav_active,
.home #main-navigation .nav_active,
.home #main-navigation li a:hover{
	color: var(--color-primary);
	cursor: pointer;
}
#main-navigation .nav_active {
	border-top: 4px solid transparent;
}
.home #main-navigation li a {
	color: var(--color-text);
}

.small_nav #main-navigation li a,
.home .small_nav #main-navigation li a {
	color: var(--color-text);
	border-top: 4px solid transparent;
} 
.small_nav #main-navigation a:hover {
	color: var(--color-primary);
	border-top: 4px solid transparent;
	cursor: pointer;
}
.small_nav #main-navigation .nav_active {
	color: var(--color-primary);
	border-top: 4px solid transparent;
	cursor: pointer;
}

.dark_nav.small_nav #main-navigation li a {
	color: var(--color-text-light);	
	border-top: 4px solid transparent;
}
.dark_nav.small_nav #main-navigation a:hover {
	color: var(--color-primary);
	border-top: 4px solid transparent;
}
.dark_nav.small_nav #main-navigation .nav_active {
	color: var(--color-primary);
	border-top: 4px solid transparent;
	cursor: pointer;
}
.dark_nav.small_nav #logo #icon path {
	fill: var(--color-primary);
}

.olive_nav.small_nav #main-navigation li a {
	color: var(--color-text-light);	
	border-top: 4px solid transparent;
}
.olive_nav.small_nav #main-navigation a:hover {
	color: var(--color-bg-dark);
	border-top: 4px solid transparent;
}
.olive_nav.small_nav #main-navigation .nav_active {
	color: var(--color-bg-dark);
	border-top: 4px solid transparent;
	cursor: pointer;
}
.olive_nav.small_nav #logo #icon path {
	fill: var(--color-text);
}

.gold_nav.small_nav #main-navigation li a {
	color: var(--color-text-light);	
	border-top: 4px solid transparent;
}
.gold_nav.small_nav #main-navigation a:hover {
	color: var(--color-bg-dark);
	border-top: 4px solid transparent;
}
.gold_nav.small_nav #main-navigation .nav_active {
	color: var(--color-bg-dark);
	border-top: 4px solid transparent;
	cursor: pointer;
}
.gold_nav.small_nav #logo #icon path {
	fill: var(--color-text);
}


#cta_wrap {
	text-align: center;
	pointer-events: auto !important;
	padding: 0 1em;
	margin-top: 4em;
	margin-bottom: 2em;
}
a.cta_button,
#main-navigation li.cta_button a {
	z-index: 9;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 24px;	
	color: #F5F5F5;
	text-transform: uppercase;
	border: none;
	background-color: #05BEAF;
	height: 100%;
	display: block;
	border-radius: 50px !important;
	padding: .5em 2em !important;	
} 
a.cta_button:hover,
#main-navigation li.cta_button a:hover {
	cursor: pointer;
	color: #F5F5F5;
	background-color: #14284B;
	border: none;
	box-shadow: none !important;
}
.small_nav #main-navigation li.cta_button a:hover,
.small_nav #main-navigation li.cta_button a.nav_active {
	color: var(--color-text-light);
	border: none;
	background-color: #14284B;

}


/** ========================================================================== FRONTPAGE */

#hero {
	width: 100vw;
	height: 100vh;
	position: relative;
	overflow: hidden;
	z-index: 9;
}


#hero_content{
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-20%);
	width: min(70%,1000px);
	text-align: center;
}
/*
#hero_content .cta {
    display:inline-block;
}
#hero_content .cta:hover {
    background-color: var(--color-secondary);
}
*/



.postslider_inner,
.postslider_inner .background_image,
.background_image {
	background-position: center center;	
	background-repeat: no-repeat;
	background-size: cover;
	width: 100vw;
	height: 100vh;
	position: relative;
	z-index: 2;
}
.postslider_inner .front_image,
.postslider_inner .background_image {
	position: absolute;
	top: 0;
	left: 0;
}
.postslider_inner .front_image {
	background-size: 70%;
}
.postslider .top_content {
	height: auto;
	box-sizing: border-box;
	position: absolute;
	z-index: 9;
	top: 120px;
}
.postslider :is(h1, h2, p){
	/*font-size: var(--font-size-xlarge);*/
	font-size: calc(1.2vw + 1.2vh);
	line-height: 1.4em;
	font-weight: 700;
	font-style: italic;
	hyphens: none;
}
.postslider .style_video .video iframe,
.postslider .style_video .video video{		
	width: 100vw;
	height: 56.25vw; 
	min-height: 100vh;
	min-width: 177.77vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.shadow {
	box-shadow: 20px 20px 30px rgba(45,45,50,.2);
}
.postslider_inner .project_gal,
.postslider_inner .project_gal .slick-slide {
	height: 100vh;
}

.background_image {
	background-position: center;
	-webkit-backface-visibility: hidden;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;
}
.background_image article {
	background-color: rgba(255,255,255,0.9);
	padding: 4rem 0;
}
#intro_content {
	z-index: 12;
	position: relative;
}/*
#intro_logo .logo {
	width: 30%;
	max-width: 300px;
	height: auto;
	margin-top: 3vh;
	padding-bottom: 8rem;
}*/
#intro_content h1 {
	font-size: 60px;
	line-height: .9em;
	padding: .2em;
	background: #0080a1;
	color: var(--color-text-light) !important;
	display: inline-block;
	margin-bottom: 1rem;
}
#intro_content h2 {
	font-weight: 900;
}
#intro_content :is(h2, p) {
	color: var(--color-text);
	padding-left: 1rem;
	font-size: var(--font-size-large);
	line-height: 1.2em;
}
#intro_cta {
	position: absolute;
	top: 1rem;
	right: 0;
}
#intro #video_container {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	
}	
#intro #video_container video {
	width: 100vw;
	height: 56.25vw; 
	min-height: 100vh;
	min-width: 177.77vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#intro #video_container .video_overlay {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: rgba(255,255,255,.5);
}	

/* */



/* Flexible Boxes */

.flexible_width.gc12 {
    display: flex;
    align-items: stretch;
}
.flexible_width.gc12 .image {
    width: 33%;
    flex-shrink: 0;
}
.flexible_width.gc12 .image.full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.flexible_width.gc12 .infobox_inner {
    width: 67%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}
.flexible_width.gc12 .infobox_inner .text {
    flex: 1;
}
.flexible_width.gc12 .button_wrapper {
    margin-top: auto;
}

.flexible_width .button_wrapper {
	padding: 1em 0;
}
.flexible_width .button_wrapper .button {
	width: 100%;
}

/* Mobile: alles untereinander */
@media (max-width: 1024px) {
	.flexible_width.gc12 {
		flex-direction: column;
	}
	.flexible_width.gc12 .image, .flexible_width.gc12 .infobox_inner {
		width: 100%;
		box-sizing: border-box;
	}
	.flexible_width.gc12 .image {
		margin-bottom: 1rem; /* Abstand zum Content */
	}
	.flexible_width.gc12 .infobox_inner {
		padding: 1rem;
	}
	.flexible_width.gc12 .button_wrapper {
		margin-top: 1rem;
	}
}
.gallery_container {
	padding-bottom: 0 !important;
}




/* ========================================================================== Page Transition */
 
.pseudopop {
	cursor: default;
  position: relative;
}
.pseudopop .button_wrapper a {
	cursor: pointer;
}

.transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  display: none;

  /*background: var(--overlay-color, var(--color-bg-dark));*/
  background: var(--overlay-color, salmon);
}

.pseudopop.active-transition {
  z-index: 9999; /* nur die geklickte */
}

body.transitioning {
  overflow: hidden;
}



/* ========================================================================== PARTNER / PROJECTS*/

.projects_banner {
	text-align: center;
	font-size: 0px;
}
.project_logo,
.partner_logo {
	width: 20%;
	display: inline-block;
}
.project_logo .image,
.partner_logo .image {
	padding: 24px;
}


/* ========================================================================== TESTIMONIALS */

.testimonial_inner {
	width: calc(100% - 128px);
	margin: 0 auto;
}
.testimonial .title {
	padding-bottom: 1em;
}
.testimonial .title h2 {
	font-size: 14px;
	color: #9d1270;
	font-weight: 700;
	text-align: left;
}
.testimonial .title h2 .t_sub {
 	font-size: 14px;
	font-weight: 400;
	color: #141010;
}
.testimonial .text p {
	font-size: 14px;
	padding-bottom: 1em;
}
.testimonial p strong {
	font-weight: 700;
}
.testimonial .image_container {
	padding: 1em 2em;
}	
.testimonial img {
	border-radius: 50%;
	width: 100%;
}

/* ========================================================================== BLOG */

.blog_element.odd .content_all,
.blog_element.even .content_image {
	float: right;
}
.blog_element.even .content_all,
.blog_element.odd .content_image {
	float: left;
}
.blog_element .content_all,
.blog_element .content_image {
	/*width: 50%;*/
	height: 40em;
}
.blog_element .content_image {
	overflow: hidden;
}
.blog_element .content_all {
	padding-top: 0;
	display: table;
}
.blog_element .content_all_inner {
	display: table-cell ;
	vertical-align: middle;
	padding: 2em;
}
.blog_element .content_all_inner :is(h1, p) {
	 -webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}
.blog_element .image,
.blog_element .image_noscale,
.blog_element .image_scale {
	margin: 0;
	overflow: hidden;
	background: #fff6ef;
	
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	
	width: 100%;
	height: 100%;
}

.blog_element .image_scale {
	-webkit-transition: all 5s ease-out;	
	-moz-transition: all 5s ease-out;	
	-ms-transition: all 5s ease-out;	
	-o-transition: all 5s ease-out;	
	transition: all 5s ease-out;	
}
.blog_element:hover .image_scale {
	transform: scale(1.1);
	background-position: center;
}	


/** ========================================================================== USP */

.icon { 
	font-family: 'Font Awesome';
	text-align: center;
	font-size: 18px;
	font-weight: 900;
	line-height: 2em;
	display: block;
}
.icon.usp {
	font-size: 32px;
}
.bulb.icon:before {
	content: "\f0eb";
}
.dog.icon:before {
	content: "\f6d3";
}
.paw.icon:before {
	content: "\f1b0";
}
.bubble.icon:before {
	content: "\f075";
}
.trophy.icon:before {
	content: "\f091";
}
.smiley.icon:before {
	content: "\f118";
}
.play.icon:before {
	content: "\f144";
}
.document.icon:before {
	content: "\f15b";
}
.tasks.icon:before {
	content: "\f0ae";
}
.calendar.icon:before {
	content: "\f073";
}
.secure.icon:before {
	content: "\f3ed";
}


/* ========================================================================== DOWNLOAD */


#login #login-info p {
	
}

#login #login-form p {
	font-size: 12px;
	font-weight: 700;
}


.login_error,
.download_error {
	text-align: center;
	color: #740001;
	padding: 2em 0;
}

#downloads #logout-button {
	float: right;
}


#downloads h1 {
	
	text-align: center;
} 
#downloads h2 {
	font-family: var(--font-primary);
	font-size: var(--font-size-medium);
	font-weight: 700;
	display: inline-block;
	padding-right: 2em;
	text-align: left;
} 

#download_nav {
	margin-top: 8em;
}
#download_nav li {
	font-family: var(--font-primary);
	font-size: var(--font-size-medium);
	font-weight: 700;
	display: inline-block;
	padding-right: 2em;
}
#download_nav a.active {
	text-decoration: underline;
}
.download_item .content {
	padding-top: 2em;
	padding-bottom: 2em;
	padding-right: 2em;
	padding-left: 2em;
}
.download_item .content p,
.download_item .content p.small {
	font-size: 12px;
	line-height: 1.4em;
}
.download_item .content p.small {
	text-transform: uppercase;
	color: #000;
	padding-top: .5em;
}
.download_item .cta_wrapper {
	padding-top: 1em;
}
.download_item.odd {
	/*background: #f4f4f4;*/
	background: #fcfcfc;
}
.download_item.even {
	background: #fff;
}
.download_item h1 {
	padding-bottom: 1em;
}
.download_item p {
	padding-bottom: 0;
}
.download_item.pdf .button:before {
	font-family: 'Font Awesome';
	content: '\f1c1';
	padding-right: 1em;
}
.download_item.zip .button:before {
	font-family: 'Font Awesome';
	content: '\f1c6';
	padding-right: 1em;
}

/*
#downloads .text.l h1 {
	padding-bottom: 0;
}
#downloads .section_title.small {
	padding: 1rem 0 4rem 0;
}
#downloads .chap {
	padding: 2rem 0;
}
.download_btn_container {
	padding-bottom: .5rem;
}
.download_btn_container:first-of-type {
	margin-top: 2em;	
}
.download_btn_container a:before {
	font-family: 'Font Awesome';
	font-weight: 700;
	content: '\f0ed';
	padding-right: 1em;
	margin-bottom: 10px;
}
*/

#team h2 {
	text-align: left;
	padding-bottom: 2em;
}
.bg_olive .teammember h3 {
	color: var(--color-text) !important;
	font-size: var(--font-size-medium);
}
.teammember .contacts {
	font-family: var(--font-secondary);
	font-size: var(--font-size-small);
	color: var(--color-primary);
	color: var(--color-text-light);
	font-weight: 700;
	padding-top: .2rem;
	padding-bottom: .2rem;
}
.teammember .contacts,
.teammember .contacts a {
	color: var(--color-text);
	text-decoration: none;
}

/** ========================================================================== NEWS */

.overview .grid {
	column-gap: 8.334%;
    row-gap: 4em;
}
.news_object {
	overflow: hidden;
	border-radius: 8px !important;
}
.news_object .image img {
	border-radius: 8px 8px 0 0;
}
.news_object .title {
	padding-bottom: 1rem;
}
.news_object h2 {
	font-size: var(--font-size-large);
	color: var(--color-primary);
	padding-bottom: 0;
}
.date,
.news_object .date,
.subtitle,
.news_object .subtitle {
	font-family: var(--font-secondary);
	font-size: var(--font-size-small);
	color: var(--color-primary);
	/*color: var(--color-text-dark);*/
	font-weight: 700;
	padding-top: .2rem;
	padding-bottom: .2rem;
}
.news_object:hover a {
	color: inherit;
}

.readmore {
	font-family: var(--font-secondary);
	font-size: 12px;
	font-weight: 700;
	display: block;
	padding-top: 1rem;
}
.readmore, .readmore:after {
	-webkit-transition-duration: .2s;
	-moz-transition-duration: .2s;
	-o-transition-duration: .2s;
	transition-duration: .2s;
}
article:hover .readmore,
.readmore_btn:hover .readmore {
	color: var(--color-primary);
	padding-left: 1em;
}
article .readmore:after,
.readmore_btn .readmore:after {
	font-family: 'Font Awesome';
	font-size: 12px;
	font-weight: 900;
	color: var(--color-primary);
	content: "\f061";
	padding-left: .5em;
	opacity: 0;
}
article:hover .readmore:after,
.readmore_btn:hover .readmore:after {
	opacity: 1;
}
.overview .news_object .article_content {
	position: relative;
}
.overview .news_object.important {
	box-shadow: 10px 10px 20px rgba(var(--color-shadow-olive), 0.1);
}
.overview .news_object.important .article_content:before {
	font-family: 'Font Awesome';
    font-weight: 700;
    color: var(--color-primary);
    padding-right: .1em;
    font-size: 20px;
    line-height: 20px;
    content: '\f02e';
    right: 8px;
    top: 0;
    position: absolute;
}
.overview .news_object .image {
	overflow: hidden;
}
.overview .news_object .image img {
	transition: transform 0.4s ease;
}
.overview .news_object:hover .image img {
	transform: scale(1.05);
}
.overview .news_object a:hover,
.overview .news_object a:active {
	text-decoration: none;
}



/** ========================================================================== SINGLE ARTICLE */

.single_article {
	grid-column-start: 3 !important;
	grid-column-end: span 6 !important;
}
.single_article .date {
	font-family: var(--font-secondary);
	font-size: var(--font-size-small);
	color: var(--color-text);
	font-weight: 700;
	padding-top: .2em;
	padding-bottom: .2em;
}

.single_article .subtitle {
	font-family: var(--font-secondary);
	font-size: var(--font-size-medium);
	color: var(--color-primary);
	font-weight: 700;
	padding-top: .2em;
	padding-bottom: .2em;
}

.title.text h1,
.title.text.l h1 {
	padding-top: 0;
	padding-bottom: .4em;
}
.single_article .intro.image img,
.single_article .intro.gallery .slick-list {
	border-radius: 8px;
}
.single_article .intro.image {
	margin-bottom: 2em;
}
.single_article .wp-caption-text {
	text-align: left;
	padding-right: 2em;
}

.single_article .foot p {
	font-family: var(--font-secondary);
	font-size: var(--font-size-small);
	color: var(--color-text);
	font-weight: 700;
	padding-top: 1em;
	margin-top: 2em;
	border-top: 1px solid var(--color-primary);	
}

#related_posts {
	margin-top: 4em;
	border-top: 2px solid var(--color-primary);
}


/** ========================================================================== DATES */



/** ========================================================================== SIDEBAR */

#sidebar {
	grid-column: span 4;
}
#sidebar .widget_title {
	font-family: var(--font-secondary);
	font-size: var(--font-size-small);
	font-weight: 700;
	padding-bottom: 1.2em;

}

#sidebar .date_object {
	border-bottom: 2px solid var(--color-primary);
	margin-bottom: 1.2em;
	padding-bottom: 1.2em;
}
#sidebar .date_object:last-of-type {
	padding-bottom: 2em;
	border-bottom: none;
}


#sidebar .date_object .date_title,
#sidebar .date_object .date_date,
#sidebar .date_object .date_time {
	font-family: var(--font-secondary);
	font-size: var(--font-size-medium);
	font-weight: 700;
}

/*
#searchform .screen-reader-text {
	 display: none;
}
#searchform input[type="search"] {
	width: 80% !important;
	line-height: 36px;
	float: left !important;
	text-indent: 16px;
	background: #f5f5ef !important;
	border: none !important;
    border-radius: 50px 0 0 50px !important;
	padding: 0 !important;
	margin-top: 1em;
}
#searchform input[type="submit"] {
	margin-top: 1em;
}
#searchform button {
	width: 20% !important;
	height: 36px;
	line-height: 14px;
	float: right;
    border: none !important;
	background: var(--color-primary);;
	color: var(--color-bg-light);
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
    border-radius: 0 50px 50px 0 !important;	
}
#searchform button:before {
	font-family: 'Font Awesome';
	content: '\f002';
	font-size: 14px !important;
	font-weight: 900;
	display: inline-block;
	margin-left: -5px;
}
#searchform button:hover {
	background: #194280;
	cursor: pointer;
}
.social_navigation ul {
	padding: 0;
}
.social_navigation ul li {
	display: inline-block;
    padding-left: 1em;
    padding-right: 1em;
}
.social_navigation a {
	font-family: 'Font Awesome Brands';
	font-size: 26px;
	line-height: 1em;
	color: var(--color-primary);
}
.social_navigation a:hover {
    color: var(--color-primary);
}
.social_navigation a[href*="facebook.com"]::before {	
	content: "\f39e";
}
.social_navigation a[href*="instagram.com"]::before {	
	content: "\f16d";
}	
.social_navigation a[href*="tumblr.com"]::before {	
	content: "\f173";
}
.social_navigation a[href*="youtube.com"]::before {	
	content: "\f167";
}
.social_navigation a[href*="vimeo.com"]::before {	
	content: "\f27d";
}
*/


@media (max-width: 768px) {
	#sidebar,
	.grid .has_sidebar.gc8 {
		grid-column: span 12;
	}

}

/* ========================================================================== COLORS*/

.bg_gold {
	background: var(--color-bg-gold);
}
.bg_gold :is(h1, h2, h3, h4, p, li, a) {
	color: var(--color-text);
}
.bg_gold :is(h2, h3, h4) {
	color: var(--color-text-light);
}
.bg_gold h1 {
	color:  var(--color-text);
}
.bg_gold a:hover {
	color: var(--color-text-light);;
	border-bottom: none;
}
.bg_gold :is(button, .button){
	color: var(--color-text);
	background-color: var(--color-bg-light);
	border: 4px solid var(--color-bg-light);
}
.bg_gold :is(button:hover, button:active, .button:hover, .button:active){
	color: var(--color-text);
	background-color: var(--color-bg-olive);
	border: 4px solid var(--color-bg-olive);
	box-shadow: none;
}

.bg_gold .infobox :is(button, .button){
	color: var(--color-text);
	background-color: var(--color-bg-light);
	border: 4px solid var(--color-bg-light);
}
.bg_gold .infobox :is(button:hover, button:active, .button:hover, .button:active){
	color: var(--color-text);
	background-color: var(--color-bg-gold);
	border: 4px solid var(--color-bg-gold);
	box-shadow: none;
}

.bg_olive {
	background: var(--color-bg-olive);
}
.bg_olive :is(h1, h2, h3, h4, p, li, a) {
	color: var(--color-text);
}
.bg_olive :is(h2, h3, h4) {
	color: var(--color-text-light);
}
.bg_olive :is(button, .button){
	color: var(--color-text);
	background-color: var(--color-bg-light);
	border: 4px solid var(--color-bg-light);
}
.bg_olive :is(button:hover, button:active, .button:hover, .button:active){
	color: var(--color-text);
	background-color: var(--color-bg-gold);
	border: 4px solid var(--color-bg-gold);
	box-shadow: none;
}
.bg_olive .infobox :is(button, .button){
	color: var(--color-text);
	background-color: var(--color-bg-light);
	border: 4px solid var(--color-bg-light);
}
.bg_olive .infobox :is(button:hover, button:active, .button:hover, .button:active){
	color: var(--color-bg-olive);
	background-color: var(--color-bg-gold);
	border: 4px solid var(--color-bg-gold);
	box-shadow: none;
}

.bg_olive .infobox :is(button.button-external, .button.button-external),
.bg_gold .infobox :is(button.button-external, .button.button-external){
	color: var(--color-text);
	background-color: transparent;
	border: none;
}
.bg_olive .infobox :is(button.button-external:hover, button.button-external:active, .button.button-external:hover, .button.button-external:active),
.bg_gold .infobox :is(button.button-external:hover, button.button-external:active, .button.button-external:hover, .button.button-external:active){
	color: var(--color-primary);
	background-color: transparent;
	border: none;
}

.bg_light {
	color: var(--color-text);
	background: var(--color-bg-light);
}

.bg_dark {
	color: var(--color-text-light);
	background: var(--color-bg-dark);
}
.bg_dark :is(h1, h2, h3, h4, p, li, a) {
	color: var(--color-text-light);
}
.bg_dark h1 {
	color: var(--color-primary);
}
.bg_dark a:hover {
	color: var(--color-text-light);;
	border-bottom: none;
}
.bg_dark :is(button, .button){
	color: var(--color-text);
	background-color: var(--color-primary);
	border: 4px solid var(--color-primary);
}
.bg_dark :is(button:hover, button:active, .button:hover, .button:active){
	color: var(--color-text);;
	background-color: var(--color-text-light);
	border: 4px solid var(--color-text-light);
	box-shadow: none;
}


/** ========================================================================== CARDS / INFOBOX */

.infobox {
	border-radius: 4px;
	/*margin-bottom: 2rem;*/
	overflow: hidden;
}
.box_trans {
	/*background: rgba(255, 255, 255, 0.5);
	box-shadow: 5px 5px 15px rgba(0, 0, 0, .1);*/
	
	background: transparent;
	box-shadow: 5px 5px 15px rgba(180, 180, 180, .1);
}
.box_solid {
	background: var(--color-bg-light);
	box-shadow: 20px 20px 30px rgba(var(--color-shadow), 0.1);
}
.box_none {
	background: var(--color-bg-light);
	box-shadow: none;
}

.infobox_inner {
	padding: 2rem;
}
.box_none .infobox_inner {
	padding: 0;
}
.box_none .article_content {
	padding: 1em 2em 2em 0;
}

.infobox :is(h1, h2, h3){
	font-family: var(--font-secondary);
	font-size: var(--font-size-large);
	text-align: left;
	color: var(--color-text);
	padding-bottom: 1em;
}	
.infobox .title {
	padding-top: .5em;
	padding-bottom: .5em;
}
.infobox .text :is(p, li, a) {
	font-size: var(--font-size-medium);
	color: var(--color-text);
}
.usp_section .infobox .text :is(p, li, a) {
	font-size: var(--font-size-medium);
}
.infobox .text li:before {
	content: '–';
}
.infobox .text ul {
	padding-bottom: 0;
}
.infobox .button_wrapper {
	padding: 2em 0;
}
.infobox.gc4 .infobox_logo {
	width: 45%;
	margin: 0 auto;
}
.infobox.gc6 .infobox_logo {
	width: 30%;
	margin: 0;
	float: left;
}
.infobox.gc6 .text-container {
	width: 65%;
	float: right;
	padding-bottom: 3em;
}

.infobox.gc6 .button_wrapper {
	clear: both;
}
.infobox.gc6 .button-external {
	float: right;
	width: 65%;
}
.infobox .media-container {
	position: relative;
	width: 100%;
	padding-top: 66.6667%;
	overflow: hidden;
}
.infobox .media-container img,
.infobox .media-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.infobox a {
	text-decoration: none;
}

/* ========================================================================== FOOTER NAVIGATION */

footer {
	padding-top: 0;
	padding-bottom: 40px;
	clear: both !important;
	width: 100%;
	height: auto;
	border-top: 1px solid #dbdbd3;
}
#footer_inner {
	margin-top: 20px;
}
#footer-navigation {
	padding-top: 2em;
}
#footer-navigation ul {
	list-style: none; 
	margin: 0; 
	padding: 0;
}
#footer-navigation li {
	line-height: 25px;
	box-sizing: border-box;
}
#footer-navigation li a {
	font-family: var(--font-secondary);
	font-size: var(--font-size-medium);
	font-weight: 700;
	color: #dbdbd3;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	display: block;
}
#footer-navigation a:hover,
#footer_info a:hover {
	color: var(--ci-color);
	cursor: pointer;
}
#footer_inner .text {
	clear: both;
}
#footer_inner #footer-small {
	font-family: var(--font-secondary);
	font-size: var(--font-size-small);
	font-weight: 700;
	clear: both;
	text-align: left;
	padding-top: 2em;
}




/* ========================================================================== SOCIAL NAVIGATION */
/*
:is(#side_contact.contact-navigation, .social-navigation) .side_content,
.social-navigation a {	
	transition: all .2s ease;	
}
#side_contact,
#side_social { 
	width: 72px;
	height: 100vh;	
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 2;
}
:is(#side_contact.contact-navigation, .social-navigation) .side_content { 
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
}


:is(#side_contact.contact-navigation, .social-navigation) ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
:is(#side_contact.contact-navigation, .social-navigation) li {
	margin: 22px;
	padding: 0;;
}
:is(#side_contact.contact-navigation, .social-navigation) a {
	font-size: 0;
	line-height: 0;
	
	display: block;
	margin: 0;
	padding: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	text-decoration: none;
	background: #37363e;
	background: #CC1517;
	
	transition: all .2s ease;	
}

:is(#side_contact.contact-navigation, .social-navigation) a:hover {
	background: #b9c4a9;
	transform: scale(1.3);
}
:is(#side_contact.contact-navigation, .social-navigation) a:hover:before {	
	color: var(--color-bg-light);	
	transform: scale(1.2);
}
.social-navigation a:before,
.contact-navigation a:before {
	font-family: 'Font Awesome Brands';
	font-size: var(--font-size-large);
	line-height: 40px;
	color: #fafaf5;
	text-align: center;
	display: block;
}


.contact-navigation a[href*="wa.me"]::before {	
	content: "\f232";
}
.contact-navigation a[href*="mailto"]::before {
	font-family: 'Font Awesome';
	font-weight: 400;
	font-size: var(--font-size-large);
	content: "\f0e0";
}
.contact-navigation a[href*="tel"]::before {
	font-family: 'Font Awesome';
	font-weight: 700;
	font-size: var(--font-size-medium);
	content: "\f095";
}

.social-navigation a[href*="instagram.com"]::before {	
	content: "\f16d";
}
.social-navigation a[href*="facebook.com"]::before {	
	content: "\f39e";
}
.social-navigation a[href*="tiktok.com"]::before {	
	content: "\e07b";
}
.social-navigation a[href*="youtube.com"]::before {	
	content: "\f167";
}
.social-navigation a[href*="vimeo.com"]::before {	
	content: "\f27d";
}

#contact-contact {
	padding-top: 2em;	
}
#contact-contact.contact-navigation a:before {
	font-size: var(--font-size-large);
	color: #37363e;
	display: inline;
	padding-right: 1em;
}
#contact-contact li {
	padding-bottom: 0;
}
#contact-contact a:hover {
	text-decoration: none;
	color: #b9c4a9;
}
#footer-social {
	min-height: 80px;
}
#footer-social.social-navigation ul {
	text-align: right;
}
#footer-social.social-navigation li,
#footer-social.social-navigation a {
	display: inline-block;
}
#footer-social.social-navigation a {
	background: #37363e;
}


*/

/** ========================================================================== BUTTONS ETC */

.button,
input[type="button"],
.input.button,
input[type="submit"],
input.submit,
.edit {
	font-family: var(--font-secondary);
	font-size: var(--font-size-button);
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	color: var(--color-text-light);
	text-align: center;
	text-decoration: none;
	text-indent: 0;
	background-color: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: 50px;
	width: 100%;
	display: inline-block;
	line-height: 1em;
	padding: 0.8em;
	margin-top: 0;
	margin-bottom: 10px;
	box-sizing: border-box;

	transition: all 0.2s ease;
}

.button:hover,
.button:active,
.edit:hover,
.edit:active,
input[type="button"]:hover,
input[type="submit"]:hover,
.wpcf7-submit:hover {
	border: 1px solid var(--color-secondary);
	color: var(--color-text-light);
	background-color: var(--color-secondary);
	cursor: pointer;
	box-shadow: 5px 5px 30px rgba(240, 239, 237, 1);
}

.button_wrapper {
	text-align: center;
	padding: 4em 0 2em;
}

.button_wrapper > .button {
	display: inline-block;
}

.button_wrapper.multiple {
	width: 100%;
}

.button_wrapper.multiple.row {
	display: flex;
	justify-content: center;
	gap: 1em;
}

.button_wrapper.multiple > .button {
	width: 100%;
}

.button_wrapper.multiple.row > .button {
	width: 50%;
	margin: 0;
}

/* External buttons */
.button-external {
	background-color: transparent;
	border: none;
	padding: 0;
	font-size: var(--font-size-medium);
	text-align: left;
	display: inline-flex;
}

.button-external::before {
	content: '→';
	font-size: 1.2em;
	padding-right: 15px;
	display: inline-block;
	transition: transform 0.3s ease;
}

.button-external:hover {
	transform: translateX(15px);
}

/** ========================================================================== INPUT ETC */

select,
input,
textarea {
	font-family: var(--font-secondary);
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	padding: 0.5em 1em;
	margin: 0;

	border-radius: 4px;
	box-shadow: none;
	background: #fff;
	border: 1px solid #dbdbd3;
	outline: none;

	display: inline-block;
	appearance: none;
	cursor: pointer;
	text-indent: 0;
	box-sizing: border-box;

	transition: all 0.2s ease;
}

/* Focus */
input:focus,
input:active {
	box-shadow: none;
	background: none;
	border-color: var(--color-text);
	color: var(--color-text);
}

/* Text Inputs */
textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
	color: var(--color-text);
	font-size: 16px;
	letter-spacing: 0.1em;
	width: 100%;
	vertical-align: middle;
	box-sizing: border-box;
}

/* Number */
input[type="number"] {
	width: 80px;
	text-align: center;
	padding: 0.5em;
}

/* Radio / Checkbox */
input[type="radio"],
input[type="checkbox"],
.input-checkbox {
	display: inline;
	background: none;
	border: none;
	padding-left: 0;
}

/* Custom Icon */
input[type="radio"]::before,
input[type="checkbox"]::before,
.input-checkbox::before {
	font-family: "Font Awesome";
	font-size: 20px;
	font-weight: 700;
	content: "\f0c8";
	color: var(--color-primary);
}

/* Checked */
input[type="radio"]:checked::before,
input[type="checkbox"]:checked::before,
.input-checkbox:checked::before {
	content: "\f00c";
	color: var(--color-primary);
}

/* Hover */
input[type="radio"]:hover::before,
input[type="checkbox"]:hover::before,
.input-checkbox:hover::before {
	color: var(--color-text);
}

/** ========================================================================== CONTACT FORM */ 

.contactform {
	padding-top: 3.5em;
}

.contactform .screen-reader-response {
	display: none;
}

.wpcf7 p {
	font-family: var(--font-secondary);
	font-size: var(--font-size-medium);
}
.wpcf7 p label {
	font-family: var(--font-secondary);
	font-size: var(--font-size-small);
	font-weight: 700;
}

.wpcf7-mail-sent-ok {
	font-size: 13px;
	line-height: 20px;
	font-weight: 400;
	color: var(--color-text);
	text-transform: uppercase;
	border: none;
	background: rgba(160,210,195,0.1);
}

.wpcf7-mail-sent-ok:before {
	font-family: "Font Awesome";
	content: " ";
	color: var(--color-text);
	font-size: 13px;
	line-height: 20px;
	font-weight: 400;
}

/* Validation Errors */
.wpcf7-validation-errors,
.wpcf7-not-valid-tip {
	font-size: 13px;
	line-height: 12px;
	font-weight: 400;
	color: #b81c23;
	text-align: center;
	padding-top: 1em;
	border: none;
	background: none;
}

.wpcf7-validation-errors:before,
.wpcf7-not-valid-tip:before {
	content: "";
	display: table;
	clear: both;
}

/* Response Output */
.wpcf7-response-output {
	padding: 1em;
	text-align: center;
	border-color: var(--color-primary) !important;
}

.wpcf7 input[type="file"] {
	border: none;
}

.wpcf7 .files {
	border: 1px solid #dbdbd3;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	border: none;
	margin: 0;
	text-align: center;
	clear: both;
}

/** ========================================================================== MEMBERSHIP FORM */


#membership {
	background-position: top left;
	background-repeat: no-repeat;
	background-size: contain;
}

/* Modern Grid Layout */
/*
#membership_form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem 4%;
}
#membership_form .form_group,
#membership_form .small,
#membership_form h3,
#membership_form h4,
#membership_form .wpcf7-checkbox,
#membership_form .wpcf7-acceptance,
#membership_form #p2,
#membership_form #invoice,
#membership_form #submit_reg {
	grid-column: 1 / -1;
}
@media (max-width: 700px) {
	#membership_form {
		grid-template-columns: 1fr;
	}
}
*/

.personal_data, .partner, .custom_amount, .bank {
  display: none;
}

/* Checkbox / Acceptance */
#membership_form .wpcf7-checkbox .wpcf7-list-item,
#membership_form .wpcf7-acceptance .wpcf7-list-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5em 0;
}

#membership_form input[type="checkbox"] {
	width: 1.4em;
}

/* Radio Buttons */
#membership_form .wpcf7-list-item {
	position: relative;
	display: block;
}

#membership_form input[type="radio"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

#membership_form input[type="radio"] + span {
	display: block;
	padding: 1em;
	text-align: center;
	font-family: var(--font-secondary);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text);
	background: var(--color-bg-light);
	border: 1px solid var(--color-text);
	border-radius: 50px;
	line-height: 1.5em;
	box-sizing: border-box;
	transition: all 0.2s ease;
	
	margin-bottom: 2rem;
}

#membership_form input[type="radio"]:hover + span,
#membership_form input[type="radio"]:checked + span {
	background: var(--color-primary);
	color: var(--color-text-light);
	border-color: var(--color-primary);
}


#membership_form .flex-row {
	display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


#membership_form .flex-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

#membership_form .flex-row > p {
	flex: 1 1 0;
	margin: 0;
}

#membership_form .flex-row > p label {
	display: block;
}

#membership_form .flex-row input,
#membership_form .flex-row select {
	width: 100%;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	#membership_form .flex-row {
		flex-direction: column;
	}
}



/* Submit Button */
#membership_form .wpcf7-submit {
	/*grid-column: 1 / -1;
	width: 50%;*/
	margin: 2em auto 0;
}

/* Spinner */
.wpcf7-spinner {
	display: block;
	margin: 0 auto;
	text-align: center;
	background-color: #19677a;
}

.spinn-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: table;
	transition: 0.2s;
	pointer-events: none;
}

.submitting .spinn-wrap {
	background: rgba(25, 103, 122, 0.5);
}

.spinn-wrap-inner {
	display: table-cell;
	vertical-align: middle;
}



/** ========================================================================== IMAGES */

img {
	width: 100%;
}
img,
a img,
.alignleft a,
.alignright a,
.aligncenter a,
.alignnone a {
	border: none !important;
}
p img {
	max-width: 100%;
}
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; 
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; 
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; 
}
.alignleft,
.alignright {
	width: 50% !important;
	height: auto;
	margin-top: 0;	
	margin-left: 0;	
	padding-top: 1em;
	padding-bottom: 1em;
	box-sizing: border-box;
}
.alignleft {
	float: left;
	margin-right: 8.667%;
	margin-left: -25%;
}
.alignright {
	float: right;	
	margin-left: 8.667%;
	margin-right: -25%;
}
.alignleft img,
.alignright img,
.aligncenter img {
	width: 100%;
	height: auto;
}
.aligncenter {
	width: 50% !important;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2em;
}
.alignnone {
	width: 100% !important;
	display: block;
	margin-top: 2em;
	margin-bottom: 2em;
}
.wp-caption-text {
	font-family: 'akzidenz-grotesk-next-pro', sans-serif !important;
	font-size: 14px !important;
	border: none;
	text-align: right;	
	padding-top: 1em;
} 
.alignleft .wp-caption-text {
	text-align: right;
	padding-left: 20%;
}
.alignright .wp-caption-text {
	text-align: left;
	padding-right: 20%;
}
embed,
iframe,
object,
video {
	max-width: 100%;
}
iframe{
	width: 100%;
}


.bg_stick_image {
	height: 100vh;
	width: 50vw;	
/*	background-image: var(--bgimg);*/
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bg_stick_images{
	position:relative;
	width:100%;
	height:100%;
}

.bg_stick_image{
	position:absolute;
	inset:0;

	background-size:cover;
	background-position:center;

	opacity:0;
	transition:opacity .6s ease;
}
.bg_stick_image.active{
	opacity:1;
}

@media only screen and (max-width: 1024px) { 
	.grid.stick-wrap .gc6 {
		grid-column: span 12;
	}
	.bg_stick_image {
		width: 100vw;
		height: 50vh;
		
		display: none;
	}
}


/** ========================================================================== CMPLZ COOKIE INFO */

.cmplz-cookiebanner .cmplz-logo,
.cmplz-cookiebanner .cmplz-title,
.cmplz-cookiebanner .cmplz-close {display: none !important;}

#cmplz-manage-consent {display: none !important;}


/* ========================================================================== RESPONSIVE */
 
@media only screen and (max-width: 1200px) { 
	
	#main-navigation li a, #main-navigation .sub-menu li a {
		font-size: 14px;
		padding-left: 8px;
		padding-right: 8px;
	}	
	#related_posts .grid .gc3 {
		grid-column: span 6;
	}
	
	
}

@media only screen and (max-width: 1024px) { 

	#main-navigation li a, #main-navigation .sub-menu li a {
		font-size: 12px;
	}	
	#fixhead .logo {
		width: 200px;
		height: 200px;
	}
	.postslider :is(h1, h2, p) {
		font-size: var(--font-size-large);
		line-height: 1.2em;
		hyphens: auto;
	}
	.section_title.c6 {
		width: 100%;
	}
	.text.l h1, 
	.section_title h1 {
		/*font-size: var(--font-size-large);*/
		hyphens: auto;
	}
	.overview .grid .gc6 {
		grid-column: span 12;
	}
	
	.button_wrapper > .button{
		display: block;
	}
	.button_wrapper.multiple.row {
		display: block;
	}
	.button_wrapper.multiple.row > .button{
		width: 100%;
		margin: 1em 0;
	}
	
	.infobox :is(h1, h2, h3) {
		hyphens: auto;
	}
	.infobox.gc6 .infobox_logo,
	.infobox.gc6 .text-container {
		width: auto;
		float: none;
	}
	.infobox.gc6 .infobox_logo {
		width: 45%;
		margin: 0 auto;
	}
	.infobox.gc6 .button-external {
		float: none;
		width: 100%;
		display: inline-block;
		text-align: center;
	}
	
	#related_posts .grid .gc3 {
		grid-column: span 6;
	}
	
	.alignright {
		margin-left: 4.667%;
		margin-right: -6%;	
	}	
	.alignleft {
		margin-left: -6%;
		margin-right: 4.667%;
	}	
	
	
}


@media only screen and (max-width: 1000px) { 
	
	
	
}
@media only screen and (max-width: 768px) { 
	

	section {
		min-height: auto;
	}
	#fixhead .logo {
		margin-left: 16px;
	}
	
	h1, h2, h3, h4,
	.text.l h1, 
	.section_title h1,
	.text.l h2 {
		/*font-size: var(--font-size-large);*/
		hyphens: auto;
	}
	#main_inner {
		padding-bottom: 0;
	}
	footer {
		height: auto;
		padding-bottom: 100px;
	}
	#footer_navigation {
		clear: both;
		margin-top: 1em;
	}
	.alignleft,
	.alignright,
	.aligncenter {
		float: none;
		width: 100% !important;
		margin: 0 auto;
	}	
	
	.postslider_inner, .postslider_inner .background_image, .background_image {
		height: auto;
		min-height: 100vh;
	}
	#hero_content {
		position: relative;
		padding-top: 16rem;
		transform: translate(-50%,-0%);
	}
	#sidebar .box_solid {
		box-shadow: none;
	}
	#sidebar .infobox_inner {
		padding: 0;
	}
	#related_posts .grid .gc3 {
		grid-column: span 12;
	}
	
}

@media only screen and (max-width: 600px) {
	
	#fixhead,
	.small_nav #fixhead {
		height: 50px;
	}	
	#intro_logo .logo {
		padding-top: 0;
	}
	main {
		min-height: auto;
	}
	.wrapper.grid {
		padding-left: 0;
		padding-right: 0;
	}
	.chap {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}	
	.chap .inner {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	h1, h2, h3, h4,
	.text.l p,
	#intro_content h2 {
		/*font-size: var(--font-size-medium);*/
	}
	footer {
		height: auto;
		margin-top: 0;
	}
	#main_inner {
		padding-bottom: 0; 
	}
	.section_title {
		padding: 2rem 0;
	}
	#footer-navigation,
	#footer-navigation li {
		width: 100%;
		text-align: center;
	}
	#footer-navigation li a {
		/*font-size: var(--font-size-medium);
		line-height: 40px;*/
	}
	#footer-navigation::before,
	#footer-navigation::after {
		content: " ";
		display: table;
	} 
	#footer-navigation::after {
		clear: both;
	}
	#footer_inner #c {
		text-align: left;
		padding-top: 2em;
	}

	 
	
}

