/*
Theme Name: Twenty Twenty
Text Domain: twentytwenty
Version: 2.2
Tested up to: 6.2
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/twentytwenty/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/


/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */


html,
body {
	border: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
	border: none;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}

blockquote::before,
blockquote::after {
	content: "";
}

.rounded {
    border-radius: 10px!important;
}
.text-white a {
	color: #fff;
}
a:hover {
	color: var(--primary)
}
.error404 .error404-content {
    text-align: center;
    max-width: 1200px;
    margin-bottom: 50px;
}
.error404 .error404-content .intro-text {
		max-width: 450px;
		margin: 50px auto;
}
/* -------------------------------------------------------------------------- */

/*	1. Document Setup
/* -------------------------------------------------------------------------- */
:root {
	--secondary: #4ab7bf;
	--primary: #0a3448;
	--paleblue: #e8ebed;
	--reddish:#c33759;
}

html {
	font-size: 62.5%; /* 1rem = 10px */
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	background: #fff;
	box-sizing: border-box;
	color: #000;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 1.8rem;
	letter-spacing: -0.015em;
	text-align: left;
}

@supports ( font-variation-settings: normal ) {

	body {
		font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	}
}

*,
*::before,
*::after {
	box-sizing: inherit;
	-webkit-font-smoothing: antialiased;
	word-break: break-word;
	word-wrap: break-word;
}

#site-content {
	overflow: hidden;
	margin-top: 85px;
}


/* Base Transitions -------------------------- */

a,
path {
	transition: all 0.15s linear;
}



/* ----------------------------------------------
Inter variable font. Usage:

@supports (font-variation-settings: normal) {
	html { font-family: 'Inter var', sans-serif; }
}
---------------------------------------------- */

@font-face {
	font-family: "Inter var";
	font-weight: 100 900; /* stylelint-disable-line font-weight-notation */
	font-style: normal;
	font-display: swap;
	src: url(./assets/fonts/inter/Inter-upright-var.woff2) format("woff2");
}

@font-face {
	font-family: "Inter var";
	font-weight: 100 900; /* stylelint-disable-line font-weight-notation */
	font-style: italic;
	font-display: swap;
	src: url(./assets/fonts/inter/Inter-italic-var.woff2) format("woff2");
}


/* Accessibility Settings -------------------- */

@media ( prefers-reduced-motion: reduce ) {

	* {
		animation-duration: 0s !important;
		transition-duration: 0s !important;
	}
}


/* -------------------------------------------------------------------------- */

/*	2. Element Base
/* ---------------------------------------------*---------------------------- */


main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.faux-heading {
	font-feature-settings: "lnum";
	font-variant-numeric: lining-nums;
	font-weight: 700;
	letter-spacing: -0.0415625em;
	line-height: 1.25;
	margin: 3.5rem 0 2rem;
}

h1,
.heading-size-1 {
	font-size: 3.6rem;
	font-weight: 800;
	line-height: 1.138888889;
}

h2,
.heading-size-2 {
	font-size: 3.2rem;
}

h3,
.heading-size-3 {
	font-size: 2.8rem;
}

h4,
.heading-size-4 {
	font-size: 2.4rem;
}

h5,
.heading-size-5 {
	font-size: 2.1rem;
}

h6,
.heading-size-6 {
	font-size: 1.6rem;
	letter-spacing: 0.03125em;
	text-transform: uppercase;
}

p {
	line-height: 1.5;
	margin: 0 0 1em 0;
}

em,
i,
q,
dfn {
	font-style: italic;
}

em em,
em i,
i em,
i i,
cite em,
cite i {
	font-weight: bolder;
}

big {
	font-size: 1.2em;
}

small {
	font-size: 0.75em;
}

b,
strong {
	font-weight: 700;
}

ins {
	text-decoration: underline;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

abbr,
acronym {
	cursor: help;
}

address {
	line-height: 1.5;
	margin: 0 0 2rem 0;
}

hr {
	border-style: solid;
	border-width: 0.1rem 0 0 0;
	border-color: #dcd7ca;
	margin: 4rem 0;
}

a {
	color: var(--primary);
	text-decoration: none;
}
.bg-primary .svg-inline--fa{
	color: var(--secondary);
}

a:hover,
a:focus {
	text-decoration: underline;
}


/* Lists ------------------------------------- */

ul,
ol {
	margin: 0;
}

ul {
	list-style: disc;
}

ul ul {
	list-style: circle;
}

ul ul ul {
	list-style: square;
}

ol {
	list-style: decimal;
}

ol ol {
	list-style: lower-alpha;
}

ol ol ol {
	list-style: lower-roman;
}

li {
	line-height: 1.5;
	margin: 0.5rem 0 0 2rem;
}

li > ul,
li > ol {
	margin: 1rem 0 0 2rem;
}

.reset-list-style,
.reset-list-style ul,
.reset-list-style ol {
	list-style: none;
	margin: 0;
}

.reset-list-style li {
	margin: 0;
}

dt,
dd {
	line-height: 1.5;
}

dt {
	font-weight: 700;
}

dt + dd {
	margin-top: 0.5rem;
}

dd + dt {
	margin-top: 1.5rem;
}



/* Media ------------------------------------- */

figure {
	display: block;
	margin: 0;
}

iframe {
	display: block;
	max-width: 100%;
}

video {
	display: block;
}

svg,
img,
embed,
object {
	display: block;
	height: auto;
	max-width: 100%;
}

figcaption,
.wp-caption-text {
	color: #6d6d6d;
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
	margin-top: 1.5rem;
}

figcaption a,
.wp-caption-text a {
	color: inherit;
}

blockquote.instagram-media,
iframe.instagram-media {
	margin: auto !important;
}


/* GALLERIES */

.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 3em 0 3em -0.8em;
	width: calc(100% + 1.6em);
}

.gallery-item {
	margin: 0.8em 0;
	padding: 0 0.8em;
	width: 100%;
}

.gallery-caption {
	display: block;
	margin-top: 0.8em;
}


/* Inputs ------------------------------------ */

fieldset {
	border: 0.2rem solid #dcd7ca;
	padding: 2rem;
}

legend {
	font-size: 0.85em;
	font-weight: 700;
	padding: 0 1rem;
}

label {
	display: block;
	font-size: 1.6rem;
	font-weight: 400;
	margin: 0 0 0.5rem 0;
}

label.inline,
input[type="checkbox"] + label {
	display: inline;
	font-weight: 400;
	margin-left: 0.5rem;
}

input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	top: 2px;
	display: inline-block;
	margin: 0;
	width: 1.5rem;
	min-width: 1.5rem;
	height: 1.5rem;
	background: #fff;
	border-radius: 0;
	border-style: solid;
	border-width: 0.1rem;
	border-color: #dcd7ca;
	box-shadow: none;
	cursor: pointer;
}

input[type="checkbox"]:checked::before {
	/* Use the "Yes" SVG Dashicon */
	content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E");
	position: absolute;
	display: inline-block;
	margin: -0.1875rem 0 0 -0.25rem;
	height: 1.75rem;
	width: 1.75rem;
}

input,
textarea,
button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file__button {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	line-height: 1;
}

@supports ( font-variation-settings: normal ) {

	input,
	textarea,
	button,
	.button,
	.faux-button,
	.faux-button.more-link,
	.wp-block-button__link,
	.wp-block-file__button {
		font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	}
}

input,
textarea {
	border-color: #dcd7ca;
	color: #000;
}

code,
input[type="url"],
input[type="email"],
input[type="tel"] {

	/*rtl:ignore*/
	direction: ltr;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff;
	border-radius: 0;
	border-style: solid;
	border-width: 0.1rem;
	box-shadow: none;
	display: block;
	font-size: 1.6rem;
	letter-spacing: -0.015em;
	margin: 0;
	max-width: 100%;
	padding: 1.5rem 1.8rem;
	width: 100%;
	margin-bottom: 10px;
}

input[type="number"] {
	padding-right: 0.5rem;
}

select {
	font-size: 1em;
}

textarea {
	height: 12rem;
	line-height: 1.5;
	width: 100%;
}

input::-webkit-input-placeholder {
	line-height: normal;
}

input:-ms-input-placeholder {
	line-height: normal;
}

input::-moz-placeholder {
	line-height: revert; /* Reset to the value from the user-agent stylesheet. */
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: var(--primary);
	border: none;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.0333em;
	line-height: 1.25;
	margin: 0;
	opacity: 1;
	padding: 1.1em 1.44em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: opacity 0.15s linear;
}

button:focus,
button:hover,
.button:focus,
.button:hover,
.faux-button:focus,
.faux-button:hover,
.wp-block-button .wp-block-button__link:focus,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:focus,
.wp-block-file .wp-block-file__button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
	text-decoration: underline;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	border-color: currentColor;
}

input[type="search"]:focus {
	outline: thin dotted;
	outline-offset: -4px;
}

.close .svg-inline--fa {
	color: #444;
}

/* Tables ------------------------------------ */

table {
	border: 0.1rem solid #dcd7ca;
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	font-size: 1.6rem;
	margin: 4rem 0;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.alignleft > table {
	margin: 0;
}

.alignright > table {
	margin: 0;
}

th,
td {
	border: 0.1rem solid #dcd7ca;
	line-height: 1.4;
	margin: 0;
	overflow: visible;
	padding: 0.5em;
}

caption {
	background: #dcd7ca;
	font-weight: 600;
	padding: 0.5em;
	text-align: center;
}

thead {
	vertical-align: bottom;
	white-space: nowrap;
}

th {
	font-weight: 700;
}


/* -------------------------------------------------------------------------- */

/*	3. Helper Classes
/* -------------------------------------------------------------------------- */


/* Layout ------------------------------------ */

.no-margin {
	margin: 0;
}

.no-padding {
	padding: 0;
}

.screen-height {
	min-height: 100vh;
}

.admin-bar .screen-height {
	min-height: calc(100vh - 32px);
}

@media (max-width: 782px) {

	.admin-bar .screen-height {
		min-height: calc(100vh - 46px);
	}
}

.screen-width {
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
}
.section-inner {
	margin-left: auto;
	margin-right: auto;
	width: calc(100% - 60px);
}
/* Hiding and Showing ------------------------ */

.js .show-js {
	display: block !important;
}

.js .hide-js {
	display: none !important;
}

.no-js .show-no-js {
	display: block !important;
}

.no-js .hide-no-js {
	display: none !important;
}


/* Typography -------------------------------- */

.font-size-xl {
	font-size: 1.25em;
}

.font-size-xs {
	font-size: 0.8em;
}

.no-select {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


/* Colors ------------------------------------ */

/* COLOR */

.color-accent,
.color-accent-hover:focus,
.color-accent-hover:hover {
	color: var(--primary);
}

/* BACKGROUND COLOR */

.bg-accent,
.bg-accent-hover:focus,
.bg-accent-hover:hover {
	background-color: var(--primary);
}

/* BORDER COLOR */

.border-color-accent,
.border-color-accent-hover:focus,
.border-color-accent-hover:hover {
	border-color: var(--primary);
}

/* FILL COLOR */

.fill-children-accent,
.fill-children-accent * {
	fill: var(--primary);
}

.fill-children-current-color,
.fill-children-current-color * {
	fill: currentColor;
}


/* Image Classes ----------------------------- */

.bg-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-attachment-fixed {
	background-attachment: fixed;
}

@supports ( -webkit-overflow-scrolling: touch ) {

	.bg-attachment-fixed {
		background-attachment: scroll;
	}
}

@media ( prefers-reduced-motion: reduce ) {

	.bg-attachment-fixed {
		background-attachment: scroll;
	}
}

.wp-block-image.is-resized {
	margin-left: auto;
	margin-right: auto;
}


/* Social Icons ------------------------------ */

ul.social-icons {
	display: flex;
	flex-wrap: wrap;
	margin: -0.9rem 0 0 -0.9rem;
	width: calc(100% + 0.9rem);
}

ul.social-icons li {
	margin: 0.9rem 0 0 0.9rem;
}

.social-icons a {
	align-items: center;
	border-radius: 50%;
	color: #fff;
	display: flex;
	justify-content: center;
	padding: 0;
	text-decoration: none;
	transition: transform 0.15s ease-in-out;
	width: 4.4rem;
}

.social-icons a:focus,
.social-icons a:hover {
	text-decoration: none;
	color: var(--secondary);
}


/* -------------------------------------------------------------------------- */

/*	4.	Site Header
/* -------------------------------------------------------------------------- */


#site-header {
	background: rgba(255,255,255,0.95);
	position: relative;
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.header-inner {
	z-index: 100;
}

/* Header Titles ----------------------------- */


body:not(.enable-search-modal) .header-titles-wrapper {
	justify-content: flex-start;
	padding-left: 0;
	text-align: left;
}
.footer-logo,
.site-logo {
		max-width: 215px;
	}
.site-title,
.site-logo,
.site-description {
	margin: 0;
}

.site-title {
	font-size: 2.1rem;
	font-weight: 600;
	line-height: 1;
}

.site-title a {
	color: inherit;
	display: block;
	text-decoration: none;
}

.site-title a:hover,
.site-title a:focus {
	text-decoration: underline;
}

.site-description {
	margin-top: 1rem;
	color: #fff;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.2;
}

.site-logo a,
.site-logo img {
	display: block;
}

.header-titles .site-logo .site-logo {
	margin: 0;
}

.site-logo img {
	max-height: 6rem;
	margin: 0 auto;
	width: auto;
}

body:not(.enable-search-modal) .site-logo img {
	margin: 0;
}

/* Overlay Header ---------------------------- */

.overlay-header #site-header {
	background: transparent;
	margin: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 2;
}

.overlay-header .header-inner {
	color: #fff;
}

.overlay-header .site-description,
.overlay-header .toggle {
	color: inherit;
}

.overlay-header .header-inner .toggle-wrapper::before {
	background-color: currentColor;
	opacity: 0.25;
}

.admin-bar.overlay-header #site-header {
	top: 32px;
}

