/*
 Theme Name:   Samtweberei Theme
 Description:  Samtweberei WordPress Theme 01
 Author:	   Stappen & Kryska
 Author URI:   https://stappenundkryska.de
 Version:      1.0.1
 Text Domain:  samtweberei

*/
/**	____________________________________________________________
 *
 *	INHALTE
 *
 *
 *	01 — BASICS
 *	02 — TYPO
 *	03 — GRID
 *	04 — HEADER, FOOTER & MENÜS
 *	05 — UX ELEMENTE
 *	06 — SEITEN
 *	07 — BLÖCKE
 *	08 — RESPONSIVE
 *
 *	____________________________________________________________
*/
/**
 *	01 — BASICS
 *	Basiselemente
 *	____________________________________________________________
*/
*,
:before,
:after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
body {
  position: relative;
  margin: 0;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  background-color: var(--cd-lightgray);
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: color 0.15s ease-in-out;
}
a,
a:active,
a:hover {
  text-decoration: none;
  outline: 0;
  outline-width: 0;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: var(--gruen);
}
p a {
  text-decoration: underline;
}
:focus {
  outline: none;
}
svg {
  transform: translate(0, 0);
  line-height: 1em;
}
img,
svg {
  display: block;
  border: 0 none;
  max-width: 100%;
  height: auto;
}
img {
  width: 100%;
}
/* Safari Fix */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  _::-webkit-full-page-media,
  _:future,
  :root,
  img {
    align-self: center;
  }
}
::-moz-selection {
  color: rgb(255, 255, 255);
  background: rgb(0, 0, 0);
}
::selection {
  color: rgb(255, 255, 255);
  background: rgb(0, 0, 0);
}
.bg-media {
  width: 100%;
  height: 100%;
}
.bg-media video,
.bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/**
 *	02 — TYPO, COLORS & ICONS
 *	Schrift- und Farbsettings
 *	____________________________________________________________
*/
/*--- FARBEN ---*/
/* CD Farben */
:root {
  --gruen: #6ebe28;
  --anthrazit: #222222;
  --grau: #f0f0ed;
  --dunkelgrau: #c5c5c0;
}
/* SVG Framework */
.stroke {
  fill: none;
}
.stroke.opt-weight-thin {
  stroke-width: 1px;
}
.stroke.opt-weight-normal {
  stroke-width: 2px;
}
.stroke.opt-weight-thick {
  stroke-width: 3px;
}
/* Text Farben */
.fc-anthrazit {
  color: var(--anthrazit);
}
.fc-gruen {
  color: var(--gruen);
}
.fc-weiss {
  color: rgb(255, 255, 255);
}
/* SCHRIFT */
@font-face {
  font-family: "National";
  src: url("fonts/NationalWeb-Light.eot");
  src: url("fonts/NationalWeb-Light.eot?#iefix") format("eot"),
    url("fonts/NationalWeb-Light.woff") format("woff"),
    url("fonts/NationalWeb-Light.woff") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "National";
  src: url("fonts/NationalWeb-Bold.eot");
  src: url("fonts/NationalWeb-Bold.eot?#iefix") format("eot"),
    url("fonts/NationalWeb-Bold.woff") format("woff"),
    url("fonts/NationalWeb-Bold.woff") format("truetype");
  font-weight: 600;
  font-style: normal;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  margin: 0.5em 0em 1em 0em;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 0.015em;
  text-align: center;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
.h1:first-child,
.h2:first-child,
.h3:first-child,
.h4:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child {
  margin-bottom: 0;
}
h2 + h3 {
  margin-top: 0px;
}
/* Size Settings */
:root {
  --body-l: 18; /* px */
  --body-s: 16;
  --h1-l: 4.333; /* em */
  --h1-s: 2.444;
  --h1: 4.333;
  --h2: 2.444;
  --h3: 1.875;
  --h4: 1.5;
  --h5: 1.333;
  /*--h-b1: 38.7;*/
  --rate: calc(
    (var(--h1-l) - 1) / (var(--h1-s) - 1)
  ); /* Vorgegeben durch H1-Verhältnis: Desktop (H1l) 6em, Mobile (H1s) 3em -> Bei H1l wird der Bodytext um 5em vergrößert, Mobile um 2em -> Daraus Verhältnis 5/2 */
}
body {
  font-size: calc(
    1px * var(--body-s) + (var(--body-l) - var(--body-s)) *
      ((100vw - 320px) / 1120)
  );
}
:root {
  --v-h1: calc(
    ((1 + ((var(--h1) - 1) / var(--rate))) * var(--body-s) * 1px) +
      (
        var(--h1) * var(--body-l) -
          ((1 + ((var(--h1) - 1) / var(--rate))) * var(--body-s))
      ) * ((100vw - 320px) / 1120)
  );
  --v-h2: calc(
    ((1 + ((var(--h2) - 1) / var(--rate))) * var(--body-s) * 1px) +
      (
        var(--h2) * var(--body-l) -
          ((1 + ((var(--h2) - 1) / var(--rate))) * var(--body-s))
      ) * ((100vw - 320px) / 1120)
  );
  --v-h3: calc(
    ((1 + ((var(--h3) - 1) / var(--rate))) * var(--body-s) * 1px) +
      (
        var(--h3) * var(--body-l) -
          ((1 + ((var(--h3) - 1) / var(--rate))) * var(--body-s))
      ) * ((100vw - 320px) / 1120)
  );
  --v-h4: calc(
    ((1 + ((var(--h4) - 1) / var(--rate))) * var(--body-s) * 1px) +
      (
        var(--h4) * var(--body-l) -
          ((1 + ((var(--h4) - 1) / var(--rate))) * var(--body-s))
      ) * ((100vw - 320px) / 1120)
  );
  --v-h5: calc(
    ((1 + ((var(--h5) - 1) / var(--rate))) * var(--body-s) * 1px) +
      (
        var(--h5) * var(--body-l) -
          ((1 + ((var(--h5) - 1) / var(--rate))) * var(--body-s))
      ) * ((100vw - 320px) / 1120)
  );
  /*--v-h-b1: calc(((1 + ((var(--h-b1) - 1) / var(--rate))) * var(--body-s) * 1px) + (var(--h-b1) * var(--body-l) - ((1 + ((var(--h-b1) - 1) / var(--rate))) * var(--body-s))) * ((100vw - 320px) / 1120));*/
}
@media screen and (min-width: 1440px) {
  body {
    font-size: calc(var(--body-l) * 1px);
  }
  :root {
    --v-h1: calc(var(--h1) * 1em);
    --v-h2: calc(var(--h2) * 1em);
    --v-h3: calc(var(--h3) * 1em);
    --v-h4: calc(var(--h4) * 1em);
    --v-h5: calc(var(--h5) * 1em);
    /* --v-h-b1: calc(var(--h-b1) * 1em);*/
  }
}
h1,
.p-h1 {
  font-size: var(--v-h1);
  max-width: 960px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
h2,
.p-h2 {
  font-size: var(--v-h2);
  letter-spacing: 0px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
h3,
.p-h3 {
  font-size: var(--v-h3);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
h4,
.p-h4 {
  font-size: var(--v-h4);
}
h5,
.p-h5 {
  font-size: var(--v-h5);
}
h2 {
  color: var(--cd-green-01);
}
h3 {
  color: var(--cd-petrol-01);
}
.p-h-b1 {
  font-size: var(--v-h-b1);
}
/* Texts */
p {
  margin: 0 0 1.6em;
  max-width: 960px;
  width: 100%;
}
body {
  font-family: "National";
  font-weight: 300;
  line-height: 1.6em;
}
strong {
  font-weight: 600;
}
/*@media screen and (min-width: 1280px) {
	body {
		font-size: 0.938vw;
	}
}
@media screen and (min-width: 1920px) {
	body {
		font-size: 18px;
	}
}*/
/*@media screen and (min-width: 320px) {
    body {
        font-size: calc(12px + 4 * ((100vw - 320px) / 1120));
    }
    h1, .h1 {
        font-size: calc(32px + 32 * ((100vw - 320px) / 1120));
    }
}
@media screen and (min-width: 1440px) {
    body {
        font-size: 16px;
    }
    h1, .h1, {
        font-size: 4em;
    }
}*/
.small-caps {
  font-size: 0.66em;
  font-weight: 700;
  text-transform: uppercase;
}
p img {
  margin-top: var(--3em);
}
p:last-child,
ul:last-child,
li:last-child,
ol:last-child {
  margin-bottom: 0;
}
b,
strong {
  font-weight: 700;
}
ul,
ol {
  margin: 0 0 2.1em;
  padding: 0;
  list-style: none;
  max-width: 960px;
  width: 100%;
}
h3 + .list-alt {
  margin-top: 45px;
}
/* li:not(.menu-item) {
  position: relative;
  padding: 0px 0px 10px 15px;
}
li:not(.menu-item):after {
  content: "•";
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 0.5em;
} */

ul li {
  font-weight: 700;
}
li:not(.menu-item) {
  padding: 0px 0px 0px 56px;
  margin: 0px 0px 1em 0px;
  position: relative;
}
li:not(.menu-item):not(#BorlabsCookieBox li):not(#wpadminbar li)::after {
  content: "";
  width: 36px;
  height: 5px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  background: var(--gruen);
}
/* BUTTONS */
a,
.button:focus,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
  outline: none;
}
button {
  border: none;
  font-size: inherit;
  font-weight: 600;
  cursor: pointer;
}
button::-moz-focus-inner {
  border: 0;
  outline: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 30px;
  font-weight: 600;
  font-size: 1em;
  line-height: 1em;
  letter-spacing: 0.02em;
  min-height: 50px;
  background: none;
  color: var(--anthrazit);
  align-self: baseline;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--anthrazit);
  transition: all 0.3s ease-in-out;
}
.button:hover {
  background-color: var(--anthrazit);
  color: #ffffff;
}
.button span {
  margin-left: 20px;
  margin-top: -3px;
}
/**
 *	03 — GRID
 *	Grid Framework
 *	____________________________________________________________
*/
/* Flex */
:root {
  /* Std. Einheit */
  --1em: 10px;
  --1-4em: calc(var(--1em) * 0.25);
  --1-2em: calc(var(--1em) * 0.5);
  --3-4em: calc(var(--1em) * 0.75);
  --2em: calc(var(--1em) * 2);
  --3em: calc(var(--1em) * 3);
  --4em: calc(var(--1em) * 4);
  --5em: calc(var(--1em) * 5);
  --6em: calc(var(--1em) * 6);
  --9em: calc(var(--1em) * 9);
  --12em: calc(var(--1em) * 12);
  --18em: calc(var(--1em) * 18);
}
@media screen and (min-width: 960px) {
  :root {
    /* Std. Einheit */
    --1em: 1.389vw;
  }
}
@media screen and (min-width: 1440px) {
  :root {
    /* Std. Einheit */
    --1em: 20px;
  }
}
@media screen and (min-width: 959px) {
  .row {
    display: flex;
    flex-direction: row;
  }
  .col {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}
/*.main-header, .main-content, .main-footer {
    display: flex;
    flex-direction: column;
}*/
section {
  position: relative;
  width: 100%;
}
.sec-spaced {
  margin-top: calc(var(--1em) * 6);
  margin-bottom: calc(var(--1em) * 6);
}
.sec-spaced-top {
  margin-top: calc(var(--1em) * 6);
}
.sec-spaced-bottom {
  margin-bottom: calc(var(--1em) * 6);
}
/* Flex */
.boxed {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Wrapper */
.wrapper {
  margin: 0 auto;
  padding: 0px var(--3em);
  width: 100%;
}
.wrapper.no-pad {
  padding: 0%;
}
.wrapper-1680 {
  max-width: calc(1680px + var(--6em));
}
.wrapper-1440 {
  max-width: calc(1440px + var(--6em));
}
.wrapper-1280 {
  max-width: calc(1280px + var(--6em));
}
.wrapper-960 {
  max-width: calc(960px + var(--6em));
}
.wrapper-left {
  margin-left: 0;
}
.wrapper-right {
  margin-right: 0;
}
.maxw360 {
  max-width: 360px;
}
.maxw240 {
  max-width: 240px;
}
.maxw120 {
  max-width: 120px;
}
/* Image Crop */
.img-crop {
  position: relative;
}
.img-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0px;
}
.img-crop-2-3 {
  aspect-ratio: 2 / 3;
}
.img-crop-3-4 {
  aspect-ratio: 3 / 4;
}
.img-crop-1-1 {
  aspect-ratio: 1 / 1;
}
.img-crop-4-3 {
  aspect-ratio: 4 / 3;
}
.img-crop-3-2 {
  aspect-ratio: 3 / 2;
}
.img-crop-16-9 {
  padding-top: 56.25%;
}
.img-crop-2-1 {
  aspect-ratio: 2 / 1;
}
.img-crop-3-1 {
  aspect-ratio: 3 / 1;
}
/**
 *	04 — HEADER, FOOTER & MENÜS
 *	Header, Footer, Layer, Meüs, etc.
 *	____________________________________________________________
*/
/* HEADER */
.main-header .row-01 .row {
  display: flex;
}
.main-header .row-01 .col {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.top-bar-wrapper {
  display: flex;
}
#samtwberei-logo {
  max-height: 80px;
  max-width: 100px;
}
.col-initiative {
  color: #ccc;
  font-weight: 600;
  line-height: 1.3em;
  text-align: right;
  font-size: 0.7em;
}
header .row-01 {
  margin: var(--1em) 0px;
}
/* HAUPTMENÜ DESKTOP  */
header .row-02.sticky {
  position: fixed;
  top: 0px;
  left: 0px;
  box-shadow: 0px 10px 0px rgba(255, 255, 255, 0.5);
  width: 100%;
  background: #ffffff;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 3;
}
.nav-wrapper {
  width: 100%;
}
.menu-hauptnavigation-container {
  width: 100%;
}
#hauptmenue {
  display: flex;
  font-size: 1.4em;
}
#hauptmenue > li {
  margin-right: var(--2em);
  position: relative;
}
#hauptmenue li:last-of-type {
  margin-right: 0px;
}
#hauptmenue li:hover > .sub-menu {
  display: block;
}
#hauptmenue > li a {
  height: 40px;
  display: flex;
  align-items: center;
}
.sub-menu {
  display: none;
  box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 12px;
  left: -20px;
  position: absolute;
  top: 34px;
  width: 300px;
  background: #ffffff;
  z-index: 3;
}
.sub-menu li {
  line-height: 0.75em;
}
.sub-menu li:last-of-type {
  margin-bottom: 0px;
}
#hauptmenue .sub-menu a {
  font-weight: 400;
  font-size: 0.75em;
  height: unset;
  color: var(--anthrazit);
  padding: 8px 0px;
}
#hauptmenue .sub-menu a:hover {
  color: var(--gruen);
}
.current_page_item,
.current-menu-item,
.current_page_parent {
  color: var(--gruen);
}
.current_page_parent .sub-menu a {
  color: var(--anthrazit);
}
.current_page_parent .sub-menu .current_page_item a {
  color: var(--gruen) !important;
  font-weight: 600 !important;
  padding-left: 0px !important;
}
/* Scoial Menu */
.menu-soziale-netzwerke-container {
  height: 100%;
}
#socialmenue {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
#socialmenue li {
  margin-left: 10px;
}
#socialmenue svg {
  max-width: 22px;
  max-height: 16px;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
