@charset "UTF-8";
/* fira-sans-200 - 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: "Fira Sans";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/fira-sans-v18-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-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: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fira-sans-v18-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-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: "Fira Sans";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/fira-sans-v18-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-500 - 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: "Fira Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/fira-sans-v18-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-600 - 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: "Fira Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/fira-sans-v18-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-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: "Fira Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/fira-sans-v18-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-800 - 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: "Fira Sans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/fira-sans-v18-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-900 - 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: "Fira Sans";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/fira-sans-v18-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Gabrielle - custom font */
@font-face {
  font-display: swap;
  font-family: "Gabrielle";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gabrielle.ttf") format("truetype");
}
*, *::before, *::after {
  box-sizing: border-box;
}

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

html, body {
  font-size: 16px;
  min-height: 100vh;
}

* {
  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;
  color: var(--rost);
}

#wrapper {
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  position: relative;
}

::-moz-selection {
  color: rgb(255, 255, 255);
  background: #9b9b9b;
}

::selection {
  color: rgb(255, 255, 255);
  background: #9b9b9b;
}

/* Basis Styling */
#hamburger {
  z-index: 100;
  transform: scale(1.1);
}

.hamburger-icon-container {
  height: 1.7em;
  width: 1.7em;
  position: relative;
  cursor: pointer;
  background: none;
  border: 0px solid currentColor;
  border-radius: 3px;
}

.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 1.7em;
  background: #3C3D3E;
  transition: all 0.2s ease;
}

.hamburger-icon {
  top: 0.75em;
}

.hamburger-icon:before {
  top: -0.55em;
}

.hamburger-icon:after {
  top: 0.55em;
}

.hamburger-active .hamburger-icon {
  background: transparent;
  transform: rotate(-135deg);
}

.hamburger-active .hamburger-icon:before,
.hamburger-active .hamburger-icon:after {
  top: 0;
}

.hamburger-active .hamburger-icon:before {
  transform: rotate(90deg);
}

@media only screen and (max-width: 962px) {
  #hamburger {
    transform: scale(1);
  }
}
#header {
  padding: 0 0;
  z-index: 300;
  width: 100vw;
  overflow: visible;
}
#header:after {
  content: "";
  display: table;
  border-bottom: 3px solid #fff;
  width: 100vw;
  position: relative;
  bottom: -2rem;
  z-index: 11;
}
#header h3 {
  font-size: 1.1rem;
  color: #000;
}
#header h3 a {
  color: var(--text-color);
  text-decoration: none;
}
#header #desknav > li > ul > li > a {
  color: #fff !important;
}
#header #desknav > li > a:hover {
  color: #fff !important;
}
#header #desknav > li:hover > a {
  color: #fff !important;
}
#header #menu-head {
  --content-maxwidth: 1860px;
  --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];
}
#header #menu-head .inside {
  grid-column: content;
  display: grid;
  grid-template-columns: repeat(6, auto);
  justify-content: space-around;
  z-index: 100;
  margin-top: 3rem;
  margin-bottom: 1rem;
  align-items: center;
}
#header #menu-head .inside #top-left,
#header #menu-head .inside #top-center,
#header #menu-head .inside #top-center-r,
#header #menu-head .inside #top-right {
  flex: 0 0 20%;
}
#header #menu-head .inside #top-left a,
#header #menu-head .inside #top-left h3,
#header #menu-head .inside #top-center a,
#header #menu-head .inside #top-center h3,
#header #menu-head .inside #top-center-r a,
#header #menu-head .inside #top-center-r h3,
#header #menu-head .inside #top-right a,
#header #menu-head .inside #top-right h3 {
  text-decoration: none;
  color: var(--rot);
  font-size: 1.1rem;
  font-weight: 500;
}
#header #menu-head .inside #top-left {
  grid-column: 1/2;
  text-align: center;
}
#header #menu-head .inside #top-left a {
  text-align: center;
}
#header #menu-head .inside #top-left img {
  margin: 0 auto;
  height: auto;
}
#header #menu-head .inside #filmHolder {
  grid-column: 3/4;
}
#header #menu-head .inside #top-center {
  grid-column: 2/3;
}
#header #menu-head .inside #top-center h3 {
  text-align: center !important;
  font-family: "Fira Sans";
}
#header #menu-head .inside #top-center-r {
  grid-column: 3/4;
}
#header #menu-head .inside #top-center-r h3 {
  text-align: center !important;
  font-family: "Fira Sans";
}
#header #menu-head .inside #top-right {
  grid-column: 4/5;
  display: flex;
  align-items: center;
  gap: 3rem;
}
#header #menu-head .inside #top-rright {
  grid-column: 6/7;
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: flex-end;
  text-align: right;
}
#header #menu-head .inside #logo {
  height: auto;
}
#header #top-logo img {
  max-width: 200px;
  width: 100%;
}
#header #btn_close,
#header #btn_nav {
  cursor: pointer;
  display: none;
  width: 8vw;
  max-width: 50px;
}
#header #twenty-for-seven {
  font-size: 1.5rem;
  cursor: pointer;
}
#header #headerImage {
  display: grid;
  position: relative;
}
#header #headerImage #logo {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
  transform: translateX(-50%);
  cursor: pointer;
}
#header #headerImage #logo img {
  max-width: 200px;
  width: 100%;
}
#header h3.phone {
  cursor: pointer;
  display: flex;
  align-items: center;
}
#header h3.phone::before {
  content: "";
  background-image: url("../hg/phone.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 3rem;
  height: 52px;
  margin-right: 1.2rem;
}
#header #btn_filme::before,
#header #btn_gedenkportal::before {
  content: "";
  background-image: url("../hg/btn_video.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 3rem;
  height: 52px;
  margin-right: 1.2rem;
}
#header #btn_gedenkportal::before {
  background-image: url("../hg/btn_gp.png");
}

.head-transparent #header {
  background-color: transparent;
}

@media only screen and (max-width: 1268px) {
  #header .inside #menu-head #top-left {
    flex: 0 0 30%;
  }
  #header .inside #menu-head #top-center {
    flex: 0 0 40%;
    text-align: center;
  }
  #header .inside #menu-head #top-center img {
    margin: 0 auto;
  }
  #header .inside #menu-head #top-right {
    flex: 0 0 30%;
  }
}
@media only screen and (max-width: 800px) {
  #header #menu-head .inside {
    grid-column: content;
    display: grid;
    grid-template-columns: repeat(6, auto);
    grid-template-rows: auto auto auto;
    justify-content: space-around;
    z-index: 100;
    margin-top: 3rem;
    margin-bottom: 1rem;
    align-items: center;
  }
  #header #menu-head .inside #top-left {
    grid-column: 1/2;
    grid-row: 1/4;
    text-align: center;
  }
  #header #menu-head .inside #top-center {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  #header #menu-head .inside #top-center-r {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  #header #menu-head .inside #top-right {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media only screen and (max-width: 768px) {
  #header #menu-head .inside #top-logo img {
    max-width: 50%;
  }
  #header .content-grid {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  #header #headerImage #logo {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1000;
    transform: translateX(0);
  }
}
.startseite_ #header {
  position: absolute;
  background-color: #fff;
  z-index: 2;
}
.startseite_ #header .head-line {
  background: transparent;
  box-shadow: 0px 9px 15px -7px rgba(0, 0, 0, 0);
}
.startseite_ #header #menu-head .inside {
  position: fixed;
  width: 100%;
  grid-column: content;
  display: grid;
  grid-template-columns: 30% 1fr 30%;
  height: 15rem;
  background: rgb(255, 255, 255);
  z-index: 100;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
}
.startseite_ #container {
  padding-top: 0;
}
.startseite_ #start-video h1.headline {
  position: relative;
  left: -5rem;
  width: 100%;
  font-size: 5.5rem;
  line-height: 5.5rem;
  z-index: 0;
  color: #fff;
  grid-area: headline;
}

@media only screen and (max-width: 581px) {
  #header #top-center h3.phone {
    font-size: 1.1rem !important;
  }
}
@media only screen and (max-width: 530px) {
  #header #menu-head #top-left {
    flex: 60%;
  }
  #header #menu-head #top-center {
    flex: 30% !important;
  }
  #header #menu-head #top-center .phone {
    font-size: 1rem;
    transform-origin: center;
  }
  #header #menu-head #top-center .phone:before {
    content: "";
    background-image: url(../icons/phone.png);
    background-size: 100% 100%;
    padding-right: 0.6rem;
    display: inline-block;
    /*size of your image*/
    height: 15px;
    width: 10px;
  }
}
@media only screen and (max-width: 400px) {
  #header #twenty-for-seven {
    font-size: 1.2rem;
  }
  #header #menu-head {
    --padding-inline: 1.5rem;
  }
}
#footer {
  position: absolute;
  bottom: 0;
  z-index: 1000;
  padding-bottom: 0;
  color: #fff;
  width: 100vw;
  font-size: 1.25rem;
}
#footer p {
  font-size: 1.1875rem;
  color: var(--text-color);
  text-transform: uppercase;
}
#footer .item.right, #footer .item.rright {
  padding-top: 2rem;
}
#footer #footer-inline {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  padding-top: 0;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
#footer #footer-inline .item.left {
  grid-column: 1/2;
}
#footer #footer-inline .item.right {
  grid-column: 4/5;
}
#footer #footer-inline .item.rright {
  grid-column: 5/6;
}
#footer #footer-inline a {
  text-decoration: none;
}
#footer #footer-inline .line {
  width: 100%;
  margin: 0;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(12, 1fr);
  background-color: rgba(0, 0, 0, 0.5);
  padding-bottom: 2rem;
}
#footer #footer-inline .line.first {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
#footer #footer-inline .line a {
  color: #fff;
  text-transform: none;
  font-size: 1.25rem;
}
#footer #footer-inline .line .row {
  margin: 1.5rem 0;
}
#footer #footer-inline .line .row p {
  line-height: 1.8rem;
  margin-bottom: 0;
  margin-top: 0;
}
#footer #footer-inline .line .row.columnR {
  display: grid;
  grid-template-columns: auto 1fr;
}
#footer #footer-inline .line .row.columnR .column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#footer #footer-inline .line .row.columnR .column img {
  padding: 0.1rem 0;
}
#footer #footer-inline .line #ctrl_85 {
  width: 100%;
  font-size: 0.9rem;
}
#footer #footer-inline .line .item.left {
  grid-column: 1/4;
  text-align: left;
}
#footer #footer-inline .line .item.right {
  grid-column: 5/7;
}
#footer #footer-inline .line .item.rright {
  grid-column: 7/9;
}
#footer #footer-inline h3.phone {
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 600;
}
#footer #footer-inline h3.phone::before {
  content: "";
  background-image: url("../hg/phone.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  margin-right: 1.2rem;
}
#footer #footer-inline h3 {
  font-size: 1.25rem;
  color: #000;
  font-weight: 600;
}
#footer #footer-inline h3.weg {
  display: flex;
}
#footer #footer-inline h3.weg::before {
  content: "";
  background-image: url("../hg/weg.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  margin-right: 1.2rem;
}
#footer #footer-inline h3.mail {
  display: flex;
}
#footer #footer-inline h3.mail::before {
  content: "";
  background-image: url("../hg/mail.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  margin-right: 1.2rem;
}
#footer #map-footer,
#footer .item.rright {
  line-height: 1.5rem;
}
#footer .item.rright .column {
  line-height: 1.5rem;
}
#footer .item.rright .column a {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.5rem;
}
#footer #gh-text {
  display: none;
}
#footer .flexform .row {
  display: grid;
  grid-template-columns: 50% auto;
  grid-gap: 1rem;
}
#footer .flexform .row .column {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}
#footer .flexform .row:nth-of-type(2) div, #footer .flexform .row:nth-of-type(3) div {
  grid-column: 1/3;
}
#footer .flexform input,
#footer .flexform textarea {
  width: 100%;
  padding-left: 10px;
}
#footer .flexform input::-moz-placeholder, #footer .flexform textarea::-moz-placeholder {
  font-weight: bold;
  opacity: 1;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding-top: 10px;
}
#footer .flexform input::placeholder,
#footer .flexform textarea::placeholder {
  font-weight: bold;
  opacity: 1;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding-top: 10px;
}
#footer #ctrl_84 {
  border: 0;
  color: #fff;
  font-size: 0.7rem;
}
#footer #ctrl_84 #lbl_84_0 {
  color: #fff;
  font-size: 0.7rem;
}
#footer .paragraph {
  grid-column: 3/4;
}
#footer .paragraph p {
  line-height: 2rem;
}
#footer .point {
  text-align: left;
}
#footer .point.content-image img {
  max-width: 238px;
  height: auto;
}
#footer .paragraph {
  text-transform: none;
}
#footer .paragraph p {
  margin: 0;
  padding: 0;
  font-weight: 400;
}
#footer #footer p,
#footer #footer a {
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
  color: #000;
}
#footer #footer .fullwidthF {
  text-align: center;
  font-weight: 300;
}
#footer #footer .fullwidthF p {
  font-weight: 100 !important;
  font-size: 1.25rem;
}
#footer .head {
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
#footer .head + p {
  margin-top: 0.2rem;
}

