@charset "UTF-8";

@font-face {
  font-family: 'FW Brand';
  src: url('../fonts/fwbrand.woff2') format('woff2'),
    url('../fonts/fwbrand.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'FW Bran light';
  src: url('../fonts/fwbrand-Light.woff2') format('woff2'),
    url('../fonts/fwbrand-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FW Brand normal';
  src: url('../fonts/fwbrand-Regular.woff2') format('woff2'),
    url('../fonts/fwbrand-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* --------------------------------------Variablen-------------------------------------- */

:root {
  --fw-black: #000;
  --fw-green: #8dbb3e;
  --fw-white: #FFF;
  --fw-gray: #2b2b2b;
}

/* --------------------------------------Allgemein-------------------------------------- */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-size: 100%;
  font-family: 'FW Brand';
  background-color: #F9F9F9;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 90%;
  }
}

@media only screen and (max-width: 550px) {
  body {
    font-size: 80% !important;
  }
}

body.no-scroll {
  overflow: hidden;
}

main {
  flex: 1;
}

* {
  -webkit-tap-highlight-color: transparent;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.pagebg {
  background: url("");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: fixed;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.animation {
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

hr {
  background-color: #cacaca;
  height: 1px;
  border: none;
  margin: 40px 0 40px 0;
}

.anchor {
  visibility: hidden;
  height: 0px !important;
  position: absolute;
  margin: -80px;
}

.posR {
  position: relative;
}

.posA {
  position: absolute;
}

.posF {
  position: fixed;
}

.disBl {
  display: block;
}

.disIb {
  display: inline-block;
}

.disIn {
  display: inline;
}

address {
  font-family: 'FW Brand normal';
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 1.3rem;
  line-height: 145%;
  font-weight: normal;
  hyphens: auto;
}

/* --------------------------------------Text-------------------------------------- */
p {
  font-family: 'FW Brand normal';
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 1.3rem;
  line-height: 145%;
  font-weight: normal;
  hyphens: auto;
}

.hdlxl {
  font-family: 'FW Brand';
  color: var(--fw-black);
  font-size: 2.6em;
  line-height: 130%;
  margin: 0 0 10px 0;
  padding: 0;
  hyphens: manual;
}

@media only screen and (max-width: 550px) {
  .hdlxl {
    font-size: 2em;
  }
}

.hdll {
  color: var(--fw-black);
  font-size: 1.8em;
  font-weight: bold;
  line-height: 145%;
  margin: 0 0 10px 0;
  padding: 0 0 15px 0;
}

.hdl3 {
  font-size: 1.5rem;
  line-height: 145%;
  font-weight: bold;
  margin-top: 40px;
}

.hdlm {
  font-size: 1.8em;
  line-height: 145%;
  font-weight: bold;
}

.hdls {
  padding: 0;
  margin: 0;
  font-size: 1.3rem;
  line-height: 145%;
  font-weight: normal;
  hyphens: auto;
}

.hdlxs {
  font-size: 1.2em;
  line-height: 145%;
  font-weight: bold;
}

p a:link,
p a:visited,
p a:active {
  text-decoration: underline;
  color: var(--fw-black);
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

p a:focus,
p a:hover {
  color: var(--fw-gray);
}

p sub,
p sup {
  margin: 0;
  line-height: 10%;
  font-size: 0.8em;
}

ul {
  margin-left: 0.6em;
  padding-left: 0.6em;
}

ul li {
  font-family: 'FW Brand normal';
  list-style-type: square;
  list-style-position: outside;
  font-size: 1.3rem;
  line-height: 145%;
  margin: 0;
  padding: 0;
}

ul li a {
  color: var(--fw-black);
}

address {
  font-style: normal;
}

address p {
  margin: 0;
}

.posCall {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*Keine optische Verlinkung der Telefonnummer in IOS*/
a[href^="tel"] {
  text-decoration: inherit;
  color: inherit;
}

/* --------------------------------------Grid-------------------------------------- */

.grid2 {
  display: flex;
}

.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

@media only screen and (max-width: 768px) {
  .grid2 {
    display: block;
  }

  .grid2 div {
    margin-bottom: 20px;
  }

  .grid3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .grid4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media only screen and (max-width: 768px) {

  .grid3,
  .grid4 {
    display: block;
  }

  .grid3 div,
  .grid4 div {
    margin-bottom: 20px;
  }
}

/* --------------------------------------Hauptmenü-------------------------------------- */

.pageHeader {
  width: 100%;
  background-color: var(--fw-black);
  backdrop-filter: blur(10px);
  position: fixed;
  height: 80px;
  z-index: 100;
  border-bottom: 3px solid var(--fw-green);
  transition: transform .5s ease-in-out;
  left: 0;
  top: 0;
}

@media only screen and (max-width: 550px) {
  .pageHeader {
    height: 50px;
  }
}

.pageHeader--hidden {
  transform: translateY(-100%);
}

.navBg {
  text-align: right;
  z-index: 100;
  position: fixed;
  width: 100%;
  max-width: 1400px;
  left: 50%;
  transform: translate(-50%, 0);
}

.mainLogo {
  width: 100%;
  max-width: 100px;
  left: 20px;
  top: 14px;
  position: fixed;
  transition: all 0.3s ease-in-out;
  z-index: 300;
}

@media only screen and (max-width: 550px) {
  .mainLogo {
    max-width: 65px;
    top: 7px;
  }
}

.topnav {
  position: relative;
  text-decoration: none;
  color: var(--fw-white);
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin: 30px 0 10px 0;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0 10px;
}

a.topnav-phone {
  color: var(--fw-green);
  font-size: 1.2rem;
  margin-left: 20px;
}

.topnav-phone img {
  width: 14px;
  margin-right: 10px;
}

@media only screen and (max-width: 985px) {
  a.topnav-phone {
    margin: 30px auto 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: fixed;
    top: -0;
    right: 80px;
    line-height: 0;
    pad: 0;
  }

  .topnav-phone img {
    width: 14px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 550px) {
  a.topnav-phone {
    margin: 30px auto 0 auto;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: fixed;
    top: -14px;
    right: 70px;
    font-size: 1rem;
  }

  .topnav-phone img {
    width: 14px;
    margin-right: 10px;
  }
}

.topnav::before {
  content: "";
  width: 0%;
  height: 26px;
  background-color: var(--fw-green);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}

.topnav:hover {
  color: var(--fw-black);
}

.topnav:hover::before {
  width: 100%;
}

.topnav:hover>.subnav {
  opacity: 1;
  transition-delay: 0.1s;
  visibility: visible;
}

.topnavsub {
  margin-right: 20px;
}

.topnavsub span::after {
  content: "⏷";
  width: 4px;
  position: absolute;
  display: inline-block;
  right: -4px;
  top: -4px;
  color: var(--fw-white);
}

.topnavsub:focus-within>.subnav,
.topnavsub.is-open>.subnav {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.1s;
}

.subnav {
  display: block;
  text-align: left;
  width: auto;
  position: absolute;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  padding-top: 31px;
  margin-left: -10px;
}

.subnav-active {
  display: block;

}

.subnav a:link,
.subnav a:visited,
.subnav a:active {
  text-transform: none;
  white-space: nowrap;
  width: 100%;
  text-decoration: none;
  color: var(--fw-green);
  display: block;
  padding: 20px;
  background-color: var(--fw-black);
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.subnav a:focus,
.subnav a:hover {
  background-color: var(--fw-green);
  color: var(--fw-black);
}

.mainNav {
  padding-right: 20px;
  display: inherit;
}

@media only screen and (max-width: 985px) {
  .mainNav {
    width: 100%;
    display: block;
    left: 200vw;
    text-align: left;
    position: fixed;
    background-color: var(--fw-black);
    height: 100vh;
    -webkit-transition: all 0.03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 100px 20px 0 20px;
  }

  .nav-active {
    left: 0;
  }

  .topnav {
    display: block;
    background-color: var(--fw-black);
    margin: 0;
    border-bottom: 1px solid var(--fw-green);
    padding: 0;
  }

  .topnav span {
    display: block;
    padding: 20px;
    font-size: 1.2em;
    width: 100%;
  }

  .topnav span:hover {
    color: #fff;
    background-color: var(--fw-green);
  }

  .topnavsub span::after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url("../images/icons/topnavarrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    display: inline-block;
    top: 30px;
    right: 15px;
  }

  .topnav::before {
    content: "";
    display: none;
  }

  .topnav:hover::before {
    width: 100%;
  }

  .topnav:hover>.subnav {
    opacity: 1;
    transition-delay: 0.1s;
    visibility: visible;
    position: relative;
  }

  .subnav {
    display: block;
    text-align: left;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.3s;
    padding: 0;
    margin-left: 0;
  }

  .subnav:first-child {
    border-top: none;
  }

  .subnav-active {
    display: block;
  }

  .subnav a:link,
  .subnav a:visited,
  .subnav a:active {
    white-space: normal;
    width: 100%;
    display: block;
    padding: 20px;
    border-top: 1px solid #dfdfdf;
    border-right: none;
    border-left: none;
  }

  .subnav a:focus,
  .subnav a:hover {
    background-color: #c7c7c7;
  }

  .subnav a:last-child {
    border-bottom: none;
  }
}

.hamburger {
  position: fixed;
  top: 18px;
  right: 10px;
  width: 40px;
  height: 45px;
  z-index: 300;
  cursor: pointer;
  display: none;
}

@media only screen and (max-width: 985px) {
  .hamburger {
    display: block;
  }
}

.hamburger div {
  position: relative;
  width: 35px;
  height: 4px;
  margin-top: 8px;
  transition: all 0.3s ease-in-out;
}

.hamburger-inner {
  background-color: var(--fw-green);
}

.hamburger-inner.is-active.top-bun {
  transform: rotate(-45deg);
  margin-top: 18px;
  background-color: var(--fw-green);
}


.hamburger-inner.is-active.meat {
  transform: rotate(45deg);
  margin-top: -4px;
  background-color: var(--fw-green);
}


@media only screen and (max-width: 550px) {
  .hamburger {
    top: 8px;
    right: 5px;
  }

  .hamburger div {
    position: relative;
    width: 30px;
    height: 4px;
    margin-top: 8px;
    transition: all 0.3s ease-in-out;
  }

  .hamburger-inner.is-active.top-bun {
    transform: rotate(-45deg);
    margin-top: 12px;
    background-color: var(--fw-green);
  }

  .hamburger-inner.is-active.meat {
    transform: rotate(45deg);
    margin-top: -4px;
    background-color: var(--fw-green);
  }
}

/* --------------------------------------Abstände-------------------------------------- */
.m10 {
  margin: 10px;
}

.m20 {
  margin: 20px;
}

.m30 {
  margin: 30px;
}

.m40 {
  margin: 40px;
}

.m50 {
  margin: 10px;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mr5 {
  margin-top: 5px !important;
}

.mr10 {
  margin-top: 10px !important;
}

.mr15 {
  margin-top: 15px !important;
}

.mr20 {
  margin-top: 20px !important;
}

.mr25 {
  margin-top: 25px !important;
}

.mr30 {
  margin-top: 30px !important;
}

.mr35 {
  margin-top: 35px !important;
}

.mr40 {
  margin-top: 40px !important;
}

.mr45 {
  margin-top: 45px !important;
}

.mr50 {
  margin-top: 50px !important;
}

.mr55 {
  margin-top: 55px !important;
}

.mr60 {
  margin-top: 60px !important;
}

.mr65 {
  margin-top: 65px !important;
}

.mr70 {
  margin-top: 70px !important;
}

.mr75 {
  margin-top: 75px !important;
}

.mr80 {
  margin-top: 80px !important;
}

.mr85 {
  margin-top: 85px !important;
}

.mr90 {
  margin-top: 90px !important;
}

.mr95 {
  margin-top: 95px !important;
}

.mr100 {
  margin-top: 100px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml5 {
  margin-top: 5px !important;
}

.ml10 {
  margin-top: 10px !important;
}

.ml15 {
  margin-top: 15px !important;
}

.ml20 {
  margin-top: 20px !important;
}

.ml25 {
  margin-top: 25px !important;
}

.ml30 {
  margin-top: 30px !important;
}

.ml35 {
  margin-top: 35px !important;
}

.ml40 {
  margin-top: 40px !important;
}

.ml45 {
  margin-top: 45px !important;
}

.ml50 {
  margin-top: 50px !important;
}

.ml55 {
  margin-top: 55px !important;
}

.ml60 {
  margin-top: 60px !important;
}

.ml65 {
  margin-top: 65px !important;
}

.ml70 {
  margin-top: 70px !important;
}

.ml75 {
  margin-top: 75px !important;
}

.ml80 {
  margin-top: 80px !important;
}

.ml85 {
  margin-top: 85px !important;
}

.ml90 {
  margin-top: 90px !important;
}

.ml95 {
  margin-top: 95px !important;
}

.ml100 {
  margin-top: 100px !important;
}

.p10 {
  padding: 10px;
}

.p20 {
  padding: 20px;
}

.p30 {
  padding: 30px;
}

.p40 {
  padding: 40px;
}

.p50 {
  padding: 50px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pt55 {
  padding-top: 55px;
}

.pt60 {
  padding-top: 60px;
}

.pt65 {
  padding-top: 65px;
}

.pt70 {
  padding-top: 7px;
}

.pt75 {
  padding-top: 75px;
}

.pt80 {
  padding-top: 80px;
}

.pt85 {
  padding-top: 85px;
}

.pt90 {
  padding-top: 90px;
}

.pt95 {
  padding-top: 95px;
}

.pt100 {
  padding-top: 100px;
}

.pr5 {
  padding-right: 5px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr20 {
  padding-right: 20px;
}

.pr25 {
  padding-right: 25px;
}

.pr30 {
  padding-right: 30px;
}

.pr35 {
  padding-right: 35px;
}

.pr40 {
  padding-right: 40px;
}

.pr45 {
  padding-right: 45px;
}

.pr50 {
  padding-right: 50px;
}

.pr55 {
  padding-right: 55px;
}

.pr60 {
  padding-right: 60px;
}

.pr65 {
  padding-right: 65px;
}

.pr70 {
  padding-right: 7px;
}

.pr75 {
  padding-right: 75px;
}

.pr80 {
  padding-right: 80px;
}

.pr85 {
  padding-right: 85px;
}

.pr90 {
  padding-right: 90px;
}

.pr95 {
  padding-right: 95px;
}

.pr100 {
  padding-right: 100px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb55 {
  padding-bottom: 55px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb65 {
  padding-bottom: 65px;
}

.pb70 {
  padding-bottom: 7px;
}

.pb75 {
  padding-bottom: 75px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb85 {
  padding-bottom: 85px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb95 {
  padding-bottom: 95px;
}

.pb100 {
  padding-bottom: 100px;
}

.pl5 {
  padding-left: 5px;
}

.pl10 {
  padding-left: 10px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl25 {
  padding-left: 25px;
}

.pl30 {
  padding-left: 30px;
}

.pl35 {
  padding-left: 35px;
}

.pl40 {
  padding-left: 40px;
}

.pl45 {
  padding-left: 45px;
}

.pl50 {
  padding-left: 50px;
}

.pl55 {
  padding-left: 55px;
}

.pl60 {
  padding-left: 60px;
}

.pl65 {
  padding-left: 65px;
}

.pl70 {
  padding-left: 7px;
}

.pl75 {
  padding-left: 75px;
}

.pl80 {
  padding-left: 80px;
}

.pl85 {
  padding-left: 85px;
}

.pl90 {
  padding-left: 90px;
}

.pl95 {
  padding-left: 95px;
}

.pl100 {
  padding-left: 100px;
}

.w100 {
  width: 100%;
  display: block;
}

.w50 {
  width: 50%;
  display: inline-block;
}

.vdistxxl {
  padding-top: 200px;
}

.vdistxl {
  padding-top: 100px;
}

.vdistl {
  padding-top: 80px;
}

.vdistm {
  padding-top: 50px;
}

.vdists {
  padding-top: 30px;
}

.vdistxs {
  padding-top: 20px;
}

/* --------------------------------------Positionierung-------------------------------------- */
.posa {
  position: absolute;
}

.posf {
  position: fixed;
}

.posr {
  position: relative;
}

.poss {
  position: sticky;
}

.posi {
  position: inherit;
}

.posc {
  margin: 0 auto;
  display: block;
}

/* --------------------------------------Prozentuale Distanz-------------------------------------- */
.t10p {
  top: 10%;
}

.t20p {
  top: 20%;
}

.t30p {
  top: 30%;
}

.t40p {
  top: 40%;
}

.t50p {
  top: 50%;
}

.t60p {
  top: 60%;
}

.t70p {
  top: 70%;
}

.t810p {
  top: 80%;
}

.t90p {
  top: 90%;
}

.t00p {
  top: 100%;
}

.b10p {
  bottom: 10%;
}

.b20p {
  bottom: 20%;
}

.b30p {
  bottom: 30%;
}

.b40p {
  bottom: 40%;
}

.b50p {
  bottom: 50%;
}

.b60p {
  bottom: 60%;
}

.b70p {
  bottom: 70%;
}

.b80p {
  bottom: 80%;
}

.b90p {
  bottom: 90%;
}

.b100p {
  bottom: 100%;
}

.l10p {
  left: 10%;
}

.l20p {
  left: 20%;
}

.l30p {
  left: 30%;
}

.l40p {
  left: 40%;
}

.l50p {
  left: 50%;
}

.l60p {
  left: 60%;
}

.l70p {
  left: 70%;
}

.l80p {
  left: 80%;
}

.l90p {
  left: 90%;
}

.l100p {
  left: 100%;
}

.r10p {
  right: 10%;
}

.r20p {
  right: 20%;
}

.r30p {
  right: 30%;
}

.r40p {
  right: 40%;
}

.r50p {
  right: 50%;
}

.r60p {
  right: 60%;
}

.r70p {
  right: 70%;
}

.r80p {
  right: 80%;
}

.r90p {
  right: 90%;
}

.r100p {
  right: 100%;
}

.tr10 {
  transform: translate(-10%, -10%);
}

.tr20 {
  transform: translate(-20%, -20%);
}

.tr30 {
  transform: translate(-30%, -30%);
}

.tr40 {
  transform: translate(-40%, -40%);
}

.tr50 {
  transform: translate(-50%, -50%);
}

.tr60 {
  transform: translate(-60%, -60%);
}

.tr70 {
  transform: translate(-70%, -70%);
}

.tr80 {
  transform: translate(-80%, -80%);
}

.tr90 {
  transform: translate(-90%, -90%);
}

.tr10 {
  transform: translate(-100%, -100%);
}

.w100p {
  width: 100%;
}

.h100p {
  height: 100%;
}

/* --------------------------------------Abschnittbreite-------------------------------------- */
.wFull {
  width: 100%;
}

.wHalf {
  width: 49.7%;
}

.w800 {
  width: 100%;
  max-width: 800px;
}

.w768 {
  width: 100%;
  max-width: 768px;
}

.w1000 {
  width: 100%;
  max-width: 1000px;
}

.w1100 {
  width: 100%;
  max-width: 1100px;
}

.w1200 {
  width: 100%;
  max-width: 1200px;
}

.w1300 {
  width: 100%;
  max-width: 1300px;
}

.w1400 {
  width: 100%;
  max-width: 1400px;
}

.w1500 {
  width: 100%;
  max-width: 1500px;
}

.w1600 {
  width: 100%;
  max-width: 1600px;
}

.w700 {
  width: 100%;
  max-width: 1700px;
}

.w1800 {
  width: 100%;
  max-width: 1800px;
}

/* --------------------------------------Breiten-------------------------------------- */
.w100p {
  width: 100%;
  display: block;
}

/* --------------------------------------Schaltflächen-------------------------------------- */
.btn {
  font-family: 'FW Brand';
  padding: 18px 30px;
  background-color: var(--fw-black);
  color: var(--fw-green);
  text-align: center;
  display: inline-block;
  width: auto;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  line-height: normal;
  border: none;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  z-index: 0;
}

.btn span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.btn:hover span {
  color: var(--fw-black);
  transition-delay: 0.1s;
  /* Text wird erst schwarz, wenn der Balken schon etwas da ist */
}

.btn::before {
  content: "";
  width: 0%;
  height: 100%;
  background-color: var(--fw-green);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 0;
}

.btn:hover::before {
  width: 100%;
}

.btn:hover {
  color: var(--fw-black);
}


/* --------------------------------------Footer-------------------------------------- */

footer {
  flex-shrink: 0;
  background-color: var(--fw-black);
  padding: 80px 20px 60px 20px;
  position: relative;
  margin-top: 20px;
  clip-path: polygon(50% 14%, 100% 0, 100% 100%, 0 100%, 0 0);
}

.footerContainer {
  width: 100%;
  max-width: 1300px;
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto auto;
  margin: 0 auto;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
}

.footerContent {
  width: 100%;
}

.footerContent address {
  font-style: normal;
  line-height: inherit;
  margin: 0;
  display: block;
}

.footerLogo {
  width: 100%;
  max-width: 114px;
}

@media only screen and (max-width: 640px) {
  .footerLogo {
    margin: 0 auto;
    display: flex
  }
}

.footerContent p {
  font-size: 1.1rem;
  line-height: 150%;
  color: #fff;
  margin: 0;
}

.footerContent a:link,
.footerContent a:visited,
.footerContent a:active {
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
  line-height: 150%;
  font-size: inherit;
  margin-left: 20px;
}

.footerContent a:focus,
.footerContent a:hover {
  text-decoration: underline;
  font-size: inherit;
}

.footerGrid {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  gap: 0px 10px;
  margin-top: 34px;
}

.footerNav ul {
  margin: 0;
  padding: 0;
}

.footerNav ul li {
  list-style: none !important;
  font-size: inherit !important;
  margin: 0;
  padding: 0;
  position: relative;
}

.footerNav ul li::before {
  content: "›";
  font-size: 1.4rem;
  color: var(--fw-green);
  display: flex;
  position: absolute;
  margin-left: 0;
  margin-top: 3px;
  left: 0;
}

.footerNav a:link,
.footerNav a:visited,
.footerNav a:active {
  font-family: 'FW Brand normal';
  display: block;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footerNav a:focus,
.footerNav a:hover {
  opacity: 0.8;
}

.footerBtnContainer {
  width: 100%;
  display: block;
  margin: 0 auto;
  text-align: center;
  margin: -30px 0 30px 0;
}


.socialBar {
  display: block;
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.socialBar a:link,
.socialBar a:visited,
.socialBar a:active,
.socialBar a:hover {
  text-decoration: none;
}

.socialBar img {
  width: 25px;
  height: auto;
  margin: 10px;
  transition: all 0.3s ease;
  filter: invert(1);
  transform: scale(1);
}

.socialBar img:hover {
  transform: scale(0.95);
}

@media only screen and (max-width: 985px) {
  .footerContainer {
    max-width: 800px;
    grid-template-columns: auto auto;
    align-items: flex-start;
  }

  .footerContent {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 640px) {

  .footerBtnContainer {
    margin: 30px 0 30px 0;
  }

  .footerContainer {
    max-width: max-content;
    display: block;
    margin: 0 auto;
  }

  .footerContent {
    margin-bottom: 40px;
  }
}

.footerBottom {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: block;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid var(--fw-green);
  padding-top: 20px;
}

.footerBottom a:link,
.footerBottom a:visited,
.footerBottom a:active {
  font-family: 'FW Bran light';
  text-decoration: none;
  color: #fff;
  margin: 10px;
}

/* --------------------------------------Ausrichtung und Position-------------------------------------- */
.fltl {
  float: left;
}

.fltr {
  float: right;
}

.clr {
  clear: both;
}

.dblock {
  display: block;
}

.diblock {
  display: inline-block;
}

.ctxt {
  text-align: center;
}

.ccontent {
  display: block;
  margin: 0 auto;
}

.cbxcontainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: center;
}

.cbx p {
  margin: 20px;
}

.cbx2:nth-child(1) {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 50%;
}

.cbx2:nth-child(2) {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 50%;
}

.cbx3:nth-child(1) {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 33.3%;
}

.cbx3:nth-child(2) {
  width: 33.3%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 33.3%;
}

.cbx3:nth-child(3) {
  width: 33.3%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 33.3%;
}

.cbx4:nth-child(1) {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 25%;
}

.cbx4:nth-child(2) {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 25%;
}

.cbx4:nth-child(3) {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 25%;
}

.cbx4:nth-child(4) {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 25%;
}

@media only screen and (max-width: 1024px) {
  .cbxcontainer {
    flex-wrap: wrap;
  }

  .cbx3:nth-child(1) {
    flex-basis: 50%;
  }

  .cbx3:nth-child(2) {
    flex-basis: 50%;
  }

  .cbx3:nth-child(3) {
    flex-basis: 50%;
  }

  .cbx4:nth-child(1) {
    flex-basis: 50%;
  }

  .cbx4:nth-child(2) {
    flex-basis: 50%;
  }

  .cbx4:nth-child(3) {
    flex-basis: 50%;
  }

  .cbx4:nth-child(4) {
    flex-basis: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .cbx2:nth-child(1) {
    flex-basis: 100%;
  }

  .cbx2:nth-child(2) {
    flex-basis: 100%;
  }

  .cbx4:nth-child(1) {
    flex-basis: 50%;
  }

  .cbx4:nth-child(2) {
    flex-basis: 50%;
  }

  .cbx4:nth-child(3) {
    flex-basis: 50%;
  }

  .cbx4:nth-child(4) {
    flex-basis: 50%;
  }
}

@media only screen and (max-width: 675px) {
  .cbx3:nth-child(1) {
    flex-basis: 100%;
  }

  .cbx3:nth-child(2) {
    flex-basis: 100%;
  }

  .cbx3:nth-child(3) {
    flex-basis: 100%;
  }

  .cbx4:nth-child(1) {
    flex-basis: 100%;
  }

  .cbx4:nth-child(2) {
    flex-basis: 100%;
  }

  .cbx4:nth-child(3) {
    flex-basis: 100%;
  }

  .cbx4:nth-child(4) {
    flex-basis: 100%;
  }
}

.vtop {
  vertical-align: top;
}

.vbtm {
  vertical-align: bottom;
}

.vmdl {
  vertical-align: middle;
}

/* --------------------------------------Bilder-------------------------------------- */
.imgf {
  width: 100%;
  height: auto;
  display: block;
}

.img100 {
  width: 100%;
  max-width: 100px;
  height: auto;
}

.img150 {
  width: 100%;
  max-width: 150px;
  height: auto;
}

.img200 {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.img250 {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.img300 {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.img350 {
  width: 100%;
  max-width: 350px;
  height: auto;
}

.img400 {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.img450 {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.img500 {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.img550 {
  width: 100%;
  max-width: 550px;
  height: auto;
}

.img600 {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.img650 {
  width: 100%;
  max-width: 650px;
  height: auto;
}

.img700 {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.img750 {
  width: 100%;
  max-width: 750px;
  height: auto;
}

.img800 {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.img850 {
  width: 100%;
  max-width: 850px;
  height: auto;
}

.img768 {
  width: 100%;
  max-width: 768px;
  height: auto;
}

.img950 {
  width: 100%;
  max-width: 950px;
  height: auto;
}

.img1000 {
  width: 100%;
  max-width: 1000px;
  height: auto;
}

/* --------------------------------------Tabellen-------------------------------------- */

/*Responsive Swipe Tabelle */
.tableswipe {
  width: 100%;
  height: 20px;
  margin-bottom: 20px;
  display: none;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .tableswipe {
    display: block;
  }
}

.prev {
  width: 20px;
  position: absolute;
  left: 10px;
  z-index: 20;
}

.next {
  width: 20px;
  position: absolute;
  right: 10px;
  z-index: 20;
}

/* -------------------------------------- Formulare-------------------------------------- */
.form {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

}

@media only screen and (max-width: 550px) {
  .form {
    padding: 30px 20px 20px 20px;
  }
}


.formCenter {
  display: block;
  width: 100%;
  text-align: center;
}

.form h2 {
  color: var(--fw-black);
  font-size: 1.6em;
  display: block;
  text-align: center;
  margin: 0 0 30px 0;
}

.formgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 15px;
  width: 100%;
}

@media only screen and (max-width: 550px) {
  .formgrid {
    display: block;
  }
}

fieldset {
  border: none;
  padding: 0;
}

legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

input,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 20px 16px;
  border: 1px solid var(--fw-white);
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  margin-bottom: 5px;
  border-radius: 0;
  vertical-align: top;
  transition: all 0.3s ease;
  border: 1px solid var(--fw-black);
  margin-bottom: 10px;
}

select {
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  background-color: #efefef;
}

textarea {
  width: 100%;
  min-height: 100px;
  min-width: 100%;
  max-width: 100%;
}

/* Das Container-Feld an sich */
input[type="file"] {
  padding: 13.5px;
  border: 1px solid var(--fw-black);
  font-family: inherit;
}

/* Der Button innerhalb des Feldes */
input[type="file"]::file-selector-button {
  background-color: #000;
  color: var(--fw-white);
  font-weight: bold;
  padding: 8px 16px;
  cursor: pointer;
  margin-right: 15px;
  transition: background 0.3s;
  border: none;
}

input[type="file"]::file-selector-button:hover {
  background-color: var(--fw-green);
  color: var(--fw-black);
}


.confirmGrid {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}

.confirmGrid {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}

.confirmCheck {
  padding: 12px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  transition: none;
  margin: 10px 0 40px 0;
}

.confirmCheck:checked {
  background-image: url("../images/icons/icon_tick.svg");
  background-size: 80% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

label {
  width: 100%;
  display: block;
  padding: 0 0 3px 0;
  font-family: 'FW Brand normal';
}

label[for="confirmCheck"] {
  font-family: 'FW Brand normal';
  font-size: 1.1em;
  margin-top: 13px;
  color: var(--fw-black)
}

label a {
  color: var(--fw-black);
}

.special {
  display: none;
}

.formError {
  border: 2px solid red;
}

.formCorrect {
  background-color: #fff;
}

/* --------------------------------------Rezensionen-------------------------------------- */

.rezension {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

@media only screen and (max-width: 850px) {
  .rezension {
    max-width: 500px;
  }
}

.rezensionContainer {
  width: 100%;
  max-width: 700px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.rezensionWrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.rezensionSlide {
  text-align: center;
  padding: 20px;
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 10px;
  min-height: 300px;
  color: #fff;
  padding: 20px;
}

.rezensionSlide img {
  width: 100%;
  max-width: 120px;
  display: block;
  margin: 0 auto 20px auto;
}

.rezensionSlide p {
  font-size: 1.4em;
  color: #4c4a39;
  padding: 0 40px 20px 40px;
  border-bottom: 1px solid #4c4a39;
}

.rezensionSlide span {
  text-align: center;
  font-size: 1.2em;
  padding-top: 20px;
  display: block;
  color: #4c4a39;
}

.rezensionNav {
  border: none;
  width: 35px;
  height: 100%;
  background-size: 25px 25px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  filter: saturate(0%);
}

.rezensionNav:hover {
  opacity: 1;
}

#prevBtn {
  background-image: url("../images/icons/icon_prev.svg");
  left: 5px;
  filter: brightness(0%);
}

#nextBtn {
  background-image: url("../images/icons/icon_next.svg");
  right: 5px;
  filter: brightness(0%);
}

.ppxSlider-container {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  clip-path: polygon(100% 0, 100% 86%, 50% 100%, 0 86%, 0 0);
}

/* --------------------------------------Galerie-------------------------------------- */


.galerie {
  width: 100%;
  max-width: calc(1800px - 40px);
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

@media only screen and (max-width: 1024px) {
  .galerie {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
}

.galerieBild {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Erzeugt ein festes quadratisches Seitenverhältnis */
  object-fit: cover;
  /* Schneidet das Bild so zu, dass es das Quadrat füllt, ohne gestaucht zu werden */
  object-position: center;
  /* Zentriert den Ausschnitt (Standard, aber wichtig zur Sicherheit) */
  cursor: pointer;
  transition: transform 0.3s ease-in-out, opacity 2s ease-in-out;

}

.galerieBild:hover {
  transform: scale(1.05);
}

.galerieBildAktiv {
  position: fixed;
  width: 100%;
  max-width: 800px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 300;
  cursor: pointer;
}

.galerieContainer {
  position: relative;
}

.galerieNav {
  width: 35px;
  height: 35px;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  background-size: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translateY(200%);
  transition: all 0.3s ease-in-out;
  padding: 0;
  outline: none;
}

#galPrev {
  background-image: url("../images/icons/icon_prev.svg");
}

#galNext {
  background-image: url("../images/icons/icon_next.svg");
}

.galerieBildGross {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  z-index: 200;
}

@media only screen and (max-width: 768px) {
  .galerieBildGross {
    max-width: 95vw;
    max-height: 65vh;
    top: 40%;
  }
}

/* --------------------------------------Overlay-------------------------------------- */

.overlay {
  width: 100%;
  height: 100vh;
  background-color: #000000b6;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  display: none;
  transition: all 0.3s ease;
}

.overlayClose {
  background-image: url("../images/icons/icon_close.svg");
}

.overlayCloseActive {
  transform: translateY(0);
}

.overlayBox {
  width: 100%;
  max-width: 768px;
  height: 600px;
  max-height: 80vh;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  overflow-y: auto;
  display: none;
  text-align: center;
  border: 1px solid #1b1b1b;
}

.overlayNav {
  position: fixed;
  width: 100%;
  max-width: 500px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  height: 100px;
  z-index: 1000;
  text-align: center;
  margin: 0 auto;
}

.overlayNavActive {
  display: flex;
  justify-content: space-between;
  transform: translateX(-50%) translateY(-30px);
}


/* --------------------------------------Fade-In Animation-------------------------------------- */

.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.anim.animate {
  opacity: 1;
  transform: translateY(0);
}

.visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.goTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  background-image: url("../images/icons/icon_arrow_up.svg");
  background-size: 25px 25px;
  background-position: center center;
  background-repeat: no-repeat;
  display: none;
  transition: all 0.3s ease;
  z-index: 10;
}

.goTop:hover {
  bottom: 12px;
}

.startBtn {
  width: 40px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 50;
}

.subSection {
  margin: 3% auto 40px auto;
  position: relative;
}

.subSection table {
  font-size: 1.2em;
  margin: 20px 0 20px 0;
}

.subSection table td:first-child {
  padding-right: 10px;
}

.subSection table a {
  color: var(--fw-white);
}

.introLogoContainer {
  position: absolute;
  z-index: 10;
  width: 100%;
  max-width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.introLogo {
  width: 100%;
  max-width: 300px;
}

@media only screen and (max-width: 768px) {
  .introLogo {
    max-width: 200px;
  }
}

@media only screen and (max-width: 425px) {
  .introLogo {
    max-width: 150px;
  }
}




.introGrid {
  display: grid;
  grid-template-columns: auto 400px;
  gap: 60px;
  width: 100%;
  justify-content: space-between;
}

.introGrid img {
  width: 100%;

}

@media only screen and (max-width: 1024px) {
  .introGrid {
    display: block;
    max-width: 800px;
    margin: 0 auto;
  }

  .greetingImg {
    max-width: 500px;
    margin: 30px auto 0 auto;
    display: block;
  }
}

.greetingImg {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.301);
}

.leistungen {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 30px;
  width: 100%;
  max-width: 1600px;
  margin: 60px auto 0 auto;

}

.leistung {
  margin-bottom: 30px;

}

.leistung img {
  width: 100%;
  margin: 0;
}

.leistung div {
  padding: 20px;
  width: 100%;
  background-color: var(--fw-black);
  color: #fff;
  margin: 0;
  position: relative;
}

.leistung div span {
  font-weight: bold;
  display: block;
  margin-bottom: 30px;
  border-bottom: 1px solid #fff;
}

.leistung .btn {
  border: 2px solid #fff;
  margin-top: 20px;
  clip-path: none;
}

.leistungGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
  min-height: 500px;
  background-color: var(--fw-black);
  align-items: center;
  margin: 0 auto 40px auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.301);
}




.leistungGrid div p {
  color: var(--fw-white);
  position: relative;
}

.leistungGrid div strong {
  font-weight: bold;
  font-size: 1.6em;
  line-height: 150%;
  display: block;
  padding-bottom: 5px;

  color: var(--fw-green);
}

.leistungContent {
  padding: 40px;
}

.leistungContent .hdll {
  font-family: 'FW Brand normal';
  color: var(--fw-green);
  font-size: 2rem;
  margin: 0;
}


.leistungContent p {
  margin: 0;
}

.leistungImg {
  overflow: hidden;
  /* Wichtig für das Clipping */
  position: relative;
  display: flex;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  clip-path: polygon(85% 0, 100% 50%, 85% 100%, 0 100%, 0 0);
}


.leistungimg01 {
  background-image: url("../images/leistungsbereiche/maler-lackierer.webp");
}

.leistungimg02 {
  background-image: url("../images/leistungsbereiche/bodenbelaege.webp");
}


.leistungimg03 {
  background-image: url("../images/leistungsbereiche/fliesenarbeiten.webp");
}


.leistungimg04 {
  background-image: url("../images/leistungsbereiche/fassaden.webp");
}

.leistungimg05 {
  background-image: url("../images/leistungsbereiche/trockenbau.webp");
}

@media only screen and (max-width: 768px) {
  .leistungGrid {
    display: block;
    margin-bottom: 40px;
  }


  .leistungImg {
    overflow: hidden;
    /* Wichtig für das Clipping */
    position: relative;
    display: flex;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 500px;
    clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);

  }


  .leistungFlex {
    display: flex !important;
    flex-direction: column-reverse;
    /* Kehrt die Reihenfolge der Elemente um */
    align-items: center;
    /* Zentriert den Inhalt */
  }
}



.full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bewirkt den "background-size: cover" Effekt */
  object-position: center;
  display: block;
  clip-path: polygon(92% 0, 100% 50%, 92% 100%, 0 100%, 0 0);

}


.btnBorder {
  border: 1px solid var(--fw-green);
  margin-top: 60px;
}

.form .btnBorder {
  margin: 0;
}


.fakten {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 40px auto 40px auto;
  justify-content: space-between;
  justify-items: center;
  align-items: center;
  background-color: var(--fw-black);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.301);
}

@media only screen and (max-width: 1190px) {
  .fakten {
    grid-template-columns: 1fr 1fr;
    max-width: 600px;

  }
}

.fakt {
  padding: 30px;
  text-align: center;
  width: 100%;
  font-size: 1.3em;
  color: var(--fw-white);
  border-right: 1px solid var(--fw-white);
}

@media only screen and (max-width: 1190px) {
  .fakt {
    border-bottom: 1px solid var(--fw-white);
  }
}



.fakt p {
  color: var(--fw-green);
  font-size: 3em;
  font-weight: bold;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 30px;
  padding: 0;
}

.fakt sup {
  font-size: 0.5em;
  margin-left: 5px;
}


@media only screen and (max-width: 768px) {
  .fakten {
    display: block;
    max-width: 600px;
    margin-top: 40px;
    padding: 0;
  }

  .fakt {
    border-right: 0;
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .fakt p {
    margin-bottom: 20px;
    margin-top: -10px;
  }


}


.sectionContent {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  text-align: center;
}

.vorteileGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 1600px;
  margin: 40px auto 0 auto;
}

.vorteil {
  width: 100%;
  min-height: 350px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  background-color: var(--fw-green);
  align-items: center;
}

.vorteilImg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

.vorteilImgRight {
  background-image: url("../images/vorteil02.webp");
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.vorteilImgLeft {
  background-image: url("../images/vorteil01.webp");
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.vorteil p {
  padding: 20px;
}

.vorteil p span {
  display: block;
  margin-bottom: 20px;
  font-size: 1.4em;
  font-weight: bold;
  color: var(--fw-black);
}

@media only screen and (max-width: 1024px) {
  .vorteileGrid {
    display: block;
    margin: 40px auto 20px auto;
  }

  .vorteil {
    margin-bottom: 20px;
  }

  .vorteil p {
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 640px) {
  .vorteilFlex {
    display: flex !important;
    flex-direction: column-reverse;
    /* Kehrt die Reihenfolge der Elemente um */
    align-items: center;
    /* Zentriert den Inhalt */
  }

  .vorteileGrid {
    margin: 40px auto 20px auto;
  }

  .vorteil {
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  }

  .vorteilImg {
    display: block;
    width: 100%;
    height: 350px;
    clip-path: none;
  }

  .vorteil p {
    padding: 40px 20px;
  }
}

.w900 {
  max-width: 900px;
}

.headerContainer {
  margin: 0 0 40px 0;
}

.headerImg {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  clip-path: polygon(100% 0, 100% 86%, 50% 100%, 0 86%, 0 0);
}


.contentGrid {
  width: 100%;
  display: grid;
  grid-template-columns: calc(60% - 10px) calc(40% - 10px);
  align-items: flex-start;
  gap: 20px;
}

.contentImg {
  width: 100%;
  margin: 20px 0;
}

.contentImg01 {
  background-image: url("../images/contentimg/contentimg-projektentwicklung.webp");
}

.contentImg02 {
  background-image: url("../images/contentimg/contentimg-hochtiefbau.webp");
}

.contentImg03 {
  background-image: url("../images/contentimg/contentimg-schluesselfertigbau.webp");
}

.contentImg04 {
  background-image: url("../images/contentimg/contentimg-umbau.webp");
}

.contentImg05 {
  background-image: url("../images/contentimg/contentimg-sanierung.webp");
}

.contentImg06 {
  background-image: url("../images/contentimg/nermin-jusovic.webp");
  max-height: 300px;
  background-position: center top;
}

@media only screen and (max-width: 768px) {
  .contentGrid {
    display: block;
  }

  .contentImg {
    margin-top: 40px;
  }
}

.contactGrid {
  width: calc(100% - 40px);
  display: grid;
  grid-template-columns: 35% 65%;
  justify-content: left;
  align-items: flex-start;
  gap: 40px;
}

.contactGrid address a {
  font-weight: bold;
  color: var(--fw-black);
  line-height: inherit;
  text-decoration: none;
  text-align: left;
}




@media only screen and (max-width: 850px) {
  .contactGrid {
    width: 100%;
    display: block;
  }

  .contactGrid p {
    margin-bottom: 30px;
  }

  .contactGrid p a {
    display: block;
    margin: 0;
  }
}

.contactDetailGrid {
  width: 100%;
  max-width: 300px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto auto;
  flex-direction: column;
  align-items: flex-start;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 999;
  color: white;
  background: black;
  padding: 0.5em 1em;
  text-decoration: none;
  font-size: 1rem;
}

.skip-link:focus {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

.headerSocialBar {
  display: inline;
}

.headerSocialBar img {
  width: 14px;
  filter: invert(1);
  margin-left: 14px;
}

@media only screen and (max-width: 985px) {
  .headerSocialBar {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .headerSocialBar img {
    width: 25px;
    margin: 0 20px;
  }

}

.addressGrid {
  width: 100%;
  max-width: 300px;
}


.addressGrid p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.addressGrid p a {

  line-height: 150%;
}

.footer-nav {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 70px;
}

section {
  background-color: #F9F9F9;
  padding: 0 20px;
}

.imprint p {
  margin-bottom: 40px;
}

.imprint a:link {
  color: var(--fw-black);
}

/* --------------------------------------Review Slider-------------------------------------- */

.reviews {
  width: 100%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 0 auto;
}

.review {
  display: flex;
  width: 100%;
  min-height: 400px;
  padding: 30px;
  text-align: center;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  background-color: var(--fw-white);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.reviewImg {
  width: 100px;
  display: block;
  margin: 0 auto 30px auto;
  padding: 0;
}

.review-text {
  color: var(--fw-black);
  margin-bottom: 18px;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 130%;
}


.review-reviewinfo {
  border-top: 1px solid var(--fw-black);
  margin-top: 10px;
  padding-top: 10px;
  font-size: 1.2rem;
}


.review-details {
  font-size: 1rem;
  margin-bottom: 20px;
  display: block;
}


.reviews .review {
  display: none;
}

.reviews .review.visible {
  display: block;
}

/* Die ersten drei immer zeigen */
.reviews .review:nth-child(-n + 3) {
  display: block;
}

.moreContainer {
  width: 100%;
  display: block;
  text-align: center;
  margin: 20px 0 80px 0;
}


@media only screen and (max-width: 1240px) {
  .reviews {
    grid-template-columns: 1fr 1fr;
  }

  .reviews .review:nth-child(-n + 4),
  .reviews .review.visible {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .reviews {
    grid-template-columns: 1fr;
  }

  .reviews .review:nth-child(-n + 2),
  .reviews .review.visible {
    display: block;
  }
}

.stellenanzeigenGrid {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  max-width: 600px;
}

.stellenanzeige {
  padding: 40px;
  border: 3px solid var(--fw-green);
  background-color: var(--fw-white);
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .stellenanzeige {
    padding: 20px;
  }
}

.stellenanzeige h2 {
  font-size: 2rem;
  margin-top: 0;
}

.stellenanzeige li {
  font-family: 'FW Brand normal';
}



.intro {
  position: relative;
  height: 100dvh;
  width: 100%;
  max-height: 1080px;
  clip-path: polygon(100% 0, 100% 86%, 50% 100%, 0 86%, 0 0);
}


.intro video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  z-index: -1;
}

.teamGrid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}


.teamGrid img {
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.301);
  margin: 0;
}


.teamGrid p {
  text-align: center;
  width: 100%;
  background-color: var(--fw-black);
  color: var(--fw-white);
  padding: 10px 0;
  margin: -6px 0 0 0;
  border-top: 3px solid var(--fw-green);
}

.teamGrid p span {
  font-weight: bold;
  display: block;
}

@media only screen and (max-width: 768px) {
  .teamGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 550px) {
  .teamGrid {
    display: block;
    max-width: 300px;
  }

  .teamGrid p {
    margin: -6px 0 20px 0;
  }


}

.partnerGrid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}

@media only screen and (max-width: 768px) {
  .partnerGrid {
    grid-template-columns: 1fr 1fr 1fr;
  }

}

@media only screen and (max-width: 550px) {
  .partnerGrid {
    grid-template-columns: 1fr 1fr;
  }

}


.partnerGrid img {
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.301);
  margin: 0;
  transform: scale(1);
  transition: all .3s ease;
}

.partnerGrid img:hover {
  transform: scale(1.05);
}






.projectsGrid {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

@media only screen and (max-width: 1024px) {
  .projectsGrid {
    grid-template-columns: 1fr 1fr;
  }
}



.projectsGrid a {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  transform: scale(1);
  transition: all .3s ease;
  text-shadow: 2px 2px 5px #000000, 2px 2px 5px #000000;

}

.projectsGrid a span {
  justify-content: center;
  align-items: center;

  font-weight: bold;
  text-align: center;
  z-index: 2;
  color: var(--fw-white);
  display: flex;
  border-bottom: 3px solid var(--fw-green);
  padding-bottom: 10px;
}



.projectsGrid a img {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Erzeugt ein festes quadratisches Seitenverhältnis */
  object-fit: cover;
  /* Schneidet das Bild so zu, dass es das Quadrat füllt, ohne gestaucht zu werden */
  object-position: center;
  /* Zentriert den Ausschnitt (Standard, aber wichtig zur Sicherheit) */
  cursor: pointer;
  transition: transform 0.3s ease-in-out, opacity 2s ease-in-out;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  filter: brightness(60%);

}

.projectsGrid a:hover {
  transform: scale(1.05);
}


@media only screen and (max-width: 550px) {
  .projectsGrid {
    display: block;
  }

  .projectsGrid a {
    margin: 0 auto 20px auto;
  }
}



.goBack {
  width: 30px;
  position: absolute;
  top: -50px;
  z-index: 10;
}

.badge {
  background-color: var(--fw-green);
  padding: 14px;
  font-size: 1.3rem;
  width: auto;
  display: inline;
  max-width: 170px;
  position: absolute;
  bottom: -100px;
  right: 40px;
  transform: rotate(-4deg) scale(1);
  color: var(--fw-black);
  text-decoration: none;
  transition: all .3s ease;
}


/* Optional: Animation pausieren, wenn man mit der Maus drüberfährt */
.badge:hover {
  animation-play-state: paused;
  transform: rotate(-4deg) scale(1.1);
  /* Beim Hovern etwas deutlicher vergrößern */
}

@media only screen and (max-width: 550px) {
  .badge {
    transform: rotate(-4deg) scale(.8);
  }

}

.hdlLine {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 20px;
}

.dashandwerk {
  width: auto;
  height: auto;
  max-height: 55px;
}

.greetingGrid {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 640px) {
  .greetingGrid {
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .dashandwerk {
    width: 100%;
    max-width: 258px;
    display: block;
    margin: 0 auto 20px auto
  }


}



.refSection ul {
  margin-top: 0;
  margin-bottom: 40px;
}

.innungCenter {
  display: block;
  margin: 40px auto 0 auto;
  text-align: center;
}