@media (max-width: 782px) {

	.admin-bar.overlay-header #site-header {
		top: 46px;
	}
}

/* Header Navigation ------------------------- */

.header-navigation-wrapper {
	display: none;
}

/* Header Toggles ---------------------------- */

.header-toggles {
	display: none;
}



.header-inner .toggle svg {
	display: block;
	position: relative;
	z-index: 1;
}

.header-inner .toggle path {
	fill: currentColor;
}

.toggle-inner {
	display: flex;
	justify-content: center;
	height: auto;
	position: relative;
}

.toggle-icon {
	display: block;
	overflow: hidden;
}

.toggle-inner .toggle-text {
	color: #6d6d6d;
	font-size: 1rem;
	font-weight: 600;
	position: absolute;
	top: calc(100% + 0.5rem);
	width: auto;
	white-space: nowrap;
	word-break: break-all;
}

.overlay-header .toggle-text {
	color: inherit;
}

.header-inner .toggle:focus .toggle-text,
.header-inner .toggle:hover .toggle-text {
	text-decoration: underline;
}


/* Navigation Toggle ------------------------- */

.nav-toggle {
	position: absolute;
	bottom: 0;
	right: 0;
	top: 0;
	width: 6.6rem;
	background-color: transparent;
}

.nav-toggle .toggle-icon,
.nav-toggle svg {
	height: 40px;
	width: 40px;
	color: var(--primary);
}

.nav-toggle .toggle-inner {
	padding-top: 0;
}

/* Primary Menu ---------------------------- */

.primary-menu-wrapper {
	display: none;
}

ul.primary-menu {
	display: flex;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: -0.0277em;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin: -0.8rem 0 0 -1.6rem;
	align-items: center;
}

.primary-menu .icon {
	display: block;
	height: 0.7rem;
	position: absolute;
	pointer-events: none;
	transform: rotate(-45deg);
	width: 1.3rem;
}

.primary-menu .icon::before,
.primary-menu .icon::after {
	content: "";
	display: block;
	background-color: currentColor;
	position: absolute;
	bottom: calc(50% - 0.1rem);
	left: 0;
}

.primary-menu .icon::before {
	height: 0.9rem;
	width: 0.2rem;
}

.primary-menu .icon::after {
	height: 0.2rem;
	width: 0.9rem;
}

.primary-menu li {
	font-size: inherit;
	line-height: 1.25;
	position: relative;
}

.primary-menu > li {
    margin: 10px 0 0 45px;
}
.primary-menu > li.menu-item-has-children > a {
	padding-right: 2rem;
}

.primary-menu > li > .icon {
	right: -0.5rem;
	top: calc(50% - 0.4rem);
}


.primary-menu a {
	color: var(--primary);
	display: block;
	line-height: 1.2;
	text-decoration: none;
	word-break: normal;
	word-wrap: normal;
}
ul.primary-menu .menu-item-22 a {
	display: block;
	width: max-content;
	padding: 10px 20px;
	background-color: var(--primary);
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
}
ul.primary-menu .menu-item-22 a:hover,
ul.primary-menu .menu-item-22 a:focus,
ul.primary-menu .menu-item-22 a:active {
	background-color: var(--secondary);
}
.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current_page_ancestor {
	text-decoration: underline;
}

.primary-menu li.current-menu-item > a,
.primary-menu li.current-menu-item > .link-icon-wrapper > a {
	font-weight: bold;	
	position: relative;
}
.primary-menu li.current-menu-item > a::after,
.primary-menu li.current-menu-item > .link-icon-wrapper > a::after {
	content: "";
	width: 40px;
	height: 2px;
	background-color: var(--secondary);
	display: block;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}

.primary-menu li.current-menu-item > a:hover,
.primary-menu li.current-menu-item > .link-icon-wrapper > a:hover,
.primary-menu li.current-menu-item > a:focus,
.primary-menu li.current-menu-item > .link-icon-wrapper > a:focus {
	text-decoration: none;
}

/* SUB MENU */

.primary-menu ul {
	background: var(--primary);
	border-radius: 0.4rem;
	color: #fff;
	font-size: 1.7rem;
	opacity: 0;
	padding: 1rem 0;
	position: absolute;
	right: 9999rem;
	top: calc(100% + 2rem);
	transition: opacity 0.15s linear, transform 0.15s linear, right 0s 0.15s;
	transform: translateY(0.6rem);
	width: 20rem;
	z-index: 1;
}

.primary-menu li.menu-item-has-children:hover > ul,
.primary-menu li.menu-item-has-children:focus > ul,
.primary-menu li.menu-item-has-children.focus > ul {
	right: 0;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.15s linear, transform 0.15s linear;
}

.primary-menu ul::before,
.primary-menu ul::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 100%;
}

.primary-menu ul::before {
	height: 2rem;
	left: 0;
	right: 0;
}

.primary-menu ul::after {
	border: 0.8rem solid transparent;
	border-bottom-color: var(--primary);
	right: 1.8rem;
}

.primary-menu ul a {
	background: transparent;
	border: none;
	color: inherit;
	display: block;
	padding: 1rem 2rem;
	transition: background-color 0.15s linear;
	width: 100%;
}

.primary-menu ul li.menu-item-has-children > a {
	padding-right: 4.5rem;
}

.primary-menu ul li.menu-item-has-children .icon {
	position: absolute;
	right: 1.5rem;
	top: calc(50% - 0.5rem);
}

/* DEEP DOWN */

.primary-menu ul ul {
	top: -1rem;
}

.primary-menu ul li.menu-item-has-children:hover > ul,
.primary-menu ul li.menu-item-has-children:focus > ul,
.primary-menu ul li.menu-item-has-children.focus > ul {
	right: calc(100% + 2rem);
}

.primary-menu ul ul::before {
	bottom: 0;
	height: auto;
	left: auto;
	right: -2rem;
	top: 0;
	width: 2rem;
}

.primary-menu ul ul::after {
	border-bottom-color: transparent;

	/*rtl:ignore*/
	border-left-color: #000;
	bottom: auto;
	right: -1.6rem;
	top: 2rem;
}

.rtl .primary-menu ul ul::after {
	transform: rotate(180deg);
}

/*
 * Enable nav submenu expansion with tapping on arrows on large-viewport
 * touch interfaces (e.g. tablets or laptops with touch screens).
 * These rules are supported by all browsers (>IE11) and when JS is disabled.
 */
@media (any-pointer: coarse) {

	.primary-menu > li.menu-item-has-children > a {
		padding-right: 0;
		margin-right: 2rem;
	}

	.primary-menu ul li.menu-item-has-children > a {
		margin-right: 4.5rem;
		padding-right: 0;
		width: unset;
	}

}

/* Repeat previous rules for IE11 (when JS enabled for polyfill). */
body.touch-enabled .primary-menu > li.menu-item-has-children > a {
	padding-right: 0;
	margin-right: 2rem;
}

body.touch-enabled .primary-menu ul li.menu-item-has-children > a {
	margin-right: 4.5rem;
	padding-right: 0;
	width: unset;
}

/* -------------------------------------------------------------------------- */

/*	5. Menu Modal
/* -------------------------------------------------------------------------- */


.menu-modal {
	background: #fff;
	display: none;
	opacity: 0;
	overflow-y: auto;
	overflow-x: hidden;
	position: fixed;
	bottom: 0;
	left: -99999rem;
	right: 99999rem;
	top: 0;
	transition: opacity 0.25s ease-in, left 0s 0.25s, right 0s 0.25s;
	z-index: 99;
}

.admin-bar .menu-modal {
	top: 32px;
}

@media (max-width: 782px) {

	.admin-bar .menu-modal {
		top: 46px;
	}
}

.menu-modal.show-modal {
	background-color: #444;
	display: flex;
	padding-left: 15%;
}

.menu-modal.active {
	left: 0;
	opacity: 1;
	right: 0;
	transition: opacity 0.25s ease-out;
}

.menu-modal-inner {

	display: flex;
	justify-content: stretch;
	overflow: auto;
	-ms-overflow-style: auto;
	width: 100%;
}

.menu-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	width: 100%;
}

