@CHARSET "ISO-8859-1";
/* Reset CSS
 * --------------------------------------- */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,blockquote,th,td {
    padding: 0;
    margin: 0;
}

.vh-50 {
	height: 50vh !important;
}

.h-80 {
	height: 80% !important;
}

.min-h-80 {
	min-height: 80% !important;
}

a{
	text-decoration:none;
	cursor: pointer;
	color: var(--lightVBW);
}
table {
    border-spacing: 0;
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: 400;
    font-style: normal;
}
strong{
	font-weight: 700;
}
ol,ul {
    list-style: none;
    margin:0;
    padding:0;
}
caption,th {
    text-align: left;

}
h1,h2,h3,h4,h5,h6 {
	font-family: myriad-pro, sans-serif;
    font-weight: 300;
    font-size: 100%;
    margin:0;
    padding:0;
    color:var(--dark);
}
q:before,q:after {
    content:'';
}
abbr,acronym { border: 0;
}

/* Allgemein
 * --------------------------------------- */

:root {
	--darkVBW: #002855;
	--lightVBW: #009A9B;
	--dark-tr-VBW: rgba(0, 41, 87, 0.9);
	--light-tr-VBW: rgb(0, 154, 155, 0.9);
	--grey-bg: #F5F5F5;
}
html {
	scroll-behavior: smooth !important;
}

body{
	font-family: myriad-pro, sans-serif;
	font-weight: 300;
	font-style: normal;
	color: var(--darkVBW);
	overflow-x: hidden !important;
}
@media screen and (max-height: 550px){
	.container {
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
}


/* Fonts / Typo
* --------------------------------------- */

h1{
	font-size: 1.5rem;
	line-height: 1.4em;
	color: #FFF;
}
h2 {
	font-size: 2.5em;
	line-height: 1.4em;
	color: #FFF;
		
}

.dark-bg {
	background-color: var(--dark-tr-VBW);
	color: #fff;
}

h3{
	font-size: 2.2rem;
	line-height: 1.4;
	color: var(--darkVBW);
	hyphens: auto;
}

h4 {
	font-size: 1.3rem;
	line-height: 1.4;
	color: var(--lightVBW);
	hyphens: auto;
}

p {
    font-size: 1rem !important;
    line-height: 1.6em;
    color: #000;
}

.title-slide p {
    font-size: 1.4rem !important;
    line-height: 1.6em;
}

@media (max-width: 980px) {
	h1 {
		font-size: 1.5rem;
	}
	h2 {
		font-size: 1.5rem;
	}
	p {
		font-size: 1.5rem;
	}
}
ul.vbw-list li {
	display: flex;
	font-weight: 400;
    line-height: 1.4em;
	color: #000;
	margin-bottom: 10px;
}
ul.vbw-list li:before {
	content: '■';
	color: var(--lightVBW);
	margin-right: 10px;
}

/*HELPER*/
.overflow-hidden {
	overflow: hidden;
}
.align-center {
	text-align: center;
}
.text-decoration-none {
	text-decoration: none !important;
}
@media (min-width: 767px) {
	.negative-margin-left {
		margin-left: -15%;
	}
	.max-w-550{
		max-width: 550px;
	}
	.center-col-content{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	}
}

.small-text p{
	font-size: 16px !important;
	line-height: 1.7;
}

p.small {
	font-size: 12px !important;
	font-weight: 300;
	font-style: italic;
}

.opacity-low {
	opacity: 0.8;
}

/*Logo*/
.logo-wrapper {
	position: fixed;
	left: 50px;
	top: 0;
	z-index: 999;
	background-color: rgba(255, 255, 255, 0.9);
	width: 140px;
}

.logo {
	padding: 25px 15px;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 1024px) {
	.logo-wrapper {
		width: 130px !important;
	}
	.logo {
		padding: 30px 15px;
	}
}

@media screen and (max-height: 600px){
	.logo-wrapper {
		width: 90px !important;
	}
	.logo {
		padding: 20px 10px;
	}
}

/*Download Btn*/
.download-icon-wrapper {
	position: absolute;
	color: #fff !important;
	text-decoration: none !important;
	background-color: var(--dark-tr-VBW);
	padding: 10px 15px 10px 20px;
	z-index: 9;
	right: -215px;
	bottom: 15vh;
	transition: .3s all ease;
}
.download-icon-wrapper:hover {
	right: 0;
	transition: .3s all ease;
}

.vorwort-btn {
	right: 0;
}

.download-icon img{
	width: 20px;
	height: auto;
	margin-right: 15px;
}

/*Fullcreen Nav*/
.nav-btn-wrapper {
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 999;
	display: flex;
	align-items: center;
}

.nav-btn-wrapper > p {
	color: var(--lightVBW);
	font-weight: 400;
	margin-right: 20px;
	margin-bottom: 0;
	font-size: 14px !important;
}

.nav-btn .menuIcon{
    display: flex;
    position: relative;
    width: 50px;
    height: 32px;
    background: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.nav-btn .menuIcon .line {
	height: 4px;
	width: 40px;
	border-radius: 3px;
	background-color: var(--lightVBW);
	position: relative;
	transition-duration: 0.2s;
}

#toggleNavBtn.active .menuIcon .line {
	background-color: var(--lightVBW) !important;
}

.nav-overlay {
	height: 0;
	width: 100%;
	position: fixed;
	z-index: 998;
	top: 0;
	background-color: rgba(255, 255, 255, 1);
	overflow-x: hidden;
	transition: 0.6s;
}

.nav-overlay-content {
	position: relative;
	top: 150px;
	width: 100%;
	padding: 0 10%;
	margin-top: 30px;
}

.nav-overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 45px;
	font-size: 60px;
}

