@charset "UTF-8";
/* noto-sans-gujarati-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans Gujarati";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-gujarati-v23-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-gujarati-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans Gujarati";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/noto-sans-gujarati-v23-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-gujarati-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans Gujarati";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-gujarati-v23-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* diese Variablen kann man nur in SCSS verwenden! - Farben sind nur Beispiel, statt Farbangaben dann den Variablennamen benutzen - Beispiel: color: $col_bordeaux; */
/* ################ Media Queries ################### */
/* diese Variablen kann man nur in SCSS verwenden! Mediaqueries immer in em oder px angeben - nie in rem!!! */
/*456px*/
/*564px*/
/*760px*/
/*1016px*/
/*1272px*/
/*1432px*/
/*1800px*/
/* ################ Allgemeines ################### */
html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-size: 16px;
  /* Root-Größe, auf der sich alle anderen Größenangaben, die in rem angegeben werden (also auch margin, Padding etc., beziehen: 1rem = 16px */
  /*Durch folgende Mediaqueries ändern sich Schriftgrößen und Abstände - sofern in rem angegeben automatisch bei den verschiedenen Displaygrößen, damit spart man sehr viel Schreibarbeit und Code*/
}
@media screen and (min-width: 47.5em) {
  html,
  body {
    font-size: 17px;
  }
}
@media screen and (min-width: 63.5em) {
  html,
  body {
    font-size: 18px;
  }
}
@media screen and (min-width: 79.5em) {
  html,
  body {
    font-size: 20px;
  }
}
@media screen and (min-width: 89.5em) {
  html,
  body {
    font-size: 22px;
  }
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Schriften, Schriftgröße, Abstände, Schriftfarben */
body {
  font-family: "Noto Sans Gujarati", sans-serif;
  /* Achtung! Hier kommt die Schrift für den Fließtext rein, also die, die am meisten verwendet wird!*/
  font-style: normal;
  font-weight: 400;
  /* Font-Weight für Fließtext - Entwurfabhängig!*/
  color: #000000;
  /* Grundschriftfarbe */
  text-align: center;
  /*zentriert den wrap außen, wird vererbt! ggf. mit text-align: left zurücksetzen!*/
  margin-right: auto;
  /*für Zentrierung */
  margin-left: auto;
  position: relative;
  background-color: #ffffff;
  overflow-x: hidden;
  /* bei hidden liegt die Scrollleiste obendrüber*/
}

/*##### ALLGEMEINES #####*/
h1 {
  line-height: 1;
  font-weight: 600;
  font-variation-settings: "wght" var(--fw-regular), "slnt" 0;
  /*  margin: 1.75rem 0 0.625rem;*/
  letter-spacing: 0.02em;
  font-size: 1.625rem;
}

h2 {
  /*font-size: 2.4rem;
  font-weight: 400;*/
  padding-bottom: 1rem;
}

figure,
img {
  width: 100%;
  height: auto;
}

main {
  /* padding: 4rem 0;*/
  position: relative;
  text-align: left;
  /*  padding: 2rem;*/
  /*22/11/2023
  padding: 0rem 7rem;*/
}

.seiten {
  padding: 0 1rem;
}
@media only screen and (min-width: 800px) {
  .seiten {
    padding: 0 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .seiten {
    padding: 0 8rem;
  }
}
@media only screen and (min-width: 1700px) {
  .seiten {
    padding: 0 10rem;
  }
}

.abstand {
  padding-bottom: 3rem;
}
@media only screen and (min-width: 400px) {
  .abstand {
    padding-bottom: 7rem;
  }
}
@media only screen and (min-width: 900px) {
  .abstand {
    padding-bottom: 9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .abstand {
    padding-bottom: 10rem;
  }
}

.abstand-ma {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 400px) {
  .abstand-ma {
    margin-bottom: 7rem;
  }
}
@media only screen and (min-width: 900px) {
  .abstand-ma {
    margin-bottom: 9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .abstand-ma {
    margin-bottom: 10rem;
  }
}

.abstand-kl {
  padding-bottom: 1rem;
}

.abstand-m {
  padding-bottom: 2rem;
}

.btn-white {
  display: inline-block;
  background-color: white;
  padding: 0.7rem;
  margin-bottom: 1rem;
  color: black;
  text-decoration: none;
  transition: all 0.5s ease;
}
.btn-white:hover {
  transform: scale(1.1);
  transition: all 0.5s ease;
}

address {
  font-style: normal;
}

.oeffnungszeiten {
  padding-top: 1rem;
  text-align: start;
}
.oeffnungszeiten p {
  display: inline-block;
}
.oeffnungszeiten span {
  display: inline-block;
  width: 5rem;
}

/*HEADER*/
header .logo {
  /*09.02.2024*/
  height: auto;
  width: 80%;
  display: block;
  margin: 0 auto;
}
@media only screen and (min-width: 600px) {
  header .logo {
    /*width: auto;*/
    max-width: 400px;
  }
}
@media only screen and (min-width: 900px) {
  header .logo {
    padding: 0.5rem;
  }
}
header nav {
  background-color: #ffffff;
}
header nav ul {
  display: flex;
  /*justify-content: flex-end;*/
  /* justify-content: center;*/
  flex-direction: row;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  transition: all 0.5s ease;
  align-items: center;
  /* wichtig*/
  /*06.02.2024
                          padding: 0rem 5rem;
  */
  /*padding: 0.2rem 5rem;*/
  /*  padding: 0.2rem 4.8rem;*/
  padding: 0.9rem 4.8rem;
}
@media only screen and (max-width: 1199px) {
  header nav ul {
    flex-direction: column;
    /*height: 100vh;*/
    width: 100%;
    justify-content: space-around;
    display: none;
  }
  header nav ul.open {
    display: flex;
    z-index: 3;
    /* margin-top: 20%;*/
    transition: all 0.5s ease;
    padding: 1.5rem;
  }
  header nav ul.open a {
    color: black;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1199px) {
  header nav ul {
    /*width: 80%;*/
    /*  padding: 0;*/
    justify-content: space-around;
    /* padding: 0.5rem;*/
  }
}
header nav ul li {
  list-style-type: none;
}
header nav ul li a {
  color: black;
  text-decoration: none;
  display: inline-block;
  padding: 1rem;
  /* font-size: 1rem;*/
  font-weight: 400;
  /*font-size: 1.4rem;*/
  font-size: 1.1rem;
}
header nav ul li a.active {
  color: #BD202A;
  font-weight: 700;
}
header nav ul .sub-menu li a {
  font-size: 0.7rem;
}
header nav .burger {
  /* position: absolute;*/
  /*z-index: 2;*/
  inset: 0;
  padding: 1rem 0 0 1rem;
  /* width: .7rem;
  height: .7rem;*/
  transition: all 0.5s ease;
}
@media only screen and (min-width: 1199px) {
  header nav .burger {
    display: none;
  }
}
header nav .burger-strich {
  background-color: black;
  width: 2.5rem;
  height: 0.4rem;
  transition: all 0.5s ease;
  cursor: pointer;
  margin-bottom: 0.4rem;
}
header nav .burger.offen {
  /*background-color: $col_gelb;*/
  width: 100%;
  /*  height: 100vh;*/
  transition: all 0.5s ease;
}
header nav .burger.offen .burger-strich {
  background-color: black;
  transition: all 0.5s ease;
}
header nav .burger.offen .burger-strich:first-child {
  width: 27px;
  transform: rotate(-45deg) translateX(-7px);
}
header nav .burger.offen .burger-strich:nth-child(2) {
  width: 50px;
  transform: rotate(180deg);
}
header nav .burger.offen .burger-strich:last-child {
  width: 27px;
  transform: rotate(45deg) translateX(-7px);
}
header nav .wrap-nav {
  /*display: flex;*/
  align-items: center;
  position: relative;
  flex-direction: row-reverse;
}
@media only screen and (min-width: 1199px) {
  header nav .wrap-nav {
    padding: 0 1rem;
    justify-content: space-between;
    z-index: 100;
    flex-direction: row;
  }
}
header nav .wrap-nav a.logo-nav {
  width: 14rem;
}
header nav .wrap-nav a.logo-nav.close {
  display: none;
}

.hero {
  background-size: 100vw, cover;
  padding-top: 44.36%;
  background-repeat: no-repeat;
  position: relative;
}
.hero .titleheader {
  padding-top: 2rem;
  text-align: start;
  padding-left: 1rem;
}
@media only screen and (min-width: 550px) {
  .hero .titleheader {
    position: absolute;
    top: 25%;
    padding-top: 1rem;
  }
}
@media only screen and (min-width: 850px) {
  .hero .titleheader {
    padding-left: 3rem;
  }
}
@media only screen and (min-width: 650px) {
  .hero .titleheader h1 {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero .titleheader h1 {
    font-size: 4.5rem;
  }
}
.hero .titleheader h2 {
  font-weight: 400;
  font-size: 1.5rem;
}
@media only screen and (min-width: 650px) {
  .hero .titleheader h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero .titleheader h2 {
    font-size: 3rem;
  }
}
.hero .header-button .tel,
.hero .header-button .mail {
  display: inline-block;
  background-color: #DDAA44;
  border-radius: 50px;
}
.hero .header-button .tel a,
.hero .header-button .mail a {
  color: #000000;
  text-decoration: none;
}
.hero .header-button .tel {
  background-image: url("../../assets/images/phone.svg") !important;
  border-radius: 50%;
  position: absolute;
  background-position: center;
  width: 3rem;
  height: 3rem;
  background-size: 60%;
  background-repeat: no-repeat;
  top: 8rem;
  right: 1rem;
  cursor: pointer;
}
@media only screen and (min-width: 550px) {
  .hero .header-button .tel {
    top: 6rem;
  }
}
@media only screen and (min-width: 850px) {
  .hero .header-button .tel {
    top: 12rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero .header-button .tel {
    top: 20rem;
  }
}
.hero .header-button .tel-show {
  width: 12rem;
  border-radius: 50px;
  background-size: 15%;
  background-position: 1rem center;
}
.hero .header-button .tel .anker-none {
  display: none;
}
.hero .header-button .tel .anker-show {
  display: block;
  padding: 1rem 0;
  margin-left: 2rem;
}
.hero .header-button .mail {
  background-image: url("../../assets/images/mail.svg") !important;
  border-radius: 50%;
  position: absolute;
  background-position: center;
  width: 3rem;
  height: 3rem;
  background-size: 60%;
  background-repeat: no-repeat;
  top: 12rem;
  right: 1rem;
  cursor: pointer;
}
@media only screen and (min-width: 550px) {
  .hero .header-button .mail {
    top: 10rem;
  }
}
@media only screen and (min-width: 850px) {
  .hero .header-button .mail {
    top: 16rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero .header-button .mail {
    top: 24rem;
  }
}
.hero .header-button .mail-show {
  width: 13rem;
  border-radius: 50px;
  background-size: 15%;
  background-position: 1rem center;
}
.hero .header-button .mail .anker-none {
  display: none;
}
.hero .header-button .mail .anker-show2 {
  display: block;
  padding: 1rem 0;
  margin-left: 3rem;
}

/*###### MAIN #####*/
@media only screen and (min-width: 1400px) {
  .text {
    width: 80%;
    margin: 0 auto;
  }
}

.koerper {
  position: absolute;
  right: -5rem;
  width: 10rem;
  top: 90rem;
}
@media only screen and (min-width: 600px) {
  .koerper {
    top: 83rem;
  }
}
@media only screen and (min-width: 700px) {
  .koerper {
    top: 50rem;
  }
}
@media only screen and (min-width: 900px) {
  .koerper {
    top: 54rem;
    width: 13rem;
  }
}

/*h4 display none responsive*/
@media only screen and (min-width: 500px) {
  h4 {
    display: none;
  }
}
/*Standorte*/
@media only screen and (min-width: 700px) {
  .standort {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
}
@media only screen and (min-width: 700px) {
  .standort h2 {
    rotate: -90deg;
    font-weight: 600;
  }
}
@media only screen and (min-width: 1000px) {
  .standort h2 {
    font-size: 4rem;
    position: relative;
    left: -2rem;
  }
}
@media only screen and (min-width: 700px) {
  .standort .rotate h2 {
    rotate: 90deg;
    font-weight: 600;
  }
}
@media only screen and (min-width: 1000px) {
  .standort .rotate h2 {
    font-size: 4rem;
    position: relative;
    left: -2rem;
  }
}
.standort div {
  position: relative;
  transition: all 0.5s ease;
}
.standort div.standort__wrap {
  border: 1px solid black;
  max-width: 19rem;
  margin-left: auto;
  margin-right: auto;
}
.standort div.standort__wrap:first-of-type {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 700px) {
  .standort div.standort__wrap:first-of-type {
    margin-bottom: 0;
    margin-right: 2rem;
  }
}
@media only screen and (min-width: 1000px) {
  .standort div.standort__wrap:first-of-type {
    margin-right: 5rem;
  }
}
.standort div:hover .hover-standort {
  bottom: 0;
  transition: all 0.5s ease;
}
.standort .standort__map div {
  position: relative;
  transition: all 0.5s ease;
}
.standort .standort__map div.standort__wrap {
  border: 1px solid black;
  max-width: 19rem;
  margin-left: auto;
  margin-right: auto;
}
.standort .standort__map div.standort__wrap:first-of-type {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 700px) {
  .standort .standort__map div.standort__wrap:first-of-type {
    margin-bottom: 0;
    margin-right: 2rem;
  }
}
@media only screen and (min-width: 1000px) {
  .standort .standort__map div.standort__wrap:first-of-type {
    margin-right: 5rem;
  }
}
.standort .standort__map div:hover .hover-standort {
  bottom: 0;
  transition: all 0.5s ease;
}
.standort img {
  filter: blur(2px);
}
.standort .hover-standort {
  text-align: start;
  padding: 0.7rem;
  position: absolute;
  bottom: -5.5rem;
}
.standort .hover-standort h3 {
  font-size: 2.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
}
.standort .hover-standort .green-line {
  background-color: #669043;
  width: 70%;
  height: 4px;
}

/*Footer*/
#primary-menu > li {
  display: inline-block;
  position: relative;
  /* margin: 15px;*/
}

#primary-menu > li ul {
  position: absolute;
  left: 0;
  padding: 0;
  display: none;
}

#primary-menu > li ul li {
  white-space: nowrap;
}

#primary-menu > li:hover ul {
  display: block;
}

.rowpartners {
  display: block;
  padding-bottom: 5rem;
  background-image: url("../../public/uploads/background-footer-gris.png");
  background-size: cover;
  /*290224*/
  /*margin-top: 2rem;*/
  /* margin-bottom: -13rem;

  @media only screen and (min-width: 400px) {
      margin-bottom: -12rem;
  }

  @media only screen and (min-width: 500px) {
      margin-bottom: -11rem;
  }

  @media only screen and (min-width: 1200px) {
      margin-bottom: -7rem;
  }*/
}
.rowpartners h1 {
  color: #000000;
}

.rowpartnersüberuns {
  display: block;
  padding-bottom: 5rem;
  background-image: url("../../public/uploads/background-footer-gris.png");
  background-size: cover;
  margin-bottom: -7rem;
}
@media only screen and (min-width: 400px) {
  .rowpartnersüberuns {
    margin-bottom: -12rem;
  }
}
@media only screen and (min-width: 500px) {
  .rowpartnersüberuns {
    margin-bottom: -11rem;
  }
}
@media only screen and (min-width: 1200px) {
  .rowpartnersüberuns {
    margin-bottom: -7rem;
  }
}
.rowpartnersüberuns h1 {
  color: #000000;
}

footer {
  position: absolute;
  padding-top: 1.4rem;
  /* z-index: 99; */
  width: 100%;
  background-image: url("../../public/uploads/Footer.png");
  /*     background-size: cover;
  */
  background-size: 100% 110%;
  /*background-repeat: no-repeat;
  background-position: top center;
  padding-top: .45rem;*/
}
@media only screen and (min-width: 400px) {
  footer {
    background-size: cover;
  }
}
footer h3 {
  color: #ffffff;
  font-weight: 700;
  font-family: "Noto Sans Gujarati", sans-serif;
  margin-bottom: 0.5rem;
}
footer .list {
  color: #ffffff;
  list-style: none;
}
footer .list a {
  text-decoration: none;
  color: #ffffff;
}
footer .list a.active {
  color: #C9C9C9;
}
@media only screen and (min-width: 600px) {
  footer .list li {
    display: grid;
  }
}
@media only screen and (min-width: 1061px) {
  footer .list li {
    display: flex;
  }
}
@media only screen and (min-width: 500px) {
  footer {
    padding-top: 0.8rem;
  }
}
@media only screen and (min-width: 1000px) {
  footer {
    padding-top: 1.4rem;
  }
}
@media only screen and (min-width: 500px) {
  footer figure {
    padding-top: 1rem;
  }
}
footer figure img {
  max-width: 21rem;
}
footer .footer-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (min-width: 700px) {
  footer .footer-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
}
footer .footer-wrap .standort-footer {
  text-align: start;
}
footer .footer-wrap .standort-footer a {
  color: black;
  text-decoration: none;
}
@media only screen and (min-width: 700px) {
  footer .footer-wrap .oeffnungszeiten {
    padding-top: 0rem;
  }
}
@media only screen and (min-width: 1000px) {
  footer .impressum-wrap {
    display: flex;
    justify-content: center;
  }
  footer .impressum-wrap div:first-child {
    padding-right: 2rem;
  }
}
footer .impressum-wrap a {
  color: black;
  text-decoration: none;
}
@media only screen and (min-width: 500px) {
  footer .impressum-wrap .imp-dat {
    padding-bottom: 2rem;
  }
}
footer .rowfooters {
  /*display: flex;*/
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: center;
  /*  padding-top: 10rem;*/
  padding-top: 5rem;
  display: block;
  /*  @media only screen and (min-width: 1920px) {

      margin-left: 4rem;
      margin-right: -9rem;

  }*/
}
@media only screen and (min-width: 600px) {
  footer .rowfooters {
    display: flex;
  }
}
@media only screen and (min-width: 1200px) {
  footer .rowfooters {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
footer .colfooter {
  text-align: center;
  padding: 1.5rem;
  /* margin-bottom: 2rem;*/
  font-size: 0.85rem;
}
@media only screen and (min-width: 400px) {
  footer .colfooter {
    text-align: center;
  }
}
@media only screen and (min-width: 600px) {
  footer .colfooter {
    text-align: left;
    /* width: 33%;*/
    width: auto;
  }
}

:root {
  --navbar-bg-color: hsl(0, 0%, 15%);
  --navbar-text-color: hsl(0, 0%, 85%);
  --navbar-text-color-focus: white;
  --navbar-bg-contrast: hsl(0, 0%, 25%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  margin-left: auto;
  margin-right: auto;
  /* 11/22/2023*/
}
@media only screen and (min-width: 1200px) {
  .container {
    /* padding: 0.5rem 7rem;*/
    /* padding: 0.5rem 5.4rem;*/
    padding: 0.5rem 7.4rem;
  }
}

/* Container */
/* swiper button css */
.nav-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.3);*/
}

.nav-btn:hover {
  /* background: rgba(255, 255, 255, 0.4);*/
}

.swiper-button-next {
  right: 50px;
}

.swiper-button-prev {
  left: 50px;
}

.nav-btn::before,
.nav-btn::after {
  font-size: 25px;
  color: black;
}

.swiper-pagination-bullet {
  border-radius: 50%;
  opacity: 1;
  height: 10px;
  width: 10px;
  background-color: black;
  visibility: hidden;
}

.swiper-pagination-bullet-active {
  /*  border: 2px solid #fff;*/
  background-color: #BD202A;
}

@media screen and (max-width: 700px) {
  .nav-btn {
    visibility: hidden;
  }
  .swiper-pagination-bullet {
    visibility: visible;
  }
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    visibility: visible;
  }
}

.sliderpage {
  /*bottom: 71px !important;*/
  /*   @media screen and (min-width:320px) {
      bottom: 9px !important;
  }

  @media screen and (min-width:456px) {
      bottom: 34px !important;
  }

  @media screen and (min-width:700px) {
      bottom: 4.5px !important;
  }

  @media screen and (min-width:1320px) {
      /*left: 20% !important;*/
  /* top: 35% !important;
  }

  @media screen and (min-width:1400px) {

  }*/
}
@media screen and (min-width: 750px) {
  .sliderpage {
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .sliderpage {
    /*  bottom: 137px !important;*/
  }
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto !important;
}
.swiper-slide img {
  /* @media screen and (min-width:1400px) {

      height: 50vh;
  }*/
  width: 100%;
}

/* contact header */
.contactdaten {
  background-color: #F3F3F3;
  /*margin-top: -1.5rem;*/
}

.menucontact {
  font-weight: 600;
}
.menucontact ul {
  /*22/11/2023*/
  /* padding: 0.5rem 3rem;**/
  /*padding: 0.5rem;*/
  justify-content: space-around;
  padding: 0.5rem 3rem;
  /* height: 100px;*/
  /*@media screen and (min-width:1700px) {
      margin-left: 3rem;
      margin-right: 3rem;
  }*/
}
@media screen and (min-width: 1098px) {
  .menucontact ul {
    display: flex;
    list-style-type: none;
    /* justify-content: center;*/
    /*padding: 0rem;
    /*margin: 1rem;*/
  }
}
.menucontact li {
  margin: 1.5rem;
  list-style: none;
  color: #BD202A;
  display: list-item;
}
@media screen and (min-width: 1098px) {
  .menucontact li {
    display: grid;
  }
}
@media screen and (min-width: 1098px) {
  .menucontact li {
    display: flex;
  }
}
.menucontact a {
  color: #BD202A;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  /* padding: 1rem;*/
}

@media only screen and (min-width: 1200px) {
  .container {
    /*padding: 2rem;*/
  }
}
.grid,
.row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-column-gap: var(--column-gap);
  grid-row-gap: var(--row-gap);
  /* grid-template-columns: repeat(2, minmax(10px, 1fr));*/
}
@media only screen and (min-width: 600px) {
  .grid,
  .row {
    text-align: left;
  }
}

@media only screen and (min-width: 768px) {
  .grid,
  .row {
    /* grid-template-columns: repeat(6, minmax(10px, 1fr));*/
    grid-template-columns: initial;
  }
}
/* 15/01/2024*/
/*@media only screen and (min-width: 1200px) {

    .grid,
    .row {
        grid-template-columns: repeat(12, minmax(10px, 1fr));
    }
}*/
/*
.row {
   padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.row+.row {
    margin-top: var(--row-gap);
}*/
.col {
  max-width: 100%;
  grid-column-end: span 2;
}

@media only screen and (min-width: 768px) {
  .col {
    grid-column-end: span 6;
  }
}
@media only screen and (min-width: 1200px) {
  .col {
    grid-column-end: span 12;
  }
}
.col.s1 {
  grid-column-end: span 1;
}

.col.s2 {
  grid-column-end: span 2;
  padding: 0.5rem;
}

@media only screen and (min-width: 768px) {
  .col.s1 {
    grid-column-end: span 3;
  }
  .col.s2 {
    grid-column-end: span 6;
  }
  .col.m1 {
    grid-column-end: span 1;
  }
  .col.m2 {
    grid-column-end: span 2;
  }
  .col.m3 {
    grid-column-end: span 3;
  }
  .col.m4 {
    grid-column-end: span 4;
  }
  .col.m5 {
    grid-column-end: span 5;
  }
  .col.m6 {
    grid-column-end: span 6;
  }
}
@media only screen and (min-width: 1024px) {
  .col.l1 {
    grid-column-end: span 1;
  }
  .col.l2 {
    grid-column-end: span 2;
  }
  .col.l3 {
    grid-column-end: span 3;
  }
  .col.l4 {
    grid-column-end: span 4;
  }
  .col.l5 {
    grid-column-end: span 5;
  }
  .col.l6 {
    grid-column-end: span 6;
  }
}
@media only screen and (min-width: 1200px) {
  .col.s1 {
    grid-column-end: span 6;
  }
  .col.s2 {
    grid-column-end: span 12;
  }
  .col.m1 {
    grid-column-end: span 2;
  }
  .col.m2 {
    grid-column-end: span 4;
  }
  .col.m3 {
    grid-column-end: span 6;
  }
  .col.m4 {
    grid-column-end: span 8;
  }
  .col.m5 {
    grid-column-end: span 10;
  }
  .col.m6 {
    grid-column-end: span 12;
  }
  .col.l1 {
    grid-column-end: span 2;
  }
  .col.l2 {
    grid-column-end: span 4;
  }
  .col.l3 {
    grid-column-end: span 6;
  }
  .col.l4 {
    grid-column-end: span 8;
  }
  .col.l5 {
    grid-column-end: span 10;
  }
  .col.l6 {
    grid-column-end: span 12;
  }
  .col.xl1 {
    grid-column-end: span 1;
  }
  .col.xl2 {
    grid-column-end: span 2;
  }
  .col.xl3 {
    grid-column-end: span 3;
  }
  .col.xl4 {
    grid-column-end: span 4;
  }
  .col.xl5 {
    grid-column-end: span 5;
  }
  .col.xl6 {
    grid-column-end: span 6;
  }
  .col.xl7 {
    grid-column-end: span 7;
  }
  .col.xl8 {
    grid-column-end: span 8;
  }
  .col.xl9 {
    grid-column-end: span 9;
  }
  .col.xl10 {
    grid-column-end: span 10;
  }
  .col.xl11 {
    grid-column-end: span 11;
  }
  .col.xl12 {
    grid-column-end: span 12;
  }
}
@media only screen and (min-width: 1600px) {
  .col.sl1 {
    grid-column-end: span 1;
  }
  .col.sl2 {
    grid-column-end: span 2;
  }
  .col.sl3 {
    grid-column-end: span 3;
  }
  .col.sl4 {
    grid-column-end: span 4;
  }
  .col.sl5 {
    grid-column-end: span 5;
  }
  .col.sl6 {
    grid-column-end: span 6;
  }
  .col.sl7 {
    grid-column-end: span 7;
  }
  .col.sl8 {
    grid-column-end: span 8;
  }
  .col.sl9 {
    grid-column-end: span 9;
  }
  .col.sl10 {
    grid-column-end: span 10;
  }
  .col.sl11 {
    grid-column-end: span 11;
  }
  .col.sl12 {
    grid-column-end: span 12;
  }
}
.col.start--s1 {
  grid-column-start: 1;
}

.col.start--s2 {
  grid-column-start: 2;
}

@media only screen and (min-width: 768px) {
  .col.start--m1 {
    grid-column-start: 1;
  }
  .col.start--m2 {
    grid-column-start: 2;
  }
  .col.start--m3 {
    grid-column-start: 3;
  }
  .col.start--m4 {
    grid-column-start: 4;
  }
  .col.start--m5 {
    grid-column-start: 5;
  }
  .col.start--m6 {
    grid-column-start: 6;
  }
}
@media only screen and (min-width: 1024px) {
  .col.start--l1 {
    grid-column-start: 1;
  }
  .col.start--l2 {
    grid-column-start: 2;
  }
  .col.start--l3 {
    grid-column-start: 3;
  }
  .col.start--l4 {
    grid-column-start: 4;
  }
  .col.start--l5 {
    grid-column-start: 5;
  }
  .col.start--l6 {
    grid-column-start: 6;
  }
}
@media only screen and (min-width: 1200px) {
  .col.start--xl1 {
    grid-column-start: 1;
  }
  .col.start--xl2 {
    grid-column-start: 2;
  }
  .col.start--xl3 {
    grid-column-start: 3;
  }
  .col.start--xl4 {
    grid-column-start: 4;
  }
  .col.start--xl5 {
    grid-column-start: 5;
  }
  .col.start--xl6 {
    grid-column-start: 6;
  }
  .col.start--xl7 {
    grid-column-start: 7;
  }
  .col.start--xl8 {
    grid-column-start: 8;
  }
  .col.start--xl9 {
    grid-column-start: 9;
  }
  .col.start--xl10 {
    grid-column-start: 10;
  }
  .col.start--xl11 {
    grid-column-start: 11;
  }
  .col.start--xl12 {
    grid-column-start: 12;
  }
}
@media only screen and (min-width: 1600px) {
  .col.start--sl1 {
    grid-column-start: 1;
  }
  .col.start--sl2 {
    grid-column-start: 2;
  }
  .col.start--sl3 {
    grid-column-start: 3;
  }
  .col.start--sl4 {
    grid-column-start: 4;
  }
  .col.start--sl5 {
    grid-column-start: 5;
  }
  .col.start--sl6 {
    grid-column-start: 6;
  }
  .col.start--sl7 {
    grid-column-start: 7;
  }
  .col.start--sl8 {
    grid-column-start: 8;
  }
  .col.start--sl9 {
    grid-column-start: 9;
  }
  .col.start--sl10 {
    grid-column-start: 10;
  }
  .col.start--sl11 {
    grid-column-start: 11;
  }
  .col.start--sl12 {
    grid-column-start: 12;
  }
}
.Stuckateurmeister {
  color: #BD202A;
}

.separator {
  position: relative;
  height: 2px;
  background: #BD202A;
  width: 133px;
  /*27/11/23*/
  margin-bottom: 0.7rem;
}
@media only screen and (min-width: 700px) {
  .separator {
    width: 176px;
  }
}

.separatorvob {
  position: relative;
  height: 2px;
  background: #ffffff;
  width: 133px;
  /*27/11/23*/
  margin-bottom: 0.7rem;
}
@media only screen and (min-width: 700px) {
  .separatorvob {
    width: 176px;
  }
}

.titlpartners {
  padding-bottom: 0.5rem;
  display: block;
}

.partnerslogos {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 700px) {
  .partnerslogos {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1200px) {
  .partnerslogos img {
    width: 48%;
  }
}

.partnersmargin {
  margin-bottom: 1rem;
}

.mehrstartseite {
  border: none;
  color: red;
  background: transparent;
  /*  font-size: 1.3rem;*/
  font-size: 1rem;
  position: relative;
  z-index: 10;
  text-decoration: none;
  /* @media only screen and (min-width: 1500px) {
      margin-left: 4rem;
  }*/
}

.mehrbuttoncol {
  display: none;
}
@media only screen and (min-width: 700px) {
  .mehrbuttoncol {
    display: block;
  }
}

.copyrith {
  font-size: 0.77rem;
  color: #fff;
}
.copyrith a {
  text-decoration: none;
  color: #fff;
}

.gg-chevron-down {
  display: flex;
}

.gg-chevron-down {
  box-sizing: border-box;
  position: relative;
  /* display: block;*/
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 100px;
}

/*23/11/2023*/
div.container {
  width: 500px;
  margin: 50px auto;
}

select {
  position: absolute;
  padding: 0px;
  left: 0;
  border-radius: 9px;
  outline: none;
  border-bottom: 0px solid #c9c9c9;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  color: #444444;
  -webkit-appearance: button;
  /* -webkit-border-radius: 2px; */
  /* -webkit-padding-end: 20px; */
  /* -webkit-padding-start: 2px; */
  /* -webkit-user-select: none; */
  /*  background-color: white;**/
  /* background-image: url(https://d30y9cdsu7xlg0.cloudfront.net/png/221782-200.png); */
  background-position: 97% center;
  background-repeat: no-repeat;
  /* background-size: contain; */
  margin: 20px;
  overflow: hidden;
  /* padding: 5px 10px; */
  /* text-overflow: ellipsis; */
  /* white-space: nowrap; */
  min-width: 48px;
  color: black;
  text-decoration: none;
  display: inline-block;
  /*padding: 1rem;*/
  font-size: 1.4rem;
  font-weight: 400;
  width: 178px;
  /* -webkit-appearance: none;*/
  /*-moz-appearance:    none;
  appearance:         none;*/
  /* option {
      position: relative;
  }*/
}
@media only screen and (max-width: 1350px) {
  select {
    width: 150px;
    font-size: 2rem;
  }
}

.selectprojekte {
  width: 135px;
}

select:focus {
  outline: none;
  background-color: transparent;
}

option:hover {
  background-color: yellow;
}

option:checked,
option:focus {
  background-color: lime;
}

select option {
  position: relative;
  border-radius: 9px;
  -webkit-appearance: none;
  border: none;
  /* position: absolute;*/
  /*  background: rgba(255, 0, 0, 0.219);   */
  /* background: transparent;*/
}

/*select:after {
    background: transparent;
}*/
/*option:focus {

  }*/
/*hover color*/
.respimglog {
  vertical-align: baseline;
  width: 134px;
}
@media only screen and (max-width: 350px) {
  .respimglog {
    /* width: 30%;*/
    display: block;
    margin-left: auto;
    margin-right: auto;
    /*width: 50%;*/
  }
}
@media only screen and (min-width: 500px) {
  .respimglog {
    /*width: 30%;*/
  }
}
@media only screen and (min-width: 700px) {
  .respimglog {
    /* width: 20%;*/
  }
}
@media only screen and (min-width: 1000px) {
  .respimglog {
    /* width: 10%;*/
  }
}
@media only screen and (min-width: 1800px) {
  .respimglog {
    /*width: 30%;*/
    width: 25%;
  }
}

.responsive-img {
  max-width: 100%;
}
@media only screen and (min-width: 400px) {
  .responsive-img {
    max-width: 70%;
  }
}
@media only screen and (min-width: 500px) {
  .responsive-img {
    max-width: 50%;
  }
}

.textfooter {
  /* 06.02.2024*/
  margin-bottom: 1rem;
  /*290224*/
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: flex-start;
  /* 12.02.2024*/
}
@media only screen and (max-width: 600px) {
  .textfooter {
    text-align: -webkit-center;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 1700px) {
  .textfooter {
    display: flex;
  }
}
@media only screen and (min-width: 1700px) {
  .textfooter .footeteil1 {
    margin-left: 4rem;
  }
  .textfooter .footeteil2 {
    margin-left: 23rem;
  }
}
@media only screen and (min-width: 1920px) {
  .textfooter {
    /* @media only screen and (min-width: 1500px) {
    .footeteil2 {
        margin-left: 23rem;

    }}*/
  }
  .textfooter .footeteil2 {
    margin-left: 28rem;
  }
}

#menu {
  border: none;
  border: 0px;
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  font-weight: bold;
}

#nav li {
  display: inline-block;
  position: relative;
  float: left;
}

#nav li a {
  display: inline-block;
  /* width:200px;*/
  /*line-height:35px;*/
  padding: 0;
  text-decoration: none;
  /* color: #000000;*/
  transition: 2s;
}

#nav li a:active {
  color: #BD202A;
}

#nav li li {
  float: left;
}

#nav li li a {
  display: block;
  font-size: 1.2rem;
  text-align: center;
}

/*#submenu li:hover {

    text-align: center;
    color: #ffffff;
    @media only screen and (max-width: 1350px) {
        height: 160px;
    }


}*/
/* #submenu  li:hover .submenuhover {
        height: 140px;
    } */
#submenu li a:hover {
  transition: 2s;
  color: #ffffff;
}

