@font-face {
  font-family: "Euclid Circular A";
  src: url("../fonts/EuclidCircularA-Regular.woff2") format("woff2"), url("../fonts/EuclidCircularA-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular A";
  src: url("../fonts/EuclidCircularA-Medium.woff2") format("woff2"), url("../fonts/EuclidCircularA-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "U8";
  src: url("../fonts/U8-Regular.woff2") format("woff2"), url("../fonts/U8-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "U8";
  src: url("../fonts/U8-Medium.woff2") format("woff2"), url("../fonts/U8-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=submit],
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

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

html {
  font-size: 1.1vw;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3vw;
  }
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Euclid Circular A";
  color: #2F2F23;
}

.overlay {
  background-color: #D7D2CB;
  width: 60%;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  padding: 4rem 4rem 4rem 22rem;
  background-image: url(../images/overlay.svg);
  background-repeat: no-repeat;
  background-size: 15rem auto;
  background-position: 4rem 2rem;
  display: none;
}
@media only screen and (max-width: 767px) {
  .overlay {
    background-image: none;
    padding: 3rem;
    width: 80%;
  }
  .overlay h3 br {
    display: none;
  }
}
.overlay .close__overlay {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 1.2rem;
  height: auto;
  cursor: pointer;
}
.overlay a {
  color: inherit;
  text-decoration: none;
}
.overlay h3 {
  font-weight: 500;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "U8";
  line-height: 1.714;
}

.preview_check {
  position: fixed;
  left: 10px;
  top: 10px;
  z-index: 999999;
}

.preview {
  width: 100%;
  position: absolute;
  left: 0%;
  top: 0;
  height: auto;
  z-index: 999999;
  pointer-events: none;
  opacity: 0.4;
  display: block;
}

.preview_check:checked + .preview {
  display: none;
}

img {
  border: 0;
}

.clear {
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: background-color 300ms ease-out;
}
header .innerwrapper {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}
header.fixed {
  background-color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 767px) {
  header.fixed {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
header.fixed .logo {
  width: 10rem;
}
header.fixed .logo .subline {
  opacity: 0;
}
header.fixed .header__top {
  border-bottom: 1px solid #2F2F23;
}
header.fixed nav {
  color: #2F2F23;
}

.header__top {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 0;
  border-bottom: 1px solid #D7D2CB;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .header__top {
    padding: 1rem 0;
  }
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  margin-left: auto;
}
.hamburger:focus {
  outline: 0;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #2F2F23;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #2F2F23;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger {
  display: none;
  margin-top: 1rem;
}
@media only screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

.cta__button {
  color: #FFF;
  background-color: #8B7765;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  font-size: 1.1rem;
  padding: 0.5em 1em;
  font-family: "U8";
}
@media only screen and (max-width: 767px) {
  .cta__button:first-child {
    margin-left: 0;
  }
}
.cta__button:hover {
  background-color: #2F2F23;
  color: #FFFFFF;
}

p:has(.cta__button) {
  margin-top: 2em;
}

.action__buttons {
  display: flex;
  margin-right: 0;
  margin-left: auto;
  width: 30rem;
}
@media only screen and (max-width: 767px) {
  .action__buttons {
    width: 100%;
    justify-content: space-between;
  }
}
.action__buttons {
  /*
  @media only screen and (max-width: 768px) {
  	order: 2;
  	flex-direction: column;
  	width: 100%;	
      padding-right: 3rem;
      padding-left: 2rem;
  	padding-bottom: 120px;
  }
  */
}
.action__buttons a {
  color: #2F2F23;
  text-decoration: none;
  border: 1px solid #2F2F23;
  display: block;
  width: calc(50% - 0.5rem);
  margin-left: 0.5rem;
  white-space: nowrap;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.25em;
  font-family: "U8";
}
@media only screen and (max-width: 767px) {
  .action__buttons a:first-child {
    margin-left: 0;
  }
}
.action__buttons a:hover {
  background-color: #2F2F23;
  color: #FFFFFF;
}
.action__buttons a {
  /*
  @media only screen and (max-width: 768px) {
  	width: 100%;	
  	padding: 0.5em 0.25em;
  	margin: 0.25rem 0;
  }*/
}

nav {
  color: #D7D2CB;
  margin-right: 0;
  margin-left: auto;
  padding-right: 1.5rem;
}
@media only screen and (max-width: 767px) {
  nav {
    position: fixed;
    width: 80%;
    left: 0;
    top: 0;
    height: 100vh;
    background-color: #D7D2CB;
    transform: translateX(-100%);
    pointer-events: none;
    transition: transform 300ms ease-out;
    overflow-y: scroll;
  }
  nav.is-active {
    transform: translateX(0%);
    pointer-events: auto;
  }
}
nav > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  font-size: 0.9rem;
}
@media only screen and (max-width: 767px) {
  nav > ul {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 1.2rem;
    padding: 2.25rem;
    line-height: 1.6;
  }
}
nav > ul > li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
}
@media only screen and (max-width: 767px) {
  nav > ul > li {
    display: block;
    margin: 0;
    padding: 0.25rem 0 0.25rem 0;
  }
}
nav > ul > li:not(:last-child):after {
  content: "//";
  margin-left: 0.2em;
  margin-right: 0.2em;
}
@media only screen and (max-width: 767px) {
  nav > ul > li:not(:last-child):after {
    display: none;
  }
}
nav > ul > li > a {
  color: inherit;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  nav > ul > li > a {
    color: #2F2F23 !important;
    padding: 0.8rem 0 0.8rem 0;
  }
}
nav > ul > li > a:hover {
  color: #2F2F23;
}
nav > ul > li.current_page_ancestor a, nav > ul > li.current_page_parent a {
  color: #8B7765;
}
nav > ul > li:hover > ul {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) translateX(-50%);
}
nav > ul > li > ul {
  width: 14rem;
  position: absolute;
  left: 50%;
  top: 100%;
  height: auto;
  background-color: #8B7765;
  display: block;
  padding: 1.5rem 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(2rem) translateX(-50%);
  transition: transform 300ms ease-out, opacity 300ms ease-out, top 300ms ease-out;
  cursor: default;
  list-style-type: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg width='642' height='578' viewbox='0 0 642 578' xmlns='http://www.w3.org/2000/svg'><path fill='%238B7765' d='M0 0h29l7 8.727L43 0h599v578H0z' fill-rule='evenodd'/></svg>");
}
@media only screen and (max-width: 768px) {
  nav > ul > li > ul {
    width: 100%;
    position: relative;
    top: auto;
    padding: 0;
    background-color: transparent;
    background-image: none;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) translateX(0) !important;
    left: 0 !important;
  }
}
nav > ul > li > ul li {
  font-weight: 600;
  color: #D7D2CB;
  font-size: 0.92rem;
  height: auto;
  cursor: default !important;
  list-style-type: none;
  margin: 0;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  nav > ul > li > ul li {
    color: #2F2F23;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
nav > ul > li > ul li > ul {
  padding-left: 1rem;
}
nav > ul > li > ul li a {
  color: #2F2F23 !important;
  text-decoration: none;
  font-weight: 500;
  text-transform: none;
  display: block;
  padding: 0.25rem 1.5rem;
}
@media only screen and (max-width: 768px) {
  nav > ul > li > ul li a {
    color: #2F2F23 !important;
  }
}
nav > ul > li > ul li a:before {
  display: none;
}
nav > ul > li > ul li a:hover {
  text-decoration: underline;
}

body:not(.home) .header__top {
  border-bottom: 1px solid #2F2F23;
}
body:not(.home) nav {
  color: #2F2F23;
}

.innerwrapper {
  width: 94vw;
  margin: 0 auto;
}

.logo {
  width: 14.44rem;
  font-size: 0;
  line-height: 0;
  display: block;
  position: absolute;
  top: 3.4rem;
  transition: width 300ms ease-out;
}
.logo .subline {
  transition: opacity 300ms ease-out;
}
@media only screen and (max-width: 767px) {
  .logo {
    top: 5rem;
  }
}
.logo svg {
  width: 100%;
  height: auto;
}

.outerwrapper {
  width: 100%;
  overflow: hidden;
}

section {
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: #FFFFFF;
  overflow: hidden;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.circle__rotate {
  transform-origin: 50% 50%;
  animation: rotating 14s linear infinite;
}

.section__start {
  position: relative;
  z-index: 1;
}
.section__start .innerwrapper {
  min-height: 100vh;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 3rem;
  padding-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .section__start .innerwrapper {
    min-height: 100vh;
    padding-top: 21rem;
    padding-bottom: 12rem;
  }
}
.section__start .innerwrapper .arrow__down {
  width: 8rem;
  font-size: 0;
  line-height: 0;
  position: absolute;
  right: 0;
  bottom: 3.5rem;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .section__start .innerwrapper .arrow__down {
    display: none;
  }
}
.section__start .innerwrapper .arrow__down svg {
  width: 100%;
  transform-box: fill-box;
  height: auto;
}
.section__start .innerwrapper .start__content {
  font-family: "U8";
  text-align: left;
  margin-left: 3rem;
}
@media only screen and (max-width: 767px) {
  .section__start .innerwrapper .start__content {
    margin-left: 0;
  }
  .section__start .innerwrapper .start__content br {
    display: none;
  }
}
.section__start .innerwrapper .start__content p {
  opacity: 0;
}
.section__start .innerwrapper .start__content h1,
.section__start .innerwrapper .start__content h2 {
  font-family: "U8";
  font-weight: 400;
  margin: 0;
}
.section__start .innerwrapper .start__content h2 {
  font-size: 3.03rem;
  line-height: 1.2;
  margin-bottom: 6.3rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .section__start .innerwrapper .start__content h2 {
    font-size: 2rem;
    margin-bottom: 3.3rem;
  }
  .section__start .innerwrapper .start__content h2 .word {
    display: inline-flex;
  }
}
.section__start .innerwrapper .start__content h2 .char {
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  opacity: 0;
}
.section__start .innerwrapper .start__content h1 {
  font-size: 1rem;
  width: 46em;
  border-bottom: 1px solid #D7D2CB;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .section__start .innerwrapper .start__content h1 {
    width: 100%;
  }
}
.section__start .start__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  right: 0;
  bottom: 0;
  font-size: 0;
  line-height: 0;
  z-index: 1;
}
.section__start .start__image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #8B7765;
  opacity: 0.85;
  z-index: 1;
}
.section__start .start__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 0;
}