@media screen and (max-height: 450px) {
	.nav-overlay a {font-size: 20px}
}

.nav-overlay .menu {
	margin-top: 50px;
}
.nav-overlay .menu a {
	color: var(--darkVBW);
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.4em;
	width: 100%;
	padding: 20px 0 20px 10px;
	text-decoration: none !important;
	margin: 0;
	border-bottom: 1px solid var(--darkVBW);
}
.nav-overlay .menu .menu-item {
	display: flex;
	align-items: center;
}
.nav-overlay .menu .menu-item:after {
	content: '〉';
	position: absolute;
	right: 10px;
}

.nav-overlay .menu-item {
	display: block;
}

/*Buttons*/
.btn {
	padding: 10px 25px;
	border-radius: 0;
	border: none;
	font-size: 1rem;
    line-height: 1.5;
}
.btn:hover::before {
	margin: 0px 1px 0px 7px;
	transition: margin 150ms ease-in-out;
}

.btn:before {
	content: '〉';
	margin: 0px 8px 0px 0px;
	transition: margin 150ms ease-in-out;
}
.btn.slide-right:before {
	content: '';
	display: none;
}

.btn.slide-right .arrow:after {
	content: '→';
	margin-left: 10px;
	transform-origin: 0% 0%;
}
.btn.slide-right {
	display: flex;
}
.btn.slide-right .arrow{
	animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.slide-down{
	animation: bounceDown 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
	position: absolute;
	margin-left: 50%;
	margin-right: 50%;
	bottom: 5%;
	border-radius: 100px;
	background-color: rgba(255, 255, 255, 0.9);
}
.slide-down:hover {
	text-decoration: none;
	color: var(--darkVBW);
}
.slide-down .arrow {
	padding: 10px 15px;
	transform: rotate(90deg);
}

@keyframes bounce {
	0% {
	  	transform: translateX(0);
	}
	50% {
	  	transform: translateX(10px);
	}
  }

  @keyframes bounceDown {
	0% {
	  transform: translateY(0);
	}
	50% {
	  transform: translateY(10px);
	}
  }

.btn.btn-primary {
	background-color: var(--dark-tr-VBW);
	color: #fff;
}
.btn.btn-light {
	background-color: transparent;
	color: var(--dark-tr-VBW);
}
.btn.btn-light.lightVBW {
	color: var(--lightVBW);
}
.btn.btn-dark {
	background-color: var(--dark-tr-VBW);
	color: #fff;
	padding: 10px 15px 10px 20px;
	z-index: 9;
	right: 0;
	bottom: 10vh;
}

.btn.btn-dark.btn-download{
	position: absolute;
    right: 0;
    bottom: 20%;
    margin-right:10%;
}

.btn.btn-dark.btn-download:before {
	content: ' ';
}

.btn.btn-dark.btn-download .icon {
	width: 20px;
    margin-right: 15px;
}

.btn.btn-dark:active,
.btn.btn-dark:focus {
	background-color: var(--dark-tr-VBW) !important;
	color: #fff !important;
    border-color: var(--dark-tr-VBW) !important;
	box-shadow: none !important;

}

.btn.btn-light:active,
.btn.btn-light:focus {
	background-color: #fff !important;
	color: var(--dark-tr-VBW) !important;
    border-color: var(--dark-tr-VBW) !important;
	box-shadow: none !important;
}
.quartiere-slider {
	margin-top: 4vh;
}

#fp-nav ul li:last-child {
display: none;
}

