
@font-face {
  font-family: 'SourceSans';
  src: url('../fonts/SourceSans3-VariableFont_wght.ttf')
  format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Playfair';
  src: url('../fonts/PlayfairDisplay-VariableFont_wght.ttf')
  format('truetype');
  font-display: swap;
}


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #000000;
  --secondary-color:              #00407D;
  --headline-color:               #1E3472;
  --blue-color:                   #2192D6;
  --gold-color:                   #CEB565;
  --section-bg-color:             #f0f8ff;
  --site-footer-bg-color:         #ffffff;
  --custom-btn-bg-color:          #597081;
  --custom-btn-bg-hover-color:    #5bc1ac;
  --dark-color:                   #000000;
  --p-color:                      #000000;
  --border-color:                 #e9eaeb;
  --banner-color:                 #F6F6F6;
  --siteheader-p-color:           #181715;
  --bg-color-green:               #A1C18F;

  --body-font-family:             'SourceSans', sans-serif;
  --sec-font-family:              'Playfair', sans-serif;

  --h1-font-size:                 36px;
  --h2-font-size:                 34px;
  --h3-font-size:                 32px;
  --h4-font-size:                 26px;
  --h5-font-size:                 24px;
  --h6-font-size:                 18px;
  --h7-font-size:                 20px;
  --h8-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                17px;
  --copyright-font-size:          14px;
  --menu-font-size:               16px;
  --ausz-font-size:               15px;
  --siteheader-font-size:         13px;
  --menu-mobile-font-size:        12px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            250;
  --font-weight-regular:          280;
  --font-weight-normal:           300;
  --font-weight-semibold:         480;
  --font-weight-bold:             500;
  --font-weight-dbold:            520;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-light);
  letter-spacing: 3px;
  color: var(--headline-color);
}
h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 1px;
  margin-bottom: 25px;
}
h2 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
h3 {
  font-size: var(--h3-font-size);
  margin-bottom: 20px;
}

h4 {
  font-weight: var(--font-weight-bold);
  color: var(--headline-color);
  font-size: var(--p-font-size);
  font-family: var(--body-font-family);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0;
  margin-top: 30px;
/*  font-size: var(--h4-font-size);
  letter-spacing: 1px; */
}
.infoboxbereich h4 {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-light);
    letter-spacing: 3px;
    color: var(--dark-color);
    margin-top: 0;
}
h5 {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
}
h6 {
  font-size: var(--h6-font-size);
}
p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}
ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}
a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}
a {
  color: var(--p-color);
  text-decoration: none;
}
p a {
  color: var(--p-color);
  text-decoration: underline;
}
p a:hover {
  color: var(--headline-color);
  text-decoration: underline;
}
footer p a {
  text-decoration: none;
}
a:hover {
  color: var(--primary-color);
}
b,
strong {
  font-weight: var(--font-weight-bold);
}
section img {
  max-width: 100%;
  height:auto;
}
section.hero-section img {
  width: 100%;
  max-width: 100%;
  height:auto;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 60px;
  padding-bottom: 20px;
}
.startseite .section-padding {
  padding-top: 100px;
  padding-bottom: 50px;
}
.startseite .titel-section.section-padding {
  padding-top: 100px;
  padding-bottom: 0;
}
.leistungen .section-padding {
  padding-top: 25px;
  padding-bottom: 50px;
}
.leistungen.jobs .section-padding {
  padding-top: 65px;
  padding-bottom: 50px;
}
.section-bg {
  background-color: var(--section-bg-color);
}
.section-overlay {
/*  background: rgba(0, 0, 0, 0.35); */
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.section-overlay + .container {
  position: relative;
}
.container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.bg-green {
  background: var(--bg-color-green);
  background-image: url("../Images/Umwelt_Bild.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.bg-green h2 {
  color: var(--white-color);
}

/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
.custom-block-wrap:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}
.custom-block-body {
  padding: 30px;
}
.custom-block-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-block .custom-btn {
  border-radius: 0;
  display: block;
}

/*---------------------------------------
  PROGRESS BAR               
-----------------------------------------*/
.progress {
  background: var(--border-color);
  height: 5px;
}
.progress-bar {
  background: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM LIST               
-----------------------------------------*/
.custom-list {
  margin-bottom: 0;
  padding-left: 0;
}
.custom-list-item {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM TEXT BOX               
-----------------------------------------*/
.custom-text-box {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 24px;
  padding: 40px;
}
.custom-text-box-image {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-text-box-icon {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  line-height: 30px;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--secondary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 25px;
}
.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: var(--custom-btn-bg-color);
  margin-top: 8px;
  padding: 12px 25px;
}
.custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--primary-color);
}
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: var(--white-color);
  z-index: 9;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 101;
  box-shadow: 2px 2px 10px #ccc;
}
.navbar-brand {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold);
}
.navbar-brand span {
  display: inline-block;
  vertical-align: middle;
}
.navbar-brand small {
  color: var(--secondary-color);
  display: block;
  font-size: 10px;
  line-height: normal;
  text-transform: uppercase;
}
.logo {
  width: 90%;
  height: auto;
  padding: 15px 0;
}
.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 0 40px 0 10px;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: var(--font-weight-light);
  letter-spacing: 1px;
  text-underline-offset: 0.25em;
}
.navbar-nav .nav-link {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}
.startseite .navbar-nav .nav-item:first-of-type a.dropdown-toggle,
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item.active,
.navbar-nav .nav-item.current .nav-link,
.navbar-nav .nav-link.current,
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--primary-color);
  text-decoration: underline;
}
.startseite .navbar-nav .nav-item:first-of-type ul li a {
  text-decoration: none;
}
.dropdown-menu {
  background: transparent;
  border: 0;
  max-width: 80px;
  padding: 0;
  margin-top: 50px;
}
.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-light);
  position: relative;
  padding: 10px;
}
.dropdown-menu li:first-of-type {
  margin-top: 30px;
}
.dropdown-menu li {
  background: var(--white-color);
  margin-bottom: 0px;
  background-color: #fdfdfd;
  border-bottom: 1px solid #eeeeee;
  box-shadow: 1px 1px 3px #eeeeee;
}
.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}
.dropdown-toggle::after {
  content: "";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.language {
  display:block;
}
.language ul {
  list-style-type: none;
  float:right;
  margin: 0 15px 0 0;
}
.language ul li {
  float:left;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid var(--dark-color);
  padding: 4px 7px;
  margin: 0 7px;
  font-size: var(--menu-font-size);

}
.language ul li.current {
  background-color: var(--dark-color);
  color: var(--white-color);
}
.language ul li.current a {
  color: var(--white-color);
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--banner-color);
  padding-top: 25px;
  padding-bottom: 10px;
}

.site-header .neos-nodetypes-text {
  padding: 10px 15px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--siteheader-p-color);
  font-size: var(--siteheader-font-size);
  line-height: 1.35em;
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}
.site-header .container {
  max-width: 100%;
}
}

/*---------------------------------------
  HERO & HERO SLIDE         
-----------------------------------------*/
.hero-section-full-height {
  height: 66.666666%;
  min-height: 66.666666%;
  position: relative;
}
.hero-section-full-height.startseite {
  height: 680px;
  min-height: 680px;
  position: relative;
  overflow: hidden;
}