/*--- Sublist Styles ---*/
#nav ul {
  position: absolute;
  padding: 0px;
  left: 0;
  display: none;
  -webkit-appearance: button;
}

/*--- Hide Sub Sublists ---*/
#nav li:hover ul ul {
  display: none;
}

/*--- Sublevel UL's display and position on hover ---*/
#nav li:hover ul {
  display: block;
  background: rgba(255, 0, 0, 0.219);
  /*08.02.2024*/
  /*height: 140px;*/
}

/* li:hover  {
          @media only screen and (max-width: 1350px) {
        height: 140px;
    }

}*/
/* li.hover:hoverclass1::after{
    color: red;
  } */
/*08:02:2024*/
/* li.attribute2:hover {
    @media only screen and (max-width: 1350px) {
        height: 165px;
    }
}

li.attribute:hover {
    @media only screen and (max-width: 1350px) {
        height: 160px;

        margin-bottom: 0.5rem;
    }
} */
.überuns {
  display: block;
}
@media only screen and (min-width: 700px) {
  .überuns {
    display: flex;
  }
}
.überuns .übermich {
  color: #000000;
}
.überuns .Vergabe {
  color: #ffffff;
}
.überuns .imgback {
  background: url("http://stuckateurbetriebzimmermann/public/uploads/Ellipse.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  max-height: 251px;
}
@media only screen and (min-width: 300px) {
  .überuns .imgback {
    max-height: 328px;
  }
}
@media only screen and (min-width: 365px) {
  .überuns .imgback {
    max-height: 369px;
  }
}
.überuns .imageHolger {
  /*height: 50%;*/
  /*  @media only screen and (min-width: 700px) {
      width: 40%;

  } */
}
@media only screen and (min-width: 400px) {
  .überuns .imageHolger {
    width: 50%;
  }
}

@media only screen and (min-width: 750px) {
  .colüberuns {
    width: 50%;
    /* padding: 2rem !important;*/
  }
}

.badge-ort {
  /*  display: inline-block; */
  /*290224*/
  margin-top: 35px;
}
@media only screen and (min-width: 1700px) {
  .badge-ort {
    text-align: center;
    margin-left: -3rem;
  }
}

.badge {
  width: 10%;
}
@media only screen and (min-width: 350px) {
  .badge {
    margin-bottom: -0.3rem;
  }
}

bodytimeline {
  background: linear-gradient(55deg, #4E75B9 30%, #5CBF98 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 12vh 100px;
  font-family: "Source Sans Pro", arial, sans-serif;
  font-weight: 300;
  color: #333;
  box-sizing: border-box;
}
bodytimeline * {
  box-sizing: border-box;
}

.timeline {
  width: 100%;
  max-width: 800px;
  background: #fff;
  /*padding: 100px 50px;*/
  position: relative;
  /* box-shadow: $container-shadow;*/
}
.timeline:before {
  content: "";
  position: absolute;
  top: 0px;
  left: calc(33% + 15px);
  bottom: 0px;
  width: 4px;
  background: #ce3b3b;
}
.timeline:after {
  content: "";
  display: table;
  clear: both;
}

.entry {
  clear: both;
  text-align: left;
  position: relative;
}
.entry .title {
  margin-bottom: 0.5em;
  float: left;
  width: 33%;
  /*padding-right: $gutter;*/
  text-align: right;
  position: relative;
  /*     &:before {
    content: '';
    position: absolute;
    width: $dot-diameter;
    height: $dot-diameter;
    border: $border-width solid salmon;
    background-color:#fff;
    border-radius:100%;
    top: 15%;
    right: -$dot-diameter;
    z-index: 99;
  } */
}
.entry .title h3 {
  margin: 0;
  font-size: 120%;
}
.entry .title p {
  margin: 0;
  font-size: 100%;
}
.entry .bodytimeline {
  margin: 0 0 3em;
  float: right;
  width: 66%;
  padding-left: 30px;
}
.entry .bodytimeline p {
  line-height: 1.4em;
}
.entry .bodytimeline p:first-child {
  margin-top: 0;
  font-weight: 400;
}
.entry .bodytimeline ul {
  color: #aaa;
  padding-left: 0;
  list-style-type: none;
}
.entry .bodytimeline ul li:before {
  content: "–";
  margin-right: 0.5em;
}

.überunssection2 {
  display: flex;
}

.accordion1 {
  background-color: #eee;
  /* background-color: gray;*/
  border: 1px solid black;
  margin-bottom: 1rem;
  border-radius: 15px;
  padding: 3.5px;
  margin-top: 0.5rem;
}

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  color: black;
}
@media only screen and (min-width: 700px) {
  .accordion {
    font-size: 21px;
  }
}

.accordion:after {
  content: "❯";
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  transform: rotate(92deg);
}

.actives:after {
  content: "❯";
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  transform: rotate(269deg);
}

.actives,
.accordion:hover {
  background-color: #eee;
}

.actives {
  border-bottom: 1px solid black;
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.Partnerlogimgs {
  display: block;
}
@media only screen and (min-width: 1000px) {
  .Partnerlogimgs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 2rem 4rem;
  }
}

.Zertifizierungenimgs {
  display: block;
}
@media only screen and (min-width: 400px) {
  .Zertifizierungenimgs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 2rem 4rem;
  }
}
.Zertifizierungenimgs .Zertifkat {
  display: flex;
  flex: 1 1 30%;
  padding: 1rem 1rem;
}
@media only screen and (min-width: 700px) {
  .Zertifizierungenimgs {
    display: flex;
  }
}

