@charset "UTF-8";
/* jost-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: "Jost";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/jost-v18-latin-100.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-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: "Jost";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/jost-v18-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-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: "Jost";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/jost-v18-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-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: "Jost";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/jost-v18-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-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: "Jost";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/jost-v18-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-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: "Jost";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/jost-v18-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-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: "Jost";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/jost-v18-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-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: "Jost";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/jost-v18-latin-800.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: var(--base-font-size);
  min-height: 100vh;
}

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

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

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

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

p {
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
  color: var(--rost);
}

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

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

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

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

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

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

.hamburger-icon {
  top: 0.75em;
}

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

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

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

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

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

@media only screen and (max-width: 962px) {
  #hamburger {
    transform: scale(1);
  }
}
#header {
  padding: 0 0;
  z-index: 71;
  background-color: rgb(255, 255, 255);
  position: fixed;
  width: 100vw;
  border-top: 3px solid #000;
  border-bottom: 3px solid var(--black-header);
}
#header > .inside {
  padding-top: 50px;
  padding-bottom: 80px;
  transition: all 0.3s ease-in-out;
}
#header.resized-header > .inside {
  padding-top: 20px;
  padding-bottom: 20px;
}
#header h3 {
  font-family: "Red Rose";
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold3);
}
#header h3 a {
  color: var(--gold3);
  text-decoration: none;
}
#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: flex;
  justify-content: space-around;
  z-index: 100;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
#header #menu-head .inside #top-left,
#header #menu-head .inside #top-center,
#header #menu-head .inside #top-right {
  flex: 0 0 20%;
}
#header #menu-head .inside #top-center {
  flex: 0 0 20%;
}
#header #menu-head .inside #top-left {
  grid-column: 1/2;
  text-align: center;
}
#header #menu-head .inside #top-left a {
  text-align: center;
}
#header #menu-head .inside #top-left img {
  margin: 0 auto;
}
#header #menu-head .inside #top-center {
  grid-column: 2/3;
}
#header #menu-head .inside #top-center h3 {
  text-align: center !important;
  font-family: "Poppins";
}
#header #menu-head .inside #top-right {
  grid-column: 3/4;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0rem;
}
#header #top-logo img {
  max-width: 200px;
  width: 100%;
}
#header #twenty-for-seven {
  font-size: 1.5rem;
  cursor: pointer;
}
#header #headerImage {
  display: grid;
  position: relative;
}
#header #headerImage #logo {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
  transform: translateX(-50%);
  cursor: pointer;
}
#header #headerImage #logo img {
  max-width: 200px;
  width: 100%;
}
#header h3.phone {
  cursor: pointer;
  display: flex;
}

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

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

@media only screen and (max-width: 600px) {
  #header .inside #menu-head #top-left {
    flex: 0 0 10%;
  }
  #header .inside #menu-head #top-center {
    flex: 0 0 70%;
    text-align: center;
  }
  #header .inside #menu-head #top-center img {
    margin: 0 auto;
  }
  #header .inside #menu-head #top-right {
    flex: 0 0 10%;
    align-items: start;
  }
  #header-image .content-image, #header-image .content-player,
  .header-image .content-image,
  .header-image .content-player {
    height: auto;
    overflow-y: visible;
  }
}
@media only screen and (max-width: 581px) {
  #header #top-center h3.phone {
    font-size: 1.1rem !important;
  }
}
@media only screen and (max-width: 530px) {
  #header #menu-head #top-left {
    flex: 60%;
  }
  #header #menu-head #top-center {
    flex: 30% !important;
  }
  #header #menu-head #top-center .phone {
    font-size: 1rem;
    transform-origin: center;
  }
  #header #menu-head #top-center .phone:before {
    content: "";
    background-image: url(../icons/phone.png);
    background-size: 100% 100%;
    padding-right: 0.6rem;
    display: inline-block;
    /*size of your image*/
    height: 15px;
    width: 10px;
  }
}
@media only screen and (max-width: 400px) {
  #header #twenty-for-seven {
    font-size: 1.2rem;
  }
  #header #menu-head {
    --padding-inline: 1.5rem;
  }
}
#footer {
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  padding-top: 10rem;
}
#footer #footer-inline {
  display: grid;
  grid-template-columns: 30% 30% 10% 1fr;
  gap: 0 2rem;
  justify-items: start;
  align-items: start;
  padding-top: 0;
  align-items: start;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
#footer #footer-inline p {
  padding: 0;
  margin: 0;
}
#footer #footer-inline .first {
  grid-column: 1/2;
  align-self: center;
}
#footer #footer-inline .first img {
  max-height: 90px;
}
#footer #footer-inline .second {
  grid-column: 2/4;
}
#footer #footer-inline .second p {
  font-size: 1.25rem;
  line-height: 1.6rem;
  padding: 0;
  margin: 0;
  font-weight: 300;
}
#footer #footer-inline .third {
  grid-column: 4/5;
  justify-self: end;
  align-self: start;
}
#footer #footer-inline .third p {
  font-size: 1.25rem;
  line-height: 1.8rem;
  padding: 0;
  margin: 0;
  font-weight: 300;
}
#footer #footer-inline .third p a {
  padding: 0;
  margin: 0;
  text-decoration: none;
  line-height: 1.5rem;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 300;
}
#footer #gh-text {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  opacity: 0;
  background: #dfdfdf;
  padding: 2rem;
  border-radius: var(--border-radius-1);
  transition: all 0.3s ease-in-out;
}
#footer #closeGH {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 300;
}