@media only screen and (max-width: 860px) {
  #footer .line.second .item.center {
    flex: 0 0 20%;
  }
  #footer .line.second .item.center .rte .line {
    flex-direction: column;
  }
  #footer .line.second .item.left, #footer .line.second .item.right {
    flex: 0 0 40%;
  }
}
@media only screen and (max-width: 700px) {
  #footer .line.second .item.center {
    flex: 0 0 50%;
  }
  #footer .line.second .item.center .rte .line {
    flex-direction: column;
  }
  #footer .line.second .item.left {
    flex: 0 0 50%;
  }
  #footer .line.second .item.right {
    flex: 0 0 100%;
  }
  #footer #footer-inline .line {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 630px) {
  .point {
    text-align: left;
  }
  .point.content-image img {
    max-width: 250px;
    height: auto;
    padding: 2rem;
  }
  #footer-inline .line {
    justify-items: center;
    padding: 0 0rem !important;
  }
  #footer-inline .line .item {
    padding: 0 1rem !important;
  }
}
@media only screen and (max-width: 500px) {
  #footer #footer-inline .line:nth-of-type(2) {
    justify-content: center;
  }
}
.footer-white #footer,
.f-white #footer {
  background-color: white;
}

/* Basis Styling */
.hamburger-icon-container {
  height: 1.7em;
  width: 1.7em;
  position: relative;
  cursor: pointer;
  border-radius: 3px;
}
.hamburger-icon-container.white .hamburger-icon,
.hamburger-icon-container.white .hamburger-icon:before,
.hamburger-icon-container.white .hamburger-icon:after {
  background: #fff !important;
}

.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 1.7em;
  background: #000;
  transition: all 0.2s ease;
}

.hamburger-icon {
  top: 0.75em;
}

.hamburger-icon:before {
  top: -0.55em;
}

#hamburger {
  cursor: pointer;
}
#hamburger img {
  max-height: 50px;
}

.hamburger-icon:after {
  top: 0.55em;
} 
:root {
  --navwidth: 100vw;
  --navheight: 100vh;
  --active: #fff;
}

#left {
  width: var(--navwidth);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  background-color: var(--gelb);
  z-index: 20000;
  margin-left: 0;
  transform-origin: center top;
  transform: translateY(calc(var(--navheight) * -1));
  transition: all 0.3s ease-in-out;
}
#left #navigation #navHolder {
  overflow: scroll;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 5% 85%;
  gap: 1rem;
  height: 100vh;
}
#left #navigation #navHolder .row {
  width: 100%;
}
#left #navigation #navHolder .row .level_1 {
  list-style: none;
}
#left #navigation #navHolder .row .level_1 li {
  position: relative;
  z-index: 1;
  z-index: 20;
}
#left #navigation #navHolder .row .level_1 li a,
#left #navigation #navHolder .row .level_1 li strong {
  color: #c6c6c6;
  font-size: 1.5rem;
  font-weight: 100;
  padding: 1rem 0.5rem;
  display: block;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  font-family: "DM Serif Display";
  font-style: normal;
}
#left #navigation #navHolder .row .level_1 li a.active,
#left #navigation #navHolder .row .level_1 li strong.active {
  color: var(--active);
}
#left #navigation #navHolder .row .level_1 li strong {
  color: var(--gruenDark) !important;
  cursor: pointer;
}
#left #navigation #navHolder .row .level_1 li strong.active, #left #navigation #navHolder .row .level_1 li strong.trail {
  color: var(--gruenDark) !important;
}
#left #navigation #navHolder .row .level_1 li .level_2 {
  list-style: none !important;
  margin-left: 0;
  padding-left: 10px;
  z-index: 1000;
}
#left #navigation #navHolder .row .level_1 li .level_2 li {
  list-style: none !important;
}
#left #navigation #navHolder .row .level_1 li .level_2 a,
#left #navigation #navHolder .row .level_1 li .level_2 strong {
  color: var(--gruen);
  font-size: 1.75rem;
  font-weight: 300;
  padding: 0;
  line-height: 3rem;
  font-family: "Fira Sans";
  text-transform: none;
}
#left #navigation #navHolder .row .level_1 li .level_2 a:hover,
#left #navigation #navHolder .row .level_1 li .level_2 strong:hover {
  color: var(--gruenDark) !important;
}
#left #navigation #navHolder .row .level_1 li .level_2 strong {
  color: var(--gruenDark) !important;
  font-weight: 400;
}
#left #navigation #navHolder .row .level_1 li:hover {
  z-index: 2000000;
}
#left #navigation #navHolder .row .level_1 li strong.trail.hide + .level_2 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(50px);
}
#left #navigation #navHolder .row.first {
  text-align: right;
  position: relative;
  grid-row: 1/2;
}
#left #navigation #navHolder .row.first #btn_close {
  position: absolute;
  top: 1rem;
  right: 10%;
  cursor: pointer;
}
#left #navigation #navHolder .row.second {
  grid-row: 2/3;
  position: relative;
}
#left #navigation #navHolder .row.second #btn_close {
  position: absolute;
  top: 1rem;
  right: 0;
  cursor: pointer;
}
#left #navigation #navHolder::after {
  display: none;
}
#left strong.kontakthead,
#left a.kontakthead {
  display: none !important;
}

body.showNavP #left {
  transform: translateY(0);
}

.kontakthead li a,
.kontakthead li strong {
  color: #fff;
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 1rem 0.5rem;
  display: block;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  font-family: "Libre Bodoni";
}
.kontakthead li a.active,
.kontakthead li strong.active {
  color: var(--active);
}

.hamburger-active #left {
  transform: translateX(0px);
}

@media only screen and (max-width: 760px) {
  #left #navigation #navHolder .column .level_1 li a,
  #left #navigation #navHolder .column .level_1 li strong {
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
  }
  #left #navigation #navHolder .column .level_1 li .level_2 {
    list-style: none !important;
    position: static;
    margin-left: 0;
    top: 0;
    z-index: 100000000;
    opacity: 1;
    transition: transform 0.2s;
    transform: translateX(0);
  }
  .mod_navigation {
    margin-top: 0rem;
  }
  #left #navigation .level_1 li.submenu {
    flex: 0 0 48%;
  }
  #left #navigation #navHolder {
    gap: 0%;
  }
  #left #navigation #navHolder .row .level_1 li a,
  #left #navigation #navHolder .row .level_1 li strong {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 500px) {
  #left #navigation .level_1 li.submenu {
    flex: 0 0 100%;
  }
  #left #navigation .level_1 li {
    text-align: center !important;
  }
  #left #navigation .level_1 li a,
  #left #navigation .level_1 li strong {
    text-align: center !important;
  }
}
#kontakt .formbody {
  padding: 2rem;
}

#kontakt {
  padding-bottom: 10rem;
}

#kontakt .formbody .flexform {
  display: flex;
}

#kontakt .formbody .flexform .column {
  flex: 0 0 50%;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#kontakt .formbody .flexform .column input,
#kontakt .formbody .flexform .column textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  margin-bottom: 0;
  border: 0;
}

#kontakt .formbody .flexform .column textarea {
  height: 100%;
}

#kontakt fieldset {
  border: 0;
}

#kontakt .explanation,
#kontakt label, #kontakt legend {
  color: #fff;
  font-weight: 500;
}

#kontakt button {
  background-color: var(--gruen);
  color: white;
  border: 0;
}

#kontakt .widget {
  display: flex;
  flex-direction: column;
  margin-right: 2rem;
  margin-top: 2rem;
}

#kontakt .flexrow {
  margin-top: 0;
}

#kontakt h2 {
  margin-top: 3rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
}

#kontakt .flexrow .widget {
  flex: 0 0 50%;
}

@media only screen and (max-width: 550px) {
  #kontakt .formbody .flexform {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
} 
:root {
  --padding-inline: 3rem;
  --rot: #8e2424;
  --rot: #981b1b;
  --rot-rgb: 142, 36, 36;
  --weiss: #feffff;
  --weiss-rgb: 254, 255, 255;
  --blau: #120c1b;
  --gelb: #fef9c9;
  --gold2: #876f46;
  --gold3: #6a4c18;
  --gruen: #006d6d;
  --gruenDark: #0d4141;
  --gruen-rgba: 0, 109, 109;
  --hell-gruen: #4bf0f0;
  --gold2-rgb: 135, 111, 70;
  --gold3-rgb: 106, 76, 24;
  --rot-rgb: 152, 27, 27;
  --text-color: #fff;
  --text-tuerkis: #4e878c;
  --max-width-text: 700px;
  --max-width-full: 1680px;
  --max-width-bg: 1200px;
  --max-width-main: 960px;
  --max-width-column2: 1300px;
  --scale: 1.05;
  --marginLeft: 7rem;
}

html {
  font-size: 16px;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  color: var(--blau);
  font-family: "Fira Sans";
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
}

#wrapper {
  width: 100vw;
  overflow: hidden;
  border-bottom: 50px solid #3d3d3d;
}

body {
  background-color: #fff;
  width: 100vw;
  overflow-x: hidden;
  max-width: 100vw;
}
body.hamburger-active #navigation-table {
  transform: translateY(0px);
}
body.hamburger-active #header #headerImage #logo {
  transform: scale(0);
  transform: translate(-50%, -100%);
}

#tl_login_8 label {
  display: block;
}
#tl_login_8 .formbody {
  display: table;
  margin: 0 auto;
}
#tl_login_8 .widget-submit {
  display: block;
  margin: 1rem auto;
}

.mod_login {
  display: none;
}
.mod_login h2 {
  display: table !important;
  text-align: center !important;
  margin: 0 auto !important;
  margin-top: 1rem !important;
}

#mobile-nav {
  display: none;
}

section {
  border-bottom: 5px solid #fff;
}

body.startseite {
  background: url("../heinemann/start.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  max-width: 100vw;
}
body.startseite #header {
  background-color: #fff;
}
body.startseite #main h1 {
  font-size: 7rem !important;
}
body.startseite section.grid .inside-grid {
  display: block;
}
body.startseite section.grid .inside-grid .content-text-p {
  display: grid;
  grid-template-rows: repeat(12, auto);
  grid-template-columns: repeat(12, 1fr);
  width: 100vw;
}
body.startseite section.grid .inside-grid .content-text-p .content-text {
  background: none;
}
body.startseite section.grid .inside-grid .g3-10 {
  display: none;
}
body.startseite section.grid .inside-grid #headline {
  grid-column: 4/12 !important;
  grid-row: 1/4;
  padding-left: 0;
}
body.startseite section.grid .inside-grid #side-buttons {
  grid-column: 1/4 !important;
  grid-row: 4/8;
  padding-left: 0;
}
body.startseite section.grid .inside-grid #center-text {
  grid-column: 4/12 !important;
  grid-row: 4/8;
  padding-left: 0;
}
body.startseite section.grid .inside-grid #logo-start {
  grid-column: 4/10 !important;
  grid-row: 7/10;
  padding-left: 0;
}
body.startseite section.grid .inside-grid #wolf {
  grid-column: 1/13 !important;
  grid-row: 7/13;
  position: relative;
  z-index: 0;
}
body.startseite #side-buttons {
  z-index: 98;
}
body.startseite .btn_start {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  margin-bottom: 1rem;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}
body.startseite .btn_start a {
  text-decoration: none;
}
body.startseite .btn_start:hover {
  background: rgba(255, 255, 255, 0.4);
}
body.startseite .phone {
  color: #fff;
  font-size: 2rem;
  padding-left: 1rem;
  font-weight: 600;
  cursor: pointer;
}
body.startseite .phone:before {
  content: url("../hg/phone-white.png");
  margin-right: 0.5rem;
  display: inline-block;
}

.question {
  cursor: pointer;
}

.secondAbsolute {
  z-index: 2000;
}