.carousel:hover .carousel-control-next-icon,
.carousel:hover .carousel-control-prev-icon {
  opacity: 1;
}

#hero-slide .carousel-item {
  height: 680px;
  min-height: 680px;
}

#hero-slide .carousel-caption {
  background: var(--white-color);
  clip-path: polygon(100% 100%, 100% 150px, 0 100%);
  color: var(--secondary-color);
  top: 1px;
  bottom: -1px;
  right: 0;
  left: auto;
  text-align: right;
  min-width: 680px;
  min-height: 680px;
  padding: 100px 100px 50px 100px;
}

.carousel-image {
  display: block;
  width: 100%;
  min-height: 680px;
}

#hero-slide .carousel-indicators-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

#hero-slide .carousel-indicators {
  margin-right: 0;
  margin-left: 22px;
  justify-content: inherit;
}

.carousel-control-next, 
.carousel-control-prev {
  opacity: 1;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  background-size: 60% 60%;
  width: 60px;
  height: 60px;
  opacity: 0;
  transition: all 0.5s;
}

.carousel-control-next-icon:hover, 
.carousel-control-prev-icon:hover {
  background-color: var(--primary-color);
}
.hero-section .slide figure img {
  width: 100%;
  height: auto;
}


/*---------------------------------------
  FEATURE BLOCK              
-----------------------------------------*/
.featured-block {
  text-align: center;
  transition: all 0.5s ease;
  min-height: 256px;
  padding: 15px;
}

.featured-block:hover {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.featured-block:hover .featured-block-image {
  transform: scale(0.75);
}

.featured-block-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
}

.featured-block:hover .featured-block-text {
  margin-top: 0;
}

.featured-block-text {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  margin-top: 20px;
  transition: all 0.5s;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#section_3.section-padding,
.about-section.section-padding {
  padding-top: 0;
  padding-bottom: 50px;
}
.leistungen .about-section.section-padding {
  padding-top: 0;
  padding-bottom: 00px;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 350px;
  height: 400px;
  object-fit: cover;
}

.custom-text-block {
  padding: 60px 40px;
}

/*---------------------------------------
  COUNTER NUMBERS              
-----------------------------------------*/
.counter-thumb {
  margin: 20px;
  margin-bottom: 0;
}

.counter-number,
.counter-text {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--primary-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}


/*---------------------------------------
  VOLUNTEER              
-----------------------------------------*/
.volunteer-section {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.volunteer-section::after {
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 350px;
  height: 350px;
}

.volunteer-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.volunteer-image {
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.volunteer-section .custom-block-body {
  max-width: 440px;
  margin: 0 auto;
}

.volunteer-section .custom-block-body p {
  line-height: 1.7;
}

/*---------------------------------------
  NEWS         
-----------------------------------------*/
.news-detail-header-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.news-block-top {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.news-block-two-col-image-wrap {
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  width: 150px;
  margin-right: 20px;
}

.news-category-block {
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 10px 20px;
}

.news-category-block .category-block-link {
  color: var(--white-color);
  margin-right: 10px;
}

.news-block-info {
  padding-top: 10px;
  padding-bottom: 10px;
}

.news-block-title-link {
  color: var(--dark-color);
}

.news-detail-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 90px 50px 50px 50px;
  text-align: center;
}

blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}

.author-comment-link {
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
}

.search-form {
  margin-top: 20px;
}

.category-block,
.subscribe-form {
  margin-top: 40px;
  margin-bottom: 40px;
}

.category-block-link {
  font-size: var(--copyright-font-size);
  margin-top: 5px;
  margin-bottom: 5px;
}

.category-block-link:hover {
  color: var(--primary-color);
}

.badge {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding-bottom: 2px;
}

.tags-block-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  font-size: var(--copyright-font-size);
  line-height: normal;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 8px 15px;
}

.tags-block-link:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 200px;
  height: 200px;
}

.cta-section::after {
  content: "";
  border: 20px solid var(--custom-btn-bg-color);
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  right: 0;
  left: 0;
  margin: auto;
  width: 150px;
  height: 150px;
}


/*---------------------------------------
  TESTIMONIAL CAROUSEL              
-----------------------------------------*/
.testimonial-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonial-section::before {
  content: "";
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 250px;
  height: 250px;
}

.testimonial-section::after {
  content: "";
  background: var(--custom-btn-bg-color);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 350px;
  height: 350px;
}

#testimonial-carousel .carousel-caption {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
}

#testimonial-carousel .carousel-title {
  background: var(--section-bg-color);
  line-height: normal;
  margin-bottom: 30px;
}

#testimonial-carousel .carousel-title::before {
  content: open-quote;
  color: var(--p-color);
  font-size: var(--h1-font-size);
  position: relative;
  top: 10px;
  right: 10px;
}

#testimonial-carousel .carousel-title::after {
  content: close-quote;
  color: var(--p-color);
  font-size: var(--h1-font-size);
  position: relative;
  top: 10px;
  left: 10px;
}

#testimonial-carousel .carousel-title {
  quotes: "“" "”" "‘" "’";
}

#testimonial-carousel .carousel-name {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
}

#testimonial-carousel .carousel-name::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--primary-color);
}

.carousel-name-title {
  font-weight: var(--font-weight-semibold);
}

#testimonial-carousel .carousel-indicators {
  position: relative;
  top: 150px;
  bottom: auto;
  margin-top: 50px;
  margin-bottom: 150px;
}

#testimonial-carousel .carousel-indicators li {
  text-indent: inherit;
  background: transparent;
  margin: 0 10px; 
}

#testimonial-carousel .carousel-indicators li,
#testimonial-carousel .carousel-indicators li::before {
  width: 45px;
  height: 45px; 
}

#testimonial-carousel .carousel-indicators .avatar-image {
  width: 45px;
  height: 45px; 
}

#testimonial-carousel .carousel-indicators .active,
#testimonial-carousel .carousel-indicators .active .avatar-image {
  background: transparent;
  width: 50px; 
  height: 50px;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.contact-info-wrap {
  padding-top: 40px;
}

.contact-image-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}

/*===============================
Columns
=================================*/

.neos-nodetypes-headline {
  clear:both;
}

.neos-nodetypes-headline,
.neos-nodetypes-text,
.neos-nodetypes-textwithimage,
.neos-nodetypes-image,
.neos-nodetypes-html-html {
  padding-left: 8px;
  padding-right: 15px;
  clear:both;
}
.tn-slider .neos-nodetypes-headline,
.tn-slider .neos-nodetypes-text,
.tn-slider .neos-nodetypes-textwithimage,
.tn-slider .neos-nodetypes-image,
.tn-slider .neos-nodetypes-html-html {
  padding-left: 0;
  padding-right: 0;
  clear:both;
}
.hero-section-full-height .neos-nodetypes-textwithimage,
.hero-section-full-height .neos-nodetypes-image,
.hero-section-full-height .neos-nodetypes-html-html {
  padding-left: 0;
  padding-right: 0;
}

