@charset "UTF-8";
/* league-spartan-100 - 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: "League Spartan";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/league-spartan-v11-latin-100.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* league-spartan-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: "League Spartan";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/league-spartan-v11-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* league-spartan-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: "League Spartan";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/league-spartan-v11-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* league-spartan-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "League Spartan";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/league-spartan-v11-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* league-spartan-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: "League Spartan";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/league-spartan-v11-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* league-spartan-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: "League Spartan";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/league-spartan-v11-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* league-spartan-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: "League Spartan";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/league-spartan-v11-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* league-spartan-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: "League Spartan";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/league-spartan-v11-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* league-spartan-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: "League Spartan";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/league-spartan-v11-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;
}

* {
  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;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

h1, h2 {
  -webkit-hyphens: auto;
          hyphens: auto;
  hyphenate-limit-chars: 10 3 4;
}

p {
  /* overflow-wrap: break-word; */
  overflow-wrap: normal;
  /* hyphens:none; */
  /* hyphens:auto; */
  -webkit-hyphens: manual;
          hyphens: manual;
  line-height: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* -webkit-hyphens: auto;
     -moz-hyphens: auto;
          hyphens: auto; */
}

#wrapper {
  min-height: 100vh;
}

::-moz-selection {
  color: rgb(255, 255, 255);
  background: #9b9b9b;
}

::selection {
  color: rgb(255, 255, 255);
  background: #9b9b9b;
}

/* Basis Styling */
#hamburger {
  position: absolute;
  right: 0;
  top: 9px;
  z-index: 100;
  transform: scale(2);
}

.hamburger-icon-container {
  height: 2.2em;
  width: 2.2em;
  position: relative;
  cursor: pointer;
  background: none;
  border: 0px solid currentColor;
  border-radius: 3px;
}

.hamburger-icon,
.hamburger-icon:before {
  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-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.5);
  }
}
#header {
  padding: 1.5rem 0;
  position: fixed;
  z-index: 200;
  min-height: 80px;
  background-color: #fff;
}
#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: 50% 50%;
}
#header #menu-head .inside #top-logo {
  grid-column: 1/2;
}
#header #menu-head .inside #top-right {
  grid-column: 2/3;
}
#header #top-logo img {
  max-width: 620px;
  width: 100%;
}
#header #twenty-for-seven {
  display: inline-block;
  background-image: url("../icons/phone.png");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 0 50%;
  line-height: 1.3rem;
  color: var(--blau);
  padding: 1rem 0;
  padding-left: 28px;
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-size: 1.375rem;
  margin-left: 2rem;
  margin-left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.startseite2 #header #top-logo {
  display: flex;
  justify-content: center;
}
.startseite2 #header #top-logo img {
  max-width: 80px !important;
  width: 100%;
  height: 70px;
}
.startseite2 #header #menu-head .inside {
  grid-column: content;
  display: grid;
  grid-template-columns: 45% 1fr 45%;
}
.startseite2 #header #menu-head .inside #top-logo {
  grid-column: 2/3;
}
.startseite2 #header #menu-head .inside #top-right {
  grid-column: 3/4;
}

#logostart {
  display: none;
  z-index: 30;
}

.startseite2 #wrapper:hover #header {
  top: 0;
}

@media only screen and (max-width: 890px) {
  #header #menu-head .inside {
    grid-template-columns: 1fr;
  }
  #header #menu-head .inside #top-logo {
    grid-column: 1/2;
  }
  #header #menu-head .inside #top-logo img {
    max-width: 55%;
  }
  #header #menu-head .inside #top-right {
    grid-column: 1/2;
  }
  #header #menu-head .inside #twenty-for-seven {
    margin-left: 0;
    transform: translateX(0);
  }
}
@media only screen and (max-width: 768px) {
  #header #menu-head .inside #twenty-for-seven {
    line-height: 1.1rem;
    padding: 1rem 0;
    padding-left: 26px;
    font-size: 0.9rem;
  }
  #header #menu-head .inside #top-logo img {
    max-width: 50%;
  }
  #header .content-grid {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.startseite #container {
  padding-top: 0;
}

@media only screen and (max-width: 1550px) {
  #header #menu-head .inside {
    max-width: 1038px;
    margin: 0 auto;
    width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  #hamburger {
    top: 5px;
  }
  #header #menu-head {
    --padding-inline: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .startseite #main #videohead {
    padding-top: 80px !important;
    background-color: #fff;
  }
}
#footer {
  font-size: 1.25rem;
  font-family: var(--font-family);
  background-color: #d0e8f4;
  aspect-ratio: 23/5;
  background-image: url(../hg/bg-footer.jpg);
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}
#footer .full {
  padding-top: 2rem;
}
#footer .full img {
  margin: 0 auto;
}
#footer #footer-inline {
  display: grid;
  grid-template-columns: repeat(3, 30%);
  justify-items: center;
  color: var(--blau);
  padding-top: 2rem;
}
#footer .point,
#footer .paragraph {
  position: relative;
  text-align: left;
  padding-top: 1rem;
  line-height: 0.5rem;
}
#footer .point a,
#footer .point p,
#footer .paragraph a,
#footer .paragraph p {
  color: var(--blau);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.7rem;
}
#footer .point .rte div,
#footer .paragraph .rte div {
  line-height: 1.7rem;
  font-weight: 700;
}
#footer .paragraph {
  padding-top: 0;
}
#footer .paragraph p {
  margin-top: 1rem;
}
#footer .head.mail::before {
  content: url("../icons/mail_footer.png");
  margin-right: 1rem;
}
#footer .head.tel::before {
  content: url("../icons/phone_footer.png");
  margin-right: 1rem;
}
#footer .paragraph a {
  color: var(--blau);
  text-decoration: none;
}
#footer .mapslink {
  margin-top: 0;
  padding-top: 0;
}
#footer .mapslink a {
  font-size: 80%;
}
#footer .head {
  font-weight: 300;
  margin: 0;
  padding: 0;
}
#footer .head + p {
  margin-top: 0.2rem;
}

@media only screen and (max-width: 1068px) {
  #footer #footer-inline {
    display: grid;
    grid-template-columns: auto 1fr 15%;
    justify-items: center;
    padding-top: 2rem;
  }
}
@media only screen and (max-width: 550px) {
  #footer #footer-inline {
    display: grid;
    grid-template-columns: 50% 50%;
    justify-items: center;
    padding-top: 2rem;
  }
  #footer #footer-inline .paragraph.content-text {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-around;
    padding-bottom: 5rem;
  }
  #footer #footer-inline .paragraph.content-text a {
    padding: 0 1rem;
  }
  #footer #footer-inline .paragraph.content-text br {
    content: " ";
  }
  #footer #footer-inline .paragraph.content-text br:after {
    content: " ";
  }
}
@media only screen and (max-width: 500px) {
  #footer #footer-inline {
    display: grid;
    grid-template-columns: repeat(1, 100%);
    justify-items: center;
    padding-top: 2rem;
  }
  #footer {
    padding-bottom: 3rem;
  }
}
/* Basis Styling */
.hamburger-icon-container {
  height: 1.7em;
  width: 1.7em;
  position: relative;
  cursor: pointer;
  border-radius: 3px;
  background-color: var(--hellblau);
  padding: 3px;
}
.hamburger-icon-container.white .hamburger-icon,
.hamburger-icon-container.white .hamburger-icon:before {
  background: #fff !important;
}

.hamburger-icon,
.hamburger-icon:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 1.3em;
  background: var(--red);
  transition: all 0.2s ease;
}

.hamburger-icon {
  top: 0.75em;
}

.hamburger-icon:before {
  top: -0.3em;
}

.hamburger-icon:after {
  position: absolute;
  top: -0.5em;
  content: "menu";
  font-size: 0.6rem;
  color: var(--red);
}


#main #philosophie .inner-grid.content-grid-LR {
  max-width: 90%;
}
#main #philosophie h3 {
  padding-left: 3rem;
}
#main #rat-hilfe.mod_article {
  padding: 3rem 0;
}
#main #trauer-worten .handorgel .content-text {
  padding: 2rem 5rem;
}
#main .trauerfloristikSwiper {
  width: 100%;
  height: 300px;
  position: relative;
}
#main .trauerfloristikSwiper .swiper-slide img {
  max-height: auto;
  height: 300px;
  width: auto;
  margin: 2rem;
}
#main .trauerfloristikSwiper .slick-arrow {
  position: absolute;
  z-index: 20000;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #126fb7;
  border-radius: 50%;
}
#main .trauerfloristikSwiper .slick-next {
  right: 10px;
}
#main .trauerfloristikSwiper .slick-prev {
  left: 10px;
}
#main .trauerfloristikSwiper .slick-prev:before {
  content: "«";
  font-size: 3rem;
  color: #126fb7;
  line-height: unset;
}
#main .trauerfloristikSwiper .slick-next:before {
  content: "»";
  font-size: 3rem;
  color: #126fb7;
  line-height: unset;
}
#main .trauerfloristikSwiper .slick-slide img {
  transition: all 0.6s ease-in-out;
  transform: scale(1);
}
#main .trauerfloristikSwiper .slick-slide.slick-current img {
  transform: scale(1.2);
}
#main #trauerdekoration {
  margin-bottom: 5rem;
}