/*Front Page*/
.titel {
	background-image: url('../img/titelbilder/intro.jpg');
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
}
.titel h1 {
	background-color: var(--light-tr-VBW);
	display: inline-block;
	left: -10px;
	top: -35px;
	position: absolute;
}

.titel .btn {
	position: absolute;
	right: 45px;
	bottom: -20px;
	background-color: #fff;
}
.vorwort {
	background-color: var(--grey-bg);
}

/* section2 */
.imagebackground .bg{
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: 200px;
	top: 0;
	left: 0;
	z-index: -1;
	margin-bottom: 40px;
	background-position: center;
	width: 100vw;
}

.botschaft1 .bg {
	background-image: url('../img/titelbilder/01-wissen-wandel-wir-gefuehl.jpg');
    background-position: 46%;
}

.botschaft2 .bg {
	background-image: url('../img/titelbilder/02-wir-gestalten.jpg');
	background-position: 40%;
}

.botschaft3 .bg {
	background-image: url('../img/titelbilder/03-gespuer-fuer-relevante-arbeit.jpg');
}

.botschaft4 .bg {
	background-image: url('../img/titelbilder/04-optimismus.jpg');
	background-position: right;
}

.botschaft5 .bg {
	background-image: url('../img/titelbilder/05-stabilitaet.jpg');
	background-position: center;
}

.jahresabschluss .bg {
	background-image: url('../img/titelbilder/06-jahresabschluss.jpg');
}

img#zukunftsmacher {
	max-height: 60vh;
    width: auto !important;
}

@media (min-width: 768px) {
	.imagebackground .bg{
		position: absolute;
		height: 100vh;
		z-index: -1;
		margin-bottom: 0;
	}
	.imagebackground .bg1 {
		width: 26vw;
	}
	.image-kombi > img.third{
		left: 60%;
		top: 30%;
	}
}

/*Slides*/
.slide {
	position: relative;
}
.fp-controlArrow {
    position: absolute;
    z-index: 9;
	top: auto;
    bottom: 20px;
	height: 40px !important;
	width: 40px !important;
    cursor: pointer;
    margin-top: -38px;
	border: 1px solid var(--darkVBW) !important;
	border-width: 1px !important;
	display: flex;
	justify-content: center;
	align-items: center;
}
.fp-controlArrow.fp-prev,
.fp-controlArrow.fp-next {
	height: 30px !important;
	width: 30px !important;
}
.fp-controlArrow.fp-next {
    right: 30%;
}

.fp-controlArrow.fp-prev {
    left: 30%;
}

.fp-controlArrow.fp-prev:before {
	content: '〈';
	margin-right: 8px;
}
.fp-controlArrow.fp-next:before {
	content: '〉';
	margin-left: 8px;
}

.fp-slidesNav ul{
	display: flex;
    justify-content: center;
}

