
/*
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
	
	GLOBAL RULES
	
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
*/


/* custom properties */
:root {
	
	/* Colors */
	--color_blue-100: #0080FF;
	--color_blue-80: #3399FF;
	--color_blue-60: #66B3FF;
	--color_blue-40: #99CCFF;
	--color_blue-20: #CCE6FF;
	
	--color_red-100: #FF0000;
	--color_red-80: #FF3333;
	--color_red-60: #FF6666;
	--color_red-40: #FF9999;
	--color_red-20: #FFCCCC;
	
	--color_black-100: #000000;
	--color_black-90: #3C3C3B;
	--color_black-80: #575756;
	--color_black-70: #706F6F;
	--color_black-60: #878787;
	--color_black-50: #9D9D9C;
	--color_black-40: #B2B2B2;
	--color_black-30: #C6C6C6;
	--color_black-20: #DADADA;
	--color_black-10: #EDEDED;
	--color_black-5: #F6F6F6;
	--color_white: #FFFFFF;
	
	--color_red: #C4131D;
	
	/* Fonts */
	--font-family_arial-rounded: 'Arial Rounded MT Bold', 'Arial Black', 'Arial', sans-serif;
	--font-family_arial-bold: 'Arial Bold', 'Arial', sans-serif;
	--font-family_arial: 'Arial', sans-serif;
	--font-family_trebuchet-ms: 'Trebuchet MS', 'Arial', sans-serif;
	--font-family_brushscript: 'Brush Script MT', 'Trebuchet MS', 'Arial', sans-serif;;
}

/* Scroll-Bar */
::-webkit-scrollbar {
  width: 10px; 
}

::-webkit-scrollbar-thumb {
  background-color: var(--color_blue-60); 
  border-radius: 4px; 
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1; 
}




/* global media queries*/

@media screen and (max-width: 480px) {
	html {
		font-size: 16px;
	}
}

@media screen and (min-width: 481px) {
	html {
		font-size: calc(16px + (22 - 16) * ((100vw - 480px) / (1600 - 480)));
	}
}

@media screen and (max-width: 768px) {
	
	/* Check: IS iOS Safari */
	@supports (-webkit-touch-callout: inherit) {
		body {
			overflow: -webkit-paged-y;
		}

		.section-headline-name {
			hyphens: none;
			-webkit-hyphens: manual;
		}
	}
	
	/* Check: IS macOS Safari */
	@supports (not (-webkit-touch-callout: inherit)) and (stroke-color: transparent){
		.section-headline-name {
			hyphens: none;
			-webkit-hyphens: manual;
		}	
	}
	
	/* Check: IS NOT iOS Safari AND IS NOT macOS Safari */
	@supports (not (-webkit-touch-callout: inherit)) and (not (stroke-color: transparent)) {
		.section-headline-name {
			-webkit-hyphens: none;
			hyphens: manual; 
		}
	}
	
	.section-headline-name {
		min-width: max(300px, 100%);
	}
	
	.section-headline-separator {
		flex-direction: column-reverse;
	}

	.section_inner p {
		width: 100%;
	}
	.section_inner .feature-description {
  		width: 100%;
	}
}

@media screen and (min-width: 769px) {
	
	.section-headline {
		-webkit-hyphens: none;
  		hyphens: none; /* don't break headline */
  	}
  	
  	.section-headline-separator {
		flex-direction: row;
	}
	
	.section-separator {
		margin-top: 1.7%;
		margin-left: 5%;
	}
	
	.section-headline-name {
	 /* white-space: nowrap; */
	}

	.section_inner p {
		width: 90%;
	}
	.section_inner .feature-description {
  		width: 90%;
	}
}

@media screen and (min-width: 1600px) {
	
	html {
		font-size: 22px;
	}
}


/* general styling */

html {
	height: 100%;
	/* overflow-x: hidden; */
	scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

/* Check: IS iOS Safari */
@supports (-webkit-touch-callout: inherit) {
	p {
		hyphens: none;
		-webkit-hyphens: auto;
	}
}

/* Check: IS macOS Safari */
@supports (not (-webkit-touch-callout: inherit)) and (stroke-color: transparent){
	p {
		hyphens: none;
		-webkit-hyphens: auto;
	}	
}

/* Check: IS NOT iOS Safari AND IS NOT macOS Safari */
@supports (not (-webkit-touch-callout: inherit)) and (not (stroke-color: transparent)) {
	p {
		-webkit-hyphens: none;
		hyphens: auto; 
	}
}

p {
	z-index: 305;
}

/* Check: IS iOS Safari */
@supports (-webkit-touch-callout: inherit) {
	q {
		hyphens: none;
		-webkit-hyphens: auto;
	}
}

/* Check: IS macOS Safari */
@supports (not (-webkit-touch-callout: inherit)) and (stroke-color: transparent){
	q {
		hyphens: none;
		-webkit-hyphens: auto;
	}	
}

/* Check: IS NOT iOS Safari AND IS NOT macOS Safari */
@supports (not (-webkit-touch-callout: inherit)) and (not (stroke-color: transparent)) {
	q {
		-webkit-hyphens: none;
		hyphens: auto; 
	}
}

h1, h2, h3, h4, h5, h6, q, li {
	z-index: 300;
}

body {
    display: flex;
    flex-direction: column;
	min-height: 100%;
	margin: 0;
	padding: 0;
	background-color: var(--color_white);
}

header {
	position: fixed;
	width: 100%;
	height: 150px;
	/* height: auto; */
	top: 0;
	left: 0;
	margin-bottom: 1%;
	max-width: 100vw;
	min-height: 60px;
	overflow-x: clip;
	transition: transform 1.0s ease-out;
	z-index: 501;
}

footer {
    position: relative;
    width: 100%;
    margin-bottom: 1%;
    max-width: 100vw;
    min-height: 60px;
    overflow-x: clip;
    z-index: 500;
}

.container {
	position: relative;
	width: 87.5%;
	height: 100%;
	max-width: 1706px;
	margin: 0 auto;
}

.row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 0;
	padding: 0;
	gap: max(20px, 2.5%);
}

