@charset "utf-8";
/* Allgemein */

/* Zenraleverwaltung */
:root {
	--primary: #95C230; /*grün*/				var(--primary);
	--secondary: #944521; /*grau/blau*/			var(--secondary);
	--white: #fff;								var(--white);
	--black: #1D1D1D;							var(--black);
	--primarylight: #B9DA6C;					var(--primarylight);
	--primarydark: #327f33;						var(--primarydark);
	--secondarylight: #df743d;					var(--secondarylight);
	--secondarydark: #5d2414;					var(--secondarydark);
	--graylight: #ECECEC;						var(--graylight);
	--graydark: #999;							var(--graydark);
	--blackgray: #3D3D3D;						var(--blackgray);
	
	--font-headline: "Inter", sans-serif;			var(--font-headline);
	--font-subline: "Vibur", cursive;		var(--font-subline);
	--font-flowing: "Inter", sans-serif;	var(--font-flowing);
	
	--sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}


*{
	margin: 0px;
	padding: 0px;
	 -webkit-font-smoothing: antialiased;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body{
	overflow-x: hidden;
	font-family: var(--font-flowing);
	font-weight: 300;
	hyphens: auto;
	hyphenate-limit-chars: auto 6;
	hyphenate-limit-lines: 3;
	-webkit-hyphens: auto;
	-webkit-hyphenate-limit-chars: auto 8;
	-webkit-hyphenate-limit-lines: 3;
	-ms-hyphens: auto;
	-ms-hyphenate-limit-chars: auto 8;
	-ms-hyphenate-limit-lines: 3;
}
h1, h2, h3, h4, h5, h6, .head1, .head2, .head3, .head4, .head5, .head6{
	/*line-height: 120%;
	font-weight: 600;
	color: var(--black);
	letter-spacing: 1px;
	font-family: var(--font-headline);
	text-transform: uppercase;*/
}
h1, .head1 {
	font-size: 3.125rem;
	margin-bottom: 20px;
	font-weight: 500;
}
h2, .head2{
	font-size: 2.5rem;
	margin-bottom: 15px;
}
h3, .head3{
	font-size: 2rem;
	margin-bottom: 10px;
}
h4, .head4{
	font-size: 1.6rem;
	margin-bottom: 5px;
}
h5, .head5{
	font-size: 1.3rem;
	margin-bottom: 0px;
}
h6, .head6{
	font-size: 1.25rem;
}
p, table, tr, td, div, ul, li, ol, input, textarea, div, select, option, span{
	font-size: 1.125rem;
	line-height: 170%;
	font-weight: 300;
	color: var(--black);
}
a:link, a:visited{
	text-decoration: none;
  	/* color: var(--black); */
	font-weight: 600;	
  	text-transform: none;	
}
a:active, a:hover{
	color: var(--black);	
}
strong, b{
	font-weight: 700;
}
em, i{
	font-style: italic;
}

h1 span{
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2.8125rem;
}


/*Allgemeiner Aufbau*/
/*.wrapper{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}*/
#logo_mobil{
	display: none;
}
.banner_headline{
	text-transform: uppercase;
	font-family: var(--font-headline);
	color: var(--black);
	font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
	font-weight: 800;
	max-width: 90%;
	line-height: 100%;
	margin-bottom: 40px;
}
.banner_subline{
  	color: var(--primary);
	font-family: var(--font-subline);
  	font-size: clamp(1.4rem, 1.5vw, 1rem);
}
.headline{
	font-family: var(--font-headline);
	font-size: 3rem;
	font-weight: 800;
	line-height: 100%;
}
.subline{
  	color: var(--primary);
	font-family: var(--font-subline);
	font-size: clamp(1.4rem, 1.5vw, 1rem);
	font-weight: 400;
	line-height: 100%;
}
.flowing{
  	color: var(--black) !important;
	font-family: var(--font-flowing);
	font-weight: 300;
	line-height: 170%;
}
.headline-small{
	font-family: var(--font-headline);
	font-size: clamp(1.4rem, 1.5vw, 1rem);
	font-weight: 800;
	line-height: 100%;
}
.subline-small{
	font-family: var(--font-subline);
	font-size: clamp(1.4rem, 1.5vw, 1rem);
	font-weight: 400;
	line-height: 1.5em;
}