.einR {
  margin-right: 7rem !important;
}

.einL {
  margin-left: var(--marginLeft) !important;
}

#leistungen.show .rte {
  padding-left: 6rem;
}
#leistungen.show.einR {
  margin-right: 0 !important;
}

#b-arten .btn_close {
  font-size: 1.8rem;
  color: #ffffff;
  background: var(--rot);
  padding: 1rem;
  position: absolute;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 3px solid #fff;
  font-weight: bold;
}

section.grid.faq-video {
  position: relative;
}
section.grid.faq-video .inside-grid {
  grid-template-rows: repeat(12, auto) !important;
  padding-bottom: 300px;
}
section.grid.faq-video .inside-grid #wolfani {
  position: absolute !important;
}
section.grid.faq-video .content-player {
  position: absolute;
  height: 100%;
}
section.grid .inside-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto;
}
section.grid .inside-grid .bg-image {
  grid-column: 1/-1;
  grid-row: 1/-1;
  height: 100% !important;
}
section.grid .inside-grid .bg-image img {
  width: 100%;
  height: auto;
}
section.grid .inside-grid .bg-image figure {
  height: 100%;
}
section.grid .inside-grid .bg-image figure video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  height: auto;
}
section.grid .inside-grid .content-text-p {
  grid-column: 7/13;
  grid-row: 1/2;
  margin: 0.5rem 0;
}
section.grid .inside-grid .content-text-p .content-text {
  background-color: rgba(var(--rot-rgb), 0.8);
  padding: 1rem 3rem;
  transition: all 0.3s ease;
}
section.grid .inside-grid .content-text-p.row-full {
  grid-column: 1/-1;
}
section.grid .inside-grid .content-text-p.left-p {
  grid-column: 1/7;
}
section.grid .inside-grid .content-text-p.left-p .content-text {
  padding-left: 6rem;
}
section.grid .inside-grid .content-text-p.left-p.fua .content-text {
  padding-left: 2rem;
}
section.grid .inside-grid .content-text-p.center-p {
  grid-column: 3/11;
}
section.grid .inside-grid .content-text-p.expand-horizontal {
  grid-column: 1/-1;
}
section.grid .inside-grid .content-text-p.expand-horizontal .content-text {
  display: inline-block;
  position: relative;
  width: 45%;
}
section.grid .inside-grid .content-text-p.expand-horizontal .content-text .rte {
  display: inline-flex;
  gap: 2rem;
}
section.grid .inside-grid .content-text-p.expand-horizontal .content-text .rte .teaser-p {
  flex: 0 0 100%;
}
section.grid .inside-grid .content-text-p.expand-horizontal .content-text .rte .teaser-p.exp {
  max-width: 0;
}
section.grid .inside-grid .content-text-p.expand-horizontal.show {
  margin-right: var(--marginLeft) !important;
}
section.grid .inside-grid .content-text-p.expand-horizontal.show .content-text {
  width: 100%;
}
section.grid .inside-grid .content-text-p.expand-horizontal.show .content-text .rte .teaser-p {
  flex: 0 0 50%;
}
section.grid .inside-grid .content-text-p.expand-horizontal.show .content-text .rte .teaser-p.exp {
  max-width: 100%;
  flex: 0 0 50%;
}
section.grid .inside-grid .content-text-p.expand-horizontal .btn_mehr {
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-transform: uppercase;
}
section.grid .inside-grid .content-text-p.leftS {
  grid-column: 1/7 !important;
}
section.grid.side-by-side .inside-grid {
  grid-template-rows: repeat(12, 1fr);
}
section.grid.side-by-side .inside-grid .content-text-p.second {
  grid-row: 2/12 !important;
  grid-column: 1/7 !important;
  align-self: end;
}
section.grid.side-by-side .inside-grid .content-text-p.first {
  grid-row: 2/12 !important;
  grid-column: 7/13 !important;
  align-self: flex-start;
}
section.grid.side-by-side .inside-grid .content-text-p.firstL {
  grid-row: 2/6 !important;
  grid-column: 1/7 !important;
}
section.grid.double .inside-grid {
  grid-template-rows: auto auto;
}
section.grid.double .inside-grid .content-text-p.second {
  grid-row: 2/3 !important;
  justify-self: end;
}
section.grid.double .inside-grid .content-text-p.first {
  grid-row: 1/2 !important;
}
section .content-text-f {
  grid-column: 7/13;
  grid-row: 1/2;
}
section .content-text-f .reverse {
  display: grid;
  display: grid;
}
section .content-text-f .reverse .rte {
  display: flex;
  grid-column: 1/-1;
  padding: 1rem 5rem;
  background-color: rgba(var(--rot-rgb), 0.8);
}
section .content-text-f .reverse .rte .teaser-p {
  flex: 0 0 100%;
}
section .content-text-f .hide-p {
  display: none;
}
section .content-text-f.show {
  grid-column: 1/13 !important;
}
section .content-text-f.show .teaser-p {
  flex: 0 0 50% !important;
}
section .content-text-f.show .hide-p {
  display: block;
}
section .content-text-f.show .hide-p .teaser-p {
  flex: 0 0 50%;
}
section.v-center .content-text-p {
  align-self: center;
}

.layer {
  grid-column: 1/-1;
  background-color: #958989;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1010;
  overflow: hidden;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  transform-origin: center center;
}
.layer.scrollable {
  overflow: auto;
  grid-template-columns: 1fr;
}
.layer .row {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--rot);
  gap: 10%;
  margin-bottom: 1rem;
  align-items: center;
}
.layer .row .content-image,
.layer .row .content-text {
  flex: 0 0 45%;
  gap: 5%;
  padding: 1rem;
}
body.showLayer .layer {
  display: grid;
  max-width: 100vw;
  max-height: 100vh;
  opacity: 1;
  transform: scale(1);
}

#pageForm {
  padding-bottom: 10rem;
}

.bg-grau {
  background-color: #f5f5f5;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.bg-grau strong {
  color: #990000;
  font-size: 1.3rem;
}
.bg-grau p,
.bg-grau li {
  color: #333 !important;
}
.bg-grau p::before,
.bg-grau li::before {
  color: #333 !important;
}

#main .inside,
#main .content-center-overlay,
#main .grid12.full-width,
#footer .inside,
#footer .content-center-overlay,
#footer .grid12.full-width,
#menu-head .inside,
#menu-head .content-center-overlay,
#menu-head .grid12.full-width {
  --content-maxwidth: var(--max-width-main);
  --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];
}
#main .inside > *, #main .inside > .content,
#main .content-center-overlay > *,
#main .content-center-overlay > .content,
#main .grid12.full-width > *,
#main .grid12.full-width > .content,
#footer .inside > *,
#footer .inside > .content,
#footer .content-center-overlay > *,
#footer .content-center-overlay > .content,
#footer .grid12.full-width > *,
#footer .grid12.full-width > .content,
#menu-head .inside > *,
#menu-head .inside > .content,
#menu-head .content-center-overlay > *,
#menu-head .content-center-overlay > .content,
#menu-head .grid12.full-width > *,
#menu-head .grid12.full-width > .content {
  grid-column: content;
}
#main .inside > #footer-inline,
#main .content-center-overlay > #footer-inline,
#main .grid12.full-width > #footer-inline,
#footer .inside > #footer-inline,
#footer .content-center-overlay > #footer-inline,
#footer .grid12.full-width > #footer-inline,
#menu-head .inside > #footer-inline,
#menu-head .content-center-overlay > #footer-inline,
#menu-head .grid12.full-width > #footer-inline {
  grid-column: full-width;
}
#main .inside > #header-image, #main .inside > .header-image,
#main .content-center-overlay > #header-image,
#main .content-center-overlay > .header-image,
#main .grid12.full-width > #header-image,
#main .grid12.full-width > .header-image,
#footer .inside > #header-image,
#footer .inside > .header-image,
#footer .content-center-overlay > #header-image,
#footer .content-center-overlay > .header-image,
#footer .grid12.full-width > #header-image,
#footer .grid12.full-width > .header-image,
#menu-head .inside > #header-image,
#menu-head .inside > .header-image,
#menu-head .content-center-overlay > #header-image,
#menu-head .content-center-overlay > .header-image,
#menu-head .grid12.full-width > #header-image,
#menu-head .grid12.full-width > .header-image {
  grid-column: full-width;
}
#main .inside > .column-2,
#main .content-center-overlay > .column-2,
#main .grid12.full-width > .column-2,
#footer .inside > .column-2,
#footer .content-center-overlay > .column-2,
#footer .grid12.full-width > .column-2,
#menu-head .inside > .column-2,
#menu-head .content-center-overlay > .column-2,
#menu-head .grid12.full-width > .column-2 {
  grid-column: full-width;
  max-width: var(--max-width-column2);
  margin: 0 auto;
}
#main .inside > .content-wide,
#main .content-center-overlay > .content-wide,
#main .grid12.full-width > .content-wide,
#footer .inside > .content-wide,
#footer .content-center-overlay > .content-wide,
#footer .grid12.full-width > .content-wide,
#menu-head .inside > .content-wide,
#menu-head .content-center-overlay > .content-wide,
#menu-head .grid12.full-width > .content-wide {
  grid-column: full-width;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
#main .inside > .content-wide .teaser,
#main .content-center-overlay > .content-wide .teaser,
#main .grid12.full-width > .content-wide .teaser,
#footer .inside > .content-wide .teaser,
#footer .content-center-overlay > .content-wide .teaser,
#footer .grid12.full-width > .content-wide .teaser,
#menu-head .inside > .content-wide .teaser,
#menu-head .content-center-overlay > .content-wide .teaser,
#menu-head .grid12.full-width > .content-wide .teaser {
  grid-column: 2/12;
  padding: 0 2.5rem;
}
#main .inside > .inner-grid, #main .inside > .full-width,
#main .content-center-overlay > .inner-grid,
#main .content-center-overlay > .full-width,
#main .grid12.full-width > .inner-grid,
#main .grid12.full-width > .full-width,
#footer .inside > .inner-grid,
#footer .inside > .full-width,
#footer .content-center-overlay > .inner-grid,
#footer .content-center-overlay > .full-width,
#footer .grid12.full-width > .inner-grid,
#footer .grid12.full-width > .full-width,
#menu-head .inside > .inner-grid,
#menu-head .inside > .full-width,
#menu-head .content-center-overlay > .inner-grid,
#menu-head .content-center-overlay > .full-width,
#menu-head .grid12.full-width > .inner-grid,
#menu-head .grid12.full-width > .full-width {
  grid-column: full-width;
}
#main .inside > .inner-grid img, #main .inside > .full-width img,
#main .content-center-overlay > .inner-grid img,
#main .content-center-overlay > .full-width img,
#main .grid12.full-width > .inner-grid img,
#main .grid12.full-width > .full-width img,
#footer .inside > .inner-grid img,
#footer .inside > .full-width img,
#footer .content-center-overlay > .inner-grid img,
#footer .content-center-overlay > .full-width img,
#footer .grid12.full-width > .inner-grid img,
#footer .grid12.full-width > .full-width img,
#menu-head .inside > .inner-grid img,
#menu-head .inside > .full-width img,
#menu-head .content-center-overlay > .inner-grid img,
#menu-head .content-center-overlay > .full-width img,
#menu-head .grid12.full-width > .inner-grid img,
#menu-head .grid12.full-width > .full-width img {
  width: 100%;
  height: auto;
}
#main .inside > .breakout,
#main .content-center-overlay > .breakout,
#main .grid12.full-width > .breakout,
#footer .inside > .breakout,
#footer .content-center-overlay > .breakout,
#footer .grid12.full-width > .breakout,
#menu-head .inside > .breakout,
#menu-head .content-center-overlay > .breakout,
#menu-head .grid12.full-width > .breakout {
  grid-column: breakout;
}
#main .inside > .overlay-hg,
#main .content-center-overlay > .overlay-hg,
#main .grid12.full-width > .overlay-hg,
#footer .inside > .overlay-hg,
#footer .content-center-overlay > .overlay-hg,
#footer .grid12.full-width > .overlay-hg,
#menu-head .inside > .overlay-hg,
#menu-head .content-center-overlay > .overlay-hg,
#menu-head .grid12.full-width > .overlay-hg {
  grid-column: full-width;
}

section.full-width .inside-grid {
  max-width: 100vw;
  margin: 0 auto;
  width: 100%;
}