.content {
	flex: 1;
	overflow-wrap: break-word;
	min-width: 255px;
	height: fit-content;
	padding: 40px 30px 45px 30px;
	border-radius: 10px;
	background-color: var(--color_white);
	box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.1);
}

.link {
	color: var(--color_black-90);
	transition: color 0.1s ease-out;
	text-decoration: none;
}

.link:hover {
	color: var(--color_blue-60);
	text-decoration: underline;
}

.overview-link {
	color: var(--color_blue-60);
	text-decoration: underline;
}

.trademark {
	font-size: 70%;
	vertical-align: super;
}

button {
	z-index: 200;
	cursor: pointer;
	transition: transform 0.4s ease-out;
}

button:hover {
	transform: scale(1.05);
  	filter: drop-shadow(0 0 0.3em rgba(0, 128, 255, 0.3));
}

.learn-more-container {
	margin-left: 2.0rem;
}

.learn-more-button {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: none;
	filter: none !important;
	color: var(--color_black-80);
	cursor: pointer;
}

.learn-more-button:hover {
	color: var(--color_blue-60);
}

.learn-more-button-text {
	font-family: var(--font-family_trebuchet-ms);
	font-size: 1.1rem;
	font-weight: 400;
	white-space: nowrap;
}

.learn-more-button-icon {
	width: 0.5rem;
    margin-left: 10px;
}

/* 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	Sections
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/


section {
	position: relative;
	margin: auto;
	padding-top: min(120px, 30%);
	padding-bottom: 60px;
	width: 100%;
	max-width: 100vw;
	overflow-x: clip;
}

section:first-of-type {
	padding-top: max(75px, 10%);
} 

section:last-of-type {
	padding-bottom: max(75px, 10%);
} 

.section_inner {
	position: relative;
	width: 76.56%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.frontpage-section {
	position: relative;
	max-width: 100vw;
	margin-top: 60px;
	padding: 0;
}

.part {
	margin-top: 20px;
	margin-bottom: 10px;
}


/* 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	TEXT
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/

/* Headlines */

.section-headline {
	position: relative;
	padding-bottom: min(60px, 10%);
	display: flex;
	flex-direction: column;
	z-index: 300;
}

.section-headline-name {
	margin: 0;
	padding: 0;
	font-family: var(--font-family_arial);
	font-style: italic;
	font-weight: 600;
	font-size: 2.3rem;
	line-height: 125%;
	color: var(--color_blue-100);
}

.section-headline-description {
	margin: 0;
	padding: 0;
	padding-left: 2.0rem;
	font-family: var(--font-family_brushscript);
	font-style: italic;
	font-weight: 600;
	font-size: 2.0rem;
	color: var(--color_red-100);
}

.section-headline-separator {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

.section-separator {
	width: 100%;
	border: none;
	border-top: 1px;
	border-style: solid;
	border-color: var(--color_red-100);
}

.section-headline-inner {
	font-family: var(--font-family_arial-bold);
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--color_blue-80);
}

.subsection-headline {
	position: relative;
	padding-bottom: min(40px, 6%);
	display: flex;
	flex-direction: column;
	z-index: 300;
}

.subsection-headline-name {
	margin: 0;
	padding: 0;
	font-family: var(--font-family_arial-bold);
	font-weight: 600;
	font-size: 1.6rem;
	color: var(--color_blue-80);
}

.subsection-headline-description {
	margin: 0;
	margin-bottom: 10px;
	margin-top: 5px;
	padding: 0;
	padding-left: 2.0rem;
	font-family: var(--font-family_trebuchet-ms);
	font-weight: 400;
	font-size: 1.0rem;
	color: var(--color_black-80);
}

.part-headline {
	margin-bottom: 20px;
	font-family: var(--font-family_arial-bold);
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--color_blue-80);
}

.part-headline-2 {
	margin-bottom: 0;
	font-family: var(--font-family_arial-bold);
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--color_blue-100);
}

.part-headline-3 {
	margin-bottom: 0;
	font-family: var(--font-family_arial-bold);
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--color_black-90);
}

.part-headline-4 {
	margin-bottom: 0;
	font-family: var(--font-family_arial-bold);
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--color_blue-80);
}

.part-headline-5 {
	margin-bottom: 0;
	font-family: var(--font-family_arial-bold);
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--color_black-80);
}


/* Text */

.section_inner p {
	font-family: var(--font-family_trebuchet-ms);
	font-size: 1.0rem;
	color: var(--color_black-90)
}

.p-text-1 {
	margin: 0;
	padding: 0;
	font-family: var(--font-family_trebuchet-ms);
	font-size: 1.0rem;
	color: var(--color_black-90)
}

.p-text-2 {
	margin-bottom: 0;
    padding: 0;
	font-family: var(--font-family_arial);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color_blue-80);
}

.p-text-red {
	color: var(--color_red) !important;
}