#left {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: var(--red);
  z-index: 20000;
  margin-left: 0;
  transform: scale(0);
  transition: all 0.5s ease-in-out;
  background-image: url("../hg/bg_navi.jpg");
  background-position: center;
  background-size: cover;
}
#left #navigation #navHolder {
  gap: 3%;
}
#left #navigation #navHolder .column {
  width: 80%;
  margin: 0 auto;
}
#left #navigation #navHolder .column.top {
  width: 100%;
  position: relative;
  height: 3rem;
}
#left #navigation #navHolder .column .level_1 {
  list-style: none !important;
  display: grid;
  grid-template-columns: 23% 23% 23% 1fr;
  grid-template-rows: auto;
}
#left #navigation #navHolder .column .level_1 > li {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
  z-index: 20;
}
#left #navigation #navHolder .column .level_1 > li a,
#left #navigation #navHolder .column .level_1 > li strong {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 500;
  padding: 1rem;
  display: block;
  text-decoration: none;
  position: relative;
}
#left #navigation #navHolder .column .level_1 > li strong {
  color: var(--grey) !important;
}
#left #navigation #navHolder .column .level_1 > li .level_2 {
  list-style: none !important;
  transition: transform 0.2s;
  padding-left: 0;
}
#left #navigation #navHolder .column .level_1 > li .level_2 li {
  list-style: none !important;
  padding-left: 0;
}
#left #navigation #navHolder .column .level_1 > li .level_2 a,
#left #navigation #navHolder .column .level_1 > li .level_2 strong {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0rem 1rem;
}
#left #navigation #navHolder .column .level_1 > li .level_2 a:hover,
#left #navigation #navHolder .column .level_1 > li .level_2 strong:hover {
  color: var(--grey) !important;
}
#left #navigation #navHolder .column .level_1 > li .level_2 strong {
  color: var(--grey) !important;
}
#left #navigation #navHolder .column .level_1 > li:hover > .level_2,
#left #navigation #navHolder .column .level_1 > li strong + .level_2 {
  opacity: 1;
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
  transition: all 0.5s ease-in-out;
}
#left #navigation #navHolder .column .level_1 > li:hover {
  z-index: 2000000;
}
#left #navigation #navHolder .column .level_1 > li strong.trail.hide + .level_2 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(50px);
}
#left #navigation #navHolder .item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  cursor: pointer;
}
#left #navigation #navHolder .item img {
  width: 2rem;
  height: 2rem;
}
#left #navigation #navHolder .item h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 1rem;
  padding-bottom: 0;
  margin-bottom: 0;
}
#left #navigation #navHolder .item .mod_navigation ul.level_1 {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-top: 0;
  padding-top: 0;
}
#left #navigation #navHolder .item .mod_navigation ul.level_1 li {
  padding-left: 0;
}
#left #navigation #navHolder .item .mod_navigation ul.level_1 li a,
#left #navigation #navHolder .item .mod_navigation ul.level_1 li strong {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 0.51rem;
  display: block;
  text-decoration: none;
  position: relative;
}
#left #navigation #navHolder .item .mod_navigation ul.level_1 li strong {
  color: #a59783 !important;
}
#left #navigation #navHolder .item .mod_navigation ul.level_1 li a:hover {
  color: #a59783 !important;
}
#left #navigation #navHolder .column.first {
  display: grid;
  grid-template-columns: 33% 1fr 33%;
  grid-template-rows: 1fr 1fr;
  max-width: var(--max-width-content);
  margin: 0 auto;
}

#navHolder {
  overflow-y: scroll !important;
  height: 100vh;
}

.hamburger-active #left {
  transform: scale(1);
}

#btn_close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  cursor: pointer;
}

@media only screen and (max-width: 900px) {
  #left #navigation #navHolder .column.first {
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}
@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: 3rem;
  }
}
@media only screen and (max-width: 500px) {
  #left #navigation #navHolder .column.first {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
  .mod_navigation {
    margin-top: 0rem;
  }
}
.slick-next,
.slick-prev {
  background: none;
  width: 50px !important;
  height: 76px !important;
  position: absolute;
  top: 32%;
  border: 0;
  left: 40% !important;
  left: 2rem !important;
  z-index: 1;
  transform: scale(0.7) !important;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0;
  transition: all 0.5s ease;
  transform-origin: center center;
}
.slick-next::before,
.slick-prev::before {
  content: url("../hg/prev-w.png") !important;
}

.slick-next {
  right: 2rem !important;
  left: auto !important;
  transform: translate(0, 12px) rotate(180deg) scale(0.7) !important;
}
.slick-next::before {
  content: url("../hg/prev-w.png") !important;
  height: 25px;
}

.slick-prev {
  top: 33.5%;
}

.sliderh {
  max-width: 80%;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.sliderh.center {
  text-align: center;
}

.slick-slide {
  padding: 0.3rem;
}

.rsts-skin-default .rsts-next,
.rsts-skin-default .rsts-thumbs-next {
  right: 20px;
  top: 45%;
  background-image: url(../hg/prev-w.png);
  transform: rotate(180deg);
  border: 0;
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
}

.rsts-skin-default .rsts-prev,
.rsts-skin-default .rsts-thumbs-prev {
  left: 20px;
  right: auto;
  height: 50px;
  width: 50px;
  top: 45%;
  background-image: url(../hg/prev-w.png);
  border: 0;
  background-repeat: no-repeat;
}

.rsts-skin-default .rsts-nav {
  left: 50%;
  transform: translateX(-50%);
}
.rsts-skin-default .rsts-nav ul li {
  padding-left: 0.6rem;
}

#article-293 .rsts-skin-default .rsts-nav {
  left: 50%;
  transform: translateX(-50%);
  bottom: -3rem;
  text-align: center;
}
#article-293 .rsts-skin-default .rsts-nav ul li {
  padding-left: 0.3rem;
}
#article-293 .rsts-skin-default .rsts-nav-bullets a:hover,
#article-293 .rsts-skin-default .rsts-nav-bullets a.active {
  background-color: var(--red);
}
#article-293 .mod_rocksolid_slider {
  overflow: visible;
}

.rsts-skin-default .rsts-nav {
  right: unset !important;
}

#article-411 .rsts-skin-default .rsts-prev,
#article-411 .rsts-skin-default .rsts-thumbs-prev {
  left: 20px;
  right: auto;
  height: 50px;
  width: 50px;
  top: 25%;
  background-image: url(../hg/prev-w.png) !important;
  border: 0;
  background-repeat: no-repeat;
}
#article-411 .slick-next::before {
  content: url(../hg/prev-w.png) !important;
  height: 25px;
}
#article-411 .slick-prev::before {
  content: url(../hg/prev-w.png) !important;
}

#container #main .inView_slider .rsts-next {
  animation: slider_btn_next ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
#container #main .inView_slider .rsts-prev {
  animation: slider_btn_prev ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
#container #main .inView_slider button.slick-next {
  transform: translate(0, 12px) rotate(160deg) scale(1) !important;
}
#container #main .inView_slider button.slick-prev {
  transform: rotate(20deg) scale(1) !important;
}

@keyframes slider_btn_next {
  0% {
    transform: rotate(180deg) scale(1) !important;
  }
  50% {
    transform: rotate(160deg) scale(var(--inview-scale)) !important;
  }
  100% {
    transform: rotate(90deg) scale(1) !important;
  }
}
@keyframes slider_btn_prev {
  0% {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotate(20deg) scale(var(--inview-scale));
  }
  100% {
    transform: rotate(0) scale(1);
  }
}
@keyframes slick_btn_next {
  0% {
    transform: rotate(280deg) !important;
    background: rgb(230, 21, 28);
  }
  50% {
    transform: rotate(60deg) !important;
    background: rgb(230, 21, 28);
  }
  100% {
    transform: rotate(80deg) !important;
    background: rgb(132, 135, 16);
  }
}
@keyframes slick_btn_prev {
  0% {
    transform: rotate(0) scale(1) !important;
    background: rgba(230, 21, 28, 0);
  }
  50% {
    transform: rotate(20deg) scale(var(--inview-scale)) !important;
    background: rgb(230, 21, 28);
  }
  100% {
    transform: rotate(0) scale(1) !important;
    background: rgba(230, 21, 28, 0);
  }
}
@media only screen and (max-width: 890px) {
  .slick-next {
    right: 1rem !important;
  }
  .slick-prev {
    left: 1rem !important;
  }
}
@media only screen and (max-width: 800px) {
  .slick-next {
    transform-origin: center center;
    transform: rotate(180deg) scale(0.7);
    margin-top: 6px;
  }
  .slick-prev {
    transform: scale(0.7);
  }
}
@media only screen and (max-width: 450px) {
  .slider-trauerfloristik .content-text {
    flex-direction: column !important;
    min-width: 250px !important;
  }
}
#formular h2 {
  font-family: "league spartan";
  font-size: 1.5em;
  color: var(--red);
  font-weight: 300;
}
#formular .fcholder {
  display: flex;
}
#formular .flexcolumn {
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  justify-content: flex-start;
}
#formular .flexcolumn label {
  display: block;
  font-size: 1rem;
}
#formular .flexcolumn #ctrl_30 {
  display: flex;
  flex-direction: row;
  width: 100%;
  border: 0;
}
#formular .flexcolumn #ctrl_30 legend {
  font-size: 1rem;
  margin-bottom: 1rem;
}
#formular .flexcolumn #ctrl_30 span {
  margin-right: 3rem;
}
#formular .flexcolumn .flexrow {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
  gap: 2rem;
}
#formular .flexcolumn em {
  font-size: 0.8rem;
  font-style: italic;
}
#formular #ctrl_25 {
  border: 0;
  font-size: 0.99rem;
}
#formular input,
#formular select,
#formular textarea {
  padding: 0.5rem;
  font-size: 1rem;
}
#formular button {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 0.5rem 3rem;
  font-size: 1rem;
  cursor: pointer;
}