.content-text-p .txt_mehr,
.content-text-f .txt_mehr {
  overflow: hidden;
  max-height: 0px;
  opacity: 1;
  transition: all 0.5s ease;
}
.content-text-p.show .txt_mehr,
.content-text-f.show .txt_mehr {
  max-height: 800px;
  opacity: 1;
  height: auto;
}
.content-text-p .btn_mehr,
.content-text-p .btn_link,
.content-text-p .btn_close,
.content-text-p .closeLayer,
.content-text-f .btn_mehr,
.content-text-f .btn_link,
.content-text-f .btn_close,
.content-text-f .closeLayer {
  position: relative;
  display: table;
  color: #fff;
  margin-right: 0;
  margin-left: auto;
  cursor: pointer;
  text-transform: uppercase;
}
.content-text-p .btn_link,
.content-text-p .closeLayer,
.content-text-f .btn_link,
.content-text-f .closeLayer {
  margin-right: auto;
  margin-left: 0;
  text-transform: uppercase;
}

.btn_link,
.closeLayer {
  margin-right: auto;
  margin-left: 0;
  text-transform: uppercase;
  cursor: pointer;
}

#main .head {
  grid-column: full-width;
}
#main .head img {
  width: 100%;
  height: auto;
}

#kontakt {
  background: rgba(var(--rot-rgb), 0.8);
  padding: 2rem;
}

#article-2800 p,
#article-2800 a {
  color: var(--gruen) !important;
  font-size: 1rem !important;
}

#header-image,
.header-image {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  position: relative;
}
#header-image .content-image,
.header-image .content-image {
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: 5;
}
#header-image figure img,
.header-image figure img {
  width: 100%;
}

#toTop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  cursor: pointer;
  transform: scale(0);
  transition: all 0.3s;
}
#toTop.show {
  transform: scale(1);
}

#article-1493 em strong {
  color: var(--rot);
  font-style: normal;
}

#main .slick-next.slick-arrow,
#main .slick-prev.slick-arrow {
  display: none !important;
}

#article-2821 figcaption {
  font-size: 1.2rem;
  padding-left: 1rem;
}

.secondAbsolute {
  position: relative;
  grid-row: 1/-1 !important;
}
.secondAbsolute .answer {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  opacity: 0;
  background-color: rgba(var(--rot-rgb), 1) !important;
}
.secondAbsolute .answer.show {
  opacity: 1;
}
.secondAbsolute .answer:after {
  content: url("../hg/blase.webp");
  position: absolute;
  top: auto;
  bottom: -148px;
  left: 50%;
  width: 78px;
  height: 150px;
  z-index: -1;
}

#adressen .book-list {
  list-style: none;
  padding: 0;
}
#adressen .book {
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
#adressen .title {
  font-weight: normal;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--gruen);
}
#adressen .subtitle2 {
  font-style: normal;
  margin-bottom: 0rem;
  font-size: 1rem;
  line-height: 1.5rem !important;
  color: var(--gruen);
  text-transform: normal;
  font-weight: normal;
}
#adressen .subtitle {
  font-style: normal;
  margin-bottom: 0rem;
  font-size: 1rem;
  line-height: 1.5rem !important;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
}
#adressen .time,
#adressen .phone,
#adressen .contact {
  font-size: 0.8rem;
}
#adressen .author,
#adressen .isbn,
#adressen .publisher {
  margin: 0.2rem 0;
  font-size: 0.8rem;
  line-height: 0.8rem !important;
}
#adressen .author {
  color: #000;
}
#adressen .age,
#adressen .email,
#adressen .website {
  font-size: 0.8rem;
}
#adressen .age a,
#adressen .email a,
#adressen .website a {
  font-size: inherit;
}

#image_2 .inside-grid .content-image:nth-child(1) {
  z-index: 1;
  padding-top: 8rem;
}
#image_2 .inside-grid .content-image:nth-child(2) {
  z-index: 10;
}

body.show #header-image .teaserT .rightT,
body.show #header-image .teaserT .leftT {
  transform: translateX(0);
}

.header-image.in-view .teaserT .rightT,
.header-image.in-view .teaserT .leftT {
  transform: translateX(0);
}

.v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.v-center.h-left {
  align-items: flex-start;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 2.8rem;
  font-family: "Red Rose";
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
}

p {
  font-family: "Fira Sans";
  font-size: 1.375rem;
  line-height: 2.5rem;
}

#hamburger {
  display: none;
}

#nav-horizontal {
  max-width: var(--max-width-main);
  margin: 0 auto;
}

#main .grid4060 {
  --gap: 5rem;
  display: grid;
  grid-template-columns: calc(40% - var(--gap) / 2) calc(60% - var(--gap) / 2);
  grid-gap: 5px var(--gap);
}
#main h3 {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: normal;
  color: var(--text-color);
  text-transform: none;
}
#main .grid6040 {
  --gap: 5rem;
  display: grid;
  grid-template-columns: calc(60% - var(--gap) / 2) calc(40% - var(--gap) / 2);
  grid-gap: 5px var(--gap);
}
#main .small p,
#main .small li,
#main .small a {
  font-size: 1.125rem;
}
#main .paddingT-10 {
  padding-top: 10rem !important;
}
#main .erklaerfilm,
#main .startbutton {
  text-align: center;
}
#main .erklaerfilm h2,
#main .startbutton h2 {
  font-size: 2rem;
  text-align: center;
  background-color: var(--gelb);
  color: #000 !important;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 0.5rem;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Fira Sans";
}
#main .startbutton {
  display: inline-block !important;
}
#main .icon {
  text-align: center;
}
#main .icon img {
  margin: 0 auto;
}
#main .bg-gruen {
  background-color: var(--gruen);
  color: var(--hell-gruen);
  padding: 2rem 5rem;
}
#main .bg-gruen p,
#main .bg-gruen li,
#main .bg-gruen a,
#main .bg-gruen h1,
#main .bg-gruen h2 {
  color: var(--text-color);
}
#main .bg-gruen p {
  font-size: 1.75rem;
}
#main #article-2848 .ce_accordionStart {
  margin-top: 3.8rem;
}
#main h1,
#main h2 {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--text-color);
  text-transform: none;
  line-height: normal;
  font-family: "Gabrielle", sans-serif;
}
#main h2 {
  font-size: 3rem;
}
#main p,
#main li,
#main a {
  font-size: 1.2rem;
  line-height: normal;
  color: var(--text-color);
}
#main ul {
  list-style: none;
}
#main .rte ul {
  padding-left: 0;
  margin-left: 0;
}
#main .rte ul li {
  display: flex;
  align-items: flex-start;
}
#main .rte ul li::before {
  content: "⏺";
  background-color: transparent;
  color: #fff;
  margin-right: 0.5rem;
  font-size: 0.7rem;
  padding-top: 0.3rem;
}
#main .rte ul.wideR li {
  display: flex;
  padding-bottom: 1rem;
  align-items: flex-start;
}
#main .rte ul.wideR li::before {
  content: "⏺";
  color: var(--gruen);
  margin-right: 0.5rem;
  font-size: 0.7rem;
  padding-top: 0.3rem;
}
#main .bg-gelb {
  background-color: var(--gelb);
  color: var(--text-tuerkis);
  padding: 2rem 5rem;
}
#main .bg-gelb h1,
#main .bg-gelb h2,
#main .bg-gelb h3,
#main .bg-gelb p,
#main .bg-gelb a,
#main .bg-gelb li {
  color: var(--text-tuerkis);
}
#main .reverse .rte {
  display: flex;
}
#main .hideimage {
  opacity: 0;
  display: none;
}
#main .grid5050 {
  --gap: 5rem;
  display: grid;
  grid-template-columns: calc(50% - var(--gap)) calc(50% - var(--gap));
  grid-gap: 5px var(--gap);
  margin: 5rem 0;
}
#main .grid5050 img {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#main .grid5050.full-width .inside {
  max-width: var(--max-width-main);
  --gap: 5rem;
  display: grid;
  grid-template-columns: calc(50% - var(--gap)) calc(50% - var(--gap));
  grid-gap: var(--gap);
  margin: 5rem 0;
}
#main .grid5050 .row {
  --gap: 5rem;
  grid-column: 1/3;
  display: grid;
  grid-template-columns: calc(50% - var(--gap) / 2) var(--gap) calc(50% - var(--gap) / 2);
}
#main .grid5050 .row div:nth-of-type(1) {
  grid-column: 1/2;
}
#main .grid5050 .row div:nth-of-type(2) {
  grid-column: 3/4;
}
#main .rowF {
  --gap: 5rem;
  grid-column: 1/3;
  display: grid;
  grid-template-columns: calc(50% - var(--gap) / 2) var(--gap) calc(50% - var(--gap) / 2);
}
#main .rowF div:nth-of-type(1) {
  grid-column: 1/2;
}
#main .rowF div:nth-of-type(2) {
  grid-column: 3/4;
}
#main .grid6040 {
  --gap: 5rem;
  display: grid;
  grid-template-columns: calc(60% - var(--gap)) calc(40% - var(--gap));
  grid-gap: 5px var(--gap);
  margin: 5rem 0;
}
#main .grid5050-inside img {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#main .grid5050-inside.full-width .inside-grid {
  max-width: var(--max-width-main);
  margin: 5rem auto;
  --gap: 5rem;
  display: grid;
  grid-template-columns: calc(50% - var(--gap) / 2) calc(50% - var(--gap) / 2);
  grid-gap: 0.3rem var(--gap);
  justify-content: space-between;
}
#main .grid5050-inside.full-width .fullwidth {
  grid-column: 1/3;
}
#main .font-small p,
#main .font-small li,
#main .font-small a,
#main .font-small h2,
#main .font-small h3 {
  font-size: 1.5rem;
}
#main .font-big p,
#main .font-big li,
#main .font-big a,
#main .font-big h2,
#main .font-big h3 {
  font-size: 1.875rem;
}
#main #article-1611 strong {
  text-transform: uppercase;
}
#main #travelMode {
  display: flex;
}
#main #adresse_ {
  padding: 1rem;
  border: 1px solid var(--gruen);
}
#main ._grid5050 {
  display: grid;
  grid-template-columns: calc(70% - 2.5rem) calc(30% - 2.5rem);
  max-width: 1400px;
  margin: 0 auto;
  gap: 5rem;
}
#main ._grid5050 .flex2 {
  grid-column: 1/2;
}
#main ._grid5050 .ce_text {
  grid-column: 2/3;
}
#main ._grid5050 .ce_text input,
#main ._grid5050 .ce_text #travelMode,
#main ._grid5050 .ce_text button {
  width: 100%;
  justify-content: space-around;
  color: var(--gruen);
}
#main ._grid5050 .ce_text button {
  padding: 1rem;
}
#main ._grid5050 .ce_text #travelMode {
  padding: 2rem 0;
}
#main ._grid5050 .ce_text #travelMode div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#main ._grid5050 #mapFriedhof {
  width: 1900px !important;
  max-width: 100%;
}
#main .after-bg-red {
  position: relative;
}
#main .after-bg-red:after {
  content: " ";
  position: absolute;
  width: 75vw;
  height: 250px;
  left: 25vw;
  bottom: 0;
  background: var(--rot);
  z-index: -2;
}
#main .after-bg-red.w45:after {
  width: 45vw;
  left: 55vw;
  bottom: -3rem;
}
#main .after-bg-red.w55:after {
  width: 55vw;
  left: 45vw;
  bottom: -5rem;
}
#main .after-bg-red.w75:after {
  width: 95vw;
  right: 5vw;
  left: auto;
  bottom: -3rem;
}
#main .content-center {
  justify-content: center;
}
#main .content-center .inside-grid {
  grid-column: 1/3;
  margin: 0 auto;
  max-width: var(--max-width-bg);
}
#main .bg-red {
  color: #fff;
  font-size: 1.5rem;
  position: relative;
  z-index: -1;
}
#main .bg-red p {
  font-size: 1.5rem;
}
#main .bg-red:before {
  content: " ";
  position: absolute;
  width: 65vw;
  height: 500px;
  left: -15vw;
  top: -10%;
  background: var(--rot);
  z-index: -2;
}
#main .bg-gold1 {
  background-color: var(--gold1);
}
#main .bg-gold1 p,
#main .bg-gold1 li,
#main .bg-gold1 a,
#main .bg-gold1 h2,
#main .bg-gold1 h3 {
  color: #fff;
}
#main .txt-color-white {
  color: #fff;
}
#main .slick-prev {
  left: 25px;
}
#main .slick-next {
  right: 25px;
}
#main .slick-prev,
#main .slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  z-index: 50;
  transform: translate(0, 10%);
}
#main .slick-prev::before,
#main .slick-next::before {
  font-size: 50px;
}
#main .slick-slide {
  text-align: center;
}
#main .slick-slide img {
  max-width: 350px;
  height: auto;
  margin: 0 auto;
}
#main .slick-slide .sub .name {
  display: block;
  font-weight: 600;
  font-size: 1.5rem;
}
#main .paddingTB {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.fua {
  margin-left: 6rem !important;
}

