@charset "UTF-8";
/* CSS Document */
/* ################ Einbindung Google Webfonts ################### */
/* nunito-regular - latin */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/nunito-v24-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/nunito-v24-latin-regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/nunito-v24-latin-regular.woff2") format("woff2"),
    url("../fonts/nunito-v24-latin-regular.woff") format("woff"),
    url("../fonts/nunito-v24-latin-regular.ttf") format("truetype"),
    url("../fonts/nunito-v24-latin-regular.svg#Nunito") format("svg");
  /* Legacy iOS */
}

/* nunito-800 - latin */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/nunito-v24-latin-800.eot");
  /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/nunito-v24-latin-800.eot?#iefix") format("embedded-opentype"),
    url("../fonts/nunito-v24-latin-800.woff2") format("woff2"),
    url("../fonts/nunito-v24-latin-800.woff") format("woff"),
    url("../fonts/nunito-v24-latin-800.ttf") format("truetype"),
    url("../fonts/nunito-v24-latin-800.svg#Nunito") format("svg");
  /* Legacy iOS */
}

/* ################ Farben ################### */
/* 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%;
  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 */
}

html {
  overflow-x: hidden;
}

/*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: $media-s){
        font-size: 17px;
    }*/
@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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*Schriften, Schriftgröße, Abstände, Schriftfarben */
body {
  font-family: Nunito, Arial, 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;
}

/*Überschriften*/
h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #ef7800;
  padding-bottom: 2rem;
  text-align: start;
}

h2 {
  color: #2a74b8;
  font-size: 1.3rem;
  padding-bottom: 1.5rem;
}

.main-ueberuns h2 {
  text-align: start;
}

.qualitaetsarbeit h2 {
  color: white;
}

/*Abstände*/
main {
  padding-top: 5rem;
}

@media only screen and (min-width: 930px) {
  main {
    padding-top: 8rem;
  }
}

section,
article {
  padding: 0rem 1rem 4rem;
}