body.showGH footer #gh-text {
  display: block !important;
  opacity: 1 !important;
}

@media only screen and (max-width: 935px) {
  #footer #footer-inline {
    grid-template-columns: 1fr 1fr 1fr;
  }
  #footer #footer-inline .first {
    grid-column: 1/2;
  }
  #footer #footer-inline .second {
    grid-column: 2/3;
  }
  #footer #footer-inline .third {
    grid-column: 3/4;
  }
}
@media only screen and (max-width: 660px) {
  #footer #footer-inline {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-template-rows: 1fr 1fr;
  }
  #footer #footer-inline .first {
    grid-column: 1/2;
    align-self: center;
  }
  #footer #footer-inline .second {
    grid-column: 2/3;
  }
  #footer #footer-inline .third {
    grid-column: 1/3;
    grid-row: 2/3;
    width: 100%;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #ccc;
    padding-top: 2rem;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 430px) {
  #footer .inside {
    --padding-inline: 1rem !important;
  }
  #footer #footer-inline {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr 1fr 1fr;
    justify-items: center;
    gap: 0.5rem;
  }
  #footer #footer-inline .first {
    grid-column: 1/2;
    align-self: center;
    grid-row: 1/2;
  }
  #footer #footer-inline .second {
    grid-column: 1/2;
    grid-row: 2/3;
    text-align: center;
  }
  #footer #footer-inline .third {
    grid-column: 1/3;
    grid-row: 3/4;
    width: 100%;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #ccc;
    padding-top: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
}
/* Basis Styling */
.hamburger-icon-container {
  height: 1.7em;
  width: 1.7em;
  position: relative;
  cursor: pointer;
  border-radius: 3px;
}
.hamburger-icon-container.white .hamburger-icon,
.hamburger-icon-container.white .hamburger-icon:before,
.hamburger-icon-container.white .hamburger-icon:after {
  background: #fff !important;
}

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

.hamburger-icon {
  top: 0.75em;
}

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

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

.hamburger-icon:after {
  top: 0.55em;
} 
:root {
  --navwidth: 398px;
  --active: #fff;
}

#left {
  width: 40vw;
  position: fixed;
  top: 250px;
  right: 0;
  left: auto;
  overflow: hidden;
  background: rgba(var(--gruen-1-rgb), 0.95);
  z-index: 20000;
  margin-left: 0;
  transform-origin: center top;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  border-radius: 20px 0 0 20px;
  z-index: -1;
}
#left #navigation #navHolder {
  padding: 2rem;
}
#left #navigation #navHolder .row {
  width: 100%;
}
#left #navigation #navHolder .row .level_1 {
  list-style: none;
}
#left #navigation #navHolder .row .level_1 li {
  position: relative;
  z-index: 1;
  z-index: 20;
}
#left #navigation #navHolder .row .level_1 li a,
#left #navigation #navHolder .row .level_1 li strong {
  color: var(--schwarz);
  font-size: 1.25rem;
  font-weight: 300;
  padding: 1rem 0.5rem;
  display: block;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  display: flex;
}
#left #navigation #navHolder .row .level_1 li a span,
#left #navigation #navHolder .row .level_1 li strong span {
  text-transform: none;
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
}
#left #navigation #navHolder .row .level_1 li a.active,
#left #navigation #navHolder .row .level_1 li strong.active {
  color: var(--active);
}
#left #navigation #navHolder .row .level_1 li a:hover,
#left #navigation #navHolder .row .level_1 li strong:hover {
  color: #707070 !important;
}
#left #navigation #navHolder .row .level_1 li strong {
  color: #C6C6C6 !important;
  cursor: pointer;
}
#left #navigation #navHolder .row .level_1 li strong.active, #left #navigation #navHolder .row .level_1 li strong.trail {
  color: #707070 !important;
}
#left #navigation #navHolder .row .level_1 li .level_2 {
  list-style: none !important;
  z-index: 1000;
}
#left #navigation #navHolder .row .level_1 li .level_2 li {
  list-style: none !important;
}
#left #navigation #navHolder .row .level_1 li .level_2 a,
#left #navigation #navHolder .row .level_1 li .level_2 strong {
  color: #C6C6C6;
  font-size: 1.25rem;
  font-weight: 300;
  padding: 0;
  line-height: 2rem;
  font-family: "Poppins";
  text-transform: none;
}
#left #navigation #navHolder .row .level_1 li .level_2 a:hover,
#left #navigation #navHolder .row .level_1 li .level_2 strong:hover {
  color: #fff !important;
}
#left #navigation #navHolder .row .level_1 li .level_2 strong {
  color: #fff !important;
  font-weight: 400;
}
#left #navigation #navHolder .row .level_1 li.active > .level_2,
#left #navigation #navHolder .row .level_1 li strong + .level_2 {
  max-height: 500px;
}
#left #navigation #navHolder .row .level_1 li:hover {
  z-index: 2000000;
}
#left #navigation #navHolder .row .level_1 li strong.trail.hide + .level_2 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(50px);
}
#left #navigation #navHolder .row.first {
  text-align: right;
  position: relative;
  grid-row: 1/2;
  display: none;
}
#left #navigation #navHolder .row.first #btn_close {
  position: absolute;
  top: 1rem;
  right: 10%;
  cursor: pointer;
}
#left #navigation #navHolder .row.second {
  grid-row: 2/3;
  position: relative;
}
#left #navigation #navHolder::after {
  display: none;
}
#left strong.kontakthead, #left a.kontakthead {
  display: none !important;
}

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