button.close-nav-toggle {
	align-items: center;
	display: flex;
	font-size: 1.6rem;
	font-weight: 500;
	justify-content: flex-end;
	padding: 3.1rem 0;
	width: 100%;
	background: transparent;
}
/* Standard-Regel für alle Browser */
button.close-nav-toggle:focus,
button.close-nav-toggle:active {
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

/* Fallback für ältere Webkit-Browser */
button.close-nav-toggle:focus,
button.close-nav-toggle:active {
	-webkit-focus-ring-color: transparent;
}

/* Fallback für Firefox */
button.close-nav-toggle::-moz-focus-inner {
	border: 0;
}

/* Fallback für Internet Explorer */
button.close-nav-toggle:focus {
	outline: none;
	-ms-focus-inner {
		border: 0;
	}
}

button.close-nav-toggle svg {
	height: 1.6rem;
	width: 1.6rem;
	color: #fff;
	margin-right: 30px;
}

button.close-nav-toggle .toggle-text {
	margin-right: 1.6rem;
	color: #fff;
	display: none;
}

.menu-modal .menu-top {
	flex-shrink: 0;
}


/* Main Menu --------------------------------- */
.menu-modal.show-modal {
	/* Fallback für ältere Browser ohne Gradienten-Unterstützung */
	background-color: #444;
	/* Fallback für Browser, die nur lineare Gradienten unterstützen */
	background: linear-gradient(to right, #444 30px, #66c9cc 30px);
	/* Standard-Syntax für moderne Browser */
	background: linear-gradient(to right, #444 30px, transparent 30px), radial-gradient(circle at 0% center, #66c9cc, #369a9f);
	/* Fallback für Webkit-Browser */
	background: -webkit-linear-gradient(to right, #444 30px, transparent 30px), -webkit-radial-gradient(left center, #66c9cc, #369a9f);
	/* Fallback für Firefox */
	background: -moz-linear-gradient(to right, #444 30px, transparent 30px), -moz-radial-gradient(left center, #66c9cc, #369a9f);
	/* Fallback für Opera */
	background: -o-linear-gradient(to right, #444 30px, transparent 30px), -o-radial-gradient(left center, #66c9cc, #369a9f);
	/* Fallback für Internet Explorer */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#444', endColorstr='#66c9cc', GradientType=1);
	background-size: 100% 100%, 100% 100%;
	background-repeat: no-repeat;
	display: flex;
	padding-left: 0px;
}

.modal-menu {
	position: relative;
	left: calc(50% - 50vw);
	padding: 20px 0% 20px 15px;
	width: 100vw;
	background: transparent; /* Hintergrund auf transparent setzen, da der Verlauf im übergeordneten Container definiert ist */
	color: #fff;
}


@media(max-width: 1600px) {
	.modal-menu {
		padding-right: 0px !important;
	}
	#site-content {
		margin-top: 120px;
	}
}

.modal-menu li {
	border-color: #59e1eb;
	border-style: solid;
	border-width: 0.1rem 0 0 0;
	display: flex;
	flex-wrap: wrap;
	line-height: 1;
	justify-content: flex-start;
	margin: 0;
}

.modal-menu > li > a,
.modal-menu > li > .ancestor-wrapper > a {
	font-size: 1.6rem;
	font-weight: normal;
	color: #fff;
	padding-left: 25px;
	letter-spacing: 1px;
}

.modal-menu > li:last-child {
	border-bottom-width: 0.1rem;
}

.modal-menu .ancestor-wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.modal-menu a {
	display: block;
	padding: 1.8rem 2.5rem;
	padding-left: 0;
	text-decoration: none;
	width: 100%;
	letter-spacing: 1px;
}

.modal-menu a:focus,
.modal-menu a:hover,
.modal-menu a:active,
.modal-menu li.current-menu-item > .ancestor-wrapper > a,
.modal-menu li.current_page_ancestor > .ancestor-wrapper > a,
.modal-menu .ancestor-wrapper a:focus,
.modal-menu .ancestor-wrapper a:hover,
.modal-menu .ancestor-wrapper a:active {
	text-decoration: none;
	color: #66c9cc;
	padding-left: 25px;
	background-color: #fff;
	font-weight: bold;
}



button.sub-menu-toggle {
	border-left: 0.1rem solid #dedfdf;
	flex-shrink: 0;
	margin: 1rem 0;
	padding: 0 2.5rem;
}

button.sub-menu-toggle svg {
	height: 0.9rem;
	transition: transform 0.15s linear;
	width: 1.5rem;
}

button.sub-menu-toggle.active svg {
	transform: rotate(180deg);
}

.modal-menu ul {
	display: none;
	margin: 0;
	width: 100%;
}

.modal-menu ul li {
	border-left-width: 1rem;
}

.modal-menu ul li a {
	color: inherit;
	font-weight: 500;
}

.ancestor-wrapper {
	position: relative;
}

.modal-menu {
	padding-left: 30px;
	padding-right: 30px;
}

.modal-menu a:focus::before,
.modal-menu a:hover::before,
.modal-menu li.current-menu-item > .ancestor-wrapper > a::before,
.modal-menu li.current_page_ancestor > .ancestor-wrapper > a::before {
	content: "";
	display: block;
	width: 20px; /* Breite des Halbkreises - sollte der Höhe von .ancestor-wrapper entsprechen */
	height: 20px; /* Höhe des Halbkreises - sollte der Höhe von .ancestor-wrapper entsprechen */
	background-color: #fff; /* Farbe des Halbkreises */
	border-radius: 50%; /* Form des Halbkreises */
	position: absolute; /* Positionierung des Halbkreises */
	left: 11px; /* Position von links, um den Halbkreis links vom Link zu platzieren */
	top: 50%; /* Vertikale Ausrichtung in der Mitte */
	transform: translate(-100%, -50%); /* Zentrierung und Verschiebung nach links */
	clip-path: polygon(0% 0%, 50% 0, 50% 100%, 0% 100%); /* Schneidet die rechte Hälfte des Kreises ab, um einen Halbkreis zu erzeugen */
	z-index: 100;
}


/* Main menu animation ----------------------- */

.menu-wrapper .menu-item {
	position: relative;
}

.menu-wrapper .active {
	display: block;
}

.menu-wrapper.is-toggling {
	pointer-events: none;
}

.menu-wrapper.is-toggling .menu-item {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
}

.menu-wrapper.is-toggling .menu-bottom .social-menu .menu-item {
	width: auto;
}

.menu-wrapper.is-animating .menu-item,
.menu-wrapper.is-animating .toggling-target {
	transition-duration: 250ms;
}

.menu-wrapper.is-animating .menu-item {
	transition-property: transform;
}

.menu-wrapper.is-toggling .toggling-target {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}

.menu-wrapper.is-toggling .toggling-target.active {
	opacity: 0;
}

.menu-wrapper.is-animating.is-toggling .toggling-target {
	display: block;
	transition-property: opacity;
	opacity: 0;
}

.menu-wrapper.is-animating.is-toggling .toggling-target.active {
	opacity: 1;
}

.menu-wrapper.is-toggling .modal-menu > li:last-child li {
	border-top-color: transparent;
	border-bottom-width: 0.1rem;
}

@media (prefers-reduced-motion: reduce) {

	.menu-wrapper.is-animating .menu-item,
	.menu-wrapper.is-animating .toggling-target {
		transition-duration: 1ms !important;
	}

}


/* Expanded Menu ----------------------------- */

.expanded-menu {
	display: none;
}

.mobile-menu {
	display: block;
}


/* Menu Bottom ------------------------------- */

.menu-bottom {
	flex-shrink: 0;
	padding: 4rem 0;
}

.menu-bottom nav {
	width: 100%;
}

.menu-copyright {
	display: none;
	font-size: 1.6rem;
	font-weight: 500;
	margin: 0;
}

.menu-copyright a:focus,
.menu-copyright a:hover {
	text-decoration: underline;
}

.menu-bottom .social-menu {
	justify-content: center;
}
footer .social-menu {
	margin-top: 8px;
}
/* -------------------------------------------------------------------------- */

/*	9. Post: Single
/* -------------------------------------------------------------------------- */


/* Post Header ------------------------------- */

.singular .entry-header {
	background-color: #fff;
	padding: 4rem 0;
}

.entry-categories {
	line-height: 1.25;
	margin-bottom: 2rem;
}

.entry-categories-inner {
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	margin: -0.5rem 0 0 -1rem;
}

.entry-categories a {
	border-bottom: 0.15rem solid currentColor;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.036666667em;
	margin: 0.5rem 0 0 1rem;
	text-decoration: none;
	text-transform: uppercase;
}

.entry-categories a:focus,
.entry-categories a:hover {
	border-bottom-color: transparent;
}

h1.entry-title,
h2.entry-title {
	margin: 0;
}

.entry-title a {
	color: inherit;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	text-decoration: underline;
}

.intro-text {
	margin-top: 2rem;
}

.singular .intro-text {
	font-size: 2rem;
	letter-spacing: -0.0315em;
	line-height: 1.4;
}

/* POST META */

.post-meta-single-top .post-meta {
	justify-content: center;
}

.post-meta-wrapper {
	margin-top: 2rem;
	margin-right: auto;
	margin-left: auto;
	max-width: 58rem;
	width: 100%;
}

.post-meta {
	color: #6d6d6d;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.5rem;
	font-weight: 500;
	list-style: none;
	margin: -1rem 0 0 -2rem;
}

.post-meta li {
	flex-shrink: 0;
	letter-spacing: -0.016875em;
	margin: 1rem 0 0 2rem;
	max-width: calc(100% - 2rem);
}

.post-meta a {
	color: inherit;
	text-decoration: none;
}

.post-meta a:focus,
.post-meta a:hover {
	text-decoration: underline;
}

.post-meta .meta-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
}

.post-meta .meta-icon {
	flex-shrink: 0;
	margin-right: 1rem;
}

.sticky .post-sticky {
	color: inherit;
}

.post-meta .post-author .meta-icon svg {
	width: 1.6rem;
	height: 1.8rem;
}

.post-meta .post-categories .meta-icon svg {
	width: 1.8rem;
	height: 1.7rem;
}

.post-meta .post-comment-link .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}

.post-meta .post-date .meta-icon svg {
	width: 1.7rem;
	height: 1.8rem;
}

.post-meta .post-edit .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}

.post-meta .post-sticky .meta-icon svg {
	width: 1.5rem;
	height: 1.8rem;
}

.post-meta .post-tags .meta-icon svg {
	width: 1.8rem;
	height: 1.8rem;
}

.post-meta svg * {
	fill: currentColor;
}


/* Featured Media ---------------------------- */

.featured-media {
	margin-top: 5rem;
	position: relative;
}

.singular .featured-media {
	margin-top: 0;
}

.singular .featured-media-inner {
	position: relative;
	left: calc(50% - 50vw);
	width: 100vw;
}

.singular .featured-media::before {
	background: #fff;
	content: "";
	display: block;
	position: absolute;
	bottom: 50%;
	left: 0;
	right: 0;
	top: 0;
}

.featured-media img {
	margin: 0 auto;
}

.featured-media figcaption {
	margin: 1.5rem auto 0 auto;
	text-align: center;
	width: calc(100% - 5rem);
}

.post-inner {
	padding-top: 0rem;
}

.reduced-spacing.missing-post-thumbnail .post-inner {
	padding-top: 0;
}


/* Post Footer ------------------------------- */

/* POST NAV LINKS */

.post-nav-links {
	border-radius: 0.4rem;
	display: flex;
	font-size: 0.9em;
	font-weight: 600;
	line-height: 1;
	margin: 3em auto 0 auto;
	padding: 0;
	width: calc(100% - 4rem);
	max-width: 58rem;
}

.post-nav-links > span.label {
	padding: 1em 0;
}

.post-nav-links > * {
	padding: 1em 0.75em;
}

/* POST META BOTTOM */

.post-meta-wrapper.post-meta-single-bottom {
	margin-top: 3rem;
}



/* -------------------------------------------------------------------------- */

/*	10. Blocks
/* -------------------------------------------------------------------------- */


/* Block Colors ------------------------------ */

.has-text-color a {
	color: inherit;
}

/* CUSTOM COLORS */

:root .has-accent-color {
	color: var(--primary);
}


/* Block Typography Classes ------------------ */

.has-text-align-left {

	/*rtl:ignore*/
	text-align: left;
}

.has-text-align-center {
	text-align: center;
}

.has-text-align-right {

	/*rtl:ignore*/
	text-align: right;
}

.has-drop-cap:not(:focus)::first-letter {
	color: var(--primary);
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 5.1em;
	font-weight: 800;
	margin: 0.05em 0.1em 0 0;
}

.has-drop-cap:not(:focus)::first-letter::after {
	content: "";
	display: table;
	clear: both;
}

.has-drop-cap:not(:focus)::after {
	padding: 0;
}


/* Block Font Sizes -------------------------- */

.entry-content .has-small-font-size {
	font-size: 0.842em;
}

.entry-content .has-normal-font-size,
.entry-content .has-regular-font-size {
	font-size: 1em;
}

.entry-content .has-medium-font-size {
	font-size: 1.1em;
	line-height: 1.45;
}

.entry-content .has-large-font-size {
	font-size: 1.25em;
	line-height: 1.4;
}

.entry-content .has-larger-font-size {
	font-size: 1.5em;
	line-height: 1.3;
}


/* Block: Base Margins ----------------------- */

*[class*="_inner-container"] > *:first-child {
	margin-top: 0;
}

*[class*="_inner-container"] > *:last-child {
	margin-bottom: 0;
}



/* -------------------------------------------------------------------------- */

/*	11. Entry Content
/* -------------------------------------------------------------------------- */


.entry-content {
	line-height: 1.5;
}

.entry-content > * {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.25em;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.read-more-button-wrap {
	margin-top: 1em;
	text-align: center;
}

.entry-content a:hover,
.entry-content a:focus {
	text-decoration: none;
}

.entry-content p,
.entry-content li {
	line-height: 1.4;
}

.entry-content li img {
	display: inline-block;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin: 3.5rem auto 2rem;
}

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
	margin-bottom: 1rem;
}

.entry-content hr {
	margin: 4rem auto;
}


/* Font Families ----------------------------- */

.entry-content {
	font-family: NonBreakingSpaceOverride, "Hoefler Text", "Noto Serif", Garamond, "Times New Roman", serif;
	letter-spacing: normal;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content cite,
.entry-content figcaption,
.entry-content table,
.entry-content address,
.entry-content .wp-caption-text,
.entry-content .wp-block-file {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}

@supports ( font-variation-settings: normal ) {

	.entry-content h1,
	.entry-content h2,
	.entry-content h3,
	.entry-content h4,
	.entry-content h5,
	.entry-content h6,
	.entry-content cite,
	.entry-content figcaption,
	.entry-content table,
	.entry-content address,
	.entry-content .wp-caption-text,
	.entry-content .wp-block-file {
		font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	}
}


/* Alignment Classes ------------------------- */

.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 58rem;
	width: calc(100% - 4rem);
}

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 58rem;
	width: 100%;
}

.alignnone,
.aligncenter,
.alignleft,
.alignright,
.alignwide {
	margin-top: 4rem;
	margin-right: auto;
	margin-bottom: 4rem;
	margin-left: auto;
}

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
	margin-left: auto;
	margin-right: auto;
}

