@charset "UTF-8";
/* urbanist-regular - latin */
/* urbanist-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: "Urbanist";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/urbanist-v18-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-300 - 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: "Urbanist";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/urbanist-v18-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/urbanist-v18-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-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: "Urbanist";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/urbanist-v18-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-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: "Urbanist";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/urbanist-v18-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-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: "Urbanist";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/urbanist-v18-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-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: "Urbanist";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/urbanist-v18-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-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: "Urbanist";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/urbanist-v18-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-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: "Urbanist";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/urbanist-v18-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*, *::before, *::after {
  box-sizing: border-box;
}

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

html, body {
  font-size: 16px;
  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;
  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: 3000;
  width: 100vw;
  position: absolute;
}
#header h3 {
  font-size: 1.1rem;
  color: #000;
}
#header h3 a {
  color: var(--text-color);
  text-decoration: none;
}
#header #top-center input {
  border: 2px solid var(--grau);
  border-radius: 5px;
  background-image: url("../hg/lupe.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 40px;
}
#header #top-center .search-box {
  position: relative;
  display: inline-block;
}
#header #top-center .search-box input {
  padding-right: 40px;
  height: 40px;
  font-size: 16px;
  background-color: var(--pistazie);
}
#header #top-center .search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../hg/lupe.png");
  background-repeat: no-repeat;
  background-position: right 2px center;
  height: 26px;
  width: 26px;
  border: none;
  cursor: pointer;
  background-repeat: no-repeat;
  font-size: 18px;
}
#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(12, 1fr);
  justify-content: space-around;
  z-index: 100;
  margin-top: 3rem;
  margin-bottom: 1rem;
  align-items: center;
  align-items: start;
}
#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: #000;
  font-size: 1.38rem;
  font-weight: 600;
}
#header #menu-head .inside #top-left {
  grid-column: 1/4;
  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: 6/9;
}
#header #menu-head .inside #top-center h3 {
  text-align: center !important;
}
#header #menu-head .inside #top-right {
  grid-column: 9/12;
  display: flex;
  flex-direction: column;
  align-items: start;
}
#header #menu-head .inside #top-rright {
  grid-column: 12/13;
  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;
}
#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;
  margin-top: 0;
  margin-bottom: 0;
}
#header h3.phone::before {
  content: "";
  background-image: url("../hg/FAX.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.8rem;
}
#header h3.weg {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
}
#header h3.weg::before {
  content: "";
  background-image: url("../hg/weg.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.8rem;
}
#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: 2.5rem;
  height: 38px;
  margin-right: 0.2rem;
}
#header #btn_gedenkportal::before {
  background-image: url("../hg/btn_gp.png");
}

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

@media only screen and (max-width: 8px) {
  #header {
    position: static;
  }
  #header .inside {
    background-color: var(--gelb);
  }
  #header #menu-head .inside {
    grid-column: content;
    display: grid;
    grid-template-columns: repeat(6, auto);
    grid-template-rows: repeat(6, auto);
    justify-content: space-around;
    z-index: 100;
    margin-top: 3rem;
    margin-top: 0;
    margin-bottom: 1rem;
    align-items: center;
  }
  #header #menu-head .inside #top-left {
    grid-column: 1/2;
    grid-row: 1/8;
    text-align: center;
  }
  #header #menu-head .inside #top-center {
    grid-column: 2/3;
    grid-row: 1/3;
    padding: 0.2rem 0;
  }
  #header #menu-head .inside #top-center-r {
    grid-column: 2/3;
    grid-row: 3/5;
    padding: 0.2rem 0;
  }
  #header #menu-head .inside #top-right {
    grid-column: 2/3;
    grid-row: 5/7;
    padding: 0.2rem 0;
  }
  #header #menu-head .inside #top-rright {
    grid-row: 1/-1 !important;
    align-self: flex-start;
  }
  #header #menu-head .inside #top-rright #btn_nav {
    max-width: 2.5rem;
  }
  #menu-head .inside {
    padding: 1rem 0rem !important;
  }
}
@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: relative;
  z-index: 1;
  padding-bottom: 1rem;
  padding-top: 8rem;
}
#footer p {
  font-size: 1.1875rem;
  color: var(--text-color);
  text-transform: uppercase;
}
#footer {
  font-size: 1.25rem;
}
#footer #footer-inline,
#footer #footer-inline-second {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  padding-top: 0;
  align-items: center;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
}
#footer #footer-inline .item.left,
#footer #footer-inline-second .item.left {
  grid-column: 1/2;
}
#footer #footer-inline .item.right,
#footer #footer-inline-second .item.right {
  grid-column: 2/3;
}
#footer #footer-inline a,
#footer #footer-inline-second a {
  text-decoration: none;
}
#footer #footer-inline .line,
#footer #footer-inline-second .line {
  width: 100%;
  margin: 3rem 0 1rem 0;
  display: grid;
  justify-items: center;
  grid-template-columns: 30% auto 30%;
  grid-template-rows: auto auto;
}
#footer #footer-inline .line.first,
#footer #footer-inline-second .line.first {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
#footer #footer-inline .line a,
#footer #footer-inline-second .line a {
  color: #000;
  text-transform: none;
  font-weight: 200;
  font-size: 1.25rem;
}
#footer #footer-inline .line .row,
#footer #footer-inline-second .line .row {
  margin: 1.5rem 0;
}
#footer #footer-inline .line .row p,
#footer #footer-inline-second .line .row p {
  line-height: 1.8rem;
  margin-bottom: 0;
  margin-top: 0;
}
#footer #footer-inline .line .row.columnR,
#footer #footer-inline-second .line .row.columnR {
  display: grid;
  grid-template-columns: auto 1fr;
}
#footer #footer-inline .line .row.columnR .column,
#footer #footer-inline-second .line .row.columnR .column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#footer #footer-inline .line .row.columnR .column img,
#footer #footer-inline-second .line .row.columnR .column img {
  padding: 0.1rem 0;
}
#footer #footer-inline .line #ctrl_85,
#footer #footer-inline-second .line #ctrl_85 {
  width: 100%;
  font-size: 0.9rem;
}
#footer #footer-inline .line .item.left,
#footer #footer-inline-second .line .item.left {
  grid-column: 1/2;
}
#footer #footer-inline .line .item.right,
#footer #footer-inline-second .line .item.right {
  grid-column: 2/3;
}
#footer #footer-inline .line .item.rright,
#footer #footer-inline-second .line .item.rright {
  grid-column: 3/4;
}
#footer #footer-inline .line .item.rright .column,
#footer #footer-inline-second .line .item.rright .column {
  text-align: right;
}
#footer #footer-inline .line .item.rright .column a,
#footer #footer-inline-second .line .item.rright .column a {
  text-align: right;
}
#footer #footer-inline .line .item.rright .column a img,
#footer #footer-inline-second .line .item.rright .column a img {
  margin-right: 0;
  margin-left: auto;
}
#footer #footer-inline .line .item.rright .column p,
#footer #footer-inline-second .line .item.rright .column p {
  line-height: 3rem;
  margin: 0;
  padding: 0;
}
#footer #footer-inline .line .icons,
#footer #footer-inline-second .line .icons {
  margin-top: 5rem;
  grid-row: 2/3;
  grid-column: 2/span 2;
  justify-self: flex-start;
  margin-left: 3rem;
}
#footer #footer-inline .line .icons .row,
#footer #footer-inline-second .line .icons .row {
  margin-left: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
#footer #footer-inline h3.phone,
#footer #footer-inline-second h3.phone {
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-items: center;
  font-weight: 200;
  cursor: pointer;
}
#footer #footer-inline h3.phone::before,
#footer #footer-inline-second h3.phone::before {
  content: "";
  background-image: url("../hg/FAX.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.8rem;
}
#footer #footer-inline h3,
#footer #footer-inline-second h3 {
  font-size: 1.25rem;
  color: #000;
}
#footer #footer-inline h3.weg,
#footer #footer-inline-second h3.weg {
  display: flex;
  font-weight: 200;
  cursor: pointer;
  align-items: center;
}
#footer #footer-inline h3.weg::before,
#footer #footer-inline-second h3.weg::before {
  content: "";
  background-image: url("../hg/weg.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.8rem;
}
#footer #footer-inline h3.mail,
#footer #footer-inline-second h3.mail {
  display: flex;
  cursor: pointer;
  align-items: center;
  font-weight: 200;
}
#footer #footer-inline h3.mail::before,
#footer #footer-inline-second h3.mail::before {
  content: "";
  background-image: url("../hg/mail.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 2rem;
  height: 24px;
  margin-right: 0.8rem;
}
#footer .ggh {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column: full-width !important;
}
#footer #gh-text {
  display: none;
}
#footer #gh-text.show {
  display: block;
  grid-column: 2/11;
}
#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%;
  }
  #footer #footer-inline .line {
    justify-items: center;
    padding: 0 1rem;
  }
  #footer #footer-inline .line .item.left {
    grid-column: 2/3 !important;
  }
  #footer #footer-inline .line .item.right {
    grid-column: 1/3;
  }
}
@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: 600px) {
  #footer #footer-inline .line .item.rright {
    grid-column: 1/5;
  }
  #footer #footer-inline .line .item.right {
    grid-column: 1/5;
  }
  #footer #footer-inline .line .item.left {
    grid-column: 1/5 !important;
  }
}
@media only screen and (max-width: 400px) {
  #footer .inside {
    --content-maxwidth: var(--max-width-main);
    --padding-inline: 1rem !important;
    --breakout-maxwidth: 100rem;
    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] !important;
  }
  #footer #footer-inline .line {
    justify-items: center;
    grid-template-columns: 30% auto;
    grid-template-rows: auto auto auto;
  }
  #footer #footer-inline .line .item.right {
    grid-column: 1/5;
    grid-row: 2/3;
  }
  #footer #footer-inline .line .item.rright {
    grid-column: 1/5;
    grid-row: 3/4;
  }
  #footer #footer-inline .line .item.rright .column {
    max-width: 100vw;
    width: 95vw;
    padding: 0.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
@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;
  --gruenDark:#414244;
}

#left {
  width: var(--navwidth);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  background: var(--beige);
  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 {
  display: grid;
  position: fixed;
  grid-template-columns: 100%;
  grid-template-rows: 5vh 5vh calc(90vh - 1rem);
  gap: 1rem;
  height: 100vh;
  width: 100vw;
}
#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;
}
#left #navigation #navHolder .row .level_1 li a,
#left #navigation #navHolder .row .level_1 li strong {
  color: var(--red);
  font-size: 2.75rem;
  font-weight: 100;
  padding: 1rem 0.5rem;
  display: block;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  font-family: "Urbanist", sans-serif;
  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 li.bg-beige, #left #navigation #navHolder .row .level_1 li .level_2 li.bg-hblau, #left #navigation #navHolder .row .level_1 li .level_2 li.bg-hellblau {
  background-color: var(--beige) !important;
  background: none !important;
}
#left #navigation #navHolder .row .level_1 li .level_2 li a.bg-beige, #left #navigation #navHolder .row .level_1 li .level_2 li a.bg-hblau, #left #navigation #navHolder .row .level_1 li .level_2 li a.bg-hellblau, #left #navigation #navHolder .row .level_1 li .level_2 li strong.bg-beige, #left #navigation #navHolder .row .level_1 li .level_2 li strong.bg-hblau, #left #navigation #navHolder .row .level_1 li .level_2 li strong.bg-hellblau {
  background-color: var(--beige) !important;
  background: none !important;
}
#left #navigation #navHolder .row .level_1 li .level_2 a,
#left #navigation #navHolder .row .level_1 li .level_2 strong {
  color: var(--gruenDark);
  font-size: 1.75rem;
  font-weight: 400;
  padding: 0;
  line-height: 2.5rem;
  font-family: "Urbanist", sans-serif;
  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(--grau) !important;
}
#left #navigation #navHolder .row .level_1 li .level_2 strong {
  color: #000 !important;
  font-weight: 600;
}
#left #navigation #navHolder .row .level_1 li {
  z-index: 20;
}
#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;
  max-width: 50px;
}
#left #navigation #navHolder .row.firstS {
  text-align: center;
  position: relative;
  grid-row: 2/3;
  display: flex;
  justify-content: space-evenly;
}
#left #navigation #navHolder .row.firstS .button {
  background-color: none;
  color: var(--gruen);
  border: 0;
  font-size: 1.2rem;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  margin-bottom: 1rem;
  color: var(--dunkel-blau);
  background-color: var(--hell-blau);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
#left #navigation #navHolder .row.firstS .button::after {
  content: url("../hg/s-link.png") !important;
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
#left #navigation #navHolder .row.second {
  grid-row: 3/4;
  position: relative;
  overflow-y: scroll;
  padding-bottom: 5rem;
}
#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: "Urbanist", sans-serif;
}
.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 {
    flex: 0 0 48% !important;
  }
  #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: left !important;
  }
  #left #navigation .level_1 li a,
  #left #navigation .level_1 li strong {
    text-align: left !important;
  }
}
#kontakt .formbody {
  padding: 2rem;
}

#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 {
  color: var(--gelb);
  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 {
  --top: -280px;
  --bottom: -280px;
  --right: -580px;
  --left: -580px;
  --bottom-r: 10%;
  --top-r: -10%;
  --bottom-text: -380px;
}

#outer-wrap {
  /* position: relative; */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  margin: 0;
  padding: 0;
}