@media only screen and (min-width: 456px) {
  section,
  article {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media only screen and (min-width: 568px) {
  section,
  article {
    padding-bottom: 6rem;
  }
}

@media only screen and (min-width: 768px) {
  section,
  article {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media only screen and (min-width: 930px) {
  section,
  article {
    padding-bottom: 8rem;
  }
}

@media only screen and (min-width: 1280px) {
  section,
  article {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media only screen and (min-width: 1440px) {
  section,
  article {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}

@media only screen and (min-width: 1860px) {
  section,
  article {
    padding-left: 14rem;
    padding-right: 14rem;
  }
}

.qualitaetsarbeit,
.boxen-startseite:last-child,
footer {
  margin-top: 4rem;
}

@media only screen and (min-width: 568px) {
  .qualitaetsarbeit,
  .boxen-startseite:last-child,
  footer {
    margin-top: 6rem;
  }
}

@media only screen and (min-width: 930px) {
  .qualitaetsarbeit,
  .boxen-startseite:last-child,
  footer {
    margin-top: 8rem;
  }
}

p {
  padding-bottom: 1rem;
  text-align: start;
}

p:last-child {
  padding-bottom: 0rem;
}

@media only screen and (min-width: 1000px) {
  .wrap-desktop {
    padding: 0 1rem;
  }
}

.boxen-startseite {
  margin: 0 2rem;
  padding: 2rem 1rem;
}

@media only screen and (min-width: 768px) {
  .boxen-startseite {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

@media only screen and (min-width: 1280px) {
  .boxen-startseite,
  .wrap-footer {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
}

@media only screen and (min-width: 1440px) {
  .boxen-startseite,
  .wrap-footer {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
}

@media only screen and (min-width: 1860px) {
  .boxen-startseite,
  .wrap-footer {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }
}

.boxen-startseite figure {
  padding-top: 1rem;
  margin: 0 auto;
}

.qualitaetsarbeit {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.qualitaetsarbeit .slider {
  padding-top: 0rem;
}

.qualitaetsarbeit article h3 {
  padding-top: 1rem;
}

.adresse h3{
  margin-bottom:0.5rem;
}

.qualitaetsarbeit article p {
  padding: 1rem;
}

.wrap-footer {
  padding-top: 2rem;
}

/*LINKS*/
.wrap-desktop a {
  color: #2a74b8;
  text-decoration: none;
}

.activeMenuLink {
  font-weight: bolder;
}

.nav-top a:hover {
  color: #ef7800;
  font-weight: bolder;
}

/*############### HEADER ###############*/
/*Navigation*/
nav {
  position: relative;
  z-index: 1000;
}

.wrap-mobil {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100vw;
  background-color: white;
}

.wrap-mobil-menu {
  position: relative;
  z-index: 100;
}

.line-o {
  width: 35px;
  height: 5px;
  background-color: black;
  margin: 6px 0;
}

.line-c {
  width: 30px;
  height: 5px;
  background-color: black;
  margin: 6px 0;
  position: absolute;
}

.line-c:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.line-c:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.open-btn {
  position: absolute;
  top: 20px;
  left: 20px;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.nav.visible {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.nav-blue {
  background-color: #2a74b8;
  width: 60%;
  max-width: 480px;
  min-width: 320px;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.nav-black.visible {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.nav-orange {
  background-color: #ef7800;
  width: 95%;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.nav-red.visible {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.nav-white {
  background-color: white;
  width: 95%;
  padding: 40px;
  position: relative;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.nav-white.visible {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 55px;
}

.menu-items {
  list-style-type: none;
  padding: 2rem 0;
  text-align: start;
}

.menu-items li {
  padding: 2rem 0;
}

.menu-items li a {
  color: black;
  text-decoration: none;
  font-size: 2rem;
}

.menu-items li a:hover {
  font-weight: bolder;
  color: #2a74b8;
}

.logo-mobil {
  padding-top: 0.4rem;
  position: absolute;
  right: 1rem;
}

.linie-orange {
  background-color: #ef7800;
  height: 0.5rem;
  width: 100%;
  margin-top: 5rem;
  z-index: 110;
  -webkit-box-shadow: 0px 8px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 8px 9px rgba(0, 0, 0, 0.5);
}

/*DESKTOP NAV*/
@media only screen and (min-width: 900px) {
  .wrap-desktop-außen {
    position: fixed;
    top: 0;
    z-index: 100;
    background-color: white;
    width: 100vw;
  }
  .wrap-mobil {
    display: none;
  }
  .wrap-desktop .logo {
    position: static;
  }
  .wrap-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 1.4rem;
  }
  .nav1,
  .nav2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 35%;
  }
  .nav1 li,
  .nav2 li {
    padding: 0 1rem;
    list-style-type: none;
  }
  .wrap-desktop .logo {
    height: 80%;
    width: auto;
  }
  .wrap-desktop .logo img {
    height: 100%;
    width: auto;
  }
  .linie-orange {
    margin-top: 1rem;
  }
  .slider-header {
    padding-top: 0 !important;
  }
}

@media only screen and (max-width: 899px) {
  .wrap-desktop-außen {
    display: none;
  }
}

/*Willkommesnabschnitt*/
.boxen-startseite {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  border-radius: 40px;
}

.boxen-startseite figure {
  width: 70%;
  height: auto;
}

.boxen-startseite figure img {
  width: 100%;
  height: auto;
  border-radius: 40px;
}

@media only screen and (min-width: 600px) {
  .boxen-startseite {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .wrap-boxen-text {
    width: 60%;
    padding-right: 0.5rem;
  }
  .boxen-startseite figure {
    width: 40%;
  }
}

@media only screen and (min-width: 1024px) {
  .boxen-startseite {
    padding: 1rem 2.5rem;
  }
  .wrap-boxen-text {
    padding-right: 1rem;
  }
}

/*################### QUALITÄTSARBEIT ####################*/
.qualitaetsarbeit {
  background-color: #2a74b8;
}

.mySwiper-quali .swiper-header-prev {
  left: 6rem;
  bottom: -1.5rem;
}

.mySwiper-quali .swiper-header-next {
  right: 6rem;
  bottom: -1.5rem;
}

.qualitaetsarbeit article {
  background-color: white;
  border-radius: 40px;
  padding: 0;
  height: auto;
}

.qualitaetsarbeit article img {
  border-radius: 40px 40px 0px 0px;
}

.qualitaetsarbeit a {
  display: inline-block;
  width: 60%;
  padding: 0.3rem 0;
  border-radius: 40px;
  margin: 0 auto;
  background-color: #2a74b8;
  color: white;
  text-decoration: none;
  margin-bottom: 1rem;
}

/*3D Effekt*/
.card {
  -webkit-transform: rotateX(calc(calc(var(--mouse-y, 0.5) - 0.5) * -20deg))
    rotateY(calc(calc(var(--mouse-x, 0.5) - 0.5) * 20deg));
  transform: rotateX(calc(calc(var(--mouse-y, 0.5) - 0.5) * -20deg))
    rotateY(calc(calc(var(--mouse-x, 0.5) - 0.5) * 20deg));
  /*Karte dreht sich nun auf Basis der X-Achse*/
}

.card-container {
  -webkit-perspective: 800px;
  perspective: 800px;
  /*Wie weit das Objekt vom User entfernt ist*/
}

.more_spektrum{
  display:none;
}

.show-more-less{
  cursor: pointer;
  color:#2a74b8;
}

/*##################### ÜBER UNS #################*/
.headerbild-ueber {
  background-image: url("../img/Freepik_happy-friends-painting-walls-green-colour.jpg");
  padding-top: 40%;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 5.5rem;
}

.headerbild-ref {
  background-image: url("../img/portrait-smiling-young-woman-against-blue-background.jpg");
  padding-top: 40%;
  background-size: cover;
  background-position:center;
  background-repeat: no-repeat;
  margin-top: 5.5rem;
}

.headerbild-aktuelles{
  background-image:url('../img/cute-girl-standing-near-wall-with-repair-tools.jpg');
  padding-top: 40%;
  background-size: cover;
  background-position:center 35%;
  background-repeat: no-repeat;
  margin-top: 5.5rem;
}

.headerbild-kontakt{
  background-image:url('../img/couple-new-house-choosing-color-walls.jpg');
  padding-top: 40%;
  background-size: cover;
  background-position:center 24%;
  background-repeat: no-repeat;
  margin-top: 5.5rem;
}

/*Unser Tean*/
@media only screen and (min-width: 433px) {
  .wrap-team {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    grid-gap: 1rem;
  }
}

@media only screen and (min-width: 900px) {
  .wrap-team {
    -ms-grid-columns: 33% 33% 33%;
    grid-template-columns: 33% 33% 33%;
  }
}

.mitarbeiter-allg {
  border-radius: 40px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  border: 2px solid #2a74b8;
  margin-bottom: 2.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.mitarbeiter-allg .wrap-h3 {
  padding: 0.7rem 0rem;
  background-color: #2a74b8;
  color: white;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
  cursor: pointer;
}

.mitarbeiter-allg .wrap-h3 h3 {
  display: inline-block;
}

.mitarbeiter-allg .wrap-h3 figure {
  width: 10%;
  height: auto;
  display: inline-block;
  margin-left: 0.5rem;
}

.mitarbeiter-allg .wrap-h3 figure img {
  width: 100%;
  height: auto;
}

.mitarbeiter-allg figure {
  width: 60%;
  height: auto;
  margin: 0 auto;
}

.mitarbeiter-allg figure img {
  width: 100%;
  height: auto;
}

/*Unser-Team mit JS*/
/*was wir bieten*/
.was-wir-bieten {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.was-wir-bieten figure {
  width: 100%;
  height: auto;
}

.was-wir-bieten figure img {
  width: 100%;
  height: auto;
}

.wrap-bieten {
  background-color: rgba(42, 116, 184, 0.85);
  color: white;
  padding: 0.8rem;
  text-align: start;
  border-radius: 20px;
}

.wrap-bieten li {
  margin-left: 1rem;
}

.wrap-bieten h2 {
  color: white;
  padding-bottom: 1rem;
}

@media only screen and (min-width: 433px) {
  .wrap-bieten {
    position: absolute;
    top: 4rem;
    margin-inline: auto;
    left: 1rem;
    right: 1rem;
  }
}

@media only screen and (min-width: 560px) {
  .wrap-bieten {
    left: 3rem;
    right: 3rem;
  }
}

@media only screen and (min-width: 800px) {
  .wrap-bieten {
    left: 8rem;
    right: 8rem;
  }
}

@media only screen and (min-width: 936px) {
  .wrap-bieten {
    left: 10rem;
    right: 10rem;
    top: 13rem;
  }
}

.zertifikate {
  padding-bottom: 0;
}

/*#################### FOOTER ##################*/
footer {
  position: relative;
}

@media only screen and (min-width: 770px) {
  footer {
    padding: 0;
  }
}

footer .linie-orange {
  top: 0;
}

footer .wrap-footer {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  color: #2a74b8;
  display: -ms-grid;
  display: grid;
}

@media only screen and (min-width: 600px) {
  footer .wrap-footer {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    margin: 0 3rem;
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 900px) {
  footer .wrap-footer {
    -ms-grid-columns: 33% 33% 33%;
    grid-template-columns: 33% 33% 33%;
  }
}

footer .wrap-footer .adresse {
  text-align: start;
  padding-bottom: 1rem;
}

@media only screen and (min-width: 600px) {
  footer .wrap-footer .adresse {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
}

footer .wrap-footer .adresse address {
  font-style: normal;
  padding-left: 3rem;
  padding-bottom: 0.5rem;
  background-image: url("../img/icons/standort.svg");
  background-repeat: no-repeat;
}

footer .wrap-footer .adresse a {
  padding: 0 0 0.5rem 3rem;
  display: inline-block;
  color: #2a74b8;
}

footer .wrap-footer .adresse .footer-mail {
  background-image: url("../img/icons/mail.svg");
  background-repeat: no-repeat;
  background-size: 12%;
}

footer .wrap-footer .adresse .footer-tel {
  background-image: url("../img/icons/telefon.svg");
  background-repeat: no-repeat;
  background-size: 13%;
}

footer .wrap-footer .footer-logo {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  padding-bottom: 1rem;
}

@media only screen and (min-width: 600px) {
  footer .wrap-footer .footer-logo {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}

@media only screen and (min-width: 900px) {
  footer .wrap-footer .footer-logo {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
}

@media only screen and (min-width: 600px) {
  footer .wrap-footer .footer-logo img {
    width: 70%;
  }
}

footer .wrap-footer a {
  color: black;
  text-decoration: none;
}

footer .wrap-footer a:hover {
  color: #2a74b8;
  font-weight: bolder;
}

footer .wrap-footer .footer-leistungen {
  text-align: start;
  padding-bottom: 1rem;
}

@media only screen and (min-width: 600px) {
  footer .wrap-footer .footer-leistungen {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-column-align: end;
    justify-self: end;
  }
}

@media only screen and (min-width: 900px) {
  footer .wrap-footer .footer-leistungen {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
  }
}

footer .wrap-footer-copyright {
  color: #2a74b8;
  font-size: 0.8rem;
}

@media only screen and (min-width: 600px) {
  footer .wrap-footer-copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}

footer .wrap-footer-copyright .copyright {
  padding-bottom: 1rem;
}

footer .wrap-footer-copyright a {
  text-decoration: none;
  color: inherit;
}

footer #button.show {
  opacity: 1;
  background-color: #ef7800;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 4rem;
  right: 3rem;
  border-radius: 10px;
  cursor: pointer;
  z-index: 1;
}

footer #button.show img {
  width: 50%;
  height: auto;
  padding-top: 0.7rem;
}

/*############LEISTUNGEN##########*/
.headerbild-leistungen {
  background-image: url("../img/medium-shot-people-working-together.jpg");
  padding-top: 40%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 5.5rem;
}

@media only screen and (min-width: 900px) {
  .leistungen-willkommen {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.leistungen-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 1rem;
}

@media only screen and (min-width: 900px) {
  .leistungen-menu {
    display: block;
    padding-top: 0rem;
    padding-left: 1rem;
  }
}

.leistungen-menu li {
  list-style-type: none;
  background-color: #ef7800;
  padding: 0.6rem;
  margin: 0.1rem;
  cursor: pointer;
}

.leistungen-menu li a {
  text-decoration: none;
  color: white;
}

.leistungen-menu li a:hover {
  font-weight: bolder;
}

.leistungen.links:last-child {
  padding-bottom: 0;
}

.leistungen h2 {
  text-align: start;
}

@media only screen and (min-width: 700px) {
  .leistungen .leistungen-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
  }
}

.leistungen .leistungen-wrap .slider {
  padding-top: 0rem;
  width: 100%;
}

@media only screen and (min-width: 480px) {
  .leistungen .leistungen-wrap .slider img {
    width: 50%;
  }
}

.swiper-slide img{
  height:
}

.leistungen .leistungen-wrap .slider .swiper-pagination {
  display: none;
}

@media only screen and (min-width: 700px) {
  .leistungen.rechts h2 {
    text-align: end;
  }
}

.leistungen.rechts .leistungen-wrap p {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}

.leistungen.rechts .leistungen-wrap .slider {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}

.leistungen .leiste-wrap {
  margin-top: 1rem;
}

@media only screen and (min-width: 700px) {
  .leistungen .leiste-wrap .flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .leistungen .leiste-wrap .flex p {
    width: 60%;
  }
  .leistungen .leiste-wrap .flex figure {
    width: 30%;
  }
}

@media only screen and (min-width: 700px) {
  .leistungen .leiste-wrap2 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

/*JS Klickleiste*/
.inhalt {
  display: none;
}

.leiste {
  text-align: right;
  background-color: #2a74b8;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: 0;
}

.leiste button {
  background-color: #2a74b8;
  border: none;
  color: white;
  padding: 0.4rem;
  padding-top: 0.7rem;
  cursor: pointer;
}

.leiste button:nth-child(1) {
  border-bottom-left-radius: 20px;
}

.leiste2 {
  text-align: left;
  margin: 0;
}

@media only screen and (max-width: 660px) {
  .leiste2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.wrap-texte-leistungen {
  background-color: #2a74b8;
  color: white;
  padding: 0.8rem;
}

.wrap-texte-leistungen p {
  padding: 0.5rem;
  text-align: end;
}

.wrap-texte-leistungen figure {
  width: 60%;
  height: auto;
  margin: 0 auto;
}

.wrap-texte-leistungen figure img {
  width: 100%;
  height: auto;
}

.wrap-texte-leistungen p {
  text-align: start;
}

.active-tab {
  font-weight: bolder;
}

.malerswiper .swiper-header-next {
  position: absolute;
  z-index: 100;
  top: 8rem;
  right: 0rem;
}

@media only screen and (min-width: 480px) {
  .malerswiper .swiper-header-next {
    top: 4rem;
    right: 4rem;
  }
}

@media only screen and (min-width: 700px) {
  .malerswiper .swiper-header-next {
    right: 2rem;
  }
}

@media only screen and (min-width: 1016px) {
  .malerswiper .swiper-header-next {
    right: 4rem;
  }
}

.malerswiper .swiper-header-prev {
  position: absolute;
  z-index: 100;
  top: 8rem;
  left: 0rem;
}

@media only screen and (min-width: 480px) {
  .malerswiper .swiper-header-prev {
    top: 4rem;
    left: 4rem;
  }
}

@media only screen and (min-width: 700px) {
  .malerswiper .swiper-header-prev {
    left: 2rem;
  }
}

@media only screen and (min-width: 1016px) {
  .malerswiper .swiper-header-prev {
    left: 4rem;
  }
}

/*################ AKTUELLES ################*/
.main-aktuelles h1 {
  padding: 0;
}

.box-news .wrap-boxen-text {
  padding-bottom: 2rem;
}

.box-news .wrap-boxen-text button {
  display: block;
  background-color: #ef7800;
  border: none;
  border-radius: 40px;
  padding: 0.5rem;
  color: white;
  cursor: pointer;
}

.box-news .wrap-boxen-text button img {
  width: 11%;
}

.box-news .wrap-boxen-text button:hover {
  font-weight: bolder;
}

.box-news figure {
  padding-top: 0;
  padding-left: 0.5rem;
}

.box-news figure img {
  border-radius: 0px;
}

/*passendes JS dazu!*/
.content {
  display: none;
}

.open .content {
  display: block;
}

.open button img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*spiegelverkehrte Box*/
.box-news.rechts {
  text-align: start;
}

@media only screen and (min-width: 600px) {
  .box-news.rechts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    text-align: right;
  }
}

@media only screen and (min-width: 600px) {
  .box-news.rechts p {
    text-align: right;
  }
}

.box-news.rechts button {
  margin-left: auto;
  margin-right: 0;
}

.box-news.rechts figure {
  padding-right: 0.5rem;
}

/*############################### REFERENZEN ##############*/
.wrap-referenzen {
  padding-bottom: 0;
}

@media only screen and (min-width: 433px) {
  .wrap-referenzen {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    grid-gap: 1rem;
  }
}

@media only screen and (min-width: 1420px) {
  .wrap-referenzen {
    grid-gap: 3rem;
  }
}

.referenzen-allg {
  margin-bottom: 2.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.referenzen-allg .slider {
  padding-top: 0;
}

.referenzen-allg .wrap-h3 {
  padding: 0.7rem 0rem;
  background-color: #2a74b8;
  color: white;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}

.referenzen-allg .wrap-h3 h3 {
  display: inline-block;
}

.referenzen-allg .wrap-h3 figure {
  width: 6%;
  height: auto;
  display: inline-block;
  margin-left: 0.5rem;
  cursor: pointer;
}

.referenzen-allg .wrap-h3 figure img {
  width: 100%;
  height: auto;
}

.referenzen-allg .wrap-h3 div p {
  text-align: center;
}

.referenzen-allg figure {
  width: 60%;
  height: auto;
  margin: 0 auto;
}

.referenzen-allg figure img {
  width: 100%;
  height: auto;
}

.trigger div {
  display: none;
}

.open .trigger div {
  display: block;
  padding-top: 1rem;
}

.open .pfeil img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.referenzswiper .swiper-header-next {
  right: 0rem;
  top: 7rem;
}

@media only screen and (min-width: 900px) {
  .referenzswiper .swiper-header-next {
    top: 10rem;
  }
}

.referenzswiper .swiper-header-prev {
  left: 0rem;
  top: 7rem;
}

@media only screen and (min-width: 900px) {
  .referenzswiper .swiper-header-prev {
    top: 10rem;
  }
}

/*#################### KONTAKT ##############*/
.kontakt-kontaktdaten {
  text-align: start;
}

@media only screen and (min-width: 580px) {
  .kontakt-kontaktdaten .wrap-kontakt {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
  }
}

@media only screen and (min-width: 850px) {
  .kontakt-kontaktdaten .wrap-kontakt {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 33% 33% 33%;
    grid-template-columns: 33% 33% 33%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.kontakt-kontaktdaten .wrap-kontakt address {
  font-style: normal;
  background-image: url("../img/icons/standort.svg");
  background-repeat: no-repeat;
  padding-left: 2.5rem;
  background-position-y: center;
}

.kontakt-kontaktdaten .wrap-kontakt .wrap-kontakt-mt {
  padding-top: 2rem;
}

@media only screen and (min-width: 580px) {
  .kontakt-kontaktdaten .wrap-kontakt .wrap-kontakt-mt {
    padding-top: 0;
    -ms-grid-column-align: end;
    justify-self: end;
  }
}

@media only screen and (min-width: 850px) {
  .kontakt-kontaktdaten .wrap-kontakt .wrap-kontakt-mt {
    -ms-grid-column-align: center;
    justify-self: center;
  }
}

.kontakt-kontaktdaten .wrap-kontakt .wrap-kontakt-mt .kontakt-mail {
  background-image: url("../img/icons/mail.svg");
  background-repeat: no-repeat;
  background-size: 12%;
  color: #000000;
  text-decoration: none;
  padding-left: 2.5rem;
}

.kontakt-kontaktdaten .wrap-kontakt .wrap-kontakt-mt .kontakt-mail:hover {
  font-weight: bolder;
  color: #2a74b8;
}

.kontakt-kontaktdaten .wrap-kontakt .wrap-kontakt-mt .kontakt-tel {
  background-image: url("../img/icons/telefon.svg");
  background-repeat: no-repeat;
  background-size: 13%;
  color: #000000;
  text-decoration: none;
  padding-left: 2.5rem;
  padding-top: 0.8rem;
  display: inline-block;
  background-position-y: bottom;
}

.kontakt-kontaktdaten .wrap-kontakt .wrap-kontakt-mt .kontakt-tel:hover {
  font-weight: bolder;
  color: #2a74b8;
}

.kontakt-kontaktdaten .wrap-kontakt .oeffnungszeiten {
  text-align: left;
  padding-top: 4rem;
}

@media only screen and (min-width: 850px) {
  .kontakt-kontaktdaten .wrap-kontakt .oeffnungszeiten {
    -ms-grid-column-align: end;
    justify-self: end;
    padding-top: 0;
  }
}

.kontakt-kontaktdaten .wrap-kontakt .oeffnungszeiten ul {
  list-style-type: none;
}

.kontakt-kontaktdaten .wrap-kontakt .oeffnungszeiten ul span {
  display: inline-block;
  font-weight: bolder;
  width: 8rem;
}

.wrap-karte {
  width: 100%;
  height: 50vw;
  padding-bottom: 0;
}

.wrap-karte .karte {
  width: 100%;
  height: 100%;
}

.wrap-karte .map {
  width: 100%;
  height: 100%;
}

/* ######  Text-Animation  ####### */
html.js .box {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease,
    -webkit-transform 0.4s ease;
}

html.js .box.visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

html.js .image {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

html.js .image.visible {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure {
  overflow: hidden;
}
/*# sourceMappingURL=style.css.map */

.contact-item a svg path{
  fill:#2a74b8;
}
.contact-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  border-bottom:solid 0.3rem #ef7800;
  height: 101px;
  margin-top:2rem;
}
.contact-item{
  color:#2a74b8;
}
.contact-item a {
  text-decoration: none;
  color: #2a74b8;
}

@media screen and (min-width: 538px) {
  .contact-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    height: 101px;
    margin-top: 20px;
  }

 
}

.svgsize{
  width:25px;
  height:25px;
}

@media screen and (min-width:850px){
  .svgsize{
    width:40px;
    height:40px;
  }
}

.insta{
  vertical-align: middle;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
}

.insta-name{
  margin-left:1rem;
}