.hamburger-active #left {
  opacity: 1;
  z-index: 1000;
}

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

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

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

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

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

#kontakt fieldset {
  border: 0;
}

#kontakt .explanation,
#kontakt label {
  color: var(--blau);
  font-weight: 500;
}

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

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

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

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

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

@media only screen and (max-width: 550px) {
  #kontakt .formbody .flexform {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.anfrage-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  margin: 0 auto;
  background-color: var(--gruen-2);
  border-radius: var(--border-radius-1);
  margin-bottom: 5rem;
  overflow: visible;
  width: 90%;
}
.anfrage-form .widget {
  padding-right: 30%;
}
.anfrage-form .line {
  padding-right: 30%;
}
.anfrage-form .line > .widget {
  padding-right: 0;
}
.anfrage-form .widget-submit {
  padding-right: 0;
  text-align: right;
}
.anfrage-form .widget-submit button {
  display: table;
  margin-left: auto;
  margin-right: 0;
  transform: none;
}
.anfrage-form input, .anfrage-form textarea, .anfrage-form select {
  width: 100%;
  padding: 1rem;
  font-size: 1.5rem;
  border-radius: var(--border-radius-1);
  border: 0px solid #000;
  margin-bottom: 1rem;
}
.anfrage-form input::-moz-placeholder, .anfrage-form textarea::-moz-placeholder, .anfrage-form select::-moz-placeholder {
  font-size: 1.5rem;
  color: #3b3b3b;
}
.anfrage-form input::placeholder, .anfrage-form input option, .anfrage-form textarea::placeholder, .anfrage-form textarea option, .anfrage-form select::placeholder, .anfrage-form select option {
  font-size: 1.5rem;
  color: #3b3b3b;
}
.anfrage-form label {
  display: none;
  font-size: 1.5rem;
}
.anfrage-form .line {
  display: flex;
}
.anfrage-form .line div:nth-of-type(1) {
  flex: 0 0 30%;
  padding-right: 1rem;
}
.anfrage-form .line div:nth-of-type(2) {
  flex: 0 0 70%;
  padding-left: 1rem;
}
.anfrage-form #ctrl_94 legend, .anfrage-form #ctrl_103 legend {
  display: none;
}
.anfrage-form #ctrl_94 span #opt_94_0, .anfrage-form #ctrl_94 span #opt_103_0, .anfrage-form #ctrl_103 span #opt_94_0, .anfrage-form #ctrl_103 span #opt_103_0 {
  max-width: 20px;
  padding-right: 2rem;
  flex: 0 0 10%;
}
.anfrage-form #ctrl_94 span #lbl_103_0, .anfrage-form #ctrl_103 span #lbl_103_0 {
  flex: 0 0 90%;
}
.anfrage-form #ctrl_103 > span {
  display: flex;
  gap: 1rem;
}
.anfrage-form #ctrl_103 > span input {
  width: auto;
}
.anfrage-form #lbl_94_0, .anfrage-form #lbl_103_0 {
  display: block;
  margin-bottom: 1rem;
}
.anfrage-form #ctrl_94, .anfrage-form #ctrl_103 {
  border: 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1.7rem top 50%;
  background-size: 0.95rem auto;
  background-color: #e1e1e1;
}
select option.disabled {
  font-weight: bold;
}