/* Full */

.alignfull {
	margin-top: 5rem;
	margin-right: auto;
	margin-bottom: 5rem;
	margin-left: auto;
	max-width: 100vw;
	position: relative;
	width: 100%;
}

[class*="__inner-container"] > .alignfull {
	max-width: 100%;
}

/* Wide */

.alignwide {
	max-width: 120rem;
	position: relative;
	width: calc(100% - 4rem);
}

[class*="__inner-container"] > .alignwide {
	width: 100%;
}

/* Center */

.aligncenter,
.aligncenter img {
	margin-left: auto;
	margin-right: auto;
}

/* Left and right */

.alignleft,
.alignright {
	max-width: 50%;
}

.alignleft {

	/*rtl:ignore*/
	float: left;
	margin: 0.3rem 2rem 2rem 2rem;
}

.alignright {

	/*rtl:ignore*/
	float: right;
	margin: 0.3rem 2rem 2rem 2rem;
}


/* Entry Media ------------------------------- */

.alignfull > figcaption,
.alignfull > .wp-caption-text {
	margin-left: auto;
	margin-right: auto;
	max-width: 58rem;
	width: calc(100% - 4rem);
}


/* -------------------------------------------------------------------------- */

/*	14. Error 404
/* -------------------------------------------------------------------------- */


.error404 #site-content {
	padding-top: 4rem;
}

.error404-content {
	text-align: center;
}

.error404 #site-content .search-form {
	justify-content: center;
	margin-top: 3rem;
}



/* -------------------------------------------------------------------------- */

/*	16. Site Footer
/* -------------------------------------------------------------------------- */


.footer-nav-widgets-wrapper,
#site-footer {
	background-color: #fff;
	border-color: #dedfdf;
	border-style: solid;
	border-width: 0;
}

.footer-top-visible .footer-nav-widgets-wrapper,
.footer-top-hidden #site-footer {
	margin-top: 5rem;
}

.reduced-spacing.footer-top-visible .footer-nav-widgets-wrapper,
.reduced-spacing.footer-top-hidden #site-footer {
	border-top-width: 0.1rem;
}

.footer-top,
.footer-widgets-outer-wrapper,
#site-footer {
	padding: 3rem 0;
}


/* Footer Top -------------------------------- */

.footer-top {
	display: flex;
	border-bottom: 0.1rem solid #dedfdf;
	justify-content: space-between;
}

/* FOOTER MENU */

.footer-menu {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: -0.0277em;
}

.footer-menu li {
	line-height: 1.25;
	margin:  0 0 0.25em 0;
}

.footer-menu a {
	text-decoration: none;
	word-break: normal;
	word-wrap: normal;
}

.footer-menu a:hover,
.footer-menu a:focus {
	text-decoration: underline;
}

/* FOOTER SOCIAL */

.footer-social-wrapper {
	margin: 0;
	width: 100%;
}

.has-footer-menu .footer-social-wrapper {
	flex-shrink: 0;
	margin-left: 1rem;
	width: 50%;
}

ul.footer-social {
	margin: -0.5rem 0 0 -0.5rem;
}

.has-footer-menu .footer-social {
	justify-content: flex-end;
}

ul.footer-social li {
	margin: 0.5rem 0 0 0.5rem;
}

.footer-social a::before {
	font-size: 1.6rem;
}

/* Footer Widgets ---------------------------- */

.footer-widgets-outer-wrapper {
	border-bottom: 0.1rem solid #dedfdf;
}

.footer-widgets + .footer-widgets {
	margin-top: 3rem;
}

/* Footer Bottom ----------------------------- */

#site-footer {
	font-size: 1.6rem;
}

#site-footer .section-inner {
	align-items: baseline;
	display: flex;
	justify-content: space-between;
}

#site-footer a {
	text-decoration: none;
}

#site-footer a:focus,
#site-footer a:hover {
	text-decoration: underline;
}

.footer-copyright a,
.privacy-policy a,
.powered-by-wordpress a {
	color: inherit;
}

.privacy-policy,
.powered-by-wordpress,
.to-the-top {
	color: #6d6d6d;
}

a.to-the-top {
	margin-left: 2.4rem;
	white-space: nowrap;
}

a.to-the-top > * {
	pointer-events: none;
}

.footer-copyright {
	font-weight: 300;
	margin: 0;
}

.powered-by-wordpress {
	display: none;
	margin: 0 0 0 2.4rem;
}


.to-the-top-long {
	display: none;
}


/* -------------------------------------------------------------------------- */

/*	17. Media Queries
/* -------------------------------------------------------------------------- */

@media ( max-width: 479px ) {



	/* Entry Content ------------------------- */

	/* LISTS */

	ul,
	ol {
		margin: 0 0 3rem 2rem;
	}

	li {
		margin: 0.5rem 0 0 1rem;
	}

	/* Post Footer --------------------------- */

	/* POST NAV LINKS */

	.post-nav-links {
		margin: 3em 0 0 0;
	}
}

@media ( min-width: 480px ) {


	/* Entry Content ------------------------- */

	/* ALIGNMENT CLASSES */

	.alignleft,
	.alignright {
		max-width: 26rem;
	}

	/* Post Footer --------------------------- */

	/* POST NAV LINKS */

	.post-nav-links {
		margin: 3em 0 0 0;
	}
}

@media ( max-width: 599px ) {


	/* Template -------------------------------- */

	/* TEMPLATE: COVER */

	.template-cover .post-inner .post-meta-wrapper,
	.template-cover .post-inner .author-bio {
		width: calc( 100% - 4rem );
	}

	/* Post Footer --------------------------- */

	/* POST NAV LINKS */

	.post-nav-links {
		margin: 3em 0 0 0;
	}
}

@media ( min-width: 600px ) {

	/* Post Footer --------------------------- */

	/* POST NAV LINKS */

	.post-nav-links {
		margin: 3em 0 0 0;
	}
}

@media ( min-width: 660px ) {


	/* Entry Content ------------------------- */

	/* ALIGNMENT CLASSES */

	.entry-content > .alignleft {

		/*rtl:ignore*/
		margin-left: 4rem;
	}

	

	.entry-content > .alignright {

		/*rtl:ignore*/
		margin-right: 4rem;
	}

	.entry-content > p .alignright,
	.entry-content > .wp-block-image .alignright {

		/*rtl:ignore*/
		margin-right: calc(( 100vw - 58rem - 8rem ) / -2);
	}

	

	/* Post Footer --------------------------- */

	/* POST NAV LINKS */

	.post-nav-links {
		margin: 3em auto 0 auto;
	}
}