.white_overlay{
	background-color: var(--white);
    opacity: 0.5;
	height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.black_overlay{
	background-color: var(--black);
    opacity: 0.5;
	height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}


.button {
    text-align: center;
    font-size: 1rem;
    line-height: clamp(2.875rem, 8vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    min-width: 10.875rem;
    /* margin: auto; */
    color: #1a1a1a;
    padding: 0 1.5rem;
    box-sizing: border-box;
    background-color: #fff;
    border: 2px solid #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}
.button:before {
    content: "";
    width: 0.375rem;
    height: 100%;
    background: #1a1a1a;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
    z-index: -1;
}
.button .icon {
    width: 1.5rem;
    height: auto;
}
.button .icon path {
    transition: fill 0.3s;
}
.button:hover {
    color: #fff;
}
.button:hover:before {
    width: 100%;
}
.button:hover .icon path {
    fill: #fff;
}
.button-white {
    text-align: center;
    font-size: 1rem;
    line-height: clamp(2.875rem, 8vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    min-width: 10.875rem;
    /* margin: auto; */
    color: #fff;
    padding: 0 1.5rem;
    box-sizing: border-box;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}
.button-white:before {
    content: "";
    width: 0.375rem;
    height: 100%;
    background: #fff;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
    z-index: -1;
}
.button-white .icon {
    width: 1.5rem;
    height: auto;
}
.button-white .icon path {
    transition: fill 0.3s;
}
.button-white:hover {
    color: var(--primary);
}
.button-white:hover:before {
    width: 100%;
}
.button-white:hover .icon path {
    fill: var(--primary);
}

/* .content{
	padding-bottom: 90px;
	padding-top: 90px;
	z-index: 4;
}
.content_medium{
	padding-bottom: 60px;
	padding-top: 60px;
}
.content_small{
	padding-bottom: 30px;
	padding-top: 30px;
}
.content_big{
	padding-bottom: 180px;
	padding-top: 180px;
} */

/*Eigene Klassen*/
.bg_primary{
	background: var(--primary);
	background: linear-gradient(306deg, rgba(29,142,181,1) 29%, rgba(98,188,219,1) 100%);
}
.bg_secondary{
	background: var(--secondary);
	background: linear-gradient(90deg, rgba(223,10,32,1) 35%, rgba(187,6,25,1) 100%);
}
.bg_white{
	background-color: var(--white) !important;
}
.bg_black{
	background: var(--black);
}
.bg_grey{
	background: var(--graylight);
}

.border{
	border: 1px solid var(--graylight);
}
.border-radius{
	border-radius: 1.5rem !important;
}
.border_right{
	border-right:2px solid var(--blackgray);
}
.margin_top{
	margin-top:4rem !important;
}
.margin_top_small{
	margin-top:2rem !important;
}
.margin_bottom{
	margin-bottom: 3rem;
}
.margin_left{
	margin-left: 1rem;
}
.padding_right{
	padding-right: 1rem;
}
.margin_negativ{
	margin: -1.9375rem 0 1rem 0;
}
.no-margin{
	margin:0px;
}

.white-text p, .white-text h1, .white-text h2, .white-text h3, .white-text h4, .white-text h5, .white-text h6, .white-text strong, .white-text p.subline, .white-text p.headline{
	color: var(--white);
}
.smalltext{
	font-size: 0.9rem;
	line-height: 1.5rem;
}
.center{
	text-align: center;
	margin: 0 auto;
}
.justify{
	text-align: justify;
}
.right_text{
	text-align: right;
}
.uppercase{
	text-transform: uppercase;
}
.text_left{
	text-align: left;
}
.text_right{
	text-align: right;
}
.text_black{
	color: var(--black) !important;
}
.text_white{
	color: var(--white) !important;
}
.text_primary{
	color: var(--primary) !important;
}
.text_secondary{
	color: var(--secondary) !important;
}

.opacity_none{
	opacity: 0;
}
.honey{
	display: none;
}

.position_center{
	display: flex;
	align-items: center;
	height: 100%;
	flex-wrap: wrap;
}
.img_full{
	width: 100%;
	vertical-align: top;
	max-width:100%;
	margin: 0px;
}
.order-2{
	order: 2;
}

.icon_formular{  
margin-right: 1rem;
}
.icon_teaser{
	font-size: 3.75rem;
	color: rgba(255,255,255,0.9);
	margin-bottom: 10px;
	padding: 15px;
}
.icon_head{
	font-weight: 600;
	color: rgba(255,255,255,0.9);
	font-size: 1.625rem;
	text-transform: uppercase;
}
.teaser_icon_xl{  
	font-size: 3rem;
	color: var(primary);
	margin-bottom: 10px;
}
.icon_big{
	font-size: clamp(1.4rem, 1.5vw, 1rem);
	margin-bottom: 1rem;
}

.collaps_content {
  background: var(--graylight);
  padding: 40px 80px 80px 80px;
}
.teaser{
	text-align: center;
}
.padding{
	padding: 5.25rem 1rem;
}
.no_padding{
	padding: 0 0 0 0 !important;
}
.padding_samll{
	padding: 1.7rem 1.5rem;
}
.padding_top{
	padding-top: 5.25rem;
}
.center-content{
	justify-content: center;
    justify-self: center;
}

/*Trenner/Zitate*/
.trenner_bild_path{
	background: url("../img/trenner/banner_path.webp") center bottom no-repeat fixed;	
	height: 300px;
	background-size: cover !important;	
}

/*Diverider*/
.divider{
	position: relative;
	z-index: 9;
}

/*Main*/
main{
	padding-top: 139px;
}

/* Mobil - 360px */
@media only screen and (min-width: 0rem) {	
section {
	padding: var(--sectionPadding);
	position: relative;
	/*overflow: hidden;*/
	z-index: 1;
    }
.container {
    width: 100%;
	max-width: 60rem;
	margin: auto;
    }
.content {
    display: flex;
	position: sticky;
	flex-direction: column;
	width: 100%;
    }
#trenner .container {
    max-width: 34.375rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
#trenner .content {
    text-align: left;
    max-width: 39.375rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
  }
#banner .container {
    max-width: 80rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
  }
#banner .content {
    text-align: left;
    max-width: 48.75rem;
    flex-direction: column;
    align-items: flex-start;
  }
#benefits .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
#benefits .content {
    text-align: center;
    padding: 0 1rem;
    align-items: center;
  }
#anforderungen .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 3.9vw, 4rem);
  }