#socialmenue svg path,
#footersocialmenue svg path {
  transition: all 0.15s ease-in-out;
  fill: var(--anthrazit);
}
#socialmenue svg:hover path,
#footersocialmenue svg:hover path {
  fill: var(--gruen);
}
/* MOBILE MENÜ */
.main-header .row-01 .col.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  cursor: pointer;
  opacity: 1;
  transition: transform 0s 0s, opacity 0.3s;
  height: 60px;
  z-index: 10;
  max-width: 40px;
}
.menu-button .move {
  transform-origin: center center;
}
.menu-button .hide-01 {
  transform-origin: center left;
}
.menu-button .hide-02 {
  transform-origin: center right;
}
.menu-button .move,
.menu-button.aktiv .hide {
  transition: transform 0.3s;
}
.menu-button .hide,
.menu-button.aktiv .move {
  transition: transform 0.3s 0.3s;
}
.menu-button.aktiv .hide {
  transform: scaleX(0);
}
.menu-button.aktiv .move-01 {
  transform: rotate(135deg);
}
.menu-button.aktiv .move-02 {
  transform: rotate(225deg);
}
.menu-button.hide {
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0s 0.3s, opacity 0.3s;
}
.menu-button rect {
  fill: var(--gruen);
}
.menu-button.aktiv rect {
  fill: var(--gruen);
}
#menu-layer {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 40px;
  background-position: center;
  background-size: cover;
  justify-content: space-between;
  background-color: #ffffff;
  text-transform: uppercase;
  transition: transform 0.6s;
  transform: translateX(100%);
  overflow-y: auto;
}
#menu-layer.aktiv {
  transform: translateX(0%);
}
body.layer-aktiv {
  overflow: hidden;
}
.menu-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#mobilemenue .sub-menu {
  display: block;
  position: relative;
  box-shadow: none;
  width: 100%;
  left: unset;
  top: unset;
  padding: 0px 0px 20px;
}
#mobilemenue li {
  margin-bottom: 10px;
}
#mobilemenue .sub-menu li {
  line-height: 1.5em;
  margin-bottom: 0px;
}
#menu-layer .menu-soziale-netzwerke-container {
  height: unset;
}
#mobilemenue a {
  font-size: var(--v-h5);
  line-height: 1em;
}
#mobilemenue .sub-menu a {
  font-size: 1em;
  line-height: 1em;
  font-weight: 400;
  height: unset;
  color: var(--anthrazit);
  padding: 8px 0px;
}
#mobile-socialmenue {
  display: flex;
  margin-top: var(--4em);
}
#mobile-socialmenue li {
  margin-right: var(--2em);
}
#mobile-socialmenue li:last-of-type {
  margin-right: 0px;
}
#mobile-socialmenue svg {
  max-width: 32px;
  max-height: 26px;
  height: 100%;
  width: 100%;
}
/* FOOTER */
footer {
  background: var(--anthrazit);
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.footer-newsletter {
  background: var(--grau);
  padding: var(--4em) 0px;
  color: var(--anthrazit);
  border-bottom: 1px solid var(--dunkelgrau);
}
.footer-newsletter .row {
  justify-content: space-between;
}
.col.nl-headline {
  max-width: 230px;
}
.col.nl-headline h2 {
  margin-left: 0px;
}
.col.nl-text {
  max-width: 450px;
  font-weight: 600;
}
.col.nl-button {
  max-width: 240px;
}
.footer-social {
  background: var(--grau);
  padding: var(--4em) 0px;
}
#footersocialmenue {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
#footersocialmenue li {
  margin: 0px var(--1em);
}
#footersocialmenue svg {
  max-width: 46px;
  max-height: 36px;
  height: 100%;
  width: 100%;
}
.footer-main {
  padding: var(--4em) 0px;
}
.footer-main .row-01 .col-01 {
  flex-basis: 50%;
}
.footer-main .row-01 .col-02,
.footer-main .row-01 .col-03 {
  flex-basis: 25%;
}
.row-logos .col {
  max-width: 150px;
}
#logo-nachbarschaft-samtweberei {
  max-width: 100px;
}
#logo-nachbarschaftstiftung-samtweberviertel-krefeld {
  max-width: 126px;
}
.footer-initiative {
  font-weight: 600;
  margin-top: var(--2em);
  max-width: 390px;
}
.footer-main ul li {
  font-weight: 400;
}
.back-to-top {
  height: 40px;
  width: 40px;
  background: var(--gruen);
  position: fixed;
  bottom: var(--1em);
  right: var(--1em);
  padding: 0px;
  font-size: 40px;
  min-height: unset;
  display: none;
  border: 0px;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}