/*Counter*/
.counter {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.counter h3 {
	font-weight: 700;
	font-size: 3.5rem;
}

.counter.small h3 {
	font-size: 3.5rem;
}
.counter.small p {
	font-size: 14px !important;
}

/*Grey BG*/
.grey-bg{
	position: absolute;
	top: 20%;
	left: 0;
	width: 80%;
	height: 60%;
	background-color: var(--grey-bg);
} 

/*TABLES*/
table.table {
	overflow: auto;
}
table.table thead{
	background-color: var(--darkVBW);
	color: #fff;
	border-bottom: none;
}

table.table thead th,
table.table tbody td,
table.table tbody th{
	border-bottom: none;
	padding-top: 15px;
	padding-bottom: 15px;
	vertical-align: middle;
}

@media (max-width: 767px) {
	table.table {
		overflow: auto;
	}
}

/*BILANZ Tabellen*/
.bilanz-container {
	padding-bottom: 100px;
}
table tr td:not(:first-child),
table tr th:not(:first-child) {
	text-align: right;
}
table.table .td-ergebnis {
	background-color: var(--grey-bg);
	border: none;
}
table.table .td-ergebnis th,
table.table .td-ergebnis td {
	border-top: none;
	border-bottom: 1px solid #fff;
}
.grey-bg.big{
	height: 65%;
	width: 100%;
} 
.bilanz-container {
	padding-top: 10%;
}
table.bilanz tr td:first-child,
table.bilanz tr th:first-child {
	max-width: 450px;
}
table.table .td-2 th:first-child{
	padding-left: 20px;
}
table.table .td-3 td:first-child{
	padding-left: 40px;
}
table.table .td-4 td:first-child{
	padding-left: 60px;
}

/*Teaser*/
.teaser p {
	position: absolute;
	bottom: -60px;
	right: 0px;
	width: 85%;
	min-height: 90px;
	z-index: 1;
	transition: .5s all ease;
}

.teaser:hover p{
	background-color: var(--darkVBW);
	transition: .5s all ease;
}

.teaser .image-wrapper {
	height: 250px;
	width: 100%;
	overflow: hidden;
	z-index: 0;
}

.teaser .image-wrapper img {
	min-width: 100%;
	height: auto;
	transition: .5s all ease;
}

.teaser:hover .image-wrapper img{
	transform: scale(1.1);
	transition: .3s all ease;
}

/*Image Kombi*/

.image-kombi > img{
	display: none;
}
.image-kombi {
	display: flex;
	justify-content: flex-end;
}
.image-kombi .image-wrapper.align-right{
	justify-content: flex-end;
}
.image-kombi .image-wrapper.align-left{
	justify-content: flex-start;
}
.image-kombi > img{
	position: absolute;
	width: 55% !important;
	height: auto;
	z-index: 1;
	left: 0;
	top: 0;
}
.image-kombi > img.first{
	left: 0;
	top: 0;
	transform: rotate(-2deg);
}
.image-kombi > img.second{
	left: 45%;
	top: -10%;
	transform: rotate(2deg);
}
.image-kombi > img.third{
    left: 38%;
    top: 30%;
	transform: rotate(4deg);
}

.image-kombi > img.first:hover{
	transform: rotate(-4deg);
}
.image-kombi > img.second:hover{
	transform: rotate(4deg);
}
.image-kombi > img.third:hover{
	transform: rotate(6deg);
}

.image-kombi .image-wrapper {
	margin-top: 60px;
	height: 60vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.image-kombi .image-wrapper img {
	min-height: 100%;
	height: 100%;
	width: auto;
}

/*
.image-kombi .quote {
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 100px;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 10px;
}

.image-kombi .quote h4 {
	font-size: 20px;
    line-height: 1.2;
	color: var(--darkVBW);
}
.image-kombi .quote p {
	color: var(--lightVBW);
}
*/

/*MODAL*/
.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}

.modal-dialog {
	position: fixed;
	margin: 0;
	width: 100%;
	height: 100%;
	padding: 0;
}

.modal-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 0;
	box-shadow: none;
	width: 100vw;
	background-color: rgba(255, 255, 255, 0.9);
}

.modal-backdrop {
	background-color: #fff;
}

.modal-header {
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	padding: 10px 20px;
	border: 0;
	display: flex;
	justify-content: flex-end;
}

.btn-close {
	color: var(--darkVBW);
	font-size: 40px;
	line-height: 1;
	text-decoration: none !important;
}
.btn-close:hover {
	color: var(--darkVBW);
}

.modal-body {
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.modal-body .container {
	overflow: auto;
}

.graph .jahr {
	position: absolute;
    transform: rotate(-90deg);
    left: -11px;
}

.graph .bar {
	display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}

.graph .value {
	display: flex;
	align-items: center;
}
.graph .value strong {
	position: absolute;
	z-index: 9;
	color: #fff;
	margin-left: 15px;
}
.graph .bar h4 {
	margin-bottom: 5px;
}
.graph .bar p {
	margin-top: 5px;
}
.graph .bar h4,
.graph .bar p{
	font-size: 14px !important;
}
.graph .bar .value .rectangle{
height: 60px;
width: 0;
background-color: var(--darkVBW);
}
.graph .bar1 .value .rectangle{
	width: 50%;
}

.graph .bar2 .value .rectangle{
	width: 100%;
}

/*gallery*/
.gallery .column {
  float: left;
  width: 16.5%;
  padding: 10px;
  height: 60px;
  overflow: hidden;
}

.gallery .column img {
  opacity: 0.8;
  cursor: pointer;
  width: 100%;
  height: auto;
}

.gallery .column img:hover {
  opacity: 1;
}

.gallery .row:after {
  content: "";
  display: table;
  clear: both;
}

.gallery .container {
  position: relative;
  display: none;
}

.gallery #imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
}