.column .neos-nodetypes-headline,
.column .neos-nodetypes-text,
.column .neos-nodetypes-textwithimage,
.column .neos-nodetypes-image,
.column .neos-nodetypes-html-html,
.container-fluid-kamn .neos-nodetypes-image,
.container-fluid-kamn .neos-nodetypes-textwithimage {
  padding-left: 0;
  padding-right: 0;
}
.site-header .neos-nodetypes-text {
  padding: 0px 15px;
}
.column img{width:100%;height:auto;}
.columns-33-33-33 .column{width:33.3333333333%;float:left;}
.background-dark .columns-33-33-33,
.teaser .columns-33-33-33{display:-webkit-flex;display:-ms-flex;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}
.background-dark .columns-33-33-33 .column,
.teaser .columns-33-33-33 .column{border:1px solid rgba(255, 255, 255, 0.33);width:30%;float:left;margin:1.5%;padding:10px 20px;}
.columns-33-33-33 .column{padding:0 20px 0 0;}
.columns-33-33-33 .column .neos-nodetypes-image,
.columns-33-33-33 .column .neos-nodetypes-text,
.columns-33-33-33 .column .neos-nodetypes-textwithimage,
.columns-33-33-33 .column .neos-nodetypes-headline{}
.columns-50-50{clear:both;max-width:100%;}
.columns-50-50 .column {width:50%;float:left;}
.columns-50-50 .column:first-of-type {padding:15px 15px 15px 0;}
.columns-50-50 .column:last-of-type {padding:15px 0 15px 15px}
.columns-50-50 .neos-nodetypes-textwithimage figure,
.columns-50-50 .neos-nodetypes-textwithimage div{float:left;width:45%;margin-right:5%;}
.columns-33-33-33{position:relative;float:left;width:100%;max-width:100%;}
.columns-33-33-33 .column{position:relative;float:left;min-height:1px;width:33.33333333%;}
.columns-33-33-33 .columns-50-50 .column{position:relative;float:left;min-height:1px;width:50.0%;}
.columns-66-33,
.columns-33-66{clear:both;max-width:100%;}
.columns-66-33 .column:first-of-type{position:relative;float:left;min-height:1px;padding-right:15px;width:66.66666666%;}
.columns-66-33 .column:last-of-type{position:relative;float:left;min-height:1px;padding:1px 15px 1px 15px;width:33.33333333%;}
.columns-33-66 .column:first-of-type{position:relative;float:left;min-height:1px;padding:1px 15px 1px 0;width:33.33333333%;}
.columns-33-66 .column:last-of-type{position:relative;float:left;min-height:1px;padding:1px 0 1px 15px;width:66.66666666%;}

.columns-25-25-25-25 .column{position:relative;float:left;min-height:1px;padding:1px 10px;width:25%;}
.columns-25-25-25-25 .column:first-of-type {padding:1px 10px 1px 0;}
.columns-25-25-25-25 .column:last-of-type {padding:1px 0 1px 10px;}

.columns-50-50 .neos-nodetypes-image > figure,
.columns-66-33 .neos-nodetypes-image > figure{margin-bottom:20px;}
.columns-50-50 .columns-50-50 .neos-nodetypes-image > figure{margin-bottom:-20px;}
.columns-33-33-33 .neos-nodetypes-textwithimage > figure,
.columns-33-33-33 .neos-nodetypes-textwithimage > div{width:50%;float:left;}
.columns-33-33-33 .referenzen > figure,
.columns-33-33-33 .referenzen > div{width:100%;float:left;}
.columns-33-33-33 .neos-nodetypes-textwithimage > figure{position:relative;}
.columns-33-33-33 .referenzen > figure{position:relative;}
.columns-33-33-33 .neos-nodetypes-textwithimage > div{width:50%;padding:15px;}
.columns-33-33-33 .neos-nodetypes-textwithimage > div.content,.columns-33-33-33 .neos-nodetypes-textwithimage > div.thumb {width:100%;padding:15px;}
.columns-33-33-33 .referenzen > div{position:absolute;bottom:40px;left:0px;width:100%;background-color:rgba(255,255,255,0.8);padding:15px;}
.columns-33-33-33 .neos-nodetypes-textwithimage > figure img{width:100%;height:auto;}
.columns-33-33-33 .referenzen > figure img{width:100%;height:auto;}
.columns-33-33-33 .neos-nodetypes-text{clear:both;}
.columns-25-50-25{}
.columns-25-50-25 .column{width:50%;float:left;}
.columns-25-50-25 .column:first-of-type,
.columns-25-50-25 .column:last-of-type{width:25%;float:left;}

.columns-25-25-50 .column {width:25%;float:left;}
.columns-25-25-50 .column:first-of-type{width:25%;float:left;}
.columns-25-25-50 .column:last-of-type{width:50%;float:left;}

.columns-25-25-50 .column img {
  max-height: 50px;
  width: auto;
}
header .columns-25-25-50 .column {width:20%;float:left;}
header .columns-25-25-50 .column:first-of-type{width:25%;float:left;}
header .columns-25-25-50 .column:last-of-type{width:55%;float:left;}
header .columns-25-25-50 .column figure {
  text-align: center;
}
header .columns-25-25-50 .column img {
  max-height: 50px;
  max-width: 100%;
  width: auto;
}
@media all and (max-width:640px) {
  .columns-33-33-33 .column {
    width: 50%;
  }

  .columns-33-33-33 .column {
    width: 100%;
  }

  .columns-50-50 .column, .neos-nodetypes-twocolumn {
    width: 100%;
    float: left;
  }

  .columns-66-33 .column:first-of-type {
    width: 100%;
    padding: 1px 15px 1px 0;
  }

  .columns-66-33 .column:last-of-type {
    width: 100%;
    padding: 1px 0 1px 15px;
  }

  .columns-66-33 .column figure {
    margin: 20px 0;
  }

  .columns-33-66 .column:first-of-type {
    width: 100%;
    padding: 1px 15px 1px 0;
  }

  .columns-33-66 .column:last-of-type {
    width: 100%;
    padding: 1px 0 1px 15px;
  }

  .columns-66-33 .columns-33-33-33 .column {
    width: 33.3333333%;
    padding: 1px 10px;
  }

  .columns-66-33 .columns-33-33-33 .column:first-of-type {
    width: 33.3333333%;
    padding: 1px 10px;
  }

  .columns-66-33 .columns-33-33-33 .column:last-of-type {
    width: 33.3333333%;
    padding: 1px 10px;
  }

  .columns-33-66 .columns-33-33-33 .column:first-of-type {
    width: 33.3333333%;
    padding: 1px 10px;
  }

  .columns-33-66 .columns-33-33-33 .column:last-of-type {
    width: 33.3333333%;
    padding: 1px 10px;
  }

  .columns-25-25-25-25 .column {
    width: 50%;
  }
/*
  .columns-33-33-33 .column div,
  .contact .columns-33-33-33 .column ul {
    padding: 10px;
  } */
  .columns-25-25-50 .column {width:50%;float:left;}
  .columns-25-25-50 .column:first-of-type{width:50%;float:left;}
  .columns-25-25-50 .column:last-of-type{width:100%;float:left;}
}