.startseite #header {
  opacity: 0;
  transition: all 2.5s ease-in-out;
}
.startseite #header.show {
  opacity: 1;
}

#wrapperstart {
  grid-column: 1/2;
  grid-row: 1/3;
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #f2f2f2;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  display: flex !important;
  transition: all 2.5s ease-in-out;
  opacity: 1;
  z-index: 50;
}
#wrapperstart.wrapper-hide {
  opacity: 0;
}

.bgimages {
  width: 100vw;
  height: 100vh;
}

#bg-images-1 {
  grid-column: 1/2;
  grid-row: 1/3;
  background-image: url("../hamm/imagestart/start1.jpg");
  background-size: cover;
  background-position: center bottom;
  z-index: 30;
  transition: all 2.5s ease-in-out;
  opacity: 1;
}
#bg-images-1.hide {
  opacity: 0;
}

#bg-images-2 {
  grid-column: 1/2;
  grid-row: 1/3;
  background-image: url("../hamm/imagestart/start2.jpg");
  background-size: cover;
  z-index: 20;
  transition: all 2.5s ease-in-out;
  opacity: 1;
}
#bg-images-2.hide {
  opacity: 0;
}

#bg-images-3 {
  grid-column: 1/2;
  grid-row: 1/3;
  background-image: url("../hamm/imagestart/start3.jpg");
  background-size: cover;
  z-index: 10;
}