@media ( min-width: 700px ) {

	/* Element Base ------------------------- */

	ul,
	ol {
		margin-bottom: 4rem;
	}

	pre {
		padding: 3rem;
	}

	hr {
		margin: 8rem auto;
	}

	table {
		font-size: 1.8rem;
	}

	
	/* TITLES */

	h1,
	.heading-size-1,
	h2,
	.heading-size-2,
	h3,
	.heading-size-3 {
		margin: 6rem auto 3rem;
	}

	h4,
	.heading-size-4,
	h5,
	.heading-size-5,
	h6,
	.heading-size-6 {
		margin: 4.5rem auto 2.5rem;
	}

	h1,
	.heading-size-1 {
		font-size: 6.4rem;
	}

	h2,
	.heading-size-2 {
		font-size: 4.8rem;
	}

	h3,
	.heading-size-3 {
		font-size: 4rem;
	}

	h4,
	.heading-size-4 {
		font-size: 3.2rem;
	}

	h5,
	.heading-size-5 {
		font-size: 2.4rem;
	}

	h6,
	.heading-size-6 {
		font-size: 1.8rem;
	}

	/* INPUTS */

	fieldset {
		padding: 3rem;
	}

	legend {
		padding: 0 1.5rem;
	}

	button,
	.button,
	.faux-button,
	.wp-block-button__link,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		font-size: 1.7rem;
	}

	/* MEDIA */

	figcaption,
	.wp-caption-text {
		margin-top: 1.8rem;
	}


	/* Helper Classes ------------------------- */

	/* SECTIONS */

	section {
		padding: 8rem 0;
	}



	/* Site Header --------------------------- */

	.header-inner {
		padding: 3.8rem 0;
	}

	.site-title {
		font-size: 2.4rem;
		font-weight: 700;
	}

	.site-description {
		display: block;
	}

	.site-logo img {
		max-height: 9rem;
		transition: height 0.15s linear, width 0.15s linear, max-height 0.15s linear;
	}

	/* HEADER TOGGLES */

	.toggle-inner .toggle-text {
		font-size: 1.2rem;
	}

	.search-toggle {
		left: 2rem;
	}

	.nav-toggle {
		right: 2rem;
	}


	/* Menu Modal ---------------------------- */

	button.close-nav-toggle {
		font-size: 1.8rem;
		padding: 4rem 0;
	}

	button.close-nav-toggle svg {
		height: 2rem;
		width: 2rem;
	}

	button.close-nav-toggle .toggle-text {
		margin-right: 2.1rem;
	}

	.modal-menu {
		left: auto;
		width: 100%;
	}

	.modal-menu > li > a,
	.modal-menu > li > .ancestor-wrapper > a {
		font-size: 2.4rem;
		padding: 2.5rem 25px;
	}

	.modal-menu ul li {
		border-left-color: transparent;
	}

	.modal-menu > li > .ancestor-wrapper > button.sub-menu-toggle {
		padding: 0 3rem;
	}

	.modal-menu > li > .ancestor-wrapper > button.sub-menu-toggle svg {
		height: 1.1rem;
		width: 1.8rem;
	}

	.menu-bottom {
		align-items: center;
		display: flex;
		justify-content: space-between;
		padding: 4.4rem 0;
	}

	.menu-copyright {
		display: block;
		flex-shrink: 0;
		margin-right: 4rem;
	}

	

	/* Sub Page ------------------------------ */

	/* FEATURED MEDIA */

	.featured-media figcaption {
		margin: 2rem auto 0 auto;
		width: calc(100% - 8rem);
	}

	
	

	

	/* Post: Single -------------------------- */

	/* POST HEADER */

	.singular .entry-header {
		padding: 8rem 0;
	}

	.entry-categories {
		margin-bottom: 3rem;
	}

	.entry-categories-inner {
		margin: -1rem 0 0 -2rem;
	}

	.entry-categories a {
		font-size: 1.5rem;
		margin: 1rem 0 0 2rem;
	}

	.intro-text {
		font-size: 2rem;
		margin-top: 2.5rem;
	}

	.singular .intro-text {
		font-size: 2.6rem;
	}

	.post-meta-wrapper {
		margin-top: 3rem;
	}

	.post-meta {
		font-size: 1.6rem;
		margin: -1.4rem 0 0 -3rem;
	}

	.post-meta li {
		margin: 1.4rem 0 0 3rem;
		max-width: calc(100% - 3rem);
	}

	.featured-media {
		margin-top: 6rem;
	}


	/* POST FOOTER */

	.post-meta-wrapper.post-meta-single-bottom {
		margin-top: 4rem;
	}

	

	/* Entry Content ------------------------- */

	.entry-content {
		font-size: 2.1rem;
	}

	.entry-content p,
	.entry-content li {
		line-height: 1.476;
	}

	.entry-content h1,
	.entry-content h2,
	.entry-content h3 {
		margin: 6rem auto 3rem;
	}

	.entry-content h4,
	.entry-content h5,
	.entry-content h6 {
		margin: 4.5rem auto 2.5rem;
	}

	.alignnone,
	.aligncenter {
		margin-bottom: 4rem;
		margin-top: 4rem;
	}

	.alignleft {

		/*rtl:ignore*/
		margin: 0.3rem 2rem 2rem 0;
	}

	.alignright {

		/*rtl:ignore*/
		margin: 0.3rem 0 2rem 2rem;
	}


	.entry-content > .alignwide {
		max-width: calc(100vw - 8rem);
		width: calc(100vw - 8rem);
	}

	

	.entry-content > .alignwide:first-child,
	.entry-content > .alignfull:first-child {
		margin-bottom: 8rem;
	}

	/* ENTRY MEDIA */

	.alignfull > figcaption,
	.alignfull > .wp-caption-text {
		width: calc(100% - 8rem);
	}

	

	/* Display the full text for Newer and Older Posts. */

	.nav-short {
		display: inline;
	}

	.pagination .nav-links {
		font-size: 2.4rem;
		font-weight: 700;
		margin: -2.5rem 0 0 -4rem;
	}

	.nav-links > * {
		margin: 2.5rem 0 0 4rem;
	}


	/* Error 404 ----------------------------- */

	.error404 #site-content {
		padding-top: 8rem;
	}

	/* Widgets ------------------------------- */

	.widget .widget-title {
		margin-bottom: 3rem;
	}

	/* Site Footer --------------------------- */

	.footer-top-visible .footer-nav-widgets-wrapper,
	.footer-top-hidden #site-footer {
		margin-top: 8rem;
	}

	/* FOOTER TOP */

	.footer-top {
		padding: 3.7rem 0;
	}

	.footer-menu {
		font-size: 2.4rem;
		margin: -0.8rem 0 0 -1.6rem;
	}

	.footer-menu li {
		margin:  0 0 0.8rem 0;
	}

	.has-footer-menu .footer-social-wrapper {
		flex: 1;
		margin-left: 4rem;
		width: auto;
	}

	/* FOOTER WIDGETS */

	.footer-widgets-outer-wrapper {
		padding: 8rem 0;
	}

	.footer-widgets-wrapper {
		display: flex;
		justify-content: space-between;
		margin-left: -4rem;
		width: calc(100% + 4rem);
	}

	.footer-widgets {
		margin-left: 4rem;
		width: 50%;
	}

	.footer-widgets + .footer-widgets {
		margin-top: 0;
	}

	.footer-widgets .widget {
		border-top: none;
		margin-top: 5rem;
		padding-top: 0;
	}

	.footer-widgets .widget:first-child {
		margin-top: 0;
	}

	/* FOOTER BOTTOM */

	#site-footer {
		font-size: 1.8rem;
		padding: 4.3rem 0;
	}

	.footer-credits {
		display: flex;
		flex-wrap: wrap;
	}




	.to-the-top-long {
		display: inline;
	}

	.to-the-top-short {
		display: none;
	}

}

@media ( min-width: 1600px ) {

	.header-inner {
		padding: 20px 0  !important;
	}
	/* Document Setup ------------------------ */

	/* Helper Classes ------------------------ */

	/* Site Header --------------------------- */

	#site-header {
		z-index: 2;
	}

	.header-inner {
		align-items: center;
		display: flex;
		justify-content: space-between;
		padding: 2.8rem 0;
	}


	

	.wp-custom-logo .header-titles {
		align-items: center;
	}

	/* HEADER NAVIGATION */

	.header-navigation-wrapper {
		align-items: center;
		display: flex;
	}

	.primary-menu-wrapper {
		display: block;
		width: 100%;
	}

	/* HEADER TOGGLES */

	.mobile-search-toggle,
	.mobile-nav-toggle {
		display: none !important;
	}

	.primary-menu-wrapper + .header-toggles {
		margin-left: 3rem;
	}

	.header-toggles {
		display: flex;
		flex-shrink: 0;
		margin-right: -3rem;
	}

	.header-inner .toggle {
		height: 4.4rem;
		padding: 0 3rem;
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		top: auto;
		width: auto;
	}

	.header-inner .toggle-wrapper {
		position: relative;
	}

	.header-inner .toggle-wrapper::before {
		background: #dedfdf;
		content: "";
		display: block;
		height: 2.7rem;
		position: absolute;
		left: 0;
		top: calc(50% - 1.35rem);
		width: 0.1rem;
	}

	.header-inner .toggle-wrapper:first-child::before {
		content: none;
	}

	.header-inner .primary-menu-wrapper + .header-toggles .toggle-wrapper:first-child::before {
		content: "";
	}

	.nav-toggle-wrapper:not(.has-expanded-menu) {
		display: none;
	}

	.toggle-inner {
		position: static;
	}

	.toggle-inner .toggle-text {
		left: 0;
		right: 0;
		text-align: center;
		top: calc(100% - 0.3rem);
		width: auto;
	}

	.header-toggles:only-child .nav-toggle .toggle-inner {
		padding-top: 0;
	}

	.header-toggles:only-child .toggle-inner {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
	}

	.header-toggles:only-child .toggle-inner .svg-icon {
		order: 1;
	}

	.header-toggles:only-child .toggle-inner .toggle-text {
		position: static;
		padding-right: 20px;
		font-size: 15px;
		color: inherit;
	}

	/* Menu Modal ---------------------------- */

	.menu-modal {
		opacity: 1;
		justify-content: flex-end;
		padding: 0;
		transition: background-color 0.3s ease-in, left 0s 0.3s, right 0s 0.3s;
	}

	.menu-modal.cover-modal {
		background: rgba(0, 0, 0, 0);
	}

	.menu-modal.active {
		background: rgba(0, 0, 0, 0.2);
		transition: background-color 0.3s ease-out;
	}

	.menu-wrapper.section-inner {
		width: calc(100% - 8rem);
	}

	.menu-modal-inner {
		box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
		opacity: 0;
		padding: 0;
		transform: translateX(20rem);
		transition: transform 0.2s ease-in, opacity 0.2s ease-in;
		width: 50rem;
	}

	.menu-modal.active .menu-modal-inner {
		opacity: 1;
		transform: translateX(0);
		transition-timing-function: ease-out;
	}

	.mobile-menu {
		display: none;
	}

	.expanded-menu {
		display: block;
	}

	.menu-bottom {
		padding: 6rem 0;
	}

	.menu-bottom .social-menu {
		justify-content: flex-start;
	}

	/* Sub Page ------------------------------ */

	/* FEATURED MEDIA */

	.featured-media figcaption {
		width: 100%;
	}

	

	/* Post: Archive ------------------------- */

	/* Post: Single -------------------------- */

	.singular .intro-text {
		font-size: 2.8rem;
	}

	

	/* ENTRY MEDIA */

	.alignfull > figcaption,
	.alignfull > .wp-caption-text {
		width: calc(100% - 10rem);
	}

	/* Comments ------------------------------ */

	.comment-meta {
		padding-left: 0;
	}

	.comment-meta .avatar {
		left: -8rem;
	}

	/* Site Pagination ----------------------- */

	.pagination .nav-links {
		justify-content: space-between;
		margin: 0;
		width: 100%;
	}

	.nav-links > * {
		margin: 0 2rem;
	}

	.pagination .next,
	.pagination .prev {
		display: block;
	}

	.pagination .prev {
		margin: 0 auto 0 0;
	}

	.pagination .next {
		text-align: right;
		margin: 0 0 0 auto;
	}

	/* Site Footer --------------------------- */

	/* FOOTER TOP */

	.footer-top {
		align-items: center;
	}

	.footer-menu {
		align-items: baseline;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		font-size: 2.1rem;
		margin: -1.2rem 0 0 -2.4rem;
	}

	.footer-menu li {
		margin: 0 0 1.2rem 0 ;
	}

	.powered-by-wordpress {
		display: block;
	}
}


@media ( min-width: 1220px ) {

	/* Element Base -------------------------- */

	/* TITLES */

	h1,
	.heading-size-1 {
		font-size: 8.4rem;
	}

	/* Helper Classes ------------------------ */

	/* Site Header --------------------------- */

	/* PRIMARY MENU */

	ul.primary-menu {
		margin: -0.8rem 0 0 -2.5rem;
	}



	/* HEADER TOGGLES */

	.primary-menu-wrapper + .header-toggles {
		margin-left: 4rem;
	}

	.header-toggles {
		margin-right: -4rem;
	}

	.header-toggles .toggle {
		padding: 0 4rem;
	}

	/* Menu Modal ---------------------------- */

	/* Search Modal -------------------------- */

	/* Sub Page ------------------------------ */

	/* Template: Cover Template -------------- */

	.cover-header + .post-inner {
		padding-top: 10rem;
	}

	/* Post: Archive ------------------------- */

	/* Post: Single -------------------------- */

	.singular .intro-text {
		font-size: 3.2rem;
		letter-spacing: -0.03125em;
		line-height: 1.375;
	}

	

	/* Widgets ------------------------------- */

	.widget-content {
		font-size: 2.1rem;
	}

	/* Site Footer --------------------------- */

	.footer-menu {
		font-size: 2.4rem;
		margin: -1.5rem 0 0 -3rem;
	}

	.footer-menu li {
		margin: 0 0 1.5rem 0;
	}

	ul.footer-social {
		margin: -1rem 0 0 -1rem;
	}

	ul.footer-social li {
		margin: 1rem 0 0 1rem;
	}


	.footer-social a::before {
		font-size: 2rem;
	}

	/* FOOTER WIDGETS */

	.footer-widgets-wrapper {
		margin-left: -6rem;
		width: calc(100% + 6rem);
	}

	.footer-widgets {
		margin-left: 6rem;
	}

}