:root {
  --top: -280px;
  --bottom: -280px;
  --right: -580px;
  --left: -580px;
  --bottom-r: 10%;
  --top-r: -10%;
  --bottom-text: -380px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root {
  --padding-inline: 3rem;
  --max-width-text: 700px;
  --max-width-full: 1680px;
  --max-width-bg: 1200px;
  --max-width-main: 1568px;
  --scale: 1.05;
  --gruen-1: #d5fb00;
  --gruen-1-rgb: 213, 251, 0;
  --gruen-2: #39ff13;
  --orange: #ff6e00;
  --hellblau: #33e4ff;
  --pink: #ff13f7;
  --grau: #707070;
  --grau-rgb: 112, 112, 112;
  --black: #000;
  --black-hover: #313131;
  --black-header: #000;
  --height-header: 296px;
  --letterspacing-150: 0.3rem;
  --border-radius-0: 5px;
  --border-radius-1: 20px;
  --border-radius-2: 50px;
  --base-font-size: 16px;
}

body {
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
html {
  font-size: var(--base-font-size);
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  color: var(--schwarz);
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
  font-family: "Jost";
}

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

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

.overlay {
  overflow: visible;
}

.bg-grau {
  background: rgba(var(--grau-rgb), 0.1);
  border-radius: 30px;
  padding: 5.25rem;
}
.bg-grau p {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 300;
}
.bg-grau h3 {
  margin-top: 5rem;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 2.25rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: var(--letterspacing-150);
}
.bg-grau h3 + p {
  margin-top: 0;
  padding-top: 0;
}

a {
  text-decoration: none;
  color: #333;
}
a:hover {
  text-decoration: underline;
}

body.pg-impressum h3,
body.pg-impressum h4 {
  margin-top: 5rem;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 2.25rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: var(--letterspacing-150);
}
body.pg-impressum h3 + p,
body.pg-impressum h4 + p {
  margin-top: 0;
  padding-top: 0;
}
body.pg-impressum li {
  font-size: 2rem;
}
body.pg-impressum h4 {
  font-size: 2rem;
  font-weight: 600;
}

.txt-gesperrt-150 {
  letter-spacing: var(--letterspacing-150);
  padding: 6rem 0 10rem 0;
}
.txt-gesperrt-150 h2 {
  font-weight: 600;
  font-size: 2.25rem;
}

.preis {
  background-color: var(--gruen-2);
  color: var(--black);
  padding: 2rem 8rem;
  border-radius: 20px;
  display: table;
  position: relative;
  margin-right: -5.2rem;
  margin-left: auto;
  font-weight: 600 !important;
  font-size: 2.875rem !important;
}

button.anfrage, button.download, button.absenden {
  background-color: var(--black);
  color: var(--gruen-2);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  font-size: 2.25rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: -3.8rem;
  display: block;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-right: auto;
  letter-spacing: var(--letterspacing-150);
  cursor: pointer;
}
button.anfrage:hover, button.download:hover, button.absenden:hover {
  background-color: var(--black-hover);
}
button.download {
  background-color: var(--black);
  color: #fff;
}
button.absenden {
  background-color: var(--black);
  color: #fff;
  padding-left: 9rem;
  padding-right: 9rem;
  position: relative;
  bottom: -5rem;
  right: -8%;
}

.align-right {
  text-align: right;
}
.align-right p {
  text-align: right;
}
.align-right button {
  margin-left: auto;
  margin-right: 0;
  display: table;
}
.align-right button.download {
  transform: none;
}

button.try50 {
  transform: translateY(50%) !important;
}

.text-p p {
  font-size: 2rem;
  line-height: normal;
}

.video-right video {
  max-width: 50vw;
  border-radius: var(--border-radius-2) 0 0 var(--border-radius-2);
  margin-right: 0;
  margin-left: auto;
}

.video-center img {
  margin: 0 auto;
}

.spruch h2 {
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 8rem;
  padding-bottom: 0;
  letter-spacing: var(--letterspacing-150);
}
.spruch h2 em {
  font-style: normal;
  font-weight: 300;
}

.pg-start footer {
  display: none;
}

.top-teaser-btn {
  display: grid;
  grid-template-columns: 40% 1fr 40%;
  transform: translateY(-50%);
  z-index: 70;
  position: relative;
  align-items: center;
}
.top-teaser-btn .marker {
  grid-column: 2/3;
  background: #000;
  border-radius: 38px;
  border: 2px solid var(--gruen-2);
  padding: 1.2rem;
  aspect-ratio: 1/1;
  max-width: 250px;
  aspect-ratio: 1/1;
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  justify-self: center;
}
.top-teaser-btn .marker h2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  font-size: 1.875rem;
  letter-spacing: 0.2rem;
  margin: -1.5rem 0 1.5rem 0;
}
.top-teaser-btn .marker p {
  line-height: 1.5rem;
}
.top-teaser-btn .marker p,
.top-teaser-btn .marker h3 {
  color: var(--gruen-2);
  font-size: 1.375rem;
  text-align: center;
  margin: 0;
}
.top-teaser-btn .marker h3 {
  font-size: 2rem;
}
.top-teaser-btn .item:nth-of-type(2) {
  justify-self: center;
}
.top-teaser-btn .preis {
  grid-column: 3/4;
  padding: 1rem 10rem;
}

.top-teaser-txt {
  display: grid;
  grid-column: 1/2;
  grid-row: 1/2;
  grid-template-columns: 1fr;
  z-index: 70;
  position: relative;
  align-self: end;
}
.top-teaser-txt h2 {
  grid-column: 1/2;
  font-size: 2.25rem;
  font-weight: 300;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: var(--letterspacing-150);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

body.pg-trauerfall .top-teaser-txt {
  align-self: center;
}
body.pg-trauerfall .top-teaser-txt h2 {
  margin-top: 0rem;
  color: var(--black);
}

body.pg-ueber-uns .top-teaser-txt h2 {
  color: var(--black);
}

#h-trauerfall {
  text-shadow: #bed5e1 0px 0px 15px;
}

p.text-m {
  font-size: 1.5rem;
  padding: 0rem 2rem 1rem 2rem;
}

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

.slider-content .slideH {
  color: #000;
  font-size: 2.25rem;
  font-weight: 300;
  padding-right: 5rem;
  background-color: var(--gruen-1);
  padding: 1.2rem 5rem 1.2rem 2rem;
  border-radius: var(--border-radius-2);
  position: relative;
  cursor: pointer;
}
.slider-content .slideH:after {
  content: url(../hg/poly-down.png);
  display: table;
  height: 2px;
  position: absolute;
  right: 2.5rem;
  top: 0;
  left: auto;
  margin-top: 1rem;
  transition: all 0.5s ease;
}
.slider-content .slideH.active:after {
  transform: rotate(180deg);
}
.slider-content .slideB {
  color: #000;
  font-size: 2.25rem;
  font-weight: 300;
  padding: 2rem 2rem;
}
.slider-content .slideB p {
  font-size: 1.875rem;
  line-height: 2.5rem;
}

.slideH + .slideB {
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease;
}

.slideH.active + .slideB {
  display: block;
  max-height: 500px;
  opacity: 1;
}

body.e-leise {
  --gruen-1: var(--hellblau);
  --gruen-2: var(--hellblau);
}

body.e-weg {
  --gruen-1: var(--orange);
  --gruen-2: var(--orange);
}

body.ae-gruen {
  --black-header: var(--gruen-2);
}

body.ae-leise {
  --gruen-2: var(--hellblau);
  --black-header: var(--hellblau);
}

body.ae-weg {
  --gruen-2: var(--orange);
  --black-header: var(--orange);
}

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

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

#main .inside,
#main .content-center-overlay,
#main .grid12.full-width,
#footer .inside,
#footer .content-center-overlay,
#footer .grid12.full-width,
#menu-head .inside,
#menu-head .content-center-overlay,
#menu-head .grid12.full-width {
  --content-maxwidth: var(--max-width-main);
  --padding-inline: 3rem;
  --breakout-maxwidth: 100rem;
  display: grid;
  grid-template-columns: [full-width-start] var(--padding-inline) [breakout-start] 1fr [content-start] minmax(300px, var(--content-maxwidth)) [content-end] 1fr [breakout-end] var(--padding-inline) [full-width-end];
}
#main .inside > *, #main .inside > .content,
#main .content-center-overlay > *,
#main .content-center-overlay > .content,
#main .grid12.full-width > *,
#main .grid12.full-width > .content,
#footer .inside > *,
#footer .inside > .content,
#footer .content-center-overlay > *,
#footer .content-center-overlay > .content,
#footer .grid12.full-width > *,
#footer .grid12.full-width > .content,
#menu-head .inside > *,
#menu-head .inside > .content,
#menu-head .content-center-overlay > *,
#menu-head .content-center-overlay > .content,
#menu-head .grid12.full-width > *,
#menu-head .grid12.full-width > .content {
  grid-column: content;
}
#main .inside > #header-image, #main .inside > .header-image,
#main .content-center-overlay > #header-image,
#main .content-center-overlay > .header-image,
#main .grid12.full-width > #header-image,
#main .grid12.full-width > .header-image,
#footer .inside > #header-image,
#footer .inside > .header-image,
#footer .content-center-overlay > #header-image,
#footer .content-center-overlay > .header-image,
#footer .grid12.full-width > #header-image,
#footer .grid12.full-width > .header-image,
#menu-head .inside > #header-image,
#menu-head .inside > .header-image,
#menu-head .content-center-overlay > #header-image,
#menu-head .content-center-overlay > .header-image,
#menu-head .grid12.full-width > #header-image,
#menu-head .grid12.full-width > .header-image {
  grid-column: full-width;
}
#main .inside > .content-wide,
#main .content-center-overlay > .content-wide,
#main .grid12.full-width > .content-wide,
#footer .inside > .content-wide,
#footer .content-center-overlay > .content-wide,
#footer .grid12.full-width > .content-wide,
#menu-head .inside > .content-wide,
#menu-head .content-center-overlay > .content-wide,
#menu-head .grid12.full-width > .content-wide {
  grid-column: full-width;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