:root {
  --padding-inline: 3rem;
  --beige: #efe5d6;
  --beige-rgb: 239, 229, 214;
  --grau: #929fa8;
  --braun1: #a59783;
  --braun2: #a08e8e;
  --hellblau: #d2e8ef;
  --hellblau-rgb: 236, 250, 255;
  --blau: #296091;
  --blau-rgb: 41, 96, 145;
  --rot: #95134c;
  --red: #95134c;
  --scale: 1.05;
  --font-family: "league spartan";
  --content-w100: 1290px;
  --content-title-width: 1290px;
  --margin-bottom-page: 3rem;
  --padding-bottom-page: 5rem;
  --max-width-content: 1500px;
  --invie-time: 0.5s;
  --inview-scale: 1.2;
}

html {
  font-size: 16px;
  font-family: "league spartan";
  animation: fadeInAnimation ease 1.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}
body.hamburger-active #navigation-table {
  transform: translateY(0px);
}

#main {
  font-size: 1.38rem;
}
#main .inside section:last-child {
  padding-bottom: 3rem;
}
#main .inside section:last-child.padding-bottom-none {
  padding-bottom: 0;
}
#main .inside section:first-child {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
#main .inside section:first-child.padding-bottom-none {
  padding-bottom: 0;
}
#main .inside section:first-child .w6030,
#main .inside section:first-child .w5050,
#main .inside section:first-child .w100,
#main .inside section:first-child .w120 {
  align-items: start;
}

#pageTitle {
  max-width: var(--content-title-width);
  margin: 0 auto;
  width: 100%;
  color: var(--blau);
  font-weight: 600;
  padding: 0 1rem;
}

#main #videohead {
  padding-top: 0 !important;
  padding-bottom: 0;
}

#main .inside,
#main .inner_,
#footer .inside,
#footer .inner_,
#menu-head .inside,
#menu-head .inner_ {
  --content-maxwidth: 1860px;
  --padding-inline: 3rem;
  --breakout-maxwidth: 100rem;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-areas: "item";
  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 .inner_ > *,
#main .inner_ > .content,
#footer .inside > *,
#footer .inside > .content,
#footer .inner_ > *,
#footer .inner_ > .content,
#menu-head .inside > *,
#menu-head .inside > .content,
#menu-head .inner_ > *,
#menu-head .inner_ > .content {
  grid-column: content;
}
#main .inside > .inner-grid, #main .inside > .full-width,
#main .inner_ > .inner-grid,
#main .inner_ > .full-width,
#footer .inside > .inner-grid,
#footer .inside > .full-width,
#footer .inner_ > .inner-grid,
#footer .inner_ > .full-width,
#menu-head .inside > .inner-grid,
#menu-head .inside > .full-width,
#menu-head .inner_ > .inner-grid,
#menu-head .inner_ > .full-width {
  grid-column: full-width;
}
#main .inside > .breakout,
#main .inner_ > .breakout,
#footer .inside > .breakout,
#footer .inner_ > .breakout,
#menu-head .inside > .breakout,
#menu-head .inner_ > .breakout {
  grid-column: breakout;
}
#main .inside.w6030,
#main .inner_.w6030,
#footer .inside.w6030,
#footer .inner_.w6030,
#menu-head .inside.w6030,
#menu-head .inner_.w6030 {
  grid-column: content;
}

#container {
  padding-top: 80px;
}

.center figure {
  text-align: center;
}
.center figure img {
  margin: 0 auto;
}

.overlaygrid {
  display: grid;
  align-items: center;
  justify-items: center;
}
.overlaygrid .content-image:first-child {
  grid-row: 1/2;
  grid-column: 1/2;
  z-index: 0;
}
.overlaygrid .content-image:last-child {
  grid-row: 1/2;
  grid-column: 1/2;
  z-index: 1;
}

.startseite #pageTitle {
  display: none;
}
.startseite #header {
  z-index: 3000 !important;
}
.startseite #article-532 .flex-row {
  max-width: var(--content-w100);
  margin: 0 auto;
}
.startseite .bg-grau.content-text h2,
.startseite .bg-braun.content-text h2 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.startseite #videohead {
  padding-top: 0;
}

.grid12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.grid12 div:nth-of-type(1) {
  grid-column: 1/7;
}
.grid12 div:nth-of-type(1).content-text {
  display: flex;
  justify-content: center;
}
.grid12 div:nth-of-type(1).content-text .rte {
  max-width: var(--max-width-text);
  padding: 2rem 2rem;
}
.grid12 div:nth-of-type(2),
.grid12 .right-div {
  grid-column: 7/13 !important;
}
.grid12 div:nth-of-type(2).content-text,
.grid12 .right-div.content-text {
  display: flex;
  justify-content: center;
}
.grid12 div:nth-of-type(2).content-text .rte,
.grid12 .right-div.content-text .rte {
  max-width: var(--max-width-text);
  padding: 2rem 2rem;
}
.grid12 .full {
  grid-column: 1/13 !important;
}

body {
  background: url("../svg/hg3.webp");
  background-size: cover;
}

section.beige {
  position: relative;
}
section.beige::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--beige);
  mix-blend-mode: hard-light;
  z-index: 0;
}
section.beige > div {
  position: relative;
  z-index: 1;
}

section.blau {
  position: relative;
}
section.blau::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #e4f0f4;
  mix-blend-mode: hard-light;
  z-index: 0;
}
section.blau > div {
  position: relative;
  z-index: 10;
}

.slider.blau {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.slider.blau::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #e4f0f4;
  mix-blend-mode: hard-light;
  z-index: 0;
}
.slider.blau > div {
  position: relative;
  z-index: 10;
}

.w6030,
.w5050,
.w100,
.w120 {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(12, 1fr);
  padding-top: 3rem;
  padding-bottom: 5rem;
  max-width: var(--content-w100);
  margin: 0 auto;
}
.w6030.padding-top-0,
.w5050.padding-top-0,
.w100.padding-top-0,
.w120.padding-top-0 {
  padding-top: 0;
}
.w6030 div:nth-of-type(1),
.w5050 div:nth-of-type(1),
.w100 div:nth-of-type(1),
.w120 div:nth-of-type(1) {
  grid-column: 1/8;
}
.w6030 div:nth-of-type(2),
.w5050 div:nth-of-type(2),
.w100 div:nth-of-type(2),
.w120 div:nth-of-type(2) {
  grid-column: 9/13;
}
.w6030 h1,
.w5050 h1,
.w100 h1,
.w120 h1 {
  color: var(--red);
  font-size: 3.25rem;
  font-weight: 100;
}
.w6030 p,
.w6030 a,
.w6030 li,
.w5050 p,
.w5050 a,
.w5050 li,
.w100 p,
.w100 a,
.w100 li,
.w120 p,
.w120 a,
.w120 li {
  color: var(--blau);
  line-height: 1.5rem;
}
.w6030 .smaller .rte,
.w5050 .smaller .rte,
.w100 .smaller .rte,
.w120 .smaller .rte {
  padding: 1rem;
  width: 95%;
  margin-left: 0;
  margin-right: auto;
}

.content-player {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: var(--padding-bottom-page);
}
.content-player video {
  margin: 0 auto;
}

.w100,
.w120 {
  padding-bottom: 0;
  max-width: var(--content-w100);
  margin: 0 auto;
  width: 100%;
}
.w100 div:nth-of-type(1),
.w100 .w100 div:nth-of-type(1),
.w120 div:nth-of-type(1),
.w120 .w100 div:nth-of-type(1) {
  grid-column: 1/-1;
}
.w100 .rte,
.w120 .rte {
  padding: 1rem;
  width: 100%;
  margin: 0 auto;
}
.w100 .content-text,
.w120 .content-text {
  width: 100%;
}

