@charset "UTF-8";
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost/Jost-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost/Jost-Italic-VariableFont_wght.woff2") format(woff2);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
textarea,
input {
  font-size: 100%;
  font-family: "Jost", sans-serif;
  scroll-padding-top: 7rem;
}
@media (min-width: 100em) {
  html,
  textarea,
  input {
    font-size: 133%;
  }
}
@media (min-width: 133em) {
  html,
  textarea,
  input {
    font-size: 166%;
  }
}
@media (min-width: 166em) {
  html,
  textarea,
  input {
    font-size: 200%;
  }
}
@media (max-width: 25em) {
  html,
  textarea,
  input {
    font-size: 75%;
  }
}

body {
  background-color: white;
}

.container {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 75rem;
  margin: 0px auto;
}
@media (max-width: 36em) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.page-navigation {
  background: linear-gradient(180deg, #e7c591, white 90%);
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: sticky;
  filter: grayscale(0.3);
  top: 0;
  z-index: 10000;
}

.page-navigation__logo {
  height: 6rem;
  width: 6rem;
  margin-top: -0.5rem;
}

.page-navigation__buttons-list {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 0px;
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.page-navigation__button {
  cursor: pointer;
  border: 1px solid #933193;
  border-radius: 9999px;
  padding: 0px;
  color: black;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  height: 2rem;
  margin-left: 0.5rem;
}

.page-navigation__button:hover {
  background-color: rgb(220, 220, 220);
}

.page-navigation__button--text {
  line-height: 1.9rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.page-navigation__button--icon {
  line-height: 1.9rem;
  width: 2rem;
}

.page-navigation__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page-navigation__menu-list {
  list-style-type: none;
  padding-left: 0px;
  padding-right: 5rem;
  margin-top: 1rem;
  margin-bottom: 0px;
  display: none;
}

.page-navigation__menu-item {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  text-transform: uppercase;
  color: black;
  font-size: 1.2rem;
  text-decoration: none;
  line-height: 1.9rem;
  border: 1px solid transparent;
  display: inline-block;
}

.page-navigation__menu-item:hover {
  border-bottom: 0.2rem solid #933193;
}

.page-navigation__menus-container {
  flex: 1 0 auto;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 1050px) {
  .page-navigation__menu-list {
    display: flex;
  }
}
.header {
  height: 40rem;
  background-image: linear-gradient(-5.7deg, white 49.5%, transparent 50.5%), url("../images/background-test_2.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position:
    center 100%,
    center center;
  background-size:
    100vw 10vw,
    cover;
  margin-bottom: 5rem;
}

.header__heading-main {
  font-weight: 700;
  padding-top: 10rem;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 0 5px #933193;
  font-size: 7rem;
  text-align: center;
  line-height: 92%;
  animation-name: header__heading-main-font-weight;
  animation-delay: 1s;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

@media (max-width: 62em) {
  .header__heading-main {
    font-size: 5rem;
  }
}
@media (max-width: 48em) {
  .header__heading-main {
    font-size: 3rem;
  }
}
@keyframes header__heading-main-font-weight {
  0% {
    opacity: 0;
    font-weight: 100;
  }
  100% {
    opacity: 1;
    font-weight: 700;
  }
}
.header__heading-sub {
  margin-top: 1rem;
  color: white;
  text-transform: uppercase;
  font-size: 1.75rem;
  letter-spacing: 0.25rem;
  text-align: center;
  /*text-shadow: 0 0 10px black;*/
  text-shadow:
    1px 1px 2px #993193,
    1px -1px 2px #993193,
    -1px 1px 2px #993193,
    -1px -1px 2px #993193;
}

.header__button {
  background-color: rgba(220, 220, 220, 0.7);
  border: 1px solid #933193;
  border-radius: 9999px;
  box-shadow: 0 0 0.5rem #933193;
  color: white;
  text-align: center;
  text-decoration: none;
  height: 3rem;
  display: block;
  width: 13rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  text-shadow:
    1px 1px 2px #933193,
    1px -1px 2px #933193,
    -1px 1px 2px #933193,
    -1px -1px 2px #933193;
  transition:
    background-color,
    width 0.25s ease-in-out;
}

.header__button:hover {
  background-color: #993193;
  color: #d9d9d9;
  width: 25rem;
}

.header__button--text {
  line-height: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.sidenav__opened {
  display: none;
}

.sidenav {
  display: block;
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  transition:
    width 0s linear 1s,
    height 0s linear 1s;
}
.sidenav__opened:checked ~ .sidenav {
  transition:
    width 0s linear 0s,
    height 0s linear 0s;
  width: 100%;
  height: 100%;
}

.sidenav__background {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.sidenav__opened:checked ~ .sidenav .sidenav__background {
  opacity: 1;
}

.sidenav__container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30rem;
  max-width: 100vw;
  background-color: rgb(230, 230, 230);
  box-shadow: 0 0 1rem black;
  transform: translate(calc(100% + 1rem), 0);
  will-change: transform;
  transition: transform 1s ease-in-out;
}
.sidenav__opened:checked ~ .sidenav .sidenav__container {
  transform: translate(0, 0);
}
@media (max-width: 62em) {
  .sidenav__container {
    width: 15rem;
  }
}

.sidenav__close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  cursor: pointer;
  color: transparent;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 10000px;
  background-image: linear-gradient(-45deg, transparent 44%, #933193 45%, #933193 55%, transparent 56%), linear-gradient(45deg, transparent 44%, #933193 45%, #933193 55%, transparent 56%);
}

.sidenav__nav {
  margin-top: 3.75rem;
  list-style-type: none;
  border-top: 0.0625rem solid rgb(210, 210, 210);
}

.sidenav__nav-link {
  font-size: 1.25rem;
  padding: 0.5rem 10rem;
  display: block;
  color: #424b54;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 0.0625rem solid rgb(210, 210, 210);
  background-color: rgb(230, 230, 230);
  transition:
    color 0.25s ease-in-out,
    font-weight 0.25s ease-in-out,
    background-color 0.25s ease-in-out;
}
.sidenav__nav-link:hover {
  color: #933193;
  font-weight: 500;
  background-color: white;
}
@media (max-width: 62em) {
  .sidenav__nav-link {
    padding: 0.5rem 3rem;
  }
}

.icon {
  fill: currentColor;
  height: 1em;
  vertical-align: middle;
  position: relative;
  top: -0.075em;
}

.willkommen {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.willkommen__spalte {
  display: flex;
  flex-wrap: wrap;
}

.willkommen__spalte-text {
  width: 33.33%;
  padding-right: 4rem;
  padding-top: 4rem;
}
@media (max-width: 75em) {
  .willkommen__spalte-text {
    padding-right: 2rem;
  }
}
@media (max-width: 62em) {
  .willkommen__spalte-text {
    padding-top: 1rem;
    padding-right: 0rem;
    width: 50%;
  }
}
@media (max-width: 48em) {
  .willkommen__spalte-text {
    width: 100%;
    padding-bottom: 3rem;
  }
}

.willkommen__text-heading {
  color: #933193;
  font-weight: 500;
  font-size: 2rem;
  line-height: 100%;
  text-transform: uppercase;
}
.willkommen__text-heading::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background-color: #933193;
  margin-bottom: 0.5rem;
}

.willkommen__text {
  color: #1c4220;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

.willkommen__spalte-images {
  width: 66.66%;
  height: clamp(10rem, 35vw + 10rem, 36rem);
  position: relative;
}
@media (max-width: 62em) {
  .willkommen__spalte-images {
    width: 50%;
  }
}
@media (max-width: 48em) {
  .willkommen__spalte-images {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 36em) {
  .willkommen__spalte-images {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.willkommen__image {
  width: 50%;
  position: absolute;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  box-sizing: content-box;
  filter: grayscale(0.8);
  transform: scale(1);
  transition:
    filter ease-in-out 0.25s,
    transform ease-in-out 0.25s;
}
.willkommen__image:hover {
  border: 0.33rem solid #933193;
  padding: 0.33rem;
  filter: grayscale(0.1);
  transform: scale(1.05);
  transition:
    filter ease-in-out 0.25s,
    transform ease-in-out 0.25s;
}

.willkommen__image--first {
  top: 0rem;
  width: 75%;
  left: 25%;
  z-index: 1;
}
.willkommen__image--first:hover {
  top: -0.66rem;
  left: calc(25% - 0.66rem);
  z-index: 10;
}

.willkommen__image--second {
  z-index: 2;
  width: 33%;
  top: 10rem;
  left: 10%;
}
.willkommen__image--second:hover {
  top: 9.34rem;
  left: calc(10% - 0.66rem);
  z-index: 10;
}

.willkommen__image--third {
  width: 42%;
  top: 5rem;
  left: 40%;
  z-index: 3;
}
.willkommen__image--third:hover {
  top: 4.34rem;
  left: calc(40% - 0.66rem);
  z-index: 10;
}

.philosophie {
  background: linear-gradient(180deg, rgb(28, 66, 32) 0%, rgb(15, 36, 18) 60%, rgb(0, 0, 0) 100%);
  position: relative;
  padding-bottom: 7.5rem;
}

.philosophie::before {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  content: "Only the best";
  text-transform: uppercase;
  text-align: center;
  color: #050b06;
  font-family: "Helvetica";
  font-size: min(9.0909090909vw, 10rem);
  font-weight: 900;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
  overflow: hidden;
  white-space: nowrap;
}

.philosophie__container {
  position: relative;
  z-index: 1;
  max-width: 75rem;
}

.philosophie__heading {
  color: #d9d9d9;
  font-weight: 500;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 1rem;
}
.philosophie__heading::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background-color: #d9d9d9;
  margin: 0 auto 0.5rem auto;
}

.philosophie__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.philosophie__card {
  flex: 0 0 17.75rem;
  position: relative;
  margin-top: 3rem;
  height: 26rem;
  overflow: hidden;
  box-shadow: 0 0 1rem transparent;
  transform: scale(1);
  transition:
    transform 0.5s ease-in-out,
    box-shadow 0.5s ease-in-out,
    z-index 0.5s linear;
  z-index: 0;
}
.philosophie__card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 1rem black;
  transition:
    transform 0.5s ease-in-out,
    box-shadow 0.5s ease-in-out,
    z-index 0s linear;
  z-index: 1000;
}

.philosophie__card-icon-background {
  background-color: #933193;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  box-shadow: 0 0 0.125rem black;
  transform: translate(calc(-100% + 2rem), 0);
  transition: transform 0.5s ease-in-out;
}
.philosophie__card:hover .philosophie__card-icon-background {
  transform: translate(0, 0);
}

.philosophie__card-img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(80%);
}

.philosophie__card-icon-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate(0, 0);
  transition: transform 0.5s ease-in-out;
}
.philosophie__card:hover .philosophie__card-icon-container {
  transform: translate(calc(50% - 1rem), 0);
}

.philosophie__card-icon {
  width: 2rem;
  color: white;
  display: block;
  padding: 0.25rem;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
}

.philosophie__card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  padding: 3rem 1rem 0 1rem;
  text-shadow: 0 0 0.125rem black;
  background-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 20%);
  transform: translate(0, calc(100% - 7.25rem));
  transition: transform 0.5s ease-in-out;
}
.philosophie__card:hover .philosophie__card-content {
  transform: translate(0, 0);
}

.philosophie__card-heading {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.philosophie__card-sub {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
}

.philosophie__card-sub-icon {
  font-size: 1.25rem;
}

.philosophie__card-sub-text {
  line-height: 1.9rem;
  padding-left: 0.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.philosophie__card-desc {
  font-size: 0.8rem;
  padding: 0.9rem 0;
  background-image: linear-gradient(90deg, #933193 60%, transparent 60%);
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: 100% 0.125rem;
}

.service__heading {
  color: #933193;
  font-weight: 500;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 100%;
  padding-top: 4rem;
  padding-bottom: 2rem;
  text-shadow: 0 0 0.1rem #424b54;
}
.service__heading::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background-color: #933193;
  margin: 0 auto 0.5rem auto;
}

.service__items-outer {
  overflow: hidden;
}

.service__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
  margin: -0.125rem;
}

.service__item {
  flex: 1 0 20rem;
  padding: 1.5rem;
  border: 0.125rem solid #933193;
  text-decoration: none;
}
.service__item:hover {
  background-color: #d9d9d9;
}

.service__item-icon-container {
  width: 5rem;
  height: 5rem;
  border-radius: 99999px;
  background-color: #424b54;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 0 1rem #424b54;
}

.service__item-icon {
  display: block;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition:
    transform 0.5s,
    -webkit-transform 0.5s;
}
.service__item-icon:hover {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.service__item-heading {
  margin: 0;
  font-size: 1.1rem;
  padding-top: 1.5rem;
  color: #424b54;
  text-align: center;
}

.service__item-text {
  color: #424b54;
  text-align: center;
  font-size: 0.9rem;
  padding-top: 1rem;
}

.service__end-text {
  color: #424b54;
  padding-top: 4rem;
  padding-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  max-width: 35rem;
  margin-left: auto;
  margin-right: auto;
}

.service__button {
  border: 1px solid #933193;
  border-radius: 9999px;
  color: black;
  text-align: center;
  text-decoration: none;
  height: 2rem;
  display: block;
  width: 13rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.service__button:hover {
  background-color: rgb(220, 220, 220);
}

.service__button--text {
  line-height: 1.9rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.kundenstimmen {
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(146, 163, 147) 61%, rgb(28, 66, 32) 100%);
  position: relative;
  padding-bottom: 7.5rem;
}

.circle__image {
  width: 49%;
  border-radius: 999999px;
  border: 2px solid rgb(255, 255, 255);
}

.kundenstimmen__heading {
  color: #d9d9d9;
  font-weight: 500;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 1rem;
  text-shadow: 0 0 0.1rem #424b54;
}
.kundenstimmen__heading::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background-color: #d9d9d9;
  margin: 0 auto 0.5rem auto;
}

.kundenstimmen__card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.kundenstimmen__card {
  background-color: #d9d9d9;
  border-radius: 1rem;
  padding: 2rem;
  flex: 0 0 20rem;
  margin: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}

.kundenstimmen__card-heading {
  margin: 0;
  font-size: 1.1rem;
  padding-top: 1.5rem;
  color: #424b54;
}

.kundenstimmen__card-text {
  color: #424b54;
  font-size: 0.9rem;
  padding-top: 1rem;
}

.about {
  background-color: #1c4220;
  padding-top: 3rem;
  padding-bottom: 8rem;
}

.about__slideshow {
  position: relative;
}

.about__img {
  width: 34rem;
  height: 34rem;
  object-fit: cover;
  float: left;
  border-radius: 10000rem;
  /* clip-path: circle(50% at 50% 50%); */
  shape-outside: circle(50% at 50% 50%);
  margin-right: 2rem;
}

@media (max-width: 75em) {
  .about__img {
    width: 30.6rem;
    height: 30.6rem;
  }
}
@media (max-width: 62em) {
  .about__img {
    width: 27.2rem;
    height: 27.2rem;
  }
}
@media (max-width: 48em) {
  .about__img {
    width: 20.4rem;
    height: 20.4rem;
  }
}
@media (max-width: 36em) {
  .about__img {
    width: 17rem;
    height: 17rem;
  }
}
.about__img--slideshow {
  position: absolute;
  top: 0;
  left: 0;
}

.about__img--slideshow-3 {
  animation-name: animation-about__img--slideshow-3;
  animation-timing-function: ease-in-out;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes animation-about__img--slideshow-3 {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.about__img--slideshow-2 {
  animation-name: animation-about__img--slideshow-2;
  animation-timing-function: ease-in-out;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes animation-about__img--slideshow-2 {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.about__img--slideshow-1 {
  animation-name: animation-about__img--slideshow-1;
  animation-timing-function: ease-in-out;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes animation-about__img--slideshow-1 {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.about__heading {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 2rem;
  color: rgb(147, 49, 147);
}

.about__text {
  padding-top: 2rem;
  color: white;
}

.about__text::before {
  content: "";
  display: inline-block;
  height: 0.25rem;
  width: 4rem;
  margin-left: 1rem;
  background-color: rgb(147, 49, 147);
}

@media (max-width: 75em) {
  .about__text {
    padding-top: 0.5rem;
  }
}
.about__paragraph {
  font-weight: 300;
  margin-bottom: 1rem;
}

.about__quote {
  font-style: italic;
}

.about__quote::before {
  content: "„";
}

.about__quote::after {
  content: "“";
}

.kontakt {
  background: linear-gradient(0deg, #e7c591, white 90%);
  filter: grayscale(0.3);
  padding: 3rem 0 1rem 0;
}

.kontakt__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 0.0125rem solid rgba(66, 75, 84, 0.4235294118);
  padding-bottom: 3rem;
}
@media (max-width: 48em) {
  .kontakt__container {
    flex-direction: column;
    margin-right: 0;
  }
}

.kontakt__text {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 5rem;
}
@media (max-width: 48em) {
  .kontakt__text {
    margin-bottom: 3rem;
  }
}

.kontakt__text-gesendet {
  margin-top: 0;
}

.kontakt__heading {
  color: #424b54;
  font-weight: 500;
  font-size: 2rem;
  line-height: 100%;
  text-transform: uppercase;
}
.kontakt__heading::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background-color: #424b54;
  margin-bottom: 0.5rem;
}

.kontakt__paragraph {
  color: #424b54;
  font-size: 1.1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.kontakt__kontakt-item {
  position: relative;
  margin-bottom: 0.5rem;
}

.kontakt__kontakt-item-icon {
  position: relative;
  z-index: 2;
  background-color: #933193;
  color: white;
  height: 4rem;
  width: 4rem;
  font-size: 2.5rem;
  text-align: center;
  border-radius: 99999rem;
}

.kontakt__kontakt-item-link {
  position: absolute;
  z-index: 1;
  left: 2rem;
  top: 0.75rem;
  white-space: nowrap;
  background-color: #e7c591;
  text-decoration: none;
  text-align: center;
  color: white;
  padding: 0.5rem 2rem;
  border: 1px solid #424b54;
  border-top-right-radius: 99999rem;
  border-bottom-right-radius: 99999rem;
  width: 16rem;
  overflow: hidden;
}
.kontakt__kontakt-item-link::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: calc(-100% - 5rem);
  width: calc(100% + 5rem);
  bottom: 0;
  background-image: linear-gradient(-45deg, transparent 2.82rem, #933193 2.82rem);
  background-position: right center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease-in-out;
}
.kontakt__kontakt-item-link:hover::after {
  transform: translate(100%, 0);
}

.kontakt__formular {
  flex: 0 0 50%;
  margin-top: 2rem;
}

.kontakt__eingabe-feld {
  width: 100%;
  padding: 0.25rem;
  margin-bottom: 1rem;
}

.kontakt__eingabe-feld:focus {
  background-color: rgb(230, 230, 230);
}

.kontakt__nachricht-feld {
  height: 10rem;
}

.kontakt__checkbox-feld {
  transform: scale(1.5);
  background: black;
  cursor: pointer;
}

.kontakt__checkbox-text {
  color: #424b54;
  padding-left: 0.5rem;
}

.kontakt__formular-senden {
  background-color: white;
  color: #424b54;
  height: 2.5rem;
  width: 100%;
  border: 1px solid #424b54;
  border-radius: 99999px;
  cursor: pointer;
  margin-top: 1rem;
}
.kontakt__formular-senden:hover {
  background-color: rgb(230, 230, 230);
}

.footer {
  background-color: #e7c591;
  filter: grayscale(0.3);
}

.footer__footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 48em) {
  .footer__footer {
    flex-direction: column;
    align-items: center;
  }
}

.footer__footer-logo {
  width: 40%;
  padding-left: 1rem;
}

.footer__logo {
  height: 15rem;
  width: 15rem;
}
@media (max-width: 48em) {
  .footer__logo {
    height: 10rem;
    width: 10rem;
  }
}

.footer__footer-text {
  width: 60%;
  padding-top: 3rem;
}
@media (max-width: 48em) {
  .footer__footer-text {
    width: 100%;
  }
}

.footer__text-recht-list {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 48em) {
  .footer__text-recht-list {
    justify-content: center;
  }
}

.footer__text-recht-link {
  color: #424b54;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.9rem;
  margin-right: 1rem;
  margin-left: 1rem;
}
.footer__text-recht-link:hover {
  border-bottom: 0.2rem solid #933193;
}

.footer__text-copyright {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 48em) {
  .footer__text-copyright {
    justify-content: center;
  }
}

.footer__copyright {
  color: #424b54;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.newsmodal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 50000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
}
.newsmodal:target {
  display: flex;
}
.newsmodal::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.75);
  animation-name: newsmodal--fade-in;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
}

@keyframes newsmodal--fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.newsmodal__content {
  position: relative;
  width: 45rem;
  height: 25rem;
  max-width: 100vw;
  max-height: 100vh;
  overflow: auto;
  background-color: white;
  background-image: linear-gradient(270deg, transparent 33%, rgba(231, 197, 145, 0.75));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  box-shadow: 0 0 1rem black;
  animation-name: newsmodal__content--fade-in;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards;
}
@media (max-width: 48em) {
  .newsmodal__content {
    height: 43rem;
    width: 25rem;
  }
}
@media (max-width: 36em) {
  .newsmodal__content {
    height: 43rem;
    width: 25rem;
  }
}

@keyframes newsmodal__content--fade-in {
  0% {
    transform: translate(0, calc(-50vh - 50%));
  }
  100% {
    transform: translate(0, 0);
  }
}
.newsmodal__close {
  display: block;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  color: transparent;
  border-radius: 99999px;
  filter: drop-shadow(0 0 0.5rem black);
  background-image: linear-gradient(-45deg, transparent 44%, #933193 45%, #933193 55%, transparent 56%), linear-gradient(45deg, transparent 44%, #933193 45%, #933193 55%, transparent 56%);
}
.newsmodal__close:hover {
  opacity: 0.6;
}

.newsmodal__box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
@media (max-width: 48em) {
  .newsmodal__box {
    flex-direction: column-reverse;
    justify-content: space-around;
    padding-top: 3rem;
    margin-right: 0;
  }
}

.newsmodal__info {
  color: #424b54;
  font-size: 1.1rem;
  margin-top: 2.5rem;
  margin-right: 2rem;
  margin-left: 2rem;
  text-align: center;
}

.newsmodal__heading {
  padding-top: 1.5rem;
  color: #933193;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.5);
}

.newsmodal__arrow {
  color: #933193;
  font-size: 2rem;
  text-align: center;
}

.newsmodal__button {
  background-color: rgb(220, 220, 220);
  border: 1px solid #933193;
  border-radius: 9999px;
  box-shadow: 0 0 0.5rem #933193;
  color: black;
  text-align: center;
  text-decoration: none;
  height: 4rem;
  display: block;
  width: 13rem;
  margin-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
}

.newsmodal__button:hover {
  background-color: #993193;
  color: #d9d9d9;
}

.newsmodal__button--text {
  line-height: 1.9rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.newsmodal__bild {
  width: 60%;
  height: auto;
}

.newsmodal__bild-img {
  width: 100%;
  height: auto;
  border: 1px solid #e0cbb6;
  box-shadow: 0 0 0.5rem #e0cbb6;
}

.impressum {
  background: linear-gradient(0deg, rgba(231, 197, 145, 0.4431372549), white 40%);
  padding: 5rem 0 1rem 0;
}

.impressum__heading {
  color: #424b54;
  font-weight: 500;
  font-size: 2rem;
  line-height: 100%;
  text-transform: uppercase;
  padding-bottom: 2rem;
}
.impressum__heading::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background-color: #424b54;
  margin-bottom: 0.5rem;
}

.impressum__heading-sub {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  color: #424b54;
}

.impressum__kontakt {
  color: #424b54;
  padding-bottom: 1rem;
  font-weight: 500;
}

.impressum__info {
  color: #424b54;
  font-weight: 600;
  font-size: 1rem;
  padding-bottom: 1rem;
}

.impressum__text {
  color: #424b54;
  font-size: 0.9rem;
  padding-bottom: 1rem;
}

.datenschutz {
  background: linear-gradient(0deg, rgba(231, 197, 145, 0.4431372549), white 40%);
  padding: 5rem 0 1rem 0;
}

.datenschutz__heading {
  color: #424b54;
  font-weight: 500;
  font-size: 2rem;
  line-height: 100%;
  text-transform: uppercase;
  padding-bottom: 2rem;
}
.datenschutz__heading::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background-color: #424b54;
  margin-bottom: 0.5rem;
}

.datenschutz__heading-sub {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #424b54;
  padding-bottom: 1rem;
}

.datenschutz__heading-undersub {
  margin: 0;
  font-size: 1.1rem;
  color: #424b54;
  padding-bottom: 0.3rem;
}

.datenschutz__text-sub {
  color: #424b54;
  font-weight: 600;
  font-size: 1rem;
}

.datenschutz__text {
  color: #424b54;
  font-size: 0.9rem;
  padding-bottom: 1rem;
}

.news-page-navigation {
  background: linear-gradient(0deg, rgb(255, 255, 255) 8%, rgb(147, 49, 147) 100%);
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: sticky;
  filter: grayscale(0.3);
  top: 0;
  z-index: 10000;
}

.p-newsheader {
  height: 40rem;
  background-image: linear-gradient(-5.7deg, white 49.5%, transparent 50.5%), url("../images/news/news_header.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position:
    center 100%,
    center center;
  background-size:
    100vw 10vw,
    cover;
  margin-bottom: 5rem;
}

.p-newsheader__heading-main {
  font-weight: 500;
  padding-top: 6rem;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 0 5px #933193;
  font-size: 5rem;
  text-align: center;
  line-height: 100%;
  animation-name: p-newsheader__heading-main-font-weight;
  animation-delay: 1s;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
@media (max-width: 62em) {
  .p-newsheader__heading-main {
    font-size: 3.5rem;
    padding-top: 8rem;
  }
}
@media (max-width: 48em) {
  .p-newsheader__heading-main {
    font-size: 2.5rem;
    padding-top: 10rem;
  }
}
@media (max-width: 36em) {
  .p-newsheader__heading-main {
    font-size: 2rem;
    padding-top: 12rem;
  }
}

@keyframes p-newsheader__heading-main-font-weight {
  0% {
    opacity: 0;
    font-weight: 100;
  }
  100% {
    opacity: 1;
    font-weight: 500;
  }
}

.p-newsheader__heading-undermain {
  font-weight: 500;
  padding-top: 5rem;
  color: white;
  text-shadow: 0 0 5px #933193;
  font-size: 4rem;
  text-align: center;
  line-height: 100%;
}
@media (max-width: 62em) {
  .p-newsheader__heading-undermain {
    font-size: 3rem;
    padding-top: 7rem;
  }
}
@media (max-width: 48em) {
  .p-newsheader__heading-undermain {
    font-size: 2rem;
    padding-top: 9rem;
  }
}
@media (max-width: 36em) {
  .p-newsheader__heading-undermain {
    font-size: 1.5rem;
    padding-top: 11rem;
  }
}

.p-news__arrow {
  color: #d9d9d9;
  font-size: 3rem;
  text-align: center;
  padding-top: 3rem;
}

.p-newscontent {
  background: linear-gradient(180deg, rgb(255, 255, 255) 8%, rgb(147, 49, 147) 100%);
}

.p-news__card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.p-news__card {
  display: flex;
  flex-direction: row;
  align-items: start;
  background-color: #d9d9d9;
  border-radius: 1rem;
  border-top: 0.2rem solid #933193;
  border-bottom: 0.2rem solid #933193;
  padding: 2rem;
  margin: 1rem;
  margin-bottom: 3rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}
@media (max-width: 48em) {
  .p-news__card {
    flex-wrap: wrap;
  }
}

.quadrat__image {
  margin-top: 2rem;
  margin-left: 2rem;
  width: 100%;
  border: 2px solid rgb(255, 255, 255);
  box-shadow: 0 0 0.5rem black;
}
@media (max-width: 48em) {
  .quadrat__image {
    width: 80%;
    align-items: center;
    margin-left: 1rem;
  }
}

.p-news__card-heading {
  margin: 0;
  font-size: 1.1rem;
  padding-top: 1.5rem;
  padding-left: 5rem;
  color: #424b54;
}
@media (max-width: 48em) {
  .p-news__card-heading {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-news__card-subheading {
  margin: 0;
  font-size: 1rem;
  padding-top: 1.5rem;
  padding-left: 5rem;
  color: #424b54;
}
@media (max-width: 48em) {
  .p-news__card-subheading {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-news__card-text {
  color: #424b54;
  font-size: 0.9rem;
  padding-top: 1rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (max-width: 48em) {
  .p-news__card-text {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-news__card-liste {
  color: #424b54;
  font-size: 0.9rem;
  padding-top: 1rem;
  font-weight: bold;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (max-width: 48em) {
  .p-news__card-liste {
    padding-left: 2rem;
    padding-right: 1rem;
  }
}

.p-news__card-listentext {
  font-weight: normal;
}

.p-news__button {
  background-color: rgb(220, 220, 220);
  border: 1px solid #933193;
  border-radius: 9999px;
  box-shadow: 0 0 0.5rem #933193;
  color: black;
  text-align: center;
  text-decoration: none;
  height: 4rem;
  display: block;
  width: 13rem;
  margin-bottom: 3rem;
  margin-left: 5rem;
  margin-top: 2rem;
}
@media (max-width: 48em) {
  .p-news__button {
    margin-left: 1rem;
  }
}

.p-news__button:hover {
  background-color: #993193;
  color: #d9d9d9;
}

.p-news__button--text {
  line-height: 1.9rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.p-news__linie {
  border: none;
  height: 0.05rem;
  color: #d9d9d9;
  background-color: #d9d9d9;
}

.p-news__footer {
  background-color: #933193;
  padding-top: 1rem;
}

.p-news__footer__text-recht-link {
  color: #d9d9d9;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.9rem;
  margin-right: 1rem;
  margin-left: 1rem;
}
.p-news__footer__text-recht-link:hover {
  border-bottom: 0.2rem solid #933193;
}

.p-news__footer__copyright {
  color: #d9d9d9;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.about-page-navigation {
  background: linear-gradient(0deg, rgb(255, 255, 255) 8%, rgb(132, 150, 130) 100%);
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: sticky;
  filter: grayscale(0.3);
  top: 0;
  z-index: 10000;
}

.p-about {
  position: relative;
  overflow: hidden;
}

.p-about__video {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
}
@supports (object-fit: cover) and (object-position: center center) {
  .p-about__video {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.p-about__video-colorize {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(28, 66, 32, 0.5);
  animation: p-about__heading-filter 5s ease-in-out 0s 1;
}

@keyframes p-about__heading-filter {
  0% {
    opacity: 0;
    background-color: rgba(28, 66, 32, 0);
  }
  100% {
    opacity: 1;
    background-color: rgba(28, 66, 32, 0.5);
  }
}
.p-about__container {
  position: relative;
  z-index: 2;
}

.p-about__heading {
  font-weight: 500;
  padding-top: 5rem;
  padding-bottom: 3rem;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
  font-size: 5rem;
  text-align: center;
  line-height: 100%;
  animation-name: p-newsheader__heading-main-font-weight;
  animation-delay: 1s;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
@media (max-width: 62em) {
  .p-about__heading {
    font-size: 3.5rem;
    padding-top: 7rem;
  }
}
@media (max-width: 48em) {
  .p-about__heading {
    font-size: 2.5rem;
    padding-top: 9rem;
  }
}
@media (max-width: 36em) {
  .p-about__heading {
    font-size: 2rem;
    padding-top: 10rem;
  }
}

@keyframes p-newsheader__heading-main-font-weight {
  0% {
    opacity: 0;
    font-weight: 100;
  }
  100% {
    opacity: 1;
    font-weight: 500;
  }
}
.p-about__desc {
  max-width: 40rem;
  margin: 0 auto;
  color: white;
  font-size: 0.9rem;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  column-count: 2;
  column-gap: 4rem;
  column-rule: 0.125rem solid rgba(255, 255, 255, 0.5);
  text-align: justify;
}
@media (max-width: 48em) {
  .p-about__desc {
    column-count: 1;
    text-align: center;
  }
}

.p-about__quote {
  font-style: italic;
  color: white;
  text-align: center;
  padding-top: 2rem;
}

.p-about__quote::before {
  content: "„";
}

.p-about__quote::after {
  content: "“";
}

.p-about__button {
  border: 1px solid #933193;
  border-radius: 9999px;
  color: white;
  text-align: center;
  text-decoration: none;
  height: 2rem;
  display: block;
  width: 13rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.p-about__button:hover {
  background-color: rgb(220, 220, 220);
  color: #424b54;
}

.p-about__button--text {
  line-height: 1.9rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.gallery {
  background: linear-gradient(180deg, rgb(255, 255, 255) 8%, rgb(132, 150, 130) 100%);
}

.gallery__container {
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
}

.gallery__heading {
  color: #424b54;
  font-weight: 500;
  font-size: 2rem;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.gallery__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 14.2rem 14.2rem;
}
@media (max-width: 75em) {
  .gallery__list {
    grid-template-rows: 12.78rem 12.78rem;
  }
}
@media (max-width: 62em) {
  .gallery__list {
    grid-template-rows: 11.36rem 11.36rem;
  }
}
@media (max-width: 48em) {
  .gallery__list {
    grid-template-rows: 7.1rem 7.1rem;
  }
}
@media (max-width: 36em) {
  .gallery__list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 14.2rem 14.2rem 14.2rem 14.2rem 14.2rem;
  }
}

.gallery__list--cb-toggle {
  animation: gallery__list--cb-toggle-show 1s ease-in-out 0s 1;
}
.gallery__cb-toggle:not(:checked) ~ .gallery__list--cb-toggle {
  display: none;
}

@keyframes gallery__list--cb-toggle-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.gallery__cb-toggle {
  display: none;
}

.gallery__more-button-container {
  padding-top: 3rem;
}
.gallery__cb-toggle:checked ~ .gallery__more-button-container {
  display: none;
}

.gallery__button {
  border: 1px solid #933193;
  border-radius: 9999px;
  color: #424b54;
  text-align: center;
  text-decoration: none;
  height: 2rem;
  display: block;
  width: 13rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.gallery__button:hover {
  background-color: #424b54;
  color: #d9d9d9;
  cursor: pointer;
}

.gallery__button--text {
  line-height: 1.9rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.gallery__list-item {
  display: block;
  filter: brightness(1.2) contrast(0.85) saturate(0.05) sepia(0.2);
  transform: scale(1);
  z-index: 0;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0);
  transition:
    filter 0.5s ease-in-out,
    box-shadow 0.5s ease-in-out,
    transform 0.5s ease-in-out,
    z-index 0.5s linear;
}
.gallery__list-item:hover {
  box-shadow: 0 0 1rem rgb(0, 0, 0);
  transform: scale(1.1);
  z-index: 1000;
  transition:
    filter 0.5s ease-in-out,
    box-shadow 0.5s ease-in-out,
    transform 0.5s ease-in-out,
    z-index 0s linear;
  filter: brightness(1) contrast(1) saturate(1);
}
.gallery__list-item--first {
  grid-column-start: 1;
  grid-column-end: span 2;
  grid-row-start: 1;
  grid-row-end: span 2;
}
.gallery__list-item--last {
  grid-column-start: 4;
  grid-column-end: span 2;
  grid-row-start: 1;
  grid-row-end: span 2;
}
@media (max-width: 36em) {
  .gallery__list-item--last {
    grid-column-start: 1;
    grid-column-end: span 2;
  }
}

.gallery__list-item-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__list-item-bg-image {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.p-about__certificates {
  padding-bottom: 3rem;
}

.p-about__cert-list {
  width: 48%;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media (max-width: 62em) {
  .p-about__cert-list {
    width: 98%;
    margin: 0.5rem;
  }
}

.p-about__linie {
  border: none;
  height: 0.05rem;
  color: #d9d9d9;
  background-color: #d9d9d9;
}

.p-about__footer {
  background-color: #849682;
  padding-top: 1rem;
}

.p-about__footer__text-recht-link {
  color: #d9d9d9;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.9rem;
  margin-right: 1rem;
  margin-left: 1rem;
}
.p-about__footer__text-recht-link:hover {
  border-bottom: 0.2rem solid #933193;
}

.p-about__footer__copyright {
  color: #d9d9d9;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.service-page-navigation {
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(146, 163, 147) 61%, rgb(28, 66, 32) 100%);
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: sticky;
  filter: grayscale(0.3);
  top: 0;
  z-index: 10000;
}

.p-serviceheader {
  height: 40rem;
  background-image: linear-gradient(-5.7deg, white 49.5%, transparent 50.5%), url("../images/leistungen/background.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position:
    center 100%,
    center center;
  background-size:
    100vw 10vw,
    cover;
  margin-bottom: 5rem;
}

.p-serviceheader__heading-main {
  font-weight: 500;
  padding-top: 17rem;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 0 5px #933193;
  font-size: 5rem;
  text-align: center;
  line-height: 100%;
  animation-name: p-serviceheader__heading-main-font-weight;
  animation-delay: 1s;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
@media (max-width: 62em) {
  .p-serviceheader__heading-main {
    font-size: 3.5rem;
    padding-top: 20rem;
  }
}
@media (max-width: 48em) {
  .p-serviceheader__heading-main {
    font-size: 2.5rem;
    padding-top: 22rem;
  }
}
@media (max-width: 36em) {
  .p-serviceheader__heading-main {
    font-size: 2rem;
    padding-top: 25rem;
  }
}

@keyframes p-serviceheader__heading-main-font-weight {
  0% {
    opacity: 0;
    font-weight: 100;
  }
  100% {
    opacity: 1;
    font-weight: 500;
  }
}
.p-serviceheader__button {
  background-color: rgba(220, 220, 220, 0.7);
  border: 1px solid #933193;
  border-radius: 9999px;
  box-shadow: 0 0 0.5rem #933193;
  color: white;
  text-align: center;
  text-decoration: none;
  height: 3rem;
  display: block;
  width: 13rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  text-shadow:
    1px 1px 2px #933193,
    1px -1px 2px #933193,
    -1px 1px 2px #933193,
    -1px -1px 2px #933193;
  transition:
    background-color,
    width 0.25s ease-in-out;
}

.p-serviceheader__button:hover {
  background-color: #993193;
  color: #d9d9d9;
  width: 25rem;
}

.p-serviceheader__button--text {
  line-height: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.p-servicecontent {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(146, 163, 147) 61%, rgb(28, 66, 32) 100%);
}

.p-service__card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.p-service__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #d9d9d9;
  border-radius: 1rem;
  border-top: 0.2rem solid #933193;
  border-bottom: 0.2rem solid #933193;
  padding: 2rem;
  margin: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}
@media (max-width: 48em) {
  .p-service__card {
    flex-wrap: wrap;
  }
}

.p-service__item-icon-container {
  width: 5rem;
  height: 5rem;
  border-radius: 99999px;
  background-color: #424b54;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  box-shadow: 0 0 1rem #424b54;
}

.p-service__item-icon {
  display: block;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition:
    transform 0.5s,
    -webkit-transform 0.5s;
}
.p-service__item-icon:hover {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.p-service__card-heading {
  margin: 0;
  font-size: 1.1rem;
  padding-top: 1.5rem;
  padding-left: 5rem;
  color: #424b54;
}
@media (max-width: 48em) {
  .p-service__card-heading {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }
}

.p-service__card-text {
  color: #424b54;
  font-size: 0.9rem;
  padding-top: 1rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (max-width: 48em) {
  .p-service__card-text {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }
}

.p-service__card-text-fett {
  color: #424b54;
  font-size: 0.9rem;
  font-weight: bold;
  padding-top: 1rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (max-width: 48em) {
  .p-service__card-text-fett {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }
}

.p-service__link {
  text-decoration: none;
  color: #424b54;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.p-service__link:hover {
  border-bottom: 0.2rem solid #933193;
  color: #933193;
}

.p-service__end {
  padding-bottom: 2rem;
}

.p-service__end-text {
  color: #d9d9d9;
  padding-top: 4rem;
  padding-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  max-width: 35rem;
  margin-left: auto;
  margin-right: auto;
}

.p-service__button {
  background-color: #1c4220;
  border: 1px solid #933193;
  border-radius: 9999px;
  color: #d9d9d9;
  text-align: center;
  text-decoration: none;
  height: 2rem;
  display: block;
  width: 13rem;
  margin-left: auto;
  margin-right: auto;
}

.p-service__button:hover {
  background-color: rgb(220, 220, 220);
  color: #424b54;
}

.p-service__button--text {
  line-height: 1.9rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.l-gallery__container {
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
}

.l-gallery__heading {
  color: #1c4220;
  font-weight: 500;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 100%;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.l-gallery__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 14.2rem 14.2rem;
}
@media (max-width: 75em) {
  .l-gallery__list {
    grid-template-rows: 12.78rem 12.78rem;
  }
}
@media (max-width: 62em) {
  .l-gallery__list {
    grid-template-rows: 11.36rem 11.36rem;
  }
}
@media (max-width: 48em) {
  .l-gallery__list {
    grid-template-rows: 7.1rem 7.1rem;
  }
}
@media (max-width: 36em) {
  .l-gallery__list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 14.2rem 14.2rem 14.2rem 14.2rem 14.2rem;
  }
}

.l-gallery__list--cb-toggle {
  animation: l-gallery__list--cb-toggle-show 1s ease-in-out 0s 1;
}
.l-gallery__cb-toggle:not(:checked) ~ .l-gallery__list--cb-toggle {
  display: none;
}

@keyframes l-gallery__list--cb-toggle-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.l-gallery__cb-toggle {
  display: none;
}

.l-gallery__more-button-container {
  padding-top: 3rem;
}
.l-gallery__cb-toggle:checked ~ .l-gallery__more-button-container {
  display: none;
}

.l-gallery__button {
  background-color: #1c4220;
  border: 1px solid #933193;
  border-radius: 9999px;
  color: #d9d9d9;
  text-align: center;
  text-decoration: none;
  height: 2rem;
  display: block;
  width: 13rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.l-gallery__button:hover {
  background-color: #d9d9d9;
  color: #1c4220;
  cursor: pointer;
}

.l-gallery__button--text {
  line-height: 1.9rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.l-gallery__list-item {
  display: block;
  filter: brightness(1.2) contrast(0.85) saturate(0.05) sepia(0.2);
  transform: scale(1);
  z-index: 0;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0);
  transition:
    filter 0.5s ease-in-out,
    box-shadow 0.5s ease-in-out,
    transform 0.5s ease-in-out,
    z-index 0.5s linear;
}
.l-gallery__list-item:hover {
  box-shadow: 0 0 1rem rgb(0, 0, 0);
  transform: scale(1.1);
  z-index: 1000;
  transition:
    filter 0.5s ease-in-out,
    box-shadow 0.5s ease-in-out,
    transform 0.5s ease-in-out,
    z-index 0s linear;
  filter: brightness(1) contrast(1) saturate(1);
}
.l-gallery__list-item--first {
  grid-column-start: 1;
  grid-column-end: span 2;
  grid-row-start: 1;
  grid-row-end: span 2;
}
.l-gallery__list-item--last {
  grid-column-start: 4;
  grid-column-end: span 2;
  grid-row-start: 1;
  grid-row-end: span 2;
}
@media (max-width: 36em) {
  .l-gallery__list-item--last {
    grid-column-start: 1;
    grid-column-end: span 2;
  }
}

.l-gallery__list-item-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-gallery__list-item-bg-image {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.p-service__linie {
  border: none;
  height: 0.05rem;
  color: #d9d9d9;
  background-color: #d9d9d9;
  margin-top: 5rem;
}

.p-service__footer {
  background-color: #1c4220;
  padding-top: 1rem;
}

.p-service__footer__text-recht-link {
  color: #d9d9d9;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.9rem;
  margin-right: 1rem;
  margin-left: 1rem;
}
.p-service__footer__text-recht-link:hover {
  border-bottom: 0.2rem solid #933193;
}

.p-service__footer__copyright {
  color: #d9d9d9;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/** Breakpoints */
/** 1200px oder schmaler */
/** 992px oder schmaler */
/** 768px oder schmaler */
/** 576px oder schmaler */

/*# sourceMappingURL=main.css.map */