#main .inside > .content-wide .teaser,
#main .content-center-overlay > .content-wide .teaser,
#main .grid12.full-width > .content-wide .teaser,
#footer .inside > .content-wide .teaser,
#footer .content-center-overlay > .content-wide .teaser,
#footer .grid12.full-width > .content-wide .teaser,
#menu-head .inside > .content-wide .teaser,
#menu-head .content-center-overlay > .content-wide .teaser,
#menu-head .grid12.full-width > .content-wide .teaser {
  grid-column: 2/12;
  padding: 0 2.5rem;
}
#main .inside > .inner-grid, #main .inside > .full-width,
#main .content-center-overlay > .inner-grid,
#main .content-center-overlay > .full-width,
#main .grid12.full-width > .inner-grid,
#main .grid12.full-width > .full-width,
#footer .inside > .inner-grid,
#footer .inside > .full-width,
#footer .content-center-overlay > .inner-grid,
#footer .content-center-overlay > .full-width,
#footer .grid12.full-width > .inner-grid,
#footer .grid12.full-width > .full-width,
#menu-head .inside > .inner-grid,
#menu-head .inside > .full-width,
#menu-head .content-center-overlay > .inner-grid,
#menu-head .content-center-overlay > .full-width,
#menu-head .grid12.full-width > .inner-grid,
#menu-head .grid12.full-width > .full-width {
  grid-column: full-width;
}
#main .inside > .breakout,
#main .content-center-overlay > .breakout,
#main .grid12.full-width > .breakout,
#footer .inside > .breakout,
#footer .content-center-overlay > .breakout,
#footer .grid12.full-width > .breakout,
#menu-head .inside > .breakout,
#menu-head .content-center-overlay > .breakout,
#menu-head .grid12.full-width > .breakout {
  grid-column: breakout;
}
#main .inside > .overlay-hg,
#main .content-center-overlay > .overlay-hg,
#main .grid12.full-width > .overlay-hg,
#footer .inside > .overlay-hg,
#footer .content-center-overlay > .overlay-hg,
#footer .grid12.full-width > .overlay-hg,
#menu-head .inside > .overlay-hg,
#menu-head .content-center-overlay > .overlay-hg,
#menu-head .grid12.full-width > .overlay-hg {
  grid-column: full-width;
}