.w5050 > div:nth-of-type(1) {
  grid-column: 1/6;
  padding-left: 1rem;
  padding-right: 1rem;
}
.w5050 > div:nth-of-type(2) {
  grid-column: 7/13;
  padding-left: 1rem;
  padding-right: 1rem;
}
.w5050 > .content-image:first-child {
  width: calc(100% - 1rem);
  margin-right: 0;
  margin-left: auto;
}
.w5050 > .content-text:last-child {
  width: calc(100% - 1rem);
}
.w5050 > .content-text:last-child .rte {
  margin-right: auto;
  margin-left: 0;
}
.w5050.v-center {
  align-items: center;
}
.w5050 > .content-image img {
  max-width: 490px;
}

#musik_items {
  grid-column: 1/-1;
  display: flex;
}
#musik_items .m_item {
  flex: 0 0 50%;
  padding: 1rem;
}
#musik_items .m_item img {
  width: 100%;
}

.btn-blau {
  background: var(--blau);
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
}
.btn-blau a {
  color: #fff;
  text-decoration: none;
}

.ausland {
  margin-bottom: var(--margin-bottom-page);
}

.flex2 {
  width: 100%;
}

.trenner {
  text-align: right;
}
.trenner img {
  margin-right: 0;
  margin-left: auto;
}

.padding-top-none {
  padding-top: 0;
}

.padding-bottom-none {
  padding-bottom: 0;
}
.padding-bottom-none .w5050,
.padding-bottom-none h1 {
  padding-bottom: 0;
}
.padding-bottom-none h1 {
  margin-bottom: 0;
}

.vorteile h3 {
  color: var(--blau);
}

#grabartenf h3 {
  color: var(--blau);
}

strong {
  line-height: 1.7rem;
}

#news .w120 .content-text {
  border-radius: 8px;
}
#news .w120 .content-text h2:first-child {
  padding-bottom: 2.6rem;
}

.was-tun h2 {
  color: var(--blau);
  font-weight: 100;
  font-size: 3rem;
}
.was-tun h1,
.was-tun h2 {
  font-size: 3.5rem;
}
.was-tun p {
  color: var(--blau);
}
.was-tun .trenner {
  margin-right: 38%;
}

.w120.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.w120.flex.f50 .content-text {
  width: 45%;
  background: var(--braun2);
  margin-bottom: 2rem;
  padding: 1rem 2rem;
}
.w120.flex.f50 .content-text h1,
.w120.flex.f50 .content-text h2,
.w120.flex.f50 .content-text h3,
.w120.flex.f50 .content-text p,
.w120.flex.f50 .content-text li {
  color: #fff;
}

#floristen .bg-braun {
  grid-column: full-width;
}

.flex.zitate {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex.zitate .content-text {
  background: var(--braun2);
  padding: 1rem;
  border-radius: 10px;
  min-width: 480px;
  flex: 0 0 30%;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}
.flex.zitate .content-text h2,
.flex.zitate .content-text p,
.flex.zitate .content-text li {
  color: #fff;
  line-height: 1.5rem;
}
.flex.zitate .content-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 2.5rem;
}
.flex.zitate em {
  color: var(--blau);
  font-style: normal;
}
.flex.zitate .overflow {
  position: relative;
}
.flex.zitate .overflow .rte {
  overflow-y: scroll;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-height: 1070px;
  scrollbar-width: 0;
  position: relative;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.flex.zitate .overflow .rte::-webkit-scrollbar {
  display: none;
}
.flex.zitate .overflow::after {
  content: url("../hg/overflow.png");
  position: absolute;
  bottom: 10px;
  right: -40px;
  height: 30px;
  width: 30px;
  z-index: 2;
}
.flex.zitate .overflow.inView_slider::after {
  animation: scroll_icon ease 2s;
  animation-iteration-count: 3;
  animation-fill-mode: forwards;
}

@keyframes scroll_icon {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 200px;
  }
  100% {
    bottom: 10px;
  }
}
#grabarten .v-center {
  align-items: flex-start;
}
#grabarten .v-center .content-image {
  padding-top: 11rem;
}

#ga-erd .content-image,
#ga-feuer .content-image {
  padding-top: 2rem;
}

.teambilder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1290px;
  margin: 0 auto;
}
.teambilder .content-text {
  background: var(--braun2);
  padding: 1rem;
  border-radius: 8px;
  max-width: 380px;
  flex: 0 0 30%;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}
.teambilder .content-text h2,
.teambilder .content-text p,
.teambilder .content-text li {
  color: #fff;
  line-height: 1.5rem;
}
.teambilder .content-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 2.5rem;
}
.teambilder ul {
  margin: 0;
  padding: 0;
  padding-left: 1.6rem;
}
.teambilder ul li {
  list-style-type: circle !important;
  list-style-image: none;
  padding-left: 0.1rem;
  margin: 0;
}

.bg-braun,
.bg-grau {
  background-color: var(--braun2);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 3rem !important;
}
.bg-braun h1,
.bg-braun h2,
.bg-braun h3,
.bg-braun .folder,
.bg-grau h1,
.bg-grau h2,
.bg-grau h3,
.bg-grau .folder {
  color: #fff;
  font-weight: 600;
}
.bg-braun p,
.bg-grau p {
  color: #fff;
}
.bg-braun strong,
.bg-grau strong {
  color: var(--red);
}
.bg-braun.small,
.bg-grau.small {
  max-width: 600px;
}
.bg-braun.center,
.bg-grau.center {
  margin: 0 auto;
  max-width: 600px;
  width: calc(100% - 2rem);
}
.bg-braun h2:first-child,
.bg-grau h2:first-child {
  padding-bottom: 2.6rem;
}

.bg-grau {
  background-color: var(--grau);
}

.align-top {
  align-items: start;
}

.btnstart {
  background: var(--hellblau);
  color: var(--blau);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--blau);
  cursor: pointer;
}
.btnstart a {
  color: var(--blau);
  text-decoration: none;
}
.btnstart:hover {
  background: var(--red);
}
.btnstart:hover a {
  color: #fff;
}

.centerc.content-text {
  text-align: center;
}

.flex-row {
  display: flex;
  justify-content: space-between;
}
.flex-row > div {
  flex: 0 0 40%;
}

.full-width > .content-image > figure > img {
  width: 100%;
}

.columnH {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 2rem;
}

#impressum h2,
#impressum h3,
#impressum h4 {
  color: var(--red);
  font-weight: 600;
  font-size: 2.5rem;
}
#impressum h3 {
  font-size: 2rem;
}
#impressum h3 {
  font-size: 1.7rem;
}

.rsts-skin-default a.rsts-prev {
  position: absolute;
  bottom: 2rem !important;
  bottom: auto;
  top: auto;
  top: 50%;
  left: 45%;
  left: 2rem;
  right: auto;
}
.rsts-skin-default a.rsts-next {
  position: absolute;
  bottom: 2rem !important;
  bottom: auto;
  top: auto;
  top: 50%;
  left: auto;
  right: 45%;
  right: 2rem;
}

.u-nav.flex.f100 {
  display: flex;
  flex-wrap: wrap;
}
.u-nav.flex.f100 .unavbtn {
  flex: 0 0 96%;
  transform: scale(0.8);
}
.u-nav.flex.f100 .unavbtn h3 {
  line-height: 1.7rem;
}
.u-nav.flex.f50 {
  display: flex;
  flex-wrap: wrap;
}
.u-nav.flex.f50 .unavbtn {
  flex: 0 0 45%;
  transform: scale(0.8);
}
.u-nav.flex.f50 .unavbtn h3 {
  line-height: 1.7rem;
}
.u-nav.flex.f30 {
  display: flex;
  flex-wrap: wrap;
}
.u-nav.flex.f30 .unavbtn {
  flex: 0 0 25%;
}
.u-nav.flex.f30 .unavbtn h3 {
  line-height: 1.7rem;
}

.ext-btn {
  padding: 0.3rem 0.6rem;
  display: inline-block;
  border-radius: 6px;
}
.ext-btn.rot {
  background: var(--rot);
  color: #fff;
}
.ext-btn a {
  color: #fff;
  text-decoration: none;
}

.literatur p,
.zitate p {
  line-height: 1.5rem;
}
.literatur em,
.zitate em {
  color: var(--blau);
  font-style: normal;
  line-height: 0.6rem !important;
  font-size: 1rem;
  font-weight: 600;
}

.kondolenz strong,
.partner strong {
  color: var(--blau);
}
.kondolenz a,
.partner a {
  color: #fff;
  text-decoration: none;
}

#head-image {
  width: 100%;
}

#start-head {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
#start-head #head-image {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 100vw;
}
#start-head #head-image img {
  width: 100%;
}
#start-head #startHH {
  grid-column: 1/2;
  grid-row: 1/2;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