@media only screen and (min-width: 400px) {
  .imgPartner {
    width: 300px;
  }
}

/* .aboutcenter{
    background-color: #F5F5F5;
    position: relative;
    top: 0px;
    text-align: center;
    color: rgb(255,126,126,10%);

} */
.aboutbackground {
  width: 100%;
  background-image: url("/public/uploads/backgrounduberuns.png");
  background-position: -1px top;
  background-size: calc(100% + 2px);
  background-repeat: no-repeat;
  padding-top: 6vw;
  position: relative;
}

.Partnerbackground {
  width: 100%;
  background-image: url("/public/uploads/backgroundpartner-ueberuns.png");
  background-position: -1px top;
  background-size: calc(100% + 2px);
  background-repeat: no-repeat;
  padding-top: 6vw;
  position: relative;
}

.formularkontaktbackground {
  width: 112%;
  background-image: url("/public/uploads/Vector.png");
  background-position: -1px top;
  background-size: calc(100% + 2px);
  background-repeat: no-repeat;
  padding-top: 8vw;
  position: relative;
}

.formularclass {
  background-color: #F8f8f8;
}
@media only screen and (min-width: 700px) {
  .formularclass {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-evenly;
    align-items: stretch;
  }
}

.buttonformular {
  background-color: #BBBBBB;
  /* line-height: 1.8125rem !important;
  line-height: 2.8125rem;*/
  padding: 0 1.5rem;
  border-radius: 0.75rem;
  border: none;
  border: 1px solid transparent;
  font-size: 1.125rem;
  color: black;
  text-decoration: none;
  box-shadow: var(--depth-2);
  cursor: pointer;
}
@media only screen and (min-width: 700px) {
  .buttonformular {
    /*width: 20em;*/
    width: 25em;
    height: 2em;
  }
}