.p-text-closing-1 {
	margin-bottom: 60px;
	font-family: var(--font-family_trebuchet-ms);
	font-size: 1.2rem;
	color: var(--color_black-80);	
}


/* List */

.checklist-container {
	position: relative;
	margin-top: 10px;
}

.checklist {
	margin-left: 20px;
	list-style: none;
	list-style-type: none;
}

.checklist-title {
	font-family: var(--font-family_arial-bold);
	font-weight: 600;
	font-size: 1.0rem;
	color: var(--color_blue-80);
}

.checklist-item {
	position: relative;
	margin-bottom: 0.5rem;
	font-family: var(--font-family_trebuchet-ms);
	font-size: 1.0rem;
	color: var(--color_black-90);
}

.checklist-item::before {
	position: absolute;
	left: -2.1rem;
	top: -0.4rem;
	width: 2.0rem;
	height: 1.6rem;
	display: inline-block;
	content: "";
	background: url(https://anaboard.de/File/279000106) no-repeat;
	background-size: contain;
}


/* 
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
	
	JavaScript specifics general (if user has JavaScript enabled)
	
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
*/

.js .fade-in-section {
	opacity: 0;
	transform: translateY(100px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js .fade-in-section.visible {
	opacity: 1;
	transform: translateY(0);
}

.js .fade-in-element {
	opacity: 0;
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js .fade-in-element-view {
	opacity: 0;
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js .left-fade-in-element-view {
	transform: translateX(-33vw);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	opacity: 0;
}

.js .left-fade-in-element-view.visible {
	opacity: 1;
	transform: translateX(0);
}


/* 
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
	
	HEADER
	
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
*/


/* Header media queries */

@media screen and (max-width: 480px) {
	
	#header_background-svg {
    	width: auto;
    	padding-left: calc(192px - (192 - 40) * (100vw - 320px) / (480 - 320));
	}
	
	#header-intrabase-logo {
		display: none;
	}
	
	.header-logo {
		margin-left: 540px;
		width: 12.5% !important;
	}
	
	.icon-mobile-menu,
	.mobile-menu {
		width: calc(535px + (100vw - 320px) * (395 / 161));
	}
	
}

@media screen and (min-width: 481px) {
	
	#header_background-svg {
    	width: auto;
    	height: auto;
    	padding-left: calc(220px - (220 - 40) * (100vw - 481px) / (768 - 481))
	}
	
	#header-intrabase-bildmarke {
		display: none;
	}
	
	.header-logo {
		margin-left: 285px;
	}
	
	.icon-mobile-menu,
	.mobile-menu {
		width: calc(700px + (100vw - 481px) * (465 / 287));
	}
}

@media screen and (max-width: 768px) {
	
	.header-logo {
		padding-top: 20px;
		padding-bottom: 10px;
	}
	
	.header-row-navigation {
		position: absolute;
	}
	
	#header_background-svg {
		filter: none !important;
	}
	
	.header-row-navigation nav {
		height: 100%;
		display: none;
	}
	
	.mobile-menu {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.icon-mobile-menu {
		height: 44px;
		margin-left: 60vw;
	}
	
	.header-st2 {
		filter: drop-shadow(0 0 0.3em rgba(0, 0, 0, 0.5));
	}
	
	.header-st0 {
		filter: drop-shadow(0 0 0.3em rgba(0, 0, 0, 0.5));
	}
	
	#header-drawer {
		animation: bounceAnimation 1s ease-in-out;
	}
}

@media screen and (min-width: 769px) { 
	
	#header_background-svg {
		top: 0;
		width: min(16350px, max(6737.45px, calc(100vw*6.43)));
	    height: auto;
	    padding-left: calc(40px - (40 - 0) * (100vw - 769px) / (1024 - 769));
	}
	
	.header-logo {
		margin-left: 85px;
		padding-top: 25px;
		padding-bottom: 15px;
	}
	
	.icon-mobile-menu svg,
	.mobile-menu {
		display: none;
	}
	
	.icon-mobile-menu {
		margin-left: 100px;
	}
	
	.header-column-navigation {
		display: none;
	}
	
	.header-row-navigation {
		width: calc(1040px + (100vw - 769px) * (310 / 255));
	}
	
	.header-row-navigation nav {
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	
	.header-row-navigation nav ul li a {
		font-size: calc(1.4rem + (2.0 - 1.4) * ((100vw - 1024px) / (769 - 1024)));
	}
	
}

@media screen and (min-width: 1025px) { 
	
	#header_background-svg {
		padding-left: 0;
	}
	
	.header-logo {
    	right: 34%;
		margin-left: 85px;
	}
	
	.header-row-navigation {
		width: 100%;
	}
}

@media screen and (min-width: 481px) and (max-width: 768px) {
	
	.header-logo {
		margin-left: calc(285px - (285 - 215) * (100vw - 481px) / (768 - 481));
	}
}

@media screen and (min-width: 769px) and (max-width: 1025px) {
	
	.header-logo {
		margin-left: calc(215px - (215 - 85) * (100vw - 769px) / (1025 - 769));
	}
}


/* header content */

.header-inner {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 500;
}

.header-background {
    position: relative;
    width: 100%;
	height: auto;
    min-height: 60px;
    display: flex;
    justify-content: center;
    z-index: -1;
}

#header_background-svg {
	position: absolute;
    min-height: 60px;
    top: 0;
    filter: drop-shadow(0 0 0.3em rgba(0, 0, 0, 0.5));
}