.pg-titel {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-color);
  text-transform: none;
  display: none;
}

.pg-titel + section {
  padding-top: 0 !important;
}

#main h4 {
  font-size: 1.2rem;
  color: var(--gruen);
}
#main #article-1670 {
  position: relative;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
#main #article-1670:after {
  content: " ";
  position: absolute;
  width: 100vw;
  height: 400px;
  left: 0;
  bottom: 0rem;
  background: var(--gold1);
  z-index: -3;
}
#main p a {
  color: var(--gold1);
  text-decoration: none;
}
#main p a:hover {
  color: var(--gold2);
}

.showWolfSp {
  /* Prevent layout changes that cause jumps */
  overflow: hidden; /* Prevents new scrollbars */
}

.ol-attribution.ol-unselectable li {
  font-size: 0.9rem !important;
}
.ol-attribution.ol-unselectable li a {
  font-size: 0.9rem !important;
}

#article-1493 .bg-red a {
  color: #fff;
  text-decoration: underline;
  font-size: 1.5rem;
}

#article-1547 .column a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  border: 1px solid #fff;
  padding: 0.3rem;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.2);
}
#article-1547 .column a:hover {
  background: rgba(255, 255, 255, 0.9);
}

#main .content-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

#bestattungszeremonien .rightT {
  margin-top: 3rem;
}

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

.gridR {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  grid-gap: 5rem;
  margin: 2rem 2rem;
  grid-column: 1/3;
}
.gridR img {
  width: 100%;
}
.gridR .content-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gridR .content-text:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
.gridR .content-text:nth-of-type(2) {
  grid-column: 1/2;
  grid-row: 2/3;
}
.gridR .content-text:nth-of-type(3) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.gridR .content-text:nth-of-type(4) {
  grid-column: 2/3;
  grid-row: 2/3;
}

.grid3 {
  display: flex;
  max-width: 85%;
  margin-right: 0;
  margin-left: auto;
}
.grid3 > img {
  margin-right: 2rem;
}
.grid3 .rr {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

#main #article-1535 .after-bg-red:after {
  content: " ";
  position: absolute;
  width: 95vw;
  height: 260px;
  left: 5vw;
  bottom: 0;
  background: var(--rot);
  z-index: -2;
}

#pageForm input,
#pageForm select,
#pageForm textarea {
  border: 1px solid var(--hell-gruen);
  border: 1px solid #ccc;
  padding: 0.5rem;
}
#pageForm input:focus,
#pageForm select:focus,
#pageForm textarea:focus {
  outline: 2px solid var(--hell-gruen);
}

#main .slick-prev:before,
#main .slick-next:before {
  font-family: unset;
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#main .flexgal ul {
  display: flex;
  flex-wrap: wrap;
}
#main .flexgal ul li {
  margin: 0;
  flex: 0 0 50%;
  position: relative;
}
#main .flexgal ul li figcaption {
  position: absolute;
  bottom: 10px;
  font-size: 1rem;
  display: table;
  margin: 0 auto;
  left: 10%;
}
#main .bg-red-left-bottom {
  position: relative;
}
#main button {
  background-color: var(--rot);
  color: #fff;
  border: 0;
  font-size: 1.2rem;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  margin-bottom: 1rem;
  color: #fff;
}
#main button.slick-prev {
  background: none !important;
  color: #fff;
  left: 25%;
}
#main button.slick-next {
  background: none !important;
  color: #fff;
  right: 25%;
}
#main button.slick-prev:before {
  content: url("../hg/pfeil.png") !important;
  color: var(--gruen);
  display: inline-block;
  transform: rotate(180deg);
}
#main button.slick-next:before {
  content: url("../hg/pfeil.png") !important;
  display: inline-block;
  color: var(--gruen) !important;
}
#main .toggler button {
  background: none;
  display: flex;
  flex-direction: column;
  color: var(--gruen);
  align-items: flex-start;
  font-weight: 600;
  font-size: 2rem;
}
#main .toggler button::after {
  content: "▼";
  font-size: 1.2rem;
  margin-left: 0;
  color: var(--gruen) !important;
}
#main .accordion {
  height: 2px;
  border: 2px solid var(--gruen);
  display: block;
  border-radius: 10px;
}
#main .accordion ul {
  padding: 1rem;
}
#main .accordion ul li {
  font-size: 1.5rem;
  font-weight: 600;
}
#main .after-bg-red.content-image:after {
  content: " ";
  position: absolute;
  width: 95vw;
  height: 300px;
  left: 3vw;
  bottom: -5rem;
  background: var(--rot);
  z-index: -2;
}
#main .after-bg-red-left.content-gallery:after {
  content: " ";
  position: absolute;
  width: 75vw;
  height: 220px;
  left: 0;
  right: 25vw;
  bottom: 0rem;
  background: var(--rot);
  z-index: -2;
}
#main .after-bg-red-right.content-gallery:after {
  content: " ";
  position: absolute;
  width: 75vw;
  height: 220px;
  left: 25vw;
  right: 0;
  bottom: -5rem;
  background: var(--rot);
  z-index: -2;
}
#main .margin-left-10 .after-bg-red-right.content-gallery + .content-text {
  margin-left: 15rem;
}
#main .margin-left-10 .after-bg-red-right.content-gallery:after {
  width: 90vw;
  left: 10vw;
  height: 450px;
  bottom: -22rem;
}
#main #article-1570 .after-bg-red-right.content-gallery:after {
  width: 90vw;
  left: 10vw;
  height: 280px;
  bottom: -8rem;
}
#main .overlay-caption figcaption {
  background: rgba(var(--gold2-rgb), 0.8);
  position: relative;
  color: #fff;
  padding: 0.5rem 1.3rem;
  width: 80%;
  margin-top: -20%;
}
#main .overlay-caption figcaption span {
  font-size: 1.3rem;
  display: block;
}
#main .slider-leistungen-neu .slick-track > div,
#main .slider-trauerfeier-neu .slick-track > div {
  margin: 2rem 0;
}
#main .slider-leistungen-neu .slick-dots,
#main .slider-trauerfeier-neu .slick-dots {
  position: absolute;
  bottom: -90px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}
#main .slider-leistungen-neu .slick-dots li button:before,
#main .slider-trauerfeier-neu .slick-dots li button:before {
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
}
#main .slider-leistungen-neu .slick-list,
#main .slider-trauerfeier-neu .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  margin-bottom: -90px;
  padding: 0;
}
#main .slick-prev,
#main .slick-next {
  top: auto;
  bottom: 120px;
}
#main .slider-blumenlexicon .item img {
  transform: scale(0.5);
  width: auto;
  transition: all 0.5s ease-in-out;
  transform-origin: center;
}
#main .slider-blumenlexicon .item .explanation {
  opacity: 0;
  transition: opacity 1s;
  text-align: center;
}
#main .slider-blumenlexicon .item .explanation h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
#main .slider-blumenlexicon .item .explanation p {
  font-size: 1.1rem;
}
#main .slider-blumenlexicon .item.slick-current .explanation {
  opacity: 1;
}
#main .slider-blumenlexicon .item.slick-current img {
  transform: scale(1);
}
#main .slide-content-holder {
  background: rgba(var(--gruen-rgba), 0.8);
  width: 100vw;
  height: 100px;
  position: relative;
  z-index: 100;
  display: flex;
  z-index: 2;
}
#main .slide-content-holder .insideC {
  position: static;
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  border: 0px !important;
  text-align: center;
  width: 50vw;
  align-items: center;
  z-index: 2;
  margin: 0 auto;
  z-index: 100;
}
#main .slide-content-holder .insideC h2 {
  color: var(--hell-gruen);
  font-size: 1.5rem;
}
#main .slide-content-holder .insideC h1 {
  padding-bottom: 0.8rem;
}
#main .slide-content-holder .insideC .arrow-prev img,
#main .slide-content-holder .insideC .arrow-next img {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
#main #article-2794 .slide-content-holder {
  background: rgba(var(--gruen-rgba), 0.8);
  width: 100vw;
  height: 200px;
  position: relative;
  top: -140px;
  z-index: 100;
  display: flex;
  z-index: 2;
}
#main #article-2794 .slide-content-holder .insideC {
  position: static;
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  border: 0;
  text-align: center;
  width: 80vw;
  align-items: center;
  z-index: 2;
  margin: 0 auto;
  z-index: 100;
}
#main #article-2794 .slide-content-holder .insideC h2,
#main #article-2794 .slide-content-holder .insideC h1 {
  color: var(--hell-gruen);
  font-size: 2.5rem;
  line-height: normal;
}
#main #article-2794 .slide-content-holder .insideC p {
  color: #fff;
  color: var(--hell-gruen);
  font-size: 1.125rem;
}
#main #article-2794 .slide-content-holder .insideC .arrow-prev,
#main #article-2794 .slide-content-holder .insideC .arrow-next {
  align-self: center;
}
#main #article-2794 .slide-content-holder .insideC .arrow-prev img,
#main #article-2794 .slide-content-holder .insideC .arrow-next img {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
#main #article-2794 .slide-content-holder .insideC .arrow-next.slick-arrow {
  justify-self: right;
}
#main .margin-bottom-0 {
  margin-bottom: 0 !important;
}
#main .margin-bottom-0 .inside-grid {
  margin-bottom: 0 !important;
}
#main .margin-top-0 {
  margin-top: 0;
}
#main .margin-top-0 .inside-grid {
  margin-top: 0 !important;
}
#main .margin-top-5 {
  margin-top: 5rem;
}
#main .margin-top-5 .inside-grid {
  margin-top: 0 !important;
}
#main .margin-top-10 {
  margin-top: 10rem;
}
#main .margin-top-10 .inside-grid {
  margin-top: 0 !important;
}
#main .grid5050 .row #musik_items {
  grid-column: 1/4 !important;
  display: grid;
  grid-column: 50% 50%;
}
#main .grid5050 .row #musik_items .m_item:nth-of-type(1) {
  grid-column: 1/2;
}
#main .grid5050 .row #musik_items .m_item:nth-of-type(2) {
  grid-column: 3/4;
}
#main #mapFriedhof {
  max-width: calc(100vw - 10rem) !important;
}
#main #mapFriedhof canvas {
  width: 100% !important;
  transform: none !important;
}
#main .bg-red-left-75 {
  background: rgb(152, 27, 27);
  background: linear-gradient(90deg, rgb(152, 27, 27) 0%, rgb(152, 27, 27) 75%, rgba(255, 255, 255, 0) 75%);
  margin-bottom: 5rem !important;
  margin-top: 5rem !important;
}
#main .bg-red-left-75 .inside-grid {
  margin-bottom: 0 !important;
}
#main .bg-red-left-75 .rte p {
  margin: 0;
}
#main .bg-red-left-75 .rte a {
  color: #fff;
  text-decoration: none;
  display: flex;
  width: 39%;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 1.3rem;
  line-height: 2rem;
}
#main .bg-red-left-75 .rte a:hover {
  color: var(--gold1);
}
#main .bg-red-left-75 .rte a::after {
  content: " > ";
  display: block;
  text-align: right;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}