@media all and (max-width:480px) {
  .columns-33-33-33 .column {
    width: 100%;
  }

  header .columns-25-25-50 .column {width:50%;float:left;}
  header .columns-25-25-50 .column:first-of-type{width:50%;float:left;}
  header .columns-25-25-50 .column:last-of-type{width:100%;float:left;}

  .site-header .neos-nodetypes-text { padding: 0 0; }

  .columns-50-50 .column,
  .neos-nodetypes-twocolumn {
    width: 100%;
    float: left;
  }

  .columns-66-33 .column:first-of-type {
    width: 100%;
    padding: 15px 0;
  }

  .columns-66-33 .column:last-of-type {
    width: 100%;
    padding: 15px 15px;
  }

  .columns-33-66 .column:first-of-type {
    width: 100%;
    padding: 15px 15px;
  }

  .columns-33-66 .column:last-of-type {
    width: 100%;
    padding: 15px 15px;
  }

  .columns-66-33 .columns-33-33-33 .column:first-of-type {
    width: 100%;
  }

  .columns-66-33 .columns-33-33-33 .column:last-of-type {
    width: 100%;
  }

  .columns-33-66 .columns-33-33-33 .column:first-of-type {
    width: 100%;
  }

  .columns-33-66 .columns-33-33-33 .column:last-of-type {
    width: 100%;
  }
  .columns-25-25-25-25 .column {
    width: 100%;
  }
/*
  .columns-33-33-33 .column div,
  .contact .columns-33-33-33 .column ul {
    padding: 0 0px;
  } */
}

/*********************************************************************************/
/* Accordion                                                                     */
/*********************************************************************************/

/*
#features .accordion-group i{background:none repeat scroll 0 0 #fff;border: none;border-radius:0px;box-shadow:box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0) inset;color:#000;display:inline-block;font-size:1.05em;height:10px;line-height:10px;text-align:left;width:100%;}
#features .accordion-grouph2{font-size:1.1em;font-weight:700;margin:1.25em 0;line-height:1.75em;}
*/
.accordionFrame {
  position: relative;
  clear:both;
  margin: 0px 20px 20px 0px;
}
.transition, p, ul li i:before, ul li i:after {
  transition: all 0.25s ease-in-out;
}

.accordionFrame h1, .accordionFrame h2 {
  color: #222222;
  margin: 20px 5px;
}

.accordionFrame h1 {
  /* text-transform: uppercase; */
  font-size: 1em;
  line-height: 1.25em;
  /* letter-spacing: 2px; */
  font-weight: 100;
  cursor: pointer;
}

.accordionFrame h2 {
  font-size: 1.05em;
  line-height: 1.5em;
  font-weight: 100;
  display: block;
  color: #444444;
  margin: 0;
  cursor: pointer;
}
.accordionFrame p {
  clear:both;
  /* color: rgba(48, 69, 92, 0.8);
   font-size: 0.875em;
   line-height: 1.625em;
   letter-spacing: 1px;       */
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 5px;
  z-index: 2;
}
.accordion-heading i {
  font-weight: 400;
  max-width: 10%;
}
.accordion-headline {
  width:90%;
  float:left;
  letter-spacing: 2px;
}
.accordionFrame .accordion-heading a {
  color: #444;
  text-decoration: none;
  font-size: 1.05em;
  display:block;
  font-weight: 400;
}
.accordionFrame img {
  max-width: 100%;
  height: auto;
  padding: 5px;
}
.accordionFrame .slidercarousel {
  clear:both;
}
.accordionFrame .carousel-inner img {
  padding: 0;
}
.accordionFrame em {
  font-style: italic;
  font-size: 1.0em;
}
.accordion-inner .container {
  padding-left: 0;
}

.accordion-inner .neos-nodetypes-text,
.accordion-inner .neos-nodetypes-textwithimage,
.accordion-inner .neos-nodetypes-headline {
  padding: 5px 5px;
}
.accordion-inner .teaserpic {
  height: auto;
  display: table-cell;
  min-height: 1px;
  padding-bottom: 15px;
}

.accordion-group {
  padding: 0;
  margin: 0 0 10px
}

.neos-backend .accordion-group .panel {
  min-height: 500px;
  height: auto;
  width: 100%;
  float:left;
  margin-right: 2%;
}
.accordion-group:last-of-type {
  margin-bottom:25px;
}
.content.starts .neos-nodetypes-contentreferences .accordion-group .accordion-heading {
  display:none;
}
.content.starts .neos-nodetypes-contentreferences .accordion-group .collapse {
  display: block;
}

.neos-backend .accordion-group {
  width: 100%;
  float:left;
  margin-right: 0%;
}

.accordion {
  color: #000;
  cursor: pointer;
  padding: 10px 15px 10px 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
}
.accordion-heading {
  font-weight: var(--font-weight-light);
  font-size: var(--h4-font-size);
  color: var(--secondary-color);
  background-color: transparent;
  letter-spacing: 1px;
  padding: 10px 0 0;
}
.accordion.teaser {
  padding: 0 0 20px 0;
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

button.accordion {
  margin-bottom: 0;
}
.accordion.active i {
  transform:rotate(91deg)
}
.accordion:hover {

}
.panel {
  padding: 0 10px 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-bottom: 0;
  border: 0px solid transparent;
}
.panel .accordion-inner {
  float:left;
  height: auto;
  width: 100%;
  padding: 0 10px 0 0;
}
.panel .accordion-inner .carousel {margin: 20px 10px 0 0;}

.neos-backend .accordion-group .panel {
  min-height: 100px;
}

.accordionFrame .accordion-inner .neos-nodetypes-html-html a {
  max-width: 70px;
}
.accordionFrame .accordion-inner .neos-nodetypes-html-html a img {
  max-width: 60px;
  float:left;
}
.leistungen .accordion.teaser em {
  color: var(--blue-color);
  font-weight: var(--font-weight-semibold);
  font-style: normal;
  margin-left: 5px;
}
.leistungen .accordion.teaser em:hover {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
}

@media screen and (max-width:1020px) {
  .accordion-group {
    width: 100%;
    float:left;
  }
}

@media screen and (max-width:680px) {
  .accordion-group {
    width: 100%;
    float:left;
    margin-right: 0%;
  }
  .panel {
    padding: 0 0;
  }
  .accordionFrame {
    position: relative;
    clear:both;
    margin: 0 0 20px 0;
  }
  .accordionFrame .asppic {
    padding: 10px 20px 20px 20px;
  }
  .accordion-group:last-of-type {
    margin-bottom:5px;
  }
  .accordion-inner .neos-nodetypes-text,
  .accordion-inner .neos-nodetypes-textwithimage,
  .accordion-inner .neos-nodetypes-headline {
    padding: 5px 0;
  }
}
.accordion-group:after {
  content:".";
  display:block;
  height:0;
  font-size:0;
  clear:both;
  visibility:hidden;
}

.accordion-toggle {
  /*padding-left: 0.5em; */
}
.accordionFrame .accordion-toggle i {
  margin-right: 1em;
  font-size: 85%;
}
.accordionFrame .toggle-open i {
  transform: rotate(90deg);
}
/*
.neos-backend .accordion-group .panel {
  min-height: 500px;
}*/


/*===============================
CE - Content Elemente
=================================*/

p:last-of-type {
  margin-bottom: 0;
}

.tn-slider img {
  width: 100%;
  height: auto;
}

.section-padding-info {
  position:relative;
}
.section-padding-info .row {
  padding-right: 0;
}
.section-padding-info .container {
  position:relative;
}
.leistungen .section-padding .columns-66-33{
  position:relative;
}
/*
.leistungen .section-padding .columns-66-33 .column.neos-contentcollection:last-of-type {
  position: absolute;
  top: -180px;
  display: inline-block;
} */
.section-padding .container {
  padding-left: calc(var(--bs-gutter-x) * .35);
}
.section-padding-info .row,
.section-padding-info .row > *{
  margin-right: 0;
  padding-right: 0;
}
.leistungen {
  margin-top: -85px;
}
.leistungen h2 {
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #2192D6;
}
.leistungen.jobs h3 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.startseite .section-padding.about-section {
  padding-top: 0;
}
.startseite .section-padding.bg-green {
  padding-top: 0;
  padding-bottom: 150px;
}
#projektplanung,
#vorstufe,
#druckerei,
#buchbinderei,
#logistik{
  padding-top: 85px;
}
#inspiration {
  padding-top: 95px;
}
#nachhaltigkeit {
  padding-top: 95px;
}