.bluete {
  position: absolute;
  transition: all 2.5s ease-in-out;
}

#igelb-1,
#igelb-2,
#igelb-3,
#igelb-4,
#igelb-5 {
  transform-origin: center bottom;
  transform-origin: center center;
  left: 50%;
}

#igruen-1,
#igruen-2,
#igruen-3,
#igruen-4,
#igruen-5,
#igruen-6 {
  transform-origin: center center;
  left: 50%;
}

/* ########TOP######## */
#igruen-1 {
  transform: translateX(-100%) rotate(180deg) scale(1.3);
  z-index: 1;
}
#igruen-1.bluete-rotate {
  transform: translate(-100%, var(--top-r)) rotate(180deg) scale(0.7);
}

#igruen-2 {
  transform: translateX(-50%) rotate(180deg) scale(1.3);
  z-index: 1;
}
#igruen-2.bluete-rotate {
  transform: translate(-50%, var(--top-r)) rotate(180deg) scale(0.7);
}

#igelb-1 {
  transform: translateX(0%) rotate(180deg) scale(1.3);
}
#igelb-1.bluete-rotate {
  transform: translate(0%, var(--top-r)) rotate(180deg) scale(0.7);
}

/* ############################# */
/* ####BOTTOM */
#igelb-2 {
  transform: translateX(-100%) rotate(0deg) scale(1.3);
}
#igelb-2.bluete-rotate {
  transform: translate(-100%, var(--bottom-r)) rotate(0deg) scale(0.7);
}

#igruen-3 {
  transform: translateX(-50%) rotate(0deg) scale(1.3);
  z-index: 1;
}
#igruen-3.bluete-rotate {
  transform: translate(-50%, var(--bottom-r)) rotate(0deg) scale(0.7);
}

#igelb-3 {
  transform: translateX(0%) rotate(0deg) scale(1.3);
}
#igelb-3.bluete-rotate {
  transform: translate(0%, var(--bottom-r)) rotate(0deg) scale(0.7);
}

/* #################### */
/* ####LEFT RIGHT */
#igelb-right {
  position: absolute;
  transform: translateY(-50%) rotate(-90deg) scale(1.3);
  right: var(--right);
  left: auto;
  top: 50%;
}
#igelb-right.bluete-rotate {
  transform: translateY(-50%) rotate(-90deg) scale(0.7);
}

.iright {
  top: var(--top);
  transform-origin: center center;
}

#igruen-left {
  position: absolute;
  transform-origin: center center;
  transform: translateY(-50%) rotate(90deg) scale(1.3);
  left: var(--left);
  right: auto;
  top: 50%;
}
#igruen-left.bluete-rotate {
  transform: translateY(-50%) rotate(90deg) scale(0.7);
}

.ileft {
  left: var(--left);
  transform-origin: center center;
}

/* ########################### */
.itop {
  top: var(--top);
  transform: translateX(-50%) rotate(180deg) scale(1.3);
}

.ibottom {
  top: auto;
  bottom: var(--bottom);
  transform: translateX(-50%) rotate(0deg) scale(1.3);
}

#logostart {
  transform-origin: center center;
  transform: scale(0.5);
  margin-top: 10rem;
  transition: all 2.5s ease-in-out;
}
#logostart.start {
  transform: scale(1);
}

#teasertext {
  z-index: 2;
  margin-top: 2rem;
}

.teaserslide {
  margin-top: 2rem;
  z-index: 31;
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  align-items: flex-end;
  opacity: 1;
  transition: all 0.8s ease-in-out;
}
.teaserslide h1 {
  font-family: "Poppins";
  font-size: 10rem;
  color: #fff;
  position: absolute;
  transform: translateX(-100%);
  transition: all 1.5s ease-out;
  opacity: 1;
  padding-left: 2rem;
  padding-bottom: 3rem;
}
.teaserslide.show h1 {
  transform: translateX(0%);
}
.teaserslide.hide h1 {
  opacity: 0;
}

#arrow {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  transform: scale(0);
  animation-iteration-count: 1;
}
#arrow.show {
  opacity: 1;
  animation: arrow-in 0.8s;
  animation-iteration-count: 1;
  transform: scale(1);
}

