/* Changes:
03.11.20 - Back to Top angepasst: Files: styles.css, script.js;
03.11.20 - Navi-Punkte und IDs angepasst: Files: index.html; */

:root {
	--c-blau: #00A3CC;
	--c-orange: #F59401;
  --c-gruen: #93C82C;
  --c-rot: #ac2832;
  --c-gold: #BA9E4B;

	--c-dunkelgrau: #6A6E72;
  --c-grau: #A6ADB4;
  --c-hellgrau: #EBEDED;
}
/* please note:
 *
 * normalize v8.0.1 includes these rulesets:

 * button::-moz-focus-inner,
 * [type="button"]::-moz-focus-inner,
 * [type="reset"]::-moz-focus-inner,
 * [type="submit"]::-moz-focus-inner {
 *   border-style: none;
 *   padding: 0;
 * }

* button:-moz-focusring,
* [type="button"]:-moz-focusring,
* [type="reset"]:-moz-focusring,
* [type="submit"]:-moz-focusring {
*   outline: 1px dotted ButtonText;
* }

*/

/*// let's style the :focus and :focus-visible state 

// please note: all the rulesets most be separated

// 1.
// remove focus if is not keyboard and if these elements are not focused
//
// this is the standard, but is not cross-browsers yet
// https://caniuse.com/#feat=css-focus-visible*/
:focus:not(:focus-visible) {
  outline: none;
}

/*// 2.
// add this polyfill https://github.com/WICG/focus-visible 
// and enable :focus-visible in all browsers
//
// This will hide the focus indicator if the element receives focus
// via the mouse, but it will still show up on keyboard focus.
//
// video explanation https://www.youtube.com/watch?v=ilj2P5-5CjI&list=PLNYkxOF6rcICWx0C9LVWWVqvHlYJyqw7g*/
/*.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}
*/
/*// 3.
// add a base focus-visible style */
:focus-visible {
  outline: .2rem solid orange;
  outline-offset: 0 ;
}

/*// 4.
// polyfill it again*/
.js-focus-visible .focus-visible {
  outline: .2rem solid orange;
  outline-offset: 0;
}

/*// 5.
// buttons
// override normalize, remove the :focus and add some nice :focus styles*/
/*button:focus,
[type="button"]:focus,
[type="reset"]:focus,
[type="submit"]:focus {
  outline: 0;
}*/