.infoboxbereich {
  width: 33.333333%;
  margin-left: 66.666666%;
  position: absolute;
  right:0;
  top:-150px;
}
.startseite .infoboxbereich {
  top:20px;
  right:25px;
  opacity: .55;
  text-align: right;
  float:right;
}
.startseite .infoboxbereich div {
  float:right;
}
.infobox {
  background-color: #FF8B47;
  width: 100%;
  border-radius: 35px 0 0 0;
  border: 10px solid var(--white-color);
  display: inline-block;
  padding: 20px 20px 35px 20px;
  z-index: 99;
}
.section-padding-info .infobox {
  border-right: 0;
}
.secPic {
  margin-top: 100px;
}
.infobox:after {
  clear:both;
}
.infobox h4, .infobox h3, .infobox h2 {
  color: var(--white-color);
}
.infobox p {
  color: var(--white-color);
}
.infobox b {
  color: var(--white-color);
  font-weight: var(--font-weight-normal);
}
.infobox .neos-nodetypes-text,
.infobox .column .neos-nodetypes-text {
  padding: 10px 10px;
}
.iconText {
  width: 100%;
  clear:both;
  padding: 10px 0 20px 0;
}
.icon {
  float:left;
  min-width: 45px;
  width: 100%;
  margin: 0 0 10px 1%;
}
.icon a {
  width: 100%;
}
.icon .iPic {
  float: left;
  margin: 0 0;
  display:block;
  width: 35px;
}
.icon img {
  float:left;
  max-width: 35px;
}
.itext {
  float:left;
  /*width: 80%; */
  width: calc(100% - 50px);
  margin-left: 15px;
  color: var(--white-color);
  padding: 2px 0;
  font-size: var(--h8-font-size);
 /* font-weight: var(--font-weight-normal); */
}
.itext a {
  color: var(--white-color)
}
.itext a:hover {
  font-weight: var(--font-weight-dbold);
  transition-delay: 0s;
}
.iconPic {
  float:left;
  height: 30px;
  max-height: 30px;
  width: auto;
  margin-right: 7px;
}
.startseite .titel-section .neos-nodetypes-columnlayouts-twocolumn .column:last-of-type .iconPic {
  float:right;
}
.ansprechpartner {
  float:left;
  width: 30%;
  border: 1px solid var(--dark-color);
  padding: 15px;
  margin: 10px 2.33333% 35px 0.85%;
}
.column .ansprechpartner {
  width: 96%;
  margin: 0 30px 50px 5px;
}
.appic {}
.appic img {
  width: 100%;
  height: auto;
}
.apdaten {}
.apname {
  font-size: var(--h4-font-size);
  padding: 5px 0 0 0;
}
.apfunct {
  min-height: 24px;
}
.apkontakt {
  padding: 10px 0 0;
  font-size: var(--h6-font-size);
}
.aptelefon {
  width: 66.666666% !important;
  float:left;
  min-height: 34px;
}
.apmail {
  width: 33.333333%;
  float:right;
  text-align: right;
}
.apmail img {
  max-width: 50px;
}
.auszeichnung {
  position:relative;
  float:left;
  width: 30%;
  padding: 0;
  margin: 0 2.33333% 35px 0.85%;
}
.azpic,
.aztext {
  position:relative;
  width: 100%;
  height:100%;
}
.aztext {
  position:absolute;
  top:0;
  left:0;
  opacity:0;
  background-color: var(--white-color);
  font-size: var(--p-font-size);
  padding: 15px;
  transition: opacity 0.5s, visibility 0.5s;
  transition-delay: .25s;
  margin: 0;
  width: 100%;
  height: 100%;
 /* box-shadow: 0 3px 5px #eeeeee; */
}
.neos-backend .aztext {
  opacity:0.75;
}
.aztext:hover {
  opacity:.99;
  transition: opacity 0.3s, visibility 0.3s;
  transition-delay: .25s;
}
.aztitel {
  font-family: var(--sec-font-family);
  font-size: var(--h7-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: 28px
}
.azausz {
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: 0px;
  padding: 12px 0 8px 0;
}
/*
.azausz div::before {
  content: "\21F2";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  right: 2px;
  border: 0;
} */
.azausz ul {
  list-style-type: none;
  margin-left: -32px;
  margin-bottom: .05rem;
}
.azausz li {
  font-size: var(--ausz-font-size);
  letter-spacing: 1px;
}
.azausz ul li:before {
  content: "\2192";
  padding-right: 5px;
}
.azbeschr {
  font-weight: var(--font-weight-light);
  line-height: 1.5em;
}
.azbeschr strong {
  font-weight: var(--font-weight-semibold);
}

.inspiration {
  position:relative;
  float:left;
  width: 30%;
  padding: 0;
  margin: 0 2.25% 35px 0.65%;
  min-height: 261px;
/*  height: calc((30% / 3 * 1.15) + 25px); */
/*  height: calc((30% / 3 * 2) + 25px); */
}
.inpic,
.intext {
  position:relative;
  width: 100%;
  height:100%;
}
.inpic {}
.intext {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.intext div {
  background-color: var(--white-color);
  font-size: var(--p-font-size);
  padding: 10px 15px;
  transition: opacity 0.5s, visibility 0.5s;
  transition-delay: .25s;
  margin: 10px;
  width: calc(100% - 20px);
  position: absolute;
  bottom: 0;
}
.intext div:empty {
  visibility: hidden;
}
.neos-backend .intext {
  opacity:0.75;
}
.intext:hover {
  opacity:.99;
  transition: opacity 0.3s, visibility 0.3s;
  transition-delay: .25s;
}
.buttonPfeil {
  clear:both;
  position:relative;
  width: calc(100% - 15px);
  height: 75px;
  background-color: #E591C7;
  margin: 30px 0 25px 0;
}

.leistungen .buttonPfeil {
  margin: 0 35% 0 10px;
  width: calc(100% - 35% - 10px);
}
.ptext {
  float:left;
  width: calc(100% - 75px);
  padding: 20px 10px;
  font-size: var(--h5-font-size);
  color: var(--white-color);
  letter-spacing: 1px;
  padding-left: 90px;
  background-image: url("../Images/icon-pfeil.svg");
  background-repeat: no-repeat;
  background-position: 30px 0;
  text-transform: uppercase;
}

.ptext:focus {}

.ptext a {
  color: var(--white-color);
  font-weight: var(--font-weight-normal);
}
.ptext a:hover {
  font-weight: var(--font-weight-bold);
}
.carousel-item {
  display: block;
}
.sprung {
  visibility: hidden;
  height: 0px !important;
  position: absolute;
  margin: -100px;
}

.geschichte .zeitstrahl {
  width: 100%;
  height: auto !important;
  clear:both;
  display:inline-block;
  background-image: url("../Images/zeitstrahl.png");
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-position: center center;
  margin-top: -10px;
}
.geschichte .zeitstrahl:last-of-type {
  padding-bottom: 70px;
}
.geschichte .zeitstrahlende {
  width: 100%;
  height: 25px;
  clear:both;
  display:inline-block;
  background-image: url("../Images/zeitstrahlende.png");
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-position: center;
  margin-top: -20px;
}
.geschichte .zeitstrahl .rechts {
/*  border-right: 1px solid #CEB565; */
  width: 50%;
  float: left;
  padding-bottom: 20px;
  display:block;
  height: auto;
  min-height: 100%;
}
.geschichte .zeitstrahl .links {
  float:right;
  width: 50%;
  padding-bottom: 20px;
  display:block;
}
.geschichte .zeitstrahl:nth-child(2n) .rechts {
  border-right: 0px;
  float:right;
  padding-bottom: 20px;
  display:block;
}
.geschichte .zeitstrahl:nth-child(2n) .links {
 /* border-right: 1px solid #CEB565; */
  float:left;
  height: 100% !important;
  padding-bottom: 20px;
}


.geschichte .zeitstrahl.zweibilder .links {
  /*  border-right: 1px solid #CEB565; */
  float: right;
}
.geschichte .zweibilder.zeitstrahl:nth-child(2n) .links {
  float:left;
}
.geschichte .zweibilder.zeitstrahl:nth-child(2n) .links .zeit-pic img {
  float: right;
}
.geschichte .zeitstrahl.zweibilder .links .zeit-pic img {
  float: left;
  padding: 10px 0 10px 30px;
}

.geschichte .zeitstrahl .rechts .zeit-pic {
  padding: 10px 30px  10px 0;
  float:left;
  width: 100%;
}
.geschichte .zeitstrahl.zweibilder .rechts {
  border-right: 0px;
  float: right;
  padding-bottom: 20px;
  display: block;
}
.geschichte .zeitstrahl.zweibilder .links .zeit-pic,
.geschichte .zeitstrahl.zweibilder .rechts .zeit-pic {
  padding: 10px 30px 10px 0;
  float: left;
  width: 100%;
}
.geschichte .zweibilder.zeitstrahl:nth-child(2n) .links .zeit-pic {
  padding: 10px 30px  10px 0;
  float:right;
  width: 100%;
}
.geschichte .zeitstrahl .zeit-pic img {
  padding-top: 10px;
  max-width: 100%;
  height: auto;
  float:right;
}
.geschichte .zeitstrahl:nth-child(2n) .zeit-pic img {
  max-width: 100%;
  height: auto;
  float:left;
  padding: 10px 0  10px 30px;
}

.geschichte .zeitstrahl .links .zeit-content {
  position: relative;
  padding: 10px 30px 10px 0;
}

.geschichte .zeitstrahl .links .zeit-content h2 {
  clear:both;
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-light);
  color: var(--gold-color);
  line-height: .35em;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: var(--sec-font-family);
  padding: 0px 0 10px 30px;
}
.geschichte .zeitstrahl .links .zeit-content h2::before {
  content: "\2022";
  color: var(--gold-color);
  font-size: 90px;
  line-height: .10em;
  display: block;
  margin: 10px 0 0 -48px;
}
.geschichte .zeitstrahl:nth-child(2n) .links .zeit-content h2::before {
  display:none;
}
.geschichte .zeitstrahl:nth-child(2n) .links .zeit-content h2::after {
  content: "\2022";
  color: var(--gold-color);
  font-size: 90px;
  line-height: .10em;
  display: block;
  margin: -20px 0 0 102%;
}
.geschichte .zeitstrahl:nth-child(2n) .links .zeit-content h2 {
  padding: 25px 0 15px 30px;
}

.geschichte .zeitstrahl .links .zeit-content p {
  padding: 0 0 0 30px;
}

@media screen and (max-width: 1399px) {
  .geschichte .zeitstrahl:nth-child(2n) .links .zeit-content h2::after {
    margin: -15px 0 0 102.25%;
  }
  .inspiration {
    min-height: 231px;
  }
}
@media screen and (max-width: 1250px) {
  .ptext {
    font-size: var(--h8-font-size);
    padding: 21px 10px;
    padding-left: 90px;
  }
}
@media screen and (max-width: 1199px) {
  .geschichte .zeitstrahl:nth-child(2n) .links .zeit-content h2::after {
    margin: -15px 0 0 102.75%;
  }
  .inspiration {
    min-height: 190px;
  }
}
@media screen and (max-width: 991px) {
  .geschichte .zeitstrahl:nth-child(2n) .links .zeit-content h2::after {
    margin: -15px 0 0 104%;
  }
}
@media screen and (max-width: 979px) {
  .buttonPfeil {
    height: 60px;
  }
  .ptext {
    font-size: var(--h6-font-size);
    padding: 18px 10px;
    padding-left: 50px;
    background-position: 5px 0;
  }
}
@media screen and (max-width: 767px) {
  .buttonPfeil {
    height: 60px;
  }
  .ptext {
    font-size: var(--p-font-size);
    padding: 18px 10px;
    padding-left: 15px;
    background-position: -25px 0;
  }
  .geschichte .zeitstrahl:nth-child(2n) .links .zeit-content h2::after {
    margin: -15px 0 0 105.5%;
  }
}
@media screen and (max-width: 639px) {
  .buttonPfeil {
    height: 75px;
  }
  .ptext {
    font-size: var(--h8-font-size);
    padding: 21px 10px;
    padding-left: 80px;
    background-position: 25px 0;
  }
}
@media screen and (max-width: 580px) {
  .geschichte .zeitstrahl {
    background-position: 30px;
  }
  .geschichte .zeitstrahlende {
    background-position: 23px;
  }
  .geschichte .zeitstrahl .rechts {
    /*  border-right: 1px solid #CEB565; */
    width: 100%;
  }
  .geschichte .zeitstrahl .links {
    float:left;
    width: 100%;
  }
  .geschichte .zeitstrahl:nth-child(2n) .rechts {
    float:left;
  }
  .geschichte .zeitstrahl .rechts .zeit-pic {
    padding: 10px 30px 10px 20px;
    float:left;
    width: 100%;
  }
  .geschichte .zweibilder.zeitstrahl:nth-child(2n) .links,
  .geschichte .zeitstrahl.zweibilder .links .zeit-pic,
  .geschichte .zeitstrahl.zweibilder .rechts .zeit-pic {
    padding: 10px 30px 10px 20px;
   }
  .geschichte .zeitstrahl .links .zeit-content {
    padding: 10px 30px 10px 20px;
  }
  .geschichte .zeitstrahl .zeit-pic img {
    max-width: 100%;
    height: auto;
    float: left;
    padding: 0 0 10px 30px;
  }
  .geschichte .zeitstrahl .links .zeit-content h2::before {
    margin: 10px 0 0 -48px;
  }
  .geschichte .zeitstrahl:nth-child(2n) .links .zeit-content h2::before {
    display:block;
  }
  .geschichte .zeitstrahl:nth-child(2n) .links .zeit-content h2::after {
    display:none;
  }
  .geschichte .zeitstrahlende {
    background-size: 16px;
  }
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--site-footer-bg-color);
  padding-top: 10px;
}
.site-footer-bottom {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.site-footer-bottom a {
	color: var(--white-color);
}
.site-footer-bottom a:hover {
	color: #FF6;
}
.site-footer-link {
  color: var(--white-color);
}
.copyright-text {
  color: var(--section-bg-color);
  font-size: var(--copyright-font-size);
  margin-right: 30px;
}
.site-footer .custom-btn {
  font-size: var(--copyright-font-size);
}
.site-footer .custom-btn:hover {
  background: var(--primary-color);
}
footer.site-footer .neos-nodetypes-text p a  {
  margin: 0 0 0 30px;
}


/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  column-count: 2;
  margin: 0;
  padding: 0;
}
.footer-menu-item {
  list-style: none;
  display: block;
}
.footer-menu-link {
  font-size: var(--p-font-size);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}