@media ( min-width: 1240px ) {


	/* Blocks -------------------------------- */

	body.template-full-width .entry-content > .alignleft {

		/*rtl:ignore*/
		margin-left: calc(( 100vw - 120rem ) / 2);
	}

	body.template-full-width .entry-content > .alignright {

		/*rtl:ignore*/
		margin-right: calc(( 100vw - 120rem ) / 2);
	}

}

@media ( min-width: 1280px ) {


	

	.entry-content > .alignwide {
		max-width: 120rem;
		width: 120rem;
	}

	[class*="__inner-container"] > .alignwide {
		max-width: 120rem;
		width: 100%;
	}

	.alignleft,
	.alignright,
	.entry-content > .alignleft,
	.entry-content > p .alignleft,
	.entry-content > .wp-block-image .alignleft,
	.entry-content > .alignright,
	.entry-content > p .alignright,
	.entry-content > .wp-block-image .alignright
	 {
		max-width: 25rem;
	}


	

}

@media ( min-width: 1330px ) {


	/* Entry Content ------------------------- */

	/* ALIGNMENT CLASSES */

	.alignleft,
	.alignright,
	.entry-content > .alignleft,
	.entry-content > p .alignleft,
	.entry-content > .wp-block-image .alignleft,
	.entry-content > .alignright,
	.entry-content > p .alignright,
	.entry-content > .wp-block-image .alignright
	{
		max-width: 29rem;
	}

}

pre, fieldset, input, textarea, table, table *, hr {
    border-color: #e5e5e5 !important;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 1px 1px 1px #0a3448b8;
}
input[type="submit"] {
    padding: 15px 40px;
	text-transform: none;
}
.ishalf p {
	margin-bottom: 10px;
}
.ishalf .first input {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.ishalf .last input {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.h1, .h2, .h3, .h4, .h5,
h1, h2, h3, h3, h4, h5 {
	color: var(--primary);
	margin-bottom: 0;
	margin-top: 0;
}
h1 {
	margin-top: 50px;
}
#contact h1,
.h2, h2 {
	font-size: 48px;
}
#contact h2,
.h3, h3 {
	font-size: 32px;
}
.h4, h4 {
	font-size: 24px;
}
.h5, h5 {
	font-size: 18px;
	font-weight: 300;
}
ul, ol {
	margin-bottom: 15px;
}
:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) + :is(p, ul, ol, nav, div)  {
	margin-top: 30px;
}
:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) + :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6)  {
	margin-top: 0px;
}
:is(p, ul, ol, nav, div) + :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6)  {
	margin-top: 30px;
}

.infobox + h3,
.infobox + .h3 {
	margin-top: 0px;
}
.h2 + .h3,
h2 + h3 {
	font-size: 32px;
	font-weight: 300;
}

.h2 em,
h2 em {
	font-size: 32px;
	font-weight: 300;
	font-style: normal;
}
.secondary-color {
	color: var(--secondary);
}
#slider {
	position: relative;
}
#slider:not(.full) {
	background-color: var(--paleblue)
}
#slider.full .container {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
#slider.full .slider-text  {
	max-width: 720px
}
#slider.full  {
	margin-bottom: 200px;
}
#slider.full .slider-text .extra {
	position: absolute;
	bottom: -90%;
	left: 50%;
	transform: translateX(-50%);	
}

#slider.half  .slider-text  {
	flex: 0 0 50%;
	padding-bottom: 50px;
	padding-right: 50px;
}
#slider.third  .slider-text  {
	flex: 0 0 65%;
	padding-bottom: 50px;
}
#slider.half .slider-half {
	padding: 50px 0;
}
#slider .slider-text h1 {
	font-size: 58px;
	color: var(--primary);
}
#slider .slider-text > p {
    font-size: 24px;
    color: var(--primary);
    letter-spacing: -0.15rem;
}

#slider .slider-text p a {
    display: inline-block;
    width: 230px;
    padding: 10px 10px;
    background-color: var(--secondary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
	overflow: hidden;
	font-weight: bold;
}
.carousel-wrapper {
	position: relative;
}
.carousel-wrapper::before {
	z-index: 2;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 150px;
	height: 100%;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%);
}
.carousel-wrapper::after {
	z-index: 2;
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 150px;
	height: 100%;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
}
#animated-carousel {
	display: flex;
    position: relative;
    width: 150%;
    overflow: hidden;
	margin-top: 100px;
}
#animated-carousel .logo {
    flex: 0 0 auto;
    width: 230px;
    height: 180px;
    object-fit: contain;  /* Stellt sicher, dass das Bild seine Proportionen beibehält */
    margin-right: 100px;
}
.home #bereich_1 {
	padding-bottom: 0;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-weight: normal;
    display: block;
    position: absolute;
    width: max-content;
    top: 50%;
    right: -190px;
    transform: translateY(-50%);
    background: red;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    border-radius: 10px;
    /* bottom: 0; */
    z-index: 1;
}
.wpcf7-not-valid-tip::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent red;
    transparent transparent: ;
    position: absolute;
    top: 6px;
    left: -8px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: red;
    font-size: 15px;
    border-radius: 10px;
    padding: 10px;
    margin: 0;
    background: red;
    color: #fff;
	text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: #46b450;
	border-radius: 10px;
    padding: 10px;
    margin: 0;
    text-align: center;
    color: #fff;
}
.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 20px;
}

.wpcf7-submit,
.btn {	
	font-size: 18px;
	transition: all 0.2s linear 0s;
	display: inline-block;
    width: 230px;
    padding: 10px 10px;
    background-color: var(--secondary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
	overflow: hidden;
	position: relative;
	border: 0
}

.wpcf7-submit {
	width: 270px;
	text-transform: none;
}
#consulting .popup-text .bg-secondary::before,
.wpcf7-submit::before,
.btn::before {
	content: "\f054";
    font-family: 'Font Awesome 6 Free';
	font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0px;
    height: 100%;
    width: 30px;
    background-color: var(--primary);
    border-radius: 0 50% 50% 0;
    transform: scale(0,1);
    transform-origin: left center;
    transition: all 0.2s linear 0s;
	color: #fff;
}
#consulting .popup-text .bg-secondary::before{
    top: 45px;
    left: 8px;
    height: 35px;
    width: 60px;   
    border-radius: 0 15px 15px 0; 
    padding-left: 30px
}
#consulting:hover .popup-text .bg-secondary,
.wpcf7-submit:hover,
.wpcf7-submit:focus,
.wpcf7-submit:active,
.btn:hover {
	text-indent: 30px;
	color: #fff;
	text-decoration: none;
}
#consulting:hover .popup-text .bg-secondary::before,
.wpcf7-submit:hover::before,
.wpcf7-submit:focus::before,
.wpcf7-submit:active::before,
.btn:hover::before {
	transform: scale(1,1);
	text-indent: 0;
}
	
#flag {
	position: fixed;
	top: 100px;
	right: -140px;
	height: 40px;
	transition: 0.3s;
}
#flag img {
	max-height: 100%;
}
#flag:hover {
	right: 0
}

table td,
table th {
	color: var(--primary);
	padding: 10px 30px;
}
table .fa-check {
	color: var(--secondary);
	margin: 0 auto;
	display: block;
}

.bg-primary {
	background-color: var(--primary) !important
}
.bg-dark {
	background-color:#082736 !important
}
.bg-padding {
	padding: 100px 0;
}
.boxedWhite + .boxedWhite,
.boxedBlue  + .boxedBlue  {
	padding-top: 0px;
}
.fullBlue,
.fullWhite {
	padding-left: 0px;
	padding-right: 0px;
}
.box-blue,
table tr:nth-child(even),
.boxedBlue .container-wrapper,
.fullBlue,
.fullBlueTextboxed  {
	background-color: var(--paleblue)
}
.box-blue {
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
}
.box-blue,
.boxedBlue .container-wrapper *,
.fullBlue *,
.fullBlueTextboxed *  {
	color: var(--primary)
}
#contact .container-wrapper,
.fullBlueTextboxed .container-wrapper,
.boxedBlue .container-wrapper,
.boxedWhite .container-wrapper {
	width: 100%;
    padding-right: var(--bs-gutter-x,.75rem);
    padding-left: var(--bs-gutter-x,.75rem);
    margin-right: auto;
    margin-left: auto;
	max-width: 1320px;
}
.boxedBlue .container-wrapper {
	border-radius: 10px;
	padding: 50px 100px;
}
.boxedBlue .container-wrapper {
	border-radius: 10px;
	padding: 50px 100px;
}
.imageText50Left .container-wrapper .row,
.imageText50Right .container-wrapper .row {
	align-items: flex-end;
}


.box-white,
.box-blue {
	padding: 30px;
	border-radius: 10px;
}
.box-white {
	background-color: #fff;
}
.banner {
	position: relative;
	padding: 50px;
	min-height: 270px;
	overflow: hidden;
	border-radius: 10px;
}
.banner img {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    z-index: -1;
    margin: auto;
    height: 100%;
    max-width: none;
}
.icon-big .svg-inline--fa {
	height: 70px;
	margin-bottom: 30px;
}
.carousel-inner {
	overflow: visible;
}
.quote {
	padding: 30px 50px;
	background-color: var(--paleblue);
	border-radius: 10px;
	position: relative;
	color: var(--primary);
}
.quote::before {
	content: "";	
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 25px 25px 25px 0;
	border-color: transparent var(--paleblue); transparent transparent;
	position: absolute;
	top:20px;
	left: -25px;
	flex: 0 0 calc(100% - 300px);
}
.quote::after {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--secondary);
    font-size: 80px;
    position: absolute;
    top: -70px;
    right: -15px;
}
.quote strong {
	margin-top: 20px;
	display: block;
}
.marke {
    flex: 0 0 300px;
    padding-right: 50px;
}
.marke img {
	margin-top: 20px;;
}
.carousel-control-prev,
.carousel-control-next  {
	width: 50px;
	align-items: flex-start;
}
.carousel-control-prev .svg-inline--fa,
.carousel-control-next .svg-inline--fa {
	font-size: 40px;
	color: var(--primary);
}
#referenzen {
	padding-left: 60px;
	padding-right: 60px;
}

.d-flex.vierspaltig {
	display: flex;
	flex-wrap: wrap;
}
.d-flex.vierspaltig > figure{
	flex: 0 0 25%;
	padding: 30px;
}
figure a {
    min-height: 200px;
    display: inline-flex;
    align-items: center;
}
@media(min-width: 1200px) {
	.home #elem_5_1 .inside,
	.home #elem_5_2 .inside,
	.home #elem_5_3 .inside {
		transition: 0.5s;
	}
	.home #elem_5_1:hover,
	.home #elem_5_2:hover,
	.home #elem_5_3:hover  {
		position: relative;
		z-index: 1;
	}
	.home #elem_5_1:hover .inside,
	.home #elem_5_2:hover .inside,
	.home #elem_5_3:hover .inside {
		transform: scale(1.1);
		box-shadow: 0 0 10px #686868;
	}
}
/* Aufteilung Texte */