#main .bg-red-left-75 .column:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#main .margin-top-200 {
  margin-top: -150px;
  position: relative;
}
#main #map {
  filter: grayscale(0.8);
}
#main .content-gallery.flex ul {
  display: flex;
}
#main .content-gallery.flex ul li {
  margin: 1rem;
}
#main .after-bg-red-right.bg-gold.content-gallery:after {
  background: var(--gold1);
}
#main .after-bg-red-left,
#main .after-bg-red-right {
  position: relative;
}
#main .after-bg-red-left ul,
#main .after-bg-red-right ul {
  display: flex;
}
#main .after-bg-red-left li,
#main .after-bg-red-right li {
  margin: 0.5rem;
}
#main .after-bg-red-left {
  position: relative;
}
#main .after-bg-red-left:after {
  content: " ";
  position: absolute;
  width: 75vw;
  height: 220px;
  left: 0;
  right: 25vw;
  bottom: 0;
  background: var(--rot);
  z-index: -2;
}
#main .slideText,
#main .noslideText {
  max-height: 390px;
  overflow-y: scroll;
  overflow: hidden;
  padding-right: 17px;
  position: relative;
}
#main .slideText:after,
#main .noslideText:after {
  content: "";
  position: absolute;
  background-image: url("../hg/scroll-icon.png");
  background-size: cover;
  height: 50px;
  width: 25px;
  background-position: center;
  right: 0;
  top: 0;
}
#main .slideText:hover,
#main .noslideText:hover {
  overflow-y: scroll;
  padding-right: 0;
}
#main .slideText:hover:after,
#main .noslideText:hover:after {
  display: none;
}
#main .slideText.inView:after,
#main .noslideText.inView:after {
  animation-name: slide-in;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: 3;
}
#main .slideText.bg-weiss:after,
#main .noslideText.bg-weiss:after {
  content: "";
  position: absolute;
  background-image: url("../hg/scroll-icon-grau.png");
}
#main .slideText em,
#main .noslideText em {
  color: #fff;
  font-style: normal;
}
#main p.small {
  font-size: 1rem;
}
#main .noslideText {
  max-height: 100%;
  overflow-y: hidden;
}
#main .noslideText:after {
  display: none !important;
}
#main .noslideText:hover {
  overflow-y: hidden;
  padding-right: 17px;
}
@keyframes slide-in {
  0% {
    transform: translateY(0%);
  }
  70% {
    transform: translateY(300%);
  }
  100% {
    transform: translateY(0%);
  }
}
#main em > strong {
  color: #fff;
  background: var(--hell-gruen);
  padding: 0.2rem;
  font-size: normal;
  font-style: normal;
}
#main button[data-href] {
  background-color: var(--gruen);
  border: 0;
  font-size: 1.2rem;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  margin-bottom: 1rem;
  color: #fff;
}
#main ul.clickable {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#main ul.clickable li {
  flex: 0 0 33%;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
#main ul.clickable li h3 {
  font-size: 1.5rem;
}
#main ul.clickable li a {
  font-size: 0.9rem;
}
#main ul.clickable li::before {
  display: none;
}

.clickable {
  display: flex !important;
  flex-wrap: wrap !important;
  padding-left: 2rem;
  padding-right: 2rem;
  justify-content: space-between;
}
.clickable h2 {
  font-size: 1.5rem !important;
  font-style: normal !important;
  margin-bottom: 2rem;
  font-weight: 300;
}
.clickable .item {
  flex: 0 0 45%;
  margin-bottom: 2rem;
}
.clickable .item p {
  font-size: 1rem !important;
  cursor: pointer;
}

#article-1541 .rte strong,
#article-1542 .rte strong,
#article-1549 .rte strong,
#article-1624 .rte strong {
  text-transform: uppercase;
  font-weight: 600;
}

.start-seite #main .slider-leistungen-neu .slick-track > div,
.start-seite #main .slider-trauerfeier-neu .slick-track > div {
  margin: 2rem 0;
}
.start-seite #main .slider-leistungen-neu .slick-next,
.start-seite #main .slider-leistungen-neu .slick-prev,
.start-seite #main .slider-trauerfeier-neu .slick-next,
.start-seite #main .slider-trauerfeier-neu .slick-prev {
  display: none !important;
}
.start-seite #main .slider-leistungen-neu .slick-dots,
.start-seite #main .slider-trauerfeier-neu .slick-dots {
  position: absolute;
  bottom: -90px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}
.start-seite #main .slider-leistungen-neu .slick-dots li button:before,
.start-seite #main .slider-trauerfeier-neu .slick-dots li button:before {
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
}
.start-seite #main .slider-leistungen-neu .slick-list,
.start-seite #main .slider-trauerfeier-neu .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  margin-bottom: -90px;
  padding: 0;
}
.start-seite #main .slider-leistungen-neu:after,
.start-seite #main .slider-trauerfeier-neu:after {
  display: none !important;
  content: "";
}
.start-seite .teaser-holder {
  row-gap: 5rem;
}
.start-seite .teaser-holder .item {
  max-width: 384px;
  border: 2px solid var(--gruen);
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  aspect-ratio: 20/32;
  row-gap: 2rem;
}
.start-seite .teaser-holder .item .link {
  font-size: 0.9rem !important;
}
.start-seite .teaser-holder .item a {
  color: var(--gruen) !important;
  font-size: 1.5rem !important;
  font-weight: 500;
}
.start-seite .teaser-holder .item .text-holder {
  grid-column: 1/2;
  grid-row: 1/3;
  z-index: 1;
  padding: 1rem 0;
}
.start-seite .teaser-holder .item .text-holder img {
  margin: 0 auto;
  width: initial !important;
}
.start-seite .teaser-holder .item .image-holder {
  grid-column: 1/2;
  grid-row: 1/3;
  z-index: 100;
  align-self: end;
}
.start-seite .teaser-holder .item .image-holder .mask {
  height: 420px;
  width: 380px;
  transition: all 0.3s ease-in-out;
  overflow: hidden !important;
  position: relative;
}
.start-seite .teaser-holder .item .image-holder .mask .link {
  position: absolute;
  z-index: 200;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 2rem;
  text-align: center;
  font-size: 1.2rem !important;
}
.start-seite .teaser-holder .item .image-holder .mask img {
  position: absolute;
  bottom: 0;
}
.start-seite .teaser-holder .item:hover .image-holder {
  grid-column: 1/2;
  grid-row: 1/3;
  z-index: 1;
  align-self: end;
}
.start-seite .teaser-holder .item:hover .image-holder .mask {
  height: 520px;
  width: 380px;
  position: relative;
}
.start-seite .teaser-holder .item:hover .image-holder .mask .link {
  position: absolute;
  z-index: 200;
  opacity: 1;
}
.start-seite .pg-titel {
  display: none;
}
.start-seite #main h1,
.start-seite #main p {
  color: var(--gruen);
}
.start-seite .gridS {
  --content-maxwidth: 2000px !important;
}
.start-seite .gridS {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.start-seite .gridS #collagenBild {
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: 1;
  padding-top: 20vh;
  width: 100vw;
}
.start-seite .gridS #collagenBild img {
  width: 100%;
  height: auto;
  margin: 0 5rem 0 auto;
  max-width: 30%;
  opacity: 0.5;
  transition: all 0.5s ease-in-out;
}
.start-seite .gridS #collagenText {
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: 10;
  margin: 0 auto;
}
.start-seite .gridS #collagenText h1 {
  font-size: 5rem;
  font-weight: 600;
}
.start-seite .gridS.inView #collagenBild {
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: 1;
  padding-top: 20vh;
  width: 100vw;
}
.start-seite .gridS.inView #collagenBild img {
  width: 100%;
  height: auto;
  margin: 0 5rem 0 auto;
  max-width: 50%;
  opacity: 1;
}

#anchor-holder {
  display: flex;
  justify-content: space-between;
}
#anchor-holder a {
  text-decoration: none;
  background-color: var(--hell-gruen);
  color: var(--gruen);
  padding: 0.5rem;
}

.teaser-holder {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  justify-items: center;
}
.teaser-holder .i11 {
  grid-column: 1/2;
  grid-row: 1/2;
}
.teaser-holder .i12 {
  grid-column: 2/3;
  grid-row: 1/2;
}
.teaser-holder .i13 {
  grid-column: 3/4;
  grid-row: 1/2;
}
.teaser-holder .i21 {
  grid-column: 1/2;
  grid-row: 2/3;
}
.teaser-holder .i21 .link {
  color: #fff !important;
}
.teaser-holder .i21 .link a {
  color: #fff !important;
}
.teaser-holder .i22 {
  grid-column: 2/3;
  grid-row: 2/3;
}
.teaser-holder .i23 {
  grid-column: 3/4;
  grid-row: 2/3;
}

#start-overlay-slider {
  position: relative;
  margin-top: -15rem;
  z-index: 100;
  font-size: 1.3rem;
  background: rgba(var(--gruen-rgba), 0.8);
  padding: 2rem 0;
}
#start-overlay-slider h1,
#start-overlay-slider p {
  color: var(--hell-gruen);
  max-width: 60vw;
  margin: 0 auto;
}

section > .fullwidth {
  grid-column: 1/3;
}

.teamgalerie figure {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
}
.teamgalerie figure h2 {
  font-family: "Fira Sans";
  font-size: 1.875rem;
  padding: 0;
  margin: 0;
}
.teamgalerie figure img {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 100%;
}
.teamgalerie figure figcaption {
  position: absolute;
  grid-column: 1/2;
  grid-row: 1/2;
  background: rgba(var(--gold2-rgb), 0.8);
  color: #fff;
  padding: 1rem;
  text-align: center;
  display: table;
  bottom: 20%;
  width: 80%;
  text-align: left;
}

video {
  max-width: 100%;
  width: 100%;
  height: auto;
}

#article-2794 .content h1 {
  margin: 0;
}

#article-2800 .ce_form {
  position: relative;
  z-index: 300000;
  overflow: visible;
}
#article-2800 .ce_form .suchfeld {
  display: block;
  width: 100%;
}
#article-2800 .recent-memorials .btn-primary {
  color: #fff;
}
#article-2800 .recent-memorials .btn-primary:hover {
  color: #007c7c;
}

#article-1493 .column:nth-of-type(1) .content-image {
  position: relative;
  z-index: 0;
}
#article-1493 .column:nth-of-type(2) .bg-red {
  z-index: 0;
}
#article-1493 .bg-red a {
  color: #fff;
  text-decoration: underline;
  font-size: 1.5rem;
}

#article-2276 {
  position: relative;
}
#article-2276 .insideCC {
  position: absolute;
  bottom: 3rem;
  width: 95vw;
  margin-right: 2.5vw;
  margin-left: 2.5vw;
  display: flex;
  justify-content: space-between;
  z-index: 200;
}
#article-2276 .insideCC .arrow-prev.slick-disabled,
#article-2276 .insideCC .arrow-next.slick-disabled {
  opacity: 0 !important;
}
#article-2276 .insideCC .arrow-prev img,
#article-2276 .insideCC .arrow-next img {
  max-width: 30px;
}

ul.sf-menu ul li {
  text-align: left !important;
}

#wolfani {
  position: absolute !important;
  width: 100vw;
  z-index: 200;
  bottom: 130px;
  left: 0;
  pointer-events: none;
  overflow: visible;
  opacity: 1;
}

#article-2979 {
  border-bottom: 0;
}

#closebtn {
  position: absolute;
  top: 0;
  right: 1rem;
  cursor: pointer;
}

#blaseStart {
  background-color: rgba(var(--rot-rgb), 1) !important;
  color: #fff !important;
  position: absolute;
  max-width: 600px;
  width: 35vw;
  transform: scale(0);
  z-index: 2323232;
}
#blaseStart:after {
  content: url("../hg/blase.webp");
  position: absolute;
  top: auto;
  bottom: -128px;
  left: 22%;
  width: 78px;
  height: 150px;
  z-index: 1;
}

body.showBlase #blaseStart {
  transform: scale(1);
}

#wolfSP {
  position: absolute;
  padding: 1rem;
  opacity: 1;
  max-width: 500px;
  width: 30vw;
  right: auto;
  background-color: rgba(var(--rot-rgb), 1) !important;
  display: none;
  border-bottom: 1px solid var(--rot);
  overflow: visible;
  z-index: 2222;
  box-shadow: 10px 13px 6px 0px rgba(0, 0, 0, 0.61);
}
#wolfSP :after {
  content: url(../hg/blase.webp);
  position: absolute;
  top: auto;
  bottom: -128px;
  left: 70%;
  width: 78px;
  height: 150px;
  z-index: 1000;
  transform: rotate(-20deg);
}
#wolfSP p {
  line-height: 1.5rem;
  color: #fff;
  font-size: 1rem;
  font-style: italic;
}

.minH {
  min-height: 650px !important;
}

body.showWolfSp #wolfSP {
  display: block;
}

#wald-ruhe-div {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 50px;
  top: -32px;
  bottom: auto;
  cursor: pointer;
  background-color: var(--rot);
  padding: 0.5rem;
  color: #fff;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
  pointer-events: all;
}

section.grid.side-by-side .inside-grid .content-text-p.fullwidthP {
  grid-column: 2/12 !important;
}