#anforderungen .content {
    text-align: left;
    max-width: 40.625rem;
    align-items: flex-start;
  }
	
.card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    }
#banner .card-group {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1rem, 2.3vw, 1.25rem);
  }
#benefits .card-group {
    display: grid;
    justify-items: center;
    align-items: stretch;
    grid-auto-flow: row;
  }
#anforderungen .card-group {
    max-width: 44rem;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    align-items: stretch;
    gap: clamp(1rem, 2vw, 1.25rem);
  }
	
	
.item {
	overflow: hidden;
	list-style: none;
	box-sizing: border-box;
	display: flex;
	margin-bottom: 2rem;
    flex-direction: column;
	position: relative;
	z-index: 1;
    }
#banner .card-group .item {
	/*text-align: center;*/
    }
#anforderungen .item {
    padding: 1rem;
    background-color: transparent;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

#banner .item {
    width: 100%;
    border-radius: 1.5rem;
    text-align: left;
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: #fff;
    box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
    grid-column: span 12;
    grid-row: span 1;
    align-items: flex-start;
    justify-content: flex-start;
  }
#banner .item-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    max-width: 28.125rem;
  }
#benefits .item {
    padding: 1.5rem;
    align-items: flex-start;
    position: relative;
  }
#benefits .item::after {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #bababa 50%, rgba(255, 255, 255, 0) 100%);
    opacity: .6;
    position: absolute;
    bottom: 0;
    left: 0;
  }
#benefits .item:first-of-type {
    padding-top: 0;
  }
#benefits .item:last-of-type {
    padding-bottom: 0;
  }
#benefits .item:last-of-type::after {
    content: none;
  }
#benefits .item-text {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
  }

	
.background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    }
#banner .background {
    width: 100%;
    height: 80%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
#banner .background:before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--white);
    opacity: .8;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
  }
#banner .background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
#trenner .background {
    width: 100%;
    height: 100vw;
    max-height: 25rem;
    display: block;
    order: -1;
    position: relative;
    z-index: 2;
  }
#trenner .background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
	
#anforderungen .picture {
    display: block;
    position: relative;
    width: 100%;
    max-width: 44rem;
    height: auto;
    min-height: clamp(20.5rem, 45vw, 40rem);
  }