#start-head #startHH h2 {
  display: flex;
  font-size: 7rem;
  font-weight: 100;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-wrap: nowrap;
  margin-bottom: 0.5rem;
}
#start-head #startHH .startkasten {
  display: flex;
  justify-content: flex-end;
}
#start-head #startHH .starthold {
  display: inline-block;
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}

#head-image {
  width: 100%;
  height: auto;
  background-size: 100%;
}

.btn {
  padding: 0.2rem 0.99rem;
  display: inline-block;
  border-radius: 6px;
  background: var(--blau);
  color: #fff;
  text-decoration: none;
}
.btn.rot {
  background: var(--rot);
}
.btn.blau {
  background: var(--blau);
}
.btn.blau a {
  color: #fff;
  text-decoration: none;
}

#article-411 .slick-slide {
  height: 500px;
}

.grabarten {
  margin-bottom: 10rem;
}
.grabarten h3 {
  color: var(--blau);
  font-size: 1.3rem !important;
}

.unavbtn {
  margin-top: 0rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 220px;
  height: 196px;
  aspect-ratio: 1/1;
  text-align: center;
  cursor: pointer;
  transform: scale(0.8);
  transform-origin: center center;
  justify-content: center;
}
.unavbtn h3 {
  grid-column: 1/2;
  grid-row: 1/2;
  text-align: center;
  color: #fff;
  z-index: 2;
  margin: auto auto;
  color: var(--red);
  transition: color 0.2s ease-in-out;
  padding-bottom: 50px;
  line-height: 1.8rem;
  margin-top: 65px;
}
.unavbtn img {
  grid-column: 1/2;
  grid-row: 1/2;
  margin: 0 auto;
  z-index: 1;
  margin-top: auto;
  margin-bottom: 0;
}
.unavbtn .bg {
  grid-column: 1/2;
  grid-row: 1/2;
  background-color: var(--rot);
  border-radius: 50%;
  z-index: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.2);
  opacity: 0;
  width: 200px;
  height: 200px;
  margin: auto auto;
  margin-bottom: 50px;
}
.unavbtn:hover .bg {
  transform: scale(0.95);
  opacity: 1;
}
.unavbtn:hover h3 {
  color: #fff;
}

#mediathek ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  list-style: none;
  margin: 0;
  list-style: none !important;
  padding: 0;
}
#mediathek ul li {
  list-style: none !important;
  flex: 0 0 22%;
  margin-bottom: 0.6rem;
}
#mediathek ul li img {
  width: 100%;
  max-width: 100%;
}

.team-slider .slick-slide img {
  border-radius: 50%;
}

#article-332 {
  padding-bottom: 0 !important;
}

.bg-transparent {
  background: transparent;
}
.bg-transparent.transparent {
  background: rgba(255, 255, 255, 0);
}
.bg-transparent h1,
.bg-transparent h2,
.bg-transparent h3,
.bg-transparent .folder {
  color: var(--red);
  font-weight: 300;
}
.bg-transparent strong {
  color: var(--red);
}

.bg-peach.transparent {
  background: rgba(var(--peach-rgb), 0.8);
}

#toTop {
  display: block;
  position: fixed;
  bottom: 20px;
  right: -80px;
  z-index: 5000;
  transition: all 0.5s ease-in-out;
}

body.showBackBtn #toTop {
  right: 20px;
}

#startvideo {
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--red);
  position: relative;
  cursor: pointer;
}
#startvideo::before {
  content: "";
  background-image: url("../icons/video_play.png");
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 120px;
  background-position: center;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  pointer-events: none;
}
#startvideo img {
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 20px;
  transition: all 0.5s ease-in-out;
}
#startvideo img:hover {
  padding: 0px;
}

.w120.flex.f30.padding-top-none {
  padding: 0 1rem;
}

#main .content-image img {
  width: 100%;
}

#headVideo {
  width: 100%;
}

#targetAdress {
  text-align: center;
  color: var(--blau);
  font-weight: 600;
  background-color: white;
  padding: 1rem 2rem;
}

#frliste ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 3rem;
}
#frliste ul.clickable {
  cursor: pointer;
  list-style: none !important;
  list-style-image: none !important;
  margin: 0;
  padding: 0;
}
#frliste ul.clickable li {
  list-style: none !important;
  list-style-image: none !important;
  margin: 0;
  padding: 0;
  padding: 3rem 2rem 3rem 0;
  flex: 0 0 50%;
}
#frliste ul.clickable li strong {
  margin-bottom: 2rem;
}

header {
  width: 100%;
}

.red {
  color: var(--red);
}

.kasten {
  cursor: pointer;
  padding: 2rem;
  display: flex;
  align-items: center;
}
.kasten.red {
  background-color: var(--red);
  color: #fff;
  font-size: 2rem;
}
.kasten.red .c {
  padding-top: 2.5rem;
}
.kasten .icon {
  margin-right: 1rem;
}
.kasten.was-1 {
  cursor: default;
}

#article-0001 {
  display: none;
}

.slider-trauerfloristik .content-text,
.slider-vorsorge .content-text {
  display: flex !important;
  flex-direction: column;
  background: var(--braun2);
  margin: 2px;
  max-width: 350px;
  padding: 0.9rem;
  border-radius: 10px;
}
.slider-trauerfloristik .content-text p,
.slider-vorsorge .content-text p {
  color: #fff;
}
.slider-trauerfloristik .content-text .rte,
.slider-vorsorge .content-text .rte {
  flex: 0 0 60%;
  padding: 1rem;
}
.slider-trauerfloristik .content-text .rte strong,
.slider-vorsorge .content-text .rte strong {
  font-size: 2rem;
}
.slider-trauerfloristik .content-text figure,
.slider-vorsorge .content-text figure {
  flex: 0 0 40%;
}
.slider-trauerfloristik .content-text figure img,
.slider-vorsorge .content-text figure img {
  width: 100%;
  min-width: 200px;
}

.slider-vorsorge .content-text {
  display: inline-block !important;
  flex-direction: column;
  height: 650px;
}
.slider-vorsorge .rte {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slider-vorsorge .rte strong,
.slider-vorsorge .rte p {
  margin: 0;
  padding: 0;
}
.slider-vorsorge .rte strong {
  line-height: 1.5rem;
}
.slider-vorsorge .rte p {
  font-size: 1.2rem;
}

#article-446 .slider-vorsorge .content-text {
  height: 750px;
}

.rsts-skin-default .rsts-nav ul li {
  padding-left: 0;
}

.bg-peach {
  background-color: var(--peach);
}
.bg-peach h1,
.bg-peach h2,
.bg-peach h3,
.bg-peach .folder {
  color: var(--red);
  font-weight: 300;
}
.bg-peach strong {
  color: var(--red);
}

.bg-weiss {
  background-color: #fff;
}
.bg-weiss h1,
.bg-weiss h2,
.bg-weiss h3,
.bg-weiss .folder {
  color: var(--red);
  font-weight: 300;
}
.bg-weiss a {
  color: var(--red);
  text-decoration: none;
}
.bg-weiss strong {
  color: var(--red);
}

ul li {
  list-style-image: url(../hg/li-red.png);
  padding-left: 2rem;
}

#toMail {
  position: fixed;
  right: 0;
  top: 20%;
  cursor: pointer;
}

.square {
  aspect-ratio: 1/1;
}

.landscape {
  aspect-ratio: 136/121;
}

.slide_hint {
  display: flex;
  gap: 2rem;
}

.slideable {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
}
.slideable .rte,
.slideable .slider {
  overflow-y: scroll;
  aspect-ratio: 1/1;
  scroll-snap-type: y mandatory;
}
.slideable .rte::-webkit-scrollbar,
.slideable .slider::-webkit-scrollbar {
  display: none;
}
.slideable .slider {
  padding-bottom: 2rem;
}
.slideable:hover {
  border-radius: 10px;
  box-shadow: inset 0px 0px 22px 4px rgba(0, 0, 0, 0.08);
  padding: 8px;
}

.slide {
  height: calc(50vw - 10%);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slideVholder .rte {
  display: flex;
  flex-direction: column;
}
.slideVholder .slider {
  width: 100%;
  padding-bottom: 8rem;
}

h3 + h2 {
  margin-top: 0rem;
}

#start-video {
  grid-column: 1/13;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 1fr;
}
#start-video video {
  grid-column: 1/3;
  grid-row: 1/2;
}
#start-video #startHH {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
}
#start-video #startHH .startkasten {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
}

.fullw {
  grid-column: 1/13;
}
.fullw .w100 {
  grid-column: 1/13 !important;
}

.stripeTop {
  position: relative;
}
.stripeTop::after {
  content: url("../hg/strings.png");
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 20px;
  top: 0;
}

.stripeTopLeft {
  position: relative;
  margin-bottom: 0;
}
.stripeTopLeft::after {
  content: url("../hg/stringsLeft.png");
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  right: auto;
  left: -30px;
  top: 0;
}

.vcenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.center-red {
  text-align: center;
  color: var(--red);
  line-height: 1.8rem;
  font-weight: 500;
}

.indented {
  padding-left: 4.5rem;
}

