:root {
--default-font-size: 18px;
--default-font-family: 'Anuphan', 'Helvetica', 'Arial', sans-serif;

/* Farben */
--color-primary: #153ea0; /* #0d7aae*/ 
--color-secondary: #5dd1ff;
--color-tertiary: #838c91;
--color-quaternary: #7ebc5f;
--color-bg: #fff;
--color-bg-footer: #f2e9d6;
--color-bg-light: #fafafa;
--color-text: #111623;
--color-muted: #a7b1b5;  
--color-error: #ff000; 

/* Übergänge */
--transition: all ease-in-out 0.3s;
--transition-fast: all ease-in-out 0.2s;
--transition-slow: all ease-in-out 0.45s;
}

*,
*:after,
*:before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  padding: 120px 0 0;
  margin: 0;
  color: var(--color-text);
  font-size: var(--default-fontsize);
  line-height: 1.5;
  font-weight: 400;
  font-family: 'Anuphan', Helvetica, Arial, sans-serif;
}

@font-face {
  font-family: 'Anuphan';
  src: url('../fonts/Anuphan-Regular.woff2') format('woff2'), local("?");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Anuphan';
  src: url('../fonts/Anuphan-Bold.woff2') format('woff2'), local("?");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CarterOne';
  src: url('../fonts/CarterOne-Regular.ttf') format('truetype'), local("?");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

h1, .heading-xl, h2, .heading-l, h3, .heading-m, h4, .heading-s, h5, .heading-xs, h6, .heading-xxs {
	margin: 0;
	line-height: 1.2;
	font-weight: 700;
}

h1, .heading-xl		{ font-size: 3.8rem; color: var(--color-primary); }
h2, .heading-l		{ font-size: 3rem; color: var(--color-primary); }
h3, .heading-m		{ font-size: 2rem; color: inherit; }
h4, .heading-s		{ font-size: 1.6rem; color: inherit; }
h5, .heading-xs		{ font-size: 1.4rem; color: inherit; }
h6, .heading-xxs	{ font-size: 0.9rem; color: inherit;}

.pretitle {
	margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

ul {
  padding: 0 0 0 10px;
  margin: 0 0 0 10px;
  list-style-type: square;
  text-align: left;
}

ol {
  padding: 0 0 0 10px;
  margin: 0 0 0 10px;
  text-align: left;
}

img {
  border: none;
}

picture.cutout {
	max-width: 100%;
	overflow: hidden;
}

b {
  font-weight: 700;
}

i {
  display: block;
  font-size: 12px;
  line-height: 18px;
}

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

a:hover, a:focus {
  color: var(--color-secondary);
}

/* BUTTONS/CTAs --------------------------------------------------------------*/
.btn {
	display: inline-block;
  position: relative;
  z-index: 0;
  width: fit-content;
  height: fit-content;
  padding: 23px 30px;
  border-radius: 6px;
  overflow: hidden;
  color: var(--color-text);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover, .btn:focus {
	color: #fff;
}

.btn.small {
  padding: 15px 25px;
  border-radius: 6px;
}

.btn::before {
  display: block;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  content: '';
}

.btn::after {
  display: block;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 10%;
  padding: 0 0 10%;
  background: var(--color-quaternary);
  content: '';
  transform: translate(-50%,-50%);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

.btn:hover::after, .btn:focus::after {
  width: 110%;
  padding: 0 0 110%;
  transform: translate(-50%,-50%) rotate(90deg);
  filter: none;
}

.btn:is(.primary, .grey) {
	color: #fff;
}

.btn:is(.primary, .grey):hover,
.btn:is(.primary, .grey):focus {
	color: var(--color-text);
}

.btn.primary::before {
  background: var(--color-primary);
}

.btn.grey::before {
  background: var(--color-tertiary);
}

.btn:is(.primary, .grey):hover::after,
.btn:is(.primary, .grey):focus::after {
	background: var(--color-quaternary);
}

.cta {
  display: flex;
  flex-flow: row wrap;
  float: left;
  width: 100%;
  padding: 10px;
  margin: 0;
  list-style-type: none;
}

.cta {
  justify-content: center;
}

.cta li {
  display: block;
  float: left;
  margin: 10px;
  transform: scale(0.5);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

.cta li {
  transform: none;
  filter: none;
}

.cta li a {
  display: block;
  position: relative;
  z-index: 0;
  float: left;
  padding: 23px 30px;
  border-radius: 6px;
  overflow: hidden;
  color: #ffffff;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta li a:before {
  display: block;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  content: '';
}

.cta li a:after {
  display: block;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 10%;
  padding: 0 0 10%;
  background: var(--color-primary);
  content: '';
  transform: translate(-50%,-50%);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

.cta li a:hover:after {
  width: 110%;
  padding: 0 0 110%;
  transform: translate(-50%,-50%) rotate(90deg);
  filter: none;
}

/* FORMULARE -----------------------------------------------------------------*/
table {
  width: calc(100% + 80px);
  padding: 20px;
  border-style: none;
  border-spacing: 0;
  margin: -40px;
}

table tr td {
  position: relative;
  width: 33.3333%;
  padding: 20px;
  text-align: left;
  vertical-align: top;
}

table tr td:nth-child(2),
table tr td:nth-child(3) {
  width: 16.6666%;
}

.input-group {
	position: relative;
	margin: 20px 0;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: block;
  position: relative;
  width: 100%;
  padding: 0 0 20px 50px;
  text-align: left;
}

input[type=radio] + label b {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: solid 2px #888888;
  border-radius: 50%;
}

input[type=checkbox] + label b {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: solid 2px #888888;
  border-radius: 6px;
}

input[type=checkbox].error + label b,
input[type=radio].error + label b {
  border-color: #ff0000;
}

input[type=radio]:checked + label b {
  background-image: url("../images/layout/radio.svg");
  border-color: var(--color-secondary);
}

input[type=checkbox]:checked + label b {
  background-image: url("../images/layout/checkbox.svg");
  border-color: var(--color-secondary);
}

input[type=text],
select,
textarea {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  border: solid 2px #888888;
  border-radius: 6px;
  color: var(--color-primary);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Anuphan', Helvetica, Arial, sans-serif;
  transition: 0.4s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

input[type=text].error,
select.error,
textarea.error {
  border-color: #ff0000;
}

input[type=text] + label,
select + label,
textarea + label {
  display: block;
  position: absolute;
  left: 30px;
  top: 30px;
  padding: 8px;
  background: #ffffff;
  font-size: 14px;
  line-height: 24px;
  pointer-events: none;
  transition: 0.4s ease-in-out;
}

.input-group input[type=text] + label,
.input-group select + label,
.input-group textarea + label {
	left: 11px;
  top: 11px;
}

input[type=text]:focus,
input[type=text]:not(:placeholder-shown),
select:focus,
select:not([value=""]),
textarea:not(:placeholder-shown),
textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}

input[type=text]:focus + label,
input[type=text]:not(:placeholder-shown) + label,
select:focus + label,
select:not([value=""]) + label,
textarea:not(:placeholder-shown) + label,
textarea:focus + label {
  top: 10px;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 12px;
}

.input-group input[type=text]:focus + label,
.input-group input[type=text]:not(:placeholder-shown) + label,
.input-group select:focus + label,
.input-group select:not([value=""]) + label,
.input-group textarea:not(:placeholder-shown) + label,
.input-group textarea:focus + label {
	top: -10px;
}

select {
  background-image: url("../images/layout/select.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  -webkit-appearance: none;
}

textarea {
  height: 320px;
  overflow: auto;
  resize: none;
}

input[type=submit] {
  width: 100%;
  height: 60px;
  padding: 23px;
  background: var(--color-secondary);
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  font-family: 'Anuphan', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}

input[type=submit]:hover {
  background: var(--color-quaternary);
}

.texterror.active {
	border: 1px solid #f00;
  border-radius: 3px;	
  padding: 10px;
  color: #f00;  
  background-color: #ff000014;
}

/* COOKIE-MANAGER ------------------------------------------------------------*/
a.show_cookiemanager {
  z-index: 2000;
  left: 40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  padding: 6px;
  background: none;
  border-radius: 6px;
  overflow: visible;
  transition: 0.4s ease-in-out;
}

a.show_cookiemanager.white {
  background: var(--color-secondary);
}

a.show_cookiemanager:hover {
  background: var(--color-primary);
}

a.show_cookiemanager:before {
  display: block;
  position: absolute;
  left: 70px;
  top: 0;
  padding: 23px 30px;
  background: var(--color-primary);
  border-radius: 6px;
  color: #ffffff;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  white-space: nowrap;
  pointer-events: none;
  content: 'Cookie-Einstellungen';
  transform: translateX(60px);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

a.show_cookiemanager:hover:before {
  transform: none;
  filter: none;
}

/* PRELOADER/SCROLLBUTTONS ---------------------------------------------------*/
div.preloader {
  position: fixed;
  z-index: 6000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
}

div.preloader:before {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  background: url("../images/layout/preloader.svg") no-repeat center;
  background-size: 50%;
  content: '';
  transform: translate(-50%,-50%);
}

div.scrolldown {
  display: block;
  position: fixed;
  z-index: 2000;
  right: 40px;
  bottom: 40px;
}

div.scrolldown a {
  display: block;
  float: left;
  width: 60px;
  height: 60px;
  background: url("../images/layout/scrolldown.svg") no-repeat center;
  background-size: 50%;
  border-radius: 6px;
  transition: 0.4s ease-in-out;
}

div.scrolldown a:hover {
  background-color: var(--color-secondary);
}

div.scrolldown a:before {
  display: block;
  position: absolute;
  right: 70px;
  top: 0;
  padding: 23px 30px;
  background: var(--color-secondary);
  border-radius: 6px;
  color: #ffffff;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  white-space: nowrap;
  pointer-events: none;
  content: 'nach unten';
  transform: translateX(-60px);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

div.scrolldown a:hover:before {
  transform: none;
  filter: none;
}

div.scrolltop {
  display: none;
  position: fixed;
  z-index: 2000;
  right: 40px;
  bottom: 40px;
}

div.scrolltop a {
  display: block;
  float: left;
  width: 60px;
  height: 60px;
  background: var(--color-secondary) url("../images/layout/scrolltop.svg") no-repeat center;
  background-size: 75%;
  border-radius: 6px;
  transition: 0.4s ease-in-out;
}

div.scrolltop a:hover {
  background-color: var(--color-primary);
}

div.scrolltop a:before {
  display: block;
  position: absolute;
  right: 70px;
  top: 0;
  padding: 23px 30px;
  background: var(--color-secondary);
  border-radius: 6px;
  color: #ffffff;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  white-space: nowrap;
  pointer-events: none;
  content: 'nach oben';
  transform: translateX(-60px);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

div.scrolltop a:hover:before {
  transform: none;
  filter: none;
}

a.scrollto {
  display: none;
}

/* NAVIGATION/HEADER ---------------------------------------------------------*/
div.switch {
  display: none;
}

nav {
  position: fixed;
  z-index: 4000;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

nav ul {
  float: left;
  padding: 35px 10px;
  margin: 0;
  list-style-type: none;
	transition: var(--transition);
}

nav ul li {
  display: block;
  float: left;
  margin: 10px;
}

nav ul li a {
  display: block;
  position: relative;
  float: left;
  padding: 13px 0;
  color: #ffffff;
  line-height: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.4s ease-in-out;
}

nav ul li a:before {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-quaternary);
  transform: translateX(-50%);
  content: '';
  transition: var(--transition);
}

nav ul li a.active:before,
nav ul li a:hover:before {
  width: 100%;
}

nav.white ul {
	padding: 25px 10px;
}

nav.white ul li a {
  color: var(--color-primary);
}

nav.white ul li a:before {
  background: var(--color-quaternary);
}

nav ul li a:hover,
nav ul li a:focus {
	color: var(--color-quaternary);
}

nav ul li a.active:before,
nav ul li a:hover {
  width: 100%;
}

nav.white ul {
	padding: 25px 10px;
}

nav.white ul li a:hover,
nav.white ul li a:focus {
  color: var(--color-quaternary);
}

div.overlay {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
}
/* BUTTONS/CTAs --------------------------------------------------------------*/
header {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  background: var(--color-primary);
  transition: 0.4s ease-in-out;
}

header .logo img {
	transition: var(--transition);
}

header.white {
	background: #fff;
	box-shadow: 0 0 20px #0000001f;
}

header.white .logo img {
	width: 100px;
	height: auto;
}

/* START ---------------------------------------------------------------------*/
section.starter {
	display: flex;
	flex-wrap: wrap;
	padding: 40px 120px;
}

section.starter .pretitle {
	width: fit-content;
	max-width: 25%;
	margin: 0 0 0 auto;	
	padding: 8px 20px;
}

section.starter h1 {
	width: 60%;
	margin: auto;
	color: var(--color-text);
}

section.starter h1 b {
	color: var(--color-primary);
}

section.starter h1 span {
	display: block;
	text-align: right;
}

/* BANNER --------------------------------------------------------------------*/
section.banner, section.banner .slideshow {
	position: relative;
	z-index: 1;
}

section.banner .slideshow::before {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 145px;
	background: #fff;
	clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
	z-index: 10;
}

section.banner .slider {
	margin: 0;
  padding: 0;
  list-style: none;
}

section.banner .slider li {
	position: relative;
	overflow: hidden;
	aspect-ratio: 22/9;
}

section.banner .slider li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

section.banner .slider .text-slide {
	display: flex;
	flex-flow: row-reverse;
  background: linear-gradient(-10deg, rgb(204, 204, 204), rgb(255, 255, 255));
}

section.banner .slider .text-slide:nth-of-type(even) {
	flex-flow: row;
} 

section.banner .slider li.text-slide img {
	width: 50%;
	height: auto;
	margin-top: auto;
}

section.banner .slider .text-slide div {
	width: calc(50% - 240px);
	margin: 120px;
	align-content: center;
	text-align: right;
}

section.banner .slider .text-slide:nth-of-type(even) div {
	text-align: left;
}

section.banner .slider .text-slide div :is(h1, .heading-xl, h2, .heading-l) {
	font-family: 'CarterOne';
}

section.banner .slider .text-slide div :is(h1, .heading-xl) {
	font-size: 8.5rem;
}

section.banner .slider .text-slide div span {
	color: var(--color-secondary);
}

section.banner .slideshow .bx-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	position: absolute;
	bottom: 20px;
  right: 60px;
  z-index: 20;
}

section.banner .slideshow .bx-controls-direction {
	display: flex;
	gap: 10px;
}

section.banner .slideshow :where(.bx-prev, .bx-next) {
	position: relative;
}

section.banner .slideshow .bx-pager {
	align-self: center;
}

section.banner .slideshow .deco-edges {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: absolute;
	inset: auto auto 0 auto;
	width: 100%;
	height: 100px;
	margin: auto;
	background: linear-gradient(90deg,#fff 0%, transparent 10%, transparent 90%,#fff 100%);
}

section.banner .slideshow .deco-edges::before,
section.banner .slideshow .deco-edges::after {
	content: '';
	display: block;
	position: relative;
	width: 23%;
  height: 100%;
  background-size: cover !important;
}

section.banner .slideshow .deco-edges::before {
	background: transparent url('../images/layout/rundkante_rechts.svg') no-repeat right top;

}

section.banner .slideshow .deco-edges::after {
	background: transparent url('../images/layout/rundkante_links.svg') no-repeat left top;
}

section.banner img {
	width: 100%
}

section.banner .btn-container {
	display: flex;
	flex-wrap: wrap;
  gap: 20px;
  position: absolute;
  inset: 20px; 0 0 0;  
  width: fit-content;
  height: fit-content;
  margin: 0 auto;
  z-index: 15;
}

section.headbanner {
	min-height: 260px;
	align-content: center;
	padding: 40px calc(50% - 540px);
	background: var(--color-secondary) url("../images/layout/lines.svg") no-repeat center;
	background-size: cover;
  overflow: hidden;
  box-shadow: inset 0 0 10px #006c9778;
}

section.headbanner :is(h1, h2,.heading-xl,.heading-l) {
	color: var(--color-text);
	line-height: 1.4;
}

/* THEMES --------------------------------------------------------------------*/
section.themes {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1280px;
  overflow: hidden;
  margin: -140px 0 0;
}

/* EVENTS --------------------------------------------------------------------*/
section.events {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background-size: cover;
  overflow: hidden;
}

section.events .bx-viewport {
	padding-top: 20px;
}

section.events ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
  padding: 10px;
  margin: 0;
  list-style-type: none;
}

section.events ul li {
  display: block;
  float: left;
  margin: 10px;
  transform: scale(0.5);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

section.events ul.active li {
  transform: none;
  filter: none;
}

section.events ul li a {
  display: block;
  position: relative;
  z-index: 0;
  float: left;
  padding: 23px 30px;
  border-radius: 6px;
  overflow: hidden;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  transition: 0.4s ease-in-out;
  background: var(--color-primary);
}

section.events ul li a:hover {
  color: var(--color-primary);
}

section.events ul li a:before {
  display: block;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  content: '';
}

section.events ul li a:after {
  display: block;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 10%;
  padding: 0 0 10%;
  background:  var(--color-primary);
  content: '';
  transform: translate(-50%,-50%);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

section.events ul li a:hover:after {
  width: 110%;
  padding: 0 0 110%;
  transform: translate(-50%,-50%) rotate(90deg);
  filter: none;
}

section.events .event span {
	display: block;
	position: relative;
	margin: auto;
	border-radius: 15px;
	width: 100%;
	aspect-ratio: 3/2;
	overflow: hidden;
	box-shadow: 0 5px 10px #0000002e;
}

section.events .event:nth-of-type(2n) span {
	translate: 0 50px;
}

section.events .slider .event img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease-out;
}

section.events .slider {
  margin: 20px calc(50% - 570px);
  list-style-type: none;
}

section.events .slider .event {
	display: inline-block;
  width: 360px !important;
  margin: 0 10px;
  padding: 10px 10px 80px 10px;
  overflow: hidden;    
  opacity: 0;
  transition: 0.4s ease-in-out;
}

section.events .slider .event.active {
  transform: none;
  opacity: 1;
}

section.events .bx-pager {
  flex-wrap: wrap;
	z-index: 100;
	position: absolute;
  left: 50%;
  top: 215px;
  padding: 5px;
  margin: 0;
  transform: translateX(-50%);
}

section.events .bx-prev, 
section.events .bx-next {
	position: absolute;
	top: 100px;
	z-index: 200;
}

section.events .bx-prev {
  left: calc(50% - 500px);
}

section.events .bx-next {
  right: calc(50% - 500px);
}

/* DELIVERY ------------------------------------------------------------------*/
section.delivery.content {
	position: relative;
	display: flex;
  flex-flow: row wrap;
  width: 100%;
  padding: 40px calc(50% - 540px) 40px calc(50% - 540px);
  overflow: hidden;
	background-color: #f0faff;
}

section.delivery .image-layer {
	display: flex;
	align-content: end;
  position: absolute;
	inset: auto 0 0 0;
	width: fit-content;
	margin: auto;
  z-index: 1;
}

section.delivery .image-layer img {
	max-width: 380px;
}

section.delivery.content .entry {
	position: relative;
	z-index: 2;
}

section.delivery .bg-shape div {
	position: absolute;
	left: 50%;
  transform: translateX(-50%);
	border-radius: 50%;
	background: #fff;
}

section.delivery .bg-shape-1 {
	bottom: -300px;
	width: 900px;
  height: 900px;
  opacity: 0.5;
}

section.delivery .bg-shape-2 {
	bottom: -200px;
	width: 700px;
  height: 700px;
  opacity: 0.6;
  box-shadow: 0 0 50px rgba(0,0,0,0.05);
}

section.delivery .bg-shape-3 {
	bottom: -100px;
	width: 500px;
  height: 500px;
  opacity: 1;
  box-shadow: 0 0 50px rgba(0,0,0,0.05);
}

section.delivery .info-box {
  display: block;
  max-width: 320px;
  width: 100%;
  margin-bottom: 70px; 
  border-radius: 12px;
  padding: 40px 40px 35px 40px;
  color: var(--color-txt);
  background: #fff;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

section.delivery .info-box:hover {
	transform: translateY(-20px);
}

section.delivery :where(.info-box.no1, .info-box.no4) {
	margin-left: auto;
	transition: var(--transition);
}

section.delivery .icon-box {
	max-height: 50px;
	margin-bottom: 20px;
	color: var(--color-primary);
	transition: var(--transition);	
}

section.delivery .info-box:hover .icon-box {
	color: var(--color-secondary);
}

section.delivery .info-box .btn{
  margin-top: 16px;
  padding: 12px 20px;
  cursor: pointer;
}

/* ICONS ---------------------------------------------------------------------*/
section.icons {
  width: 100%;
  padding: 40px calc(50% - 540px) 40px calc(50% - 540px);
  overflow: hidden;
  background: linear-gradient(-10deg, var(--color-text), #444444);
  overflow: hidden;
}

section.icons div {
  width: calc(100% - 240px);
  margin: 120px;
  text-align: center
  ;
}

section.icons div h2 {
  color: #ffffff;
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}

section.icons div h2 span {
  display: inline-block;
  transform: translateY(5%);
  filter: opacity(0);
}

section.icons div h2.active span {
 animation: fade-word 4s forwards;
}

section.icons div h2.active span:nth-of-type(2n) {
  animation-delay: 0.4s;
}

section.icons div h2.active span:nth-of-type(3n) {
  animation-delay: 0.8s;
}

section.icons div h2.active span:nth-of-type(4n) {
  animation-delay: 1.2s;
}

section.icons div h2.active span:nth-of-type(5n) {
  animation-delay: 1.6s;
}

section.icons div h2.active span:nth-of-type(6n) {
  animation-delay: 2s;
}

section.icons div h3 {
  color: var(--color-primary);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}

section.icons div h3 span {
  display: inline-block;
  transform: translateY(5%);
  filter: opacity(0);
}

section.icons div h3.active span {
  animation: fade-word 5s forwards;
}

section.icons ul {
  float: left;
  width: 100%;
  padding: 20px;
  margin: 0;
  list-style-type: none;
}

section.icons ul li {
  display: block;
  float: left;
  width: calc(33.3333% - 40px);
  margin: 20px;
  transform: scale(0.5);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

section.icons ul.active li {
  transform: none;
  filter: none;
}

section.icons ul li a {
  display: block;
  float: left;
  width: 100%;
  padding: 5%;
}

section.icons ul li a svg {
  float: left;
  width: 30%;
  margin: 5% 35%;
  transition: 0.4s ease-in-out;
}

section.icons ul li a:hover svg {
  transform: scale(1.2);
}

section.icons ul li a svg path {
  fill: var(--color-secondary);
  transition: 0.4s ease-in-out;
}

section.icons ul li a:hover svg path {
  fill: #ffffff;
}

section.icons ul li a h4 {
  float: left;
  width: 90%;
  margin: 5%;
  color: #ffffff;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-align: center;
}

/* TEASER --------------------------------------------------------------------*/
section.teaser {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  float: left;
  width: 100%;
  background: linear-gradient(-10deg, #cccccc, #ffffff);
  overflow: hidden;
}

section.teaser:nth-child(odd) {
  flex-direction: row-reverse;
}

section.teaser .pic {
  position: relative;
  float: left;
  width: 50%;
  padding: 0 0 33.3333%;
  transform: translateX(-50%);
  filter: opacity(0);
  transition: 0.4s ease-out;
}

section.teaser:nth-child(odd) .pic {
  transform: translateX(50%);
}

section.teaser .pic.active {
  transform: none !important;
  filter: none;
}

section.teaser .pic img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.teaser .entry {
  float: left;
  width: 50%;
  padding: 80px calc(50% - 500px) 80px 80px;
  transform: translateX(50%);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

section.teaser .entry:first-child,
section.teaser:nth-child(odd) .entry {
  padding: 80px 80px 80px calc(50% - 500px);
  text-align: right;
  transform: translateX(-50%);
}

section.teaser .entry.active {
  transform: none !important;
  filter: none;
}

section.teaser .entry h2 {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
}

section.teaser .entry h4 a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: underline;
}

section.teaser .entry .cta {
  display: flex;
  flex-flow: row wrap;
  float: left;
  width: calc(100% + 40px);
  padding: 10px;
  margin: -20px;
  list-style-type: none;
}

section.teaser:nth-child(odd) .entry .cta {
  justify-content: flex-end;
}

section.teaser .entry .cta li {
  display: block;
  float: left;
  margin: 10px;
}

section.teaser .entry .cta li a {
  display: block;
  position: relative;
  z-index: 0;
  float: left;
  padding: 23px 30px;
  border-radius: 6px;
  overflow: hidden;
  color: #ffffff;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

section.teaser .entry .cta li a:before {
  display: block;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  content: '';
}

section.teaser .entry .cta li a:after {
  display: block;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 10%;
  padding: 0 0 10%;
  background: var(--color-primary);
  content: '';
  transform: translate(-50%,-50%);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

section.teaser .entry .cta li a:hover:after {
  width: 110%;
  padding: 0 0 110%;
  transform: translate(-50%,-50%) rotate(90deg);
  filter: none;
}

section.teaser .osm {
  width: 50%;
  padding: 33.334% 0;
  transform: translateX(-50%);
  filter: opacity(0) grayscale(1);
  transition: 0.4s ease-in-out;
}

section.teaser:nth-child(odd) .osm {
  transform: translateX(50%);
}

section.teaser .osm.active {
  transform: none !important;
  filter: opacity(1) grayscale(0.8);
}

section.teaser .osm .leaflet-popup-content {
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

section.teaser .osm .leaflet-popup-content h4 {
  font-size: 14px;
  line-height: 18px;
}

/* CONTENT -------------------------------------------------------------------*/
section.content {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  width: 100%;
  padding: 40px calc(50% - 540px) 40px calc(50% - 540px);
  overflow: hidden;
}

section.content .bg-texture {
	position: absolute;
  bottom: 0;
  width: 60vw;
  z-index: -1;
}

section.content .bg-texture.left {
	left: 0;
}

section.content .bg-texture.right {
  right: 0;
}

#Sekt {
	width: 110%;
  transform: scale(-1) rotate(100deg) translate(-10%,20%);
  opacity: 0.1;
}

section.content img {
	border-radius: 15px;
}

section.content hr {
  width: calc(100% - 80px);
  height: 2px;
  border: none;
  margin: 40px;
  background: #cccccc;
  transform: scaleX(0);
  filter: opacity(0);
  transition: var(--transition);
}

section.content hr.active {
  transform: none;
  filter: none;
}

section.content .column .osm {
	width: 100%;
	border-radius: 15px;
  padding: 0 0 100% 0;
}

#service .column.slim picture,
#IntroMap {
	aspect-ratio: auto;
	padding: 0 0 150% 0;
}

#kontaktmap {
	height: 1375px;
}

/* COLUMNS -------------------------------------------------------------------*/
div.columns {
	display: flex;
  position: relative;
  flex-flow: row wrap;
  width: 100%;
}

.column {
  padding: 20px;
}

.column.full {
  width: 100%;
}

.column.wide {
  width: 66.6666%;
}

.column.medium {
  width: 50%;
}

.column.slim {
  width: 33.3333%;
}

.column.thin {
	width: 25%;
}

.column picture {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 15px;
  transform: translateX(-50%);
  filter: opacity(0);
  transition: var(--transition);
}

.column.full picture {
  padding: 0 0 calc(25% - 10px) 0;
  transform: translateY(80px);
}

.column.active picture {
  transform: none;
  filter: none;
}

.column picture img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.column picture:hover img, 
.column picture:focus img {
	transform: scale(1.2);
}

.column .entry {
  float: left;
  width: calc(100% - 40px);
  margin: 20px;
  transform: translateX(-50%);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

.column:nth-of-type(odd) .entry {
	transform: translateX(50%);
}

.column.full .entry {
  text-align: center;
  transform: translateY(80px);
}

.column.active .entry {
  transform: none;
  filter: none;
}

/* DECORATION: EDGES ---------------------------------------------------------*/
.edges {
	position: relative;
	padding-bottom: 0;
}

.edges :is(.edge-top-full, .edge-bottom-full, .edge-bottom-left, .edge-bottom-right) {
	filter: drop-shadow(0 0 10px #00000029);
}

.edges .edge-top-full {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 120px;
	background: transparent url(../images/layout/edges_top.svg) no-repeat center;
	background-size: cover;
}

.edges .edge-bottom-full {
	display: flex;
	align-content: center;
	width: 100vw;
	min-height: 120px;
	margin-top: 60px;
	padding: 40px calc(50% - 540px);
	background: transparent url(../images/layout/edges_bottom.svg) no-repeat center;
	background-size: cover;
}

.edges .edge-bottom-left {
	padding: 40px 50% 40px 40px;
	background: transparent url(../images/layout/edges_bottom-left.svg) no-repeat center;
	background-size: cover;
}

.edges .edge-bottom-right {
	padding: 40px 40px 40px 50%;
	background: transparent url(../images/layout/edges_bottom-right.svg) no-repeat center;
	background-size: cover;
}

.content.edges {
	padding: 40px calc(50% - 540px) 160px calc(50% - 540px);
}

.content.edges .edge-bottom-full {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

/* CARDS ---------------------------------------------------------------------*/
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row-gap: 40px;  
  grid-column-gap: 22px;
  width: 100%;
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
}

.cards .card {
	width: 100%;
	margin: 0;
	border-radius: 18px;
	padding: 22px;
	align-content: center;
	background: #fff;
  box-shadow: 0 3px 36px rgba(0, 0, 0, 0.11);
}

.cards .card .cardContent {
	display: block;
  align-content: center;
  margin-bottom: 0;
  font-size: 1.2em;
  font-weight: 700;
  color: var(--color-text);
}

.cards .card .cardIco {
	display: block;
	position: relative;	
	width: 105px;
  height: 105px;
  margin: 0;
  margin-left: auto;
  border-radius: 12px;
	padding: 0;
  overflow: hidden;
  background-color: transparent;
	z-index: 1;
}

.cards .card a {
	transition: var(--transition);
	color: var(--color-primary);
}

.cards .card a:hover, .cards .card a:focus {
	color: var(--color-text);
}

/* SLIDER --------------------------------------------------------------------*/
.bx-pager {
	display: flex;
	gap: 10px;
	flex-wrap: nowrap;
	width: fit-content;
  list-style-type: none;
}

.bx-pager .bx-pager-item a {
	display: block;
  width: 10px;
  height: 10px;
  background: var(--color-tertiary);
  border-radius: 50px;
  font-size:0;
  transition: 0.2s ease-in-out;
}

.bx-pager .bx-pager-item a:hover,
.bx-pager .bx-pager-item a:focus,
.bx-pager .bx-pager-item a.active {
  background: var(--color-quaternary)
}

.bx-pager .bx-pager-item a.active {
  width: 40px;
}

.bx-next, .bx-prev {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0;
  background-color: var(--color-tertiary);
  transition: all ease-in-out 0.4s;
}

:where(.bx-next, .bx-prev):hover, 
:where(.bx-next, .bx-prev):focus {
  z-index: 201;	
  background: var(--color-quaternary);
}

:where(.bx-next, .bx-prev)::before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: url("../images/layout/chevron.svg") no-repeat center;
  background-size: 75%;
  transition: 0.4s ease-in-out;	
  z-index: 202;  
}

.bx-prev::before {
	transform: rotate(90deg)
}


.bx-next::before {
	transform: rotate(-90deg)
}

/* FANCYBOX ------------------------------------------------------------------*/
.fancybox-dialog {
	display: none;
	width: 90%;
	max-width: 1000px;
	word-break: break-word;
}

.fancybox-dialog table {
	width: 100%;
  margin: 0;
  padding: 0;
}

.fancybox-dialog table td {
	padding: 3px;
}

.fancybox-dialog table tr.toprow {
	background: var(--color-secondary);
}

/* SHOW MORE -----------------------------------------------------------------*/
div.show-more {
	display: inline-grid;
	position: relative;
	width: 100%;
}

.show-more-btn {
	align-self: center;
	margin: auto;
}

div.show-more-content { 
	display: none;
  transition: var(--transition);
}

div.show-more-content.active {
  max-height: 100%;
  opacity: 1;
  transition: var(--transition);
}

/* FOOTER --------------------------------------------------------------------*/
footer {
	position: relative;
	z-index: 1;
}

footer .sitemap {
  width: 100%;
  overflow: hidden;
  background: var(--color-primary) url("../images/layout/lines.svg") no-repeat center;
  background-size: cover;
  overflow: hidden;
}

footer .sitemap .content {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
  padding: 50px calc(50% - 530px) 0 calc(50% - 530px);

}

footer .sitemap .content > * {
  width: calc(33.3333% - 20px);
  padding: 10px;
  color: #fff;
}

footer .sitemap ul {
  list-style-type: none;
  transform: translateY(50%);
  filter: opacity(0);
  transition: 0.4s ease-in-out;
}

footer .sitemap ul.active {
  transform: none;
  filter: none;
}

footer .sitemap ul li {
  display: block;
  width: calc(100% - 20px);
  margin: 10px;
}

footer .sitemap ul li a {
	position: relative;
  display: block;
  width: 100%;
  padding: 6px 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
	transition: var(--transition);
	z-index: 1;
}

footer .sitemap ul li a::after {
	content: '';
	position: absolute;
	inset: 0;
	width: 0%;
	height: 100%;
	margin: auto;
	background: var(--color-secondary);
	z-index: -1;
	transition: var(--transition);
}

footer .sitemap ul li a:hover::after,
footer .sitemap ul li a:focus::after {
	width: calc(100% + 0.8em);
	translate: -0.4em 0;
}

footer .sitemap ul.kontakte li a::before {
	content: '';
	display: block;
  float: left;	
  width: 25px;
  height: 25px;
  margin-right: 12px;  
  background: url(../images/layout/chevron.svg) no-repeat left center;
  background-size: 25px;
}

footer .sitemap ul.kontakte li a.phone::before  {
	background-image: url(../images/layout/phone.svg);
}

footer .sitemap ul.kontakte li a.fax::before  {
	background-image: url(../images/layout/fax.svg);
}

footer .sitemap ul.kontakte li a.mail::before  {
	background-image: url(../images/layout/email.svg);
}

footer .sitemap ul.kontakte li a.web::before  {
	background-image: url(../images/layout/web.svg);
}

footer .sitemap .logo img {
	margin-left: auto;
}

footer div.copyright {
	position: absolute;
  inset: auto 0 5px 0;
  width: fit-content;
  height: fit-content;  
  margin: 0 auto;
  text-align: center;
}

/*////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////////// MOBIL/RESPONSIVE //////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////*/
@media only screen and (max-width: 1279px) {
  body {
      padding: 125px 0 0;
      word-break: break-word;
  }

	h1, .heading-xl		{ font-size: 2.2rem; }
	h2, .heading-l		{ font-size: 2rem; }
	h3, .heading-m		{ font-size: 1.8rem; }
	h4, .heading-s		{ font-size: 1.6rem; }
	h5, .heading-xs		{ font-size: 1.4rem; }
	h6, .heading-xxs	{ font-size: 0.9rem; }

  ol,
  ul {
      padding: 0 0 0 5px;
      margin: 0 0 0 5px;
  }

  i {
      font-size: 7px;
      line-height: 12px;
  }

  table {
      width: calc(100% + 40px);
      padding: 10px;
      margin: -20px;
  }

  table tr td {
      display: flex;
      flex-flow: row wrap;
      justify-content: center;
      float: left;
      width: 100% !important;
      padding: 10px;
  }

  input[type=checkbox] + label,
  input[type=radio] + label {
      padding: 0 0 10px 30px;
  }

  input[type=radio] + label b {
      width: 20px;
      height: 20px;
      border-width: 1px;
  }

  input[type=checkbox] + label b {
      width: 20px;
      height: 20px;
      border-width: 1px;
      border-radius: 4px;
  }

  input[type=text],
  select,
  textarea {
      padding: 12px;
      border-width: 1px;
      border-radius: 4px;
      text-align: center;
  }

	.input-group input[type="text"] + label, .input-group select + label, .input-group textarea + label {
	  top: 4px;
	}

  input[type=text]:focus + label,
  input[type=text]:not(:placeholder-shown) + label,
  select:focus + label,
  select:not([value=""]) + label,
  textarea:not(:placeholder-shown) + label,
  textarea:focus + label {
      top: 5px;
      padding: 2px 8px;
      font-size: 7px;
      line-height: 7px;
  }

  textarea {
      height: 240px;
  }

  div.infobox .infobox_container {
      width: 240px;
  }

  div.infobox .infobox_container div {
      width: 100%;
      padding: 20px;
  }

  div.infobox .infobox_container ul {
      width: 100%;
  }

  div.infobox .infobox_container ul li {
      width: 20% !important;
  }

  a.show_cookiemanager {
      left: 20px;
      bottom: 20px;
      width: 40px;
      height: 40px;
      padding: 4px;
      border-radius: 4px;
  }

  a.show_cookiemanager:before {
      display: none;
  }

  div.preloader:before {
      width: 100px;
      height: 100px;
  }

  div.scrolldown,
  div.scrolltop {
      right: 20px;
      bottom: 20px;
  }

  div.scrolldown a, 
  div.scrolltop a {
      width: 40px;
      height: 40px;
      border-radius: 4px;
  }

  div.scrolldown a:before,
  div.scrolltop a:before {
      display: none;
  }

  ul.panel {
      justify-content: center;
      top: auto;
      bottom: 0;
      width: 100%;
      height: 80px;
      padding: 16px;
      background: var(--color-secondary)66;
  }

  ul.panel li {
      margin: 4px;
  }

  ul.panel li a {
      width: 40px;
      height: 40px;
      border-radius: 4px;
  }

  ul.panel li a:before {
      display: none;
  }

  ul.panel.white {
      background: var(--color-secondary);
  }

  ul.panel.white li a {
      background-color: transparent;
  }

  div.switch {
      display: block;
      position: fixed;
      z-index: 5000;
      right: 20px;
      top: 20px;
      width: 40px;
      height: 40px;
      border-radius: 4px;
      cursor: pointer;
      transition: 0.4s ease-in-out;
  }

  div.switch:hover {
      background: var(--color-secondary)66;
  }

  div.switch:before {
      display: block;
      position: absolute;
      left: 30%;
      width: 40%;
      height: 6%;
      background: #ffffff;
      content: '';
      animation: rotate_a1 0.4s forwards;
      transition: 0.4s ease-in-out;
  }

  div.switch:after {
      display: block;
      position: absolute;
      left: 30%;
      width: 25%;
      height: 6%;
      background: #ffffff;
      content: '';
      animation: rotate_a2 0.4s forwards;
      transition: 0.4s ease-in-out;
  }

  div.switch.white:after,
  div.switch.white:before {
      background: var(--color-secondary);
  }

  div.switch.active {
      right: 260px;
  }

  div.switch.active:before {
      left: 30%;
      width: 40%;
      background: #ffffff;
      animation: rotate_b1 0.4s forwards;
  }

  div.switch.active:after {
      left: 30%;
      width: 40%;
      background: #ffffff;
      animation: rotate_b2 0.4s forwards;
  }

  nav {
      left: 100%;
      width: 240px;
      height: 100%;
      background: #ffffff;
      transform: none;
      transition: 0.4s ease-in-out;
  }

  nav.active {
      left: calc(100% - 240px);
  }

  nav ul {
      width: 100%;
      padding: 20px;
  }

  nav ul li {
      width: calc(100% - 10px);
      margin: 5px;
  }

  nav ul li a {
      width: 100%;
      padding: 9px 0;
      color: var(--color-secondary);
      font-size: 12px;
      line-height: 12px;
  }

  nav ul li a:before {
      left: 0;
      height: 1px;
      background: var(--color-secondary);
      transform: none;
  }

  header {
      padding: 20px 80px 20px 20px;
  }

  header a.logo {
      float: right;
  }

  header a.logo svg {
      width: 160px;
      height: 40px;
  }

  header.white a.logo svg path {
      fill: var(--color-secondary);
  }

	section.starter {
	  display: flex;
	  flex-wrap: wrap;
	  padding: 20px;
	}
	
	section.starter .pretitle, section.starter h1, section.starter h1:nth-of-type(2), section.starter .posttitle {
		max-width: 100%;
		width: 100%;
		margin: 20px 0;
		padding: 0;
		text-align: left;
	}
	
	section.starter .pretitle {
		font-size: 0.8rem;
		line-height: 1.2;
	}
	
	section.starter h1, section.starter h1:nth-of-type(2) {
		margin: 0;
	}

	section.banner .btn-container {
		position: relative;
		inset: 0;
		gap: 10px;
		margin: 0;
		padding: 20px;
	}
	
	section.banner .slideshow::before {
		height: 10px;
	}
	
	section.banner .slider li {
		aspect-ratio: 3/2;
	}
	
	section.banner .slider li img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  object-position: center;
	  display: block;
	}
	
	section.banner .slider li.text-slide{
		padding: 20px;
	}
	
	section.banner .slider .text-slide div { 
		width: 100%;
		margin: 0;
	}
	
	section.banner .slider .text-slide div :is(h1, .heading-xl) {
	  font-size: 3.5rem;
	}
	
	section.banner .slider .text-slide img { 
		display: none;
	}
	
	section.banner .slideshow .bx-controls {
		position: relative;
	  bottom: 0;
	  right: 0;
	  align-content: center;
	  padding: 20px;
	}
	
	section.banner .slideshow .deco-edges {
	  inset: auto auto 100px auto;
	  height: 20px;
	}
	
	.edges .edge-bottom-full {
		background: transparent url(../images/layout/edges_bottom.svg) no-repeat bottom;
    background-size: 100%;
	}

	section.headbanner {
		padding: 40px 20px;
	}	

  section.themes {
      margin: -80px 0 0;
  }

  section.themes .bx-pager {
      right: auto;
      left: 20px;
      padding: 15px 10px;
      transform: translateY(-100px);
  }

  section.themes .bx-pager .bx-pager-item {
      margin: 2.5px;
  }

  section.themes .bx-pager .bx-pager-item a {
      width: 5px;
      height: 5px;
      border-radius: 2.5px;
  }

  section.themes .bx-pager .bx-pager-item a.active {
      width: 25px;
  }

  section.themes .bx-prev {
      left: auto;
      right: 116px;
      width: 40px;
      height: 40px;
      border-radius: 4px;
      transform: translateY(-100px);
  }

  section.themes .bx-start,
  section.themes .bx-stop {
      left: auto;
      right: 68px;
      width: 40px;
      height: 40px;
      border-radius: 4px;
      transform: translateY(-100px);
  }

  section.themes .bx-next {
      left: auto;
      right: 20px;
      width: 40px;
      height: 40px;
      border-radius: 4px;
      transform: translateY(-100px);
  }

  section.themes .bx-wrapper .bx-viewport .slider li div {
      width: 100%;
      padding: 15px calc(100% - 305px) 175px 15px;
      background: linear-gradient(var(--color-secondary)00 0px, var(--color-secondary)99 80px);
  }

  section.themes .bx-wrapper .bx-viewport .slider li div h3 {
      width: calc(100% - 10px);
      margin: 5px;
      font-size: 9px;
      line-height: 9px;
  }

  section.themes .bx-wrapper .bx-viewport .slider li div h2 {
      width: calc(100% - 10px);
      margin: 5px;
  }

  section.themes .bx-wrapper .bx-viewport .slider li div figure {
      width: calc(100% - 10px);
      margin: 5px;
  }

  section.themes .bx-wrapper .bx-viewport .slider li div p {
      padding: 5px;
      margin: 5px -5px -5px;
  }

  section.themes .bx-wrapper .bx-viewport .slider li div p a {
      padding: 15.5px 20px;
      border-radius: 4px;
      margin: 5px;
      line-height: 9px;
  }

  section.themes .bx-wrapper .bx-viewport .slider li span img {
      object-position: 66.6666% 50%;
  }

  section.themes #progress {
      left: 20px;
      width: calc(100% - 40px);
      height: 1px;
      transform: translateY(-160px);
  }

  section.events {
      padding: 30px 0;
  }

  section.events ul {
      padding: 5px;
  }

  section.events ul li {
      margin: 5px;
  }

  section.events ul li a {
      padding: 15.5px 20px;
      border-radius: 4px;
      line-height: 9px;
  }
  
  section.events .bx-viewport {
	  padding-top: 60px;
	}

  section.events .bx-pager {
  		max-width: 175px;
      top: 250px;
      padding: 2.5px;
  }

  section.events .bx-pager .bx-pager-item {
      margin: 2.5px;
  }

  section.events .bx-pager .bx-pager-item a {
      width: 10px;
      height: 10px;
      border-radius: 5px%;
  }

  section.events .bx-pager .bx-pager-item a.active {
      width: 20px;
  }

  section.events .bx-prev,
  section.events .bx-next  {
      top: 250px;
      width: 40px;
      height: 40px;
      border-radius: 4px;
  }
	
	section.events .bx-prev {
      left: calc(50% - 140px);		
	}
	
  section.events .bx-next {
      right: calc(50% - 140px);
  }

  section.events .slider {
      margin: 0 calc(50% - 160px) 0 calc(50% - 160px);
  }

  section.events .slider .event {
      width: 320px !important;
      margin: auto;
      padding: 25px 25px 30px 25px;
  }
  
	section.events .event:nth-of-type(2n) span {
	  translate: 0 20px;
	}

  section.events .slider .event span {
      width: calc(100% - 10px);
  }

  section.events .slider .event.info {
      padding: 15px 15px 75px;
  }

  section.events .slider .event.info b {
      padding: 11px 20px;
      border-radius: 4px;
      margin: 5px;
      font-size: 18px;
      line-height: 18px;
  }

  section.events .slider .event.info h3 {
      width: calc(100% - 10px);
      margin: 5px;
      line-height: 14px;
  }

  section.events .slider .event.info h4 {
      width: calc(100% - 10px);
      margin: 5px;
      line-height: 12px;
  }

  section.events .slider .event.info svg {
      bottom: 20px;
      width: 40px;
      height: 40px;
  }

	section.delivery .image-layer {
		display: none;
	}
	
	section.delivery h2 {
		margin-bottom: 20px;
	}
	
	section.delivery.content .column {
		padding: 0 10px
	}

	section.delivery.content .column .entry {
		margin: 0 10px;
	}

	section.delivery .info-box {
		margin-bottom: 20px;
		text-align: left;
	}
	
  section.icons {
      padding: 40px calc(50% - 160px) 40px calc(50% - 160px);
  }

  section.icons div {
      width: calc(100% - 40px);
      margin: 20px;
  }

  section.icons div h2 {
      font-size: 18px;
      line-height: 24px;
  }

  section.icons div h3 {
      font-size: 12px;
      line-height: 14px;
  }

  section.icons ul {
      padding: 20px;
  }

  section.icons ul li {
      width: 33.3333%;
      margin: 0;
  }

  section.icons ul li a {
      padding: 5% 2%;
  }

  section.icons ul li a svg {
      width: 50%;
      margin: 5% 25%;
  }

  section.icons ul li a h4 {
      width: 96%;
      margin: 5% 2%;
      font-size: 8px;
      line-height: 8px;
      letter-spacing: 0;
      text-indent: 0;
  }

  section.teaser .pic {
      width: 100%;
      padding: 0 0 75%;
  }

  section.teaser .entry {
      width: 100%;
      padding: 40px calc(50% - 140px) 40px calc(50% - 140px) !important;
      text-align: center !important;
  }

  section.teaser .entry h2 {
      font-size: 18px;
      line-height: 18px;
  }

  section.teaser .entry h4 a {
      font-size: 14px;
  }

  section.teaser .entry .cta {
      justify-content: center !important;
      width: calc(100% + 20px);
      padding: 5px;
      margin: -10px;
  }

  section.teaser .entry .cta li {
      margin: 5px;
  }

  section.teaser .entry .cta li a {
      padding: 15.5px 20px;
      border-radius: 4px;
      line-height: 9px;
  }

  section.teaser .osm {
      width: 100%;
      padding: 0 0 75%;
  }
	  
	section.teaser .osm .leaflet-popup-content {
	  font-size: 1rem;
	  line-height: 1.2;
	  text-align: left;
	}

  section.content {
      padding: 20px calc(50% - 160px) 20px calc(50% - 160px);
  }

  section.content hr {
      width: calc(100% - 40px);
      height: 1px;
      margin: 20px;
  }

  section.content .column {
      width: 100% !important;
      padding: 10px;
  }

  section.content .column picture {
      width: calc(100% - 20px);
      padding: 0 0 calc(75% - 15px) 0;
      margin: 10px;
      transition: 0.4s ease-out;
  }

  section.content .column.full picture {
      padding: 0 0 calc(25% - 5px) 0;
  }

  section.content .column .entry {
      width: calc(100% - 20px);
      margin: 10px;
      text-align: center;
  }

  section.content .column .cta {
      justify-content: center;
      padding: 5px;
  }

  section.content .column .cta li {
      margin: 5px;
  }

  section.content .column .cta li a {
      padding: 15.5px 20px;
      border-radius: 4px;
      line-height: 9px;
  }
  
  section.content .show-more .show-more-content .fader .entry {
  	transform: translateX(0);
  	filter: opacity(1);
  }
  
  section.content .show-more .show-more-content .fader .entry picture {
	  transform: none;
	  filter: none;
	}
  
  div.columns {
		display: block;
	}
  
  .cards {
	  display: grid;
	  grid-template-columns: 100%;
	  grid-row-gap: 40px;
	  grid-column-gap: 0;
	  width:100%;
	  padding: 20px;
	}
	
	.cards .card { 
		padding: 22px;	
	}
	
	.cards .card div {
		display: block;
	  align-content: center;
		width: 55%;
	}
	
	.cards .card div h5 {
		font-size: 1.1em;
	}
	
	.cards .card .cardIco {
		width: 105px;
	  height: 105px;
	  margin-left: auto;
	}
  
	section.sitemap .content {
		display: block;
		width: 100%;
		padding: 40px calc(50% - 140px) !important;
	}
	
	section.sitemap .content > * {
		width: 100%;
	}
	
	section.sitemap.edges .edge-bottom-full {
		min-height: 0;
		margin: 0;
		padding: 12px
	}
	
	#kontaktmap {
		height: 440px;
	}
	
	footer div.copyright {
	  position: relative;
	  inset: 0;
	  margin: 0 auto;
	  padding: 20px calc(50% - 140px) 60px calc(50% - 140px) !important;
	  font-size: 0.8rem;
	}
	
	footer div.copyright h5 {
		font-size: 1rem;
		margin-bottom: 12px;
	}
}
/*////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////// ANIMATIONEN ////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////*/

@keyframes rotate_a1 {
  0% {
      top: 47%;
      transform: rotate(45deg);
  }

  50% {
      top: 47%;
      transform: none;
  }

  100% {
      top: 37%;
      transform: none;
  }

}

@keyframes rotate_a2 {
  0% {
      top: 47%;
      transform: rotate(-45deg);
  }

  50% {
      top: 47%;
      transform: none;
  }

  100% {
      top: 57%;
      transform: none;
  }

}

@keyframes rotate_b1 {
  0% {
      top: 37%;
      transform: none;
  }

  50% {
      top: 47%;
      transform: none;
  }

  100% {
      top: 47%;
      transform: rotate(45deg);
  }

}

@keyframes rotate_b2 {
  0% {
      top: 57%;
      transform: none;
  }

  50% {
      top: 47%;
      transform: none;
  }

  100% {
      top: 47%;
      transform: rotate(-45deg);
  }

}

@keyframes fade-word {
  0% {
      transform: translateY(10%);
      filter: opacity(0);
  }

  50% {
      transform: none;
      filter: none;
  }

  100% {
      transform: none;
      filter: none;
  }
}