@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Sarabun:400,600,700&display=swap");
@import url("https://use.typekit.net/ejs3cyb.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

.transition-fade {
  transition: 0.4s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

.section.animate-in {
  opacity: 0 !important;
}
.section.animate-in .section-text {
  transform: translateX(-30%);
  opacity: 0 !important;
}
@media screen and (min-width: 1025px) {
  .section.animate-in .section-image {
    transform: translateX(50vw) !important;
    opacity: 0 !important;
  }
}
.section.animate-in .section-image {
  opacity: 0 !important;
}
.section.animate-in .section-image-little {
  transform: translateX(100vw) !important;
  opacity: 0 !important;
}
.section.animation .section-text,
.section.animation .section-image {
  transition: all 1s ease, opacity 1.5s;
  opacity: 1;
}
.section.animation .section-image-little {
  transition: all 1s ease 0.6s, opacity 1.5s 0.6s;
  opacity: 1;
}

body {
  font-family: "Sarabun";
  font-weight: 400;
  height: 100%;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: poynter-oldstyle-display, "Lato", serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2em;
  color: #54331D;
  text-transform: uppercase;
}

h3 {
  font-size: 1.2em;
}

p {
  font-size: 1rem;
  line-height: 1.2em;
  color: #54331D;
  white-space: pre-line;
}

img {
  touch-action: manipulation;
}

.bf-btn {
  position: relative;
  overflow: hidden;
  color: #54331D;
  color: var(--primary-color);
}
.bf-btn:before {
  position: absolute;
  content: "";
  background-color: #DCC194;
  height: 100%;
  left: 0;
  top: 0;
  transition-duration: 0.6s;
  transform: skew(-35deg);
  transform-origin: top left;
  display: block;
  z-index: -1;
  width: 0%;
}
.bf-btn:hover:before {
  height: 100%;
  width: 120%;
}

.swup-link {
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  margin: 30px 0 0 0;
  padding: 8px 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border: 2px solid #54331D;
  color: #54331D;
  font-family: poynter-oldstyle-display, "Lato", serif;
  font-weight: 700;
}

.menu-container {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 5;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1em;
  display: flex;
}
.menu-container .menu-circle {
  border-radius: 50%;
  background-color: white;
  height: 50px;
  width: 50px;
  position: relative;
  touch-action: manipulation;
  cursor: pointer;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}
.menu-container .menu-circle .menu {
  width: 30px;
}
.menu-container .menu-circle .menu .line {
  height: 3px;
  background-color: #54331D;
  width: 100%;
  border-radius: 2px;
}
.menu-container .menu-circle .menu .line:nth-of-type(1) {
  margin-bottom: 4px;
}
.menu-container .menu-circle .menu .line:nth-of-type(3) {
  margin-top: 4px;
}
.menu-container img {
  width: 100%;
  max-width: 220px;
}

.ml {
  white-space: pre-line;
}

.overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 10;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.overlay .overlay-header {
  height: 100px;
  min-height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2em;
  background-color: #FFF;
}
.overlay .overlay-header #menu-close {
  cursor: pointer;
}
.overlay .overlay-header a {
  display: block;
}
.overlay .overlay-header .brand {
  width: 100%;
  max-width: 220px;
}
.overlay .overlay-header .brand img {
  width: 100%;
}
.overlay .overlay-section {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.overlay .overlay-section a.links {
  border: none;
  font-size: 1.2rem;
  margin-top: 10px;
  transition: padding 0.2s ease-in-out;
}
.overlay .overlay-section a.links:hover {
  padding-left: 40px;
}
.overlay .overlay-section .menu-links-little {
  margin-top: 30px;
}
.overlay .overlay-section .menu-links-little a.links {
  font-size: 0.9rem;
  margin: 0;
}
.overlay .overlay-section .menu-links-little a.links.current {
  text-decoration: underline;
}
.overlay .overlay-section .menu-links-little a.links:hover {
  padding-left: 20px;
}
.overlay .overlay-image {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  min-height: 300px;
}

.section {
  position: relative;
  margin-top: 3em;
}
.section:first-of-type {
  margin-top: 100px;
}
.section .section-text {
  padding: 0 2em;
}
.section .section-text h1 {
  padding-top: 0.5em;
}
.section .section-text p {
  padding-top: 1.5em;
  max-width: 500px;
}
.section .section-text .scroll {
  width: 35px;
  margin-top: 2em;
  cursor: pointer;
}
.section .brand {
  display: none;
  width: 100%;
}
.section .section-image {
  margin-top: 3em;
  width: auto;
  height: auto;
  min-height: 450px;
  overflow: hidden;
  background-size: cover;
}
.section .section-image .svg-graphic-2 {
  display: none;
}
.section .section-image #trapez-mask {
  display: none;
}
.section .section-image svg, .section .section-image img {
  width: auto;
  height: 100%;
}
.section .section-image svg image, .section .section-image img image {
  height: 100%;
  width: auto;
}

.home .taetigkeiten .taetigkeiten-element {
  margin-top: 3em;
}
.home .taetigkeiten .taetigkeiten-element:first-of-type {
  margin-top: 0;
}
.home .taetigkeiten .taetigkeiten-element .icon {
  max-height: 50px;
}
.home .taetigkeiten .taetigkeiten-element h3 {
  margin-top: 1em;
}
.home .taetigkeiten .taetigkeiten-element p {
  max-width: 250px;
}

.taetigkeiten .taetigkeiten-detail .icon {
  max-height: 50px;
}
.taetigkeiten .taetigkeiten-detail h3 {
  margin-top: 1em;
}

.team .team-text {
  max-width: 50px !important;
  max-width: 300px !important;
}
.team #team-slider .section-slider {
  margin-top: 3em;
}
.team #team-slider .section-slider .flickity-viewport {
  overflow: hidden;
}
.team #team-slider .section-slider .team-element {
  width: 100%;
}
.team #team-slider .section-slider .team-element img {
  width: 100%;
}
.team #team-slider .arrows {
  display: none;
}

