/* montserrat-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: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/montserrat-v26-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-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: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v26-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-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: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/montserrat-v26-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-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: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/montserrat-v26-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-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: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/montserrat-v26-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-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: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-v26-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*, *::before, *::after {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

#wrapper {
  min-height: 100vh;
}

::-moz-selection {
  color: rgb(255, 255, 255);
  background: #82348b;
}

::selection {
  color: rgb(255, 255, 255);
  background: #82348b;
}

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

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

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

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

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

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

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

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

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

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

#main p,
#main li {
  font-size: 1.25rem;
  line-height: 1.6rem;
  font-family: inherit;
  font-weight: 500;
}
#main li {
  line-height: 1.6rem;
  padding-left: 0.7rem;
}
#main .rte a {
  color: #fff;
}
#main .rte a:hover {
  color: #777;
}
#main ul {
  padding-left: 28px;
}
#main a.adk {
  color: #82348b;
}

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

.inner-grid-top {
  display: flex;
  justify-content: space-between;
}
.inner-grid-top #navgrid {
  display: grid;
  padding: 5px;
  grid-template-columns: 25% 1fr 25%;
  grid-template-rows: auto;
  grid-template-areas: "f1 f2 f3";
}
.inner-grid-top .f1 {
  grid-area: f1;
  padding: 5px;
}
.inner-grid-top .f2 {
  grid-area: f2;
  padding: 5px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.inner-grid-top .f3 {
  grid-area: f3;
  padding: 5px;
}

.inner-grid {
  display: grid;
  grid-template-columns: 33% 33% 1fr;
  grid-template-rows: auto;
}
.inner-grid.footer-grid {
  grid-column: content;
  grid-template-areas: "fullwidth fullwidth fullwidth" "columnF1 columnF2 columnF3" "fullwidthF fullwidthF fullwidthF";
}
.inner-grid .fullwidth {
  grid-area: fullwidth;
}
.inner-grid .columnF1 {
  grid-area: columnF1;
}
.inner-grid .columnF2 {
  grid-area: columnF2;
}
.inner-grid .columnF3 {
  grid-area: columnF3;
}
.inner-grid .fullwidthF {
  grid-area: fullwidthF;
  font-size: 1.25rem;
  font-weight: 700;
}
.inner-grid .fullwidthF p {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
}
.inner-grid.content-grid-right {
  max-width: 1600px;
  margin: 0 auto;
  --content-width: calc((100vw - $content-maxwidth) / 2);
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: auto;
  grid-template-areas: "leftR leftR rightR rightR";
}
.inner-grid.content-grid-full {
  grid-column: breakout;
}
.inner-grid.content-grid-full-page {
  grid-column: full-width;
  grid-template-columns: 100vw;
  grid-template-rows: auto;
}
.inner-grid .leftR {
  grid-area: leftR;
  padding: 2rem 5rem 2rem 3rem;
}
.inner-grid .rightR {
  grid-area: rightR;
}
.inner-grid .rightR img {
  width: 100%;
}
.inner-grid .padding-left {
  padding: 2rem 5rem 2rem 3rem;
}

.videofaq .rte h3 a {
  text-decoration: none !important;
  color: #82348b !important;
}

.slider {
  pointer-events: none;
}
.slider .swiper-wrapper img {
  pointer-events: none;
}

.holder-swiper {
  pointer-events: all;
}

.grid-square {
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: 2rem 2rem;
  margin-bottom: 10rem;
}
.grid-square .itemA {
  grid-area: 1/1;
}
.grid-square .itemB {
  grid-area: 1/2;
}
.grid-square .itemC {
  grid-area: 2/1;
}
.grid-square .itemD {
  grid-area: 2/2;
}

.bigger p {
  font-size: 1.875rem !important;
  font-weight: 500 !important;
  line-height: 2.5rem !important;
}

.w70 {
  max-width: 70%;
  margin: 0 auto;
}

.content-grid-full {
  grid-column: breakout;
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 3rem 2rem 3rem;
}

.gap3 {
  gap: 3rem 3rem;
  width: 100%;
}
.gap3 .content-text {
  flex: 0 0 calc(50% - 1.5rem) !important;
}

h4 {
  font-size: 1.25rem;
  color: #82348b;
}

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

.widget.widget-text, .widget.widget-textarea, .widget.widget-password {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 2rem;
}
.widget.widget-text input[type=text],
.widget.widget-text input[type=password],
.widget.widget-text input[type=email],
.widget.widget-text #ctrl_7, .widget.widget-textarea input[type=text],
.widget.widget-textarea input[type=password],
.widget.widget-textarea input[type=email],
.widget.widget-textarea #ctrl_7, .widget.widget-password input[type=text],
.widget.widget-password input[type=password],
.widget.widget-password input[type=email],
.widget.widget-password #ctrl_7 {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 0rem;
  background-color: #e3ddff;
}
.widget.widget-text label, .widget.widget-textarea label, .widget.widget-password label {
  font-size: 1.25rem;
  color: #82348b;
  margin-bottom: 0.5rem;
}
.widget.widget-text p, .widget.widget-textarea p, .widget.widget-password p {
  margin-bottom: 1rem;
}
.widget #ctrl_8 {
  border: 0;
}
.widget #ctrl_8 #lbl_8_0 {
  font-size: 0.9rem;
}
.widget #ctrl_7 {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 0rem;
  background-color: #e3ddff;
}
.widget label {
  font-size: 1.25rem;
  color: #82348b;
  margin-bottom: 0.5rem;
}

#kontakt_form .widget.widget-text, #kontakt_form .widget.widget-textarea, #kontakt_form .widget.widget-password {
  margin-bottom: 0rem;
}

#article-74,
#article-80,
#article-86 {
  margin-bottom: 10rem;
}

#phonetop {
  overflow: visible;
  display: grid;
  position: relative;
  cursor: pointer;
}
#phonetop img {
  grid-area: 1/1;
  z-index: 2001;
  border: 2px solid #707070;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
#phonetop .telorte {
  transform-origin: top right;
  position: absolute;
  right: 5px;
  grid-area: 1/1;
  width: 200px;
  border: 1px solid #ff0000;
  padding: 7px;
  padding-top: 85px;
  z-index: 2000;
  background-color: #fff;
  border: 2px solid #707070;
  border-radius: 8px;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#phonetop .telorte p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 500;
}
#phonetop .telorte p.number {
  font-weight: 700;
  font-size: 1.25rem;
  text-align: right;
}

#kontakt_form {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
}

#gh_text {
  padding-top: 45px;
  cursor: pointer;
}
#gh_text p {
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

#phonetop:hover .telorte {
  transform: scale(1);
  opacity: 1;
}
#phonetop:hover img {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}

.widget-submit {
  text-align: right;
}

button[type=submit] {
  background-color: #82348b;
  color: #fff;
  padding: 0.2rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 1rem;
  margin: 0 0 0 auto;
}
button[type=submit]::after {
  content: url("../icons/btn_senden.png");
  margin-left: 1rem;
}

.g-v-center {
  align-items: center;
}

.padding-bottom-10 {
  padding-bottom: 10rem !important;
}

.padding-top-10 {
  padding-top: 10rem;
}

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

.overflow-image,
.overflow-image_ {
  position: relative;
}
.overflow-image .over-name,
.overflow-image_ .over-name {
  position: absolute;
  bottom: 6rem;
  left: 8rem;
  background-color: #fff;
  padding: 0.3rem 1rem;
  font-size: 1.875rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 7px;
}

.pos-relative {
  position: relative;
}

.overlayImage {
  position: absolute;
  bottom: -5%;
  right: 10%;
}
.overlayImage img {
  max-width: 900px;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}
.overlayImage:hover img {
  transform: translateY(10%);
}

.flexicon {
  display: flex;
  color: #82348b !important;
  text-transform: none;
  align-items: center;
  cursor: pointer;
}
.flexicon img {
  margin-right: 5px;
}

.overflow-image {
  overflow: hidden;
}
.overflow-image img {
  transition: all 0.5s ease-in-out;
}

#erklaerungen {
  background-image: url("../bilder/wir/arten_hg.jpg");
  background-repeat: no-repeat;
  min-height: 2000px;
  position: relative;
  background-position: center top;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
}
#erklaerungen .over-text {
  padding: 2rem;
  cursor: pointer;
}
#erklaerungen .over-text h2 {
  color: #555;
  text-transform: uppercase;
  font-weight: 500;
  background: #e3ddff;
  text-align: right;
  display: inline-block;
  padding: 0.3rem 1rem 0.3rem 1rem;
  border-radius: 10px;
  position: absolute;
  z-index: 2;
  right: 50px;
}
#erklaerungen .over-text h2::before {
  content: url("../icons/open.png");
  padding-right: 0.5rem;
}
#erklaerungen .over-text .content-text {
  background: #e3ddff;
  position: absolute;
  display: inline-block;
  padding: 3rem 3rem 1.3rem 3rem;
  max-width: 60%;
  margin: 1.3rem 0;
  border-radius: 10px;
  z-index: 1;
  font-weight: 600;
  color: #555;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  transform: scaleX(0);
  transform-origin: top right;
}
#erklaerungen .over-text:nth-child(1) h2,
#erklaerungen .over-text:nth-child(1) .content-text {
  right: 50px;
}
#erklaerungen .over-text:nth-child(2) h2,
#erklaerungen .over-text:nth-child(2) .content-text {
  right: 150px;
}
#erklaerungen .over-text:nth-child(3) h2,
#erklaerungen .over-text:nth-child(3) .content-text {
  right: 250px;
}
#erklaerungen .over-text:nth-child(4) h2,
#erklaerungen .over-text:nth-child(4) .content-text {
  right: 50px;
}
#erklaerungen .over-text:nth-child(5) h2,
#erklaerungen .over-text:nth-child(5) .content-text {
  right: 150px;
}
#erklaerungen .over-text:nth-child(6) h2,
#erklaerungen .over-text:nth-child(6) .content-text {
  right: 50px;
}
#erklaerungen .over-text:nth-child(7) h2,
#erklaerungen .over-text:nth-child(7) .content-text {
  right: 250px;
}
#erklaerungen .over-text:nth-child(8) h2,
#erklaerungen .over-text:nth-child(8) .content-text {
  right: 70px;
}
#erklaerungen .over-text:hover .content-text {
  background: #e3ddff;
  position: absolute;
  display: inline-block;
  padding: 3rem 3rem 1.3rem 3rem;
  max-width: 60%;
  margin: 1.25rem 0;
  border-radius: 10px;
  z-index: 1;
  font-weight: 600;
  color: #555;
  opacity: 1;
  width: 60%;
  transform: scaleX(100%);
}

#header .content-grid {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  --content-maxwidth: 1500px;
  --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];
}

.btn {
  background: #b5b4c5;
  padding: 0.3rem 1rem;
  color: #82348b;
  display: table;
  text-transform: uppercase;
  border-radius: 7px;
}
.btn_image img {
  max-width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.btn_image figure {
  grid-column: full-width;
}

h1,
h2,
h3,
p,
li {
  color: #82348b;
}

#gh_text.show .rte {
  display: block;
}

h1 {
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 6rem;
  word-break: break-all;
  word-break: break-word;
  hyphenate-limit-chars: auto 5;
  hyphenate-limit-lines: 2;
}

h3 {
  font-weight: 500;
  font-size: 1.875rem;
}

.uppercase {
  text-transform: uppercase;
}

.section {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.section.bild-s {
  height: 100vh;
  position: relative;
}
.section.bild-s img {
  position: absolute;
  bottom: 8rem;
  left: 5rem;
}
.section#s_leistung {
  background-image: url("../navi_bilder/b_leistungen.jpg");
}
.section#s_familie {
  background-image: url("../navi_bilder/b_familie.jpg");
  background-position-y: center;
}
.section#s_ausstellung {
  background-image: url("../navi_bilder/b_ausstellung.jpg");
  background-position: center;
}
.section#s_abschiednahme {
  background-image: url("../navi_bilder/b_abschiednahme.jpg");
  background-position: center;
}
.section#s_trauerfeier {
  background-image: url("../navi_bilder/b_trauerfeier.jpg");
  background-position: center;
}
.section#s_trauercafe {
  background-image: url("../navi_bilder/b_trauercafe.jpg");
  background-position: center;
}
.section#s_standort {
  background-image: url("../navi_bilder/b_standort.jpg");
  background-position: bottom;
}

.btn.anchor_erlangen,
.btn.anchor_herzogenaurach {
  cursor: pointer;
}

#navigation-table {
  display: block;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  transform: scale(0) translateY(-100vh);
  transition: all 0.5s ease-in-out;
  position: fixed;
  background-color: #82348b;
  z-index: 2003;
  background-image: url("../hg/overlay_icon_navi.png");
  background-repeat: no-repeat;
  background-size: auto 90%;
  background-position: left center;
}
#navigation-table .inner {
  margin: 3rem;
}
#navigation-table #top-nav-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
#navigation-table #top-nav-line img {
  cursor: pointer;
}
#navigation-table #nav-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
#navigation-table #nav-line ul {
  list-style: none;
}
#navigation-table #nav-line ul.first {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#navigation-table #nav-line ul.first ul.second {
  padding-left: 0;
}
#navigation-table #nav-line ul.first ul.second a {
  color: #fff;
  font-size: 1.75rem;
}
#navigation-table #nav-line ul.first ul.second a:hover {
  color: #e3ddff;
  color: #d4d4d4;
}
#navigation-table #nav-line img {
  cursor: pointer;
}
#navigation-table #nav-line h3 {
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
#navigation-table #nav-line a {
  text-decoration: none;
}
#navigation-table #btn_close {
  color: #fff;
  font-size: 5rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
#navigation-table #btn_close:hover {
  transform: rotate(90deg);
}

body.showNavP #navigation-table {
  display: block;
  transform: scale(1);
  transform: scale(1) translateY(0);
  overflow: scroll;
}

#footer {
  background-color: #82348b;
}
#footer .content-grid {
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #fff;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  --content-maxwidth: 1500px;
  --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];
}
#footer p {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
#footer p.twentyfour {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
}
#footer p.twentyfour::before {
  content: url("../icons/24.png");
  margin-right: 1rem;
}
#footer p.place {
  display: flex;
  line-height: 1.3rem;
}
#footer p.place::before {
  content: url("../icons/place.png");
  margin-right: 1rem;
}
#footer p.mail::before {
  content: url("../icons/mail.png");
  margin-right: 1rem;
  vertical-align: -15%;
}
#footer .btn {
  background: #b5b4c5;
  padding: 5px 20px;
  display: inline-block;
  border-radius: 6px;
  text-transform: uppercase;
  color: #82348b;
  width: 100%;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  margin: 12px 0;
}
#footer .btn a {
  text-decoration: none !important;
  font-size: inherit;
  color: inherit;
}
#footer .btn_row {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
#footer .btn_row a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

#btn_nav {
  cursor: pointer;
}

#navigation h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #82348b;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
#navigation a {
  text-decoration: none;
  color: #555;
}
#navigation a:hover {
  color: #82348b;
}
#navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#navigation ul ul {
  padding-left: 0.5rem;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-wrapper img {
  max-width: 900px;
  height: auto;
}

.swiper-slide {
  width: auto !important;
}

.swiper-button-prev {
  background-image: url("../icons/btn_prev.png");
  content: "" !important;
}

.swiper-button-next {
  background-image: url("../icons/btn_next.png");
  content: "" !important;
}

.swiper-button-prev,
.swiper-button-next {
  background-position: center;
  background-repeat: no-repeat;
  width: 36px !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
}

.holder-swiper {
  position: absolute;
  top: 50%;
  height: 30px;
  width: 60%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2002;
}

.title-slider {
  position: absolute;
  bottom: 3rem;
  left: 30%;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 255, 255);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #555;
  text-transform: uppercase;
  z-index: 5000;
  transition: all 0.5s ease-in-out;
}
.title-slider:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.mySlider {
  position: relative;
}

.slidertext {
  padding: 3rem 11rem 9rem 11rem;
}
.slidertext p {
  font-size: 2rem !important;
  font-weight: 500 !important;
  line-height: 2.6rem !important;
}

#left {
  border: 1px solid #e1e1e1;
  padding: 2rem;
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3000;
  background-color: rgb(255, 255, 255);
  margin-left: auto;
}

#wrapper {
  transition: all 0.5s ease-in-out;
}

.showNav #left {
  transform: translateX(0);
}
.showNav #wrapper {
  filter: blur(0.5rem);
  filter: opacity(0.1);
}

.twentyfour,
.mail {
  cursor: pointer;
}

.flex {
  display: flex;
}
.flex.column {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.flex.row {
  flex-direction: row;
  justify-content: space-between;
}
.flex .content-text {
  flex: 0 0 50%;
}
.flex.full .content-text {
  flex: 0 0 100%;
}
.flex.content {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

a[href="/video"] img {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body.startseite {
  /* All the snapping stuff */
}
body.startseite #overlay-icon {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}
body.startseite ::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
body.startseite .scroll-container {
  height: calc(100vh - 200px);
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  position: relative;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
body.startseite .absolute--text {
  position: fixed;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.startseite .section {
  position: sticky;
  height: calc(100vh - 200px);
  width: 100%;
  top: 0;
  scroll-snap-align: end;
}
body.startseite .section .btn {
  background: #fff;
  padding: 0.2rem 3.9rem 0.2rem 0.5rem;
  border-radius: 6px;
  display: inline-block;
  position: absolute;
  bottom: 3rem;
  left: 3rem;
}
body.startseite .section .btn ::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../icons/btn_start.png");
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-30%);
  right: 5px;
  position: absolute;
  display: inline-block;
  transition: all 0.9s ease-in-out;
}
body.startseite .section .btn a {
  color: #707070;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.875rem;
  font-weight: 500;
}
body.startseite .section .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