@keyframes arrow-in {
  /* You could think of as "step 1" */
  0% {
    transform: scale(0);
  }
  /* You could think of as "step 2" */
  80% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@media only screen and (max-width: 670px) {
  .teaserslide h1 {
    font-size: 8rem !important;
  }
  img#teasertext {
    max-width: 70%;
  }
  #bg-images-1 {
    grid-column: 1/2;
    grid-row: 1/3;
    background-image: url("../hamm/imagestart/start1-kl.jpg");
    background-size: cover;
    background-position: center bottom;
    z-index: 30;
    transition: all 2.5s ease-in-out;
    opacity: 1;
  }
  #bg-images-1.hide {
    opacity: 0;
  }
  #bg-images-2 {
    grid-column: 1/2;
    grid-row: 1/3;
    background-image: url("../hamm/imagestart/start2-kl.jpg");
    background-size: cover;
    z-index: 20;
    transition: all 2.5s ease-in-out;
    opacity: 1;
  }
  #bg-images-2.hide {
    opacity: 0;
  }
  #bg-images-3 {
    grid-column: 1/2;
    grid-row: 1/3;
    background-image: url("../hamm/imagestart/start3-kl.jpg");
    background-size: cover;
    z-index: 10;
    background-position-x: center;
  }
  #article-1330 .w100 {
    grid-column: 2/12 !important;
  }
}
@media only screen and (max-width: 470px) {
  .teaserslide h1 {
    font-size: 5rem !important;
  }
  img#teasertext {
    max-width: 70%;
  }
  .haenger-left-2::after {
    display: none;
  }
}

:root {
  --padding-inline: 3rem;
  --pistazie: #f1f4ec;
  --gruen: #8ead7a;
  --txt-color: #414244;
  --grau: #414244;
  --gruenDark: #414244;
  --hell-blau: #eef3fb;
  --dunkel-blau: #002a4f;
  --berry: #953c57;
  --beige: #e3dad1;
  --red: #953c57;
  --max-width-text: 700px;
  --max-width-full: 1680px;
  --max-width-bg: 1200px;
  --max-width-main: 1200px;
  --max-width-column2: 1300px;
  --scale: 1.05;
  --active: #000;
}

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

#wrapper {
  width: 100vw;
  overflow: hidden;
}

body {
  background-color: var(--pistazie);
  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%);
}

#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: var(--max-width-main);
  margin: 0 auto;
}
section.full-width .inside-grid .full-width {
  grid-column: 1/-1;
}

#main .headTop {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
}
#main .headTop.withoutImage {
  min-height: 300px;
}
#main .headTop.withoutImage .overlayH1 {
  padding-top: 15rem;
  grid-column: 2/13;
  grid-row: 1/9;
}
#main .head {
  grid-column: full-width;
}
#main .head img {
  width: 100%;
  height: auto;
}
#main .head #btnH {
  grid-column: 5/13;
  grid-row: 1/2;
  z-index: 2000;
  align-self: flex-end;
  justify-self: flex-end;
  gap: 1rem;
  padding-bottom: 2rem;
}
#main .head #btnH img {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1rem;
}
#main .head .headImage {
  grid-column: 1/13;
  grid-row: 1/9;
  z-index: 10;
}
#main .head .headImage#withlight {
  z-index: 100;
  opacity: 0;
}
#main .head .headImage#withoutlight {
  z-index: 10;
}
#main .head .headImage video {
  width: 100%;
  height: auto;
}
#main .head .overlayB {
  grid-column: 2/12;
  grid-row: 5/8;
  z-index: 200;
  align-self: flex-end;
  max-width: 50%;
}
#main .head .overlayB a {
  text-decoration: none;
  display: inline-block;
}
#main .head .overlayB button {
  background-color: var(--beige);
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1.25rem;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
  color: var(--dunkel-blau);
  display: flex;
  align-items: center;
}
#main .head .overlayB button::after {
  content: url(../hg/s-down.png);
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
#main .head .overlayB button.red {
  border: 1px solid var(--berry);
  color: var(--berry);
}

#duenung {
  border-radius: 50%;
  overflow: hidden;
  margin-top: 5rem;
  max-width: 450px;
}

#article-3478 {
  overflow: visible;
}
#article-3478 .content-image {
  grid-column: 3/6;
  grid-row: 2/9;
  z-index: 1000;
}
#article-3478 .content-image img {
  max-width: 590px;
  transform: translateY(50%);
}

#article-3479 .column:first-child {
  padding-top: 300px;
}

body.txtHell #header #menu-head .inside #top-right h3 {
  color: #ffffff;
}
body.txtHell #header h3.weg::before {
  content: "";
  background-image: url(../hg/weg-white.png);
}
body.txtHell #header h3.phone::before {
  content: "";
  background-image: url(../hg/FAX-white.png);
}

#main .alignCright {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}
#main .alignCright .inside-grid {
  justify-content: end;
}
#main button {
  background-color: var(--beige);
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1.25rem;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
  color: var(--dunkel-blau);
  display: flex;
  align-items: center;
}
#main button::after {
  content: url(../hg/s-down.png);
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
#main button.red {
  border: 1px solid var(--berry);
  color: var(--berry);
}
#main button.red::after {
  content: url(../hg/s-down-red.png);
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
#main button.red a {
  text-decoration: none !important;
  color: inherit;
}
#main button.white {
  border: 1px solid #fff;
  color: #fff;
}
#main button.white::after {
  content: url(../hg/s-down-white.png);
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
#main button.white a {
  text-decoration: none !important;
  color: inherit;
}

h1 {
  font-size: 5rem;
  font-weight: 200;
  line-height: normal;
  padding-top: 2rem;
  padding-bottom: 0;
  color: var(--dunkel-blau);
  font-family: "Urbanist", sans-serif;
}
h1 em {
  color: var(--berry);
  font-style: normal;
}

.phonelink {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  font-family: "Urbanist", sans-serif;
  color: var(--grau);
}
.phonelink::before {
  content: "";
  background-image: url("../hg/phone.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 2.5rem;
  height: 38px;
  margin-right: 0.8rem;
}

.border-round img {
  border-radius: 50%;
}

h2 {
  color: var(--dunkel-blau);
  font-family: "Urbanist", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  hyphens: auto;
}

.bg-hellblau {
  background-color: var(--hell-blau);
}

.bg-beige {
  background-color: var(--beige);
}

.bg-hblau {
  background-color: var(--hell-blau);
}

.bg-red {
  background-color: var(--red);
}
.bg-red h1,
.bg-red h2,
.bg-red p,
.bg-red a,
.bg-red li {
  color: #fff !important;
}

.bg-blue {
  background-color: var(--dunkel-blau);
}
.bg-blue h1,
.bg-blue h2,
.bg-blue p,
.bg-blue a,
.bg-blue li {
  color: #fff !important;
}

.color-red button {
  background-color: var(--berry) !important;
  color: #fff !important;
}
.color-red button::after {
  content: url(../hg/s-down-white.png) !important;
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.color-blue button {
  background-color: var(--dunkel-blau) !important;
  color: #fff !important;
}
.color-blue button::after {
  content: url(../hg/s-down-white.png) !important;
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

#main strong {
  font-weight: 600;
}
#main p.phone {
  display: flex;
  align-items: center;
}
#main p.phone::before {
  content: "";
  background-image: url("../hg/FAX.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
}
#main .txt-red h2,
#main .txt-red p,
#main .txt-red a,
#main .txt-red li {
  color: var(--berry);
}