.content-image {
  overflow: hidden;
}
.content-image .bg_holder {
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: all 0.5s ease-in-out;
}
.content-image .bg_holder:hover {
  transform: scale(var(--scale));
}

.startkasten {
  background: rgba(var(--red-rgb), 0.8);
  padding: 1rem;
  text-align: center;
  color: #fff;
}
.startkasten a {
  margin-left: 2rem;
}
.startkasten a .bgh {
  fill: #fff; /* Change to blue on hover */
}
.startkasten a:hover .bgh {
  fill: var(--red); /* Change to red on hover */
}
.startkasten h2 {
  font-size: 1.987rem;
  font-weight: 100;
  line-height: 2rem;
  text-transform: uppercase;
}

#teaserholder {
  min-height: 500px;
  grid-column: 1/13;
}
#teaserholder #teaser-inner {
  display: flex;
  justify-content: center;
  max-width: 80%;
  margin: 0 auto;
  justify-content: space-around;
  padding: 10rem 0;
}
#teaserholder #teaser-inner h2 {
  font-size: 1.987rem;
  font-weight: 100;
  line-height: 2rem;
  text-transform: uppercase;
}
#teaserholder #teaser-inner p {
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.8rem;
}
#teaserholder #teaser-inner .content-text {
  display: flex;
  max-width: 420px;
  max-height: 420px;
  width: 100%;
  text-align: center;
  padding: 1rem;
  color: var(--red);
  background: rgba(var(--peach-rgb), 0.8);
  transition: all 0.2s ease-in-out;
  transform: scale(1);
  cursor: pointer;
}
#teaserholder #teaser-inner .content-text .rte {
  padding: 0;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}
#teaserholder #teaser-inner .content-text:nth-of-type(1) {
  background: rgba(var(--red-rgb), 0.8);
  color: #fff;
}
#teaserholder #teaser-inner .content-text:nth-of-type(2) {
  background: rgba(255, 255, 255, 0.8);
}
#teaserholder #teaser-inner .content-text:hover {
  transform: scale(1.1);
}
#teaserholder #teaser-inner .content-text:hover .rte {
  transform: scale(0.9);
}
#teaserholder #teaser-inner .content-text .rte {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.login-form .formbody {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-form input {
  padding: 0.5rem;
  border: 1px solid var(--red);
  border-radius: 5px;
}
.login-form button {
  padding: 0.5rem;
  border: 1px solid var(--red);
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
}
.login-form .widget {
  display: flex;
  flex-direction: column;
}

#bestattungsvorsorge .rte {
  text-shadow: #ffffff 2px 3px 3px;
}

.imgOverflow figure {
  margin-left: 0;
  padding: 0 1rem;
}

#article-328 #video,
#article-328 .bera .content-image,
#article-393 #video,
#article-393 .bera .content-image {
  max-width: var(--max-width-content);
  max-width: 1290px;
  padding: 1rem;
}

#article-328 .w6030 div:nth-of-type(1),
#article-328 .w5050 div:nth-of-type(1),
#article-328 .w100 div:nth-of-type(1),
#article-328 .w120 div:nth-of-type(1) {
  grid-column: 1/13;
}
#article-328 .w6030 .smaller.fullw .rte {
  padding: 1rem;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
}

.marginB0 {
  margin-bottom: 0;
}

#btn_gh {
  cursor: pointer;
  display: none;
}

#gh {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  display: none;
  border: 1px solid #fff;
  padding: 0.5rem;
  background-color: var(--red);
  overflow: visible;
}
#gh.active {
  display: block;
}

#downloadListe {
  display: grid;
  min-height: 800px;
  align-items: start;
}

.w100flex {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--content-w100);
  margin: 0 auto;
  justify-content: space-around;
}
.w100flex .download-element {
  flex: 0 0 26%;
  gap: 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 26%;
  align-items: center;
  margin: 2rem 0;
  border: 0px solid #4e4e4e;
  background: rgba(255, 255, 255, 0.3);
}
.w100flex .download-element h2 {
  color: var(--blau);
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
.w100flex .download-element a {
  color: #fff;
  text-decoration: none;
  background-color: var(--red);
  padding: 0.5rem 1rem;
  width: 100%;
  text-align: center;
}

.no-padding-bottom {
  margin-bottom: 0;
  padding-bottom: 0 !important;
}
.no-padding-bottom h1,
.no-padding-bottom h2 {
  margin-bottom: 0;
}

#start-head {
  margin-top: 3rem;
}

#btn_close_gh {
  position: absolute;
  right: 10px;
  top: -50px;
  cursor: pointer;
  color: var(--red);
  background-color: #fff;
  padding: 5px 10px;
}

.bera .content-image img {
  max-width: 800px;
}

#mediathek ul li img {
  min-width: 350px;
}

.bg_image {
  position: relative;
}
.bg_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  transition: all 0.5s ease-in-out;
}
.bg_image#markt::after {
  background-image: url("../bilder/markt.jpg");
}
.bg_image#markt:hover::after {
  transform: scale(var(--scale));
}
.bg_image#bestattungsarten::after {
  background-image: url("../bilder/kreuz.jpg");
}
.bg_image#bestattungsarten:hover::after {
  transform: scale(var(--scale));
}
.bg_image#moeglichkeiten::after {
  background-image: url("../bilder/moeglichkeiten.jpg");
}
.bg_image#moeglichkeiten:hover::after {
  transform: scale(var(--scale));
}
.bg_image#seebestattung::after {
  background-image: url("../bilder/seebestattung.jpg");
}
.bg_image#seebestattung:hover::after {
  transform: scale(var(--scale));
}
.bg_image#rituale::after {
  background-image: url("../bilder/rituale.jpg");
}
.bg_image#rituale:hover::after {
  transform: scale(var(--scale));
}
.bg_image#trauerfloristik::after {
  background-image: url("../bilder/trauerfloristik.jpg");
}
.bg_image#trauerfloristik:hover::after {
  transform: scale(var(--scale));
}
.bg_image#bestattungsvorsorge::after {
  background-image: url("../bilder/bestattungsvorsorge.jpg");
}
.bg_image#bestattungsvorsorge:hover::after {
  transform: scale(var(--scale));
}
.bg_image#paliativ::after {
  background-image: url("../bilder/paliativ.jpg");
}
.bg_image#paliativ:hover::after {
  transform: scale(var(--scale));
}
.bg_image#teaser::after {
  background-image: url("../bilder/startblumen.jpg");
}
.bg_image#teaser:hover::after {
  transform: scale(1);
}
.bg_image#verlassen::after {
  background-image: url("../bilder/verlassen.jpg");
}
.bg_image#verlassen:hover::after {
  transform: scale(var(--scale));
}
.bg_image#vermittlung::after {
  background-image: url("../bilder/vermittlung.jpg");
}
.bg_image#vermittlung:hover::after {
  transform: scale(var(--scale));
}
.bg_image#redewendungen .slider strong {
  color: #222;
}
.bg_image#redewendungen::after {
  background-image: url("../bilder/redewendungen.jpg");
}
.bg_image#redewendungen:hover::after {
  transform: scale(var(--scale));
}

#article-425 {
  padding-bottom: 0rem;
}

#article-377 li strong {
  text-decoration: underline;
}

body.startseite #article-544 .flex-row .item {
  cursor: pointer;
}
body.startseite #article-544 .flex-row .item .bg-braun,
body.startseite #article-544 .flex-row .item .bg-grau {
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}
body.startseite #article-544 .flex-row .item:hover .bg-braun,
body.startseite #article-544 .flex-row .item:hover .bg-grau {
  transform: scale(0.98);
}