#anforderungen .picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
	
#banner .icon {
    width: 3rem;
    height: auto;
    margin: 0 0 1.5rem 0;
  }
  #anforderungen .h3-icon {
    width: 2rem;
    height: auto;
    display: block;
  }
#anforderungen .mit_icon {
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }
#anforderungen .mit_icon .h3-icon {
    color: var(--primary);
  }
	
#benefits .number {
    font-size: clamp(5rem, 1vw, 6.25rem);
    font-weight: 900;
    line-height: 1.2em;
    color: var(--primary);
    opacity: 0.12;
    display: block;
  }
#benefits .headline_small {
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    text-align: left;
    line-height: 1.2em;
    margin: -1.9375rem 0 1rem 0;
    color: var(--headerColor);
  }

.flex {
    flex: none;
  }
.width-100 {
    width: 100%;
  }
.max-width-21 {
    max-width: 21.5rem;
  }
.max-width-39 {
    max-width: 39.375rem;
  }
.max-width-25 {
    max-width: 25.8125rem;
  }

/* Grid */
.grid-column-3{
    grid-column: span 3;
        }
.grid-column-4{
    grid-column: span 4;
        }
.grid-column-6{
    grid-column: span 6;
        }
	
/* Kontaktformular */
#kontaktformular {
    width: 100%;
    max-width: 40.625rem;
    /* 32px - 40px */
    margin-bottom: 2rem;
    /* 20px - 40px */
    padding: 2rem;
    /* prevents padding from affecting width and height */
    box-sizing: border-box;
    border: 1px solid var(--graylight);
    border-radius: 1rem;
  }
.label {
    /* 14px - 16px */
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 700;
    /* 16px - 20px */
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .label-message {
    margin-bottom: 2.25rem;
  }
.input, textarea {
    font-size: 1rem;
    width: 100%;
    height: 4rem;
    margin-top: 0.25rem;
    padding-left: 1.25rem;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--primary);
    box-sizing: border-box;
    transition: border 0.3s;
  }
.input:hover,
   textarea:hover {
    border: 1px solid var(--primary);
  }
.input::placeholder, textarea::placeholder {
    color: var(--primary);
  }
textarea {
    font-family: inherit;
    margin: 0;
    padding-top: 1.25rem;
    min-height: 7.5rem;
  }
		
.copyright {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--white);
        display: block;
    }
}

/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
#banner {
    padding-bottom: 0;
  }
#banner.small{
    padding-bottom: 20%;
  }

.container {
        max-width: 70rem;
    }
#trenner {
    flex-direction: row;
    align-items: stretch;
  }
#trenner .container {
    max-width: 82rem;
    align-items: flex-end;
  }
#trenner .content {
    width: 45vw;
    max-width: 39.375rem;
  }
#trenner .background {
    width: 50%;
    max-height: 100%;
    height: 100%;
    position: absolute;
    right: 50%;
  }
#banner .container {
    align-items: flex-start;
  }
#banner .content {
    text-align: left;
    margin-left: 0;
    align-items: flex-start;
  }
#banner .item {
    grid-column: span 6;
  }
#banner .background {
    height: 87%;
  }
#banner .background:before {
    background: linear-gradient(90deg, #fff 21.41%, rgba(255, 255, 255, 0.9) 34.98%, rgba(255, 255, 255, 0) 62.53%);
    opacity: 1;
  }
#anforderungen .container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
#anforderungen .content {
    width: 55%;
    padding: 3rem 0;
    align-self: center;
    flex: none;
  }
#anforderungen .picture {
    max-width: 33.875rem;
    min-height: 28.125rem;
  }
#benefits .card-group {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
#benefits .item {
    padding: 2rem;
  }
#benefits .item::after {
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #bababa 50%, rgba(255, 255, 255, 0) 100%);
    opacity: .6;
    right: 0;
    left: initial;
  }
#benefits .item:first-of-type,
#benefits .item:last-of-type {
    padding: 2rem;
  }

		
.grid-12 {
    grid-template-columns: repeat(12, 1fr);
        }
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
        }
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
        }
	
#banner .item {
    grid-column: span 6;
    }
}


/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
}


/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
.container {
        max-width: 80rem;
    }
#trenner .content {
    position: initial;
  }
}