.team-page .home-first-section .section-image {
  background-position: center center;
}
@media (max-width: 900px) {
  .team-page .section2 .fp-tableCell {
    position: relative;
  }
  .team-page .section2 .fp-tableCell .section-text {
    position: absolute;
    top: 30px;
    z-index: 4;
  }
  .team-page #team-slider .section-slider {
    margin-top: 0;
  }
  .team-page #team-slider .section-slider .section-image {
    margin-top: 0;
  }
  .team-page #team-slider .section-slider .team-element {
    display: flex;
    justify-content: center;
  }
  .team-page #team-slider .section-slider .team-element img {
    width: 90%;
    max-height: 600px;
    object-fit: cover;
  }
}
@media (min-width: 900px) {
  .team-page .section2 {
    margin-top: 0em;
    max-height: 100vh;
  }
  .team-page .section2 .fp-tableCell {
    position: relative;
    height: inherit !important;
  }
  .team-page .section2 .fp-tableCell .section-text {
    position: absolute;
    top: 100px;
    z-index: 4;
  }
}

.galerie .arrows {
  display: none;
}
.galerie .section-text .arrows {
  display: none;
}
.galerie .section-slider {
  margin-top: 3em;
}
.galerie .section-slider .flickity-viewport {
  overflow: hidden;
}
.galerie .section-slider .galerie-element {
  width: 100%;
  height: 100%;
  min-height: 450px;
}
.galerie .section-slider .galerie-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galerie .bf-gallery-items {
  display: flex;
  flex-direction: column;
  margin-top: 2em;
}
.galerie .bf-gallery-items .bf-gallery-items-left {
  display: flex;
  flex-direction: column;
}
.galerie .bf-gallery-items .bf-gallery-items-right {
  display: flex;
  flex-direction: column;
}
.galerie .bf-gallery-items h3 {
  font-size: 1rem;
  margin: 0.5em 0;
}
.galerie .bf-gallery-items img {
  max-width: 20px;
  margin: 0.5em 0;
}
.galerie .bf-gallery-items .item {
  cursor: pointer;
  align-items: center;
  display: flex;
  flex-direction: row;
  width: 60%;
  justify-content: space-between;
}

.fp-viewing-0 .galerie-menu, .fp-viewing-9 .galerie-menu {
  opacity: 0;
}