@media only screen and (max-width: 1550px) {
  #article-293 .square {
    aspect-ratio: unset;
  }
  .w6030,
  .w5050,
  .w100,
  .w120,
  #pageTitle,
  #article-328 #video,
  .bera .content-image {
    max-width: 1038px;
  }
}
@media only screen and (max-width: 1320px) {
  .imgOverflow figure {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1320px) {
  #article-532 .flex-row {
    padding: 0 2rem;
  }
  .w6030,
  .w5050,
  .w100,
  .w120,
  #pageTitle,
  #article-328 #video,
  .bera .content-image {
    max-width: 1038px;
  }
}
@media only screen and (max-width: 1248px) {
  html {
    font-size: 11px;
  }
  #video_slide_btn {
    box-shadow: none !important;
  }
  body.startseite #article-544 .flex-row {
    justify-content: space-around;
  }
  body.startseite #article-544 .flex-row .item {
    max-width: 350px;
    cursor: pointer;
  }
  #article-446 .slider-vorsorge .content-text {
    height: 620px;
  }
}
@media only screen and (min-width: 1248px) {
  body.startseite #article-544 .flex-row {
    justify-content: space-around;
  }
  body.startseite #article-544 .flex-row .item {
    max-width: 450px;
  }
}
@media only screen and (max-width: 1248px) {
  .square {
    aspect-ratio: unset;
  }
  body.startseite #videohead {
    padding-top: 138px;
  }
}
@media only screen and (max-width: 1100px) {
  html {
    font-size: 12px;
  }
  #idh3 {
    width: 100% !important;
    padding-top: 1.2rem;
  }
  #article-414 .u-nav.flex.f50 {
    grid-row: 1/2;
  }
  .w6030 .smaller .rte,
  .w5050 .smaller .rte,
  .w100 .smaller .rte,
  .w120 .smaller .rte {
    width: 100%;
  }
  #main {
    font-size: 1.38rem;
  }
  #main .inside section:first-child {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #main .inside section:first-child.padding-bottom-none {
    padding-bottom: 0;
  }
  #main .inside section:first-child .w6030 div {
    grid-column: 1/-1;
    flex-direction: row;
    justify-content: space-around;
  }
  #main .inside section:first-child .w6030 div .unavbtn {
    flex: 0 0 auto;
    transform: scale(0.6);
    transform-origin: center center;
    width: auto;
  }
  #main .inside section:first-child .w6030 div .unavbtn h3 {
    font-size: 2rem;
  }
  #main #article-352 .w6030 div:nth-of-type(1) {
    grid-column: 1/11;
  }
  #main #article-352 .w6030 div:nth-of-type(2) {
    grid-column: 11/-1;
    flex-direction: row;
    justify-content: space-around;
  }
  #main #article-352 .w6030 div:nth-of-type(2) .unavbtn {
    flex: 0 0 auto;
    transform: scale(0.6);
    width: auto;
  }
  #main #article-352 .w6030 div:nth-of-type(2) .unavbtn h3 {
    font-size: 2rem;
  }
  #main #article-484 .w6030 .u-nav {
    grid-row: 1/2;
  }
  .imgOverflow figure {
    margin: 0;
  }
}
@media only screen and (max-width: 990px) {
  #frliste ul.clickable li {
    flex: 0 0 48%;
  }
}
@media only screen and (max-width: 980px) {
  #start-video #startHH {
    grid-column: 1/3;
  }
  #start-video #startHH .startkasten {
    width: 90%;
    bottom: 10%;
  }
  .w6030,
  .w5050,
  .w100,
  .w120,
  #pageTitle {
    max-width: 900px;
  }
}
@media only screen and (max-width: 890px) {
  html {
    font-size: 12px;
  }
  #start-head {
    margin-top: 7rem;
  }
  .imgOverflow figure {
    margin-left: 0;
    padding: 0;
  }
  #article-328 #video,
  .bera .content-image {
    padding: 0 2rem;
  }
  section.full-width.bg_image div:nth-of-type(1) {
    grid-column: 1/13 !important;
  }
  section.full-width div:nth-of-type(1) {
    grid-column: 1/13;
  }
  section.full-width div:nth-of-type(2) {
    grid-column: 1/13 !important;
  }
  section.full-width .content-image {
    width: 100vw;
  }
  section.full-width .w5050 .content-text:nth-of-type(1) {
    grid-row: 1/2;
  }
  section.full-width .w5050 .content-text:nth-of-type(2) {
    grid-row: 2/3;
  }
  section.full-width .w5050 .content-image {
    grid-row: 1/2;
  }
  section.full-width .w5050 .content-image img {
    margin: 0 auto;
  }
  section.full-width .w5050#ga-feuer .content-text:nth-of-type(1), section.full-width .w5050#ga-erd .content-text:nth-of-type(1), section.full-width .w5050#ga-natur .content-text:nth-of-type(1), section.full-width .w5050#ga-see .content-text:nth-of-type(1), section.full-width .w5050#ga-tree .content-text:nth-of-type(1), section.full-width .w5050#ga-asche .content-text:nth-of-type(1) {
    grid-row: 1/2;
  }
  section.full-width .w5050#ga-feuer .content-text:nth-of-type(2), section.full-width .w5050#ga-erd .content-text:nth-of-type(2), section.full-width .w5050#ga-natur .content-text:nth-of-type(2), section.full-width .w5050#ga-see .content-text:nth-of-type(2), section.full-width .w5050#ga-tree .content-text:nth-of-type(2), section.full-width .w5050#ga-asche .content-text:nth-of-type(2) {
    grid-row: 1/2;
  }
  section.full-width .w5050#ga-feuer .content-image, section.full-width .w5050#ga-erd .content-image, section.full-width .w5050#ga-natur .content-image, section.full-width .w5050#ga-see .content-image, section.full-width .w5050#ga-tree .content-image, section.full-width .w5050#ga-asche .content-image {
    grid-row: 2/3;
  }
  section.full-width .w5050#ga-feuer .content-image img, section.full-width .w5050#ga-erd .content-image img, section.full-width .w5050#ga-natur .content-image img, section.full-width .w5050#ga-see .content-image img, section.full-width .w5050#ga-tree .content-image img, section.full-width .w5050#ga-asche .content-image img {
    margin: 0 auto;
  }
  section.full-width .w5050#ga-feuer div:nth-of-type(1),
  section.full-width .w5050#ga-feuer div:nth-of-type(2), section.full-width .w5050#ga-erd div:nth-of-type(1),
  section.full-width .w5050#ga-erd div:nth-of-type(2), section.full-width .w5050#ga-natur div:nth-of-type(1),
  section.full-width .w5050#ga-natur div:nth-of-type(2), section.full-width .w5050#ga-see div:nth-of-type(1),
  section.full-width .w5050#ga-see div:nth-of-type(2), section.full-width .w5050#ga-tree div:nth-of-type(1),
  section.full-width .w5050#ga-tree div:nth-of-type(2), section.full-width .w5050#ga-asche div:nth-of-type(1),
  section.full-width .w5050#ga-asche div:nth-of-type(2) {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  section.full-width .w5050#ga-feuer > .content-image:first-child, section.full-width .w5050#ga-erd > .content-image:first-child, section.full-width .w5050#ga-natur > .content-image:first-child, section.full-width .w5050#ga-see > .content-image:first-child, section.full-width .w5050#ga-tree > .content-image:first-child, section.full-width .w5050#ga-asche > .content-image:first-child {
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
  section.full-width .w5050 > .content-image img {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  section.full-width .w5050 > .content-image {
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  section .w6030 .smaller .rte,
  section .w5050 .smaller .rte,
  section .w100 .smaller .rte,
  section .w120 .smaller .rte {
    padding: 0 0rem;
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }
  #article-352 .w6030 div:nth-of-type(1) {
    grid-column: 1/12;
  }
  #article-352 .w6030 div:nth-of-type(2) {
    grid-column: 12/13 !important;
    flex-direction: row;
    justify-content: space-around;
  }
  #article-352 .w6030 div:nth-of-type(2) .unavbtn {
    flex: 0 0 auto;
    transform: scale(0.6);
    width: auto;
  }
  #article-352 .w6030 div:nth-of-type(2) .unavbtn h3 {
    font-size: 2rem;
  }
  #startvideo {
    max-width: 70%;
    text-align: center;
    margin: 0 auto;
  }
  #article-297.grid12 div:nth-of-type(2).content-text, #article-297.grid12 .right-div.content-text {
    justify-content: center;
    align-items: center;
  }
  .rsts-skin-default a.rsts-prev {
    left: 1rem;
    right: auto;
  }
  .rsts-skin-default a.rsts-next {
    left: auto;
    right: 1rem;
  }
  .w6030,
  .w5050,
  .w100,
  .w120 {
    padding-top: 0;
  }
  #top-right {
    text-align: center;
  }
  #news .flex {
    justify-content: center;
  }
  #news .flex .content-text {
    flex: 0 0 90%;
  }
  .w100 .rte,
  .w120 .rte {
    padding: 0rem;
  }
  #pageTitle {
    padding: 0 1rem;
    grid-column: 1/-1 !important;
  }
  #main .inside section > div > .content-text {
    padding: 0 2rem;
  }
  #article-393 .content-image {
    width: auto;
  }
  #article-393 figure {
    display: inline-block;
    margin: 0 auto;
    width: auto;
  }
  #startHH .starthold {
    transform-origin: bottom left;
    transform: scale(0.7) translateX(-50%) !important;
  }
  .teambilder .content-text {
    flex: 0 0 48%;
  }
  #main .inner {
    display: block;
  }
  .w5050 > .content-text:last-child .rte {
    margin: 0;
  }
  .w5050 .smaller {
    width: 100%;
  }
  body.startseite #article-544 .flex-row {
    justify-content: space-around;
  }
  #impressum {
    padding: 0 2rem;
  }
  #grabarten .v-center .content-image {
    padding-top: 1rem;
  }
  #article-366 {
    display: none;
  }
  #article-0001 {
    display: block;
    padding-bottom: 0 !important;
  }
}
@media only screen and (max-width: 750px) {
  #teaserholder #teaser-inner {
    flex-wrap: wrap;
  }
  #startHH .startkasten {
    max-width: 100% !important;
    width: 100%;
  }
  #startHH .startkasten img {
    bottom: 0;
    aspect-ratio: 1/1;
    margin: 0 0.7rem;
  }
  #start-video {
    grid-template-rows: 1fr 1fr;
  }
  #start-video #headVideo {
    grid-row: 1/2;
  }
  #start-video #startHH {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  #musik_items {
    grid-column: 1/-1;
    display: flex;
    flex-direction: column;
  }
  .literatur,
  .kondolenz,
  .zitate,
  .partner,
  .leistungen {
    width: 100%;
  }
  #formular .fcholder {
    flex-direction: column;
  }
  #pageForm .formbody {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #pageForm .formbody .flexrow {
    flex: 0 0 50%;
    width: 50%;
  }
  #pageForm input {
    padding: 0.5rem;
    border: 1px solid var(--red);
    border-radius: 5px;
  }
  #pageForm button {
    padding: 0.5rem;
    border: 1px solid var(--red);
    border-radius: 5px;
    background: var(--red);
    color: #fff;
    cursor: pointer;
  }
  #pageForm .widget,
  #pageForm .flexC {
    display: flex;
    flex: 0 0 100%;
    flex-direction: column;
    width: 100%;
  }
  #main .inside section .w6030 div:nth-of-type(1) {
    grid-column: 1/-1;
  }
  #main .inside section .w6030 div:nth-of-type(2) {
    grid-column: 1/-1;
  }
  #main .inside section .w6030 div:nth-of-type(2) .unavbtn {
    flex: 0 0 auto;
    transform: scale(0.6);
  }
  #main .inside section .w6030 div:nth-of-type(2) .unavbtn width:fit-content h3 {
    font-size: 2rem;
  }
  #start-head {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  #start-head #head-image {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  #start-head #head-image img {
    width: 100%;
  }
  #start-head #startHH {
    grid-column: 1/2;
    grid-row: 1/2;
    bottom: 0;
  }
  #start-head #startHH .starthold {
    transform: scale(0.5) translateX(-50%) !important;
    bottom: 1%;
  }
  #start-head #startHH h2 {
    display: flex;
    font-size: 7rem;
    font-weight: 100;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-wrap: nowrap;
  }
  #start-head #startHH .startkasten {
    display: flex;
    justify-content: flex-end;
  }
  #start-head #startHH .starthold {
    display: inline-block;
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
}
@media only screen and (max-width: 680px) {
  #start-head #startHH h2 {
    font-size: 5rem;
  }
  .grabarten {
    margin-bottom: 3rem;
  }
  #article-352 .w6030 .u-nav {
    position: absolute;
    top: 0;
    right: 0;
    transform: scale(0.6);
    transform-origin: top right;
  }
  body.startseite #article-544 .flex-row {
    justify-content: space-around;
    flex-direction: column;
    margin: 2rem;
  }
  body.startseite #article-544 .flex-row .item:nth-of-type(2) {
    margin-top: 5rem;
  }
  #downloadListe .content-download {
    flex: 0 0 45%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .slick-prev {
    left: 10px !important;
  }
  .slick-next {
    right: 10px !important;
  }
  #header #menu-head .inside #top-logo img {
    max-width: 85%;
    height: auto;
  }
  #frliste ul.clickable li {
    flex: 0 0 98%;
    padding: 1rem 2rem 0 2rem;
    text-align: center;
  }
  .flex.zitate .overflow::after {
    content: url(../hg/overflow-w.png);
    right: 0px;
    transform: translateY(-20px);
  }
  #left #navigation #navHolder .item {
    padding: 0rem;
  }
}
@media only screen and (max-width: 550px) {
  #startvideo::before {
    content: "";
    background-image: url("../icons/video_play.png");
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 80px;
    background-position: center;
    width: 200px;
    height: 200px;
  }
  #navHolder ul.level_2 {
    margin-left: 0;
    padding-left: 0;
  }
  #navHolder .level_1 li > a,
  #navHolder .level_1 li > strong {
    font-size: 1.8rem !important;
  }
  #navHolder .level_1 li .level_2 a,
  #navHolder .level_1 li .level_2 strong {
    font-size: 1.5rem !important;
  }
  #main .inside,
  #footer .inside,
  #menu-head .inside {
    --content-maxwidth: 1860px;
    --padding-inline: 0rem;
    --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];
  }
  .flex.zitate .content-text {
    min-width: 250px;
    width: 90%;
    flex: 0 0 auto;
  }
  .teambilder .content-text {
    flex: 0 0 90%;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 550px) {
  #toMail {
    transform-origin: right center;
    transform: scale(0.6);
  }
  .rsts-skin-default .rsts-nav ul {
    display: none;
  }
  .slider-vorsorge .content-text {
    flex-direction: column;
  }
  .slider-vorsorge .content-text .rte {
    flex: 0 0 100%;
  }
  .slider-vorsorge .content-text figure {
    flex: 0 0 100%;
  }
  #article-532 .flex-row {
    flex-direction: column;
  }
  #article-532 .flex-row .item:nth-of-type(2) {
    margin-top: 2rem;
  }
  #start-head #startHH .starthold {
    transform: scale(0.5) translateX(-50%) !important;
  }
  #main .inside #article-400 .w6030 div:nth-of-type(2),
  #main .inside #article-437 .w6030 div:nth-of-type(2) {
    flex-wrap: wrap !important;
  }
  #main #article-352 .w6030 div:nth-of-type(1) {
    grid-column: 1/-1;
  }
  #main #article-352 .w6030 div:nth-of-type(1) > .rte h1 {
    padding-right: 3rem;
  }
}
@media only screen and (max-width: 480px) {
  #start-video #startHH .startkasten {
    position: static;
    bottom: 20%;
    transform: translateX(0);
    max-width: 80%;
    margin: 1rem auto;
  }
  #start-head {
    margin-top: 0rem;
  }
  #main .inside,
  #main .inner,
  #footer .inside,
  #footer .inner,
  #menu-head .inside,
  #menu-head .inner {
    --content-maxwidth: 1860px;
    --padding-inline: 0.5rem;
    --breakout-maxwidth: 100rem;
  }
  #pageForm .formbody .flexrow {
    flex: 0 0 100%;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
  }
  #start-head #startHH h2 {
    font-size: 6rem;
    text-wrap: wrap !important;
  }
  #startHH .startkasten {
    justify-content: center !important;
  }
  .slider-vorsorge .content-text figure img {
    min-width: 150px;
    margin: 0 auto;
  }
  #header {
    padding: 1.5rem 0 0.5rem 0;
  }
  .was-tun h2 br {
    content: " ";
  }
  .was-tun h2 br:after {
    content: " ";
  }
  body.pg_kontakt #main .inside section > div > .content-text {
    padding: 0 2rem;
  }
  #formular .flexcolumn {
    padding: 0 0rem;
  }
}
@media only screen and (max-width: 400px) {
  #downloadListe .content-download {
    flex: 0 0 90%;
  }
  #toMail {
    transform-origin: right center;
    transform: scale(0.39);
  }
  #mediathek ul li img {
    min-width: 250px;
  }
  #main .u-nav.flex.f30 .unavbtn,
  #main .u-nav.flex.f50 .unavbtn {
    flex: 0 0 50% !important;
    transform: scale(0.6);
    width: 50% !important;
  }
  #start-head #startHH h2 {
    font-size: 3rem;
    text-wrap: wrap !important;
  }
  #start-head #startHH .starthold {
    width: 90vw !important;
    transform: scale(0.7) translateX(-50%) !important;
    left: 50%;
  }
  .startkasten a img {
    width: 55px;
    height: 55px;
    aspect-ratio: 1/1 !important;
  }
  #frliste ul.clickable {
    justify-content: space-around;
  }
  h1 {
    font-size: 2.5rem !important;
  }
  h1 br {
    content: " ";
  }
  h1 br:after {
    content: " ";
  }
  #main .inside section:first-child .w6030 div:nth-of-type(2) {
    justify-content: center;
    flex-wrap: nowrap;
  }
  #main .inside #article-472 .w6030 div:nth-of-type(2), #main .inside #article-496 .w6030 div:nth-of-type(2), #main .inside #article-519 .w6030 div:nth-of-type(2) {
    flex-wrap: wrap !important;
  }
  #main .inside #article-400 .w6030 div:nth-of-type(2),
  #main .inside #article-437 .w6030 div:nth-of-type(2),
  #main .inside #article-455 .w6030 div:nth-of-type(2),
  #main .inside #article-360 .w6030 div:nth-of-type(2) {
    flex-wrap: wrap !important;
  }
}
@media only screen and (min-width: 1200px) {
  .mod_rocksolid_slider {
    height: 500px !important;
  }
}
@media (max-width: 920px) and (max-height: 420px) and (orientation: landscape) {
  /* Specific styles */
  #header {
    margin: 0;
    padding: 0.5rem 0 0.2rem 0;
    min-height: 60px;
    position: relative;
  }
  #container {
    padding-top: 0px;
  }
}/*# sourceMappingURL=aufbau.css.map */