.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}
.social-icon-link {
  background: var(--site-footer-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 38px;
}
.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.neos-backend .smallImage,
.hero-section .smallImage,
.slick-slide .smallImage {display:none;}

.neos-backend .leistungen .neos-nodetypes-columnlayouts-twocolumn:first-of-type .column:last-of-type {
  display: none;
}


/* VIDEO */

/*LIGHTBOX STYLE*/
.lightbox {
  display:none;
  position:fixed;
  z-index:999;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);

.lightbox-video {
  width:80%;
  padding-bottom:56%;
}

iframe {
  position: absolute;
  height: 60%;
  width: 60%;
  left: 20%;
  right: 0;
  top: 20%;
}

img {
  display:block;
  margin:0 auto;
}

.lightbox-close {
  position:absolute;
  display:block;
  top: 10px;
  right: 10px;
  color:#ffffff;
  font-size:26px;
  height: 50px;
  width: 50px;
  background: rgba(255,255,255,0.3);
  border: 3px solid #ffffff;
  border-radius: 50%;
  line-height:50px;
  text-align:center;

&:hover {
   text-decoration: none;
 }
}

.lightbox-container {
  max-width: 1024px;
  margin:100px auto 25px;
}
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1900px) {
  .hero-section-full-height.startseite {
    height: 680px;
    min-height: 680px;
    position: relative;
    overflow: hidden;
  }
}
@media screen and (max-width: 1750px) {
  .hero-section-full-height.startseite {
    height: 550px;
    min-height: 550px;
    position: relative;
    overflow: hidden;
  }
}
@media screen and (max-width: 1500px) {
  .hero-section-full-height.startseite {
    height: 500px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
  }
}
@media screen and (max-width: 1250px) {
  .hero-section-full-height.startseite {
    height: 425px;
    min-height: 425px;
    position: relative;
    overflow: hidden;
  }
}