body.pg-trauerfall,
body.pg-bestattungsvorsorge {
  background-color: #e1e1e1;
}
body.pg-trauerfall footer,
body.pg-bestattungsvorsorge footer {
  background-color: #fff;
}

.bg-white {
  background-color: #fff;
}

body.pg-start #header-image .content-image,
body.pg-start #header-image .content-player,
body.pg-start .header-image .content-image,
body.pg-start .header-image .content-player {
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: 5;
  height: auto;
  overflow-y: scroll;
}
body.pg-start #header-image {
  margin-top: var(--height-header);
}
body.pg-start #teaser-holder .item a {
  text-decoration: none;
}
body.pg-start #teaser-holder .item:nth-of-type(1) {
  cursor: pointer;
}
body.pg-start #teaser-holder .item:nth-of-type(1):hover {
  border-color: var(--gruen-2) !important;
}
body.pg-start #teaser-holder .item:nth-of-type(1):hover p,
body.pg-start #teaser-holder .item:nth-of-type(1):hover h3 {
  color: var(--gruen-2) !important;
}
body.pg-start #teaser-holder .item:nth-of-type(2) {
  cursor: pointer;
}
body.pg-start #teaser-holder .item:nth-of-type(2):hover {
  border-color: var(--hellblau) !important;
}
body.pg-start #teaser-holder .item:nth-of-type(2):hover p,
body.pg-start #teaser-holder .item:nth-of-type(2):hover h3 {
  color: var(--hellblau) !important;
}
body.pg-start #teaser-holder .item:nth-of-type(3) {
  cursor: pointer;
}
body.pg-start #teaser-holder .item:nth-of-type(3):hover {
  border-color: var(--orange) !important;
}
body.pg-start #teaser-holder .item:nth-of-type(3):hover p,
body.pg-start #teaser-holder .item:nth-of-type(3):hover h3 {
  color: var(--orange) !important;
}

#header-image {
  margin-top: var(--height-header);
}

#header-image,
.header-image {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  position: relative;
}
#header-image .content-image,
#header-image .content-player,
.header-image .content-image,
.header-image .content-player {
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: 5;
}
#header-image figure img,
.header-image figure img {
  width: 100%;
}
#header-image #toTop,
.header-image #toTop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  cursor: pointer;
  transform: scale(0);
  transition: all 0.3s;
}
#header-image #toTop.show,
.header-image #toTop.show {
  transform: scale(1);
}
#header-image .header-image.in-view .teaserT .rightT,
#header-image .header-image.in-view .teaserT .leftT,
.header-image .header-image.in-view .teaserT .rightT,
.header-image .header-image.in-view .teaserT .leftT {
  transform: translateX(0);
}
#header-image .teaserT,
.header-image .teaserT {
  position: fixed;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  max-width: 70vw;
  width: 100%;
  bottom: 1rem;
}
#header-image .teaserT h1,
.header-image .teaserT h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 2.25rem;
  font-weight: 300;
  text-align: center;
  line-height: normal;
}
#header-image .teaserT .claim-under,
.header-image .teaserT .claim-under {
  color: var(--gruen-1);
  text-align: center;
  font-size: 1.625rem;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 3rem;
}
#header-image .teaserT #teaser-holder,
.header-image .teaserT #teaser-holder {
  display: flex;
  justify-content: space-evenly;
}
#header-image .teaserT #teaser-holder .item,
.header-image .teaserT #teaser-holder .item {
  background: #000;
  border-radius: 20px;
  border: 2px solid var(--gruen-1);
  padding: 1rem;
  aspect-ratio: 1/1;
  max-width: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