@media only screen and (max-width: 1485px) {
  #navigation-table #nav-line h3 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 11260px) {
  #navigation-table #nav-line h3 {
    font-size: 2rem;
  }
  #navigation-table #nav-line ul.first ul.second a {
    font-size: 1.5rem;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {
  html {
    font-size: 14px;
  }
  #footer .columnF3 .btn_row {
    flex-direction: column;
  }
  body.startseite .section .btn {
    bottom: 6rem;
    left: 3rem;
  }
}
@media only screen and (max-width: 1049px) {
  .swiper-button-next,
  .swiper-button-prev {
    background-color: #82348b;
  }
  .overlayImage {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  #footer .inner-grid.footer-grid {
    grid-column: content;
    grid-template-areas: "fullwidth fullwidth" "columnF1 columnF2" "columnF3 columnF4" "fullwidthF fullwidthF";
  }
  #footer .inner-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
  }
  #footer .inner-grid .columnF3 {
    grid-area: columnF3;
  }
  #footer .inner-grid .fullwidthF {
    grid-area: columnF4;
    font-size: 1.25rem;
    font-weight: 700;
  }
  #footer .columnF3 .row:nth-child(1) {
    justify-content: flex-start;
  }
  #footer .columnF3 .row:nth-child(1) .column:nth-child(1) {
    flex: 0 0 70%;
  }
  #footer .columnF3 .row:nth-child(1) .column:nth-child(1) .btn {
    width: 80%;
  }
  #footer .columnF3 .row:nth-child(1) .column:nth-child(1) img {
    padding-left: 20%;
  }
  .swiper-slide img {
    max-width: 900px;
    width: 90vw;
  }
  #navigation-table #nav-line ul {
    flex-wrap: wrap;
  }
  #navigation-table #nav-line ul li {
    flex: 0 0 50%;
  }
}
@media only screen and (max-width: 860px) {
  h1 {
    font-size: 2.5rem !important;
  }
  #header .content-grid {
    padding-top: 1rem;
    padding-bottom: 1rem;
    --content-maxwidth: 1500px;
    --padding-inline: 1rem;
    --breakout-maxwidth: 100rem;
    display: grid;
    grid-template-columns: [full-width-start] var(--padding-inline) [breakout-start] 1fr [content-start] minmax(300px, var(--content-maxwidth)) [content-end] 1fr [breakout-end] var(--padding-inline) [full-width-end];
  }
  #header .inner-grid-top #navgrid .f2 a {
    flex: 0 0 auto;
    margin-bottom: 3px;
  }
  .inner-grid-top #navgrid {
    display: grid;
    padding: 5px;
    grid-template-columns: 27% 1fr 27%;
    grid-template-rows: auto;
    grid-template-areas: "f1 f2 f3";
  }
}
@media only screen and (max-width: 750px) {
  .slidertext {
    padding: 3rem 2rem 9rem 2rem;
  }
  .grid-square {
    display: flex;
    flex-direction: column;
  }
  .nobreak {
    word-break: auto-phrase;
    white-space: nowrap;
    display: block;
  }
}
@media only screen and (max-width: 650px) {
  #footer .inner-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #footer .columnF3 .row:nth-child(1) {
    justify-content: flex-start;
    flex-direction: column;
  }
  #footer .fullwidth span {
    display: block;
  }
  .nobreak {
    word-break: auto-phrase;
    white-space: nowrap;
    display: block;
  }
  body.startseite .section .btn {
    bottom: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .inner-grid.content-grid-right {
    max-width: 1600px;
    display: flex;
    flex-direction: column;
  }
  .overflow-image .over-name,
  .overflow-image_ .over-name {
    bottom: 2rem;
    left: 2rem;
  }
  #erklaerungen {
    min-height: 2300px;
  }
  #erklaerungen .over-text {
    max-width: 100%;
  }
  #erklaerungen .over-text h2 {
    right: 50% !important;
    transform: translateX(50%) !important;
    width: 90%;
    text-align: center;
  }
  #erklaerungen .over-text .content-text {
    right: 50% !important;
    transform: translateX(50%) !important;
    width: 90% !important;
    max-width: 90% !important;
  }
  .section#s_leistung {
    background-image: url("../navi_bilder/small/b_leistungen.jpg");
    background-position: left bottom;
  }
  .section#s_familie {
    background-image: url("../navi_bilder/small/b_familie.jpg");
    background-position-y: center;
  }
  .section#s_ausstellung {
    background-image: url("../navi_bilder/small/b_ausstellung.jpg");
  }
  .section#s_abschiednahme {
    background-image: url("../navi_bilder/small/b_abschiednahme.jpg");
  }
  .section#s_trauerfeier {
    background-image: url("../navi_bilder/small/b_trauerfeier.jpg");
  }
  .section#s_trauercafe {
    background-image: url("../navi_bilder/small/b_trauercafe.jpg");
  }
  .section#s_standort {
    background-image: url("../navi_bilder/small/b_standort.jpg");
  }
  #header .content-grid {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  #navi-logo {
    max-width: 50%;
  }
}
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 3.785rem;
  }
  .content-grid {
    --content-maxwidth: 1260px;
    --padding-inline: 1.5rem;
    --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];
  }
  .inner-grid-top #navgrid {
    max-width: 130px;
    display: grid;
    padding: 5px;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
    grid-template-areas: "f1 f3" "f2 f2";
    margin-top: -12px;
  }
  #phonetop {
    max-width: 100%;
  }
  .gap3 {
    gap: 3rem 3rem;
    width: 100%;
    flex-direction: column;
  }
  .gap3 .content-text {
    flex: 0 0 100% !important;
  }
  #article-39,
  #article-43,
  #article-44,
  #article-56 {
    align-items: start;
  }
  .w70 {
    max-width: 100%;
    width: 100%;
  }
  .padding-bottom-10 {
    padding-bottom: 3rem !important;
  }
  .padding-top-10 {
    padding-top: 3rem !important;
  }
  #erklaerungen {
    min-height: 2500px;
  }
  .inner-grid .leftR {
    grid-area: leftR;
    padding: 2rem 2rem 2rem 2rem;
  }
  #navigation-table #nav-line ul {
    flex-wrap: wrap;
    flex-direction: column;
  }
  #navigation-table #nav-line ul li {
    flex: 0 0 50%;
  }
  #overlay-icon {
    display: none;
    position: fixed;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    top: 50%;
    transform: translateY(-50%);
  }
  #overlay-icon img {
    max-width: 50% !important;
  }
  #header .content-grid {
    padding-top: 1rem;
    padding-bottom: 1rem;
    --content-maxwidth: 1500px;
    --padding-inline: 1rem;
    --breakout-maxwidth: 100rem;
    display: grid;
    grid-template-columns: [full-width-start] var(--padding-inline) [breakout-start] 1fr [content-start] minmax(300px, var(--content-maxwidth)) [content-end] 1fr [breakout-end] var(--padding-inline) [full-width-end];
  }
}
@media only screen and (max-width: 500px) {
  #logo {
    padding-right: 1.7rem;
  }
  #header .inner-grid-top {
    display: flex;
  }
  #header .inner-grid-top div {
    flex: 0 0 30%;
  }
  #header .inner-grid-top a {
    flex: 0 0 70%;
  }
  #header .inner-grid-top #navgrid .f2 a {
    flex: 0 0 auto;
    margin-bottom: 5px;
  }
  #erklaerungen {
    min-height: 2700px;
  }
  #erklaerungen h2 {
    font-size: 1.5rem;
  }
  #erklaerungen .content-text {
    font-size: 1rem;
  }
  .overflow-image .over-name,
  .overflow-image_ .over-name {
    position: absolute;
    bottom: 2rem;
    left: 3.9rem;
    background-color: #fff;
    padding: 0.3rem 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
  }
  .section#s_standort {
    background-position-x: right;
  }
  .section#s_abschiednahme {
    background-position-x: right;
  }
  .section#s_familie {
    background-position-x: center;
  }
  #kontakt_form {
    max-width: 95% !important;
  }
  #kontakt_form label,
  #kontakt_form input,
  #kontakt_form textarea {
    max-width: 90% !important;
  }
  .widget {
    max-width: 95% !important;
  }
  .widget-submit {
    text-align: center;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 400px) {
  html {
    font-size: 12px;
  }
  .content-grid-full {
    padding: 2rem 1rem 2rem 1rem;
  }
  #erklaerungen {
    min-height: 2700px;
  }
  #erklaerungen h2 {
    font-size: 1.5rem;
  }
  #erklaerungen .content-text {
    font-size: 1rem;
  }
}
@media only screen and (orientation: landscape) and (max-height: 600px) {
  body.startseite .section {
    position: static;
  }
}
@media only screen and (max-height: 600px) {
  body.startseite .section {
    position: static;
  }
}/*# sourceMappingURL=aufbau.css.map */