#article-3479 p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.maxw70 img {
  max-width: 390px;
}

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

.paddingT5 {
  padding-top: 5rem;
}

.paddingB5 {
  padding-bottom: 5rem;
}

#dekosliderH {
  padding-bottom: 0;
}
#dekosliderH .inside-grid {
  max-width: 100vw;
}

#sliderTrauerdekorationen {
  max-width: 700px;
  margin: 0 auto;
}

#main #sliderTrauerdekorationen .slick-list img {
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  padding: 0 2rem;
}

#main #dekosliderH .tt,
#main #teamsliderH .tt,
#main #historiesliderH .tt {
  max-width: 300px;
  margin: 0 auto;
}
#main #dekosliderH .tt p.name,
#main #teamsliderH .tt p.name,
#main #historiesliderH .tt p.name {
  font-size: 1.75rem;
  line-height: 1.8rem;
  color: var(--grau);
  text-align: left;
}
#main #dekosliderH .tt p.function,
#main #teamsliderH .tt p.function,
#main #historiesliderH .tt p.function {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--grau);
  text-align: left;
}
#main #historiesliderH .tt {
  max-width: 500px;
  margin: 0 auto;
}
#main #historiesliderH .tt p.name {
  font-size: 1.75rem;
  line-height: 1.8rem;
  color: var(--grau);
  text-align: left;
}
#main #historiesliderH .tt p.function {
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: var(--grau);
  text-align: left;
}
#main #historiesliderH .tt p.author {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--grau);
  text-align: left;
  font-style: italic;
}

#sliderBlumenSymbolik .slick-slide img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 0 !important;
  max-width: 500px !important;
}

#redner img {
  max-width: 398px;
}

.w6040 .inside-grid {
  display: grid;
  grid-template-columns: 60% 30%;
  gap: 3rem;
  justify-content: space-between;
}
.w6040 .inside-grid:first-child {
  grid-column: 1/2;
}
.w6040 .inside-grid:last-child {
  grid-column: 2/3;
}
.w6040 .content-image {
  align-self: center;
}

.w5050 .inside-grid {
  display: grid;
  grid-template-columns: calc(50% - 2.5rem) calc(50% - 2.5rem);
  gap: 5rem;
  align-items: center;
}
.w5050.verticalTop .inside-grid {
  align-items: start !important;
}

.friedhoefe .content-image img,
.imagescale .content-image img {
  max-width: 450px;
  height: auto;
}

#article-3161 .submit {
  margin-top: 1rem;
  background-color: var(--gruen);
  color: #fff;
  padding: 0.3rem;
}

#main .search_default h3 {
  color: var(--grau);
  font-family: "Urbanist", sans-serif;
  font-size: 2.75rem !important;
  font-weight: 300;
  border-bottom: 1px solid var(--gruen);
}
#main .search_default h3 a {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}
#main .search_default p.url {
  font-size: 1rem;
  color: var(--grau);
  font-family: "Urbanist", sans-serif;
  font-style: italic;
}

.g23 {
  grid-column: 2/3;
}

.w4060 .inside-grid {
  display: grid;
  grid-template-columns: 30% 60%;
  gap: 3rem;
  justify-content: space-between;
}
.w4060 .inside-grid:first-child {
  grid-column: 1/2;
}
.w4060 .inside-grid:last-child {
  grid-column: 2/3;
}
.w4060 .content-image {
  align-self: center;
}

.itemSliderB .itemSlider {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}
.itemSliderB .itemSlider .column.images {
  transition: transform 0.5s ease;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.itemSliderB .itemSlider .content-image {
  padding: 0rem 0 10rem 0;
  box-sizing: border-box;
  transition: all 0.5s ease;
}
.itemSliderB .itemSlider .content-image.showImage {
  opacity: 1 !important;
}
.itemSliderB .itemSlider .column.text .item .slideContent {
  max-height: 0;
  overflow-y: hidden;
  transition: max-height 0.4s ease;
  padding-right: 1rem;
}
.itemSliderB .itemSlider .column.text .item.active .slideContent {
  max-height: 200px;
  font-size: 1.2rem;
  padding-right: 1rem;
}
.itemSliderB .itemSlider .column.text .item .toggler {
  cursor: pointer;
  padding: 0.7rem 0;
  font-size: 1.25rem;
  border-bottom: 1px solid var(--grau);
}
.itemSliderB .itemSlider .column.text .item .toggler:after {
  content: url(../hg/arrow_slide.png);
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  position: absolute;
  right: 0;
}

#article-3025 .content-image {
  padding-top: 10rem;
}
#article-3025 {
  padding-bottom: 0;
}

#article-3027 {
  padding-top: 0;
}

.w80 .inside-grid,
.w85 .inside-grid {
  display: grid;
  grid-template-columns: 80%;
  justify-content: start;
}
.w80 .inside-grid:first-child,
.w85 .inside-grid:first-child {
  grid-column: 1/2;
}

.w50 {
  display: grid;
  grid-template-columns: 70%;
  margin: 0 auto;
}

.w100 {
  display: grid;
  grid-template-columns: 100%;
  margin: 0 auto;
}

#article-3064,
#article-3070 {
  width: 100%;
  padding-bottom: 10rem;
}
#article-3064 .inside-grid,
#article-3070 .inside-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin: 0 auto;
}

#main #listeFriedhoefe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
#main #listeFriedhoefe .btn_karte {
  cursor: pointer;
}
#main #listeFriedhoefe .btn_karte:hover {
  background: rgba(0, 0, 0, 0.05);
}
#main #listeFriedhoefe h3 {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--grau);
}
#main #listeFriedhoefe p {
  font-family: "Urbanist", sans-serif;
  font-size: 1.25rem;
}
#main #listeFriedhoefe .btn_karte {
  margin: 5px;
  border: 0px solid #ccc;
  padding: 5px;
}