.page-loaded .header-st2 {
  fill: #66CC66;
}

.header-logo {
	width: 54%;
    height: 100%;
}

.header-logo svg {
	max-width: 100%;
	max-height: 100%;
}

/* Check: IS NOT iOS Safari AND IS NOT macOS Safari */
@supports (not (-webkit-touch-callout: inherit)) and (not (stroke-color: transparent)) {
	#header-intrabase-logo {
		filter: drop-shadow(0.1em 0.1em 0.1em rgba(0, 0, 0, 0.5));
	}
}

.header-row-navigation {
	height: 100%;
	min-width: 380px;
    z-index: 505;
}

.header-row-navigation nav ul {
	width: 90%;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none; 
	font-family: var(--font-family_trebuchet-ms);
	text-align: right;
}
.header-row-navigation ul li {
	margin-left: 5%;
	display: inline-block;
	white-space: nowrap;
}

.header-row-navigation ul li a {
	text-decoration: none; 
	color: var(--color_black-90); 
	font-size: 1.0rem; 
	transition: color 0.2s ease-out;
}


/* mobile header */

.mobile-menu {
	height: auto;
	transform: translateY(-84%);
	transition: transform 0.8s ease-out;
	z-index: -1;
}

.mobile-menu.extended {
    position: absolute;
	padding-top: 30px;
    width: 70%;
    margin-left: 32%;
    
    background-color: rgba(245, 245, 245, 0.97);
    border-left: 3px solid var(--color_red-100);
    border-bottom: 3px solid var(--color_red-100);
    border-bottom-left-radius: 10px;
    transform: translateY(2%);
}

.icon-mobile-menu svg {
	width: 40px;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.icon-mobile-menu.extended {
	display: none;
}

.icon-mobile-menu-closing svg {
	width: 32px;
	height: auto;
	max-width: 100%;
	max-height: 100%
}

.icon-mobile-menu-closing.extended {
	position: absolute;
	bottom: -35px;
}

.header-column-navigation {	
	display: none;
	padding: 0;
	margin: 0;
}

.header-column-navigation.extended {
	display: flex;
    width: 100%;
    height: auto;
    padding-bottom: 16px;
    
    line-height: 2.5rem;
    flex-direction: column;
    align-items: center;
}

.header_column-nav-ul {
	position: relative;
	padding: 0;
	margin: 0;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	
	list-style: none; 
	font-family: var(--font-family_trebuchet-ms);
}

.header_column-nav-ul li {
	z-index: 501;
}

.header_column-nav-ul li:not(:last-child)::after {
	position: absolute;
	left: -10%;
	content: "";
	display: block;
	width: 120%;
	border-bottom: 1.3px solid var(--color_blue-40);
}

.header-column-navigation ul li a {
	text-decoration: none; 
	color: var(--color_black-90); 
	font-size: 1.0rem;
	transition: color 0.2s ease-out;
	padding: 10px 15px;
}

.header-row-navigation ul li a:hover,
.header-column-navigation ul li a:hover {
	color: var(--color_blue-100);
	transition: color 0.1s ease-out;
}

.header-st0.extended,
.header-st1.extended {
	display: none;
}


/* dropdown */

.header_dropdown-menu {
	position: fixed;
	min-width: 100px;
	left: 0;
	top: 0;
	display: none;
	z-index: 0;
	background-color: rgba(245, 245, 245, 0.97);
    border-left: 3px solid var(--color_red-100);
    border-right: 3px solid var(--color_red-100);
    border-bottom: 3px solid var(--color_red-100);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    
}

.header_dropdown-menu.extended {
	display: block;
	margin: 0;
	padding: 0;
}

.header_dropdown-menu nav {
	position: relative;
	display: flex;
	flex-direction: column;
	white-space: nowrap;
	text-align: left;
}

.header_dropdown-menu ul {
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0;
}

.header_dropdown-menu li {
	width: 100%;
	list-style: none;
	font-family: var(--font-family_trebuchet-ms);
	/* line-height: 1.4rem; */
	font-size: 1.0rem;
	height: 1.5rem;
}

.header_dropdown-menu a {
	width: 100%;
}



/* animation */

@keyframes bounceAnimation {
	0% { transform: translateY(0); }
	25% { transform: translateY(-20px); }
	50% { transform: translateY(0); }
	75% { transform: translateY(-10px); }
	100% { transform: translateY(0); }
}

.animate_collapsed-header_on-load {
	animation: bounceAnimation 1s ease-in-out;
}


/* 
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
	
	FOOTER
	
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
*/


/* Footer media queries */

@media screen and (max-width: 480px) {

	#visitor-today {
		flex-direction: column;
	}
	
	#individualized-forms {
		flex-direction: column;
	}
	
	.footer_additional-info {
	    width: 100%;
	}
	
	.footer_link-columns {
		flex-direction: row;
	}
}

@media screen and (min-width: 481px) and (max-width: 558px) {
	
	.footer_link-columns {
		flex-direction: column;
	}
}

@media screen and (min-width: 559px) and (max-width: 793px) {
	
	.footer_link-columns {
		flex-direction: row;
	}
}

@media screen and (min-width: 481px) and (max-width: 793px) {
	
	.footer-links {
		margin-top: 40px;
	}
	
	.footer_additional-info {
		width: 31%;
	}
	
	.footer_first-add-info-row {
    	flex-direction: column;
    	gap: 10px;
	}
}