@media screen and (min-width: 1600px) {
  .featured-block {
    min-height: inherit;
  }
  .volunteer-section::after {
    width: 450px;
    height: 450px;
  }
  .volunteer-image {
    width: 350px;
    height: 350px;
  }
}

@media screen and (max-width: 1170px) {
  #hero-slide .carousel-image {
    height: 100%;
    object-fit: cover;
  }
  .leistungen .buttonPfeil {
    margin: 30px 10% 0 10px;
    width: calc(100% - 10% - 10px);
  }
  .lightbox {

      iframe {
        position: absolute;
        height: 80%;
        width: 80%;
        left: 10%;
        top: 10%;
      }
  }
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .donate-form {
    padding: 35px;
  }

  .navbar {
  /*  padding-top: 6px;
    padding-bottom: 6px; */
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 20px;
  }

  .navbar-expand-lg .navbar-collapse.show {
    width: 100%;
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    position: absolute;
    top: 61px;
    left:0;
    background-color: #ffffff;
  }
  .navbar-expand-lg .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
    pointer-events: none;
    cursor: default;
  }
  .dropdown-menu {
    max-width: 85%;
  }
  .dropdown-menu li:first-of-type {
    margin-top: 0;
  }
  .language ul li {
    float: left;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    border: 1px solid var(--dark-color);
    margin: 0 1px;
    padding: 2px 4px;
    font-size: var(--copyright-font-size);
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
    position: relative;
    margin-top: 5px;
    margin-bottom: 20px;
    left: 20px;
  }

  .site-header .social-icon {
    text-align: left;
    margin-top: 5px;
  }

  .hero-section-full-height {
    height: inherit;
  }

  .hero-section-full-height.startseite{
    height: 275px;
    min-height: 275px;
    position: relative;
    overflow: hidden;
  }

  .carousel:hover .carousel-control-next-icon, 
  .carousel:hover .carousel-control-prev-icon {
    opacity: 1;
  }

  #hero-slide .carousel-item {
    height: inherit;
  }

  .carousel-control-prev {
    left: 12px;
  }

  .carousel-control-next {
    right: 12px;
  }

  .carousel-control-next-icon, 
  .carousel-control-prev-icon {
    opacity: 1;
    width: 60px;
    height: 60px;
  }

  .news-detail-header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-section::before {
    width: 150px;
    height: 150px;
  }

  .cta-section::after {
    bottom: -60px;
    width: 100px;
    height: 100px;
  }

  .cta-section .row {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .volunteer-section::after {
    width: 300px;
    height: 300px;
  }

  .testimonial-section::before {
    width: 150px;
    height: 150px;
  }

  .testimonial-section::after {
    width: 200px;
    height: 200px;
  }

  #testimonial-carousel .carousel-caption {
    padding-top: 0;
  }

  blockquote {
    padding: 70px 30px 30px 30px;
  }

  .about-image {
    width: inherit;
    height: 450px;
  }

  .volunteer-image {
    width: 250px;
    height: 250px;
    margin: 0;
  }

  .custom-text-block {
    padding: 20px 0 0 0;
  }

  .custom-text-box,
  .volunteer-form {
    padding: 30px;
  }

  .counter-number, 
  .counter-number-text {
    font-size: var(--h2-font-size);
  }

  .contact-info-wrap {
    padding-top: 0;
  }

  .site-footer {
    padding-top: 50px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    text-align: center;
    margin-top: 50px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .hero-section-full-height, #hero-slide .carousel-item, .carousel-image {
    min-height: 250px;
  }
  .startseite .section-padding {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  .startseite .infoboxbereich {
    width: 50%;
    margin-left: 50%;
    float: right;
    position: absolute;
    right: 0;
    top: -10px;
  }
  .infoboxbereich {
    width: 40%;
    margin-left: 60%;
    top: -90px;
  }
  .inspiration {
    width: 47%;
    margin: 0 1.5% 35px 1.5%;
    min-height: 220px;
  }
  .auszeichnung {
    width: 96%;
    margin: 0 1.5% 35px 1.3333%;
  }
  .ansprechpartner {
    width: 47%;
    margin: 0 1.5% 35px 1.5%;
  }
  .column .ansprechpartner {
    width: 107%;
    margin: 0 20px 50px 0;
  }
  .site-footer .iconPic {
    margin: 0 10px 10px 0;
  }
  footer.site-footer .neos-nodetypes-text a {
    margin: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .infoboxbereich {
    width: 80%;
    margin-left: 20%;
    top: -60px;
    position: relative;
  }
  .leistungen .columns-66-33 .column:first-of-type {
    width: 100%;
  }
  .leistungen .section-padding {
    padding-top: 0px;
    padding-bottom: 50px;
    margin-top: -20px;
  }
  .inspiration {
    width: 47%;
    margin: 0 1.5% 15px 1.5%;
    min-height: 166px;
  }
  }
  footer.site-footer .neos-nodetypes-text p a  {
    margin: 0 0 0 20px;
  }
}