#blumensliderH .slick-track {
  padding-bottom: 2rem;
}
#blumensliderH .item {
  padding-bottom: 1rem;
}

.w85 .inside-grid {
  display: grid;
  grid-template-columns: 90%;
  justify-content: center;
}

#sliderKapelle .slick-prev,
#sliderKapelle .slick-next {
  bottom: 0px !important;
}

.grid12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, 1fr);
}
.grid12 .content-image {
  grid-column: 1/-1 !important;
  grid-row: 1/-1;
  z-index: 0;
}
.grid12 .content-text {
  grid-column: 4/10 !important;
  grid-row: 3/-1;
  z-index: 10;
}

#sliderBlumenSymbolik img.slick-prev {
  transform: rotate(180deg) !important;
  left: 2% !important;
}

body.navi-white #menu-head .inside a,
body.navi-white #menu-head .inside h3 {
  color: #fff !important;
}
body.navi-white #header h3.phone::before {
  content: "";
  background-image: url(../hg/phone-white.png);
}

#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;
}

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

#buch .flexC,
#adressen .flexC {
  display: flex;
  gap: 2rem;
  justify-content: space-around;
}
#buch .flexC .column,
#adressen .flexC .column {
  flex: 0 0 40%;
}
#buch li::before,
#adressen li::before {
  display: none;
}
#buch h1,
#adressen h1 {
  color: #333;
}
#buch .book-list,
#adressen .book-list {
  list-style: none;
  padding: 0;
}
#buch .book,
#adressen .book {
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
#buch .title,
#adressen .title {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.8rem !important;
  margin-bottom: 0.25rem;
  color: #000;
}
#buch .subtitle,
#adressen .subtitle {
  font-style: italic;
  margin-bottom: 0rem;
  font-size: 1.3rem;
  line-height: 1.6rem !important;
}
#buch .author,
#buch .isbn,
#buch .publisher,
#adressen .author,
#adressen .isbn,
#adressen .publisher {
  margin: 0.2rem 0;
  font-size: 1rem;
  line-height: 1.3rem !important;
}
#buch .author,
#adressen .author {
  color: #000;
}
#buch .age,
#adressen .age {
  font-size: 0.8rem;
}

#blumensliderH.full-width .inside-grid {
  max-width: 2000px !important;
  margin: 0 auto;
}

.ggH p {
  color: #000 !important;
  font-size: 1.2rem !important;
}

#adressen .book-list {
  list-style: none;
  padding: 0;
}
#adressen .book {
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
#adressen .title {
  font-weight: normal;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--gruen);
}
#adressen .subtitle2 {
  font-style: normal;
  margin-bottom: 0rem;
  font-size: 1.2rem;
  line-height: 1.5rem !important;
  color: var(--gruen);
  text-transform: normal;
  font-weight: normal;
}
#adressen .subtitle {
  font-style: normal;
  margin-bottom: 0rem;
  font-size: 1.5rem;
  line-height: 1.8rem !important;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
}
#adressen .time,
#adressen .phone,
#adressen .contact {
  font-size: 1.1rem;
}
#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;
}

#listeFriedhoefe {
  justify-content: space-around;
}

#karte .btn_karte {
  border: 0;
  flex: 0 0 38%;
}
#karte .btn_karte .headF {
  color: #000 !important;
  font-size: 1.75rem;
  font-weight: bold !important;
}
#karte .btn_karte .headF h3 {
  font-size: inherit;
  color: #000 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  font-weight: bold !important;
}
#karte .btn_karte .contentF p {
  margin-top: 0;
}

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);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 2.8rem;
  font-family: "Urbanist", sans-serif;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

p {
  font-family: "Urbanist", sans-serif;
  font-size: 1.375rem;
  line-height: 2.5rem;
}

#hamburger {
  display: none;
}

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

#article-3145 .content-image {
  align-self: flex-start;
}

#main h3 {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: normal;
  color: var(--text-color);
  text-transform: none;
}
#main .paddingT-5 {
  padding-top: 5rem !important;
}
#main .paddingT-0 {
  padding-top: 0 !important;
}
#main .paddingT-10 {
  padding-top: 10rem !important;
}
#main .paddingTB-10 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}
#main .erklaerfilm,
#main .startbutton {
  text-align: center;
}
#main .erklaerfilm h2,
#main .startbutton h2 {
  font-size: 1.5rem;
  text-align: center;
  background-color: var(--gelb);
  color: var(--text-tuerkis) !important;
  border: 2px solid var(--text-tuerkis);
  border-radius: 6px;
  padding: 0.5rem;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
}
#main .erklaerfilm h2 a,
#main .startbutton h2 a {
  color: inherit;
  text-decoration: none;
}
#main .startbutton {
  display: inline-block !important;
}
#main .icon {
  text-align: center;
}
#main .icon img {
  margin: 0 auto;
}
#main h1 {
  font-size: 5rem;
  font-weight: 300;
  color: var(--grau);
  text-transform: none;
  line-height: normal;
}
#main h3 {
  font-family: "Urbanist", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
}
#main h1 {
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 0;
  padding-top: 0.5rem;
  hyphens: auto;
}
#main p,
#main li,
#main a {
  font-size: 1.625rem;
  line-height: normal;
  color: var(--text-color);
  font-weight: 300;
}
#main a:hover {
  color: #000;
}
#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: "⏺";
  color: var(--grau);
  margin-right: 0.5rem;
  font-size: 0.5rem;
  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 #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 .content-center {
  justify-content: center;
}
#main .content-center .inside-grid {
  grid-column: 1/3;
  margin: 0 auto;
  max-width: var(--max-width-bg);
}
#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: 100vw;
  height: auto;
  margin: 0 auto;
  padding: 0 2rem;
}
#main .slick-slide .sub .name {
  display: block;
  font-weight: 600;
  font-size: 1.5rem;
}
#main .paddingTB {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.v-center .inside-grid {
  align-items: center;
}

.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;
}

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

#main .content-text h3 {
  font-size: 1.5rem;
  font-weight: 300;
}
#main #article-3014 .content-text h3 {
  margin-bottom: 0;
  padding-bottom: 0;
}
#main #article-3014 .content-text h3 + p {
  margin-top: 0;
  padding-top: 0;
}