@media screen and (max-width: 793px) {
	
	.footer-inner {
		justify-content: center;
	}
	
	.footer_contact-form {
	    width: 100%;
	    order: 1;
	}
	
	.footer-links {
		order: 2;
	}
	
	.footer_get-in-touch {
		justify-content: flex-start;
	}
}

@media screen and (min-width: 794px) and (max-width: 1044px)  {
	
	.footer_link-columns {
		flex-direction: column;
	}
}

@media screen and (min-width: 794px) and (max-width: 1044px) {
	
	.footer_contact-form {
		order: 2;
	}
	
	.footer-links {
		order: 1;
	}
}

@media screen and (min-width: 794px) and (max-width: 1424px) {
	
	.footer_additional-info {
		width: 100%;
	}
}

@media screen and (min-width: 794px) {
	
	.footer-inner {
		justify-content: space-around;
	}
}

@media screen and (min-width: 1045px) {

	.footer_link-columns {
		flex-direction: row;
	}
}


@media screen and (max-width: 1424px) {
	
	.footer-inner {
		flex-wrap: wrap;
	}
	
	.footer_additional-info {
		margin-top: 40px;
		order: 3;
	}
	
	.footer_link-columns {
		flex-wrap: wrap;
	}
}

@media screen and (min-width: 1425px) { 
	
	.footer-inner {
		align-items: flex-end;
	}
	
	.footer_additional-info {
		width: 31%;
		margin-top: 5px;
		order: 2;
	}
	
	.footer_contact-form {
		order: 3;
	}
	
	.footer_link-columns {
		align-items: flex-end;
		flex-wrap: nowrap;
	}
}

@media screen and (max-width: 480px) {
	
	.footer-background svg {
    	width: auto;
    	padding-right: calc(192px - (192 - 40) * (100vw - 320px) / (480 - 320));
    	margin-right: 0;
    	filter: none !important;
	}
	
	.footer-counter {
		margin: 0;
		width: 100vw;
		margin-left: calc(8430px - (8430 - 8140) * (100vw - 320px) / (480 - 320));
	}
	
	/* Check: IS NOT iOS Safari AND IS NOT macOS Safari */
	@supports (not (-webkit-touch-callout: inherit)) and (not (stroke-color: transparent)) {
		.footer-counter {
			padding-bottom: 20px;
		}
	}
}

@media screen and (max-width: 793px) {
	/* Check: IS macOS Safari */
	@supports (not (-webkit-touch-callout: inherit)) and (stroke-color: transparent){
		.footer-counter {
			padding-top: 37px;
		}
	}
}

@media screen and (min-width: 794px) {
	/* Check: IS macOS Safari */
	@supports (not (-webkit-touch-callout: inherit)) and (stroke-color: transparent){
		.footer-counter {
			padding-top: 30px;
		}
	}
}
	
@media screen and (min-width: 481px) and (max-width: 793px) {
	
	.footer-background svg {
   		width: auto;
   		padding-right: calc(220px - (220 - 40) * (100vw - 481px) / (768 - 481));
   		margin-right: calc(980px + (1140 - 980) * (100vw - 481px) / (792 - 481));
   		filter: none !important;
	}
}

@media screen and (min-width: 481px) and (max-width: 580px) {
	
	.footer-counter {
		margin: 0;
		width: 450px;
		margin-left: calc(9470px - (9470 - 9360) * (100vw - 481px) / (580 - 481));
	}
	
	/* Check: IS NOT iOS Safari AND IS NOT macOS Safari */
	@supports (not (-webkit-touch-callout: inherit)) and (not (stroke-color: transparent)) {
		.footer-counter {
			padding-bottom: 25px;
		}
	}
}

@media screen and (min-width: 581px) and (max-width: 1044px) {
	
	.footer-counter {
		margin: 0;
		width: calc(308px + (1503.350 - 308) * (100vw - 481px) / (1044 - 481));
		margin-left: calc(9515px - (9515 - 8305.79) * (100vw - 481px) / (1044 - 481));
	}
	
	/* Check: IS NOT iOS Safari AND IS NOT macOS Safari */
	@supports (not (-webkit-touch-callout: inherit)) and (not (stroke-color: transparent)) {
		.footer-counter {
			padding-bottom: 30px;
		}
	}
}

@media screen and (min-width: 794px) and (max-width: 1044px) {
	
	.footer-background svg {
		width: min(16350px, max(6737.45px, calc(100vw*6.43)));
		padding-right: calc(40px - (40 - 0) * (100vw - 769px) / (1024 - 769));
		margin-right: calc(1140px + (1090 - 1140) * (100vw - 793px) / (1044 - 793));
	}
}

@media screen and (min-width: 1045px) and (max-width: 1424px) {
	
	.footer-background svg {
		width: min(16350px, max(6737.45px, calc(100vw*6.43)));
		height: auto;
		padding-right: calc(40px - (40 - 0) * (100vw - 769px) / (1024 - 769));
		margin-right: calc(1070px + (1460 - 1070) * (100vw - 1045px) / (1424 - 1045));
	}
	
	.footer-counter {
		margin: 0;
		width: calc(1840px - (1840 - 1270) * (100vw - 1045px) / (1424 - 1045));
		margin-left: calc(8090px + (8340 - 8090) * (100vw - 1045px) / (1424 - 1045));
	}
	
	/* Check: IS NOT iOS Safari AND IS NOT macOS Safari */
	@supports (not (-webkit-touch-callout: inherit)) and (not (stroke-color: transparent)) {
		.footer-counter {
			padding-bottom: 35px;
		}
	}
	
	.footer-links {
		margin-top: 50px;
	}
}