.section__about {
  position: relative;
}
.section__about .innerwrapper {
  padding-block: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .section__about .innerwrapper {
    min-height: auto;
  }
}
.section__about .innerwrapper .content__centered {
  font-weight: 500;
  margin-top: -1rem;
  position: relative;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .section__about .innerwrapper .content__centered {
    max-width: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.section__about .innerwrapper .content__centered h3 {
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.48;
  font-family: "U8";
  max-width: 26em;
  margin: 0.5em auto;
}
@media only screen and (max-width: 767px) {
  .section__about .innerwrapper .content__centered h3 {
    line-height: 1.2;
    font-size: 2rem;
  }
}
.section__about .innerwrapper .o_icon {
  position: absolute;
  font-size: 0;
  line-height: 0;
  left: calc(50% - 7rem);
  top: calc(50% - 7rem);
  width: 14rem;
}
.section__about .innerwrapper .o_icon svg,
.section__about .innerwrapper .o_icon img {
  width: 100%;
  height: auto;
}
.section__about .innerwrapper .o_icon svg.o_filled,
.section__about .innerwrapper .o_icon img.o_filled {
  position: absolute;
  left: 0;
  top: 0;
}

.section__about-second {
  position: relative;
}
.section__about-second .innerwrapper {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .section__about-second .innerwrapper {
    min-height: auto;
    flex-direction: column;
  }
}
.section__about-second .innerwrapper .content__left {
  font-weight: 500;
  position: relative;
  z-index: 4;
  text-align: left;
  margin-left: 3rem;
  width: calc(39% - 3rem);
  -webkit-hyphens: auto;
          hyphens: auto;
  padding-top: 4rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.section__about-second .innerwrapper .content__left .icon_about {
  width: 11rem;
  margin-left: -7rem;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .section__about-second .innerwrapper .content__left .icon_about {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .section__about-second .innerwrapper .content__left {
    margin-left: 0;
    width: 100%;
    order: 2;
    padding-bottom: 0;
  }
}
.section__about-second .innerwrapper .content__left h3 {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "U8";
  -webkit-hyphens: auto;
          hyphens: auto;
  line-height: 1.72;
}
.section__about-second .innerwrapper .image__right {
  position: absolute;
  right: 0;
  height: calc(100% - 1rem);
  width: 67%;
  top: 0;
  font-size: 0;
  line-height: 0;
}
@media only screen and (max-width: 767px) {
  .section__about-second .innerwrapper .image__right {
    margin-left: 0;
    width: 100%;
    order: 1;
    position: relative;
    height: auto;
    width: calc(100% + 6vw);
    margin-left: -3vw;
    margin-right: -3vw;
  }
}
.section__about-second .innerwrapper .image__right:before {
  content: "";
  opacity: 0.5;
  background-image: linear-gradient(270deg, #BD472A 1%, #4E769C 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.section__about-second .innerwrapper .image__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  position: relative;
  -o-object-position: center top;
     object-position: center top;
}
@media only screen and (max-width: 767px) {
  .section__about-second .innerwrapper .image__right img {
    height: auto;
  }
}

.apply__button {
  position: absolute;
  z-index: 10;
  font-size: 0;
  line-height: 0;
  width: 6rem;
  right: 2.5rem;
  bottom: 2.5rem;
  display: block;
}
.apply__button svg {
  width: 100%;
  height: auto;
}

body.page-id-10 .section__leistungen {
  margin-top: 11rem;
}

.section__leistungen .innerwrapper {
  height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  padding-top: 1rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section__leistungen .innerwrapper {
    width: 100%;
    height: auto;
  }
}
.section__leistungen .innerwrapper .leistungen_bg {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 100%;
  height: calc(100% - 2rem);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.section__leistungen .innerwrapper .single__teaser {
  width: 33.33%;
  height: 33.333333%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .section__leistungen .innerwrapper .single__teaser {
    width: 100% !important;
    height: 20rem;
  }
}
.section__leistungen .innerwrapper .single__teaser:nth-child(1) {
  background-color: rgba(139, 119, 101, 0.85);
  width: 66.66%;
}
.section__leistungen .innerwrapper .single__teaser:nth-child(2) {
  background-color: rgba(166, 103, 88, 0.85);
}
.section__leistungen .innerwrapper .single__teaser:nth-child(3) {
  background-color: rgba(81, 94, 119, 0.85);
}
.section__leistungen .innerwrapper .single__teaser:nth-child(4) {
  background-color: rgba(215, 210, 203, 0.85);
}
.section__leistungen .innerwrapper .single__teaser:nth-child(5) {
  background-color: rgba(120, 159, 144, 0.85);
}
.section__leistungen .innerwrapper .single__teaser:nth-child(6) {
  background-color: rgba(175, 210, 233, 0.85);
}
.section__leistungen .innerwrapper .single__teaser:nth-child(7) {
  background-color: rgba(166, 103, 88, 0.85);
  width: 66.66%;
}
.section__leistungen .innerwrapper .single__teaser .teaser__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
.section__leistungen .innerwrapper .single__teaser .teaser__inner .multiple__icons {
  display: flex;
  justify-content: center;
}
.section__leistungen .innerwrapper .single__teaser .teaser__inner .multiple__icons .plus {
  font-size: 0.9rem;
  line-height: 1.3;
  width: 12rem;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.section__leistungen .innerwrapper .single__teaser .teaser__inner .multiple__icons .plus span {
  width: 100%;
  position: absolute;
  display: block;
  top: calc(100% + 0.5rem);
  text-align: center;
}
.section__leistungen .innerwrapper .single__teaser .teaser__inner .multiple__icons .plus svg {
  width: 1.5rem;
  margin: 0 auto;
}
.section__leistungen .innerwrapper .single__teaser .teaser__inner .icon {
  font-size: 0;
  line-height: 0;
  width: 3rem;
}
.section__leistungen .innerwrapper .single__teaser .teaser__inner .icon svg {
  width: 100%;
  height: auto;
}
.section__leistungen .innerwrapper .single__teaser .teaser__inner h3 {
  font-size: 1.33rem;
  font-weight: 500;
  font-family: "U8";
  text-align: center;
  margin: 2rem 0 2rem 0;
}

.plus {
  font-size: 0;
  line-height: 0;
  width: 3rem;
  display: block;
}
.plus svg {
  width: 100%;
  height: auto;
}

body:not(.home) .section__kontakt {
  margin-top: 3rem;
}

.section__kontakt {
  position: relative;
}
.section__kontakt.hidden {
  display: none;
}
.section__kontakt .innerwrapper {
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .section__kontakt .innerwrapper {
    min-height: auto;
    flex-direction: column;
  }
}
.section__kontakt .innerwrapper .map__left {
  position: absolute;
  z-index: 1;
  width: 66%;
  position: absolute;
  left: 0;
  top: 0;
  height: calc(100% - 1rem);
}
@media only screen and (max-width: 767px) {
  .section__kontakt .innerwrapper .map__left {
    width: 100%;
    position: relative;
    height: 20rem;
  }
}
.section__kontakt .innerwrapper .map__left .social__icons {
  position: absolute;
  left: calc(1vw + 3rem);
  bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .section__kontakt .innerwrapper .map__left .social__icons {
    display: none;
  }
}
.section__kontakt .innerwrapper .map__left .map {
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
  position: relative;
}
.section__kontakt .innerwrapper .map__left .map:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #D7D2CB;
  opacity: 0.65;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .section__kontakt .innerwrapper .map__left .map:before {
    display: none;
  }
}
.section__kontakt .innerwrapper .map__left .map iframe {
  width: 100%;
  height: 100%;
}
.section__kontakt .innerwrapper .content__right {
  width: 47.5%;
  position: relative;
  z-index: 2;
  margin-right: 0;
  margin-left: auto;
  text-align: left;
  font-size: 1.55rem;
  line-height: 1.71;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 500;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .section__kontakt .innerwrapper .content__right {
    width: 100%;
    padding-bottom: 2rem;
  }
}
.section__kontakt .innerwrapper .content__right .action__buttons {
  position: absolute;
  bottom: 3rem;
  left: -2rem;
  width: 33rem;
}
@media only screen and (max-width: 767px) {
  .section__kontakt .innerwrapper .content__right .action__buttons {
    position: relative;
    left: auto;
    width: 100%;
    bottom: auto;
  }
}
.section__kontakt .innerwrapper .content__right .action__buttons a {
  width: 50%;
  margin-left: 0rem;
  font-size: 0.91rem;
  padding: 0.5em 0.25em;
  border: 0;
}
.section__kontakt .innerwrapper .content__right .action__buttons a:first-child {
  background-color: #8B7765;
  color: #D7D2CB;
}
.section__kontakt .innerwrapper .content__right .action__buttons a:last-child {
  background-color: #D7D2CB;
  color: #2F2F23;
}
.section__kontakt .innerwrapper .content__right h4 {
  font-size: 1rem;
  font-weight: 500;
  font-family: "U8";
}

.social__icons {
  display: flex;
  position: relative;
  z-index: 9;
}
.social__icons a {
  font-size: 0;
  line-height: 0;
  width: 2.5rem;
  margin-right: 1.25rem;
}
.social__icons a svg {
  width: 100%;
  height: auto;
}

.single__ot {
  display: flex;
}
.single__ot span:first-child {
  width: 3em;
}

.section__bottom {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .section__bottom {
    height: auto;
  }
}

.section__news {
  background-color: #FFFFFF;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section__news .innerwrapper {
  padding: 4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .section__news .innerwrapper {
    flex-direction: column;
    padding-top: 0;
  }
}
.section__news .innerwrapper .news__headline {
  width: 16.5%;
  font-size: 0;
  line-height: 0;
  margin-left: 2.5rem;
  margin-top: -2rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section__news .innerwrapper .news__headline {
    margin-left: 0;
    margin-right: auto;
    margin-top: 0;
    position: relative;
  }
}
.section__news .innerwrapper .news__headline .news__headline__inner {
  font-size: 3.3rem;
  font-weight: 500;
  font-family: "U8";
  position: absolute;
  text-transform: uppercase;
  line-height: 1;
  top: 8.2rem;
  left: 6rem;
}
@media only screen and (max-width: 767px) {
  .section__news .innerwrapper .news__headline .news__headline__inner {
    top: 3.2rem;
    left: 3rem;
  }
}
.section__news .innerwrapper .news__headline svg {
  width: 100%;
}
.section__news .innerwrapper .news__wrapper {
  width: 67.5%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section__news .innerwrapper .news__wrapper {
    width: 100%;
    margin-top: 4rem;
  }
}
.section__news .innerwrapper .news__wrapper:before {
  content: "";
  display: block;
  position: absolute;
  right: -3vw;
  top: -2rem;
  height: calc(100% + 2rem + 2rem);
  width: 53%;
  background-color: #8B7765;
}
.section__news .innerwrapper .news__wrapper .news__slider {
  width: 100%;
  position: relative;
  z-index: 2;
}

.news__page {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30% 30% 30%;
  grid-template-rows: auto;
  justify-content: space-between;
  align-items: start;
}
@media only screen and (max-width: 767px) {
  .news__page {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    gap: 2rem;
  }
}
.news__page .single__news {
  padding-right: 0;
  order: 1;
  width: 100%;
  flex-direction: column;
}
.news__page .single__news .news__image {
  width: 100%;
}
.news__page .single__news .news__content {
  width: 100%;
}

.single__news {
  width: 100%;
  display: flex;
  padding-right: 26.5%;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .single__news {
    padding-right: 0;
  }
}
.single__news .news__content {
  width: 26%;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .single__news .news__content {
    width: 36%;
  }
}
.single__news .news__content h3 {
  font-size: 1.3rem;
  text-align: left;
  font-weight: 500;
}
.single__news .news__image {
  font-size: 0;
  line-height: 0;
  width: 67%;
}
@media only screen and (max-width: 767px) {
  .single__news .news__image {
    width: 57%;
  }
}
.single__news .news__image img {
  width: 100%;
  height: auto;
}

footer {
  padding-top: 1rem;
  background-color: #FFFFFF;
  position: relative;
  z-index: 2;
}
footer .innerwrapper {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 0.8rem;
}
footer .innerwrapper a {
  color: inherit;
  text-decoration: none;
}
footer .innerwrapper .footer__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: left;
  border-top: 1px solid #8B7765;
  padding-top: 2rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  footer .innerwrapper .footer__inner {
    flex-direction: column;
    border-top: 0;
  }
}
footer .innerwrapper .footer__inner h4 {
  font-size: 1rem;
  color: #8B7765;
  font-weight: 500;
  font-family: "U8";
  text-transform: uppercase;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  footer .innerwrapper .footer__inner h4 {
    margin-top: 2rem;
  }
}
footer .innerwrapper .social__icons {
  margin-top: auto;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  footer .innerwrapper .social__icons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0 2rem;
    padding-bottom: 2rem;
  }
  footer .innerwrapper .social__icons a {
    margin-right: 0;
    width: 3.5rem;
  }
}
footer .innerwrapper .footer__column {
  width: 18%;
}
@media only screen and (max-width: 767px) {
  footer .innerwrapper .footer__column {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 0;
  }
}
footer .innerwrapper .footer__column p:last-child {
  margin-bottom: 0;
}
footer .innerwrapper .footer__column {
  /*
  &:nth-child(3){
  	margin-top: 1.7rem;

  	@media only screen and (max-width: 767px) {
  		margin-top: 0;	
  	}
  }
  */
}
footer .innerwrapper .footer__bottom {
  text-align: center;
  border-top: 1px solid #8B7765;
  width: 100%;
  margin-top: 3rem;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  font-size: 0;
  line-height: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  display: block;
  border: 0;
  text-indent: -9999px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 98% auto;
  background-position: center;
  width: 1.5rem;
  height: auto;
  aspect-ratio: 8/14;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  filter: drop-shadow(rgba(0, 0, 0, 0.5) 0rem 0rem 0.2rem);
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .slick-arrow {
    width: 1rem;
  }
}
.slick-arrow.slick-prev {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='14' fill='none' viewBox='0 0 8 14'><path stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M7 13 1 7l6-6'/></svg>");
  left: 1rem;
}
.slick-arrow.slick-next {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='14' fill='none' viewBox='0 0 8 14'><path stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 13 6-6-6-6'/></svg>");
  right: 1rem;
}

.slick-dots {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2rem;
}
@media only screen and (max-width: 767px) {
  .slick-dots {
    right: auto;
    left: -2rem;
  }
}
.slick-dots li {
  list-style-type: none;
  margin: 0.5rem;
  padding: 0;
  opacity: 0.5;
}
.slick-dots li button {
  background-color: #D7D2CB;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
}
.slick-dots li button:focus {
  outline: 0;
}
@media only screen and (max-width: 767px) {
  .slick-dots li button {
    background-color: #8B7765;
  }
}
.slick-dots li.slick-active {
  opacity: 1;
}

.section__sub-page .innerwrapper {
  padding-top: 13rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.section__sub-page .sub-page__inner {
  text-align: left;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section__sub-page .sub-page__inner a {
  color: inherit;
}
.section__sub-page .sub-page__inner h1 {
  width: 100%;
  font-weight: 400;
  font-size: 2.7rem;
}
.section__sub-page .sub-page__inner .column {
  width: calc(50% - 2rem);
}

.section__sub-top {
  width: 100%;
  margin-bottom: 3rem;
}
.section__sub-top .sub__image {
  width: 100%;
  height: 100vh;
  font-size: 0;
  line-height: 0;
  max-height: 60vw;
  position: relative;
}
.section__sub-top .sub__image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
}
@media only screen and (max-width: 767px) {
  .section__sub-top .sub__image {
    max-height: 120vw;
  }
}
.section__sub-top .sub__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.section__sub-top .innerwrapper {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .section__sub-top .innerwrapper {
    flex-direction: column;
  }
}
.section__sub-top .add__content {
  flex: 1;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  padding-right: 3rem;
  padding-left: 3rem;
  padding-top: 2rem;
}
.section__sub-top .add__content a {
  color: inherit;
}
@media only screen and (max-width: 767px) {
  .section__sub-top .add__content {
    padding: 1.5rem;
  }
}
.section__sub-top .add__content ul {
  margin-left: 0;
  padding-left: 0;
  margin-right: 0;
  padding-right: 0;
}
.section__sub-top .add__content ul li {
  margin-left: 0;
  padding-left: 0;
  margin-right: 0;
  padding-right: 0;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  display: block;
}
.section__sub-top .add__content ul li:not(:last-child) {
  border-bottom: 1px solid #8B7765;
}
.section__sub-top .add__content.column__signet {
  margin-top: auto;
  margin-bottom: auto;
}
@media only screen and (max-width: 767px) {
  .section__sub-top .add__content.column__signet {
    display: none;
  }
}
.section__sub-top .add__content.column__signet svg {
  margin-top: 0;
}
.section__sub-top .sub__box {
  background-color: rgba(139, 119, 101, 0.85);
  color: #2F2F23;
  width: calc(67% + 3vw);
  margin-left: -3vw;
  text-align: left;
  padding: 2rem 3rem 2rem calc(3vw + 3rem);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.71;
  margin-top: -11.4rem;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .section__sub-top .sub__box {
    width: calc(100% + 3vw + 3vw);
    margin-left: -3vw;
    margin-right: -3vw;
    padding: 1.5rem calc(1.5rem + 3vw);
    margin-top: -8.4rem;
  }
}
.section__sub-top .sub__box h1 {
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.48;
  font-family: "U8";
  padding-bottom: 0.5em;
  border-bottom: 1px solid #2F2F23;
}
@media only screen and (max-width: 767px) {
  .section__sub-top .sub__box h1 {
    font-size: 2rem;
  }
}
.section__sub-top .sub__box a {
  color: inherit;
}

.breadcrumb {
  position: absolute;
  top: -4rem;
  color: #2F2F23;
  font-size: 1rem;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

body.page-parent .breadcrumb {
  display: none;
}

.section__list .innerwrapper,
.step__slider .innerwrapper,
.two__columns__with__signet .innerwrapper,
.two__columns .innerwrapper {
  padding-left: 3rem;
  padding-right: 3rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .section__list .innerwrapper,
  .step__slider .innerwrapper,
  .two__columns__with__signet .innerwrapper,
  .two__columns .innerwrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.section__list h2,
.step__slider h2,
.two__columns__with__signet h2,
.two__columns h2 {
  font-size: 1.3rem;
  text-align: left;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.5em;
}

.section__sub-top h2 {
  font-size: 1.3rem;
  text-align: left;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.5em;
}

.default__content .innerwrapper {
  padding-left: 3rem;
  padding-right: 3rem;
}
.default__content .innerwrapper a {
  color: inherit;
}
@media only screen and (max-width: 767px) {
  .default__content .innerwrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.default__content h3 {
  font-size: 1.3rem;
  text-align: left;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.5em;
}
.default__content h2 {
  margin-top: 0;
}

.section__list {
  margin: 1.5rem 0;
}
.section__list .innerwrapper {
  font-size: 1.3rem;
  text-align: left;
  font-weight: 500;
}
.section__list .innerwrapper ul,
.section__list .innerwrapper ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
  border: 1px solid #8B7765;
}
.section__list .innerwrapper ul li,
.section__list .innerwrapper ol li {
  list-style-type: none;
  margin: 0;
  padding: 1rem 1rem 1rem 5rem;
  color: #2F2F23;
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
.section__list .innerwrapper ul li:not(:last-child),
.section__list .innerwrapper ol li:not(:last-child) {
  border-bottom: 1px solid #8B7765;
}
.section__list .innerwrapper ul li:before,
.section__list .innerwrapper ol li:before {
  background-image: url("data:image/svg+xml;utf8,<svg width='20' height='16' xmlns='http://www.w3.org/2000/svg'><path d='M18.839.708a2.34 2.34 0 00-3.354 0L7.1 9.259 5.005 7.121a2.34 2.34 0 00-3.354 0 2.45 2.45 0 000 3.42l3.774 3.847a2.336 2.336 0 003.35 0L18.84 4.128a2.456 2.456 0 000-3.42z' fill='%238B7765' fill-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 1.3rem auto;
  content: "";
  display: block;
  width: 4rem;
  background-position: center center;
  border-right: 1px solid #8B7765;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.section__list .innerwrapper ol {
  counter-reset: list;
}
.section__list .innerwrapper ol li:before {
  counter-increment: list;
  content: counter(list);
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step__slider {
  margin: 3rem 0;
}
.step__slider .innerwrapper {
  font-size: 1.3rem;
  text-align: left;
  font-weight: 500;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.step__slider .slide__holder {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .step__slider .slide__holder {
    flex-direction: column;
  }
}
.step__slider .slide__holder .content__holder {
  width: calc(50% + 6rem);
  margin-right: -6rem;
  position: relative;
  z-index: 99;
  line-height: 1.71;
}
@media only screen and (max-width: 767px) {
  .step__slider .slide__holder .content__holder {
    width: 100%;
    margin-right: 0;
  }
}
.step__slider .slide__holder .content__holder .number__slider {
  position: absolute;
  font-size: 15rem;
  color: #8B7765;
  opacity: 0.2;
  width: 100%;
  transform: translateY(-6rem);
  font-family: "U8";
}
.step__slider .slide__holder .image__slider {
  width: calc(50% + 3rem + 3vw);
  font-size: 0;
  line-height: 0;
  margin-right: calc((3rem + 3vw) * -1);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .step__slider .slide__holder .image__slider {
    width: calc(100% + 1.5rem + 1.5rem + 6vw);
    margin-right: calc((1.5rem + 3vw) * -1);
    margin-left: calc((1.5rem + 3vw) * -1);
    margin-top: 2rem;
  }
}
.step__slider .slide__holder .image__slider:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #D7D2CB;
  opacity: 0.2;
  z-index: 2;
}
.step__slider .slide__holder .image__slider img {
  height: auto;
}
.step__slider .slide__holder .image__slider .slick-arrow {
  position: absolute;
  z-index: 99;
  right: 0;
  cursor: pointer;
}
.step__slider .slide__holder .image__slider .slick-arrow.slick-prev {
  display: none !important;
}
.step__slider .slide__holder .image__slider .slick-arrow.slick-next {
  background-color: transparent;
  border: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -99999px;
  background-image: url("data:image/svg+xml;utf8,<svg width='50' height='50' xmlns='http://www.w3.org/2000/svg'><g fill='%238B7765' fill-rule='evenodd'><path d='M26.53 13.626a1.125 1.125 0 00-1.62 0 1.2 1.2 0 000 1.665l8.68 8.92H10.525c-.635 0-1.15.528-1.15 1.18 0 .653.515 1.182 1.15 1.182h23.054l-8.681 8.919c-.216.22-.336.52-.336.833 0 .313.12.612.336.833.215.222.51.346.816.342.305-.002.598-.124.816-.342L37.166 26.23c.217-.223.337-.525.334-.84a1.235 1.235 0 00-.334-.838L26.53 13.626z'/><path d='M25.002 0A24.998 24.998 0 007.327 42.678c9.762 9.763 25.59 9.763 35.351 0 9.763-9.762 9.763-25.59 0-35.352A24.842 24.842 0 0025.002 0zm0 47.679c-12.5 0-22.675-10.176-22.675-22.677 0-12.5 10.174-22.676 22.675-22.676 12.501 0 22.677 10.175 22.677 22.676 0 12.501-10.176 22.677-22.677 22.677z'/></g></svg>");
  width: 3rem;
  height: 3rem;
  background-size: 98% auto;
  background-position: center center;
  background-repeat: no-repeat;
  right: 1.5rem;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .step__slider .slide__holder .image__slider .slick-arrow.slick-next {
    right: calc(3vw + 1.5rem);
  }
}
.step__slider .slide__holder .image__slider .slick-arrow.slick-next:focus {
  outline: 0;
}
.step__slider .slide__holder .single__content-slide {
  position: relative;
}

.two__columns__with__signet {
  margin: 3rem 0;
}
.two__columns__with__signet .innerwrapper {
  text-align: left;
  font-size: 1.3rem;
  text-align: left;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .two__columns__with__signet .innerwrapper {
    flex-direction: column;
  }
}
.two__columns__with__signet .innerwrapper .column__content,
.two__columns__with__signet .innerwrapper .column__signet {
  width: calc(50% - 3rem);
}
@media only screen and (max-width: 767px) {
  .two__columns__with__signet .innerwrapper .column__content,
  .two__columns__with__signet .innerwrapper .column__signet {
    width: 100%;
  }
}

.column__signet {
  font-size: 0;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.column__signet svg {
  width: 70%;
  height: auto;
  margin-top: 6rem;
}

.two__columns {
  margin: 1.5rem 0;
}
.two__columns .innerwrapper {
  text-align: left;
  font-size: 1.3rem;
  text-align: left;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .two__columns .innerwrapper {
    flex-direction: column;
    gap: 2rem 0;
  }
}
.two__columns .innerwrapper h2 {
  width: 100%;
  margin-bottom: 0.5em;
}
.two__columns .innerwrapper .column__content {
  width: calc(50% - 3rem);
}
@media only screen and (max-width: 767px) {
  .two__columns .innerwrapper .column__content {
    width: 100%;
  }
}
.two__columns .innerwrapper .column__content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.two__columns .innerwrapper .column__content ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.two__columns .innerwrapper .column__content ul li:not(:last-child) {
  border-bottom: 1px solid #D7D2CB;
}

.default__content {
  padding: 3rem 0;
  scroll-margin-top: 8rem;
  overflow: visible;
}
.default__content .innerwrapper {
  text-align: left;
  font-size: 1.3rem;
  text-align: left;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.default__content .innerwrapper h2 {
  width: 100%;
  margin-bottom: 0.5em;
}
.default__content .innerwrapper h2 {
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.48;
  font-family: "U8";
  padding-bottom: 0.5em;
}
.default__content .innerwrapper .content {
  width: 100%;
}

.fullwidth__image {
  margin: 3rem 0;
}
.fullwidth__image .image__inner {
  width: 100%;
  font-size: 0;
  height: 40rem;
  line-height: 0;
}
.fullwidth__image .image__inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.read__more {
  border-top: 1px solid #8B7765;
  border-bottom: 1px solid #8B7765;
  margin-top: -1px;
}
.read__more:first-of-type {
  margin-top: 3rem;
}
.read__more h3 {
  font-weight: 500;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 1em 0;
  padding-left: 1em;
}
.read__more h3:before {
  content: "+";
  position: absolute;
  left: 0;
}
.read__more h3.is--active:before {
  content: "-";
}
.read__more .read__more-inner {
  display: none;
  padding-bottom: 2rem;
}

.cf_info.failure {
  padding: 15px;
  border: 2px solid #c90000;
  background-color: #ffd0d0;
  color: #2F2F23;
  text-align: center;
  margin: 3rem 0;
  width: 100%;
}

.cf_info.waiting {
  padding: 15px;
  border: 2px solid #4d8989;
  background-color: #c0e6e6;
  color: #2F2F23;
  text-align: center;
  margin: 3rem 0;
  width: 100%;
}

.cf_info.success {
  padding: 15px;
  border: 2px solid #00ca04;
  background-color: #d0ffd6;
  color: #2F2F23;
  text-align: center;
  margin: 3rem 0;
  width: 100%;
}

.cform {
  text-align: left;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .cform {
    width: 100%;
    margin-left: 0;
  }
}
.cform .cf_hidden,
.cform .reqtxt,
.cform .emailreqtxt {
  display: none;
}
.cform .textonly,
.cform .cf-box-title,
.cform #label--13 span {
  font-size: 1rem;
  line-height: 1.125rem;
  display: block;
  margin-bottom: 1em;
  color: #2F2F23;
  font-weight: 700;
}
.cform .textonly h3,
.cform .cf-box-title h3,
.cform #label--13 span h3 {
  margin-top: 0;
}
.cform input[type=text],
.cform textarea,
.cform .cformselect {
  width: 100%;
  border: 0;
  background-color: #FFFFFF;
  padding: 5px 10px;
  font-size: 0.9rem;
  line-height: 1.125;
  color: #2F2F23;
  margin-bottom: 10px;
  border: 1px solid rgba(47, 47, 35, 0.5);
}
.cform input[type=text].cf_error,
.cform textarea.cf_error,
.cform .cformselect.cf_error {
  background-color: #FFDCDC;
}
.cform textarea {
  height: 7.5rem;
}
.cform .cf-box-group {
  margin-bottom: 1.3rem;
  display: flex;
  flex-wrap: wrap;
}
.cform .cf-box-group input {
  margin: 0 0 0 0;
  padding: 0;
  width: 20px;
  height: 20px;
}
@media all and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  .cform .cf-box-group input {
    margin-top: 0.5em;
  }
}
@supports (-moz-appearance: meterbar) and (background-blend-mode: difference, normal) {
  .cform .cf-box-group input {
    margin-top: 0.2em;
  }
}
@supports (-ms-ime-align: auto) {
  .cform .cf-box-group input {
    margin-top: 0.2em;
  }
}
@media only screen and (max-width: 900px) {
  .cform .cf-box-group input {
    width: 15px !important;
    height: 15px !important;
    margin-top: 0.1em !important;
  }
}
.cform .cf-box-group label {
  position: relative;
  width: calc(100% - 20px);
  display: block;
  font-size: 1rem;
  color: #2F2F23;
  line-height: 1.325rem;
  padding-left: 10px;
  margin-bottom: 0.2em;
}
.cform .cf-sb {
  display: block;
  clear: both;
  width: 100%;
  padding-top: 30px;
  position: relative;
  z-index: 3;
  text-align: right;
}
@media only screen and (max-width: 890px) {
  .cform .cf-sb {
    padding-left: 0;
  }
}
.cform .cf-sb input {
  display: inline-block;
  border: 0;
  background-color: #D7D2CB;
  font-size: 1.125rem;
  line-height: 1.125rem;
  padding: 12px 25px;
  margin-left: 30px;
  color: #2F2F23;
  cursor: pointer;
}
@media only screen and (max-width: 890px) {
  .cform .cf-sb input {
    margin-left: 0;
  }
}
.cform label.cf-after {
  position: relative;
  width: 100%;
  display: block;
  font-size: 1rem;
  color: #2F2F23;
  line-height: 1.325rem;
  padding-left: 30px;
}
.cform label.cf-after a {
  color: inherit;
}
.cform label {
  color: #2F2F23;
}
.cform ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.cform ol li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cform ol li#li--6, .cform ol li#li-2-9 {
  position: relative;
  display: flex;
}
.cform ol li#li--6 input, .cform ol li#li-2-9 input {
  order: 1;
  margin: 0.1rem 0 0 0;
  width: 1rem;
  height: 1rem;
}
.cform ol li#li--6 label, .cform ol li#li-2-9 label {
  order: 2;
  flex: 1;
  padding-left: 0.5rem;
}
.cform ol li#li--6 label a, .cform ol li#li-2-9 label a {
  color: inherit;
}
.cform:after {
  content: "";
  display: block;
  clear: both;
  font-size: 0;
  line-height: 0;
}

.contact__teaser {
  margin-bottom: 1.8rem;
  margin-top: 1.8rem;
}
.contact__teaser .innerwrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.contact__teaser .innerwrapper .open__map {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.contact__teaser .innerwrapper .open__map .plus {
  margin-top: 3rem;
}
.contact__teaser .contact__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  right: 0;
  bottom: 0;
  font-size: 0;
  line-height: 0;
  z-index: 1;
}
.contact__teaser .contact__image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #8B7765;
  opacity: 0.85;
  z-index: 1;
}
.contact__teaser .contact__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 0;
}

.page__outerwrapper {
  width: 100%;
  overflow: hidden;
}

.section__aerzte {
  position: relative;
  overflow: visible;
  scroll-margin-top: 8rem;
}
.section__aerzte .icon_aerzte {
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: auto;
  transform-origin: 50% 50%;
  transform: rotate(90deg) translate(-20%, -11%);
  z-index: -1;
  opacity: 0.1;
}
@media only screen and (max-width: 767px) {
  .section__aerzte .icon_aerzte {
    display: none;
  }
}
.section__aerzte .innerwrapper {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media only screen and (max-width: 767px) {
  .section__aerzte .innerwrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.section__aerzte .innerwrapper h2 {
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.48;
  font-family: "U8";
  padding-bottom: 0.5em;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .section__aerzte .innerwrapper h2 {
    font-size: 2rem;
  }
}
.section__aerzte .aerzte__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .section__aerzte .aerzte__wrapper {
    grid-template-columns: 100%;
  }
}
.section__aerzte .single__arzt {
  text-align: left;
  font-size: 1.3rem;
  text-align: left;
  font-weight: 500;
  margin-bottom: 5rem;
}
.section__aerzte .single__arzt h3 {
  font-size: 1.3rem;
  font-family: "U8";
  margin: 1.5em 0;
  font-weight: 500;
}
.section__aerzte .single__arzt .read__more h3 {
  margin: 0;
}
.section__aerzte .single__arzt .read__more .read__more-inner p:first-child,
.section__aerzte .single__arzt .read__more .read__more-inner ul:first-child {
  margin-top: 0;
}
.section__aerzte .single__arzt .read__more .read__more-inner p:last-child,
.section__aerzte .single__arzt .read__more .read__more-inner ul:last-child {
  margin-bottom: 0;
}
.section__aerzte .single__arzt .arzt__image {
  width: 100%;
  font-size: 0;
  line-height: 0;
  position: relative;
}
.section__aerzte .single__arzt .arzt__image .vis_name {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #FFF;
  background-color: #8B7765;
  font-size: 1vw;
  font-family: "U8";
  font-weight: 500;
  line-height: 1;
  text-align: right;
  line-height: 1.4;
  padding: 0.5em 1em;
}
@media only screen and (max-width: 767px) {
  .section__aerzte .single__arzt .arzt__image .vis_name {
    display: none;
  }
}
.section__aerzte .single__arzt .arzt__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/11;
  -o-object-fit: cover;
     object-fit: cover;
}

.column__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4rem;
}
@media only screen and (max-width: 767px) {
  .column__wrapper {
    grid-template-columns: 100%;
  }
}
.column__wrapper .column img {
  width: 70%;
  height: auto;
  margin: -2rem auto 0 auto;
  display: block;
}
@media only screen and (max-width: 767px) {
  .column__wrapper .column img {
    width: 100%;
    margin-top: 2rem;
  }
}

.section__standorte .innerwrapper {
  padding-block: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__standorte .innerwrapper > h2 {
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.48;
  font-family: "U8";
  margin: 0;
  color: #8B7765;
}
.section__standorte .innerwrapper .standort__wrapper {
  display: flex;
  justify-content: center;
  gap: 0 4rem;
  width: 100%;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .section__standorte .innerwrapper .standort__wrapper {
    flex-direction: column;
    gap: 3rem 0;
  }
}
.section__standorte .innerwrapper .standort__wrapper .single__standort {
  background-color: #D7D2CB;
  flex: 1;
  text-align: left;
}
.section__standorte .innerwrapper .standort__wrapper .single__standort .image {
  font-size: 0;
  line-height: 0;
  width: 100%;
}
.section__standorte .innerwrapper .standort__wrapper .single__standort .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__standorte .innerwrapper .standort__wrapper .single__standort .standort__content {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 1rem 1rem;
  padding: 2rem;
}
.section__standorte .innerwrapper .standort__wrapper .single__standort .standort__content a {
  color: inherit;
}
@media only screen and (max-width: 767px) {
  .section__standorte .innerwrapper .standort__wrapper .single__standort .standort__content {
    grid-template-columns: 100%;
    font-size: 1.4rem;
  }
}
.section__standorte .innerwrapper .standort__wrapper .single__standort .standort__content > h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  font-family: "U8";
  margin: 0;
  grid-column: span 2;
}
@media only screen and (max-width: 767px) {
  .section__standorte .innerwrapper .standort__wrapper .single__standort .standort__content > h3 {
    grid-column: unset;
  }
}
.section__standorte .innerwrapper .standort__wrapper .single__standort .standort__content .contact__info p:first-child {
  margin-top: 0;
}
.section__standorte .innerwrapper .standort__wrapper .single__standort .standort__content .contact__info p:last-child {
  margin-bottom: 0;
}
.section__standorte .innerwrapper .standort__wrapper .single__standort .standort__content .opening p:first-child {
  margin-top: 0;
}
.section__standorte .innerwrapper .standort__wrapper .single__standort .standort__content .opening p:last-child {
  margin-bottom: 0;
}

.section__standort-sub-top {
  background-color: #D7D2CB;
}
.section__standort-sub-top .innerwrapper {
  padding-top: 14rem;
  display: grid;
  grid-template-columns: 1fr 44rem;
  gap: 0 4rem;
  padding-bottom: 3rem;
  padding-inline: 3rem;
}
@media only screen and (max-width: 767px) {
  .section__standort-sub-top .innerwrapper {
    grid-template-columns: 100%;
    gap: 2rem;
    padding-bottom: 0;
    padding-inline: 1.5rem;
  }
}
.section__standort-sub-top .innerwrapper .content {
  text-align: left;
  font-size: 1.1rem;
}
.section__standort-sub-top .innerwrapper .content h1 {
  font-size: 3.03rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
  font-family: "U8";
  font-weight: 400;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .section__standort-sub-top .innerwrapper .image__slider {
    width: calc(100% + 1.5rem + 1.5rem + 3vw + 3vw);
    margin-inline: calc((1.5rem + 3vw) * -1);
  }
}
.section__standort-sub-top .innerwrapper .image__slider .image__slider-wrapper {
  font-size: 0;
  line-height: 0;
}
.section__standort-sub-top .innerwrapper .image__slider .image__slider-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