.grabarten {
  background: #333;
  color: #fff;
}
.grabarten .insideT {
  max-width: var(--max-width-main);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.8rem;
}
.grabarten .insideT h2 {
  color: inherit;
}
.grabarten .insideT .full-width {
  grid-column: 1/-1;
}
.grabarten .insideT > .column {
  grid-column: 1/2;
  display: flex;
  flex-direction: column;
}
.grabarten .insideT > .column ~ .column {
  grid-column: 2/3;
}
.grabarten .insideT .content-text {
  margin-top: 10rem;
}
.grabarten .insideT .max-width-80 {
  max-width: 80%;
  margin: 0 auto;
}

.paddingB10 {
  padding-bottom: 10rem;
}

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

#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 {
  color: var(--gruen);
  border: 0;
  font-size: 1.2rem;
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--dunkel-blau);
  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 button.green {
  background-color: var(--gruen);
  color: #fff;
}
#main .button {
  background-color: none;
  color: var(--gruen);
  border: 0;
  font-size: 1.2rem;
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--dunkel-blau);
  cursor: pointer;
  margin: 0;
  color: var(--dunkel-blau);
  text-decoration: none;
  display: inline-flex;
}
#main .button::after {
  content: url("../hg/s-link.png") !important;
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
#main .button.red {
  border: 1px solid var(--berry);
  color: var(--berry);
}
#main .button.red::after {
  content: url("../hg/s-down-red.png") !important;
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
#main .button.red.full {
  background-color: var(--berry);
  color: #fff;
}
#main .button.red.full::after {
  content: url("../hg/s-down-white.png") !important;
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
#main .button.white {
  border: 1px solid #fff;
  background-color: #fff;
  color: var(--dunkel-blau) !important;
}
#main .button.white::after {
  content: url("../hg/s-link.png") !important;
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
#main .button.blue {
  border: 1px solid var(--beige);
  color: var(--dunkel-blau) !important;
  background-color: var(--beige);
}
#main .button.blue::after {
  content: url("../hg/s-link.png") !important;
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
#main .button.blau {
  border: 1px solid var(--dunkel-blau);
  color: #fff !important;
  background-color: var(--dunkel-blau);
}
#main .button.blau::after {
  content: url("../hg/s-link-white.png") !important;
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
#main #madonna {
  text-align: right;
}
#main #madonna img {
  max-width: 300px;
  height: auto;
  margin-right: 0;
  margin-left: auto;
}
#main .pdf-button {
  display: flex;
  align-items: center;
}
#main .pdf-button::before {
  content: url("../hg/pdf-icon.png") !important;
  display: inline-block;
  margin-right: 0.5rem;
}
#main .toggler button {
  background: none;
  display: flex;
  font-family: "Urbanist", sans-serif;
  flex-direction: column;
  color: var(--grau);
  align-items: center;
  font-weight: 300;
  font-size: 2.75rem;
}
#main .toggler button::after {
  content: url("../hg/arrow-down.png") !important;
  font-size: 1.2rem;
  margin-left: 0;
  padding-top: 3rem;
}
#main .accordion {
  display: block;
}
#main .accordion ul {
  padding: 1rem;
}
#main .accordion ul li {
  font-size: 1.5rem;
  font-weight: 600;
}
#main .ce_accordionStart {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#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 .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: 49%;
  width: 20px !important;
  height: auto;
  left: 50% !important;
}
#main .slick-prev {
  left: -2% !important;
  right: auto !important;
}
#main .slick-next {
  right: 2% !important;
  left: auto !important;
  transform: translate(50%, 0) !important;
}
#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;
}
#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 .slide-content-holder {
  z-index: 2;
}
#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 #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;
}

.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;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-left: -5rem;
}
.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: 38%;
  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: "Urbanist", sans-serif;
  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;
}

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: "Urbanist", sans-serif;
}
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;
}

#left .mod_navigation {
  overflow-y: auto;
}
#left .mod_navigation ul.level_1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  height: 80vh;
  width: 100vw;
  max-width: 998px;
  margin: 0 auto;
}
#left .mod_navigation ul.level_1 > li.submenu > a, #left .mod_navigation ul.level_1 > li.submenu > strong {
  text-transform: none !important;
  margin-bottom: 0;
  padding-bottom: 0 !important;
  font-style: normal;
  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%;
}