/* ==========================================================================
   ALLGEMEINE STILE
========================================================================== */
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
}
body {padding: 0;margin: 0;font-size:62.5%;font-family: 'proxima-nova', sans-serif;color:#000;-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;}

.container {max-width: 1280px;margin: 0 auto;}

p, ul li, ol li, a {font-size: 1.1rem;line-height: 1.618;font-weight: 300}
h1 {font-size: 3.2rem;text-align: center;font-weight: 300}
h2  {font-size: 1.2rem;text-transform: uppercase;display: flex;align-items: center;font-weight: 300;letter-spacing: 3px;margin-bottom: 3em;}
h3 {font-size: 1.5rem;margin-top: 0;font-weight: 500;}
a {color: #00A3CC;color: var(--c-blau);text-decoration: none}
a:hover {text-decoration: underline}

img {display: inline-block;vertical-align: middle;max-width: 100%;height: auto;}

.headline {
    display: flex;    
    text-align: center;
    margin: 40px auto;
    height: 9px;
    max-width:80%;}
.headline span:nth-of-type(1) {flex: 1 1 auto;background: rgba(245,148,1,1);}
.headline span:nth-of-type(2) {flex: 1 1 auto;background: rgba(0,163,204,1);}
.headline span:nth-of-type(3) {flex: 1 1 auto;background: rgba(147,200,44,1);}
.headline span:nth-of-type(4) {flex: 1 1 auto;background: rgba(172,40,50,1);}
.headline h2 {flex: 0 0 auto;display: inline-flex;max-width: 600px;
    font-size: 1.25rem;
    line-height: 1.2;
    align-items: center;
    padding: 0 1.5rem;
    font-weight: 700;margin: 0;}

.headline.headline-short {position: relative;max-width:100%;}
.headline.headline-short h2 {    
  position: absolute;
    top: -30px;
    padding: 0;}
.headline.headline-short span:nth-of-type(1) {flex: 0 0 100px;}
.headline.headline-short span:nth-of-type(2) {flex: 0 0 100px;}
.headline.headline-short span:nth-of-type(3) {flex: 0 0 100px;}
.headline.headline-short span:nth-of-type(4) {flex: 0 0 100px;}


h2 .circle {display: inline-block;width:24px;height:24px;margin-right: 10px;border-radius:20px;}

header {padding: 0;}

main {}

@media (min-width: 768px) {
  main .text-cols {columns: 2;column-gap: 3rem;orphans: 3;widows:3;}
  main .text-cols p:first-of-type {margin-top: 0} 
}

#back-top {
        display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    background:  #00A3CC;
    background: var(--gruen);
    border-radius: 0;
    font-size: 30px;
    color: #fff;
    text-align: center;
    transition: all 0.5s ease;
    transform: translateY(200%)
}
#back-top:hover {text-decoration: none;background:#000;}
#back-top.show {bottom:1.5rem;transform: translateY(0%)}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    column-gap: 3rem
}
.grid.grid-autocol {grid-template-columns: repeat(auto-fit, minmax(auto, 1fr));}
.grid-2-col {
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
}
.grid-3-col {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3rem;
}
.grid-4-col {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
}
.grid-12-col {grid-template-columns: repeat(12, 1fr);grid-template-rows: repeat(8, 50px);}


/* ==========================================================================
   UTILITY STYLES
========================================================================== */

