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

a {
  transition: 0.5s;
  text-decoration: none;
}

ul {
  padding-left: 40px;
}
ul li {
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

input, textarea {
  color: #888;
  font-size: 1.25rem;
  font-weight: 300;
  font-family: "League Spartan", sans-serif !important;
}
input::placeholder, textarea::placeholder {
  font-size: 1.25rem;
  color: #888;
  font-family: "League Spartan", sans-serif !important;
  font-weight: 300;
}
input:focus, textarea:focus {
  outline: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "BioRhyme", serif;
  line-height: 1.5;
}

body {
  font-weight: 300;
  line-height: 2;
  font-size: 16px;
  font-family: "League Spartan", sans-serif;
  background-color: #fff;
  color: #333333;
  position: relative;
}
body.open:before {
  opacity: 1;
  visibility: visible;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

main {
  overflow: hidden;
}

.header__inner {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFF;
  box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.05);
}
@media (min-width: 768px) {
  .header__inner {
    padding: 16px 48px;
  }
}
.header__inner .logo img {
  max-width: 125px;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  .header__inner .hamburger-wrapper {
    display: none;
  }
}
.header__inner .hamburger-wrapper .hamburger svg {
  height: 32px;
  width: auto;
  vertical-align: middle;
}
.header__inner .navbar {
  display: none;
}
@media (min-width: 768px) {
  .header__inner .navbar {
    display: block;
  }
}
.header__inner .navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.header__inner .navbar ul li {
  margin-right: 16px;
}
.header__inner .navbar ul li:last-child {
  margin-right: 0;
}
.header__inner .navbar ul li a {
  color: #000;
}
.header__inner .navbar ul li.current_page_item a {
  text-decoration: underline;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 400px;
  width: 100%;
  background-color: #FFF;
  height: 100%;
  z-index: 10000000;
  overflow: scroll;
  border-top: 10px solid #FFF;
  border-bottom: 10px solid #FFF;
  transition: 0.5s;
  transform: translateX(-400px);
}
.mobile-menu.open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid #ddd;
}
.mobile-menu__top svg {
  vertical-align: middle;
}
.mobile-menu__top .left img {
  max-width: 125px;
  height: auto;
  vertical-align: bottom;
}
.mobile-menu__top .right svg {
  width: 24px;
  height: auto;
  fill: #333;
}
.mobile-menu__items {
  border-bottom: 1px solid #ddd;
  padding: 0 24px 24px 24px;
}
.mobile-menu__items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu__items ul li {
  margin-top: 24px;
}
.mobile-menu__items ul li a {
  color: #333;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
.mobile-menu__items ul li.menu-item-has-children > a {
  display: none;
}
@media (min-width: 768px) {
  .mobile-menu__items ul li.menu-item-has-children > a {
    display: block;
  }
}
.mobile-menu__items ul li.current-menu-item a {
  color: #000;
}
.mobile-menu__actions {
  border-bottom: 1px solid #ddd;
  padding: 24px;
}
.mobile-menu__actions .actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mobile-menu__actions .actions__item {
  margin-right: 12px;
}
.mobile-menu__actions .actions__item:last-child {
  margin-right: 0;
}
.mobile-menu__actions .actions__item a {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #000;
  align-items: center;
  justify-content: center;
}
.mobile-menu__actions .actions__item a:hover, .mobile-menu__actions .actions__item a:focus {
  background: #000;
}
.mobile-menu__actions .actions__item a:hover svg path, .mobile-menu__actions .actions__item a:focus svg path {
  fill: #FFF;
}
.mobile-menu__actions .actions__item a svg path {
  fill: #000;
}

.footer {
  margin-top: 64px;
  background-color: #C39B51;
  position: relative;
  z-index: 10;
}
.footer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(195, 155, 81, 0) 100%);
  z-index: -1;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 24px 16px 24px;
  display: flex;
  flex-wrap: wrap;
}
.footer__inner--left, .footer__inner--right {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__inner--left, .footer__inner--right {
    width: 50%;
  }
}
.footer__inner--left ul, .footer__inner--right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__inner--left ul li, .footer__inner--right ul li {
  line-height: 2;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
.footer__inner--left ul li a, .footer__inner--right ul li a {
  color: #333333;
  text-decoration: underline;
}
.footer__inner--left .socials, .footer__inner--right .socials {
  display: flex;
  width: 100%;
  margin-top: 12px;
}
.footer__inner--left .socials .social, .footer__inner--right .socials .social {
  margin-right: 12px;
}
.footer__inner--left .socials .social:last-child, .footer__inner--right .socials .social:last-child {
  margin-right: 0;
}
.footer__inner--left .socials .social a, .footer__inner--right .socials .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #333333;
  border-radius: 50%;
}
.footer__inner--left .socials .social a svg, .footer__inner--right .socials .social a svg {
  height: 24px;
  width: auto;
}
.footer__inner--left h1 {
  margin-bottom: 12px;
}
.footer__inner--right {
  display: flex;
  align-items: space-between;
  flex-wrap: wrap;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .footer__inner--right {
    margin-top: 0;
  }
}
.footer__inner--right .opening {
  width: 100%;
}
.footer__inner--right .opening ul {
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .footer__inner--right .opening ul li {
    text-align: right;
  }
}
.footer__inner--bottom {
  margin-top: 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__inner--bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .footer__inner--bottom .right {
    width: 100%;
    order: 1;
  }
}
@media (max-width: 767px) {
  .footer__inner--bottom .left {
    order: 2;
    width: 100%;
  }
}
.footer__inner--bottom p, .footer__inner--bottom a {
  font-size: 0.875rem;
  color: #000;
}
.footer__inner--bottom a {
  text-decoration: underline;
}