@media screen and (max-width: 1424px) {
	
	/* Check: IS iOS Safari */
	@supports (-webkit-touch-callout: inherit) {
		.footer-counter {
			padding-top: 40px;
		}
		
		.footer-counter-title {
			font-size: 1.7rem !important;
		}
		
		.footer-counter-count {
			font-size: 2rem !important;
		}
		
		.footer-counter p {
			margin-left: 10px !important;
		}
	}
}

@media screen and (min-width: 1425px) {
	
	.footer-background svg {
		height: auto;
		width: min(16350px, max(6737.45px, calc(100vw*6.43)));
		padding-right: calc(40px - (40 - 0) * (100vw - 769px) / (1024 - 769));
		margin-right: min(3140px, calc(1885px + (3140 - 1885) * (100vw - 1425px) / (2543 - 1425)));
	}
	
	.footer-counter {
		margin: 0;
		width: min(1270px, calc(997px + (1271.67 - 997) * (100vw - 1425px) / (2543 - 1425)));
		margin-left: max(8502px, calc(8665px - (8665 - 8502) * (100vw - 1425px) / (2543 - 1425)));
	}
	
	.footer-counter-title {
		font-size: 1.6rem !important;
	}
	
	.footer-counter-count {
		font-size: 1.8rem !important;
	}
	
	/* Check: IS NOT iOS Safari AND IS NOT macOS Safari */
	@supports (not (-webkit-touch-callout: inherit)) and (not (stroke-color: transparent)) {
		.footer-counter {
			padding-bottom: 35px;
		}
	}
	
	/* Check: IS macOS Safari */
	@supports (not (-webkit-touch-callout: inherit)) and (stroke-color: transparent){
		.footer-counter {
			padding-top: 35px;
		}
	}
	
	/* Check: IS iOS Safari */
	@supports (-webkit-touch-callout: inherit) {
		.footer-counter {
			padding-top: 25px;
		}
	}
}


/* Footer content */


.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 60px;
    display: flex;
    justify-content: center;
    z-index: -1;
}

.footer-background svg {
	top: 0;
	position: absolute;
    min-height: 60px;
}

.footer-inner {
	position: relative;
	width: 87.5%;
	max-width: min(2200px, 100vw);
	height: fit-content;
	margin-left: auto;
	margin-right: auto;
	margin-top: max(2%, 60px);
	padding: 0;
	padding-bottom: 40px;
	display: flex;
	flex-direction: row;
	gap: min(60px, 10%);
}

#footer h2 {
	display: inline;
	margin: 0;
	padding: 0;
	padding-bottom: 3%;
	font-family: var(--font-family_arial-rounded);
	font-weight: 600;
	font-size: 1.8rem;
	color: var(--color_blue-80);
}

.footer-contact-button button,
.footer-contact-button input {
	height: 82%;
	margin-top: 4%;
	padding-top: 1.5%;
	padding-bottom: 1.5%;
	border-radius: 5px;
	cursor: pointer;
	font-family: var(--font-family_arial);
	font-weight: 600;
	font-size: 0.8rem;
}


/* Footer counter */

.footer-counter {
	height: 100%;
	display: flex;
	align-items: center;
	white-space: nowrap;
	gap: 60px;
	justify-content: flex-end;
}

.footer-counter-wrapper {
	width: 400px;
	height: 50px;
}

.footer-counter p {
	margin: 0;
	padding: 0;
	display: inline-block;
}

/* Check for anything but iOS Safari and apply specific styles */

@supports not (-webkit-touch-callout: inherit) {
	.footer-counter p {
		padding-left: 20px;
	}
}

.footer-counter-count {
	font-family: var(--font-family_arial-bold);
	font-weight: 600;
	font-size: 2.0rem;
	color: var(--color_blue-80);
}

.footer-counter-title {
	font-family: var(--font-family_trebuchet-ms);
	font-weight: 400;
	font-size: 1.8rem;
	color: var(--color_black-90);
}

/* Check for anything but iOS Safari and apply specific styles */

@supports (-webkit-touch-callout: inherit) {
	.footer-counter-count {
		font-size: 0.9rem;
	}
	.footer-counter-title {
		font-size: 0.7rem;
		padding-left: 5px;
	}
}

#individualized-forms,
#visitor-today {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}

/* Check for anything but iOS Safari and apply specific styles */

@supports not (-webkit-touch-callout: inherit) {
	#individualized-forms,
	#visitor-today {
		justify-content: center;
	}
}

/* Links */

.footer-links {
	position: relative;
	width: fit-content;
	display: flex;
	flex-direction: column;
	z-index: 300;
}

.footer_link-columns {
	display: flex;
    column-gap: 40px;
}


.footer-links ul {
	list-style: none;
	margin-top: 4%;
	margin-right: 2%;
	margin-bottom: 0;
	padding-left: 2%;
}

.footer-links ul li {
	margin-bottom: 8px;
	white-space: nowrap;
	font-family: var(--font-family_trebuchet-ms);
	font-weight: normal;
	font-size: 1.27rem;
	color: var(--color_black-90);
}

.footer-links ul li a {
	text-decoration: none;
	color: var(--color_black-90);
}

.footer-links ul li a:hover {
	color: var(--color_blue-100);
}


/* additional info */

.footer_additional-info {
	position: relative;
	height: fit-content;
	display: flex;
	justify-content: flex-start;
    flex-wrap: wrap;
}