.gallery .closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}

#expandedImg {
	height: 100%;
	width: 100%;
}

/*Beer Slider*/
.beer-handle {
	color: #fff !important;
	background: var(--lightVBW) !important;
}

.beer-slider[data-beer-label]:after, .beer-reveal[data-beer-label]:after {
	color: #fff;
	background: var(--darkVBW) !important;
}

/*LIGHTBOX*/
.lightbox-trigger {
	cursor: pointer;	
	transition: .3s all ease;
}
.lightbox-trigger:hover {
	transform: scale(1.1);
}
#lightbox {
	position:fixed; /* keeps the lightbox window in the current viewport */
	top:0; 
	left:0; 
	width:100%; 
	height:100%; 
	background: rgba(255, 255, 255, 0.9); 
	text-align:center;
	z-index: 1051;
}
#lightbox #lightboxContent {
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
}
#lightbox .closeLightbox {
	position: absolute;
	color: var(--lightVBW); 
	right: 50px; 
	top: 40px; 
	font-size: 50px !important; 
	line-height: 1;
	padding-bottom: 0;
	margin-bottom: 0;
	cursor: pointer;
}
#lightbox img {
	box-shadow:0 0 25px #111;
	max-width: 80vw;
	max-height: 80vh;
}
#lightbox h3 {
	margin-top: 12px;
}

/*SWIPER*/
.swiper-container {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	background: #fff;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	-webkit-box-pack: flex-start;
	-ms-flex-pack: flex-start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.swiper-slide .swiper-slide-img {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.swiper-slide .swiper-slide-img img {
	min-width: 100%;
	min-height: 100%;
}

.swiper-slide .swiper-slide-body {
	padding: 10px;
}

.swiper-slide .swiper-slide-body ul.vbw-list li{
	font-size: 14px !important;
}

.swiper-slide .swiper-slide-header {
    text-align: center;
    width: 100%;
    padding: 5px 0;
}

.swiper-slide .swiper-slide-header h4{
	font-size: 16px;
    color: #000;
}

.swiper-button-prev {
    left: -20px;
}

.swiper-button-next {
    right: -20px;
}

.swiper-button-next, .swiper-button-prev {
	color: var(--lightVBW);
	outline: none !important;
}

/*BG Icons*/
.bg-icon {
	opacity: 0.04;
	position: absolute;
	width: 30vw;
	aspect-ratio: 1/1;
	right: 100px;
	bottom: 100px;
	height: fit-content;
}
.bg-icon.left {
	left: 0;
	bottom: 0;
	right: auto;
}
.bg-icon.sm {
	width: 30%;
}

.image-kombi .image-wrapper img.azubiImages {
	height: auto;
}

.azubi {
	height: 30vh !important;
	min-height: auto !important;
	margin: 20px !important;
}

#basketball {
	transform-box: fill-box;
	animation: bounce2 2s ease infinite;
}

#Virus-2 {
	transform-box: fill-box;
    animation: rotateIcon 14s linear infinite;
	transform-origin:50% 50%;
}

#Virus-2 {
	transform-box: fill-box;
    animation: rotateIcon 18s linear infinite;
	transform-origin:50% 50%;
}

.simpleImage {
	height: auto;
	width: 100%;
}

@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

@keyframes rotateIcon {
    0% { transform: rotate(0deg); }
    100% {  transform: rotate(359deg); }
}

.rotate {
	-webkit-animation:spin 10s linear infinite;
    -moz-animation:spin 10s linear infinite;
    animation:spin 10s linear infinite;
}

.quote p{
	margin-top: 3px;
	margin-bottom: 0;
}
.quote {
	position: relative;
}
.quote::before {
	content: ' ';
	position: absolute;
	left: -15px;
	height: 100%;
	width: 3px;
	background-color: var(--lightVBW);
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }


/*Footer*/
.footer {
	min-height: 100px;
	background-color: var(--grey-bg);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer .logo {
	width: 150px;
}
.footer a {
	padding: 10px 20px;
	margin: 0 10px;
	text-decoration: none !important;
}
.footer strong {
	font-weight: 400 !important;
}
.footer a:hover {
	color: var(--darkVBW);
}

/*MEDIA QUERIES*/

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2)  and (orientation: portrait) {
	.fp-controlArrow {
		top: 300px !important;
	}
 }

 @media (min-width: 576px) {
	.image-kombi > img{
		display: block;
	}
 }


@media (max-width: 767px) {
	.image-kombi:not(.d-mobile-none) .image-wrapper{
		width: 100% !important;
		margin-bottom: 30px;
		height: auto;
		margin-top: 0;
	}
	.image-kombi:not(.d-mobile-none) .image-wrapper img {
		width: 100%;
		height: auto;
		min-height: auto;
	}
	.d-mobile-none {
		display: none !important;
		margin-bottom: 0;
	}
	.section:not(.titel) .fp-tableCell,
	.slide .fp-tableCell{
		height: auto !important;
		display: block;
	}
	.section.vorwort .fp-tableCell {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.fp-section.section {
		height: auto !important;
	}
	.fp-section.fp-table:not(.titel), .fp-slide.fp-table {
		display: flex;
    	justify-content: center;
		table-layout: unset;
		height: auto !important;
		padding: 30px 0;
	}
	.logo {
		padding: 10px 5px;
	}
	.logo-wrapper {
		width: 90px !important;
		left: 0;
	}
	.nav-btn-wrapper{
		top: 20px;
		right: 30px;
	}
	.nav-btn .menuIcon {
		width: 30px;
		height: 30px;
	}
	.nav-btn .menuIcon .line {
		width: 40px;
	}
	.nav-btn-wrapper > p span {
		display: none;
	}
	.nav-overlay-content {
		top: 0;
		padding: 50px 30px;
	}
	.nav-overlay-content h3{
			font-size: 20px;
	}
	.nav-overlay-content h4{
		font-size: 17px;
	}
	.nav-overlay .menu {
		margin-top: 20px;
	}
	.nav-overlay .menu a {
		font-size: 18px;
		padding: 15px 0 15px 0px;
	}
	.nav-overlay .btn.btn-dark.btn-download {
		position: relative;
		margin: 0px 30px;
		bottom: 0;
	}
	.download-icon-wrapper {
		position: fixed;
		bottom: 40px;
	}
}

.swiper-pagination {
	width: 100%;
    position: initial;
}

.swiper-pagination span{
	margin: 0px 5px;
}

@media (max-width: 575.98px) { 
	.bg-icon {
		display: none
	}
	.botschaft5 .bg {
		background-position:initial;
	}
}
@media (min-width: 1400px) {
	.image-kombi > img.third{
		left: 90%;
		top: 25%;
		transform: rotate(4deg);
	}
}

@media (min-width: 1200px) {
	.image-kombi .image-wrapper {
		height: 70vh;
	}
}




.d-block-print {
	display: none;
}


@media print {
	@page {
	  size: landscape;
	}

	/*zum drucken: responsive-width auf 1920, animation.css auskommentieren, ueber firefow querformat druckien*/

	.fp-section{
        page-break-after: always !important;
    }
    .fp-slide{
        page-break-after: always !important;
	}
	.download-icon-wrapper {
		display: none;
	}
	.grey-bg{
		background-color: transparent;
	} 
	.btn, .nav-btn-wrapper, #downloadButton, .jahresabschluss, .d-none-print, .btn-close {
		display: none !important;
	}
	.d-block-print {
		display: block !important;
	}
	.logo-wrapper {
		z-index: 999999;
	}
	.modal-content {
		background-color: white;
	}
}


.youtube-video {
	height: calc(315px * 2);
    width: calc(560px * 2);
    max-height: 100%;
    max-width: 100%;
    margin: 0px auto;
}

.mt-sub-1 {
	transform: translateY(-7px);
}

.stoerer {
	position: absolute;
    bottom: 10%;
    left: 10%;
    width: 150px;
    height: 150px;
}

.sub-korrektur {
	bottom: -1.3em;
}

#id-1, #id-2, #id-3, #id-4, #id-5, #id-6 {
	scroll-margin-top: 50px;
}