body.page-template-home .hero {
  background-color: #C39B51;
  width: 100%;
  min-height: 410px;
  position: relative;
  z-index: 10;
}
body.page-template-home .hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 48px 24px 0 24px;
  min-height: 410px;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner {
    padding: 48px 24px;
  }
}
body.page-template-home .hero__inner:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #C39B51 0%, rgba(255, 255, 255, 0.5) 100%);
  z-index: 10;
  z-index: -1;
}
body.page-template-home .hero__inner--left {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner--left {
    width: 60%;
    margin-bottom: 0;
  }
}
body.page-template-home .hero__inner--left .inner {
  max-width: 575px;
  width: 100%;
}
body.page-template-home .hero__inner--left .inner h1 {
  color: #FFF;
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner--left .inner h1 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-home .hero__inner--left .inner p {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner--left .inner p {
    font-size: 1.25rem;
  }
}
body.page-template-home .hero__inner--left .inner .buttons {
  margin-top: 12px;
}
body.page-template-home .hero__inner--left .inner .buttons .button a {
  display: inline-block;
  padding: 8px 32px 6px 32px;
  color: #000;
  background-color: #FFF;
  border-radius: 10px;
  font-size: 1.125rem;
  cursor: pointer;
}
body.page-template-home .hero__inner--right {
  width: 100%;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner--right {
    width: 40%;
  }
}
body.page-template-home .hero__inner--right img {
  width: 100%;
  height: auto;
  margin-bottom: -24px;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner--right img {
    position: absolute;
    bottom: -64px;
    right: 0;
    margin-bottom: 0;
    max-width: 35vw;
  }
}
body.page-template-home .services {
  margin-top: 64px;
}
body.page-template-home .services__inner {
  padding: 0 24px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
body.page-template-home .services__inner h2 {
  text-align: center;
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.page-template-home .services__inner h2 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-home .services__inner--items {
  margin-top: 48px;
  display: flex;
  max-width: 100%;
  overflow-x: scroll;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body.page-template-home .services__inner--items::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1200px) {
  body.page-template-home .services__inner--items {
    justify-content: center;
  }
}
body.page-template-home .services__inner--items .item {
  width: 102px;
  margin-right: 24px;
}
@media (min-width: 768px) {
  body.page-template-home .services__inner--items .item {
    width: 164px;
    margin-right: 32px;
  }
}
body.page-template-home .services__inner--items .item:last-child {
  margin-right: 0;
}
body.page-template-home .services__inner--items .item .block {
  width: 102px;
  margin: 0 auto;
  height: 102px;
  background-color: rgba(195, 155, 81, 0.16);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  body.page-template-home .services__inner--items .item .block {
    width: 126px;
    height: 126px;
  }
}
body.page-template-home .services__inner--items .item .block svg {
  width: auto;
  height: 72px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  body.page-template-home .services__inner--items .item .block svg {
    height: 80px;
  }
}
body.page-template-home .services__inner--items .item .text {
  text-align: center;
  margin-top: 12px;
}
body.page-template-home .services__inner--items .item .text p {
  color: #000;
  font-size: 1.125rem;
  font-weight: 600;
}
body.page-template-home .about {
  margin-top: 64px;
  background-color: #333333;
}
body.page-template-home .about__inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  min-height: 650px;
}
body.page-template-home .about__inner--left, body.page-template-home .about__inner--right {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .about__inner--left, body.page-template-home .about__inner--right {
    width: 50%;
  }
}
body.page-template-home .about__inner--left {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
}
@media (min-width: 768px) {
  body.page-template-home .about__inner--left {
    order: 1;
  }
}
body.page-template-home .about__inner--left .inner {
  max-width: 578px;
  margin: 0 auto;
  padding: 64px 24px;
  width: 100%;
}
body.page-template-home .about__inner--left .inner h2 {
  color: #FFF;
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.page-template-home .about__inner--left .inner h2 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-home .about__inner--left .inner p {
  color: #FFF;
  margin: 12px 0 0 0;
  line-height: 2;
  font-size: 1.125rem;
}
body.page-template-home .about__inner--left .inner .button {
  margin-top: 24px;
}
body.page-template-home .about__inner--left .inner .button a {
  display: inline-block;
  padding: 8px 32px 6px 32px;
  color: #000;
  background-color: #C39B51;
  border-radius: 10px;
  font-size: 1.125rem;
  cursor: pointer;
}
body.page-template-home .about__inner--right {
  order: 1;
}
@media (min-width: 768px) {
  body.page-template-home .about__inner--right {
    order: 2;
  }
}
body.page-template-home .about__inner--right .image {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .about__inner--right .image {
    position: absolute;
    width: 50%;
    top: 0;
    height: 100%;
    right: 0;
  }
}
body.page-template-home .about__inner--right .image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  body.page-template-home .about__inner--right .image img {
    height: 100%;
  }
}
body.page-template-home .faq {
  margin-top: 64px;
}
body.page-template-home .faq__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-home .faq__inner--top {
  width: 100%;
  text-align: center;
}
body.page-template-home .faq__inner--top h2 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.page-template-home .faq__inner--top h2 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-home .faq__inner--left, body.page-template-home .faq__inner--right {
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.page-template-home .faq__inner--left, body.page-template-home .faq__inner--right {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.page-template-home .faq__inner--left {
    padding-right: 24px;
  }
}
body.page-template-home .faq__inner--left .inner {
  background-color: rgba(195, 155, 81, 0.16);
  border-radius: 10px;
  padding: 48px 24px;
}
@media (min-width: 768px) {
  body.page-template-home .faq__inner--left .inner {
    padding: 48px 32px;
  }
}
body.page-template-home .faq__inner--left .inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.page-template-home .faq__inner--left .inner ul li {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-home .faq__inner--left .inner ul li:first-child {
  margin-top: 0;
}
body.page-template-home .faq__inner--left .inner ul li .icon {
  width: 30px;
}
body.page-template-home .faq__inner--left .inner ul li .text {
  width: calc(100% - 30px);
  padding-left: 12px;
}
body.page-template-home .faq__inner--left .inner ul li .text p {
  text-decoration: underline;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  body.page-template-home .faq__inner--right {
    padding-left: 24px;
  }
}
body.page-template-home .faq__inner--right .items .item {
  margin-top: 24px;
}
body.page-template-home .faq__inner--right .items .item:first-child {
  margin-top: 0;
}
body.page-template-home .faq__inner--right .items .item.open .question {
  border-radius: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
body.page-template-home .faq__inner--right .items .item.open .question .icon svg {
  transform: rotate(180deg);
}
body.page-template-home .faq__inner--right .items .item.open .answer {
  display: block;
}
body.page-template-home .faq__inner--right .items .item .question {
  display: flex;
  background-color: #333333;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  padding: 16px 24px;
}
body.page-template-home .faq__inner--right .items .item .question .icon {
  width: 15px;
}
body.page-template-home .faq__inner--right .items .item .question .icon svg {
  vertical-align: middle;
  width: 15px;
  height: auto;
}
body.page-template-home .faq__inner--right .items .item .question .text {
  width: calc(100% - 15px);
  padding-right: 12px;
}
body.page-template-home .faq__inner--right .items .item .question .text p {
  color: #FFF;
  font-size: 1.125rem;
  line-height: 1.5;
}
body.page-template-home .faq__inner--right .items .item .answer {
  background-color: rgba(195, 155, 81, 0.16);
  padding: 24px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: none;
}
body.page-template-home .faq__inner--right .items .item .answer p {
  margin: 12px 0 0 0;
  font-size: 1.125rem;
  line-height: 1.5;
}
body.page-template-home .faq__inner--right .items .item .answer p:first-child {
  margin-top: 0;
}

body.single-dienst .hero {
  text-align: center;
  padding: 64px 0;
  border-bottom: 1px solid #CAB8B8;
}
body.single-dienst .hero #breadcrumbs span {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.single-dienst .hero #breadcrumbs span a {
  color: #000;
}
body.single-dienst .hero #breadcrumbs span.breadcrumb_last {
  color: #C39B51;
  font-weight: 700;
}
body.single-dienst .hero h1 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.single-dienst .hero h1 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.single-dienst .content {
  margin-top: 64px;
}
body.single-dienst .content__inner {
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
body.single-dienst .content__inner--left, body.single-dienst .content__inner--right {
  width: 100%;
}
@media (min-width: 768px) {
  body.single-dienst .content__inner--left, body.single-dienst .content__inner--right {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.single-dienst .content__inner--left {
    padding-right: 24px;
  }
}
body.single-dienst .content__inner--left .inner {
  display: flex;
  flex-wrap: wrap;
}
body.single-dienst .content__inner--left .inner__form {
  background-color: rgba(195, 155, 81, 0.16);
  border-radius: 10px;
  padding: 24px;
  width: 100%;
  order: 2;
  margin-top: 24px;
}
@media (min-width: 768px) {
  body.single-dienst .content__inner--left .inner__form {
    margin-top: 0;
    order: 1;
    padding: 48px;
  }
}
body.single-dienst .content__inner--left .inner__form h2 {
  text-align: center;
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.single-dienst .content__inner--left .inner__form .fields {
  margin-top: 12px;
}
body.single-dienst .content__inner--left .inner__form .fields form .form-group {
  display: flex;
  flex-wrap: wrap;
}
body.single-dienst .content__inner--left .inner__form .fields form .form-group .field {
  width: 100%;
  margin-top: 12px;
}
@media (min-width: 768px) {
  body.single-dienst .content__inner--left .inner__form .fields form .form-group .field {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.single-dienst .content__inner--left .inner__form .fields form .form-group .field:first-child {
    padding-right: 12px;
  }
}
@media (min-width: 768px) {
  body.single-dienst .content__inner--left .inner__form .fields form .form-group .field:last-child {
    padding-left: 12px;
  }
}
body.single-dienst .content__inner--left .inner__form .fields form .form-group .field input, body.single-dienst .content__inner--left .inner__form .fields form .form-group .field textarea {
  width: 100%;
  border-radius: 5px;
  border: none;
  border: 1px solid transparent;
  font-size: 1.125rem;
  padding: 12px;
}
body.single-dienst .content__inner--left .inner__form .fields form .form-group .field input::placeholder, body.single-dienst .content__inner--left .inner__form .fields form .form-group .field textarea::placeholder {
  font-size: 1.125rem;
}
body.single-dienst .content__inner--left .inner__form .fields form .form-group .field input.error, body.single-dienst .content__inner--left .inner__form .fields form .form-group .field textarea.error {
  border: 1px solid red;
}
body.single-dienst .content__inner--left .inner__form .fields form .form-group .send {
  margin-top: 12px;
}
body.single-dienst .content__inner--left .inner__form .fields form .form-group .send button {
  display: inline-block;
  padding: 16px 32px 14px 32px;
  color: #000;
  background-color: #C39B51;
  border-radius: 5px;
  font-weight: 300;
  font-family: "League Spartan", sans-serif;
  border: none;
  font-size: 1.125rem;
  font-size: 1.125rem;
  cursor: pointer;
}
body.single-dienst .content__inner--left .inner__form .fields form .form-group.full .field {
  width: 100%;
  padding: 0;
}
body.single-dienst .content__inner--left .inner__image {
  order: 1;
  width: 100%;
}
@media (min-width: 768px) {
  body.single-dienst .content__inner--left .inner__image {
    margin-top: 24px;
    order: 2;
  }
}
body.single-dienst .content__inner--left .inner__image img {
  border-radius: 10px;
}
body.single-dienst .content__inner--right {
  margin-top: 24px;
}
@media (min-width: 768px) {
  body.single-dienst .content__inner--right {
    margin-top: 0;
    padding-left: 24px;
  }
}
body.single-dienst .content__inner--right .inner__wrap {
  border: 1px solid #C39B51;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top: none;
  padding: 24px;
}
body.single-dienst .content__inner--right .inner__wrap h1 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.single-dienst .content__inner--right .inner__wrap h2 {
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body.single-dienst .content__inner--right .inner__wrap h3 {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.single-dienst .content__inner--right .inner__wrap p {
  font-size: 1.125rem;
  margin: 12px 0 0 0;
}
body.single-dienst .content__inner--right .inner__image img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
body.single-dienst .content__inner--left .inner__image, body.single-dienst .content__inner--right .inner__image {
  width: 100%;
}
body.single-dienst .content__inner--left .inner__image img, body.single-dienst .content__inner--right .inner__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 596/269;
  object-fit: cover;
  vertical-align: bottom;
}
body.single-dienst .services {
  margin-top: 64px;
}
body.single-dienst .services__inner {
  padding: 0 24px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
body.single-dienst .services__inner h2 {
  text-align: center;
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.single-dienst .services__inner h2 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.single-dienst .services__inner--items {
  margin-top: 48px;
  display: flex;
  max-width: 100%;
  overflow-x: scroll;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body.single-dienst .services__inner--items::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1200px) {
  body.single-dienst .services__inner--items {
    justify-content: center;
  }
}
body.single-dienst .services__inner--items .item {
  width: 102px;
  margin-right: 24px;
}
@media (min-width: 768px) {
  body.single-dienst .services__inner--items .item {
    width: 164px;
    margin-right: 32px;
  }
}
body.single-dienst .services__inner--items .item:last-child {
  margin-right: 0;
}
body.single-dienst .services__inner--items .item .block {
  width: 102px;
  margin: 0 auto;
  height: 102px;
  background-color: rgba(195, 155, 81, 0.16);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  body.single-dienst .services__inner--items .item .block {
    width: 126px;
    height: 126px;
  }
}
body.single-dienst .services__inner--items .item .block svg {
  width: auto;
  height: 72px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  body.single-dienst .services__inner--items .item .block svg {
    height: 80px;
  }
}
body.single-dienst .services__inner--items .item .text {
  text-align: center;
  margin-top: 12px;
}
body.single-dienst .services__inner--items .item .text p {
  color: #000;
  font-size: 1.125rem;
  font-weight: 600;
}

body.page-template-about .hero {
  text-align: center;
  padding: 64px 0;
  border-bottom: 1px solid #CAB8B8;
}
body.page-template-about .hero #breadcrumbs span {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-about .hero #breadcrumbs span a {
  color: #000;
}
body.page-template-about .hero #breadcrumbs span.breadcrumb_last {
  color: #C39B51;
  font-weight: 700;
}
body.page-template-about .hero h1 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.page-template-about .hero h1 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-about .blocks__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}
body.page-template-about .blocks__inner--block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 64px;
}
@media (min-width: 768px) {
  body.page-template-about .blocks__inner--block:nth-child(even) .left {
    order: 2;
    padding-left: 24px;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  body.page-template-about .blocks__inner--block:nth-child(even) .left img {
    right: 0;
    left: unset;
  }
}
@media (min-width: 768px) {
  body.page-template-about .blocks__inner--block:nth-child(even) .right {
    order: 1;
    padding-right: 24px;
    padding-left: 0;
  }
}
body.page-template-about .blocks__inner--block .left, body.page-template-about .blocks__inner--block .right {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-about .blocks__inner--block .left, body.page-template-about .blocks__inner--block .right {
    width: 50%;
  }
}
body.page-template-about .blocks__inner--block .left {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-about .blocks__inner--block .left {
    padding-right: 24px;
  }
}
body.page-template-about .blocks__inner--block .left img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  body.page-template-about .blocks__inner--block .left img {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 24px);
    height: 100%;
  }
}
body.page-template-about .blocks__inner--block .right {
  margin-top: 24px;
}
@media (min-width: 768px) {
  body.page-template-about .blocks__inner--block .right {
    margin-top: 0;
    padding-left: 24px;
  }
}
body.page-template-about .blocks__inner--block .right h1, body.page-template-about .blocks__inner--block .right h2, body.page-template-about .blocks__inner--block .right h3 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.page-template-about .blocks__inner--block .right p {
  margin: 12px 0 0 0;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-about .services {
  margin-top: 64px;
}
body.page-template-about .services__inner {
  padding: 0 24px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
body.page-template-about .services__inner h2 {
  text-align: center;
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.page-template-about .services__inner h2 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-about .services__inner--items {
  margin-top: 48px;
  display: flex;
  max-width: 100%;
  overflow-x: scroll;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body.page-template-about .services__inner--items::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1200px) {
  body.page-template-about .services__inner--items {
    justify-content: center;
  }
}
body.page-template-about .services__inner--items .item {
  width: 102px;
  margin-right: 24px;
}
@media (min-width: 768px) {
  body.page-template-about .services__inner--items .item {
    width: 164px;
    margin-right: 32px;
  }
}
body.page-template-about .services__inner--items .item:last-child {
  margin-right: 0;
}
body.page-template-about .services__inner--items .item .block {
  width: 102px;
  margin: 0 auto;
  height: 102px;
  background-color: rgba(195, 155, 81, 0.16);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  body.page-template-about .services__inner--items .item .block {
    width: 126px;
    height: 126px;
  }
}
body.page-template-about .services__inner--items .item .block svg {
  width: auto;
  height: 72px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  body.page-template-about .services__inner--items .item .block svg {
    height: 80px;
  }
}
body.page-template-about .services__inner--items .item .text {
  text-align: center;
  margin-top: 12px;
}
body.page-template-about .services__inner--items .item .text p {
  color: #000;
  font-size: 1.125rem;
  font-weight: 600;
}

body.page-template-contact .hero {
  text-align: center;
  padding: 64px 0;
  border-bottom: 1px solid #CAB8B8;
}
body.page-template-contact .hero #breadcrumbs span {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-contact .hero #breadcrumbs span a {
  color: #000;
}
body.page-template-contact .hero #breadcrumbs span.breadcrumb_last {
  color: #C39B51;
  font-weight: 700;
}
body.page-template-contact .hero h1 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.page-template-contact .hero h1 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-contact .contact {
  margin-top: 64px;
}
body.page-template-contact .contact__inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-contact .contact__inner--left, body.page-template-contact .contact__inner--right {
  width: 100%;
}
body.page-template-contact .contact__inner--left h2, body.page-template-contact .contact__inner--right h2 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.page-template-contact .contact__inner--left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-contact .contact__inner--left {
    width: 40%;
    padding-right: 24px;
  }
}
body.page-template-contact .contact__inner--left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 12px;
}
body.page-template-contact .contact__inner--left ul li {
  line-height: 2;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-contact .contact__inner--left ul li a {
  color: #333333;
  text-decoration: underline;
}
body.page-template-contact .contact__inner--left .socials {
  display: flex;
  width: 100%;
  margin-top: 12px;
}
body.page-template-contact .contact__inner--left .socials .social {
  margin-right: 12px;
}
body.page-template-contact .contact__inner--left .socials .social:last-child {
  margin-right: 0;
}
body.page-template-contact .contact__inner--left .socials .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #333333;
  border-radius: 50%;
}
body.page-template-contact .contact__inner--left .socials .social a svg {
  height: 24px;
  width: auto;
}
body.page-template-contact .contact__inner--right {
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.page-template-contact .contact__inner--right {
    margin-top: 0;
    width: 60%;
    padding-left: 64px;
  }
}
@media (min-width: 768px) {
  body.page-template-contact .contact__inner--right h2 {
    text-align: center;
  }
}
body.page-template-contact .contact__inner--right form {
  margin-top: 16px;
}
body.page-template-contact .contact__inner--right form .field {
  width: 100%;
  margin-top: 12px;
}
body.page-template-contact .contact__inner--right form .field input, body.page-template-contact .contact__inner--right form .field textarea {
  border: 1px solid #C39B51;
  font-size: 1.125rem;
  padding: 12px;
  border-radius: 5px;
  width: 100%;
}
body.page-template-contact .contact__inner--right form .field input::placeholder, body.page-template-contact .contact__inner--right form .field textarea::placeholder {
  font-size: 1.125rem;
}
body.page-template-contact .contact__inner--right form .field input.error, body.page-template-contact .contact__inner--right form .field textarea.error {
  border: 1px solid red;
}
body.page-template-contact .contact__inner--right form .field textarea {
  min-height: 120px;
  max-width: 100%;
}
body.page-template-contact .contact__inner--right form .field button {
  display: inline-block;
  padding: 16px 32px 14px 32px;
  color: #FFF;
  background-color: #C39B51;
  border-radius: 5px;
  font-weight: 300;
  font-family: "League Spartan", sans-serif;
  border: none;
  font-size: 1.125rem;
  font-size: 1.125rem;
  cursor: pointer;
}
body.page-template-contact .services {
  margin-top: 64px;
}
body.page-template-contact .services__inner {
  padding: 0 24px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
body.page-template-contact .services__inner h2 {
  text-align: center;
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.page-template-contact .services__inner h2 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-contact .services__inner--items {
  margin-top: 48px;
  display: flex;
  max-width: 100%;
  overflow-x: scroll;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body.page-template-contact .services__inner--items::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1200px) {
  body.page-template-contact .services__inner--items {
    justify-content: center;
  }
}
body.page-template-contact .services__inner--items .item {
  width: 102px;
  margin-right: 24px;
}
@media (min-width: 768px) {
  body.page-template-contact .services__inner--items .item {
    width: 164px;
    margin-right: 32px;
  }
}
body.page-template-contact .services__inner--items .item:last-child {
  margin-right: 0;
}
body.page-template-contact .services__inner--items .item .block {
  width: 102px;
  margin: 0 auto;
  height: 102px;
  background-color: rgba(195, 155, 81, 0.16);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  body.page-template-contact .services__inner--items .item .block {
    width: 126px;
    height: 126px;
  }
}
body.page-template-contact .services__inner--items .item .block svg {
  width: auto;
  height: 72px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  body.page-template-contact .services__inner--items .item .block svg {
    height: 80px;
  }
}
body.page-template-contact .services__inner--items .item .text {
  text-align: center;
  margin-top: 12px;
}
body.page-template-contact .services__inner--items .item .text p {
  color: #000;
  font-size: 1.125rem;
  font-weight: 600;
}

body.page-template-services .hero {
  text-align: center;
  padding: 64px 0;
  border-bottom: 1px solid #CAB8B8;
}
body.page-template-services .hero #breadcrumbs span {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-services .hero #breadcrumbs span a {
  color: #000;
}
body.page-template-services .hero #breadcrumbs span.breadcrumb_last {
  color: #C39B51;
  font-weight: 700;
}
body.page-template-services .hero h1 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.page-template-services .hero h1 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-services .services {
  max-width: 1240px;
  margin: 48px auto 0 auto;
  width: 100%;
  display: flex;
  padding: 0 12px;
  justify-content: center;
  flex-wrap: wrap;
}
body.page-template-services .services__service {
  width: 100%;
  padding: 0 12px;
  margin-top: 24px;
}
@media (min-width: 375px) {
  body.page-template-services .services__service {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.page-template-services .services__service {
    width: 25%;
  }
}
body.page-template-services .services__service .inner {
  border: 1px solid #C39B51;
  padding: 24px;
  border-radius: 10px;
  transition: 0.5s;
}
body.page-template-services .services__service .inner:hover, body.page-template-services .services__service .inner:focus {
  background-color: #C39B51;
}
body.page-template-services .services__service .inner:hover .inner__name p, body.page-template-services .services__service .inner:focus .inner__name p {
  color: #FFF;
}
body.page-template-services .services__service .inner:hover .inner__icon svg path, body.page-template-services .services__service .inner:hover .inner__icon svg g, body.page-template-services .services__service .inner:focus .inner__icon svg path, body.page-template-services .services__service .inner:focus .inner__icon svg g {
  fill: #FFF;
}
body.page-template-services .services__service .inner__icon {
  text-align: center;
}
body.page-template-services .services__service .inner__icon svg {
  height: 80px;
  width: auto;
  vertical-align: middle;
}
body.page-template-services .services__service .inner__icon svg path, body.page-template-services .services__service .inner__icon svg g {
  transition: 0.5s;
}
body.page-template-services .services__service .inner__name {
  text-align: center;
  margin-top: 12px;
}
body.page-template-services .services__service .inner__name p {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
  color: #000;
  transition: 0.5s;
  font-weight: 600;
}

body.page-template-tarieven .hero {
  text-align: center;
  padding: 64px 0;
  border-bottom: 1px solid #CAB8B8;
}
body.page-template-tarieven .hero #breadcrumbs span {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-tarieven .hero #breadcrumbs span a {
  color: #000;
}
body.page-template-tarieven .hero #breadcrumbs span.breadcrumb_last {
  color: #C39B51;
  font-weight: 700;
}
body.page-template-tarieven .hero h1 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.page-template-tarieven .hero h1 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-tarieven .intro {
  margin-top: 64px;
}
body.page-template-tarieven .intro__inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}
body.page-template-tarieven .intro__inner p {
  font-size: 1.125rem;
}
body.page-template-tarieven .table {
  margin-top: 64px;
}
body.page-template-tarieven .table__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
body.page-template-tarieven .table__inner .responsive-table {
  overflow-x: auto;
  width: 100%;
}
body.page-template-tarieven .table__inner .responsive-table table {
  width: 100%;
  border: none;
  table-layout: fixed;
}
body.page-template-tarieven .table__inner .responsive-table table thead tr th {
  border-bottom: 1px solid #000;
  text-align: left;
  padding: 0 24px 16px 24px;
  width: 250px;
}
@media (min-width: 1024px) {
  body.page-template-tarieven .table__inner .responsive-table table thead tr th {
    width: 300px;
  }
}
body.page-template-tarieven .table__inner .responsive-table table tbody tr.a, body.page-template-tarieven .table__inner .responsive-table table tbody tr.c, body.page-template-tarieven .table__inner .responsive-table table tbody tr.e, body.page-template-tarieven .table__inner .responsive-table table tbody tr.g, body.page-template-tarieven .table__inner .responsive-table table tbody tr.i, body.page-template-tarieven .table__inner .responsive-table table tbody tr.k, body.page-template-tarieven .table__inner .responsive-table table tbody tr.m, body.page-template-tarieven .table__inner .responsive-table table tbody tr.o, body.page-template-tarieven .table__inner .responsive-table table tbody tr.q, body.page-template-tarieven .table__inner .responsive-table table tbody tr.s, body.page-template-tarieven .table__inner .responsive-table table tbody tr.u, body.page-template-tarieven .table__inner .responsive-table table tbody tr.w, body.page-template-tarieven .table__inner .responsive-table table tbody tr.y {
  background-color: #FFF;
}
body.page-template-tarieven .table__inner .responsive-table table tbody tr.b, body.page-template-tarieven .table__inner .responsive-table table tbody tr.d, body.page-template-tarieven .table__inner .responsive-table table tbody tr.f, body.page-template-tarieven .table__inner .responsive-table table tbody tr.h, body.page-template-tarieven .table__inner .responsive-table table tbody tr.j, body.page-template-tarieven .table__inner .responsive-table table tbody tr.l, body.page-template-tarieven .table__inner .responsive-table table tbody tr.n, body.page-template-tarieven .table__inner .responsive-table table tbody tr.p, body.page-template-tarieven .table__inner .responsive-table table tbody tr.r, body.page-template-tarieven .table__inner .responsive-table table tbody tr.t, body.page-template-tarieven .table__inner .responsive-table table tbody tr.v, body.page-template-tarieven .table__inner .responsive-table table tbody tr.x, body.page-template-tarieven .table__inner .responsive-table table tbody tr.z {
  background-color: #C39B51;
}
body.page-template-tarieven .table__inner .responsive-table table tbody tr.b td, body.page-template-tarieven .table__inner .responsive-table table tbody tr.d td, body.page-template-tarieven .table__inner .responsive-table table tbody tr.f td, body.page-template-tarieven .table__inner .responsive-table table tbody tr.h td, body.page-template-tarieven .table__inner .responsive-table table tbody tr.j td, body.page-template-tarieven .table__inner .responsive-table table tbody tr.l td, body.page-template-tarieven .table__inner .responsive-table table tbody tr.n td, body.page-template-tarieven .table__inner .responsive-table table tbody tr.p td, body.page-template-tarieven .table__inner .responsive-table table tbody tr.r td, body.page-template-tarieven .table__inner .responsive-table table tbody tr.t td, body.page-template-tarieven .table__inner .responsive-table table tbody tr.v td, body.page-template-tarieven .table__inner .responsive-table table tbody tr.x td, body.page-template-tarieven .table__inner .responsive-table table tbody tr.z td {
  color: #FFF;
}
body.page-template-tarieven .table__inner .responsive-table table tbody tr td {
  padding: 24px;
}
body.page-template-tarieven .table__inner p {
  margin: 12px 0 0 0;
  font-weight: 700;
}

body.page-template-default .hero {
  text-align: center;
  padding: 64px 0;
  border-bottom: 1px solid #CAB8B8;
}
body.page-template-default .hero #breadcrumbs span {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-default .hero #breadcrumbs span a {
  color: #000;
}
body.page-template-default .hero #breadcrumbs span.breadcrumb_last {
  color: #C39B51;
  font-weight: 700;
}
body.page-template-default .hero h1 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
@media (min-width: 768px) {
  body.page-template-default .hero h1 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-default .content {
  margin-top: 64px;
}
body.page-template-default .content__inner {
  padding: 0 24px;
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}

/*# sourceMappingURL=app.css.map */