body.pg-start .content-player video {
  width: 100%;
  height: auto;
}
body.pg-start #main .bg-red-row {
  background: var(--rot);
  color: #fff;
  padding: 1rem 0;
}
body.pg-start #main .bg-red-row h2 {
  font-size: 1.875rem;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 3rem;
}
body.pg-start #main .bg-red-row p {
  font-size: 1.5rem;
}
body.pg-start .leftT {
  background: rgba(var(--weiss-rgb), 0.8) !important;
  color: var(--gold2) !important;
}
body.pg-start .rightT {
  top: 10rem !important;
}
body.pg-start .teaserGrid {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 3rem;
}
body.pg-start .teaserGrid .item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-gap: 1rem;
  font-size: 3rem !important;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  position: relative;
}
body.pg-start .teaserGrid .item p {
  font-size: 3rem !important;
  padding: 0;
  margin: 0;
  line-height: 3rem !important;
  font-family: "Red Rose";
}
body.pg-start .teaserGrid .item .content-image {
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: -1;
}
body.pg-start .teaserGrid .item .content-text {
  grid-column: 1/2;
  grid-row: 1/2;
  padding: 1rem;
  width: 65%;
  height: 45%;
  background: rgba(255, 255, 255, 0.8);
}
body.pg-start .teaserGrid .item .overlayText {
  grid-column: 1/2;
  grid-row: 1/2;
  background: rgba(152, 27, 27, 0.9);
  width: 50%;
  height: 45%;
  position: absolute;
  font-size: 1.5rem;
  color: #fff;
  right: 0;
  bottom: 0;
  padding: 1rem;
}
body.pg-start .teaserGrid .item .overlayText a {
  color: #fff;
  text-decoration: none;
  text-transform: none;
}
body.pg-start .teaserGrid .item img {
  width: 100%;
  margin: 0;
  padding: 0 !important;
}
body.pg-start .teaserGrid .item#i1 {
  color: var(--gold1);
}
body.pg-start .teaserGrid .item#i1 .content-text {
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 0;
  margin-top: auto;
}
body.pg-start .teaserGrid .item#i1 .overlayText {
  text-align: left;
  transform: translate(-50rem, 2rem);
  transition: all 0.5s ease-in-out;
  right: auto;
  left: 0;
  bottom: 0;
}
body.pg-start .teaserGrid .item#i1:hover .overlayText {
  transform: translate(-2rem, 2rem);
}
body.pg-start .teaserGrid .item#i2 {
  color: var(--gold1);
}
body.pg-start .teaserGrid .item#i2 .content-text {
  margin-right: auto;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: auto;
  background: rgba(var(--gold2-rgb), 0.8) !important;
}
body.pg-start .teaserGrid .item#i2 .content-text p {
  color: #fff;
}
body.pg-start .teaserGrid .item#i2 .overlayText {
  text-align: left;
  transform: translate(50rem, 2rem);
  transition: all 0.5s ease-in-out;
}
body.pg-start .teaserGrid .item#i2:hover .overlayText {
  transform: translate(2rem, 2rem);
}
body.pg-start .teaserGrid .item#i3 {
  color: var(--gold1);
}
body.pg-start .teaserGrid .item#i3 .content-text {
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 0;
  margin-top: auto;
  background: rgba(var(--gold2-rgb), 0.8) !important;
}
body.pg-start .teaserGrid .item#i3 .content-text p {
  color: #fff;
}
body.pg-start .teaserGrid .item#i3 .overlayText {
  text-align: left;
  transform: translate(-50rem, 2rem);
  transition: all 0.5s ease-in-out;
  right: auto;
  left: 0;
  bottom: 0;
}
body.pg-start .teaserGrid .item#i3:hover .overlayText {
  transform: translate(-2rem, 2rem);
}
body.pg-start .teaserGrid .item#i4 {
  color: var(--gold1);
}
body.pg-start .teaserGrid .item#i4 .content-text {
  margin-right: auto;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: auto;
}
body.pg-start .teaserGrid .item#i4 .overlayText {
  text-align: left;
  transform: translate(50rem, 2rem);
  transition: all 0.5s ease-in-out;
  right: 0;
  left: auto;
  bottom: 0;
}
body.pg-start .teaserGrid .item#i4:hover .overlayText {
  transform: translate(2rem, 2rem);
}
body.pg-start .teaserGrid img {
  width: 100%;
}
body.pg-start .teaserGrid .overlayText.content-text {
  background: rgba(119, 0, 20, 0.8) !important;
}

#phone-slider {
  position: fixed;
  top: 30%;
  left: -15px;
  z-index: 10000;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  width: 105px;
  height: 110px;
  cursor: pointer;
  z-index: 10;
}
#phone-slider img,
#phone-slider #sl {
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: 10;
  white-space: nowrap;
}
#phone-slider #sl {
  background: rgba(var(--rot-rgb), 0.8);
  color: #fff;
  font-size: 2.5rem;
  z-index: 0;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  left: -100%;
  transition: all 0.2s ease-in-out;
  padding-right: 0.5rem;
}
#phone-slider.open #sl {
  left: 105px;
  transition: all 0.5s ease-in-out;
}

#organspende {
  background-position: bottom;
}

#trauernde-kinder {
  background-position: contain;
}

#testament {
  margin-left: 6rem;
  grid-column: 1/7 !important;
}

#bestattungsvorsorge {
  margin-right: 6rem;
  grid-column: 8/-1 !important;
}

body.startseite #phone-slider {
  display: none;
}

#left .mod_navigation {
  overflow-y: auto;
}
#left .mod_navigation ul.level_1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  height: 80vh;
  width: 100vw;
}
#left .mod_navigation ul.level_1 > li.submenu > a, #left .mod_navigation ul.level_1 > li.submenu > strong {
  font-size: 2.5rem !important;
  text-transform: none !important;
  font-style: normal;
  color: var(--gruen) !important;
  text-decoration: none;
}
#left .mod_navigation ul.level_1 li:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
#left .mod_navigation ul.level_1 li:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
#left .mod_navigation ul.level_1 li:nth-child(3) {
  grid-column: 3/4;
  grid-row: 1/2;
}
#left .mod_navigation ul.level_1 li:nth-of-type(4) {
  grid-column: 1/2;
  grid-row: 2/3;
}
#left .mod_navigation ul.level_1 li:nth-of-type(5) {
  grid-column: 2/3;
  grid-row: 2/3;
}
#left .mod_navigation ul.level_1 li:nth-child(6) {
  grid-column: 3/4;
  grid-row: 2/3;
  z-index: 0;
}
#left .mod_navigation ul.level_1 li:nth-child(7) {
  grid-column: 3/4;
  grid-row: 2/3;
  z-index: 0;
  position: absolute;
  bottom: 0;
  margin-top: 5rem;
}
#left .mod_navigation ul.level_1 li:nth-child(8) {
  grid-column: 3/4;
  grid-row: 2/3;
}
#left .mod_navigation ul.level_1 li.menuTop a {
  font-size: 2.5rem !important;
  text-transform: none !important;
  font-style: italic;
  color: var(--hell-gruen) !important;
  text-decoration: none;
}
#left .mod_navigation ul.level_2 {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
#left .mod_navigation ul.level_2 li {
  flex: 0 0 50%;
}

#trauerbegleitung {
  aspect-ratio: 160/96;
}

#fragen-antworten .firstL,
#fragen-antworten .second,
#fragen-antworten .content-text-f,
#article-2978 .firstL,
#article-2978 .second,
#article-2978 .content-text-f,
#erinnerungsschmuck .firstL,
#erinnerungsschmuck .second,
#erinnerungsschmuck .content-text-f {
  grid-row: 2/10 !important;
}

#fragen-antworten .content-text.relativ {
  position: relative;
  z-index: 500;
}

.bg-red #main {
  background: var(--rot);
}

#erinnerungsschmuck .inside-grid,
#trauerrede .inside-grid,
#trauernde-kinder .inside-grid {
  grid-template-rows: repeat(12, auto);
}
#erinnerungsschmuck .inside-grid .content-text-f.end, #erinnerungsschmuck .inside-grid .content-text-f.last,
#erinnerungsschmuck .inside-grid .content-text-p.second.end,
#erinnerungsschmuck .inside-grid .content-text-p.second.last,
#erinnerungsschmuck .inside-grid .content-text-p.end,
#erinnerungsschmuck .inside-grid .content-text-p.last,
#trauerrede .inside-grid .content-text-f.end,
#trauerrede .inside-grid .content-text-f.last,
#trauerrede .inside-grid .content-text-p.second.end,
#trauerrede .inside-grid .content-text-p.second.last,
#trauerrede .inside-grid .content-text-p.end,
#trauerrede .inside-grid .content-text-p.last,
#trauernde-kinder .inside-grid .content-text-f.end,
#trauernde-kinder .inside-grid .content-text-f.last,
#trauernde-kinder .inside-grid .content-text-p.second.end,
#trauernde-kinder .inside-grid .content-text-p.second.last,
#trauernde-kinder .inside-grid .content-text-p.end,
#trauernde-kinder .inside-grid .content-text-p.last {
  grid-row: 2/10 !important;
}

#navF {
  border: 0px solid #fff;
  color: #fff;
  font-size: 3rem;
  text-align: right;
  padding: 1rem 2rem;
  display: none;
}

#btn_toTop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10000;
  cursor: pointer;
  transform: scale(0);
  transition: all 0.3s;
}
#btn_toTop.show {
  transform: scale(1);
}

#musik figure {
  height: 100%;
}
#musik figure img {
  height: 100%;
}