/* Large Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
.container {
        max-width: 80rem;
    }
#banner .item {
    grid-column: span 3;
  }
#trenner .content {
    width: 100%;
  }
#trenner .background {
    margin-right: 7.375rem;
  }
}


/*Content*/
/*.wrapper, .wrapper_small{
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}
.wrapper_small{
	max-width: 1200px;
}
 .content{
	padding-bottom: 110px;
	padding-top: 110px;
}
.content_medium{
	padding-bottom: 60px;
	padding-top: 60px;
}
.content_small{
	padding-bottom: 30px;
	padding-top: 30px;
} */


/*Flex Layout*/
.flex_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
}
.flex_wrap.no_wrap{
	flex-wrap: nowrap;
}
.wrap_reverse{
	flex-wrap: wrap-reverse;
}
.position_center{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}
.col1{
	width: 80%;
}
.col2{
	width: 43%;
}
.col5{
	width:50%;
	position: relative;
}
.col4{
	width: 24%;
}
.col3{
	width: 32%;
}
.col5{
	width: 19%;	
}
.inner_wrap{
	padding: 25px;
}
.substrat_inner_wrap{
	margin-top: 1rem;
}


/*Allgemeine Klassen*/
ul.none{
	list-style: none;
	margin-top: 5px;
}
ul.none li{
	margin-bottom: 15px;
}
ul.regular{
	margin-bottom: 10px;
	margin-top: 10px;
}
ul.regular li{
	margin-left: 20px;
	margin-bottom: 10px;
	padding: 0px !important;
	border:none !important;
	font-size: 1.125rem !important;
	font-weight: 300!important;
}
ul.check_list{
	margin-left: 0px;
	margin-top: 20px;
}
ul.check_list li{
	margin-bottom: 15px;
	list-style: none;
	margin-left: 5px;
}
ul.check_list li:before {
  	content: "✔";
  	padding-right: 10px;
	font-weight: 600;
}
hr {
  border: 1px solid var(--graylight);
  margin: 60px 0px;
}
img {
  width: 100%;
  /*max-width: 500px;*/
  /*margin: 20px 0;*/
}

/*Formulare*/
.kontaktformular {
  	width: 60%;
  	margin: 0px auto;
	padding: 0px 0px 70px;
}
.form-group{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
}
input, select{
	width: 70%;	
    margin: 10px 0px;
}
label{
	text-transform: uppercase;
	font-weight: 600;
}
textarea{
	width: 100%;
	margin: 10px 0px 30px 0px;
}
input, textarea, select{
	outline: none;
	padding: 10px !important;
	border: none;
	background: var(--graylight);
	font-family: var(--font-flowing);
	border-radius: 5px;
}
input[type="checkbox"] {
	width: auto;
}
.dsgvo_text{
	font-size: 0.875rem;
	text-transform: none;
}
.form-group.text{
	align-items: flex-start;
}
.zitat_wrap{
	width: 60%;
	margin: 20px auto;
}
p.zitat{
	font-family: var(--font-subline);
	font-size:3rem;
	font-weight: 300;
	margin: 0px;
	font-style: italic;
}
.fa-duotone.fa-solid.fa-quote-left.quote {
	margin-left: -50px;
}
.fa-duotone.fa-solid.fa-quote-right.quote.right_text{
	margin-left: 90%;
}
.icon_counter {
	color: var(--white);
	font-size: 4.375rem;
	margin-bottom: 15px;
}
.nachhaltig_data, .nachhaltig_data span {
	color: var(--white);
	font-weight: 600;
	font-size: 1.875rem;
}
.nachhaltig_head {
	font-weight: 600;
	font-size: 1.375rem;
	line-height: 110%;
}


@keyframes swing {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(10deg);
    }
    50% {
        transform: rotateY(-10deg);
    }
    75% {
        transform: rotateY(5deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}


@media(min-width:2000px){
	.banner_pic.banner4k{
	  display: block;
	}
	.banner_pic.bannerhd{
	  display: none;
	  width: auto;
	  height: 100%;
	  justify-content: right;
	  align-items: right;
	}
	.banner_pic.banner_mobile{
	  display: none;
	  width: auto;
	  height: 100%;
	  justify-content: right;
	  align-items: right;
	}
}
@media(max-width:1500px){
}
@media(max-width:1400px){
	#leistungen .flex_wrap{
		justify-content: center;
	}
	#leistungen .col5{
		width: 30%;
		margin: 0px 1% 45px 1%;
	}
	.col3 {
	  width: 49%;
	  margin-bottom: 15px;
	}
}

