/* noto-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-v36-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/noto-sans-v36-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-v36-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html, body {
  font-size: 16px;
}

* {
  line-height: calc(1em + 0.8rem);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

#wrapper {
  min-height: 100vh;
}

.hamburg {
  display: block;
  background: #7b333e;
  width: 70px;
  height: 52px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  border-radius: 4px;
  transition: border-radius 0.5s;
}

.line {
  position: absolute;
  left: 8px;
  height: 4px;
  width: 55px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: 0.5s;
  transform-origin: center;
}

.line:nth-child(1) {
  top: 12px;
}

.line:nth-child(2) {
  top: 24px;
}

.line:nth-child(3) {
  top: 36px;
}

.hamburg.checked .line:nth-child(1) {
  transform: translateY(12px) rotate(-45deg);
}

.hamburg.checked .line:nth-child(2) {
  opacity: 0;
}

.hamburg.checked .line:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}

.hamburg {
  display: block;
  background: #7b333e;
  width: 70px;
  height: 52px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  border-radius: 4px;
  transition: border-radius 0.5s;
}

.line {
  position: absolute;
  left: 8px;
  height: 4px;
  width: 55px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: 0.5s;
  transform-origin: center;
}

.line:nth-child(1) {
  top: 12px;
}

.line:nth-child(2) {
  top: 24px;
}

.line:nth-child(3) {
  top: 36px;
}

.hamburg.checked .line:nth-child(1) {
  transform: translateY(12px) rotate(-45deg);
}

.hamburg.checked .line:nth-child(2) {
  opacity: 0;
}

.hamburg.checked .line:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}

html {
  font-size: 16px;
  font-family: "Noto Sans";
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

#main p,
#main li {
  font-size: 1.25rem;
  line-height: 1.6rem;
  font-family: "Noto Sans";
}
#main li {
  line-height: 1.6rem;
  padding-left: 0.7rem;
}
#main .rte a {
  color: #fff;
}
#main .rte a:hover {
  color: #777;
}
#main ul {
  padding-left: 28px;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.content-grid {
  --content-maxwidth: 1700px;
  --padding-inline: 3rem;
  --breakout-maxwidth: 100rem;
  display: grid;
  grid-template-columns: [full-width-start] var(--padding-inline) [breakout-start] 1fr [content-start] minmax(300px, var(--content-maxwidth)) [content-end] 1fr [breakout-end] var(--padding-inline) [full-width-end];
}
.content-grid > * {
  grid-column: content;
}
.content-grid > .breakout {
  grid-column: breakout;
}
.content-grid > .full-width {
  grid-column: full-width;
}
.content-grid > .hide-pop {
  grid-column: full-width;
}

.bg-hblau {
  background-color: #617795;
}

.bg-hblau2 {
  background-color: #d9dfe6;
}

.txt-center {
  text-align: center;
}

.txt-white h2,
.txt-white p,
.txt-white li {
  color: #fff;
}

.padding-5 {
  padding: 5rem;
}

.padding-7 {
  padding: 7rem;
}

.padding-6 {
  padding: 6rem;
}

.padding-1-5 {
  padding: 1rem 5rem;
}

.padding-bottom-5 {
  padding-bottom: 5rem;
}

.v-align-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.v-align-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.round img {
  border-radius: 10px;
  border: 1px solid #707070;
}

.padding-top-bottom-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.text-weiss {
  color: #fff;
}

.grod-column-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2rem;
}

.flex-video_ {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-video_ .poster img {
  max-width: 100%;
  max-width: 500px;
}
.flex-video_ ul {
  justify-content: space-between !important;
}

span.phone {
  background: url("../icons/phone.png") no-repeat;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.7rem;
  padding-right: 0.6rem;
  padding-left: 2rem;
  display: inline-block;
  color: #3a5172;
}
span.phone a {
  text-decoration: none;
  color: #3a5172;
}

span.time {
  font-size: 0.975rem;
  color: #617795;
  font-weight: 600;
}

#headerBild {
  padding-top: 150px;
}

#headTop {
  position: relative;
  width: 100vw;
  position: fixed;
  z-index: 10;
  background-color: #fff;
}
#headTop .inside {
  padding-left: 3rem;
  padding-right: 3rem;
}
#headTop .inside .column {
  padding: 2rem 0;
}
.hg-beige {
  background: #d3b680;
}

.hg-blau {
  background: #3a5172;
}

#background-video {
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

#article-84,
#article-74,
#article-99,
#article-107,
#article-95,
#article-111,
#article-113,
#article-116 {
  overflow: visible;
}

#targetAdress {
  background: #617795;
  height: 50px;
  width: 100%;
  position: absolute;
  top: 0;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  line-height: 50px;
}

ul.clickable {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
ul.clickable li {
  list-style: none;
  width: 22%;
  cursor: pointer;
  border-radius: 15px;
  border: 1px solid #ccc;
  margin-bottom: 2rem;
  font-size: 1rem !important;
  background: #3a5172;
  padding: 3px 6px;
  color: #fff;
}
ul.clickable li:hover {
  background: rgba(43, 85, 144, 0.7);
  color: #fff;
}
ul.clickable li:hover h3,
ul.clickable li:hover p,
ul.clickable li:hover a {
  color: #fff !important;
}
ul.clickable li h3 {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  color: #fff;
}
ul.clickable li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0 1rem;
  color: #919191 !important;
}
ul.clickable li a:hover {
  color: #aa894c;
}
ul.clickable .gmaps a {
  color: #3a5172;
  font-size: 1rem;
}

#main .g-cell.overlay .media {
  display: grid;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
#main .g-cell.overlay .media figure {
  grid-area: 1/1;
}
#main .g-cell.overlay .media .rte {
  grid-area: 1/1;
  color: #fff;
  font-size: 1.875rem;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(58, 81, 114) 0%, rgb(58, 81, 114) 52%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.5s ease-in-out;
  transform: translateY(60%);
  display: flex;
  align-items: center;
  justify-content: center;
}
#main .g-cell.overlay .media .rte p {
  font-size: inherit;
  line-height: 2.5rem;
}
#main .g-cell.overlay .media:hover .rte {
  transform: translateY(0);
}
#main .teaserS {
  margin-top: 8rem;
}
#main .teaserS .item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto auto;
}
#main .teaserS .item .round {
  grid-column: 1/7;
  grid-row: 1/5;
  border-radius: 10px;
  box-shadow: 3px 3px 5px 2px rgba(0, 0, 0, 0.45);
}
#main .teaserS .item .round figure img {
  max-width: 350px;
}
#main .teaserS .item .teaserText {
  grid-column: 2/7;
  grid-row: 4/5;
  background-color: #617795;
  position: relative;
  right: -20px;
  bottom: -20px;
  color: #fff;
  border-radius: 15px;
  position: relative;
  box-shadow: 3px 3px 5px 2px rgba(0, 0, 0, 0.45);
}
#main .teaserS .item .teaserText a {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 0.6rem;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 2px 5px;
  line-height: 1rem;
  transition: all 0.3s ease-in-out;
}
#main .teaserS .item .teaserText a:hover {
  transform: scale(1.3) translate(6px, 6px);
  background-color: #7c9ed6;
}

#headerBild .content-image::after,
#headerBild #article-72::after {
  content: url(../hg/ornament.png);
  background: url(../hg/ornament.png);
  position: absolute;
  bottom: -55px;
  z-index: 1;
  width: 100vw;
  background-repeat: repeat-x;
  overflow: hidden;
}

#unav_holder ul {
  display: flex;
}
#unav_holder ul li {
  list-style: none;
}
#unav_holder ul li a,
#unav_holder ul li strong {
  color: #3a5172;
  font-size: 1.25rem;
  text-decoration: none;
  padding-right: 1rem;
}
#unav_holder ul li a:hover,
#unav_holder ul li strong:hover {
  color: #aa894c;
}

.flex-70 {
  max-width: 70%;
}

.flex-80 {
  max-width: 80%;
}

.grid-50-50 {
  display: grid;
  grid-template-columns: 50% 1fr;
}

.grid-50-50-3 {
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: auto auto auto;
}

.grid-btn {
  padding: 3rem 0;
}

.h-align-end {
  align-items: flex-end;
}

.grid-v-align-end {
  justify-items: end;
}

.grid-h-align-end {
  justify-items: end;
}

.grid-h-align-start {
  justify-items: start;
}

.bg-white {
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}

.leer {
  padding: 10rem;
}
.leer.left {
  padding-left: 0;
}
.leer .btn_1 {
  margin-bottom: 3rem;
}
.leer.friedhof {
  display: inline-block;
}

#headerBild .content-image img {
  width: 100%;
}

.bg-image-inhalt {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.bg-image-inhalt .inside {
  padding-left: 3rem;
  padding-right: 3rem;
}
.bg-image-inhalt .inside .column {
  padding: 2rem 0;
}
#article-112 .content-gallery ul,
#article-112 .content-gallery li {
  padding: 0;
}
#article-112 .content-gallery li {
  margin-bottom: 10px;
}

#bg-s1 {
  background: url("../img_wir/bg-wald.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
#bg-s1 .inside {
  padding-left: 3rem;
  padding-right: 3rem;
}
#bg-s1 .inside .column {
  padding: 2rem 0;
}
.bg-braun {
  background: #aa894c;
}
.bg-braun.transparent {
  background: rgba(170, 137, 76, 0.9);
}

.bg-hbraun {
  background: #aa894c;
}
.bg-hbraun.transparent {
  background: rgba(255, 255, 255, 0.6);
}

.bg-blau {
  background: #3a5172;
}
.bg-blau.transparent {
  background: rgba(58, 81, 114, 0.9);
}

.bg-blau-hell {
  background: #2e4a71;
}
.bg-blau-hell.transparent {
  background: rgba(58, 81, 114, 0.9);
}

.bg-blau-6 {
  background: #8494aa;
}
.bg-blau-6.transparent {
  background: rgba(132, 148, 170, 0.9);
}

.bg-blau-7 {
  background: #5e738f;
}
.bg-blau-7.transparent {
  background: rgba(94, 115, 143, 0.9);
}

.bg-beige {
  background: #d3b680;
}

#bg-s2 {
  background: url("../img_wir/bg-haende.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

#bg-s3 {
  background: url("../img_trauerfall/bg-kerzen.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}

#bg-s33 {
  background: url("../img_trauerfall/bg-baum.webp") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}
#bg-s33 .bg-white {
  margin-bottom: 5rem;
}

#bg-s5 {
  background: url("../img_trauerfall/bg-moos.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
  overflow: visible;
}
#bg-s5 .poster.v11, #bg-s5 .poster.v21 {
  margin-right: 50px;
}
#bg-s5 .gap-10 {
  grid-gap: 10px 10px;
  align-items: center;
}

#btn_literatur_kinder {
  padding-top: 4rem;
}

#bg-s6 {
  background: url("../img_trauerfall/bg-kreuz.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
  overflow: visible;
}

#bg-s7 {
  background: url("../img_trauerfall/bg-herz.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
  overflow: visible;
}

#bg-s9 {
  background: url("../img_trauerfall/bg-ringe.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

#bg-s11 {
  background: url("../img_vorsorge/bg-gebaeude.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}

#bg-s12 {
  background: url("../img_kinder/bg-kinder.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}

#bg-s13 {
  background: url("../img_kinder/bg-kinder2.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}

#bg-s15 {
  background: url("../img_wissen/verfuegung.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}

#bg-s17 {
  background: url("../img_wissen/haende.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}

#bg-s19 {
  background: url("../img_wissen/rosen.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}

#bg-s21 {
  background: url("../img_wissen/pusteblume.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}

#bg-s23 {
  background: url("../img_wissen/friedhof.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}

.flex-video {
  display: flex;
}
.flex-video .content-image {
  max-width: 50%;
  height: auto;
}

.video-holder {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 3;
  grid-row-end: 4;
  width: 100%;
}

.rahmen {
  border: 1px solid #fff;
  padding: 1rem;
  font-style: italic;
  margin-top: 6rem;
}

.pos-relative {
  position: relative;
  overflow: visible;
}

.poster {
  position: relative;
  cursor: pointer;
}
.poster.h-align-right {
  text-align: right;
}
.poster figure {
  display: inline-block;
}
.poster img {
  max-width: 600px;
  margin-right: 0;
  width: 100%;
}
.poster::after {
  content: url("../hg/play.png");
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.margin-top-7 {
  margin-top: 7rem;
}

.grid-4-4 {
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: 50% auto;
}
.grid-4-4 .content-image {
  max-width: 100% !important;
  width: 100% !important;
  height: auto;
}
.grid-4-4 .content-image img {
  width: 100%;
  height: auto;
}

.btn_braun {
  background: #aa894c !important;
}

.btn_blau {
  background: #3a5172 !important;
}

.btn_braun_1,
.btn_beige {
  background: #d3b680 !important;
}

.btn_blau_3 {
  background: #617795 !important;
}

.btn_blau_2 {
  background: #2b5590 !important;
}

.btn_blau_4 {
  background: #92a1d1 !important;
}

.btn_blau_5 {
  background: #a0b6d3 !important;
}

.area-1-1 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
}

.area-2-1 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}

.gap-10 {
  grid-gap: 10px 10px 10px 10px;
}

.flex-end {
  align-items: flex-end;
}

.side-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side-grid-40 {
  display: grid;
  grid-template-columns: 40% 1fr;
}

.grid-30-70 {
  display: grid;
  grid-template-columns: 30% 1fr;
  grid-gap: 3rem;
}

.grid-40-60 {
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-gap: 3rem;
}

.grid-30-70 {
  display: grid;
  grid-template-columns: 33% 1fr;
  grid-gap: 3rem;
}

.btn_pfeil {
  background: #3a5172;
  padding: 2rem;
  color: #fff;
  font-size: 2.5rem;
  width: 100%;
  text-align: center;
  min-height: 125px;
  cursor: pointer;
}
.btn_pfeil::after {
  content: url("../hg/pfeil_unten.png");
  padding-left: 1rem;
}
.btn_pfeil.padding-1 {
  padding: 0.8rem 2rem;
  line-height: 2.8rem;
}
.btn_pfeil.thin-70 {
  width: 100%;
  max-width: 620px;
  margin-bottom: 1rem;
}
.btn_pfeil.thin-70:last-child {
  margin-bottom: 5rem;
}

.videoholder {
  display: flex;
  padding: 3rem 0;
}
.videoholder img {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 1rem;
}
.videoholder.center {
  justify-content: center;
}

.grid-4-1 {
  display: grid;
  grid-template-columns: 33% 1fr 33%;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 4;
  width: 100%;
  justify-items: center;
  grid-gap: 5rem;
}

.grid-4-2 {
  display: grid;
  grid-template-columns: 33% 1fr 33%;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 4;
  width: 100%;
  justify-items: center;
  grid-gap: 0 5rem;
}

.grid-5-2 {
  display: grid;
  grid-template-columns: 33% 1fr 33%;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 5;
  width: 100%;
  justify-items: center;
  grid-gap: 0 5rem;
}

.hide-pop {
  display: none;
  position: absolute;
  z-index: 900;
}
.hide-pop .rte {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 2em;
       column-gap: 2em;
  -moz-column-rule: 1px solid #ccc;
       column-rule: 1px solid #ccc;
}
.hide-pop .rte p {
  margin-top: 0;
  padding-top: 0;
}
.hide-pop.show {
  display: block;
}

.hide-pop {
  padding: 3rem 10rem;
  color: #fff;
  z-index: 200;
  width: 100vw;
}

#popup-moeglichkeiten {
  background-color: #3a5172;
  padding: 3rem 10rem;
  color: #fff;
}

#popup-rituale {
  background-color: #2b5590;
  padding: 3rem 10rem;
  color: #fff;
}

#popup-konfessionen {
  background-color: #617795;
  padding: 3rem 10rem;
  color: #fff;
}

#popup-rituale {
  background-color: #2b5590;
  padding: 3rem 10rem;
  color: #fff;
}

#popup-konfessionen {
  background-color: #617795;
  padding: 3rem 10rem;
  color: #fff;
}

#popup-erdbestattung {
  background-color: #3a5172;
  padding: 3rem 10rem;
  color: #fff;
}

#popup-feuerbestattung {
  background-color: #3a5172;
  padding: 3rem 10rem;
  color: #fff;
}

#btn_rituale {
  background-color: #2b5590;
}

#btn_konfessionen {
  background-color: #617795;
}

.btn_1 {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
}

.btn_2 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}

.btn_3 {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 2;
}

#welle {
  grid-column: full-width;
  height: 150px;
  margin-top: -138px;
}

.stack {
  display: grid;
}
.stack > .top {
  grid-area: 1/1;
}
.stack > .logo {
  grid-area: 1/1;
}

.w30 {
  grid-area: 1/3/2/7;
  display: grid;
  justify-content: end;
  z-index: 0;
}

.w70 {
  grid-area: 1/3/2/4;
  max-width: 70%;
  z-index: 1;
}

body.sticky #s-header {
  transform: translateY(0);
}

h1,
h2,
h3 {
  font-size: 3rem;
  font-weight: 400;
}

h2 {
  font-size: 2.5rem;
  font-weight: 400;
}

h3 {
  font-size: 2rem;
  font-weight: 400;
}

#footer {
  padding-top: 0px;
  background: #3a5172;
  color: #fff;
}
#footer #footerB {
  padding-top: 2rem;
  padding-bottom: 5rem;
}
#footer #footerB .inside {
  display: flex;
  color: inherit;
}
#footer #footerB .inside a {
  color: inherit;
  text-decoration: none;
}
#footer #footerB .inside .last {
  flex: 0 0 20%;
  text-align: right;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
#footer #footerB .inside .first {
  flex: 0 0 80%;
  display: flex;
}
#footer #footerB .inside .first div {
  flex: 0 0 30%;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-bottom-2 {
  margin-bottom: 2rem;
}

.flex-line {
  display: flex;
  justify-content: space-evenly;
}

#nav-icon1,
#nav-icon2,
#nav-icon3,
#nav-icon4 {
  width: 60px;
  height: 45px;
  position: relative;
  margin: 50px auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span,
#nav-icon3 span,
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #747474;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#mobile {
  position: absolute;
  top: 200px;
  right: 0;
  background-color: #fff;
  padding: 1rem;
  transition: all 0.5s ease-in-out;
  z-index: 5;
  transform: translateY(-100%);
}
#mobile ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
#mobile ul li {
  padding: 0.5rem 0;
}
#mobile ul li a {
  color: #000;
  text-decoration: none;
}

body.open #mobile {
  position: fixed;
  transform: translateY(0);
}

#headerBild .content-image {
  position: relative;
}
#headerBild #social {
  position: absolute;
  top: 150px;
  right: 50px;
}

#claim {
  position: absolute;
  bottom: 10px;
  right: 50px;
  opacity: 0;
  transition: all 1.5s ease-in-out;
}
#claim.show {
  display: block;
  opacity: 1;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 18px;
}

#nav-icon1 span:nth-child(3) {
  top: 36px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

#nav-icon1 {
  display: none;
}

#mobile {
  display: none;
}

.startseite #headerBild {
  padding-top: 0px;
}
.startseite #headerBild #social {
  position: absolute;
  top: 250px;
  right: 50px;
}

@media only screen and (max-width: 1840px) {
  #unav_holder ul li {
    text-align: center;
  }
  .poster::after {
    display: none;
  }
}
@media only screen and (max-width: 1300px) {
  #unav_holder ul li {
    text-align: center;
  }
  #unav_holder ul li a,
  #unav_holder ul li strong {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1740px) {
  #bg-s9 .btn_pfeil.thin-70 {
    width: 100%;
    max-width: 610px;
  }
}
@media only screen and (max-width: 1740px) {
  .leer.left {
    padding-right: 5rem;
  }
}
@media only screen and (max-width: 1680px) {
  .grid-4-2,
  .grid-4-1,
  .grid-5-2 {
    display: grid;
    grid-template-columns: 50% 1fr;
    width: 100%;
    justify-items: center;
    grid-gap: 0 5rem;
  }
  .btn_1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .btn_2 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .btn_3 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .btn_4 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .btn_5 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .btn_6 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .teaserS .item {
    transform: scale(0.8);
  }
  .teambilder .media {
    transform: scale(0.9);
  }
  .grid-30-70 {
    grid-template-columns: 100%;
  }
}
@media only screen and (max-width: 1238px) {
  #pa2.grid-5-2 {
    grid-template-columns: 50% 1fr;
  }
  #unav_holder {
    display: none;
  }
  #nav-icon1 {
    display: block;
  }
  #mobile {
    display: block;
  }
  #headTop .inside .column {
    padding: 1rem 0;
  }
  #mobile {
    top: 160px;
  }
  .grid-4-2 {
    display: grid;
    grid-template-columns: 50% 1fr;
    width: 100%;
    justify-items: center;
    grid-gap: 0 5rem;
  }
  .btn_1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .btn_2 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .btn_3 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .btn_4 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .btn_5 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .btn_6 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .video-holder.flex-video.grid-4-4.area-2-1 {
    display: flex;
    flex-direction: column;
  }
  .grid-4-4 .content-image {
    text-align: center;
  }
  .grid-5-2 {
    grid-template-columns: 100%;
  }
  .leer {
    padding: 2rem;
  }
}
@media only screen and (max-width: 1180px) {
  .teaserS .item {
    transform: scale(0.6);
  }
  .teambilder .media {
    transform: scale(0.8);
  }
  .g-cell.flex-row.txt-center.flex-end {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 990px) {
  #pa2.grid-5-2 {
    grid-template-columns: 100%;
  }
  .grid-50-50-3 {
    grid-template-columns: 100%;
  }
  .grid-50-50 {
    display: grid;
    grid-template-columns: 100%;
  }
  .grid-4-1 {
    display: grid;
    grid-template-columns: 100%;
    width: 100%;
    justify-items: center;
    grid-gap: 0 5rem;
  }
  .area-2-1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: auto;
    grid-row-end: auto;
  }
  .area-1-1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: auto;
    grid-row-end: auto;
  }
  .grid-4-2 {
    display: grid;
    grid-template-columns: 100%;
  }
  .btn_1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .btn_2 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .btn_3 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .btn_4 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 4;
    grid-row-end: 5;
  }
  .btn_5 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 5;
    grid-row-end: 6;
  }
  .btn_6 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 63;
    grid-row-end: 7;
  }
  .hide-pop .rte {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 0;
         column-gap: 0;
    -moz-column-rule: 1px solid #ccc;
         column-rule: 1px solid #ccc;
  }
  #article-112 .content-gallery ul li {
    flex: 0 0 45%;
  }
  ul.clickable li {
    width: 46%;
  }
  #main .teaserS {
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  #main .teambilder {
    flex-wrap: wrap;
  }
  .teaserS {
    justify-content: center;
  }
  .teaserS .item {
    transform: scale(0.8);
  }
  .teambilder {
    justify-content: center;
  }
  .teambilder .media {
    transform: scale(1);
    margin-bottom: 1rem;
  }
  #nav-icon1 {
    transform: scale(0.6);
  }
}
@media only screen and (max-width: 640px) {
  .grid-4-2 {
    display: grid;
    grid-template-columns: 100%;
    width: 100%;
    justify-items: center;
    grid-gap: 0 5rem;
  }
  .btn_1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .btn_2 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .btn_3 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .btn_4 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 4;
    grid-row-end: 5;
  }
  .btn_5 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 5;
    grid-row-end: 6;
  }
  .btn_6 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 63;
    grid-row-end: 7;
  }
  .hide-pop {
    left: 0;
    right: 0;
    padding: 3rem 2rem;
  }
  .hide-pop .rte {
    -moz-column-count: 1;
    column-count: 1;
    -moz-column-gap: 0;
    column-gap: 0;
    -moz-column-rule: 1px solid #ccc;
    column-rule: 1px solid #ccc;
  }
  .padding-6,
  .padding-5 {
    padding: 2rem;
  }
  #article-112 .content-gallery ul li {
    flex: 0 0 100%;
  }
  ul.clickable li {
    width: 98%;
  }
  #headTop .inside {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #headTop .time {
    display: block;
  }
  .g-cell.flex-row.txt-center.flex-end {
    flex-wrap: wrap;
    justify-content: center;
  }
  .flex-80 {
    max-width: 100%;
  }
  #footer #footerB .inside {
    flex-wrap: wrap;
  }
  #footer #footerB .inside .column {
    flex-wrap: wrap;
  }
  #footer #footerB .inside .column .adresse {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 1rem;
  }
  #footer #footerB .inside .column div {
    width: 50%;
    flex: 0 0 50%;
  }
  #footer #footerB .inside .first {
    flex: 0 0 100%;
    display: flex;
  }
  #footer #footerB .inside .last {
    flex: 0 0 100%;
    text-align: right;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    border-top: 1px solid #fff;
    padding-top: 2rem;
  }
  #footer #footerB .inside .last .column {
    width: 45%;
    flex: 0 0 45%;
  }
  #headerBild #social {
    top: 120px;
    right: 20px;
  }
}
@media only screen and (max-width: 440px) {
  #headerBild #social {
    top: 60px;
    right: 20px;
  }
  .padding-1-5 {
    padding: 1rem 1rem;
  }
  .bg-white {
    padding: 0rem 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .content-grid {
    --content-maxwidth: 1700px;
    --padding-inline: 1rem;
    --breakout-maxwidth: 100rem;
    display: grid;
    grid-template-columns: [full-width-start] var(--padding-inline) [breakout-start] 1fr [content-start] minmax(300px, var(--content-maxwidth)) [content-end] 1fr [breakout-end] var(--padding-inline) [full-width-end];
  }
  .hide-pop {
    padding: 3rem 1.5rem !important;
  }
  #bg-s5 .poster.v11,
  #bg-s5 .poster.v21 {
    margin-right: 0;
  }
  .btn_pfeil {
    background: #3a5172;
    padding: 2rem;
    color: #fff;
    font-size: 1.8rem;
  }
  .videoholder {
    justify-content: center;
    flex-direction: column;
  }
  .videoholder img {
    margin: 0;
  }
  #a-film ul,
  #a-film li {
    padding: 0;
  }
  #a-film .content-gallery ul li {
    flex: 0 0 46% !important;
  }
  ul.clickable {
    padding: 0;
    margin: 0;
    padding-left: 0;
  }
  #background-video {
    margin-top: 175px;
  }
  #claim {
    position: absolute;
    bottom: 30px;
    right: 50px;
    opacity: 0;
    transition: all 1.5s ease-in-out;
  }
  #headerBild #social {
    top: 80px;
    right: 20px;
  }
  #headerBild .content-image::after,
  #headerBild #article-72::after {
    bottom: -90px;
  }
  #headerBild .content-image::after,
  #headerBild #article-72::after {
    content: url(../hg/ornament_kl.png);
    background: url(../hg/ornament_kl.png);
    position: absolute;
    bottom: -38px;
    z-index: 1;
    width: 100vw;
    background-repeat: repeat-x;
    overflow: hidden;
  }
  .startseite #headerBild #social {
    position: absolute;
    top: 222px;
    right: 10px;
  }
}/*# sourceMappingURL=aufbau.css.map */