@media(min-width: 991px) {
	.twoText50 .text,
	.imageText50Left .text,
	.imageText50Right .text ,
	.imageText50Left .pic,
	.imageText50Right .pic,
	.threeText10050 .text,
	.threeText50100 .text
	{
		flex: 0 0 50%;
	}

	.twoText3070 .text_1,
	.twoText7030 .text_2,
	.imageText3070 .text_1,
	.imageText7030 .pic  
	{
		flex: 0 0 30%;
	}
	.twoText3070 .text_2,
	.twoText7030 .text_1,
	.imageText7030 .text_1, 
	.imageText3070 .pic
	{
		flex: 0 0 70%;
	}
	.threetext33 .text,
	.fourText33100 .text,
	.fourText10033 .text {
		flex: 0 0 33.3333%;
	}
	.oneText,
	.imageTextTop .text,
	.imageTextTop .pic,
	.imageTextBottom .text,
	.imageTextBottom .pic,
	.threeText10050 .text_1,
	.threeText50100 .text_3,
	.fourText10033 .text_1,
	.fourText33100 .text_4
	{
		flex: 0 0 100%
	}

	.imageText50Left .text,
	.imageText50Right .pic {
		order: 1
	}
	.imageText50Right .text,
	.imageText50Left .pic {
		order: 2
	}
}

.threeText10050  .text_1 {
	margin-bottom: 30px;
}
.imageTextTop .pic img,
.imageTextBottom .pic img {
	display: block;
	margin: 0 auto;;
}
.imageText50Left .pic img {
	margin-left: auto;
}
.fourText10033 .text_1 {
	margin-bottom: 50px;
}
.fourText33100 .text_4 {
	margin-top: 50px;
}

/* Liste als Boxen */
.listBox ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-left:-15px;
	margin-right:-15px;
	list-style: none;
	padding: 0
}
.listBox ul li {
    flex: 0 0 calc(25% - 30px);
    padding: 25px 50px 25px 25px;
    margin: 0 15px 15px;
    background-color: var(--paleblue);
    border-radius: 10px;
    position: relative;
	border: 5px solid var(--paleblue)
}

.listBox ul li::after {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	color: var(--secondary);
	position: absolute;
	bottom: 20px;
	right:25px;
	font-size: 	30px;
}

.listBox ul li a {
	text-decoration: none;
	color: var(--primary);
	font-size: 18px;
	display: block;
}
.listBox ul li strong {
	color: var(--primary);
	font-size: 24px;
	display: block;
}
.listBox ul li:hover,
.listBox ul li:focus,
.listBox ul li:active {
	border: 5px inset var(--secondary)	
}


/* Liste als Liste / Normal */

.textNormal ul,
.listList ul {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}
.textNormal ul li,
.listList ul li {
    position: relative;
    padding-left: 30px;
    margin: 0 0 20px 0;
}
.textNormal ul li::before,
.listList ul li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
}
.textNormal ul li li,
.listList ul li li {
	margin-bottom: 0;
	margin-top: 10px;
}
.textNormal ul li li::before,
.listList ul li li::before {
	content: "\f068";
	margin-left: 5px;;
}
.text .inside {
	height: 100%;
}
@media(min-width: 769px) {
	.text .inside.has-btn {
		padding-bottom: 80px;
		position: relative;
	}
	.text .inside.has-btn .btn {
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.text .inside.has-pic-br {
		padding-bottom: 150px !important;
		position: relative;
	}
	.text .inside.has-pic-br img {
		position: absolute;
		bottom: 20px;
		right: 20px;
	}
}


/* Texte als Boxen */
.textBox .text .inside {
	background-color: var(--paleblue);
	border-radius: 10px;
	padding: 30px;
	position: relative;
}
.textBox .text .inside em,
.textBox .text .inside i {
	color: var(--reddish);
}
.textBox .text .infobox {
    position: absolute;
    top: -23px;
    width: 100%;
    background: var(--secondary);
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    color: #fff;
    padding: 2px;
    height: 30px;
    font-size: 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    /* border-bottom: 10px solid var(--paleblue); */
}
.fourText10033.textBox .text_1 .inside,
.threeText10050.textBox .text_1 .inside,
.threeText50100.textBox .text_3 .inside,
.fourText33100.textBox .text_4 .inside {
	background-color: #fff;
	border-radius: 0px;
	padding: 0px;
}
.boxedBlue.fourText10033.textBox .text .inside,
.boxedBlue.threeText10050.textBox .text .inside {
	background-color: #fff;
	border-radius: 10px;
	padding: 30px;
	position: relative;
}
.boxedBlue.fourText10033.textBox .text_1 .inside,
.boxedBlue.threeText10050.textBox .text_1 .inside,
.boxedBlue.threeText50100.textBox .text_3 .inside,
.boxedBlue.fourText33100.textBox .text_4 .inside {
	background-color: transparent;
	padding: 0;
}


/* Accordion */
.accordion-item {
    border: 0;
}
.accordion-body {
    padding: 0;
}

.accordion-body  table th:last-child{
    text-align: center;
}
.accordion-button {
    font-size: 24px;
    color: var(--primary);
    background-color: var(--paleblue);
    text-transform: none;
	padding: 10px 20px;
	margin-bottom: 10px;
}
.accordion-button:hover,
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--primary);
    box-shadow: none;
	text-decoration: none;
}
.accordion-button::after {
    margin-left: 20px;
	background-image: none;    
	background-repeat: no-repeat;
    content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	height: auto;
}
.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: rotate(90deg);
}
.accordion-item:first-child .accordion-button {
	border-top-left-radius: 10px !important;
	border-top-right-radius: 10px !important;
}
.accordion-item:last-child .accordion-button {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
}

#accordion-side {
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	overflow: hidden;
}
#accordion-side .nav {
	flex: 0 0 400px;
}
#accordion-side .nav-pills .nav-link {
    color: var(--primary);
	border-radius: 0;
	text-transform: none;
	text-align: left;
	padding: 15px 30px;
	letter-spacing: -0.1rem;
}
#accordion-side .nav-pills .nav-link:not(.active) {
    padding: 15px 0px;
    border-bottom: 1px solid var(--paleblue);
    margin: 0 30px;
}
#accordion-side .nav-pills .nav-link:not(.active):last-child {
	border-bottom: 0;
}
#accordion-side .nav-pills .nav-link:hover {
	color: var(--secondary);
}
#accordion-side .nav-pills .nav-link.active,
#accordion-side .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary);
    text-decoration: none;
}
#accordion-side .tab-content {
	padding: 50px;
	background-color: var(--paleblue);
	flex: 0 0 calc(100% - 400px);
}
#accordion-side .tab-content a {
	color: var(--primary);
	text-decoration: underline;
}
#accordion-side .tab-content a:hover {
	color: var(--secondary);
}
#accordion-side .tab-content ul {
    width: max-content;
    margin: 0 auto 40px;
}
/*--------------------------------------
	Startseit Kotnakt
----------------------------------------*/
#contact {
	background-size: cover;
}
#contact .bg-primary {
	height: 368px;
	position: relative;
}
#contact .bg-primary  p{
	color: #fff;
}
#contact .bg-primary a:hover {
	color: var(--secondary);
}
#contact .bg-primary .d-flex .svg-inline--fa{
	padding-right: 10px;
	margin-top: 5px;
}
#contact .bg-primary .bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    position: absolute;
    bottom: 30px;
    right: 30px;
}
#contact .bg-primary .bottom .svg-inline--fa{
	color: #fff !important;
	font-size: 25px;
	padding: 0 10px;
}
#contact .bg-primary .bottom a:hover .svg-inline--fa {
	color: var(--secondary) !important;
}
.wpcf7-list-item {
    margin: 0;
}
.wpcf7-list-item label {
	position: relative;
	padding-left: 25px;	
	font-size: 14px;
	color: var(--primary);
}
.wpcf7-list-item .wpcf7-list-item-label::before {
	position: absolute;
	left: 0;
	top: 5px;
	content: "";
	width: 20px;
	height: 20px;
	border: 1px solid #a0a0a0;
	border-radius: 50%;
	background-color: #fff;
}
.wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
	background-color: var(--secondary);
}
.wpcf7-list-item label input {
	display: none
}
#contact .required {
	font-size: 14px;
	color: var(--primary);
	padding-left: 25px;
}
#contact .wpcf7-submit {
	display:block;
	margin-left: auto;
}
#slider .wpcf7-list-item {
    margin: 0 0 15px;
}
#slider .wpcf7-list-item .wpcf7-list-item-label::before {
	top: 0;
}
picture img {
	margin: 20px auto 0;
}
#slider picture img {
	margin: 0 auto;
}

figure {
	position: relative;
	overflow: hidden;
}

figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

figure:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes pulse {
	0% {
	  transform: scale(1);
	  opacity: 0.5;
	}
	50% {
	  transform: scale(1.05);
	  opacity: 1;
	}
	100% {
	  transform: scale(1);
	  opacity: 0.5;
	}
  }
  
  .pulse {
	animation: pulse 2s;
  }

  .home #elem_5_1,
  .home #elem_5_2,
  .home #elem_5_3,
  .post-458 #elem_2_0, 
  .post-458 #elem_2_1  {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 3s, transform 3s;
}


  @keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
  
/*--------------------------------------
	Footer
----------------------------------------*/

footer {
	background-color: var(--primary);
	color: #fff;
}
footer .bg-primary {
	padding: 50px 0;
}
footer .bg-dark {
	padding: 10px 0;
}
footer .footer-menu,
footer .footer-logo {
	flex: 0 0 50%
}
footer .footer-menu ul {
	column-count: 3;
}
footer .footer-menu ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    display: block;
}
footer ul.social-icons {
    flex-wrap: nowrap;
}
footer ul.footer-social li {
    margin: 0;
}
footer .design {
	margin-bottom: 0;
	font-weight: 300;
	font-size: 14px;;
}
footer .design a {
    background: url('werk38-signet.svg') 6px 0px no-repeat;
    padding-left: 25px;
    background-size: 13px;
    color: #fff;
}
#consulting {
	position: fixed;
	bottom: 30px;
	left: 30px;
	display: none;
	z-index: 3;
}
#consulting .close {
    position: absolute;
    height: 40px;
    width: 40px;
    color: #ddd;
    top: -100px;
    right: -50px;
	cursor: pointer;
	z-index: 5;
}
#consulting .pic {
    max-width: 160px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    z-index: 2;
}
#consulting .popup-text {
    background-color: var(--primary);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 60px;
    width: 290px;
    border-radius: 10px;
    text-align: left;
    padding-left: 60px;
    font-weight: bold;
    font-size: 18px;
    padding-right: 10px;
    padding-top: 10px;
}
#consulting .popup-text > p {
	margin-bottom: 8px;
}
#consulting .popup-text .bg-secondary {
    background-color: var(--secondary) !important;
    border-bottom-right-radius: 10px;
    padding: 5px 10px;
    height: 35px;
    margin: 0 -10px 0 -100px;
    padding-left: 100px;
	font-size: 16px;
	transition: all 0.2s linear 0s;
}
#consulting .popup-text .bg-secondary .svg-inline--fa {
    float: right;
    margin-top: 5px;
    margin-right: 22px;
}