@media(max-width:1200px){
	.to-content{
		display: none;
	}
	h1, .head1{
		font-size: 2.8rem;
		width: 100%;
	}
	h2, .head2{
		font-size: 2rem;
		margin-bottom: 20px;
	}
	h3, .head3 {
		font-size: 1.6rem;
		margin-bottom: 10px;
	}
	h4, .head4{
		font-size: 1.3rem;
		margin-bottom: 5px;
	}
	p{
		font-size: 1.2rem;
		margin-bottom: 5px;
	}
	p.zitat{
	font-family: var(--font-subline);
	font-size:1.7rem;
	font-weight: 300;
	margin: 0px;
	font-style: italic;
}
	.banner_pic {
    vertical-align: bottom;
		max-width: 100%;
		position: relative;
		}
	.banner_stoerer {
	  bottom: 35%;
	}
	.banner_pic.banner4k{
	  display: none;
	  width: 100%;
		height: 100%;
	  justify-content: right;
	  align-items: right;
	}
	.banner_pic.bannerhd{
	  display: none;
	  width: auto;
		height: 100%;
	  justify-content: right;
	  align-items: right;
		object-fit: cover;
	}
	.banner_pic.banner_mobile{
	  display: block;
	  width: 100%;
	
		position: absolute;
	  justify-content: right;
	  align-items: right;
		object-fit: cover;
		bottom: 0;
	}
	button a {
	  padding: 18px;
	  font-size: 1.2rem;
		margin-right: 0.2rem;
	}
	.content{
		padding-bottom: 80px;
		padding-top: 80px;
	}
	content_headlinecontent{
		padding-top: 80px;
	}
	.col2{
		width: 100%;
	}
	.col4{
		width: 50%;
	}
	.col5{
		width: 33.33%;
	}
	.inner_wrap{
		padding: 15px;
	}
	.col2 {
	  margin-bottom: 20px;
	}
	.tab h4 {
	  font-size: 1.3rem;
	}
	.mob_start{
		display:none;
	}
	#banner_start{
	  height: 70vh;
	}
	.banner_stoerer{
	  bottom: 15rem;
	  margin-right: 2rem;
	  right: 0;
	}
	.swiper {
	  width: auto;
	  height: 100%;
	  justify-content: right;
	  align-items: right;
}
	.text_right {
	  text-align: right;
	}	
}
@media(max-width:1024px){
	ul.none.footer_nav_bar li {
	  width: 50%;
	}
	#leistungen .col5 {
	  width: 46%;
	}
	.col2{
		width:100%;
	}
	.kontaktformular {
	  width: 80%;
	}
	.tab .col3 {
	  width: 46%;
	  margin: 1%;
	}
	.tab {
	  justify-content: center;
	}
	.collaps_content {
	  padding: 40px 40px 40px 40px;
	}

	/*Kalender*/
	.fc-toolbar {
	  font-size: 1.1rem;
	}
	#forcal {
	  width: 90%;
	  margin: 0px auto 80px auto;
	}
	.info_mitarbeiter {
	  padding: 10px;
	  min-height: 190px;
	}
}
@media(max-width:756px){
	.flex_wrap{
		justify-content: center;
	}
	.col3, .col30, .col35, .col65, .col70{
		width: 100%;
	}
	.col5{
		width: 50%;
	}
	#banner_start{
	  height: 80vh;
	}
	.banner_pic.banner4k{
	  display: none;
	  width: auto;
	  height: 100%;
	  justify-content: right;
	  align-items: right;
	}
	.banner_pic.bannerhd{
	  display: none;
	  width: auto;
	  height: 100%;
	  justify-content: right;
	  align-items: right;
		object-fit: cover;
	}
	.banner_pic.banner_mobile{
	  display: block;
	  width: auto;
	  height: 100%;
	  justify-content: right;
	  align-items: right;
		object-fit: cover;
	}

	.inner_wrap{
		padding: 15px;
	}
	ul.none.footer_nav_bar li {
	  margin: 5px 10px;
	  width: 100%;
	  text-align: center;
	}
	/* Kalender*/
	.fc-toolbar {
	  flex-wrap: wrap;
	  text-align: center;
	}
	.fc-left, .fc-center, .fc-right {
	  width: 100%;
	}
	.fc-center {
	  margin: 25px 0px;
	}

}
@media(max-width:700px){
	.tab .col3 {
	  width: 100%;
	  margin: 2% 0%;
	}
	.tab h4 {
	  font-size: 1.6rem;
	}
	/* Kontakt*/
	input, select {
	  width: 100%;
	  margin: 0px 0px 20px 0px;
	}
	label {
	  width: 100%;
	}	
	/*Anmeldung*/
	#anmeldung input, #anmeldung .form-control {
	  width: 100%;
	}
	#anmeldung .control-label {
	  width: 100%;
	}
	#anmeldung h4 {
	  margin: 15px 0px;
	}
	hr {
	  margin: 20px 0px 60px;
	}
	.col50{
		width:100%;
		position: relative;
	}
	.black {
	  background-color: rgba(0,0,0,0.0);
	  height: 0;
	  width: 0;
	  position: relative;
	  margin-bottom: 15px;
	}
}
@media(max-width:656px){
	.logo_content {
	  max-width: 120px;
	}
	#leistungen .col5 {
	  	width: 90%;
		margin: 0px 1% 65px 1%;
	}
	i.leistung_icon {
	  min-width: 30%;
	}
	.swiper {
	  width: auto;
	  height: 100%;
	  justify-content: right;
	  align-items: right;
}
	.footer_mobil{
		display: block;
	}
	.wrapper {
	  width: 86%;
	}
	h1, .head1{
		font-size: 2rem;
		width: 100%;
	}
	h2, .head2{
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
	h3, .head3 {
		font-size: 1.3rem;
		margin-bottom: 10px;
	}
	h4, .head4{
		font-size: 1.2rem;
		margin-bottom: 5px;
	}
	h5, .head5{
		font-size: 1rem;
		margin-bottom: 0px;
	}
	h6, .head6{
		font-size: 0.8rem;
	}
	.collaps_content {
	  padding: 20px;
	}
	button {
	  margin-bottom: 20px;
	}
	strong, b {
	  font-weight: 600;
	}
	.tabcontent ul.uebersicht li {
	  font-size: 1rem;
	}
	.tabcontent {
	  padding: 0px;
	}
	#banner_start{
	  height: 75vh;
	}
	.banner_stoerer{
	  bottom: 10rem;
	  margin-right: 2rem;
	  right: 0;
	}
	ul.regular li {
	  font-size: 1rem !important;
	}
	p, ul, li, ol, input, textarea, div, select, option, span {
	  font-size: 1rem;
	}
	#sidenav {
		display: block !important;
	}
	#sidenav a {
	  position: absolute;
	  right: -10px;
	  padding: 10px 0px 10px 20px;
	  min-width: 180px;
	  text-align: left;
	}
	#sidenav a.anmeldung {
	  bottom: 20%;
	}
	#sidenav a.termine {
	  bottom: 35%;
	}
	#sidenav a i {
	  font-size: 1.25rem;
	  margin-right: 5px;
	}
	.banner_stoerer {
	  display: block;
	}	
 .red_box + #sidenav a.anmeldung {
	   bottom: 37%;
    }
    .red_box + #sidenav a.termine {
	  bottom: 47%;
	}
}
@media(max-width:556px){
	.col3, .col4, .col5{
		width: 100%;
	}
	.col2{
		width: 100%;
	}
	.info_mitarbeiter {
	  padding: 20px;
	  min-height: auto;
	}
   .red_box p, .red_box span {
     font-size: 1rem;
   }
    .wrapper.kalender {
	   width: 100%;
	}
	.red_box + #sidenav a.anmeldung {
	   bottom: 45%;
    }
}

@media(max-width:456px){
	.tab h4 {
	  font-size: 1.25rem;
	}
    .red_box + #sidenav a.termine {
	  bottom: 55%;
	}	
	#sidenav a.termine {
	  bottom: 43%;
	}
	.footer_nav_bar {
	  padding: 10px;
	}
}
p.zitat{
	font-family: var(--font-subline);
	font-size:2rem;
	font-weight: 300;
	margin: 0px;
	font-style: italic;
}
@media(max-width:356px){

}
@media(max-width:300px){
	#sidenav {
		display: none !important;
	}
}