@media only screen and (max-width: 1450px) {
  #top-right {
    grid-column: 10/12;
    grid-row: 1/2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
  }
  #article-3478 .content-image {
    grid-column: 3/6;
    grid-row: 3/11;
    z-index: 1000;
  }
}
@media only screen and (max-width: 1250px) {
  #header #menu-head .inside {
    grid-template-rows: auto auto;
  }
  #header #menu-head .inside #top-left {
    grid-row: 1/3;
  }
  .mod_article.w80 .inside-grid, .mod_article.w85 .inside-grid {
    margin: 0 2rem;
  }
  #article-3014 .inside-grid, #article-3200 .inside-grid, #article-3201 .inside-grid, #article-3207 .inside-grid, #article-3233 .inside-grid, #article-3235 .inside-grid, #redner .inside-grid, #article-3257 .inside-grid, #article-3260 .inside-grid {
    margin: 0 2rem;
  }
  #article-3479 .inside-grid, #article-3487 .inside-grid {
    margin: 0 2rem;
  }
}
@media only screen and (max-width: 1200px) {
  #header #menu-head .inside #top-center {
    grid-column: 1/5;
    grid-row: 1/3;
    display: flex;
  }
  #header #menu-head .inside #top-right {
    grid-column: 6/12;
    grid-row: 1/3;
    display: flex;
  }
  #sliderHead .slide h2 {
    font-size: 3.89rem;
    font-weight: 200;
  }
}
@media only screen and (max-width: 1090px) {
  #article-3021 .grabarten {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 1020px) {
  html {
    font-size: 14px;
  }
  #footer #footer-inline .line .item.left,
  #footer #footer-inline-second .line .item.left {
    padding: 1rem;
  }
  footer #footer-inline .line .icons {
    grid-column: 1/span 3 !important;
    justify-self: center !important;
  }
}
@media only screen and (max-width: 950px) {
  .grabarten .insideT {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .grabarten .insideT .content-text {
    margin-top: 1rem;
  }
  #article-3027 .inside-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 1rem;
  }
  #article-3027 .inside-grid .g23 {
    grid-column: 1/-1;
  }
  #main .head .overlayB {
    grid-column: 2/12;
    grid-row: 5/8;
    z-index: 200;
    align-self: flex-end;
    max-width: 100%;
  }
  #article-3478 .content-image {
    grid-column: 3/6;
    grid-row: 4/11;
    z-index: 1000;
  }
}
@media only screen and (max-width: 860px) {
  html {
    font-size: 12px;
  }
  #article-3478 #sliderHead {
    height: 40px;
    width: 100%;
    overflow: hidden;
    grid-column: 6/13;
    grid-row: 3/7;
    z-index: 1200;
  }
  #article-3478 .content-image {
    grid-column: 3/6;
    grid-row: 3/11;
    z-index: 1000;
  }
  #article-3478 #sliderHead {
    height: 40px;
    width: 100%;
    overflow: hidden;
    grid-column: 6/13;
    grid-row: 3/7;
    z-index: 1200;
  }
  #article-3478 .content-image {
    grid-column: 1/6 !important;
    grid-row: 3/12;
    z-index: 1000;
  }
}
@media only screen and (max-width: 740px) {
  #header #menu-head .inside #top-right {
    grid-column: 5/12;
    grid-row: 1/3;
    display: flex;
  }
  #article-3478 #sliderHead {
    height: 40px;
    width: 100%;
    overflow: hidden;
    grid-column: 5/13;
    grid-row: 3/7;
    z-index: 1200;
  }
  #article-3478 .content-image {
    grid-column: 1/6 !important;
    grid-row: 3/12;
    z-index: 1000;
  }
  #left .mod_navigation {
    overflow-y: auto;
  }
  #left .mod_navigation ul.level_1 {
    display: grid;
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    height: auto;
    width: 100vw;
    max-width: 998px;
    margin: 0 auto;
  }
  #left .mod_navigation ul.level_1 > li.submenu > a, #left .mod_navigation ul.level_1 > li.submenu > strong {
    text-transform: none !important;
    margin-bottom: 0;
    padding-bottom: 0 !important;
    font-style: normal;
    text-decoration: none;
  }
  #left .mod_navigation ul.level_1 li {
    flex: 0 0 47%;
  }
  #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: 1/2;
    grid-row: 2/3;
  }
  #left .mod_navigation ul.level_1 li:nth-of-type(4) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  #left .mod_navigation ul.level_1 li:nth-of-type(5) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  #left .mod_navigation ul.level_1 li:nth-child(6) {
    grid-column: 2/3;
    grid-row: 3/4;
    z-index: 0;
  }
  #left .mod_navigation ul.level_1 li:nth-child(7) {
    grid-column: auto/span 1;
    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: auto/span 1;
    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 #article-3478 #sliderHead {
    height: 40px;
    width: 100%;
    overflow: hidden;
    grid-column: 6/13;
    grid-row: 3/7;
    z-index: 1200;
  }
  #left #article-3478 .content-image {
    grid-column: 1/6 !important;
    grid-row: 3/11;
    z-index: 1000;
    border: 2px solid #ff0000;
  }
}
@media only screen and (max-width: 740px) and (max-width: 700px) {
  #main #btnH {
    transform: scale(0.7);
    transform-origin: bottom right;
  }
  .w6040 .inside-grid,
  .w4060 .inside-grid {
    grid-template-columns: 1fr;
  }
  .w4060 .inside-grid {
    grid-template-columns: 1fr;
  }
  .w4060 .inside-grid .content-image {
    order: 2;
  }
  .w4060 .inside-grid .content-text {
    order: 1;
  }
}
@media only screen and (max-width: 740px) {
  .itemSliderB .itemSlider {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 2rem;
    overflow: hidden;
    position: relative;
  }
  .itemSliderB .itemSlider .column.images {
    transition: transform 0.5s ease;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  }
  .itemSliderB .itemSlider .content-image {
    padding: 0rem 0 10rem 0;
    box-sizing: border-box;
  }
  .itemSliderB .itemSlider .column.text .item .slideContent {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .itemSliderB .itemSlider .column.text .item.active .slideContent {
    max-height: 600px !important;
    font-size: 1rem;
  }
  #sliderHistorie .slick-slide {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  #article-3478 #sliderHead {
    overflow: hidden;
    grid-column: 5/13;
    grid-row: 3/7;
    z-index: 1200;
  }
  #article-3478 #sliderHead h2 {
    font-size: 3rem;
    word-break: normal;
    word-wrap: break-word;
    hyphens: auto;
  }
  #article-3478 .content-image {
    grid-column: 1/6 !important;
    grid-row: 3/12;
    z-index: 1000;
  }
}
@media only screen and (max-width: 520px) {
  .w5050 .inside-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 1rem;
    justify-items: center;
  }
  .w5050 .inside-grid .content-image {
    text-align: center;
  }
  .w5050 .inside-grid .content-image img {
    margin: 0 auto;
  }
  #article-3479 .column:first-child {
    padding-top: 130px;
  }
}
@media only screen and (max-width: 480px) {
  #header #menu-head .inside #top-center {
    grid-column: 1/6;
  }
  #header #menu-head .inside #top-right {
    grid-column: 5/13;
  }
  #header #menu-head .inside {
    grid-template-rows: auto auto;
  }
  #header #menu-head .inside #top-left {
    grid-row: 1/3;
  }
  #header #menu-head .inside #top-right {
    justify-content: flex-end;
    transform: scale(0.6);
    transform-origin: top center;
  }
  #header #menu-head .inside #top-rright {
    grid-row: 1/2;
    grid-column: 12/13;
  }
  #header h3.phone::before {
    content: "";
    background-image: url("../hg/phone.png");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 2.5rem;
    height: 26px;
    margin-right: 0.3rem;
  }
  #header h3.phone {
    font-size: 1rem !important;
  }
}
@media only screen and (max-width: 570px) {
  #footer #footer-inline .line .icons .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  #footer #footer-inline .line .icons {
    grid-row: 4/5 !important;
  }
  #header #menu-head .inside #top-left {
    grid-column: 1/7;
    text-align: center;
  }
}
@media only screen and (max-width: 500px) {
  #left #navigation #navHolder .row .level_1 > li {
    flex: 0 0 100% !important;
    margin-top: 3rem;
  }
  h1 {
    font-size: 3.9rem !important;
  }
  .w80 .inside-grid,
  .w85 .inside-grid {
    grid-template-columns: 100%;
  }
  .itemSliderB .itemSlider {
    display: grid;
    grid-template-columns: 30% calc(70% - 1rem);
    gap: 1rem;
    overflow: hidden;
    position: relative;
  }
  #main #btnH {
    transform: scale(0.6);
    transform-origin: center right;
  }
}
@media only screen and (max-width: 420px) {
  #main #listeFriedhoefe {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #main #listeFriedhoefe .btn_karte {
    border-bottom: 1px solid var(--grau);
  }
}/*# sourceMappingURL=aufbau.css.map */