.galerie-menu {
  position: fixed;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 1500ms;
  transition: opacity 0.3s ease 1500ms;
  right: 50px;
  top: 20vh;
  width: 2px;
  height: 60vh;
  display: none;
  background-color: #54331D;
  z-index: 10;
  overflow: visible;
}
.galerie-menu .dot {
  width: 20px;
  border: 2px solid #54331D;
  border-radius: 50%;
  background-color: white;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 20px;
  margin-left: 1px;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 15;
  cursor: pointer;
}
.galerie-menu .dot:before, .galerie-menu .dot:after {
  content: "";
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
}
.galerie-menu .dot.active {
  background-color: #54331D;
}
.galerie-menu .dot.active:before, .galerie-menu .dot.active:after {
  opacity: 1;
}
.galerie-menu .dot.active:before {
  -webkit-transform: translate(0px, -25%);
  transform: translate(0px, -25%);
}
.galerie-menu .dot.active:after {
  -webkit-transform: translate(0px, -20%);
  transform: translate(0px, -20%);
}
.galerie-menu .dot:hover {
  background-color: #54331D;
}
.galerie-menu .dot:hover:before, .galerie-menu .dot:hover:after {
  opacity: 1;
}
.galerie-menu .dot:hover:before {
  -webkit-transform: translate(0px, -25%);
  transform: translate(0px, -25%);
}
.galerie-menu .dot:hover:after {
  -webkit-transform: translate(0px, -20%);
  transform: translate(0px, -20%);
}
.galerie-menu .dot:before {
  font-family: "Sarabun", "Lato", sans-serif;
  background-color: #54331D;
  width: auto;
  padding: 5px 15px 5px 15px;
  color: #FFF;
  -webkit-transform: translate(50px, -25%);
  transform: translate(50px, -25%);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.4px;
  right: 35px;
  border-radius: 1%;
}
.galerie-menu .dot:after {
  right: 0;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  -webkit-transform: translate(50px, -20%);
  transform: translate(50px, -20%);
  border-left-color: #54331D;
  border-right: 0;
  left: -23px;
}
.galerie-menu .dot:nth-of-type(1) {
  top: 20%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.galerie-menu .dot:nth-of-type(1):before {
  content: "Planung";
}
.galerie-menu .dot:nth-of-type(2) {
  top: 30%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.galerie-menu .dot:nth-of-type(2):before {
  content: "Bäder";
}
.galerie-menu .dot:nth-of-type(3) {
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.galerie-menu .dot:nth-of-type(3):before {
  content: "Türen";
}
.galerie-menu .dot:nth-of-type(4) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.galerie-menu .dot:nth-of-type(4):before {
  content: "Wohnzimmer";
}
.galerie-menu .dot:nth-of-type(5) {
  top: 60%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.galerie-menu .dot:nth-of-type(5):before {
  content: "Schlafzimmer";
}
.galerie-menu .dot:nth-of-type(6) {
  top: 70%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.galerie-menu .dot:nth-of-type(6):before {
  content: "Küchen";
}
.galerie-menu .dot:nth-of-type(7) {
  top: 80%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.galerie-menu .dot:nth-of-type(7):before {
  content: "Buntgemischtes";
}
.galerie-menu .dot.it:nth-of-type(1):before {
  content: "Progettazione";
}
.galerie-menu .dot.it:nth-of-type(2):before {
  content: "Bagni";
}
.galerie-menu .dot.it:nth-of-type(3):before {
  content: "Porte";
}
.galerie-menu .dot.it:nth-of-type(4):before {
  content: "Soggiorni";
}
.galerie-menu .dot.it:nth-of-type(5):before {
  content: "Camere da letto";
}
.galerie-menu .dot.it:nth-of-type(6):before {
  content: "Cucine";
}
.galerie-menu .dot.it:nth-of-type(7):before {
  content: "Un mix colorato";
}

.zertifizierungen .zertifizierung-detail .icon {
  max-height: 50px;
  margin-top: 2em;
}
.zertifizierungen .zertifizierung-detail h3 {
  margin-top: 1em;
}

.kontakt form {
  width: 90%;
  margin: 0 auto;
  margin-top: 8em;
}
.kontakt form .controls {
  text-align: left;
  position: relative;
}
.kontakt form .controls .skew {
  display: block;
  height: 50px;
  position: relative;
  z-index: 2;
  border: 2px solid #54331D;
  border-radius: 0;
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
  margin-bottom: 90px;
}
.kontakt form .controls .skew.textarea {
  margin-bottom: 90px;
}
.kontakt form .controls .skew span.error {
  transform: skew(30deg);
  display: block;
  font-size: 0.8rem;
  color: #54331D;
}
.kontakt form .controls input[type=text],
.kontakt form .controls input[type=email],
.kontakt form .controls input[type=number],
.kontakt form .controls input[type=date],
.kontakt form .controls input[type=tel],
.kontakt form .controls textarea,
.kontakt form .controls button,
.kontakt form .controls select {
  padding: 0 30px;
  border: 0;
  width: 100%;
  color: #54331D;
  font-family: poynter-oldstyle-display, "Lato", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2em;
  height: 100%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  background-color: transparent !important;
  -webkit-transform: skew(30deg);
  transform: skew(30deg);
}
.kontakt form .controls input[type=text]:focus,
.kontakt form .controls input[type=email]:focus,
.kontakt form .controls input[type=number]:focus,
.kontakt form .controls input[type=date]:focus,
.kontakt form .controls input[type=tel]:focus,
.kontakt form .controls textarea:focus,
.kontakt form .controls button:focus,
.kontakt form .controls select:focus {
  box-shadow: none;
  outline: none;
}
.kontakt form .controls .fa-sort {
  position: absolute;
  right: 10px;
  top: 17px;
  color: #94947c;
}
.kontakt form .controls select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.kontakt form .controls .form-label {
  position: absolute;
  left: 10px;
  top: -45px;
  width: 100%;
  color: #54331D;
  text-transform: uppercase;
  font-family: poynter-oldstyle-display, "Lato", serif;
  font-size: 1.2rem;
  display: inline-block;
  padding: 4px 10px;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.3s, top 0.3s, background-color 0.8s;
  -webkit-transition: all 0.3s, top 0.3s, background-color 0.8s;
  -o-transition: all 0.3s, top 0.3s, background-color 0.8s;
  -moz-transition: all 0.3s, top 0.3s, background-color 0.8s;
  background-color: transparent;
}
.kontakt form .controls .form-label i {
  font-weight: bold;
  font-size: 1rem;
  -webkit-transform: scale(0.3);
  transform: scale(0.3);
  margin-left: 15px;
}
.kontakt form .controls textarea {
  resize: none;
  height: 100%;
  line-height: 50px;
}
.kontakt form .button-submit {
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  margin: 30px 0 0 0;
  padding: 8px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: transparent;
  display: block;
  border: 2px solid #54331D;
  color: #54331D;
  font-family: poynter-oldstyle-display, "Lato", serif;
  font-weight: 700;
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
  cursor: pointer;
}
.kontakt form .button-submit:focus {
  outline: none;
}
.kontakt form .button-submit:before {
  position: absolute;
  content: "";
  background-color: #DCC194;
  background-color: var(--secondary-color);
  height: 100%;
  left: 0%;
  top: 0;
  transition-duration: 1s;
  transform-origin: top left;
  width: 0%;
}
.kontakt form .button-submit:hover:before {
  height: 100%;
  width: 100%;
}
.kontakt form .button-submit .btn-text {
  -webkit-transform: skew(30deg);
  transform: skew(30deg);
}
.kontakt form .thankyou {
  margin-top: 80px;
  padding-left: 30px;
  line-height: 40px;
  color: green;
  opacity: 0;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
}
.kontakt form .grid {
  background: white;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.kontakt form .col-2-4 {
  width: 100%;
  flex-basis: 100%;
}
.kontakt form .col-2-4.datenschutz {
  width: 100%;
  flex-basis: 100%;
  position: relative;
  margin-bottom: 20px;
}
.kontakt form .col-2-4.datenschutz .checkbox-container {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.kontakt form .col-2-4.datenschutz .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.kontakt form .col-2-4.datenschutz .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.kontakt form .col-2-4.datenschutz .checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}
.kontakt form .col-2-4.datenschutz .checkbox-container input:checked ~ .checkmark {
  background-color: #54331D;
}
.kontakt form .col-2-4.datenschutz .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.kontakt form .col-2-4.datenschutz .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.kontakt form .col-2-4.datenschutz .checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.kontakt form .col-2-4.datenschutz p {
  padding-left: 40px;
  padding-top: 0;
  max-width: unset;
}
.kontakt .footer {
  margin-top: 4em;
}

.footer {
  padding: 2em 0;
  margin-top: 0;
}
.footer footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 2em;
}
.footer footer .footer-links {
  display: none;
  flex-direction: column;
  justify-content: space-between;
}
.footer footer .footer-links a {
  text-decoration: none;
  text-transform: uppercase;
  color: #54331D;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
  width: 100%;
  width: fit-content;
}
.footer footer .footer-links a:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0px;
  width: 0%;
  background-color: #54331D;
  height: 2px;
  transition: width 0.2s ease-in-out;
}
.footer footer .footer-links a:hover:before {
  width: 100%;
}
.footer footer .footer-links a:first-of-type {
  padding-top: 0;
}
.footer footer .footer-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 2em;
}
.footer footer .footer-details h4 {
  font-family: "Sarabun", "Lato", sans-serif;
  font-weight: 700;
  color: #54331D;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.footer footer .footer-details .bf-details {
  margin-top: 1.5em;
}
.footer footer .footer-details .bf-details p, .footer footer .footer-details .bf-details a {
  font-size: 1rem;
  line-height: 1.5em;
  color: #54331D;
  text-decoration: none;
}
.footer footer .footer-details .bf-details p.phone, .footer footer .footer-details .bf-details a.phone {
  margin-top: 1em;
}
.footer footer .footer-credentials {
  display: flex;
  flex-direction: column;
  margin-top: 2em;
}
.footer footer .footer-credentials p, .footer footer .footer-credentials a {
  font-size: 1rem;
  color: #54331D;
  text-decoration: none;
}
.footer footer .footer-credentials .bf-socials {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  padding: 15px 0;
}
.footer footer .footer-credentials .bf-socials .fb-icon, .footer footer .footer-credentials .bf-socials .insta-icon {
  display: inline-block;
  font-size: 1.8rem;
  color: #54331D;
}
.footer footer .footer-credentials .bf-socials .fb-icon {
  margin-right: 10px;
}
.footer footer .footer-credentials .copyright, .footer footer .footer-credentials .copyright a {
  font-size: 0.8rem;
  line-height: 1.4em;
}

.section-impressum {
  padding: 2em;
}
.section-impressum img {
  margin: 30px 0 15px;
  max-width: 350px;
}
.section-impressum h4 {
  margin-top: 30px;
  color: #54331D;
}
.section-impressum a {
  color: #54331D;
}

.section-impressum-mirror {
  padding: 2em;
}
.section-impressum-mirror img {
  margin: 0px 0 15px;
  max-width: 350px;
}
.section-impressum-mirror h3 {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin-bottom: 30px;
}
.section-impressum-mirror h4 {
  margin-top: 30px;
  color: #3d3d3b;
}
.section-impressum-mirror a, .section-impressum-mirror p, .section-impressum-mirror h3, .section-impressum-mirror h4 {
  color: #3d3d3b;
}
.section-impressum-mirror .block {
  margin-top: 100px;
}

.section-impressum-mirror-right {
  width: 100%;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.section-impressum-mirror-right img {
  margin: 0px 0 15px;
  max-width: 350px;
}
.section-impressum-mirror-right h3 {
  margin-bottom: 30px;
}
.section-impressum-mirror-right h4 {
  margin-top: 30px;
}

.section-datenschutz {
  padding: 0 2em;
}
.section-datenschutz p {
  margin-top: 30px;
}
.section-datenschutz h3 {
  margin-top: 50px;
}
.section-datenschutz a {
  display: table;
  color: #54331D;
  margin: 15px 0;
}

#galerie-body #fp-nav {
  display: none !important;
}

@media (min-width: 100px) and (max-width: 1024px) {
  .section .fp-tableCell {
    height: 100% !important;
  }
}
@media (min-width: 900px) and (max-width: 1024px) {
  .home .home-first-section, .taetigkeiten .home-first-section, .zertifizierungen .home-first-section, .galerie .home-first-section {
    display: flex;
  }
  .home .home-first-section .section-image, .taetigkeiten .home-first-section .section-image, .zertifizierungen .home-first-section .section-image, .galerie .home-first-section .section-image {
    min-width: 60%;
    width: 100%;
    margin-top: 0;
  }
  .home .home-first-section .section-text, .taetigkeiten .home-first-section .section-text, .zertifizierungen .home-first-section .section-text, .galerie .home-first-section .section-text {
    margin-right: 2em;
    margin-right: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home .section2 .fp-tableCell, .home .section3 .fp-tableCell, .home .section4 .fp-tableCell, .taetigkeiten .section2 .fp-tableCell, .taetigkeiten .section3 .fp-tableCell, .taetigkeiten .section4 .fp-tableCell, .zertifizierungen .section2 .fp-tableCell, .zertifizierungen .section3 .fp-tableCell, .zertifizierungen .section4 .fp-tableCell, .galerie .section2 .fp-tableCell, .galerie .section3 .fp-tableCell, .galerie .section4 .fp-tableCell {
    display: flex;
  }
  .home .section2 .fp-tableCell .section-image, .home .section3 .fp-tableCell .section-image, .home .section4 .fp-tableCell .section-image, .taetigkeiten .section2 .fp-tableCell .section-image, .taetigkeiten .section3 .fp-tableCell .section-image, .taetigkeiten .section4 .fp-tableCell .section-image, .zertifizierungen .section2 .fp-tableCell .section-image, .zertifizierungen .section3 .fp-tableCell .section-image, .zertifizierungen .section4 .fp-tableCell .section-image, .galerie .section2 .fp-tableCell .section-image, .galerie .section3 .fp-tableCell .section-image, .galerie .section4 .fp-tableCell .section-image {
    min-width: 60%;
    width: 100%;
    margin-top: 0;
  }
  .home .section2 .fp-tableCell .section-text, .home .section3 .fp-tableCell .section-text, .home .section4 .fp-tableCell .section-text, .taetigkeiten .section2 .fp-tableCell .section-text, .taetigkeiten .section3 .fp-tableCell .section-text, .taetigkeiten .section4 .fp-tableCell .section-text, .zertifizierungen .section2 .fp-tableCell .section-text, .zertifizierungen .section3 .fp-tableCell .section-text, .zertifizierungen .section4 .fp-tableCell .section-text, .galerie .section2 .fp-tableCell .section-text, .galerie .section3 .fp-tableCell .section-text, .galerie .section4 .fp-tableCell .section-text {
    margin-right: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .home .section2 .fp-tableCell {
    flex-direction: row-reverse;
  }
  .home .section3 .fp-tableCell {
    flex-direction: column;
  }
  .home .section3 .fp-tableCell .taetigkeiten .taetigkeiten-element {
    flex-basis: 33%;
    margin: 0;
  }
  .home .section3 .fp-tableCell .section-image {
    margin-top: 3em;
    width: auto;
  }

  .taetigkeiten .section2 .fp-tableCell, .taetigkeiten .section4 .fp-tableCell {
    flex-direction: row-reverse;
  }

  .zertifizierungen .section2 .fp-tableCell, .zertifizierungen .section4 .fp-tableCell {
    flex-direction: row-reverse;
  }

  .galerie .home-first-section .section-text .bf-gallery-items {
    flex-direction: column;
  }
  .galerie .home-first-section .section-text .bf-gallery-items .bf-gallery-items-left, .galerie .home-first-section .section-text .bf-gallery-items .bf-gallery-items-right {
    width: 100%;
  }
  .galerie .home-first-section .section-text .bf-gallery-items .bf-gallery-items-left .item, .galerie .home-first-section .section-text .bf-gallery-items .bf-gallery-items-right .item {
    width: 100%;
  }
  .galerie .section2 .fp-tableCell, .galerie .section3 .fp-tableCell, .galerie .section4 .fp-tableCell, .galerie .section5 .fp-tableCell, .galerie .section6 .fp-tableCell, .galerie .section7 .fp-tableCell, .galerie .section8 .fp-tableCell {
    display: flex;
  }
  .galerie .section2 .fp-tableCell .section-slider, .galerie .section3 .fp-tableCell .section-slider, .galerie .section4 .fp-tableCell .section-slider, .galerie .section5 .fp-tableCell .section-slider, .galerie .section6 .fp-tableCell .section-slider, .galerie .section7 .fp-tableCell .section-slider, .galerie .section8 .fp-tableCell .section-slider {
    min-width: 60%;
    width: 100%;
    margin-top: 0;
    margin: 3em 2em 0 2em;
  }
  .galerie .section2 .fp-tableCell .section-slider .section-image, .galerie .section3 .fp-tableCell .section-slider .section-image, .galerie .section4 .fp-tableCell .section-slider .section-image, .galerie .section5 .fp-tableCell .section-slider .section-image, .galerie .section6 .fp-tableCell .section-slider .section-image, .galerie .section7 .fp-tableCell .section-slider .section-image, .galerie .section8 .fp-tableCell .section-slider .section-image {
    margin: 0;
    overflow: visible;
  }
  .galerie .section2 .fp-tableCell .section-text, .galerie .section3 .fp-tableCell .section-text, .galerie .section4 .fp-tableCell .section-text, .galerie .section5 .fp-tableCell .section-text, .galerie .section6 .fp-tableCell .section-text, .galerie .section7 .fp-tableCell .section-text, .galerie .section8 .fp-tableCell .section-text {
    margin-right: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .galerie .section2 .fp-tableCell, .galerie .section4 .fp-tableCell, .galerie .section6 .fp-tableCell, .galerie .section8 .fp-tableCell {
    flex-direction: row-reverse;
  }
}
@media (min-width: 900px) {
  .section .section-image {
    width: auto;
    height: auto;
    margin: 3em 2em 0 2em;
    min-height: 550px;
  }

  .home .taetigkeiten {
    display: flex;
    flex-wrap: wrap;
  }
  .home .taetigkeiten .taetigkeiten-element {
    flex-basis: 50%;
    margin-top: 0;
  }
  .home .taetigkeiten .taetigkeiten-element:last-of-type {
    margin-top: 3em;
  }

  .galerie .home-first-section .bf-gallery-items {
    flex-direction: row;
  }
  .galerie .home-first-section .bf-gallery-items .bf-gallery-items-left, .galerie .home-first-section .bf-gallery-items .bf-gallery-items-right {
    width: 50%;
  }
  .galerie .section-slider .galerie-element {
    min-height: 550px;
  }

  .kontakt form .grid {
    flex-direction: row;
  }
  .kontakt form .grid .col-2-4 {
    flex-basis: 48%;
  }

  .team-page .home-first-section .section-image {
    background-position: center right 6vw;
  }

  .footer footer {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
  }
  .footer footer .footer-credentials {
    align-items: flex-end;
    justify-content: space-between;
  }
  .footer footer .footer-credentials, .footer footer .footer-details {
    margin: 0;
  }

  .section-impressum {
    padding: 100px 2em 100px 5em;
  }

  .section-impressum-mirror {
    padding: 100px 8em 100px 5em;
  }

  .section-impressum-mirror-right {
    width: 45%;
    padding: 0 3em;
    padding-top: 10em;
  }

  .section-datenschutz {
    padding: 100px 5em 100px 5em;
  }
}
@media (min-width: 900px) and (max-width: 1025px) {
  .section {
    display: flex;
    height: 100% !important;
    min-height: 700px;
    margin-top: 0;
  }
  .section.section1 {
    height: 700px !important;
  }
  .section.section1 .section-image {
    height: 700px !important;
  }
  .section.footer {
    min-height: unset;
  }
  .section .fp-tableCell {
    display: flex;
  }
  .section.section1 {
    display: block;
  }
  .section:first-of-type {
    margin-top: 0px;
  }
  .section .section-image {
    margin: 0;
    -webkit-clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    right: -16.8%;
    height: 50vh;
    height: 700px !important;
    width: 70%;
  }
  .section .home-first-section {
    height: 50vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .section .section-text {
    padding: 0px 2em 0px 5em;
  }
  .section .section-text p {
    max-width: 400px;
  }

  .home .section3 .fp-tableCell .section-text {
    height: 100%;
  }

  .team #team-slider .section-slider {
    width: 100%;
    height: 100%;
    margin-top: 0;
  }
  .team #team-slider .section-slider .section-image {
    width: 80%;
    right: -25.8%;
  }
  .team #team-slider .section-slider .flickity-viewport {
    height: 100%;
  }
  .team #team-slider .section-slider .flickity-viewport .team-element img {
    height: 100vh;
  }
  .team #team-slider .arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    padding: 0 7em;
    pointer-events: none;
  }
  .team #team-slider .arrows img {
    transform: scale(0.8);
    max-height: 120px;
    pointer-events: all;
    cursor: pointer;
  }

  .team-page .section1 {
    height: calc(700px + 100px) !important;
  }
  .team-page .section1 .section-image {
    height: 600px;
    height: 100% !important;
    background-position: center right -4vw;
  }
  .team-page .section2 {
    min-height: 600px;
  }
  .team-page .section2 .section-image {
    height: auto;
    max-height: 600px !important;
    min-height: unset;
    height: 600px;
  }
  .team-page #team-slider .section-slider .flickity-viewport .team-element img {
    height: auto;
    max-height: 600px;
  }

  .home .home-first-section .section-image, .taetigkeiten .home-first-section .section-image, .zertifizierungen .home-first-section .section-image, .kontakt .home-first-section .section-image, .galerie .home-first-section .section-image {
    width: 90%;
    right: -32.8% !important;
  }
  .home .section2 .fp-tableCell .section-image, .taetigkeiten .section2 .fp-tableCell .section-image, .zertifizierungen .section2 .fp-tableCell .section-image, .kontakt .section2 .fp-tableCell .section-image, .galerie .section2 .fp-tableCell .section-image {
    -webkit-transform: translateX(-80%) scaleX(-1);
    transform: translateX(-80%) scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
    margin: 0;
    -webkit-clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    right: -16.8%;
    height: 50vh;
    width: 70%;
    right: -32.8%;
    width: 90%;
  }
  .home .section3 .fp-tableCell .section-image, .taetigkeiten .section3 .fp-tableCell .section-image, .zertifizierungen .section3 .fp-tableCell .section-image, .kontakt .section3 .fp-tableCell .section-image, .galerie .section3 .fp-tableCell .section-image {
    width: 90%;
    margin-top: 0;
    right: -32.8%;
  }
  .home .section3 .fp-tableCell .taetigkeiten, .taetigkeiten .section3 .fp-tableCell .taetigkeiten, .zertifizierungen .section3 .fp-tableCell .taetigkeiten, .kontakt .section3 .fp-tableCell .taetigkeiten, .galerie .section3 .fp-tableCell .taetigkeiten {
    padding: 20px 0;
  }
  .home .section3 .fp-tableCell .taetigkeiten .taetigkeiten-element:nth-of-type(3), .taetigkeiten .section3 .fp-tableCell .taetigkeiten .taetigkeiten-element:nth-of-type(3), .zertifizierungen .section3 .fp-tableCell .taetigkeiten .taetigkeiten-element:nth-of-type(3), .kontakt .section3 .fp-tableCell .taetigkeiten .taetigkeiten-element:nth-of-type(3), .galerie .section3 .fp-tableCell .taetigkeiten .taetigkeiten-element:nth-of-type(3) {
    flex-basis: 100%;
    margin-top: 20px;
  }
  .home .section4 .fp-tableCell, .taetigkeiten .section4 .fp-tableCell, .zertifizierungen .section4 .fp-tableCell, .kontakt .section4 .fp-tableCell, .galerie .section4 .fp-tableCell {
    flex-direction: row-reverse;
  }
  .home .section4 .fp-tableCell .section-image, .taetigkeiten .section4 .fp-tableCell .section-image, .zertifizierungen .section4 .fp-tableCell .section-image, .kontakt .section4 .fp-tableCell .section-image, .galerie .section4 .fp-tableCell .section-image {
    -webkit-transform: translateX(-80%) scaleX(-1);
    transform: translateX(-80%) scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
    margin: 0;
    -webkit-clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    right: -16.8%;
    height: 50vh;
    width: 70%;
    right: -32.8%;
    width: 90%;
  }
  .home .section6 .fp-tableCell, .taetigkeiten .section6 .fp-tableCell, .zertifizierungen .section6 .fp-tableCell, .kontakt .section6 .fp-tableCell, .galerie .section6 .fp-tableCell {
    flex-direction: row-reverse;
  }
  .home .section6 .fp-tableCell .section-image, .taetigkeiten .section6 .fp-tableCell .section-image, .zertifizierungen .section6 .fp-tableCell .section-image, .kontakt .section6 .fp-tableCell .section-image, .galerie .section6 .fp-tableCell .section-image {
    -webkit-transform: translateX(-80%) scaleX(-1);
    transform: translateX(-80%) scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
    margin: 0;
    -webkit-clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    right: -16.8%;
    height: 50vh;
    width: 70%;
  }
  .home .section8 .fp-tableCell, .taetigkeiten .section8 .fp-tableCell, .zertifizierungen .section8 .fp-tableCell, .kontakt .section8 .fp-tableCell, .galerie .section8 .fp-tableCell {
    flex-direction: row-reverse;
  }
  .home .section8 .fp-tableCell .section-image, .taetigkeiten .section8 .fp-tableCell .section-image, .zertifizierungen .section8 .fp-tableCell .section-image, .kontakt .section8 .fp-tableCell .section-image, .galerie .section8 .fp-tableCell .section-image {
    -webkit-transform: translateX(-80%) scaleX(-1);
    transform: translateX(-80%) scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
    margin: 0;
    -webkit-clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    right: -16.8%;
    height: 50vh;
    width: 70%;
  }

  .galerie .section .section-image {
    height: 100% !important;
    min-height: 600px;
  }
  .galerie .section .section-slider .galerie-element {
    min-height: 600px;
  }

  .galerie .arrows {
    display: none;
  }
  .galerie .section2 .section-text .arrows, .galerie .section4 .section-text .arrows {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
    transform-origin: left;
  }
  .galerie .section2 .section-text .arrows img, .galerie .section4 .section-text .arrows img {
    transform: scale(0.2);
    transform-origin: left;
  }
  .galerie .section2 .section-text .arrows img:last-of-type, .galerie .section4 .section-text .arrows img:last-of-type {
    transform-origin: right;
  }
  .galerie .section3 .section-text .arrows, .galerie .section5 .section-text .arrows {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
    transform-origin: left;
  }
  .galerie .section3 .section-text .arrows img, .galerie .section5 .section-text .arrows img {
    transform: scale(0.2);
    transform-origin: left;
  }
  .galerie .section3 .section-text .arrows img:last-of-type, .galerie .section5 .section-text .arrows img:last-of-type {
    transform-origin: right;
  }
  .galerie .section {
    height: 700px !important;
  }
  .galerie .section.footer {
    height: auto !important;
  }
  .galerie .section .section-image {
    height: 700px !important;
  }
  .galerie .section .section-slider .galerie-element {
    min-height: 700px !important;
  }
  .galerie .section1 .section-image {
    width: 80%;
    right: -26.8%;
  }
  .galerie .section2 .fp-tableCell .section-image, .galerie .section4 .fp-tableCell .section-image, .galerie .section6 .fp-tableCell .section-image, .galerie .section8 .fp-tableCell .section-image {
    width: 100%;
    right: -55.8%;
  }
  .galerie .section2 .fp-tableCell .section-image .main-carousel .flickity-viewport, .galerie .section4 .fp-tableCell .section-image .main-carousel .flickity-viewport, .galerie .section6 .fp-tableCell .section-image .main-carousel .flickity-viewport, .galerie .section8 .fp-tableCell .section-image .main-carousel .flickity-viewport {
    transform: scaleX(-1);
  }
  .galerie .section3 .fp-tableCell .section-image, .galerie .section5 .fp-tableCell .section-image, .galerie .section7 .fp-tableCell .section-image {
    width: 100%;
  }

  #galerie-body #fp-nav {
    display: block !important;
  }

  .section2 .section-image {
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
  }

  .overlay {
    z-index: 101;
  }
  .overlay .overlay-header {
    justify-content: flex-start;
  }
  .overlay .overlay-header .brand {
    max-width: 250px;
    margin-left: 5em;
  }
  .overlay .overlay-section {
    height: 100%;
    justify-content: center;
    width: 50%;
    padding-left: 3em;
    margin-bottom: 10em;
  }
  .overlay .overlay-section a.links {
    font-size: 1.6rem;
  }
  .overlay .overlay-image {
    background-size: cover;
    margin: 0;
    -webkit-clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    right: -55%;
    height: 100vh;
    width: 130%;
  }
}
@media (min-width: 1025px) {
  html {
    font-size: 17px;
  }

  .menu-container {
    background-color: transparent;
  }
  .menu-container img {
    display: none;
  }

  .overlay {
    display: unset;
  }
  .overlay .overlay-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 2em 2em;
    height: auto;
  }
  .overlay .overlay-header .brand {
    max-width: initial;
    margin-top: 4em;
    padding-left: 3em;
    max-width: 500px;
  }
  .overlay .overlay-section {
    padding-left: 3em;
    padding-top: 2em;
  }
  .overlay .overlay-section * {
    padding-left: 20px;
  }
  .overlay .overlay-section a.links {
    font-size: 1.5rem;
    margin-top: 15px;
  }
  .overlay .overlay-section .menu-links-little {
    margin-top: 20px;
  }
  .overlay .overlay-section .menu-links-little a.links {
    font-size: 0.9rem;
    margin: 0;
  }
  .overlay .overlay-image {
    -webkit-clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    right: -16.8%;
    height: 100vh;
    width: 70%;
    margin: 0;
  }

  .home-first-section {
    display: flex;
    min-height: 100vh;
    margin-top: 0;
  }
  .home-first-section .section-text {
    padding: 100px 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home-first-section .section-text .brand {
    display: block;
    max-width: 500px;
  }
  .home-first-section .section-text h1 {
    margin-top: 2em;
  }
  .home-first-section .section-text h1, .home-first-section .section-text p {
    padding-left: 20px;
  }
  .home-first-section .section-text .scroll {
    width: 40px;
    margin-top: 2em;
    margin-left: 20px;
  }

  .section {
    display: flex;
    height: 100vh !important;
    margin-top: 0;
  }
  .section .fp-tableCell {
    display: flex;
  }
  .section.section1 {
    display: block;
  }
  .section:first-of-type {
    margin-top: 0;
  }
  .section .section-image {
    margin: 0;
    -webkit-clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    right: -16.8%;
    height: 100vh;
    width: 70%;
  }
  .section .section-text {
    padding: 100px 2em 100px 5em;
  }

  .section2 .section-text {
    max-width: 500px;
    padding: 0 3em 0 5em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding-top: 7em;
  }
  .section2 .section-text h2, .section2 .section-text p, .section2 .section-text img, .section2 .section-text h3 {
    padding-left: 20px;
  }
  .section2 .section-text .bf-btn {
    margin-left: 20px;
  }
  .section2 .section-image {
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
  }
  .section2 .section-image-little {
    -webkit-clip-path: polygon(56% 0%, 100% 0%, 60% 100%, 0% 100%);
    clip-path: polygon(56% 0%, 100% 0%, 100% 100%, 0% 100%);
    background-size: cover;
    position: absolute;
    bottom: 0;
    height: 140vh;
    width: 70%;
    -webkit-transform: translateX(60%);
    transform: translateX(60%);
    right: 10.5%;
  }

  .section3 .fp-tableCell {
    display: flex;
    flex-direction: row-reverse;
  }
  .section3 .section-text {
    height: 100%;
    width: 45%;
    padding: 0 3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .section3 .section-image {
    -webkit-transform: translateX(-80%);
    transform: translateX(-80%);
  }

  .section4 .fp-tableCell {
    display: flex;
    flex-direction: row-reverse;
  }
  .section4 .section-image {
    -webkit-transform: translateX(-80%) scaleX(-1);
    transform: translateX(-80%) scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
  }
  .section4 .section-text {
    display: flex;
    width: 45%;
    padding: 0 3em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding-top: 10em;
  }

  .home .section3 .section-text {
    padding: 0 1em 0 3em;
    width: 48%;
  }
  .home .section4 .section-text p {
    max-width: 400px;
  }

  .taetigkeiten .section2 .section-image {
    background-size: 160vw;
    background-position: left bottom;
  }
  .taetigkeiten .section2 .section-image-little {
    -webkit-transform: translateX(60%);
    transform: translateX(60%);
    right: 10.5%;
    background-position: right 52.5% top 100%;
    background-size: 160vw;
    background-repeat: no-repeat;
  }
  .taetigkeiten .home-first-section .section-text p {
    padding-left: 20px;
    max-width: 500px !important;
  }
  .taetigkeiten .section .section-text p {
    max-width: 350px;
  }

  .team .footer .trapez_footer {
    right: -12.5%;
  }
  .team .home-first-section .section-image {
    width: 80%;
    right: -25.8%;
  }
  .team #team-slider .section-slider {
    margin-top: 0;
    width: 100%;
    height: 100%;
  }
  .team #team-slider .section-slider .section-image {
    width: 80%;
    right: -25.8%;
  }
  .team #team-slider .section-slider .flickity-viewport {
    height: 100%;
  }
  .team #team-slider .section-slider .flickity-viewport .team-element img {
    height: 100vh;
  }
  .team #team-slider .arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    padding: 0 7em;
    pointer-events: none;
    z-index: 6;
  }
  .team #team-slider .arrows img {
    transform: scale(0.8);
    max-height: 120px;
    pointer-events: all;
    cursor: pointer;
  }

  .galerie-menu {
    display: block;
  }

  .galerie .footer .trapez_footer {
    right: -10.5%;
  }
  .galerie .fp-tableCell {
    position: relative;
  }
  .galerie .arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    padding: 0 7em;
    pointer-events: none;
  }
  .galerie .arrows img {
    transform: scale(0.8);
    max-height: 120px;
    pointer-events: all;
    cursor: pointer;
  }
  .galerie .section .section-image {
    right: -22.8%;
    width: 80%;
  }
  .galerie .bf-gallery-items {
    padding-left: 1em;
  }
  .galerie .bf-gallery-items .item {
    width: 90%;
  }
  .galerie .section-slider {
    width: 100%;
  }
  .galerie .main-carousel {
    width: 100%;
    height: 100%;
  }
  .galerie .main-carousel .flickity-viewport {
    height: 100%;
  }
  .galerie .main-carousel .flickity-viewport .galerie-element img {
    height: 100vh;
  }
  .galerie .section3 .section-image, .galerie .section5 .section-image, .galerie .section7 .section-image {
    -webkit-transform: translateX(-40%) scaleX(-1);
    transform: translateX(-40%) scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
  }
  .galerie .section4 .section-image, .galerie .section6 .section-image, .galerie .section8 .section-image {
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
  }
  .galerie .section2 .fp-tableCell, .galerie .section4 .fp-tableCell, .galerie .section6 .fp-tableCell, .galerie .section8 .fp-tableCell {
    flex-direction: row;
  }
  .galerie .section2 .section-text, .galerie .section4 .section-text, .galerie .section6 .section-text, .galerie .section8 .section-text {
    max-width: 600px;
    padding: 0 5em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }
  .galerie .section2 .section-text, .galerie .section4 .section-text, .galerie .section6 .section-text, .galerie .section8 .section-text {
    padding-top: 2em;
    padding-top: 5em;
    padding-right: 5em;
  }
  .galerie .section3 .fp-tableCell, .galerie .section5 .fp-tableCell, .galerie .section7 .fp-tableCell {
    flex-direction: row-reverse;
  }
  .galerie .section3 .section-text, .galerie .section5 .section-text, .galerie .section7 .section-text {
    justify-content: flex-start;
    padding: 0 3em;
    padding-top: 2em;
    padding-top: 5em;
    padding-right: 5em;
    width: 40%;
  }
  .galerie .section3 .section-text p, .galerie .section5 .section-text p, .galerie .section7 .section-text p {
    max-width: 400px;
  }
  .galerie .section3 .section-slider .main-carousel, .galerie .section5 .section-slider .main-carousel, .galerie .section7 .section-slider .main-carousel {
    transform: scaleX(-1);
  }

  .zertifizierungen .section2 .section-image {
    background-size: 120vw;
    background-position: left bottom;
  }
  .zertifizierungen .section2 .section-image-little {
    -webkit-transform: translateX(60%);
    transform: translateX(60%);
    right: 10.5%;
    background-position: right 14.5% bottom;
    background-size: 120vw;
    background-repeat: no-repeat;
  }

  .kontakt .section2 .section-text {
    width: 100%;
    max-width: initial;
    padding-top: 0em;
    justify-content: center;
  }
  .kontakt form {
    width: 80%;
  }
  .kontakt form .controls .skew.textarea {
    margin-bottom: 50px;
  }

  .footer footer .footer-links {
    display: flex;
  }
  .footer .trapez_footer {
    -webkit-transform: translateX(-128.7%) scaleX(-1) translateY(-69%);
    transform: translateX(-128.7%) scaleX(-1) translateY(-69%);
    transform: translateX(-114.5%) scaleX(-1) translateY(-65%);
    -webkit-filter: FlipH;
    filter: FlipH;
    background-color: #DCC194;
    -webkit-clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    background-size: cover;
    position: absolute;
    top: 0;
    right: -16.8%;
    height: 100vh;
    height: 110vh;
    width: 70%;
    width: 77%;
    z-index: -1;
    display: block;
  }
}
@media (min-width: 1300px) {
  .home .section3 .section-text {
    width: 45%;
    padding: 0 1em 0 5em;
  }
  .home .section3 .section-text .taetigkeiten {
    justify-content: space-between;
  }
  .home .section3 .section-text .taetigkeiten .taetigkeiten-element {
    flex-basis: 45%;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 18px;
  }

  h1, h2, h3 {
    line-height: 1.4em;
  }

  p {
    line-height: 1.5em;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .home .taetigkeiten .taetigkeiten-element .icon {
    max-height: initial;
    height: 60px;
  }

  .taetigkeiten .taetigkeiten-detail .icon {
    max-height: initial;
    height: 80px;
  }

  .galerie .section2 .section-text, .galerie .section3 .section-text, .galerie .section4 .section-text, .galerie .section5 .section-text, .galerie .section6 .section-text, .galerie .section7 .section-text, .galerie .section8 .section-text {
    max-width: 600px;
    padding-top: 4em;
  }
  .galerie .arrows {
    padding: 0 12em;
  }

  .zertifizierungen .section2 .section-text {
    max-width: 600px;
  }
  .zertifizierungen .zertifizierung-detail .icon {
    max-height: 70px;
  }

  .footer footer {
    padding: 0 3em;
  }
}
@media (min-width: 1800px) {
  html {
    font-size: 18.5px;
  }

  h3 {
    font-size: 1.6rem;
  }

  .section .section-text .scroll {
    width: 45px;
    margin-top: 2em;
    cursor: pointer;
  }

  .home-first-section .section-text p {
    max-width: 650px;
  }

  .home .section2 .section-text {
    max-width: 600px;
  }
  .home .section4 .section-text p {
    max-width: 600px;
  }

  .taetigkeiten .section2 .section-text {
    max-width: 600px;
  }
  .taetigkeiten .section4 .section-text p {
    max-width: 400px;
  }

  .footer .trapez_footer {
    height: 133vh;
    width: 93%;
    transform: translateX(-92%) scaleX(-1) translateY(-65%);
  }
}
@media screen and (max-width: 900px) {
  .home .section4 .section-image div {
    background-position: center right 30% !important;
    height: 450px !important;
    transform: scaleX(1) !important;
    background-size: cover;
  }

  .taetigkeiten .section4 .section-image div {
    background-position: center right 30% !important;
    height: 450px !important;
    transform: scaleX(1) !important;
    background-size: cover;
  }

  .zertifizierungen .section4 .section-image div {
    background-position: center right 30% !important;
    height: 450px !important;
    transform: scaleX(1) !important;
    background-size: cover;
  }

  .section .fp-tableCell {
    height: initial !important;
  }

  .galerie .section:not(.section1) .section-image {
    min-height: 500px;
  }
}