#header-image .teaserT #teaser-holder .item h2,
.header-image .teaserT #teaser-holder .item h2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  font-size: 1.875rem;
  letter-spacing: 0.2rem;
  margin: 0;
}
#header-image .teaserT #teaser-holder .item p,
.header-image .teaserT #teaser-holder .item p {
  line-height: 1.5rem;
}
#header-image .teaserT #teaser-holder .item p,
#header-image .teaserT #teaser-holder .item h3,
.header-image .teaserT #teaser-holder .item p,
.header-image .teaserT #teaser-holder .item h3 {
  color: var(--gruen-1);
  font-size: 1.375rem;
  text-align: center;
  margin: 0;
}
#header-image .teaserT #teaser-holder .item h3,
.header-image .teaserT #teaser-holder .item h3 {
  font-size: 2rem;
}
#header-image .v-center,
.header-image .v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#header-image .v-center.h-left,
.header-image .v-center.h-left {
  align-items: flex-start;
}
#header-image h1,
.header-image h1 {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Jost";
}
#header-image p,
.header-image p {
  font-family: "Jost";
  font-size: 1.375rem;
  line-height: 2.5rem;
}
#header-image #hamburger,
.header-image #hamburger {
  display: none;
}
#header-image #nav-horizontal,
.header-image #nav-horizontal {
  max-width: var(--max-width-main);
  margin: 0 auto;
}
#header-image #main p,
#header-image #main li,
#header-image #main a,
.header-image #main p,
.header-image #main li,
.header-image #main a {
  font-size: 1.875rem;
  line-height: normal;
}
#header-image #main ul,
.header-image #main ul {
  list-style: none;
}
#header-image #main .rte ul,
.header-image #main .rte ul {
  padding-left: 0;
  margin-left: 0;
}
#header-image #main .rte ul li,
.header-image #main .rte ul li {
  display: flex;
}
#header-image #main .rte ul li::before,
.header-image #main .rte ul li::before {
  content: "■";
  color: var(--gold2);
  margin-right: 1rem;
}
#header-image #main .grid5050,
.header-image #main .grid5050 {
  --gap: 5rem;
  display: grid;
  grid-template-columns: calc(50% - var(--gap)) calc(50% - var(--gap));
  grid-gap: 5px var(--gap);
  margin: 5rem 0;
}
#header-image #main .grid5050 img,
.header-image #main .grid5050 img {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#header-image #main .grid5050.full-width .inside,
.header-image #main .grid5050.full-width .inside {
  max-width: var(--max-width-main);
  --gap: 5rem;
  display: grid;
  grid-template-columns: calc(50% - var(--gap)) calc(50% - var(--gap));
  grid-gap: var(--gap);
  margin: 5rem 0;
}
#header-image #main .grid5050 .row,
.header-image #main .grid5050 .row {
  --gap: 5rem;
  grid-column: 1/3;
  display: grid;
  grid-template-columns: calc(50% - var(--gap) / 2) var(--gap) calc(50% - var(--gap) / 2);
}
#header-image #main .grid5050 .row div:nth-of-type(1),
.header-image #main .grid5050 .row div:nth-of-type(1) {
  grid-column: 1/2;
}
#header-image #main .grid5050 .row div:nth-of-type(2),
.header-image #main .grid5050 .row div:nth-of-type(2) {
  grid-column: 3/4;
}
#header-image #main .rowF,
.header-image #main .rowF {
  --gap: 5rem;
  grid-column: 1/3;
  display: grid;
  grid-template-columns: calc(50% - var(--gap) / 2) var(--gap) calc(50% - var(--gap) / 2);
}
#header-image #main .rowF div:nth-of-type(1),
.header-image #main .rowF div:nth-of-type(1) {
  grid-column: 1/2;
}
#header-image #main .rowF div:nth-of-type(2),
.header-image #main .rowF div:nth-of-type(2) {
  grid-column: 3/4;
}
#header-image #main .grid6040,
.header-image #main .grid6040 {
  --gap: 5rem;
  display: grid;
  grid-template-columns: calc(60% - var(--gap)) calc(40% - var(--gap));
  grid-gap: 5px var(--gap);
  margin: 5rem 0;
}