@media screen and (max-width: 640px) {
  .inspiration {
    min-height: 175px;
    margin: 0 1.5% 5px 1.5%;
  }
}

@media screen and (max-width: 580px) {
  h1, h2, h3, h4, h5 {
    hyphens: auto;
  }
  .hero-section-full-height,
  #hero-slide .carousel-item,
  .carousel-image {
    min-height: 520px;
  }
  .hero-section .bigImage,
  .slick-slide .bigImage {display:none; }
  .hero-section .smallImage,
  .slick-slide .smallImage {display:block;}

  #hero-slide .carousel-caption {
    clip-path: polygon(100% 100%, 100% 100px, 0 100%);
    padding-right: 50px;
    min-width: inherit;
    min-height: inherit;
  }
  .hero-section-full-height.startseite{
    height: 580px;
    min-height: 580px;
  }
  .hero-section-full-height, #hero-slide .carousel-item, .carousel-image {
    min-height: 250px;
  }

  .infoboxbereich {
    width: 95%;
    margin-left: 5%;
    position: relative;
    right: 0;
    top: -150px;
  }
   .leistungen .section-padding {
    padding-top: 0;
    margin-top: -25px;
  }
  .inspiration {
    min-height: 365px;
    margin: 0 1.5% 25px 1.5%;
    width: 96%;
  }
  .startseite .infoboxbereich {
    width: 35%;
    margin-left: 65%;
    float: right;
    position: absolute;
    right: 0;
    top: -50px;
  }
  .infoboxbereich {
    width: 95%;
    margin-left: 5%;
    top: -90px;
  }
  .auszeichnung {
    width: 96%;
    margin: 0 2% 35px 1.33333%;
  }
  .ansprechpartner {
    width: 96%;
    margin: 0 2% 35px 1.33333%;
  }
  .column .ansprechpartner {
    width: 107%;
    margin: 0 20px 50px 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 30px;
    letter-spacing: 3px;
    hyphens: auto;
  }
  h2 {
    font-size: 30px;
    letter-spacing: 3px;
    hyphens: auto;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
  }
  #hero-slide .carousel-caption {
    min-width: inherit;
    padding-bottom: 30px;
  }
  .carousel-control-next-icon, 
  .carousel-control-prev-icon {
    width: 45px;
    height: 45px;
  }
  .language ul {
    padding-left: .75rem;
  }
  .language ul li {
    padding: 1px 4px;
  }
  .infobox {
    background-color: #FF8B47;
    width: 120%;
    border: 0px solid var(--white-color);
    padding: 20px;
    margin-right: -10px;
  }
  .leistungen .section-padding .columns-66-33 .column.neos-contentcollection:last-of-type {
    position: relative;
    top: 0;
    display: inline-block;
  }
  .hero-section-full-height.startseite{
    height: 480px;
    min-height: 480px;
  }
  .hero-section-full-height, #hero-slide .carousel-item, .carousel-image {
    min-height: 250px;
  }
  .startseite .infoboxbereich {
    width: 90%;
    margin-left: 10%;
    float: right;
    position: absolute;
    right: 0;
    top: -35px;
  }
  .startseite .section-padding {
    padding-top: 20px;
    padding-bottom: 50px;
  }
  .columns-33-33-33 .column {
    padding: 0 0;
  }
  .infoboxbereich {
    width: 95%;
    margin-left: 5%;
    top: -60px;
  }
  .inspiration {
    width: 96%;
    min-height: 235px;
    margin: 0 1.5% 25px 1.5%;
  }
  .auszeichnung {
    width: 96%;
    margin: 0 2% 25px 1.33333%;
  }
  .ansprechpartner {
    width: 96%;
    margin: 0 2% 35px 1.33333%;
  }
  .column .ansprechpartner {
    width: 107%;
    margin: 0 20px 50px 0;
  }
  .aztitel {
    font-family: var(--sec-font-family);
    font-size: var(--p-font-size);
  }
  .azausz {
    font-size: var(--copyright-font-size);
  }
  .aztext {
    font-size: var(--copyright-font-size);
  }

  .leistungen .section-padding {
    padding-top: 0;
    margin-top: -30px;
  }
  .leistungen .buttonPfeil {
    margin: 15px 10px 0 0;
    width: calc(100% - 10px);
  }
  .buttonPfeil {
    clear: both;
    position: relative;
    width: 100%;
    height: 65px;
    background-color: #E591C7;
    margin-top: 30px;
  }
  .ptext {
    font-size: var(--p-font-size);
  }
  .startseite .buttonPfeil {
    clear: both;
    position: relative;
    width: 100%;
    height: 75px;
    background-color: #E591C7;
    margin-top: 30px;
  }
  .startseite .ptext {
    float: left;
    width: calc(100% - 75px);
    padding: 20px 10px;
    font-size: var(--h5-font-size);
    color: var(--white-color);
    letter-spacing: 1px;
    padding-left: 90px;
    background-image: url("../Images/icon-pfeil.svg");
    background-repeat: no-repeat;
    background-position: 30px 0;
    text-transform: uppercase;
  }
  .site-footer .iconPic {
    margin: 0 10px 10px 0;
  }
  footer.site-footer .neos-nodetypes-text a {
    margin: 0 10px;
  }
  .lightbox {
    & iframe {
        position: absolute;
        height: 80%;
        width: 80%;
        left: 2.5%;
        top: 10%;
      }
    }

}

@media screen and (max-width: 390px) {
  .inspiration {
    min-height: 185px;
    margin: 0 1.5% 25px 1.5%;
  }
}

}