.back-to-top .pfeil {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  margin: unset;
}

/**
 *	05 — UX ELEMENTE
 *	Layer, Popups und weitere UX Elemente
 *	____________________________________________________________
*/
.mailpoet_form.mailpoet_form_form.mailpoet_form_shortcode {
  padding: 0px !important;
}
#mailpoet_form_2 {
  width: 100%;
  max-width: 960px;
}
#mailpoet_form_2 .mailpoet_paragraph {
  float: left;
  width: 50%;
}
#mailpoet_form_2 .mailpoet_paragraph.last {
  width: 100%;
}
#form_email_2 {
  height: 50px;
  border-radius: 0px;
  border: 1px solid var(--anthrazit);
}
.mailpoet_form .mailpoet_submit {
  height: 50px;
  background: var(--anthrazit);
  color: #ffffff;
  font-size: 1em;
  font-family: "National";
  font-weight: 600;
}
/**
 *	06 — SECTIONS & SEITEN
 *	Startseite, Unterseiten, Blog, Singles
 *	____________________________________________________________
*/
/* ALLGEMEIN */
.main-content .wrapper.wrapper-1280 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-content {
  min-height: calc(60vh);
  margin-top: var(--1em);
  margin-bottom: var(--6em);
}
.main-content.nav-is-sticky {
  margin-top: calc(var(--1em) + 40px);
}
.beitragsbild-wrapper {
  margin-bottom: var(--2em);
  height: 100%;
  width: 100%;
  position: relative;
}
.beitragsbild {
  height: 100%;
  width: 100%;
}
.bild-beschriftung {
  text-align: right;
  width: 100%;
  display: block;
  position: absolute;
  font-size: 0.8em;
  right: 6px;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.breadcrumb-wrapper {
  margin-bottom: 10px;
}
.breadcrumb-wrapper a,
.breadcrumb-current-page {
  text-align: center;
  background: var(--grau);
  padding: 4px 8px;
  box-decoration-break: clone;
} /*.seite-headline {
	margin-top: var(--1-2em);
}*/
.trenner {
  margin: 0px 10px;
}
.intro-slider-wrapper {
  max-width: 1280px;
  width: 100%;
  margin-bottom: var(--2em);
}
.intro-slider .bild-beschriftung {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 10px;
  background: rgba(240, 240, 237, 0.8);
  padding: 0px 10px;
  font-size: 0.8em;
  width: unset;
}
.header-spacer {
  height: var(--4em);
}
.is-prev,
.is-next {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  cursor: pointer;
  height: 50px;
  width: 50px;
  background: var(--gruen);
  display: flex;
  justify-content: center;
  align-items: center;
}
.is-next {
  right: 0px;
}
.is-next svg,
.is-prev svg {
  fill: #ffffff;
  max-height: 24px;
}
.slide-headline {
  position: absolute;
  z-index: 1;
  bottom: 20%;
  left: 0px;
  display: flex;
}
.slide-headline span {
  background: var(--gruen);
  margin-left: 20px;
  width: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: var(--v-h2);
  font-weight: 600;
  transition: all 0.15s ease-in-out;
}
.slide h2 {
  background: var(--gruen);
  padding: 10px 20px;
  color: #ffffff;
  margin: 0px;
  transition: all 0.15s ease-in-out;
  width: unset;
  text-align: left;
  max-width: unset;
}
a.slide-headline:hover h2,
a.slide-headline:hover span {
  background: #ffffff;
  color: var(--anthrazit);
}
a.slide-headline h2::after {
  content: "»";
  margin-left: var(--1em);
}
/* STARTSEITE */
.blog-artikel-vertikal .row {
  flex-direction: column;
}
.home .blog-artikel-wrapper {
  max-width: 100%;
}
.home .blog-excerpt {
  padding-left: 0px;
  margin-top: 10px;
}
.home .blog-artikel {
  width: 100%;
  margin-bottom: var(--3em);
  margin-right: var(--1em);
}
.home .blog-artikel:last-of-type {
  margin-right: 0px;
}
.button.logbuch-button {
  margin: 0px auto var(--6em);
}
#startseite-logbuch {
  margin-top: var(--3em);
}
/* LOGBUCH / BLOG */
.blog-artikel-wrapper {
  max-width: 960px;
}
.blog-artikel {
  width: 100%;
  margin-bottom: var(--3em);
}
.blog-excerpt {
  padding-left: var(--2em);
}
.blog-excerpt h2 {
  text-align: left;
  margin-left: 0px;
  font-size: var(--v-h5);
  margin-top: var(--1-2em);
  margin-bottom: var(--1em);
}
.mehr-lesen {
  font-weight: 600;
  margin-top: var(--1em);
  display: block;
  text-decoration: none;
}
#pagination {
  display: flex;
  justify-content: center;
  font-weight: 600;
}
#pagination a,
#pagination .current {
  background: var(--grau);
  height: 30px;
  width: 30px;
  margin: 0px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#pagination .current {
  background: var(--gruen);
  color: #ffffff;
}
/*.blog-artikel:hover h2 {
	color: var(--gruen);
}
.blog-artikel:hover .mehr-lesen {
	color: var(--gruen);
}*/
/* SINGLE */
.single-headline {
  margin-bottom: var(--2em);
}
.beitrags-datum {
  font-weight: 600;
  margin-bottom: var(--2em);
  text-align: center;
}
/**
 *	07 — BLÖCKE
 *	____________________________________________________________
*/
.block {
  width: 100%;
}
/* BLOCK: Instagram */
.block-instagram .wrapper.wrapper-960 {
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.block-instagram .button {
  margin: var(--4em) auto 0px;
}
/* BLOCK: Aufklapptexte */
/* AKKORDEON */
.akk-trigger {
  cursor: pointer;
}
.block-akkordeon .block-header {
  padding-left: 0px;
  padding-right: 0px;
}
.akk-wrapper.st-01 {
  border-top: 1px solid var(--anthrazit);
}
.akk-wrapper.st-01 .akk {
  border-bottom: 1px solid var(--anthrazit);
}
.akk-wrapper.st-01 .akk-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--4em);
  padding: var(--1em) 0px;
  cursor: pointer;
}
.akk-wrapper.st-01 .akk-trigger:hover .akk-arrow svg {
  stroke: var(--gruen);
}
.akk-wrapper.st-01 .akk-arrow svg {
  transform: rotate(0deg);
  transition: transform 0.4s;
  fill: none;
  stroke-width: 2px;
  stroke: var(--anthrazit);
}
.akk-wrapper.st-01 .akk-trigger.active .akk-arrow svg {
  transform: rotate(180deg);
}
.akk-wrapper.st-01 .akk-content {
  padding: 0px 0px var(--2em) 0px;
}
.akk-titel {
  font-weight: 700;
  font-size: 1.25em;
}
.akk-content p {
  max-width: 800px;
}
.akk-arrow {
  width: 30px;
  height: 30px;
  justify-content: center;
  display: flex;
  align-items: center;
}
.btn.icon svg {
  fill: none;
  stroke-width: 1.5px;
}
.akk-text {
  margin-bottom: var(--2em);
}
.akk-download {
  display: flex;
  align-items: center;
  flex-direction: row;
  transition: background 0.3s ease-in-out;
  padding: 5px 0px;
}
.akk-download svg {
  height: 20px;
  margin-right: 10px;
  margin-left: 5px;
}
.akk-download:hover {
  background: var(--grau);
}
/* BLOCK: Slider */
.bilder-slider-wrapper {
  display: block;
  min-width: 0px;
  flex: 0 1 100%;
  position: relative;
  /*max-height: 100vh;*/
}
.swiper .swiper-slide {
  height: auto;
}