.footer_first-add-info-row {
	width: 100%;
	margin-bottom: min(10px, 3%);
	display: flex;
	align-items: center;
}

.footer_social-icons {
	min-width: 100px;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}


.footer_additional-info img {
	margin: 0;
	padding: 0;
	max-width: 100%;
	max-height: 100%;
}

#footer_info-copyright {
	width: 100%;
}

#footer_info-copyright p {
	margin: 0;
	padding: 0;
	font-family: var(--font-family_trebuchet-ms);
	font-size: 0.8rem;
	color: var(--color_black-90);
	line-height: 1.0rem;
}

#footer_info-contact-DSGVO p {
	margin: 0;
	padding: 0;
	font-family: var(--font-family_trebuchet-ms);
	font-size: 0.8rem;
	color: var(--color_black-90);
}


/* Contact form */

.footer_contact-form {
	position: relative;
	max-width: 610px;
	height: 355px;
	min-height: 340px;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
}

.footer_contact-user-info {
	margin-top: 5px;
	display: flex;
	flex-direction: row;
    justify-content: space-between;
}

#footer_contact-user-name {
	width: 100%;
	min-height: 42px;
	height: 12%;
	display: flex;
	align-items: center;
}

#footer_contact-user-email {
	width: 48.80%;
	height: 100%;
	min-height: 42px;
	display: flex;
	align-items: center;
}

#footer_contact-user-phone-number {
	width: 48.80%;
	height: 100%;
	min-height: 42px;
	display: flex;
	align-items: center;
}

#footer_contact-user-name,
#footer_contact-user-email,
#footer_contact-user-phone-number,
#footer_contact-user-message { 
	border-style: solid;
    border-width: 1px;
    border-radius: 5px; 
    border-color: var(--color_black-80);
}

#footer_contact-user-message {
	width: 100%;
	height: 36.7%;
	margin-top: 5px;
}

.input-contactform_text {
	margin: 0;
	font-family: var(--font-family_trebuchet-ms);
	font-size: 0.8rem;
	color: var(--color_black-80);
}

.footer_get-in-touch {
	height: 15%;
	margin-left: 0.5%;
	display: flex;
	align-items: center;
}

.footer_get-in-touch h2 {
	display: flex;
	align-items: center;
	flex-direction: row;
	white-space: nowrap;
}

#icon-touch {
	margin: 0;
	padding: 0;
	max-width: 1.8rem;
	margin-left: 15px;
	align-self: baseline;
}

.footer-contact-button {
	height: 17.54%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 3%;
    row-gap: 7%;
}

.footer_send-msg {
	grid-column: 1; 
	grid-row: 1;
	background-color: var(--color_blue-60);
	color: var(--color_white);
	border: none;
}

#footer_our-phone-number {
	grid-column: 2; 
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-style: solid;
	border-color: var(--color_blue-60);
	color: var(--color_black-80);
	background-color: var(--color_white);
}

#icon-phone {
	min-width: 16px;
	width: 10%;
	height: 90%;
}

#footer_our-phone-number #icon-phone img {
	margin: 0;
	padding: 0;
	max-width: 100%;
	max-height: 100%;
}

#footer_our-phone-number #phone-number {
	margin-left: 5%;
}

/* Check: IS iOS Safari */
@supports (-webkit-touch-callout: inherit) {
	#footer_our-phone-number-description {
		hyphens: none;
		-webkit-hyphens: manual;
	}
}

/* Check: IS macOS Safari */
@supports (not (-webkit-touch-callout: inherit)) and (stroke-color: transparent){
	#footer_our-phone-number-description {
		hyphens: none;
		-webkit-hyphens: manual;
	}	
}

/* Check: IS NOT iOS Safari AND IS NOT macOS Safari */
@supports (not (-webkit-touch-callout: inherit)) and (not (stroke-color: transparent)) {
	#footer_our-phone-number-description {
		-webkit-hyphens: none;
		hyphens: manual; 
	}
}

#footer_our-phone-number-description {
    text-wrap: balance;
}

.footer-contact-button p {
	height: 33%;
	margin: 0;
	text-align: center;
	font-family: var(--font-family_trebuchet-ms);
	font-size: 0.8rem;
	color: var(--color_black-90);
}

.footer_send-msg {
	cursor: pointer;
	transition: transform 0.4s ease-out;
}

.footer_send-msg:hover {
	transform: scale(1.05);
  	filter: drop-shadow(0 0 0.3em rgba(0, 128, 255, 0.3));
}




/* 
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
	
	HERO
	
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
*/


#hero-section {
	height: auto;
}


/* Hero media queries */

@media screen and (max-width: 480px) {
	
	#hero-headline {
		line-height: 2.0rem !important;
	}

	.hero-cta-buttons { 
		flex-direction: column;
		justify-content: center;
	}
	
	#hero-contact-button {
		width: 100%;
	}
	
	.hero-learn-more-button-content {
		width: 100%;
	}
	
	#hero-learn-more-button {
		justify-content: center;
	}

	.hero-contact-button-content span {
		font-size: calc(14px + 4.8 * ((100vw - 320px) / 160));
	}
}

@media screen and (min-width: 481px) {
	
	#hero-headline {
		line-height: 1.5rem !important;
	}

	.hero-cta-buttons { 
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 20px;
	}
	
	#hero-contact-button {
		width: 58%;
	}
	
	#hero-learn-more-button {
		justify-content: flex-start;
	}
	
	.hero-learn-more-button-content {
		width: fit-content;
	}
	
	.hero-contact-button-content span {
		font-size: calc(15.6px + 3.2 * ((100vw - 481px) / 287));
	}
}