.überunsbackground {
  background-color: #F5F5F5;
}

.unsereleistungen {
  background-color: #ffffff;
}

.Leistungbackground {
  width: 100%;
  background-image: url("/public/uploads/Leistungbackground2.png");
  background-position: -1px top;
  background-size: calc(100% + 2px);
  background-repeat: no-repeat;
  padding-top: 10vw;
  position: relative;
  background-color: #ffffff;
}

@media only screen and (min-width: 700px) {
  .text-lesitung {
    /*14-02-2024
    margin-top: 1.5rem;*/
    margin-top: 0.5rem;
  }
}

.vergabebackground {
  width: 100%;
  background-image: url("/public/uploads/Frame.png");
  background-position: -1px top;
  background-size: calc(100% + 2px);
  background-repeat: no-repeat;
  padding-top: 10vw;
  position: relative;
  background-color: #DADADA;
}

.vob {
  color: #FFFFFF;
  background-color: #EE424D;
  height: 61vh;
  margin-bottom: -10rem;
}
@media only screen and (min-width: 700px) {
  .vob {
    margin-bottom: -16rem;
  }
}

.buttons {
  background-color: #ffffff;
  border-radius: 8px;
  border-width: 0.1mm;
  padding: 9px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  margin-top: 1rem;
}
.buttons a {
  text-decoration: none;
  color: #010000;
}