/*.swiper-content {
    height: calc(100vh - var(--6em));
}*/
/*.swiper-content img {
    object-fit: contain;
    height: 100%;
}*/
/* Nicht beschnitten*/
/*.swiper-content {
    height: 100%;
}

.swiper-content img {
    height: 100%;
    width: auto;
    max-height: calc(100vh - 45px);
    margin: auto;
    object-fit: cover;
}*/
/* Beschnitten */
.swiper-content {
  /* height: 100vh; */
  aspect-ratio: 16 / 10;
  background-size: cover !important;
  background-position: center !important;
}
.swiper-pagination {
  bottom: 40px !important;
}
.swiper-pagination-bullet {
  background-color: var(--cd-petrol-01) !important;
  opacity: 1 !important;
  width: 15px !important;
  height: 15px !important;
  margin: 0 7px !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--cd-green-01) !important;
}
.swiper-prev,
.swiper-next {
  cursor: pointer;
  z-index: 1;
}
.swiper-button-disabled {
  cursor: unset;
  opacity: 0.3;
}
.swiper-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: var(--3em);
}
.swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: var(--3em);
}
p.bildunterschrift {
  text-align: center;
  margin-top: 10px;
}
/* BLOCK: Bild & Text mit Akkordeon */
.akkordeon-gruppe {
  margin-top: 30px;
}
.akkordeon {
  border-top: 1px solid rgba(0, 90, 95, 0.1);
}
.akkordeon:last-of-type {
  border-bottom: 1px solid rgba(0, 90, 95, 0.1);
}
.akkordeon-trigger {
  height: 70px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.akkordeon-pfeil {
  margin-right: 20px;
  animation: rotateRight 0.3s linear;
  transition: all 0.3s linear;
}
.akkordeon-trigger.aktiv .akkordeon-pfeil {
  animation: rotateLeft 0.3s linear;
  transform: rotate(45deg);
}
.akkordeon-titel {
  font-weight: 600;
}
.akkordeon-bild {
  max-width: 240px;
  margin: 0px auto 40px;
  max-height: 180px;
}
.akkordeon-inhalt {
  padding: 30px 0px;
}
.akkordeon-headline {
  margin-top: var(--2em);
}
.akkordeon-text {
  text-align: center;
}
/**
 *	08 — RESPONSIVE
 *	Anpassung des Layouts für mobile Geräte
 *	____________________________________________________________
*/
@media screen and (min-width: 2048px) {
}
@media screen and (max-width: 1640px) {
}
@media screen and (max-width: 1400px) {
  .slide h2 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 1320px) {
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1080px) {
  #hauptmenue > li {
    margin-right: calc(var(--1em) + var(--1-2em));
  }
}
@media screen and (max-width: 960px) {
  /* HEADER */
  .main-header {
    position: fixed;
    top: 0px;
    z-index: 2;
    background: #ffffff;
    width: 100%;
  }
  header .row-02 {
    display: none !important;
  }
  header .row-01 .col:first-of-type {
    max-width: 100px;
  }
  .col-initiative {
    text-align: left;
  }
  #samtwberei-logo {
    max-height: 60px;
    max-width: 80px;
  }
  .main-header .row-01 .col.menu-button {
    display: flex;
  }
  /* CONTENT ALLGEMEIN */
  .main-content {
    margin-top: 80px !important;
  }
  /* .bild-beschriftung {
    bottom: -7px;
  } */
  .beitragsbild {
    margin-bottom: 20px;
  }
  /* FOOTER */
  .footer-newsletter .row {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-newsletter .row .col {
    margin-bottom: var(--3em);
  }
  .col.nl-button {
    margin-bottom: 0px !important;
  }
  .row.row-logos {
    display: flex;
    justify-content: center;
  }
  .row-logos .col {
    max-width: 150px;
    flex: 1;
  }
  p.footer-initiative {
    margin: var(--6em) auto;
  }
  .footer-main {
    text-align: center;
  }
  /* STARTSEITE */
  .home .blog-artikel {
    margin-right: 0px;
    margin-bottom: var(--9em);
  }
  /* LOGBUCH / BLOG */
  .blog-excerpt {
    padding-left: 0px;
    margin-top: var(--1em);
  }
  .blog-artikel {
    width: 100%;
    margin-bottom: var(--9em);
  }
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 767px) {
  /* INTRO SLIDER */
  .slide h2 {
    padding: 7px 12px;
  }
  .slide-headline span {
    width: auto;
    padding: 0px 12px;
  }
  /* BREADCRUMBS */
  .breadcrumbs {
    justify-content: flex-start;
    margin: 0px auto 0px 0px;
  }
  /* H1 */
  h1,
  .p-h1 {
    text-align: left;
    margin-left: 0px;
  }
}
@media screen and (max-width: 660px) {
  /* INTRO SLIDER */
  .slide h2 {
    padding: 7px 12px;
    background: rgba(0, 0, 0, 0.5);
  }
  .slide-headline {
    bottom: unset;
    top: 10px;
  }

  /* AKKORDEON */
  .akk-titel {
    font-size: 1em;
  }
}
@media screen and (max-width: 600px) {
  .wrapper {
    padding: 0px var(--2em);
  }
  #menu-layer {
    padding: 20px;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5 {
    hyphens: auto;
  }
  p {
    font-size: 1.125em;
  }
  /* INTRO SLIDER */
  .slide h2 {
    padding: 7px 12px;
  }

  .slide h2 {
    padding: 5px 12px;
  }
  .slide h2 {
    padding: 5px 8px;
    font-size: 1.125em;
  }
  .slide-headline span {
    width: auto;
    padding: 0px 7px;
  }
  .is-prev,
  .is-next {
    height: 30px;
    width: 30px;
  }
}
@media screen and (max-width: 546px) {
}
@media screen and (max-width: 480px) {
  :root {
    --1em: 10px;
  }
  .wrapper {
    padding: 0px calc(var(--1em) + var(--1-2em));
  }
  h1,
  h2,
  h3 {
    text-align: left;
  }
  .breadcrumb {
    text-align: left;
  }
  li:not(.menu-item)::after {
    width: 25px;
  }
  li:not(.menu-item) {
    padding: 0px 0px 0px 46px;
  }
  /* INTRO SLIDER */
  .intro-slider-wrapper .img-crop-16-9 {
    padding-top: 75%;
  }
}
@media screen and (max-width: 360px) {
  .col-initiative {
    font-size: 0.66em;
  }
  header .row-01 .col:first-of-type {
    max-width: 86px;
  }
}
/** IE FIXES **/
@media screen\0, screen\9 {
  h1,
  h2,
  h3,
  p {
    width: 100%;
  }
  img {
    flex-shrink: 0;
  }
}