@media only screen and (max-width: 1580px) {
  html {
    font-size: 12px;
  }
  .expandable-x .content-text-p {
    grid-column: 7/13 !important;
  }
  .expandable-x .content-text-p.left-p {
    grid-column: 1/7 !important;
  }
  .expandable-x .content-text-f {
    grid-column: 7/13 !important;
  }
  .expandable-x .content-text-f.left-p {
    grid-column: 1/9 !important;
  }
  .expandable-x .content-text-f.left-p .content-text .rte {
    padding-left: 6rem;
  }
  #article-2978 .content-text-p.first {
    grid-row: 2/10 !important;
  }
  .secondAbsolute .answer:after {
    bottom: -80px;
    left: 50%;
  }
  .content-text-p.left-p {
    grid-column: 1/7;
  }
  .content-text-p.left-p .content-text {
    padding-left: 7rem;
  }
  #phone-slider {
    left: 0px;
    transform: scale(0.65);
    transform-origin: left;
  }
}
@media only screen and (max-width: 1238px) {
  .layer {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    overflow: auto;
  }
  #phone-slider {
    transform: scale(0.5);
    transform-origin: left;
  }
  .content-text-p.left-p {
    grid-column: 1/7;
  }
  .content-text-p.left-p .content-text {
    padding-left: 6.5rem;
  }
}
@media only screen and (max-width: 1200px) {
  .startseite #logo-start img {
    max-width: 90%;
  }
}
@media only screen and (max-width: 1180px) {
  #top-center {
    display: none !important;
  }
  ul.sf-menu ul li {
    text-align: center !important;
  }
  #navF {
    display: block;
  }
  #header #menu-head {
    --content-maxwidth: 1860px;
    --padding-inline: 0rem;
  }
  #header #btn_close,
  #header #btn_nav {
    cursor: pointer;
    display: block;
  }
  #navHolder {
    position: absolute;
    background-color: var(--rot);
    width: 100vw;
    min-height: 100vh;
    top: -800px;
    left: 0;
    z-index: 100000;
    transition: all 0.3s ease-in-out;
    display: none;
  }
  #navHolder .sf-menu ul {
    display: block;
    position: static;
  }
  #navHolder #desknav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  #navHolder #desknav > li > a {
    text-transform: uppercase;
    font-size: 2rem !important;
    color: #fff !important;
    padding-left: 1rem;
  }
  #navHolder #desknav li {
    flex: 0 0 calc(30% - 2rem);
    text-align: left !important;
  }
  #navHolder #desknav li ul {
    flex: 0 0 30%;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  }
  body.showNav #mobile-nav {
    display: block;
  }
  body.showNav #top-center {
    display: none;
  }
  body.showNav #navHolder {
    position: absolute;
    position: fixed;
    background-color: var(--rot);
    width: 100vw;
    min-height: 100vh;
    height: 100% !important;
    top: 0;
    left: 0;
    z-index: 100000000;
    padding: 3rem;
    display: block;
  }
  body.showNav #navHolder nav {
    height: 100%;
    padding-bottom: 5rem;
  }
  body.showNav #navHolder #desknav {
    overflow-y: scroll;
    height: 100%;
  }
  #header #menu-head .inside #top-right {
    grid-column: 6/7;
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  #header #menu-head .inside {
    margin-top: 0rem;
  }
  #navF {
    border: 0px solid #fff;
    color: #fff;
    font-size: 3rem;
    text-align: right;
    padding: 1rem 2rem;
  }
  #wolfani {
    position: relative !important;
  }
  #trauernde-kinder #wolfani,
  #article-2978 #wolfani {
    position: absolute !important;
  }
  #trauernde-kinder .content-text-p.left-p.last,
  #article-2978 .content-text-p.left-p.last {
    margin-bottom: 9rem;
  }
}
@media only screen and (max-width: 1000px) {
  body.startseite section.grid .inside-grid {
    display: block;
  }
  body.startseite section.grid .inside-grid .content-text-p {
    display: grid;
    grid-template-rows: repeat(12, auto);
    grid-template-columns: repeat(12, 1fr);
    width: 100vw;
  }
  body.startseite section.grid .inside-grid .content-text-p .content-text {
    background: none;
  }
  body.startseite section.grid .inside-grid #headline {
    grid-column: 1/13 !important;
    grid-row: 1/4;
    text-align: center;
    padding-left: 0;
  }
  body.startseite section.grid .inside-grid #side-buttons {
    grid-column: 1/6 !important;
    grid-row: 4/8;
    padding-left: 0;
  }
  body.startseite section.grid .inside-grid #center-text {
    grid-column: 7/13 !important;
    grid-row: 4/8;
    padding-left: 0;
  }
  body.startseite section.grid .inside-grid #logo-start {
    grid-column: 4/10 !important;
    grid-row: 7/10;
    padding-left: 0;
  }
  body.startseite section.grid .inside-grid #wolf {
    grid-column: 1/13 !important;
    grid-row: 7/13;
  }
  #trauerbegleitung {
    aspect-ratio: auto;
  }
}
@media only screen and (max-width: 950px) {
  #footer #footer-inline .line {
    background-color: rgba(0, 0, 0, 0);
  }
  #footer {
    position: static;
    background: rgba(var(--rot-rgb), 1);
  }
  #footer #footer-inline .line .item.left {
    grid-column: 1/4;
    text-align: left;
  }
  #footer #footer-inline .line .item.right {
    grid-column: 5/8;
  }
  #footer #footer-inline .line .item.rright {
    grid-column: 9/13;
  }
}
@media only screen and (max-width: 1720px) and (min-width: 901px) {
  .bgvideo .content-player {
    position: relative;
  }
  .bgvideo .content-player video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 180%;
    width: auto;
    height: auto;
    z-index: -1; /* Push video behind content */
    transform: translate(-50%, -50%);
    -o-object-fit: cover !important;
       object-fit: cover !important; /* Makes the video cover the whole area */
  }
  .bgimage,
  .bgvideo {
    background-size: cover;
    min-height: 600px;
    background-position: center;
  }
}
@media only screen and (max-width: 900px) {
  html {
    font-size: 12px;
  }
  html h1 {
    line-height: 2.8rem !important;
  }
  #bestattungsvorsorge {
    margin-right: 0;
  }
  #testament {
    margin-left: 0rem;
  }
  section.grid .inside-grid .content-text-p.expand-horizontal.show {
    margin-right: 0 !important;
  }
  section.grid.faq-video .content-player {
    position: relative;
  }
  section.grid.faq-video .inside-grid {
    grid-template-rows: repeat(12, auto) !important;
    padding-bottom: 0 !important;
  }
  section.grid.faq-video .inside-grid #wolfani {
    position: relative !important;
  }
  body.startseite #main h1 {
    line-height: 6.5rem !important;
  }
  body.startseite #main #blaseStart {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .fua {
    margin-left: 0rem !important;
  }
  section .content-text-f .reverse .rte {
    display: flex;
    flex-direction: column-reverse;
    grid-column: 1/-1;
    padding: 1rem 5rem;
    background-color: rgba(var(--rot-rgb), 1);
  }
  section .content-text-f.show .teaser-p {
    flex: 0 0 auto !important;
  }
  .einR,
  .einL {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  section.grid .inside-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(12, auto) !important;
  }
  section.grid .inside-grid .bg-image {
    grid-column: 1/-1 !important;
    grid-row: 1/2 !important;
  }
  section.grid .inside-grid .content-text-p,
  section.grid .inside-grid .content-text-f {
    grid-column: 1/-1 !important;
    grid-row: 2/3 !important;
    background-color: rgba(var(--rot-rgb), 1);
  }
  section.grid .inside-grid #wolfani {
    border-top: 0rem solid #fff;
    grid-row: 11/13 !important;
  }
  section.grid .inside-grid .content-text-p.expand-horizontal .content-text {
    width: 100% !important;
  }
  section.grid .inside-grid .content-text-p.expand-horizontal .content-text .rte {
    display: inline-flex;
    gap: 2rem;
    flex-direction: column;
  }
  #article-2978 .inside-grid .content-text-p.first,
  #trauerrede .inside-grid .content-text-p.first,
  #article-2997 .inside-grid .content-text-p.first {
    grid-column: 1/-1 !important;
    grid-row: 2/3 !important;
  }
  #article-2978 .inside-grid .content-text-p.second,
  #trauerrede .inside-grid .content-text-p.second,
  #article-2997 .inside-grid .content-text-p.second {
    grid-column: 1/-1 !important;
    grid-row: 3/4 !important;
  }
  #article-2978 .inside-grid .content-text-p.second.end,
  #trauerrede .inside-grid .content-text-p.second.end,
  #article-2997 .inside-grid .content-text-p.second.end {
    grid-column: 1/-1 !important;
    grid-row: 3/4 !important;
  }
  #bestattungsvorsorge .inside-grid .content-text-p.first {
    grid-column: 1/-1 !important;
    grid-row: 2/3 !important;
  }
  #bestattungsvorsorge .inside-grid .content-text-p.second {
    grid-column: 1/-1 !important;
    grid-row: 3/4 !important;
  }
  #bestattungsvorsorge .inside-grid .content-text-p.second.end {
    grid-column: 1/-1 !important;
    grid-row: 3/4 !important;
  }
  body.startseite section.grid .inside-grid {
    display: block;
  }
  body.startseite section.grid .inside-grid .content-text-p {
    background: none;
  }
  .secondAbsolute {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100vw;
  }
  .secondAbsolute .answer:after {
    content: none;
  }
  #fragen-antworten .content-text-p.left-p.firstL {
    z-index: 0;
  }
  #fragen-antworten .content-text-p .answer.content-text {
    z-index: 500;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    display: none;
    background-color: rgb(255, 255, 255) !important;
  }
  #fragen-antworten .content-text-p .answer.content-text .rte p,
  #fragen-antworten .content-text-p .answer.content-text .rte a,
  #fragen-antworten .content-text-p .answer.content-text .rte .btn_close {
    color: #000;
  }
  #fragen-antworten .content-text-p .answer.content-text.show {
    display: block;
  }
  #wolfani {
    background: rgba(var(--rot-rgb), 1);
    overflow: visible;
    margin-top: 0px;
    z-index: 121231321212;
    bottom: 0;
  }
  #wolfani #wolfSvg {
    margin: 50px 0;
  }
  #wolfani #wald-ruhe-div {
    top: -50px;
  }
  .walddivT #wald-ruhe-div {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 50px;
    top: 0px !important;
    z-index: -1;
  }
  #wolfSP :after {
    content: none;
  }
  #main section.grid.threeRows .inside-grid .content-text-p.end {
    grid-row: 2/3 !important;
  }
  #main section.grid.threeRows .inside-grid #wolfani {
    grid-row: 3/4 !important;
  }
  .content-text-p {
    --einr: 5.5rem;
  }
  .content-text-p.left-p .content-text {
    padding-left: var(--einr) !important;
  }
  .content-text-p .content-text {
    padding-left: var(--einr) !important;
  }
  #trauernde-kinder #wolfani,
  #article-2978 #wolfani {
    position: relative !important;
  }
  body.startseite .btn_start {
    background: rgba(160, 160, 160, 0.7);
  }
}
@media only screen and (max-width: 680px) {
  #wolfSP {
    max-width: 500px;
    width: 80vw;
    z-index: 2222222222;
  }
  #footer #footer-inline .line {
    grid-template-rows: auto auto auto;
  }
  #footer #footer-inline .line .item.left {
    grid-column: 1/-1;
    grid-row: 1/2;
    text-align: left;
  }
  #footer #footer-inline .line .item.right {
    grid-column: 1/7;
    grid-row: 2/3;
  }
  #footer #footer-inline .line .item.rright {
    grid-column: 7/13;
    grid-row: 2/3;
  }
  .layer .row {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--rot);
    gap: 10%;
    margin-bottom: 1rem;
    align-items: center;
  }
  .layer .row .content-image,
  .layer .row .content-text {
    flex: 0 0 100%;
    gap: 5%;
    padding: 1rem;
    width: 100%;
  }
  #blaseStart {
    width: 75vw;
  }
  #blaseStart:after {
    left: 55%;
  }
}
@media only screen and (max-width: 600px) {
  body.startseite section.grid .inside-grid {
    display: block;
  }
  body.startseite section.grid .inside-grid .content-text-p {
    display: grid;
    grid-template-rows: repeat(12, auto);
    grid-template-columns: repeat(12, 1fr);
    width: 100vw;
  }
  body.startseite section.grid .inside-grid .content-text-p .content-text {
    background: none;
  }
  body.startseite section.grid .inside-grid #headline {
    grid-column: 1/13 !important;
    grid-row: 1/3;
    text-align: center;
    padding-left: 0;
  }
  body.startseite section.grid .inside-grid #headline h1 {
    line-height: 6rem !important;
  }
  body.startseite section.grid .inside-grid #side-buttons {
    grid-column: 1/13 !important;
    grid-row: 7/10;
    padding-left: 0;
  }
  body.startseite section.grid .inside-grid #side-buttons .rte {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  body.startseite section.grid .inside-grid #side-buttons .rte div {
    flex: 0 0 38%;
  }
  body.startseite section.grid .inside-grid #side-buttons .rte .btn_start {
    border-radius: 10px;
  }
  body.startseite section.grid .inside-grid #center-text {
    grid-column: 2/12 !important;
    grid-row: 3/7;
    padding-left: 0;
    text-align: center;
  }
  body.startseite section.grid .inside-grid #logo-start {
    display: none;
    grid-column: 4/10 !important;
    grid-row: 7/10;
    padding-left: 0;
  }
  body.startseite section.grid .inside-grid #wolf {
    grid-column: 1/13 !important;
    grid-row: 10/13;
  }
}
@media only screen and (max-width: 450px) {
  body.startseite section.grid .inside-grid #center-text {
    grid-column: 1/13 !important;
  }
  body.startseite section.grid .inside-grid #headline h1 {
    line-height: 4.5rem !important;
    font-size: 4rem !important;
  }
  .content-text-p .content-text {
    --einr: 0.7rem;
    --einr: 5rem;
    padding-left: var(--einr) !important;
    padding-right: var(--einr) !important;
  }
}
@media only screen and (max-width: 400px) {
  #footer #footer-inline .line {
    grid-template-rows: auto auto auto;
  }
  #footer #footer-inline .line .item.left {
    grid-column: 1/-1;
    grid-row: 1/2;
    text-align: left;
  }
  #footer #footer-inline .line .item.right {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
  #footer #footer-inline .line .item.rright {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
  #footer #footer-inline .line .item.rright .column {
    width: 100vw;
    border-top: 1px solid #fff;
    display: flex;
    margin: 2rem 1rem;
    justify-content: space-around;
  }
  .content-text-p .content-text {
    --einr: 0.7rem;
    --einr: 2rem;
    padding-left: var(--einr) !important;
    padding-right: var(--einr) !important;
  }
  section .content-text-f .reverse .rte {
    display: flex;
    flex-direction: column-reverse;
    grid-column: 1/-1;
    padding: 1rem 2rem;
    background-color: rgba(var(--rot-rgb), 1);
  }
  #main .inside,
  #main .content-center-overlay,
  #main .grid12.full-width,
  #footer .inside,
  #footer .content-center-overlay,
  #footer .grid12.full-width,
  #menu-head .inside,
  #menu-head .content-center-overlay,
  #menu-head .grid12.full-width {
    --padding-inline: 0rem;
  }
}/*# sourceMappingURL=aufbau.css.map */