.horizontal-flex-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  background: #808080;
  margin: 4rem;
}

.produktlist {
  padding-left: 0rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  -moz-column-gap: 20px;
       column-gap: 20px;
  list-style: none;
}
.produktlist li a {
  color: #760000;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
}
.produktlist a:hover {
  color: #EE424D;
}
@media only screen and (min-width: 445px) {
  .produktlist {
    -moz-column-count: 2;
         column-count: 2;
  }
}

/* Leistungen List */
.leistungen {
  background-color: #F5F5F5;
}

/** footer projekte seite */
.projekte {
  background-color: #F5F5F5;
}

/* Projekte section Images */
.tablinks {
  font-size: 16px;
}

.activesb {
  background-color: white;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.listrow {
  padding-bottom: 2rem;
  background-color: #F5F5F5;
}
@media only screen and (min-width: 700px) {
  .listrow {
    display: flex;
    gap: 30px;
  }
}

@media only screen and (min-width: 700px) {
  .listcol {
    position: relative;
    padding: 2rem !important;
  }
}

.titelitemlist {
  color: #890000;
  /*15.02.24*/
}
@media only screen and (min-width: 700px) {
  .titelitemlist {
    font-size: 1.5rem;
  }
}

.mehrlist {
  margin: 22px 2px;
  border-radius: 2px !important;
  padding: 9px 45px !important;
}
@media only screen and (min-width: 700px) {
  .mehrlist {
    /*margin-top:10rem ;*/
    /*   position: absolute;
    /*bottom: 0.6rem;*/
    /* bottom: 1.5rem;  */
    /*    bottom: 1%;
    position: absolute;
    left: 62%;
    bottom: 10px;*/
  }
}

.mehrlist1 {
  border: none;
  background-color: #BD202A;
  color: white;
  /* padding: 9px 10px; */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  /* margin: 4px 2px; */
  cursor: pointer;
  /* border-radius: 2px !important;*/
  padding-left: 45px;
  padding-right: 45px;
  padding-bottom: 9px;
  padding-top: 9px;
  margin-bottom: 9px;
  border-radius: 5px !important;
}

/* Style the tab */
.tab {
  padding-top: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: inline-grid;
  float: left;
  /* border: 1px solid #ccc;*/
  /*background-color: #f1f1f1;*/
  /*  width: 30%;
  height: 300px;*/
}
@media only screen and (min-width: 700px) {
  .tab {
    display: flex;
  }
}
@media only screen and (min-width: 1500px) {
  .tab {
    position: relative;
    top: 20px;
  }
}

/* Style the buttons that are used to open the tab content */
.tab button {
  display: block;
  /*background-color: inherit;*/
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  /*text-align: left;*/
  cursor: pointer;
}
@media only screen and (min-width: 900px) {
  .tab button {
    /* padding: 22px 121px;*/
  }
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #FFF;
}

/* Create an active/current "tab button" class */
/* .tab button:active {
    background-color: #FFF;;
}
/* .tablinks button:active {
    background-color: #FFF;;
} */
/*  .activesb {
    background-color: red;
    }*/
/*.tab button:active {
        background-color: #8f3c3c;;
    }*/
.listimgprojekte {
  list-style: none;
  -moz-column-count: 3;
  -moz-column-gap: 5px;
  -webkit-column-count: 3;
  -webkit-column-gap: 5px;
  -moz-column-count: 1;
       column-count: 1;
  column-gap: 5px;
}
@media only screen and (min-width: 400px) {
  .listimgprojekte {
    -moz-column-count: 3;
         column-count: 3;
  }
}

.tabcontent {
  display: none;
  background-color: #FFF;
}

.buttonLieferanten {
  margin-top: 2rem;
  background-image: url("../../public/uploads/Rectangle_19.png");
  background-size: contain;
  width: 12rem;
  background-repeat: no-repeat;
  /* border: none; */
  background-color: white;
  border-radius: 0 !important;
  line-height: 1.8125rem !important;
  border: 1px solid transparent;
}
@media only screen and (min-width: 400px) {
  .buttonLieferanten {
    margin-top: 4rem;
  }
}
.buttonLieferanten a {
  text-decoration: none;
  font-size: 1rem;
  padding: -18px;
  color: white;
}

@media only screen and (min-width: 700px) {
  .stellenangebote {
    display: inline-flex;
  }
}

form {
  font-family: "Bebas Neue Book", sans-serif;
  /* background: #284e6a;*/
  /* background: #d6e0e799;*/
  padding: 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 0;
}

form > .form-field:last-child {
  /*margin-bottom: 0;*/
}

form .select.required + label,
form input[required]:not(#dsgvo):not([type=file]) + label,
form select[required] + label,
form textarea[required] + label {
  position: relative;
  text-align: start;
}

form .select.required + label:after,
form input[required]:not(#dsgvo):not([type=file]) + label:after,
form select[required] + label:after,
form textarea[required] + label:after {
  content: "*";
  margin-left: 0.125rem;
  color: var(--text--muted);
}

form input[type=file] + label + .alt-label {
  position: relative;
}

form input[type=file][required] + label + .alt-label:after {
  content: "*";
  margin-left: 0.625rem;
  color: var(--text--muted);
}

@media only screen and (min-width: 1200px) {
  form .btn,
  form button,
  form input[type=submit] {
    align-self: flex-end;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 1200px) {
  .form-group {
    /* flex-direction: row;*/
  }
}
.form-group > .form-field {
  flex: 1;
  padding-right: 0;
}

.form-group > .form-field + .form-field {
  margin-top: 1rem;
}

@media only screen and (min-width: 1200px) {
  .form-group > .form-field + .form-field {
    /*margin-left: 1.25rem;*/
    margin-top: 0;
  }
}
.form-field {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.form-field .alt-label,
.form-field label {
  /*font-family: "Bebas Neue Book", sans-serif;*/
  margin-bottom: 0.5rem;
  color: var(--text-normal);
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
}

.form-field .custom-select + label,
.form-field .select + label,
.form-field input:not(#dsgvo):not([type=file]) + label,
.form-field textarea + label {
  order: -1;
  /*  margin-left: 1rem;*/
}

.form-field input[type=file] + label + .alt-label {
  order: -1;
  /*margin-left: 1rem;*/
}

.form-field .check {
  display: flex;
  flex-direction: row;
}

.form-field .check input[type=checkbox] {
  /* margin-right: 1rem;*/
  flex-shrink: 0;
}

.form-field .check label,
.form-field .check label p {
  /*font-family: 'Inter';*/
  font-size: 0.8rem;
  color: black;
  cursor: pointer;
  font-weight: var(--fw-light);
  margin: 0;
}

.form-field .check label a,
.form-field .check label p a {
  color: #BD202A;
  text-decoration: none;
}

.form-field--row {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.form-field--row .btn,
.form-field--row button,
.form-field--row input[type=submit] {
  margin-left: auto;
}

.form-field--row input[type=checkbox],
.form-field--row input[type=radio] {
  top: 0;
}

.form-field--row label {
  margin-right: 0.625rem;
  margin-bottom: 0;
}

.form-field--row > * {
  margin-right: 0;
}

.form-field--file > input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.form-field.invalid input[type=date],
.form-field.invalid input[type=datetime-local],
.form-field.invalid input[type=email],
.form-field.invalid input[type=file] + label,
.form-field.invalid input[type=month],
.form-field.invalid input[type=number],
.form-field.invalid input[type=password],
.form-field.invalid input[type=search],
.form-field.invalid input[type=tel],
.form-field.invalid input[type=text],
.form-field.invalid input[type=time],
.form-field.invalid input[type=url],
.form-field.invalid input[type=week],
.form-field.invalid textarea {
  border-color: var(--error);
}

fieldset.form-field {
  border: 1px solid var(--main);
  border-radius: 0.25rem;
  padding: 0.35em 1rem 0;
}

fieldset.form-field legend {
  margin-bottom: 0.5rem;
  color: var(--text-normal);
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
  font-variation-settings: "wght" var(--fw-regular), "slnt" 0;
}

fieldset.form-field .options {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 1024px) {
  fieldset.form-field .options {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
fieldset.form-field .option {
  width: 100%;
  margin-bottom: 1rem;
}

@media only screen and (min-width: 1024px) {
  fieldset.form-field .option {
    width: 50%;
  }
}
fieldset.form-field input[type=checkbox] + label {
  cursor: pointer;
}

.underlineweiterboldung {
  text-underline-position: auto;
  -webkit-text-decoration: underline #BD202A;
          text-decoration: underline #BD202A;
  text-underline-offset: 10px;
  margin-bottom: 18px;
}

/* 31/01/2024*/
input[type=date],
input[type=datetime-local],
input[type=email],
input[type=file] + label,
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  width: 100%;
  height: 2.8125rem;
  line-height: 2.8125rem;
  padding: 0 1rem;
  /*border-radius: 0.75rem;*/
  border: none;
  /*border: 1px solid black;*/
  background: #EFEFEF;
  color: black;
  font-size: 1.125rem;
}

input[type=date]:placeholder,
input[type=datetime-local]:placeholder,
input[type=email]:placeholder,
input[type=file] + label:placeholder,
input[type=month]:placeholder,
input[type=number]:placeholder,
input[type=password]:placeholder,
input[type=search]:placeholder,
input[type=tel]:placeholder,
input[type=text]:placeholder,
input[type=time]:placeholder,
input[type=url]:placeholder,
input[type=week]:placeholder {
  color: var(--text-muted);
}

input[type=date]:active,
input[type=date]:focus,
input[type=datetime-local]:active,
input[type=datetime-local]:focus,
input[type=email]:active,
input[type=email]:focus,
input[type=file] + label:active,
input[type=file] + label:focus,
input[type=month]:active,
input[type=month]:focus,
input[type=number]:active,
input[type=number]:focus,
input[type=password]:active,
input[type=password]:focus,
input[type=search]:active,
input[type=search]:focus,
input[type=tel]:active,
input[type=tel]:focus,
input[type=text]:active,
input[type=text]:focus,
input[type=time]:active,
input[type=time]:focus,
input[type=url]:active,
input[type=url]:focus,
input[type=week]:active,
input[type=week]:focus {
  outline: none;
  border-color: var(--main);
}

input[type=file]:active + label,
input[type=file]:focus + label {
  outline: none;
  border-color: var(--main);
}

input[type=file] + label {
  cursor: pointer;
  line-height: calc(2.8125rem - 4px);
  transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (hover: hover) {
  input[type=file] + label:hover {
    background: var(--background-secondary);
  }
}
input[type=color] {
  width: 2.8125rem;
  height: 2.8125rem;
  border: 2px solid transparent;
  border-radius: 0.25rem;
  outline: none;
  vertical-align: middle;
  background: var(--background-primary);
  transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

@media (hover: hover) {
  input[type=color]:hover {
    background: var(--background-secondary);
  }
}
input[type=color]:active,
input[type=color]:focus {
  outline: none;
  border-color: var(--main);
}

input[type=number] {
  width: 7.5rem;
  text-align: center;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

textarea {
  background: #EFEFEF;
  width: 100%;
  min-height: 10rem;
  line-height: 1.4;
  padding: 0 1rem;
  radius: 0.75rem;
  border: none;
  /*border: 1px solid black;*/
  color: black;
  font-size: 1.125rem;
  resize: vertical;
}

textarea:active,
textarea:focus {
  outline: none;
  border-color: var(--main);
}

/* .btn,
button:not(.pswp__button),
input[type="button"],
input[type="reset"],
input[type="submit"] {
    display: inline-block;
    /*background: #a7a940;*/
/*background: #7a88a385;*/
/* height: 2.8125rem;
    line-height: 2.8125rem;

    // line-height: 1.8125rem;
    padding: 0 1.5rem;
    border-radius: 0.75rem;
    border: none;
    border: 1px solid transparent;
    font-size: 1.125rem;
    color: black;
    text-decoration: none;
    box-shadow: var(--depth-2);
    cursor: pointer;
    transition: background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
} */
@media (hover: hover) {
  .btn:hover,
  button:not(.pswp__button):hover,
  input[type=button]:hover,
  input[type=reset]:hover,
  input[type=submit]:hover {
    /* background-color: var(--main-light);*/
    /* background: #DDAA44;*/
    box-shadow: var(--depth-3);
    transform: translateY(-1px);
  }
}
.btn:active,
button:not(.pswp__button):active,
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active {
  /* background-color: #DDAA44;
  background: #DDAA44;*/
  outline: none;
  box-shadow: var(--depth-1);
  transform: translateY(1px);
}

.btn:focus-visible,
button:not(.pswp__button):focus-visible,
input[type=button]:focus-visible,
input[type=reset]:focus-visible,
input[type=submit]:focus-visible {
  outline: 1px solid var(--main);
}

.btn:disabled,
button:not(.pswp__button):disabled,
input[type=button]:disabled,
input[type=reset]:disabled,
input[type=submit]:disabled {
  cursor: not-allowed;
  /*opacity: 0.6;*/
}

@media (hover: hover) {
  .btn:disabled:hover,
  button:not(.pswp__button):disabled:hover,
  input[type=button]:disabled:hover,
  input[type=reset]:disabled:hover,
  input[type=submit]:disabled:hover {
    background: #b59597;
    box-shadow: var(--depth-2);
    transform: translateY(0);
  }
}
.btn:disabled:active,
.btn:disabled:focus,
button:not(.pswp__button):disabled:active,
button:not(.pswp__button):disabled:focus,
input[type=button]:disabled:active,
input[type=button]:disabled:focus,
input[type=reset]:disabled:active,
input[type=reset]:disabled:focus,
input[type=submit]:disabled:active,
input[type=submit]:disabled:focus {
  box-shadow: var(--depth-2);
  transform: translateY(0);
}

.btn .text-wrap,
button:not(.pswp__button) .text-wrap,
input[type=button] .text-wrap,
input[type=reset] .text-wrap,
input[type=submit] .text-wrap {
  overflow: hidden;
  display: inline-block;
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn.loading,
button:not(.pswp__button).loading,
input[type=button].loading,
input[type=reset].loading,
input[type=submit].loading {
  position: relative;
  overflow: hidden;
}

.btn.loading:before,
button:not(.pswp__button).loading:before,
input[type=button].loading:before,
input[type=reset].loading:before,
input[type=submit].loading:before {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 4px solid #fff;
  border-bottom: 4px solid transparent;
  animation: loading 0.8s infinite linear;
}

.btn.loading .text-wrap,
button:not(.pswp__button).loading .text-wrap,
input[type=button].loading .text-wrap,
input[type=reset].loading .text-wrap,
input[type=submit].loading .text-wrap {
  opacity: 0;
}

.btn-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.btn-group + .btn-group {
  margin-top: 1rem;
}

.btn-group .btn {
  border-radius: 0;
}

.btn-group .btn:first-child {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.btn-group .btn:last-child {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.form-field .check {
  display: flex;
  flex-direction: row;
}

.form-field .check input[type=checkbox] {
  margin-right: 0.5rem;
  flex-shrink: 0;
}

input[type=checkbox]:checked {
  --b: black;
}

input[type=checkbox]:not(.switch) {
  width: 1.5rem;
  height: 2rem;
  border-radius: 0.5rem;
}

input[type=checkbox] {
  display: inline-block;
  vertical-align: middle;
  top: -2px;
  position: relative;
  margin: 0;
  height: 2rem;
  width: 2rem;
  outline: none;
  border: 2px solid var(--background-tertiary);
  background: red;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

button,
input {
  overflow: visible;
}

input[type=checkbox]:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

input[type=checkbox]:not(.switch):checked {
  --r: 43deg;
  --o: 1;
}

input[type=checkbox]:not(.switch):after {
  width: 0.5rem;
  height: 1rem;
  border: 0.125rem solid var(--background-primary);
  border-top: 0;
  border-left: 0;
  left: 0.6rem;
  /* top: 0.1rem; */
  transform: rotate(var(--r, 20deg));
  opacity: var(--o, 0);
}

input[type=checkbox]:not(.switch):after {
  width: 0.5rem;
  height: 1rem;
  border: 0.125rem solid var(--background-primary);
  border-top: 0;
  border-left: 0;
  left: 0.6rem;
  top: 0.1rem;
  transform: rotate(var(--r, 20deg));
  opacity: var(--o, 0);
}

input[type=checkbox]:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

input[type=checkbox]:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

input[type=checkbox]:not(.switch):checked {
  --r: 43deg;
  --o: 1;
}

input[type=checkbox]:checked {
  --b: black;
}

#sweetJusticeMail,
.sweet-justice {
  display: none;
}

/* Kontak Seite */
@media only screen and (min-width: 500px) {
  .Kontakticons {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: space-evenly;
    padding: 1rem;
  }
}

.contactcol {
  display: block;
}
@media only screen and (min-width: 500px) {
  .contactcol {
    display: flex;
  }
}

.Uhrclass {
  margin-top: 0.5rem;
  display: block;
}

.buttonstart {
  /*14-02-2024*/
  border: none;
  background-color: #BD202A;
  border-radius: 8px;
  color: white;
  padding: 9px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  /*29022024*/
  margin-left: 2px;
  margin-top: 16px;
}
.buttonstart a {
  text-decoration: none;
  color: white;
}

.kontaktformulartitel {
  padding: 1rem;
  -webkit-text-decoration: underline #BD202A;
          text-decoration: underline #BD202A;
  text-underline-position: under;
}
@media only screen and (min-width: 700px) {
  .kontaktformulartitel {
    padding-left: 7rem;
  }
}

.rowkontakt {
  padding-top: 4rem;
  display: block;
}
@media only screen and (min-width: 700px) {
  .rowkontakt {
    display: flex;
  }
}

.colunter {
  width: 100%;
}
@media only screen and (min-width: 700px) {
  .colunter {
    width: 70%;
  }
}

#map {
  width: 100%;
  height: auto;
  min-height: 260px;
  aspect-ratio: 9/3;
}
@media only screen and (min-width: 700px) {
  #map {
    /*width: 50%;*/
    display: flex;
    align-content: center;
    flex-wrap: nowrap;
    align-items: stretch;
    flex-direction: row-reverse;
    height: 400px;
    /*21.02.24*/
    /* width: 892px;*/
  }
}

.list-kontakt {
  color: white;
  list-style: none;
  background-color: rgba(214, 38, 49, 0.5411764706);
  /*padding: 1rem;*/
  padding: 0.5rem;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (max-width: 700px) {
  .list-kontakt {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    z-index: 3000;
    margin-bottom: auto;
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 700px) {
  .list-kontakt {
    position: relative;
    -moz-text-align-last: initial;
    /* text-align-last: right;*/
    /*bottom: -30%;*/
    /*bottom: -22%;
    right: -52%;*/
    bottom: -12%;
    right: -22%;
    z-index: 2000;
  }
}

.holger {
  text-align: center;
  margin-top: 7rem;
}
@media only screen and (min-width: 400px) {
  .holger {
    display: grid;
    align-content: center;
    justify-content: space-evenly;
    align-items: start;
    justify-items: center;
  }
}
@media only screen and (min-width: 700px) {
  .holger {
    margin-left: -7rem;
  }
}

#mehrtext1,
#mehrtext2,
#mehrtext3,
#mehrtext4,
#mehrtext5,
#mehrtext6,
#mehrtext7,
#mehrtext8 {
  display: none;
}

/* title slider*/
.slide .image-data {
  font-size: 0.6rem;
  position: absolute;
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 100;
}
@media only screen and (min-width: 1320px) {
  .slide .image-data {
    left: 28%;
    top: 34%;
    line-height: 56px;
    font-weight: 600;
  }
}

.image-data span.text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.image-data h2 {
  /* font-size: 45px;*/
  font-weight: 200;
  padding-bottom: 0rem;
}
@media only screen and (min-width: 1083px) {
  .image-data h2 {
    font-size: 56px;
  }
}

.buttonkarriere {
  text-decoration: none;
  color: #730000;
}

.karrieremehr {
  background-color: #ECECEC;
  color: black;
}

.mehrlistkarriere {
  border-radius: 2px !important;
  display: block;
  margin: auto;
  margin-top: 1rem;
  border: none;
  padding-left: 45px;
  padding-right: 45px;
}
@media only screen and (min-width: 750px) {
  .mehrlistkarriere {
    /*margin-top:10rem ;*/
    /*position: absolute;*/
    /*bottom: 0.6rem;*/
    bottom: 1.5rem;
    left: 50%;
  }
}

.address {
  color: white;
}

.editcontain {
  padding-top: 2rem;
}

.unserepartnertitel {
  color: #000;
}

.colbuttonmehrstartseite {
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .colbuttonmehrstartseite {
    text-align: end;
  }
}

.erfahrenpartner {
  color: #BD202A;
  /* font-size: 1.3rem; */
  font-size: 1rem;
  text-decoration: none;
}

.erfahrenpartnerbutton {
  border: none;
  background: transparent;
}
@media only screen and (min-width: 1100px) {
  .erfahrenpartnerbutton {
    margin-left: 873px;
  }
}

.startseite {
  background-color: #DADADA;
}

/* .uberuns{
    background-color: #DADADA;
} */
.historie {
  margin-top: 4rem;
}
@media only screen and (min-width: 400px) {
  .historie {
    margin-right: 8rem;
  }
}

.unsere-leistungenh2 {
  color: #000;
}

@media only screen and (min-width: 900px) {
  .textend {
    text-align: end;
  }
}

@media only screen and (min-width: 700px) {
  .col1 {
    width: 40%;
  }
}

@media only screen and (min-width: 700px) {
  .col2 {
    width: 60%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-evenly;
    align-items: stretch;
    margin-top: 1.5rem;
  }
}

@media only screen and (min-width: 700px) {
  .lastcol2 {
    width: 60%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-evenly;
    align-items: stretch;
    margin-top: 4.3rem;
  }
}

@media only screen and (min-width: 700px) {
  .lastcol1 {
    width: 60%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-evenly;
    align-items: stretch;
    margin-top: 4.3rem;
  }
}
@media only screen and (min-width: 1121px) {
  .lastcol1 {
    margin-top: 1.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .lastcol1 {
    margin-top: 4.3rem;
  }
}
@media only screen and (min-width: 1620px) {
  .lastcol1 {
    margin-top: 2.2rem;
  }
}

.projektecolumn {
  background-color: white;
}

.button:focus {
  background: linear-gradient(#152B40, #152B40);
  color: white;
}

/*   button:not(.btn):focus {
    background-color: white;
  } */
/* button:not(.btn):active {

    background-color: white;
  }*/
@media only screen and (min-width: 700px) {
  .service__content {
    width: 60%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    align-content: space-between;
    align-items: flex-start;
    margin-left: 2rem;
  }
}

.iconwidth {
  width: 50px;
}
@media only screen and (min-width: 400px) {
  .iconwidth {
    width: 73px;
  }
}

.emailtel {
  text-decoration: none;
  color: black;
}

.emaildsgvo {
  text-decoration: none;
  color: red;
}

.mapleaflet {
  margin-right: 14rem;
}
@media only screen and (min-width: 700px) {
  .mapleaflet {
    width: 75%;
  }
}

.abouttitelsection {
  text-align: center;
  /*  font-size: 3rem; */
  font-weight: 600;
  color: #FF7E7E;
  /* padding-bottom: 2rem; */
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  z-index: 3000;
  margin-top: -1rem;
  opacity: 21%;
}
@media only screen and (min-width: 700px) {
  .abouttitelsection {
    margin-top: -2rem;
    margin-left: 5rem;
  }
}
@media only screen and (min-width: 900px) {
  .abouttitelsection {
    margin-top: -3rem;
    margin-left: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .abouttitelsection {
    font-size: 5rem;
    margin-top: -4.5rem;
    margin-left: 11rem;
  }
}

.untertitelimpressum {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem !important;
}

.linkimpressum {
  text-decoration: none;
  color: #BD202A;
}

@media only screen and (min-width: 1086px) {
  .swiper-wrapper {
    width: 100%;
    height: 700px;
  }
}

/*22.02.24*/
.untertitelh3 {
  line-height: 1;
  font-weight: var(--fw-regular);
  font-variation-settings: "wght" var(--fw-regular), "slnt" 0;
  margin: 1.75rem 0 0.75rem;
  letter-spacing: 0.02em;
  font-size: 1.625rem;
}

@media only screen and (min-width: 1083px) {
  .absofort {
    font-size: 25px;
  }
}

.parnter1 {
  text-align: center;
}

.parnter2 {
  text-align: center;
}

.parnter3 {
  text-align: center;
}

.parnter4 {
  text-align: revert;
}
@media only screen and (min-width: 1500px) {
  .parnter4 {
    text-align: center;
  }
}

.parntercol {
  display: flex;
  flex: 1 1 30%;
  padding: 1rem 1rem;
}/*# sourceMappingURL=style.css.map */