@media(max-width: 1700px) {
	.wpcf7-not-valid-tip {
		right: 10px;
	}
}
@media(max-width: 1400px) {
	#slider .container {
		max-width: 1240px;
	}
	#slider .slider-text h1 {
		font-size: 48px;
	}
	.h2, h2 {
		font-size: 40px;
	}
	.h2 + .h3, h2 + h3 {
		font-size: 28px;
	}
	.boxedBlue,
	#contact,
	#leistungen .text,
	.textNormal .text,
	.textBox,
	.listBox,
	.boxedBlue.imageText50Left,
	.boxedWhite.imageText50Left  {
		padding-left: 40px;
	}
	.boxedBlue,
	#contact,
	#leistungen .text,
	.textNormal .text,
	.textBox,
	.listBox,
	.boxedBlue.imageText50Right,
	.boxedWhite.imageText50Right  {
		padding-right: 40px;
	}
	.boxedBlue.imageText50Right .pic,
	.boxedWhite.imageText50Right .pic  {
		padding-left: 0px;
	}
	.boxedBlue.imageText50Left .pic,
	.boxedWhite.imageText50Left .pic  {
		padding-right: 0px;
	}
	#leistungen.listBox {
		padding-left: 0;
		padding-right: 0;
	}
	

}
@media(max-width: 1300px) {
	#slider .container {
		max-width: 100%;
		padding-left: 40px;
		padding-right: 40px;;
	}
	.listBox ul li {
		flex: 0 0 calc(33.333% - 30px);
		padding: 25px 25px 80px;
	}
}
@media(max-width: 1200px) {
	.h2, h2 {
		font-size: 30px;
	}
	#slider .slider-text h1 {
		font-size: 40px;
	}
	#slider .slider-text p {
		font-size: 18px;
	}
	#slider  .slider-text {
		flex: 0 0 65%;
		padding-bottom: 50px;
		padding-right: 50px;
	}
	#slider.full {
		margin-bottom: 100px;
	}
	#contact .wpcf7-submit {
		display: block;
		margin-left: 0;
		width: 100%;
	}
	#slider.full .slider-text .extra {
		position: absolute;
		bottom: -60%;
		left: 50%;
		transform: translateX(-50%);
		width: 490px;
	}
}

@media(max-width: 991px) {
	.bg-padding {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	#slider.full .container {
		left: 30px;
		transform: none;
		height: 100%;
	}
	#slider.full .slider-text {
		max-width: 500px;
	}
	#slider .slider-text h1 {
		font-size: 35px;
	}
	#slider.full .slider-text .extra {
		bottom: -130px;
	}
	#contact h1 {
		font-size: 35px;
	}
	#contact h2 {
		font-size: 30px;
	}
	.h3, h3 {
		font-size: 28px;
	}
	.listBox ul li {
		flex: 0 0 calc(50% - 30px);
	}
	#accordion-side {
		flex-direction: column;
	}
	#accordion-side .nav {
		flex: 0 0 auto;
		width: 100%;
	}
	#accordion-side .tab-content {
		flex: 0 0 auto;
		width: 100%;
	}
	#accordion-side .nav-pills .nav-link {
		border-bottom: 1px solid var(--paleblue);
	}
	.d-flex.vierspaltig > figure{
		flex: 0 0 33%;
	}
	#referenzen .d-flex {
		display: block !important;
	}
	.quote::before {
		display: none;
	}
	footer .bg-dark .d-flex {
		flex-direction: column-reverse;
	}
	footer .footer-copyright {
		text-align: center;
	}
	footer .design {
		margin: 20px auto;
	}
	footer .footer-menu{
		flex: 0 0 calc(100% - 250px);
		max-width: calc(100% - 250px);
	}
	.fullBlue, .fullWhite {
		padding-left: 50px;
		padding-right: 50px;
	}
	.carousel-wrapper::before {
		left: -85px;
	}
	.carousel-wrapper::after {
		right: -85px;
	}

	#slider.full .container {
		left: 30px;
		transform: none;
	}
	#slider.full .slider-text {
		max-width: 500px;
	}
	.row .text
	{
		flex: 0 0 100%
	}
	.row .text +.text {
		margin-top: 30px;
	}
	.pic img,
	.imageText50Left .pic img {
		margin-left: auto;
		margin-right: auto;
	}
	.text,
	.boxedBlue .container-wrapper, 
	.fullBlue, .fullBlueTextboxed {
		padding-left: 40px;
		padding-right: 40px;
	}
	.boxedBlue.imageText50Left,
	.boxedWhite.imageText50Left  {
		padding-left: 0px;
	}
	.boxedBlue.imageText50Right,
	.boxedWhite.imageText50Right  {
		padding-right: 0px;
	}
	.boxedBlue .text,
	.textBox .text,
	.listBox .text,
	.fullBlueTextboxed .text,
	.boxedBlue.imageText50Left .pic,
	.boxedWhite.imageText50Left .pic,
	.boxedBlue.imageText50Right .pic,
	.boxedWhite.imageText50Right .pic  {
		padding-left: 0px;
		padding-right: 0px;
	}

	
	.boxedBlue.imageText50Right,
	.boxedWhite.imageText50Right  {
		padding-right: 0px;
	}
	.textBox .text {
		margin-bottom: 30px;
	}
	
	.textBox .text .infobox {		
		top: 0;	
	}

	.textBox .text .infobox + h3 {		
		margin-top: 15px;	
	}
}
@media(max-width: 768px) {
	#site-content {
		margin-top: 85px;
	}
	.ishalf .first input {
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
	}
	.ishalf .last input {
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
	}
	#slider .d-flex {
		display: block !important;
	}
	#slider.half .slider-text,
	#slider  .slider-text {
		padding-right: 0;
		padding-top: 10px;
	}

	.d-flex {
		flex-wrap: wrap;
	}
	.header-inner {
		padding: 20px 0;
	}
	#contact {
		background: #ddf4d8 !important
	}
	#contact .bg-primary {
		height: auto;
		margin-bottom: 30px;
	}
	footer .d-flex {
		flex-wrap: wrap;
	}
	footer .footer-menu, 
	footer .footer-logo {
		flex: 0 0 100%;
		max-width: 100%;
	}
	footer .footer-menu {
		margin: 30px 0 0;
	}
	#slider:not(.full)  .slider-text {
		flex: 0 0 100%;
	}
}
@media(max-width: 740px) {
	#slider.full .slider-text {
		max-width: 400px;
	}
	#slider .slider-text h1 {
		font-size: 38px;
	}
	.listBox ul {
		margin-left: 0;
		margin-right: 0;
	}
	.listBox ul li {
		flex: 0 0 100%;
		margin-left: 0;
		margin-right: 0;
	}
}
@media(max-width: 650px) {
	.page-id-117 .inside img {
		float: none !important;
		max-width: 90%;
		margin: 0 auto !important;
		
	}
	#slider.full picture{
			display: flex;
			align-items: flex-end;
			text-align: right;
			justify-content: flex-end;
		}
	#slider.full picture img{
		height: 620px;
		max-width: none;
		width: auto;
	}
}
@media(max-width: 575px) {
	.custom-logo-link {
		max-width: 80%;
    display: block;
	}
	.h3, h3 {
		font-size: 24px;
	}
	.boxedBlue.twoText3070 .text .inside, .boxedBlue.fourText10033.textBox .text_1 .inside {
		padding: 5px !important;
	}
	p img {
		margin-bottom: 20px;
	}
	.imageText50Right .pic {
		margin-top: 30px;
	}
	.listBox ul li {
		padding: 25px 55px 25px 25px;
	}
	.listBox ul li::after {	
		bottom: 50%;
		transform: translateY(50%);
	}
	.fullBlueTextboxed  .text,
	.page-id-10 #bereich_3,
	.home #bereich_4 {
		padding-left: 7px !important;
		padding-right: 7px !important;
	}
	.h2 em, h2 em {
		margin-bottom: 5px;display: block;	}
	#slider.full {
		margin-bottom: 50px;
	}
	#accordion-side .nav-pills .nav-link:not(.active) {
		margin: 0 20px;
	}
	.pic-bottom-right img {
		margin-top: 30px;
	}
	.text, .boxedBlue .container-wrapper, .fullBlue, .fullBlueTextboxed {
		padding-left: 20px;
		padding-right: 20px;
	}
	.boxedBlue.twoText3070 .text .inside,
	.boxedBlue.fourText10033.textBox .text .inside {
		padding: 20px;
	}
	.banner {
		background-color: var(--paleblue);
		padding: 50px 20px 40px;
		min-height: 1px;
	}
	.banner img {
		display: none;
	}
	.btn,
	.wpcf7-submit,
	input[type="submit"] {
		width: 100% !important;
		float: none;
		max-width: 100%;
	}
	#contact, .boxedBlue,
	#leistungen .text,.textNormal .text,  .textBox, .listBox, .boxedBlue.imageText50Right {
		padding-right: 20px;
	}
	#contact, .boxedBlue,
	#leistungen .text, .textNormal .text, .textBox, .listBox, .boxedBlue.imageText50Left {
		padding-left: 20px;
	}
	.boxedBlue .text {
		padding-left: 0px;
		padding-right: 0px;
	}
	.fullWhite .text {
		padding: 0 !important;
	}
	#accordion-side .nav-pills .nav-link {
		padding: 15px 20px;
	}
	#accordion-side .tab-content {
		padding: 20px;
	}
	#referenzen {
		padding-left: 0px;
		padding-right: 0px;
	}
	.carousel-control-prev, .carousel-control-next {
		width: 30px;
	}
	.quote {
		padding: 30px 25px;
	}
	.quote::after {
		right: 0;
	}
	#slider.full .container {
		left: 0;
	}
	#slider.full .slider-text {
		max-width: 100%;
	}
	#slider.full picture img {
		height: 860px;
		max-width: none;
		width: auto;
	}
	#slider .slider-text h1 {
		font-size: 30px;
	}
	footer .bg-primary {
		padding: 50px 20px;
	}
	footer .footer-menu ul {
		column-count: 1;
	}
	footer .footer-menu ul li a {	
		display: block;
		padding: 5px 0px;
	}
	footer .bg-dark {
		padding: 50px 20px;
	}
	footer .bg-dark .d-flex {
		flex-direction: column-reverse;
	}
	footer .social-icons svg {
		width: 40px
	}
	footer .footer-copyright {
		margin-top: 20px;
	}
	.btn {
		width: 100%;
	}
	#contact .wpcf7-submit {
		float: none;
		width: 100%
	}
	#contact .bg-primary .bottom {
		display: flex;
		justify-content: flex-start;
		margin-top: auto;
		position: relative;
		bottom: 0;
		right: 0;
		margin-top: 30px;
	}
	.d-flex.vierspaltig > figure{
		flex: 0 0 100%;
		padding: 30px;
	}
	.owl-carousel::after,
	.owl-carousel::before {
		width: 40px;
	}
	#consulting .pic {
		width: 100px;
		height: 100px;
	}
	#consulting .popup-text {		
		left: 60px;
		width: 250px;		
		padding-left: 40px;		
		font-size: 16px;
	}
	#consulting .popup-text .bg-secondary {
		background-color: var(--secondary) !important;
		border-bottom-right-radius: 10px;
		padding: 5px 10px;
		height: 35px;
		margin: 0 -10px 0 -40px;
		padding-left: 40px;
		font-size: 16px;
	}
}
@media(max-width: 400px) {
	#slider .container {
		padding-left: 20px;
		padding-right: 20px;
	}
	#slider .slider-text h1 {
		margin-top: 20px;
	}

}
.wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}