@media screen and (min-width: 769px) {

	.hero-contact-button-content span {
		font-size: 1.15rem;
	}
}

@media screen and (max-width: 1280px) {
	
	#hero-section {
		margin-top: 60px;
	}
	
	#hero-content {
		flex-direction: column;
		gap: 20px;
	}
	
	.hero-cta {
		width: 100%;
		order: 2;
	}
	
	.hero-image-container {
		width: 100%;
		order: 1;
	}
}

@media screen and (min-width: 1281px) {
	
	#hero-headline {
		padding-top: 5%;
	}
	
	#hero-content {
		flex-direction: row;
		margin-top: -13%;
		gap: 8%;
	}
	
	.hero-cta {
		min-width: 471.67px;
		width: 37.24%;
		max-width: 819.2px;
	}
	
	.hero-text {
		padding-top: 20%;
	}
	
	.hero-image-container {
		width: 57.76%;
	}
	
	.hero-contact-button-content span {
		font-size: 0.8rem
	}
}


/* Hero content */

#hero-content {
	width: 100%;
	height: 100%;
	display: flex;
}

/* Hero CTA */

.hero-cta {
	position: relative;
	max-height: 705.767px;
	padding-top: 4.5%;
	padding-left: 2.0rem;
	padding-right: 2.0rem;
	display: flex;
	flex-direction: column;
}

.hero-text {
	position: relative;
	display: flex;
	width: 100%;
	height: auto;
	padding-bottom: 4.5%;
	flex-direction: column;
	flex-wrap: wrap;
}

.hero-text p {
	margin: 0;
	font-family: var(--font-family_trebuchet-ms);
	font-size: 1.0rem;
	color: var(--color_black-80);
}

#hero-text-closing {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color_black-70);
}


/* Hero Buttons */

.hero-cta-buttons {
	position: relative;
	display: flex;
	width: 100%;
	padding-bottom: 20px;
	white-space: nowrap;
	z-index: 200;
}

#hero-contact-button {
	position: relative;
	min-width: 233px;
	background-color: transparent;
	border: none;
}

#hero-contact-button:hover {
  	filter: drop-shadow(0 0 0.3em rgba(255, 0, 0, 0.3));
}

.hero-contact-button-content {
	display: flex;
	align-items: center;
}

.hero-contact-button-content span {
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%, -50%);
	font-family: var(--font-family_arial);
	font-weight: 600;
	color: #fff;
}

.hero-contact-button-content svg {
	width: 100%;
	height: auto;
	max-width: 100%;
	z-index: -1;
}

#hero-learn-more-button,
#hero-contact-button {
	transition: transform 0.4s ease-out;
}

#hero-learn-more-button:hover,
#hero-contact-button:hover {
	transform: scale(1.1);
}

#hero-contact-button .hero-contact-button-content,
#hero-contact-button .hero-contact-button-content svg,
#hero-contact-button .hero-contact-button-content span {
	transition: color 0.4s ease-out;
}

.hero-contact-button-svg_cls-1 {
	fill: var(--color_red-60);
}
.hero-contact-button-svg_cls-2, .hero-contact-button-svg_cls-3 {
	fill: #fff;
}
.hero-contact-button-svg_cls-4, .hero-contact-button-svg_cls-5 {
	fill: none;
}
.hero-contact-button-svg_cls-5 {
	stroke: #dd7981;
	stroke-width: .8px;
}
.hero-contact-button-svg_cls-3 {
	opacity: .3;
}
.hero-contact-button-svg_cls-6 {
	fill: #ededed;
}
.hero-contact-button-svg_cls-7 {
	clip-path: url(#hero-contact-button-svg_clippath);
}

#hero-contact-button:hover .hero-contact-button-svg_cls-1 {
	fill: var(--color_white);
	stroke: var(--color_red-60);
}
#hero-contact-button:hover .hero-contact-button-svg_cls-3 {
	fill: var(--color_red-20);
	opacity: 1;
}
#hero-contact-button:hover #hero-contact-button-span {
	color: var(--color_red-60);
}

#hero-learn-more-button {
	width: 100%;
	background-color: transparent;
	border: none;
	font-family: var(--font-family_trebuchet-ms);
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--color_black-80);
	white-space: nowrap;
	display: flex;
	align-items: center;
	flex-direction: row;
	filter: none !important;
}

.hero-learn-more-button-content svg {
	width: 0.5rem;
    margin-left: 10px;
    cursor: pointer;
}

#hero-learn-more-button:hover {
	color: var(--color_blue-80);
}


/* Hero Image */

.hero-image-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-intrabase {
	position: relative;
    width: inherit;
    height: auto;
	min-width: 278.4px;
	min-height: 176.133px;
	max-width: 1280px;
	max-height: 1130.19px;
}

#hero-image {
	position: relative;
	width: inherit;
	max-width: 100%;
	height: auto;
	top: 2.5%;
	filter: drop-shadow(0 0.5em 1em rgba(0,0,0,0.5));
	z-index: 10;
}



/* 
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
	
	PRIVACY
	
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
*/

#privacy p {
	padding-left: 32px;
}

#privacy li {
	margin-top: 10px;
	padding-left: 32px;
	width: 90%;
	font-family: var(--font-family_trebuchet-ms);
	font-size: 1.0rem;
	color: var(--color_black-90);
}