.bg-wald {background:#01b14c ;background: var(--c-wald);}
.bg-blue {background:#00A3CC ;background: var(--c-blau);}
.bg-gruen {background:#93C82C ;background: var(--c-gruen);}
.bg-rot {background:#ac2832 ;background: var(--c-rot);}
.bg-orange {background:#F59401 ;background: var(--c-orange);}
.bg-black {background: #262626;}
.bg-hellgrau {background:#f6f8f9;}

.bg-black h1, .bg-black p, .bg-black ul li {color:#fff;}

.relative {position: relative;}
.highlight {color:#01b14c;color:var(--c-wald);}
.button {padding: 12px 25px; text-align: center;background:#F59401 ;background: var(--c-orange);color:#fff;text-transform: uppercase;border-radius:60px;text-decoration: none;min-width:160px;}
.button small {font-size: 0.8rem;text-transform: none;display: block;color:rgba(255,255,255,0.8);margin-top: 10px;}
.introtext {width: 75%;margin: 0 auto 50px;text-align: center;font-weight: 500}
.justify-center {text-align: center;justify-content: center}

.tm100 {margin-top: 100px;}
.tm50 {margin-top: 50px;}

.grid-v-centered {align-items: center}



/* ==========================================================================
   GENERAL PAGE ELEMENTS
========================================================================== */

.lhw-signature {display:grid;grid-template-columns: repeat(5, 1fr);}
.lhw-signature .orange {background:#F59401;background: var(--c-orange);height:10px;} 
.lhw-signature .blau {background:#00A3CC ;background: var(--c-blau);height:10px;}
.lhw-signature .gruen {background:#93C82C ;background: var(--c-gruen);height:10px;}
.lhw-signature .rot {background:#ac2832 ;background: var(--c-rot);height:10px;}
.lhw-signature .gold {background: #BA9E4B;background: var(--c-gold);height:10px;}

.top-bar {
  display:flex;
  justify-content: space-between;
  align-items:flex-end;
  height: 10vh;
  min-height:90px;
  padding:  0 1.5rem;
}
.top-bar .logo {text-align: center;height:auto;display: flex;align-items: center;}
.top-bar .logo img {position: relative;height:60px;width:auto;}
.top-bar .logo--lhw {position: absolute;left: 50%;margin-left: -50px;}
.top-bar .logo--lhw img {max-width:100px;}

.hero {height:68vh;overflow: hidden;position: relative;display: flex;align-items: center}
.hero img {width:100%;height:auto;}
.hero .caption {background: #01b14c;background: var(--c-wald);
  clip-path: polygon(0 37%, 100% 0, 100% 100%, 0 80%);    
  -webkit-clip-path: polygon(0 37%, 100% 0, 100% 100%, 0 80%); 
  width: 100%;
    height: 120px;
    margin-top: auto;
    margin-bottom: -30px;
    display:flex;
    justify-content: center;
    align-items:center;
    color:#fff;
    position: absolute;
    bottom: 0;
    }
.hero .caption p {font-size:1.5rem;font-weight: 700;}   
.variable.js-fix {
  position:relative;
  top:50%;
  left:50%;
}

.orte {margin-top: 40px}
.orte ul {    
  display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;} 
.orte ul li {flex: 0 0 auto;
    padding: 5px 12px;
    border: 1px solid #eee;
    margin: 0 8px 8px 0;
    transition:0.3s ease all;}
.orte:hover ul li, .orte:focus ul li {border:1px solid var(--c-orange);}    

.pdf-download {min-height: 40px;display: flex;align-items: center;background: #eee;padding: 5px 20px;}
.pdf-download i {color: var(--c-gold);font-size: 20px;display: inline-block;margin-right: 10px}    
.pdf-download span {margin-left: auto;font-weight: 300}

.circle.gruen {background:var(--c-gruen);}


/* Anim. grünes Dreieck */
.triangle-container {
  position: absolute;    
  right: 0;
    left: 0;
    text-align: center;
    top: -50%;}
.ie11 .triangle-container {top:-100%;display:none;} 
.triangle {
    fill: #93C82C;
    stroke: white;
    margin:  0 auto;
    stroke-width: 0;
    transition: all 0.8s ease-in-out;
    transform-origin: 250px 250px; 
    transform: scale(0.4)}
.anmeldung:hover .triangle {transform: rotate(-180deg) scale(0.4);}

/*Cards*/
.card {background: #fff;padding: 0 1.5rem 0.5rem;}

/* News Caroussel */
.news--container .news--item picture img {width: 100%;height:auto;margin-bottom: 10px;}
.news--container .news--item .news--content h3 {margin-top: 20px}
/* News Caroussel */
.news--container .news--item img.news--icon {max-width:50%;max-height:100px;}


/* FILE LIST */
.file-list ul {padding: 0;margin: 0;}
.file-list ul li {display: flex;justify-content: space-between;align-items: center;height: 60px;border-bottom: 1px solid #ccc;}
.file-list ul li .file-size {white-space: nowrap;}
.file-list ul li .file-link a {color: var(--c-blau);text-transform: uppercase;font-size: 0.9rem;font-weight: 500;}
.file-list ul li .file-link i {color: var(--c-gold);margin-right: 10px;display: inline-block;}

/* Logo Animation */
.logo-animation {
  position: relative;
}
.logo-animation .box {
  width: 60px;
  height: 60px;
  font-family: Oswald;
  border-radius: 10px;
  background: var(--c-rot);
  color: #fff;
  font-size: 26px;
  font-weight: 300;
  line-height: 60px;
  text-align: center;
  position: absolute;
  left: 0%;
  z-index: 2;
  animation: test 2s;
}
.logo-animation .box:after {
  content: "";
  display: block;
  height: 62%;
  width: 1px;
  background: #ddd;
  position: absolute;
  top: 0; right: -18px; bottom: 0;
  margin: auto;
  animation: expand 2s;
}

.logo-animation .text {
  height: 60px;
  color: var(--c-gold);
  padding-left: 90px;
  line-height: 60px;
  font-size: 30px;
  font-weight: 100;
  animation: fade 2.5s;
}

@keyframes expand {
  0% { height: 0; }
  40% { height: 0; }
  60% { height: 80%; }
}

@keyframes test {
  0% { transform: scale(0);  left: 39%; }
  40% { transform: scale(1);  left: 39%;}
  60% { transform: scale(1);  left: 39%;}
  100% { left: 0%; }
}

@keyframes fade {
  0% { opacity: 0; }
  45% { opacity: 0; padding-left: 70px; }
  100% { opacity: 1; padding-left: 90px; }
}

/* Blockquote */
blockquote {
  text-align: center;
    font-style: italic;
    font-size: 1.2rem;
}

/* 404 Animation */
#lp-404--ani {width: 100%; height: 500px;}
@media screen and (orientation: portrait) and (max-width: 480px) {
  #lp-404--ani {width:100%; height: 50vh;}
}
#svgContainer {
  max-width: 100%;
  max-height: 100%;
  width:100% ;
  height:500px;
  position: relative;
  margin: auto;
}

.logo--zusatz {position: absolute;left: 10%;bottom: 10%;}

/* ==========================================================================
   SECTION STYLES
========================================================================== */

section.konzept {background:#f6f8f9;padding: 75px 0;margin-top: 75px}
section.konzept .quellen {margin-top: 40px;padding-top: 10px;border-top:1px dashed var(--c-grau);display: grid;grid-template-columns:1fr 1fr;grid-gap: 1.5rem;}
section.konzept .quellen h4 {font-size: 1.2rem;font-weight: 500}
section.konzept .quellen ol, section.konzept .quellen ul {margin-top: 0}
section.konzept .quellen ol li, section.konzept .quellen ul li, section.konzept .quellen a {font-size: 0.8rem}
section.konzept .quellen .studien {grid-column: 1}
section.konzept .quellen .sammlung {grid-column: 2}

section.impressionen {margin: 0 0 15vw}
section.banderole {padding: 0;}
section.intro {padding-top: 100px; padding-bottom: 50px;background: #F6F8F9;}

.team--item {display: flex;justify-content: flex-start;flex-direction: column;align-items: center}
.team--item picture img {overflow: hidden; border-radius: 200px;max-width:300px;height:auto;}
.team--item p {text-align: center}
.team--item .name {font-size: 1.2rem;margin-top: 30px;font-weight: 500}

section {padding: 75px 0;}
section[class*="bg-"] {margin:0;}
section[class*="bg-"] .container {padding: 10px 0 75px;}
section[class*="bg-"] .button {background: none;border: 2px solid #fff;display: inline-block;line-height: 1;}

/* ==========================================================================
   FOOTER
========================================================================== */
footer .info {
    background: #000;
    padding: 1.5rem;
  --w:200px;
  --n:6;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(max(var(--w), 100%/(var(--n) + 1) + 0.1%),1fr));
  gap:10px;}
  @media screen and (min-width: 414px) {
}

  @media screen and (min-width: 1024px) {
}

  @media screen and (min-width: 1120px) { 
    }
footer .info > div {height:fit-content;text-transform: uppercase;letter-spacing: 1px;font-weight: 500;}
footer .info * {font-size: 0.8rem;line-height: 1.618;}
footer a {color: #fff;text-decoration: underline;}
footer a:hover {color:var(--gruen);}
footer .info ul {margin:0;padding: 0;list-style:none;} 

footer .foo--lhw-logo, footer .foo--logo {padding: 20px;border-radius: 0;}
footer .foo--lhw-logo img, footer .foo--logo img {max-width:200px;}
footer .adresse--standort, footer .adresse--lhw, footer .foo--navigation, footer .foo--social {    
  
    border-radius: 0;
    padding: 20px;
    color: #fff;}
footer .foo--social a {color:#fff;}
footer .foo--social a:hover {color: var(--gruen);}

footer .foo--social .social-group {
  align-items: center;
  display: grid;
  grid-auto-rows: minmax(30px, 1fr);
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(30px, max-content));
  justify-content: center;
  list-style: none;
  margin: auto;
  padding: 0;}

footer .foo--navigation {border-left: 1px solid #444;padding-left: 20px;}

/* ==========================================================================
   BANDEROLE
========================================================================== */
.banderole.no-img {
  background: var(--c-wald);
  clip-path: polygon(0 37%, 100% 0, 100% 100%, 0 80%);    
  -webkit-clip-path: polygon(0 37%, 100% 0, 100% 100%, 0 80%);
  width: 100%;
    height: 150px;
    margin: 10vh 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.banderole.image {width: 100%;height: auto;overflow: hidden;}
.banderole.image .caption {
    background: var(--c-wald);
    -webkit-clip-path: polygon(0 0, 100% 29%, 100% 75%, 0 82%);
    clip-path: polygon(0 0, 100% 29%, 100% 75%, 0 82%);
    width: 100%;
    height: auto;
    margin-top: auto;
    margin-bottom: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    top: -70px;
    padding: 30px 0;
}
.banderole.image img {width: 100%;height: auto;}
.banderole.no-img p, .banderole.image p {font-size: 1.5rem; margin-right: 3rem;font-weight: 500;}
.banderole.no-img .button {background:none;border:2px solid #fff;}
.banderole.no-img .button:hover {text-decoration: none;background:#fff;color:var(--c-wald);}


/* ==========================================================================
   TABLES
========================================================================== */
table {
  border-spacing: 1;
  border-collapse: collapse;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
  font-size: 1rem;
}
table * {
  position: relative;
}
table td, table th {
  padding-left: 8px;
}
table thead tr {
  height: 60px;
  background: #00a3cc;
  font-size: 1.1rem;
  color:#fff;
}
table tbody tr {
  height: 48px;
  border-bottom: 1px solid #E3F1D5;
}
table tbody tr:last-child {
  border: 0;
}
table td, table th {
  text-align: left;
}
table td.l, table th.l {
  text-align: right;
}
table td.c, table th.c {
  text-align: center;
}
table td.r, table th.r {
  text-align: center;
}

@media screen and (max-width: 35.5em) {
  table {
    display: block;
  }
  table > *, table tr, table td, table th {
    display: block;
  }
  table thead {
    display: none;
  }
  table tbody tr {
    height: auto;
    padding: 8px 0;
  }
  table tbody tr td {
    padding-left: 45%;
    margin-bottom: 12px;
  }
  table tbody tr td:last-child {
    margin-bottom: 0;
  }
  table tbody tr td:before {
    position: absolute;
    font-weight: 700;
    width: 40%;
    left: 10px;
    top: 0;
  }
  table tbody tr td:nth-child(1):before {
    content: attr(data-column);
  }
  table tbody tr td:nth-child(2):before {
    content: attr(data-column);
  }
  table tbody tr td:nth-child(3):before {
    content: attr(data-column);
  }
  table tbody tr td:nth-child(4):before {
    content: attr(data-column);
  }
  table tbody tr td:nth-child(5):before {
    content: attr(data-column);
  }
}

/* ==========================================================================
   NEWS GRID
========================================================================== */

.news-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 600px) {
  .news-grid {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
}

.block {
  background: var(--c-blau);
  color: white;
  overflow: hidden;
  position: relative;
  margin: 1px;
  width: 100%;
  display: -webkit-box;
  display: flex;
}
@media (min-width: 600px) {
  .block {
    -webkit-box-flex: 1;
            flex-grow: 1;
    flex-shrink: 1;
    -webkit-box-align: stretch;
            align-items: stretch;
  }
}
.block h1 {
  font-size: 1rem;
}
@media (min-width: 600px) {
  .block h1 {
        font-size: 2rem;
    font-family: 'Oswald', sans-serif;
  }
}
.block:first-child {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
@media (min-width: 600px) {
  .block:first-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}
.block:first-child .block-hero {
  width: 100%;
}
.block:first-child h1 {
  font-size: 1.5rem;
}
@media (min-width: 600px) {
  .block:first-child h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 600px) {
  .block:first-child, .block:nth-child(4) {
    overflow: hidden;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}
@media (min-width: 1000px) {
  .block:first-child, .block:nth-child(4) {
    flex-basis: calc(70% - 1px * 2);
  }
}
.block:first-child .block-hero img, .block:nth-child(4) .block-hero img {
  position: relative;
}
@media (min-width: 600px) {
  .block:first-child .block-hero img, .block:nth-child(4) .block-hero img {
    position: absolute;
  }
}
.block:first-child h1, .block:nth-child(4) h1 {
  font-family: 'Oswald', sans-serif;
}
@media (min-width: 600px) {
  .block:nth-child(2), .block:nth-child(3) {
    flex-basis: calc(30% - 1px * 2);
    background: var(--c-orange);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .block:nth-child(2n) {background: var(--c-orange);}
  .block:nth-child(3n) {background: var(--c-rot);}
  .block:nth-child(4n) {background: var(--c-gold);}
  .block:nth-child(5n) {background: var(--c-gruen);}
}
@media (min-width: 600px) {
  .block:nth-child(4) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
    text-align: right;
  }
}
.block:nth-child(4) h1 {
  font-size: 1rem;
}
@media (min-width: 600px) {
  .block:nth-child(4) h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 600px) {
  .block:nth-child(n+5) {
    flex-basis: calc(30% - 1px * 2);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}
.block:last-child {
  align-items: center;
  background: var(--c-blau);
  max-width: 1100px;
  flex-basis: calc(15% - 1px * 2);
}
.block .block-hero {
  width: 30%;
  float: left;
  position: relative;
  min-width: 120px;
}
@media (min-width: 600px) {
  .block .block-hero {
    width: 100%;
  }
}
.block .block-hero img {
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block .block-body {
  -webkit-box-flex: 1;
          flex-grow: 1;
  padding: 1rem;
}
.block .block-body a {color:#fff;text-decoration: underline;}
.block .block-body .fa {    font-size: 14px;
    display: inline-block;
    margin-left: 5px;}
@media (min-width: 600px) {
  .block .block-body {
    width: fit-content;
  }
}

/* ==========================================================================
   TABULATOR
========================================================================== */
ul.resp-tabs-list {
    margin: 0px;
    padding: 0px;
}

.resp-tabs-list li {
    display: inline-block;
    padding: 0.75rem 2rem;;
    list-style: none;
    cursor: pointer;
    background: #f6f8f9;
}
.resp-tabs-list li h3 {margin: 0;font-weight: 400;}
.resp-tabs-list li h4 {margin: 0;font-weight: 500;}
.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left;
}

h2.resp-accordion {
    cursor: pointer;
    padding: 5px;
    display: none;
}

.resp-tab-content {
    display: none;
    padding: 15px;
}

.resp-tabs-list .resp-tab-active {
  border: 1px solid #5AB1D0 ;
  border-bottom: none;
  margin-bottom: -1px ;
  padding: 12px 14px 14px 14px ;
  border-bottom: 0px #fff solid ;
  border-bottom: none;
    background-color: #fff;
}


.resp-content-active, .resp-accordion-active {
    display: block;
}

.resp-tab-content {
    border: 1px solid #c1c1c1;
  border-top-color: #5AB1D0;
}

h2.resp-accordion {
    border: 1px solid #c1c1c1;
    border-top: 0px solid #c1c1c1;
    margin: 0px;
    padding: 10px 15px;
}

h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 ;
    margin-bottom: 0px ;
    padding: 10px 15px ;
}

h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 ;
    background: blue;
}

/*-----------Vertical tabs-----------*/
.resp-vtabs {display: flex;}
.resp-vtabs ul.resp-tabs-list {
    flex: 0 0 auto;
    width: fit-content;
}

.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 1rem 1.5rem ;
    border-left: 4px solid transparent ;
    cursor: pointer;
    float: none;
}

.resp-vtabs .resp-tabs-container {
    padding: 0px;
    border: 1px solid #5ab1d0;
    flex: 1 1 auto;
}

.resp-vtabs .resp-tab-content {
    border: none;
    word-wrap: break-word;
}

.resp-vtabs li.resp-tab-active { 
position: relative;
z-index: 1;
margin-right: -1px ;
border-top: 1px solid;
border: 1px solid #5AB1D0 ;
border-left: 4px solid #5AB1D0 ;
border-right:0;
}

.resp-arrow {
    width: 0;
    height: 0;
    float: right;
    margin-top: 3px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid #c1c1c1;
}

h2.resp-tab-active span.resp-arrow {
    border: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #9B9797;
}

/*-----------Accordion styles-----------*/
h2.resp-tab-active {
    background: #DBDBDB;/* ;*/
}

.resp-easy-accordion h2.resp-accordion {
    display: block;
}

.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1;
}

.resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1;/* ;*/
}

.resp-jfit {
    width: 100%;
    margin: 0px;
}

.resp-tab-content-active {
    display: block;
}

h2.resp-accordion:first-child {
    border-top: 1px solid #c1c1c1;/* ;*/
}
@media only screen and (min-width: 769px) {
  .resp-vtabs ul.resp-tabs-list {
    display: flex; 
     flex-flow: column; 
     gap: 5px; }
  ul.resp-tabs-list.hor_1 {display: flex;gap:5px;}   
}

@media only screen and (max-width: 768px) {
  .resp-tabs-container.hor_1 h3 {margin: 0;font-weight: 400;font-size: 1.25rem;}
.resp-accordion.ver_1 h4 {margin: 0;font-weight: 500;font-size: 1rem;text-transform: none;}
    ul.resp-tabs-list {
        display: none;
    }

    h2.resp-accordion {
        display: block;
    }

    .resp-vtabs .resp-tab-content {
        border: 1px solid #C1C1C1;
    }

    .resp-vtabs .resp-tabs-container {
        border: none;
        float: none;
        width: 100%;
        min-height: 100px;
        clear: none;
    }

    .resp-accordion-closed {
        display: none ;
    }

    .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 ;
    }
}

/* ==========================================================================
   KALENDER / TIMELINE
========================================================================== */

.pos-absolute-right {
    position: absolute;
    right: 0px;
    background: #93c82c;
    color: #fff;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
}
.pos-absolute-right.bg-rot {background: var(--c-rot);}
.timeline {
    position: relative;
    margin: 15px 0 30px 0;
    list-style: none
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #e4e4e4;
    left: 44px;
    margin-left: -10px;
    z-index: 1;
}

.timeline .timeline-thumb {
    border-radius: 500px;
    width: 50px;
    z-index: 2;
    position: absolute;
    left: 7px
}

.timeline .timeline-thumb.timeline-icon {
    height: 50px;
    text-align: center;
    color: white;
    border: 5px solid #e4e4e4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline .timeline-thumb.timeline-icon i {
    font-size: 28px;
    margin: 6px 0;
    display: block;
}

.timeline .timeline-item {
    margin-left: 72px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}
.timeline .timeline-item h4 {
    position: relative;top: 12px;
}
.timeline .timeline-stats {
    position: relative;
    font-size: 1rem;
    color: #7F8C8D;
}

.divider-title {
    background: #e4e4e4;
    padding: 5px 15px;
    font-size: 1.5rem;
}




/* ==========================================================================
   FAQs
========================================================================== */
section.faqs {    
  background: #F6F8F9;
  padding: 75px 0;}
.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #03b5d2;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 1.5em;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-flex;
  position: absolute;
  top: 18px;
  right: 0.5em;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  justify-content: center;
  align-items: center
}
.accordion button .icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #03b5d2;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 50em;
  transition: all 250ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: opacity 250ms linear, max-height 250ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}


/* ==========================================================================
   MEDIA QUERIES
========================================================================== */
@media (max-width: 1460px) {
  section .container {max-width:1120px;padding-right: 1.5rem!important;
    padding-left: 1.5rem!important;}
}

@media screen and (max-width:1024px) {
  section.impressionen {padding: 0 1.5rem;}
  section.intro .container, section.aktuelles .container, section.impressum .container {padding: 0 1.5rem;}
  .timeline {padding: 0 1.5rem;}
  .triangle {transform: scale(0.2);}
  footer .info {flex-wrap:wrap;padding: 1.5rem;}
  footer .foo--lhw-logo, footer .foo--logo {  }
  footer .foo-navigation {margin-left: auto;}
}

@media screen and (max-width:768px) {
  .grid {grid-gap: 0 1rem;}
  .team--item picture {text-align: center}
  .team--item picture img {width:90%;display: block;margin:0 auto;}
  .cd-intro-block {height:70vh;}
}

@media screen and (max-width:480px) {
  h1 {font-size:2.6rem;}
  h2  {font-size: 2.2rem}
    h3 {font-size: 1.75rem}
    .variable.js-fix {    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0!important;top: 0;left: 0;}
  .grid {grid-template-columns: 1fr;}
  .grid-12-col, .grid-2-col {display: block;}
  .container, section[class*="bg-"] .container {padding: 0 1.5rem;}
  .top-bar .logo img {max-width: 160px;
    border-radius: 0 0 30px 30px;
    position: relative;
    top: 24px;
    left: -15px;
    padding: 0 10px 10px;
    background: #fff;}
  .top-bar .logo--lhw {display: none}  
  .relative {
    position: relative;
    max-width: 100vw;
    overflow: hidden;}
  .scroll .cd-stretchy-nav {right: 0.5rem;top: 10px;}  
  .cd-stretchy-nav {top: 25px;right: 0.5rem;}
  .cd-stretchy-nav ul {padding-top:40px;}
  .cd-stretchy-nav ul a {height:44px;line-height: 44px}
  .cd-stretchy-nav.nav-is-visible ul span {line-height: 28px}

  .scroll #back-top {bottom:0.5rem;right:0.5rem;}

  .button {min-width:80px;}  

  section.intro .schaalsee-logo {flex-direction: column;}

  section.impressionen {padding: 0 0;}  

  .news--container .news--item {display: block}

  .banderole.no-img {-webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);height: 200px;margin: 10vh 0px;    justify-content: space-around;}
  .hero .caption {-webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 90%);height:160px;padding: 0 1.5rem}
  .hero .caption p {font-size: 1.25rem;line-height: 1.4;font-weight: 500;}

  .news--container .news--item .news--content p i {display: none}

  .banderole.no-img .button {position: relative;right: 20px;}

  .banderole.no-img p, .banderole.image p {font-size: 1.1rem;margin: 0 1.5rem;font-weight: 400;}

  .st-accordion ul li {height:auto;}
  .st-accordion ul li > a {line-height:1.5;padding: 8px 35px 8px 25px;font-size: 1rem;}

  .slick-prev, .slick-next {top: 40%}
  .slick-prev {left: -20px}
  .slick-next {right: 0px}
  .slick-track {align-items: flex-start;}
  .slick-prev:before, .slick-next:before {font-size: 40px;width:40px;height:40px;}

  .cd-intro-block .content-wrapper {padding: 0 1.5rem;}
  .cd-intro-block .content-wrapper p {margin: 0 auto 10px;}
  .cd-intro-block .cd-btn {padding: 0.5rem 2rem;}

  .accordion button {    padding: 1em 2.5em 1em 1.5em;}

  footer .adresse-kita, footer .adresse-lhw {margin-bottom: 30px;} 
  footer .foo-navigation {margin-left: auto;margin-right: auto}

  section.konzept .quellen {grid-template-columns: 1fr;}
  section.konzept .quellen .sammlung {grid-column: auto;}
}