@media only screen and (max-width: 1720px) {
  #left {
    width: 50vw;
  }
}
@media only screen and (max-width: 1200px) {
  #header .inside {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  #header .inside #menu-head #top-left {
    flex: 0 0 20%;
  }
  #header .inside #menu-head #top-center {
    flex: 0 0 50%;
    text-align: center;
  }
  #header .inside #menu-head #top-center img {
    margin: 0 auto;
  }
  #header .inside #menu-head #top-right {
    flex: 0 0 20%;
    align-items: start;
  }
  #header-image .content-image,
  #header-image .content-player,
  .header-image .content-image,
  .header-image .content-player {
    height: auto;
    overflow-y: visible;
  }
  .top-teaser-btn {
    display: grid;
    grid-template-columns: 30% 1fr 30%;
    transform: translateY(-50%);
    z-index: 70;
    position: relative;
    align-items: center;
  }
  .top-teaser-btn .preis {
    padding: 1rem 5rem 1rem 3rem;
    font-size: 1.875rem !important;
    margin-right: -3rem;
  }
}
@media (max-width: 1100px) {
  button.anfrage {
    line-height: normal;
  }
  #teaser-holder {
    gap: 1rem;
  }
}
@media (max-width: 920px) {
  :root {
    --base-font-size: 14px; /* Slightly smaller for smaller screens */
  }
  #main #article-1570 .after-bg-red-right.content-gallery:after {
    width: 100vw;
    left: 0;
  }
  #left {
    width: 85vw;
  }
  .slider-content .slideH {
    border-radius: var(--border-radius-1);
  }
  .anfrage-form .widget-submit {
    padding-right: 0;
    text-align: right;
  }
  .anfrage-form input,
  .anfrage-form textarea,
  .anfrage-form select {
    border-radius: var(--border-radius-0);
  }
  #header-image .teaserT,
  .header-image .teaserT {
    max-width: 85vw;
  }
}
@media (max-width: 680px) {
  :root {
    --base-font-size: 10px; /* Slightly smaller for smaller screens */
    --height-header: 250px;
  }
  #header {
    position: static;
  }
  #header-image {
    margin-top: 0;
    position: static !important;
  }
  #header-image .content-image,
  #header-image .content-player,
  .header-image .content-image,
  .header-image .content-player {
    margin-top: 0;
  }
  body.pg-trauerfall .top-teaser-txt {
    align-self: start;
    padding-top: 2rem;
  }
  .top-teaser-btn {
    display: grid;
    grid-template-columns: 30% 1fr 30%;
    grid-template-rows: auto auto;
    transform: translateY(-30%);
  }
  .top-teaser-btn .item:nth-of-type(1) {
    display: none;
  }
  .top-teaser-btn .item:nth-of-type(2) {
    grid-column: 1/4;
    grid-row: 1/2;
    justify-self: center;
  }
  .top-teaser-btn .item:nth-of-type(3) {
    grid-column: 1/4;
    grid-row: 2/3;
  }
  button.anfrage,
  button.download,
  button.absenden {
    line-height: normal;
    margin: 0 auto !important;
    transform: none;
    transform: translateY(-50%);
  }
  .txt-gesperrt-150 {
    letter-spacing: var(--letterspacing-150);
    padding: 1rem 0 3rem 0;
  }
  #left {
    width: 95vw;
  }
  .top-teaser-btn .marker {
    max-width: 250px;
    width: 180px;
  }
  .top-teaser-btn .marker h2 {
    font-size: 2rem;
  }
  .top-teaser-btn .marker p {
    font-size: 1.7rem;
    line-height: 1.9rem;
  }
  body.pg-start #header-image .content-image,
  body.pg-start #header-image .content-player,
  body.pg-start .header-image .content-image,
  body.pg-start .header-image .content-player {
    margin-top: 0;
  }
  body.pg-start #header-image .teaserT,
  body.pg-start .header-image .teaserT {
    grid-column: 1/2;
    grid-row: 1/2;
    position: fixed;
    padding-top: 0;
    height: auto;
    flex-direction: column;
    justify-content: space-around;
    max-width: 98vw;
    width: 100%;
    align-self: center;
  }
  .anfrage-form .widget,
  .anfrage-form .line {
    padding-right: 0;
  }
  .top-teaser-btn .marker h2 {
    margin: 0.5rem 0 0.5rem 0;
  }
  #header-image {
    margin-top: 0 !important;
  }
  .slider-content .slideH:after {
    transform: scale(0.5);
  }
  .slider-content .slideH.active:after {
    transform: rotate(180deg) scale(0.5);
  }
  .txt-gesperrt-150 h2 {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
  #left #navigation #navHolder .row .level_1 li a,
  #left #navigation #navHolder .row .level_1 li strong {
    font-size: 1.5rem !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 580px) {
  :root {
    --base-font-size: 8px; /* Slightly smaller for smaller screens */
    --height-header: 250px;
  }
  .bg-grau {
    background: rgba(var(--grau-rgb), 0.1);
    border-radius: 30px;
    padding: 3.25rem;
    grid-column: full-width !important;
  }
  .video-right video {
    max-width: 100%;
    border-radius: 0;
    margin-right: 0;
    margin-left: 0;
  }
  #left #navigation #navHolder .row .level_1 li a,
  #left #navigation #navHolder .row .level_1 li strong {
    flex-wrap: wrap;
  }
  :root {
    --border-radius-1: var(--border-radius-0);
  }
  .slider-content {
    max-width: 90%;
  }
  #header > .inside {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  body.pg-start #header-image .teaserT,
  body.pg-start .header-image .teaserT {
    grid-column: 1/2;
    grid-row: 1/2;
    padding-top: 0;
    position: static;
    height: auto;
    flex-direction: column;
    justify-content: space-around;
    max-width: 98vw;
    width: 100%;
    align-self: end;
    transform: none;
    margin: 0 auto;
  }
  body.pg-start #footer {
    display: block;
  }
  .top-teaser-btn .marker {
    max-width: 250px;
    width: 150px;
    border-radius: 18px;
  }
  .top-teaser-btn .marker h2 {
    font-size: 2rem;
  }
  .top-teaser-btn .marker p {
    font-size: 1.7rem;
    line-height: 1.9rem;
  }
}
@media (max-width: 500px) {
  button.absenden {
    right: 0;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  button.anfrage {
    line-height: normal;
  }
  #footer #footer-inline .third {
    padding-bottom: 8rem;
  }
  .hamburger-active #left {
    z-index: 100000000000;
  }
}
@media (max-width: 400px) {
  .top-teaser-btn .preis {
    padding: 1rem 5rem 1rem 3rem;
    font-size: 1.875rem !important;
    margin-right: 0;
  }
  #main .inside {
    --padding-inline: 0 !important;
  }
}
@media (max-height: 825px) and (orientation: landscape) {
  #header > .inside {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  #header > .inside #menu-head > .inside {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
  #left {
    width: 71vw;
    top: 1rem;
  }
}
@media (max-height: 825px) and (min-width: 1201px) and (orientation: landscape) {
  #header > .inside {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  #header > .inside #menu-head > .inside {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-height: 750px) and (orientation: landscape) {
  #header {
    position: relative;
    z-index: 100;
  }
  #header > .inside {
    padding-top: 20px;
    padding-bottom: 38px;
  }
  #header-image {
    margin-top: 0px !important;
    z-index: 1;
    position: static;
  }
  .teaserT {
    transform: translateX(-50%) scale(0.7) !important;
  }
}
@media (max-height: 550px) and (orientation: landscape) {
  #header-image .teaserT,
  .header-image .teaserT {
    position: absolute;
  }
}/*# sourceMappingURL=aufbau.css.map */