/*!*****************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/scss/styles.scss ***!
  \*****************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Defaults
 */
/*!
	yeah-grid-utils


	@version	1.2.1
	@author		Yeah <https://github.com/yeah8000>
	@used		https://grid-utils.yeah.de
*/
/**
 * Defaults
 */
/**
 * Opinions
 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

/**
 * Mixins and functions
 */
/**
 * mobile-first media query at breakpoint
 * @param  {cssunit} $size	breakpoint in pixels or slug (see $breakpoints) or map of width/height
 * @param  {cssunit} $height breakpoint in pixels
 */
/**
 * mobile-last media query at breakpoint
 * @param  {cssunit} $size	breakpoint in pixels or slug (see $breakpoints) or map of width/height
 * @param  {cssunit} $height breakpoint in pixels
 */
/**
 * shorthand: set the gutter-width as value for a property
 */
/**
 * shorthand: set the outer-margin as value for a property
 */
/**
 * shorthand: set the gutter-width as value for a property
 */
/**
 * shorthand: get the value of a property at a certain size
 */
/**
 * Get breakpoint by name
 * @param  {string} $name
 */
/**
 * utility mixin for containers
 */
/**
 * utility mixin for fullwidth containers
 */
/**
 * utility mixin for containers
 */
/**
 * utility mixin for rows that ignore the outer-margin
 */
/**
 * utility mixin for getting grid vars as css variables
 */
/**
 * split a string by a seperator
 * thanks: https://stackoverflow.com/questions/32376461/how-to-split-a-string-into-two-lists-of-numbers-in-sass
 */
/**
 * utility mixin for declaring multiple properties for multiple breakpoints
 * @param  {list} $values	list of values for breakpoints (in $breakpoint)
 *
 * e.g.
 *
 * @include breakpoint-stepper((
 *         xs: #ff0000,
 *         md: #00ff00,
 *         lg: #0000ff
 *     ), color);
 * 
 */
/**
 *  Map multiple grid values to a property, modifier is optional
 *	e.g. map-grid-values('padding-left': ('outer-margin', 0.5));
 */
/**
 * 	init
 */
:root {
  --outer-margin: 1rem;
  --gutter-width: 1rem;
  --max-width: 100%;
}
@media only screen and (min-width: 768px) {
  :root {
    --outer-margin: 2rem;
    --gutter-width: 20px;
    --max-width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  :root {
    --outer-margin: 3.125rem;
    --gutter-width: 2rem;
    --max-width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  :root {
    --outer-margin: 10vw;
    --gutter-width: 4rem;
    --max-width: 100%;
  }
}
@media only screen and (min-width: 1920px) and (min-height: 1080px) {
  :root {
    --outer-margin: 10rem;
    --gutter-width: 4rem;
    --max-width: 1920px;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .container {
    padding-right: 2rem;
    padding-left: 2rem;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .container {
    padding-right: 3.125rem;
    padding-left: 3.125rem;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .container {
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1920px) and (min-height: 1080px) {
  .container {
    padding-right: 10rem;
    padding-left: 10rem;
    max-width: 1920px;
  }
}

.container-full {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1920px;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media only screen and (min-width: 768px) {
  .container-full {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .container-full {
    padding-right: 3.125rem;
    padding-left: 3.125rem;
  }
}
@media only screen and (min-width: 1440px) {
  .container-full {
    padding-right: 10vw;
    padding-left: 10vw;
  }
}
@media only screen and (min-width: 1920px) and (min-height: 1080px) {
  .container-full {
    padding-right: 10rem;
    padding-left: 10rem;
  }
}

.grid {
  width: 100%;
  display: grid;
}

.column-gap {
  column-gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .column-gap {
    column-gap: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .column-gap {
    column-gap: 2rem;
  }
}
@media only screen and (min-width: 1440px) {
  .column-gap {
    column-gap: 4rem;
  }
}
@media only screen and (min-width: 1920px) and (min-height: 1080px) {
  .column-gap {
    column-gap: 4rem;
  }
}

.row-gap {
  row-gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .row-gap {
    row-gap: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .row-gap {
    row-gap: 2rem;
  }
}
@media only screen and (min-width: 1440px) {
  .row-gap {
    row-gap: 4rem;
  }
}
@media only screen and (min-width: 1920px) and (min-height: 1080px) {
  .row-gap {
    row-gap: 4rem;
  }
}

.grid-full {
  width: auto;
  margin-right: -1rem;
  margin-left: -1rem;
}
@media only screen and (min-width: 768px) {
  .grid-full {
    margin-right: -2rem;
    margin-left: -2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .grid-full {
    margin-right: -3.125rem;
    margin-left: -3.125rem;
  }
}
@media only screen and (min-width: 1440px) {
  .grid-full {
    margin-right: -10vw;
    margin-left: -10vw;
  }
}
@media only screen and (min-width: 1920px) and (min-height: 1080px) {
  .grid-full {
    margin-right: -10rem;
    margin-left: -10rem;
  }
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
} /* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat-Web";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/montserrat/montserrat-v25-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat-Web";
  font-style: italic;
  font-weight: normal;
  src: url("../fonts/montserrat/montserrat-v25-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat-Web";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/montserrat/montserrat-v25-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat-Web";
  font-style: normal;
  font-weight: bold; /* is actually 600 but bold is more legible */
  src: url("../fonts/montserrat/montserrat-v25-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --max-width: 1920px;
  --max-width-one-col: 880px;
  --nav-breakpoint: 1000px;
  --column-left-dimension: 0.54;
  --column-right-dimension: calc(1 - var(--column-left-dimension));
  --column-layout: calc(var(--column-left-dimension) * 100%) 1fr;
  --color-text: #000;
  --normal-column-width: calc(1920px - var(--outer-margin) * 2);
}

.dark {
  --color-text: #fff;
}

/**
 * UTILITY MIXINS
 */
/**
 * strip the unit from a pixel-value
 */
/**
 * Often changed
 */
body {
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

body,
input,
textarea,
select {
  font-family: "Montserrat-Web", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-smoothing: grayscale;
}

h1:first-child,
.h1:first-child,
h2:first-child,
.h2:first-child,
h3:first-child,
.h3:first-child,
.teaserlinks .teaser-link .teaser-link-text:first-child,
h4:first-child,
.download .download button.download-trigger:first-child,
.h4:first-child,
h5:first-child,
.videos .video-title:first-child,
.service .service-faqs .faq button.faq-trigger:first-child,
.h5:first-child,
h6:first-child,
.h6:first-child,
p:first-child {
  margin-top: 0;
}
h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
.teaserlinks .teaser-link .teaser-link-text:last-child,
h4:last-child,
.download .download button.download-trigger:last-child,
.h4:last-child,
h5:last-child,
.videos .video-title:last-child,
.service .service-faqs .faq button.faq-trigger:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child,
p:last-child {
  margin-bottom: 0;
}

h1,
.h1 {
  font-size: 4.768125rem;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 3.051875rem;
  line-height: 1.2;
}

h3,
.h3,
.teaserlinks .teaser-link .teaser-link-text {
  font-size: 2.44125rem;
  line-height: 1.3;
}

h4, .download .download button.download-trigger,
.h4 {
  font-size: 1.5625rem;
  line-height: 1.4;
}

h5, .videos .video-title, .service .service-faqs .faq button.faq-trigger,
.h5,
h6,
.h6 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: "Montserrat-Web", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

p {
  margin-top: 1em;
  margin-bottom: 1em;
  hyphens: auto;
  text-wrap: pretty;
}

main a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

main a:where(:not(.btn)) {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 0.4em;
  text-decoration-thickness: 1px;
}
@media (hover: hover) {
  main a:where(:not(.btn)):not(:disabled):hover {
    color: var(--color-text);
    text-decoration: none;
  }
}
main a:where(:not(.btn)):focus-visible {
  outline: 3px solid var(--color-text);
  outline-offset: 3px;
  border-radius: 0px;
  text-decoration: none;
}
main a:where(:not(.btn))[disabled] {
  pointer-events: none;
}

hr {
  height: 0;
  border: none;
  border-bottom: 1px solid var(--color-text);
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
[tabindex="-1"]:focus {
  outline: none !important;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1em;
  padding-left: 1rem;
  border-left: 2px solid var(--color-text);
  font-weight: bold;
  font-size: 1.5rem;
}
blockquote cite {
  width: 100%;
  display: inline-block;
  font-weight: normal;
  text-align: right;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

progress {
  vertical-align: baseline;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th {
  text-align: inherit;
}

tr + tr {
  border-top: 1px solid #9b948d;
}
td,
th {
  padding: 0.5em 1em;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: left;
  caption-side: bottom;
}

thead {
  font-weight: bold;
}

ol,
ul {
  margin-left: 0;
  padding-left: 0;
}
ol li,
ul li {
  margin-bottom: 0.5em;
}
ol li ul,
ol li ol,
ul li ul,
ul li ol {
  margin-left: 1em;
}

main ol,
main ul,
body#tinymce ol,
body#tinymce ul {
  margin-left: 0;
  padding-left: 0;
}
main ol li,
main ul li,
body#tinymce ol li,
body#tinymce ul li {
  margin-bottom: 0.3em;
}
main ol li ul,
main ol li ol,
main ul li ul,
main ul li ol,
body#tinymce ol li ul,
body#tinymce ol li ol,
body#tinymce ul li ul,
body#tinymce ul li ol {
  margin-left: 1em;
}
main ul,
body#tinymce ul {
  list-style: none;
}
main ul > li,
body#tinymce ul > li {
  padding-left: 1em;
  position: relative;
}
main ul > li:before,
body#tinymce ul > li:before {
  content: "•";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
main ol,
body#tinymce ol {
  counter-reset: li;
  list-style: none;
}
main ol > li,
body#tinymce ol > li {
  position: relative;
  padding-left: 2em;
}
main ol > li:before,
body#tinymce ol > li:before {
  content: counters(li, ".") ".";
  counter-increment: li;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
main ol > li ol,
body#tinymce ol > li ol {
  counter-reset: li;
  margin-left: 0;
  margin-top: 0.4em;
  margin-bottom: 0.8em;
}
main ol > li ol > li,
body#tinymce ol > li ol > li {
  padding-left: 2.2em;
}
main ol > li ol > li ol > li,
body#tinymce ol > li ol > li ol > li {
  padding-left: 3.4em;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

label {
  display: block;
  width: 100%;
}

textarea {
  display: block;
  width: 100%;
  color: #000;
  padding: 0.6em 0 0.4em;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid var(--color-text);
  background-color: transparent;
  outline: none;
  transition: border-color 0.3s;
}
textarea:focus {
  box-shadow: 0px 4px 0px 0px var(--color-text);
}

input,
select,
select option {
  background-color: transparent;
  display: block;
  width: 100%;
  outline: none;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid var(--color-text);
  min-height: 40px;
  line-height: 40px;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0.6em 0 0.4em;
  color: #000;
  transition: border-color 0.3s;
}
input:focus,
select:focus,
select option:focus {
  box-shadow: 0px 4px 0px 0px var(--color-text);
}
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
select option::-webkit-input-placeholder {
  color: #6d6d6d;
  opacity: 0.5;
}
input::-moz-placeholder,
select::-moz-placeholder,
select option::-moz-placeholder {
  color: #6d6d6d;
  opacity: 0.5;
}
input:-ms-input-placeholder,
select:-ms-input-placeholder,
select option:-ms-input-placeholder {
  color: #6d6d6d;
  opacity: 0.5;
}
input:-moz-placeholder,
select:-moz-placeholder,
select option:-moz-placeholder {
  color: #6d6d6d;
  opacity: 0.5;
}

label.radio-checkbox-wrapper {
  padding-left: 30px;
  position: relative;
}

input[type=radio], input[type=checkbox] {
  display: block;
  width: 1px;
  height: 1px;
  opacity: 0.1;
  position: absolute;
}
input[type=radio] + .toggle, input[type=checkbox] + .toggle {
  cursor: pointer;
  background-color: transparent;
  border: 1px solid var(--color-text);
  display: inline-block;
  width: 20px;
  height: 20px;
  left: 0px;
  top: 0.2em;
  position: absolute;
}
@media only screen and (min-width: 768px) {
  input[type=radio] + .toggle, input[type=checkbox] + .toggle {
    top: 0.3em;
  }
}
input[type=radio] + .toggle:after, input[type=checkbox] + .toggle:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
input[type=radio]:focus + .toggle, input[type=checkbox]:focus + .toggle {
  outline: 1px solid var(--color-text);
  outline-offset: 2px;
}
input[type=radio][disabled] + .toggle, input[type=checkbox][disabled] + .toggle {
  opacity: 0.33;
}
input[type=checkbox] + .toggle:after {
  transform: scale(0.75);
  -webkit-mask-image: url(../img/checked.svg);
          mask-image: url(../img/checked.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
input[type=checkbox]:checked + .toggle:after {
  opacity: 1;
}
input[type=radio] + .toggle {
  border-radius: 50%;
}
input[type=radio] + .toggle:after {
  transform: scale(0);
  border-radius: 50%;
}
input[type=radio]:checked + .toggle:after {
  transform: scale(0.6);
  opacity: 1;
}

select {
  outline: none;
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 60 40' style='enable-background:new 0 0 60 40;' xml:space='preserve'><path fill='%23020203' d='M41.5,12.9L29.8,25.1L18,12.9l-1.4,1.4L29.8,28L43,14.3L41.5,12.9z'/></svg>");
  background-size: 50px 25px;
  background-position: right center;
  background-repeat: no-repeat;
}

label {
  position: relative;
}
label > .label {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-0.75em) scale(0.75);
  opacity: 0.75;
  pointer-events: none;
  transform-origin: left center;
  color: var(--color-text);
}
label.empty > .label {
  transform: translateY(0.5em);
  opacity: 1;
}

.animated-labels .label {
  transition: transform 0.4s, opacity 0.4s;
}

.wpcf7-form label {
  margin-bottom: 2rem;
}
.wpcf7-form .website-hp,
.wpcf7-form .email-hp {
  display: none !important;
}

input,
button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  overflow: visible;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

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

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

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

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

.btn, button,
input[type=submit],
input[type=button],
input[type=reset] {
  -moz-appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  align-items: center;
  min-height: 40px;
  padding: 0.5em 1em;
  margin-bottom: 1em;
  color: var(--color-text);
  background-color: #f0f0f0;
  box-shadow: none;
  font-size: 1rem;
  font-family: "Montserrat-Web", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-text);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn:last-child, button:last-child,
input[type=submit]:last-child,
input[type=button]:last-child,
input[type=reset]:last-child {
  margin-right: 0;
}
.btn:focus, button:focus,
input[type=submit]:focus,
input[type=button]:focus,
input[type=reset]:focus {
  outline: none;
  box-shadow: none;
}
.btn:focus-visible, button:focus-visible,
input[type=submit]:focus-visible,
input[type=button]:focus-visible,
input[type=reset]:focus-visible {
  outline-offset: 1px;
  outline: 3px solid var(--color-text);
}
@media (hover: hover) {
  .btn:not(:disabled):hover, button:not(:disabled):hover,
  input[type=submit]:not(:disabled):hover,
  input[type=button]:not(:disabled):hover,
  input[type=reset]:not(:disabled):hover {
    border-color: var(--color-text);
    color: #fff;
    background-color: var(--color-text);
  }
}
.btn:not(:disabled):active, button:not(:disabled):active,
input[type=submit]:not(:disabled):active,
input[type=button]:not(:disabled):active,
input[type=reset]:not(:disabled):active {
  border-color: var(--color-text);
  color: #fff;
  background-color: var(--color-text);
}
.btn:disabled, button:disabled,
input[type=submit]:disabled,
input[type=button]:disabled,
input[type=reset]:disabled {
  opacity: 0.4;
  border-color: #9b948d;
  color: #9b948d;
  background-color: transparent;
  cursor: default;
}
.link.btn, button.link,
input.link[type=submit],
input.link[type=button],
input.link[type=reset] {
  background: none;
  padding: 0;
  margin: 0;
  color: var(--color-text);
  border: none;
}
@media (hover: hover) {
  .link.btn:not(:disabled):hover, button.link:not(:disabled):hover,
  input.link[type=submit]:not(:disabled):hover,
  input.link[type=button]:not(:disabled):hover,
  input.link[type=reset]:not(:disabled):hover {
    background: none;
    border: none;
  }
}
.link.btn:not(:disabled):active, button.link:not(:disabled):active,
input.link[type=submit]:not(:disabled):active,
input.link[type=button]:not(:disabled):active,
input.link[type=reset]:not(:disabled):active {
  background: none;
  border: none;
}

.wpcf7 {
  position: relative;
  max-width: 600px;
}
.wpcf7 label {
  transition: opacity 0.3s;
}
.wpcf7 form.submitting label,
.wpcf7 form.submitting .wpcf7-submit {
  opacity: 0.5;
}
.wpcf7 span.wpcf7-spinner {
  position: absolute !important;
  opacity: 1;
  left: 50%;
  bottom: 10rem;
  transform: translate(-50%, -50%);
}
.wpcf7 form .wpcf7-response-output {
  margin: 0em;
  padding: 0.8em 1em;
  border: none;
  background-color: #333;
  color: #fff;
  font-weight: 500;
}
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.validating .wpcf7-response-output {
  display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #00a303;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  background-color: #da0c0c;
}
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background-color: #a34c00; /* Yellow */
}

img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
@media only screen and (min-width: 768px) {
  img.alignleft,
  svg.alignleft {
    float: left;
    padding: 0 1em 0 0;
    max-width: 50%;
  }
  img.alignright,
  svg.alignright {
    float: right;
    padding: 0 0 0 1em;
    max-width: 50%;
  }
}

svg:not(:root) {
  overflow: hidden;
}

figure,
.wp-caption {
  display: table;
  padding: 0;
  margin: 0.3em auto 1em;
}
figure + p,
.wp-caption + p {
  margin-top: 0;
}
figure figcaption,
figure .wp-caption-dd,
.wp-caption figcaption,
.wp-caption .wp-caption-dd {
  display: table-caption;
  caption-side: bottom;
  padding: 0.5em;
  font-size: 1rem;
  hyphens: auto;
  word-break: break-word;
}
figure ​img,
.wp-caption ​img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
figure.aligncenter,
.wp-caption.aligncenter {
  padding: 0;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  figure,
  .wp-caption {
    margin-bottom: 0.3em;
  }
  figure.alignleft,
  .wp-caption.alignleft {
    float: left;
    padding: 0 0.6em 0 0;
    max-width: 50%;
    margin-right: 0.6em;
  }
  figure.alignleft figcaption,
  .wp-caption.alignleft figcaption {
    margin-right: 0.8em;
  }
  figure.alignright,
  .wp-caption.alignright {
    float: right;
    padding: 0 0 0 0.6em;
    max-width: 50%;
    margin-left: 0.6em;
  }
  figure.alignright figcaption,
  .wp-caption.alignright figcaption {
    margin-left: 0.8em;
  }
}

.iframe {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
}
.iframe iframe,
.iframe .mce-object-iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/**
	This is only loaded on the frontend to prevent variating font-sizes in the backend.
	because of that it is also desktop first
**/
@media only screen and (max-width: 1023px) {
  body,
  input,
  textarea,
  select {
    font-size: 1rem;
  }
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  .teaserlinks .teaser-link .teaser-link-text,
  h4,
  .download .download button.download-trigger,
  .h4,
  h5,
  .videos .video-title,
  .service .service-faqs .faq button.faq-trigger,
  .h5 {
    hyphens: auto;
  }
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  .teaserlinks .teaser-link .teaser-link-text {
    font-size: 1.5rem;
  }
  h4, .download .download button.download-trigger,
  .h4 {
    font-size: 1.125rem;
  }
  p {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }
}
html,
body {
  height: 100%;
  min-height: 100%;
}

.main {
  margin-top: 200px;
  display: flex;
  flex-direction: column;
}
.main section {
  display: flex;
  flex-flow: column nowrap;
}

.container-bleed {
  max-width: 1920px;
  margin: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}
@media only screen and (min-width: 768px) {
  .container-bleed .grid-55 {
    grid-template-columns: calc((100% - var(--outer-margin) * 2) * var(--column-left-dimension) + var(--outer-margin)) 1fr;
  }
}

.grid-55 {
  display: grid;
  gap: var(--gutter-width);
}
@media only screen and (min-width: 768px) {
  .grid-55 {
    display: grid;
    grid-template-areas: "left right";
    grid-template-columns: var(--column-layout);
  }
}

section .container-bleed .grid-55 {
  grid-template-areas: "left right";
  grid-template-columns: var(--column-layout);
}

@media only screen and (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}

.margin-top-small {
  margin-top: var(--gutter-width);
}
.margin-top-large {
  margin-top: calc(var(--gutter-width) * 2);
}

.margin-bottom-small {
  margin-bottom: var(--gutter-width);
}
.margin-bottom-large {
  margin-bottom: calc(var(--gutter-width) * 2);
}

#mq-helper {
  position: fixed;
  z-index: 1;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #mq-helper {
    z-index: 2;
  }
}
@media only screen and (min-width: 1000px) {
  #mq-helper {
    z-index: 3;
  }
}
@media only screen and (min-width: 1024px) {
  #mq-helper {
    z-index: 4;
  }
}
@media only screen and (min-width: 1440px) {
  #mq-helper {
    z-index: 5;
  }
}
@media only screen and (min-width: 1440px) {
  #mq-helper {
    z-index: 6;
  }
}

:root {
  --color-nav: #000;
  --header-height: 70px;
  --header-height-small: 60px;
}
@media only screen and (min-width: 768px) {
  :root {
    --header-height: 110px;
  }
}
@media only screen and (min-width: 768px) {
  :root {
    --header-height: 100px;
    --header-height-small: 80px;
  }
}
@media only screen and (min-width: 1920px) and (min-height: 1080px) {
  :root {
    --header-height: 130px;
  }
}

.skip-nav-link {
  position: fixed;
  font-size: 1rem;
  top: 1rem;
  left: 50%;
  transform: translate(-50%, -100px);
  transition: transform 0.3s;
  z-index: 1002;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.skip-nav-link:focus {
  transform: translate(-50%, 0);
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.header.light:not(.nav-open) {
  --color-nav: #fff;
}
.header-inner {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--outer-margin);
  transition: min-height 0.3s;
}
.header-logo a.logo {
  display: block;
  position: relative;
  overflow: hidden;
  width: 260px;
  height: 17px;
  transition: transform 0.3s;
  color: transparent !important;
}
@media only screen and (min-width: 768px) {
  .header-logo a.logo {
    width: 290px;
    height: 24px;
  }
}
.header-logo a.logo:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-nav);
  -webkit-mask-image: url(../img/body-clinic-berlin-logo.svg);
          mask-image: url(../img/body-clinic-berlin-logo.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .header-logo a.logo:not(:disabled):hover:after {
    opacity: 0.8;
  }
}
.header-logo a.logo:focus-visible {
  outline: 1px solid var(--color-nav);
  outline-offset: 12px;
  border-radius: 0;
}
.header-nav {
  display: none;
}
@media only screen and (min-width: 1000px) {
  .header-nav {
    display: flex;
    justify-content: flex-end;
  }
}
.header-toggle-nav {
  justify-self: end;
}
@media only screen and (min-width: 1000px) {
  .header-toggle-nav {
    display: none;
  }
}
.header.header-small:not(.light) {
  background-color: #fff;
  box-shadow: 0 4px 2px 0 rgba(0, 0, 0, 0.05);
}
.header.header-small:not(.light) .header-inner {
  min-height: var(--header-height-small);
}
.header.header-small:not(.light) .header-logo a.logo {
  transform: translateX(-10%) scale(0.8);
}

.footer {
  --row-spacing: max(2rem, var(--outer-margin) * 0.5);
  padding: var(--gutter-width) 0;
  position: relative;
}
.footer > * + * {
  margin-top: var(--row-spacing);
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
}
.footer ul li {
  margin: 0;
  padding: 0;
}
.footer ul li:before {
  content: none;
}
.footer a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 0.4em;
  text-decoration-thickness: 1px;
}
@media (hover: hover) {
  .footer a:not(:disabled):hover {
    text-decoration: none;
  }
}
.footer-inner > * + * {
  margin-top: var(--row-spacing);
}
.footer-contact-label {
  position: relative;
  grid-area: right;
  padding: 2em;
  background-color: #ae895b;
  color: #fff;
}
.footer-contact-label * {
  margin-bottom: 0;
}
.footer-contact-label * + * {
  margin-top: 0.5rem;
}
.footer-contact-label a {
  color: currentColor;
  font-size: 1.25rem;
}
.footer-site-links {
  display: flex;
  justify-content: flex-end;
}
.footer-site-links .menu-item {
  margin-left: 1.5rem;
}

.main-navigation-desktop,
.main-navigation-mobile {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation-desktop a,
.main-navigation-mobile a {
  text-decoration: none;
  color: var(--color-nav);
  text-transform: uppercase;
  font-weight: 500;
}
@media (hover: hover) {
  .main-navigation-desktop a:not(:disabled):hover,
  .main-navigation-mobile a:not(:disabled):hover {
    opacity: 0.8;
  }
}
.main-navigation-desktop ul,
.main-navigation-desktop li,
.main-navigation-mobile ul,
.main-navigation-mobile li {
  list-style: none;
  margin: 0;
  padding: 0;
}

button.btn-toggle-nav {
  background-color: transparent;
  position: relative;
  right: -8px;
  border: none;
  color: var(--color-nav);
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  box-shadow: none;
  margin-bottom: 0;
}
button.btn-toggle-nav .btn-typo {
  font-size: 1px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0);
  position: absolute;
  left: 0;
  top: 0;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
button.btn-toggle-nav:focus-visible {
  outline: 2px solid var(--color-nav);
  outline-offset: 6px;
}
button.btn-toggle-nav .icon-burger:before,
button.btn-toggle-nav .icon-burger:after,
button.btn-toggle-nav .icon-burger-line {
  position: absolute;
  content: "";
  display: block;
  width: 1.25rem;
  height: 1px;
  background-color: var(--color-nav);
  border-radius: 0px;
  transition: all 0.3s;
  transform-origin: center;
}
@media (hover: hover) {
  button.btn-toggle-nav:not(:disabled):hover {
    color: var(--color-nav);
    background-color: transparent;
  }
  button.btn-toggle-nav:not(:disabled):hover .icon-burger:before,
  button.btn-toggle-nav:not(:disabled):hover .icon-burger:after,
  button.btn-toggle-nav:not(:disabled):hover .icon-burger-line {
    background-color: var(--color-nav);
  }
}
button.btn-toggle-nav .icon-burger {
  position: absolute;
  height: 0;
  width: 0;
  top: 50%;
  right: 22px;
}
button.btn-toggle-nav .icon-burger:before, button.btn-toggle-nav .icon-burger:after,
button.btn-toggle-nav .icon-burger .icon-burger-line {
  left: -8px;
  top: -1px;
}
button.btn-toggle-nav .icon-burger:before {
  transform: translate(0, -6px);
  transition: background-color 0.3s, top 0.3s 0.2s, transform 0.3s;
}
button.btn-toggle-nav .icon-burger .icon-burger-line {
  transform: scaleX(1) translate(0, 0px);
  transition: background-color 0.3s, transform 0.3s 0.3s;
}
button.btn-toggle-nav .icon-burger:after {
  top: 5px;
  transition: background-color 0.3s, top 0.3s 0.2s, transform 0.3s;
}
button.btn-toggle-nav.active .icon-burger:before {
  top: 6px;
  transform: translate(0, -7px) rotateZ(45deg);
  transition: background-color 0.3s, top 0.3s, transform 0.3s 0.2s;
}
button.btn-toggle-nav.active .icon-burger .icon-burger-line {
  transform: scaleX(0) translate(8px, 0);
  transition: background-color 0.3s, transform 0.3s;
}
button.btn-toggle-nav.active .icon-burger:after {
  top: -1px;
  transform: translate(0, 0) rotateZ(-45deg);
  transition: background-color 0.3s, top 0.3s, transform 0.3s 0.2s;
}

@media only screen and (max-width: 999px) {
  ul.main-navigation-desktop {
    display: none;
  }
  nav.mobile-navigation {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: auto;
    display: none;
    padding: 5rem 0;
    align-items: center;
    background-color: #f0f0f0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  nav.mobile-navigation.active {
    display: grid;
  }
  nav.mobile-navigation.visible {
    transform: translateY(0);
    transition: transform 0.5s ease-out;
  }
  .mobile-navigation-inner {
    display: grid;
    gap: 2rem;
    width: 100%;
    padding: 0 var(--outer-margin);
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .mobile-navigation-inner .btn-header-cta {
    width: auto;
  }
  ul.main-navigation-mobile {
    display: flex;
    flex-flow: column nowrap;
    /**********
    * LEVEL 1 
    */
    /**********
    * LEVEL 2 - a submenu
    */
  }
  ul.main-navigation-mobile > li {
    padding: 0;
    text-align: center;
  }
  ul.main-navigation-mobile > li > a {
    display: block;
    padding: 0.5rem 2rem 0.5rem 0;
    font-size: 1.25rem;
  }
  ul.main-navigation-mobile > li.current-menu-item > a, ul.main-navigation-mobile > li.current-menu-ancestor > a {
    color: var(--color-text);
  }
  ul.main-navigation-mobile > li.menu-item-has-children:after {
    top: 1rem;
    right: 0;
  }
  ul.main-navigation-mobile ul.sub-menu {
    display: none;
    padding-bottom: 0.75rem;
  }
  ul.main-navigation-mobile ul.sub-menu li.current-menu-item > a {
    color: var(--color-text);
  }
  ul.main-navigation-mobile ul.sub-menu a {
    display: block;
    padding: 0.25rem 0;
  }
}
@media only screen and (min-width: 1000px) {
  nav.mobile-navigation {
    display: none;
  }
  ul.main-navigation-desktop {
    display: flex;
    justify-content: space-between;
    min-width: 80%;
    /**********
    * LEVEL 1 
    */
    /**********
    * LEVEL 2 - a submenu


    ul.sub-menu {
    	position: absolute;
    	display: none;
    	left: 50%;
    	top: 1.8em;
    	transform: translateX(-50%);
    	background-color: $color-white
    	padding: 1rem 1.75rem;
    	box-shadow: 0 4px 10px rgba(#000, 0.25);

    	li {
    		display: block;
    		&.current-menu-item > a {
    			color: var(--color-text);
    		}
    	}

    	a {
    		display: block;
    		text-align: center;
    		white-space: nowrap;
    		color: #fff;
    		padding: 0 2px;
    		transition: color 0.3s;
    		@include hover {
    			color: var(--color-text);
    		}

    		&:focus-visible {
    			outline: 2px solid $color-blue-dark;
    			outline-offset: 3px;
    			border-radius: $border-radius;
    		}
    	}
    }
    */
  }
}
@media only screen and (min-width: 1000px) and (min-width: 1024px) {
  ul.main-navigation-desktop {
    min-width: 70%;
  }
}
@media only screen and (min-width: 1000px) {
  ul.main-navigation-desktop > li {
    position: relative;
    display: flex;
    align-items: center;
  }
  ul.main-navigation-desktop > li:last-child {
    padding-right: 0;
  }
  ul.main-navigation-desktop > li > a {
    position: relative;
    display: flex;
    padding: 0;
    transition: color 0.3s;
    min-height: var(--header-height);
    align-items: center;
  }
  ul.main-navigation-desktop > li > a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 1rem);
    height: 15px;
    transform: translateX(-0.5rem);
    background-color: #ae895b;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.2s ease;
  }
}
@media only screen and (min-width: 1000px) and (hover: hover) {
  ul.main-navigation-desktop > li > a:not(:disabled):hover {
    color: var(--color-nav);
  }
  ul.main-navigation-desktop > li > a:not(:disabled):hover::after {
    clip-path: inset(0);
    transition: clip-path 0.2s ease;
  }
}
@media only screen and (min-width: 1000px) {
  ul.main-navigation-desktop > li > a:focus-visible {
    outline: 1px solid var(--color-nav);
    outline-offset: 5px;
  }
  ul.main-navigation-desktop > li.current-menu-item > a::after, ul.main-navigation-desktop > li.current-menu-ancestor > a::after {
    clip-path: inset(0);
  }
}
.page main section:first-child {
  padding-top: calc(var(--header-height) + var(--outer-margin));
}
.page main section:first-child.fullscreen {
  padding-bottom: calc(var(--header-height) + var(--outer-margin));
}
.page main section:first-child.no-padding {
  padding: 0;
}

.service {
  padding-top: calc(var(--header-height) + var(--outer-margin));
}
@media only screen and (min-width: 1024px) {
  .service-inner {
    grid-template-columns: 1fr 340px;
    grid-gap: var(--gutter-width);
  }
}
.service-inner-main {
  max-width: 880px;
}
@media only screen and (max-width: 1023px) {
  .service-inner-main {
    margin-bottom: 3rem;
  }
}
.service-inner-main .service-back-to-overview {
  margin-bottom: var(--outer-margin);
}
.service .service-contact-small.mobile-contact {
  padding-top: max(3rem, var(--outer-margin));
}
.service .service-contact-small.desktop-contact {
  display: none;
  padding-bottom: var(--gutter-width);
}
@media only screen and (min-width: 1024px) {
  .service .service-contact-small.mobile-contact {
    display: none;
  }
  .service .service-contact-small.desktop-contact {
    display: block;
  }
}
.service .service-faqs {
  margin-top: max(3rem, var(--outer-margin));
}
.service .service-faqs .faq {
  width: 100%;
  border-bottom: 1px solid var(--color-text);
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
}
.service .service-faqs .faq:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1.6rem;
  width: 0.875rem;
  height: 0.875rem;
  background-color: var(--color-text);
  -webkit-mask-image: url(../img/icon-dropdown.svg);
          mask-image: url(../img/icon-dropdown.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: transform 0.3s;
}
.service .service-faqs .faq.active:before {
  transform: rotateZ(-180deg);
}
.service .service-faqs .faq button.faq-trigger {
  padding: 0;
  margin-bottom: 0;
  border: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  text-align: left;
}
@media (hover: hover) {
  .service .service-faqs .faq button.faq-trigger:not(:disabled):hover {
    color: var(--color-text);
    opacity: 0.8;
    background-color: transparent;
  }
}
.service .service-faqs .faq button.faq-trigger:focus-visible {
  outline: 1px solid var(--color-text);
  outline-offset: 5px;
}
.service .service-faqs .faq .faq-answer {
  font-size: 1.125rem;
}
.service-inner-sidebar .service-shortinfo {
  padding: var(--gutter-width) 0;
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
@media only screen and (max-width: 1023px) {
  .service-inner-sidebar .service-shortinfo {
    margin-bottom: 3rem;
  }
}
.service-inner-sidebar .service-shortinfo-infos h3 {
  margin-bottom: 0;
}
.service-inner-sidebar .service-shortinfo-infos h3 + p {
  margin-top: 0;
}
.service-inner-sidebar .service-external {
  margin-bottom: 3rem;
  padding-top: var(--gutter-width);
  display: grid;
}
.service-inner-sidebar .service-external a.btn {
  display: block;
  width: 100%;
  font-size: 1.25rem;
  padding: 1.5em 1em;
  text-align: center;
}

.appointments {
  width: 100%;
  max-width: 380px;
}

.financing {
  width: 100%;
  max-width: 540px;
  display: grid;
  margin: 0 auto;
  outline: 1px solid #000;
}
.financing .ywpp-content-blocker-blocked {
  padding: 1rem;
}
.financing .ywpp-content-blocker-unblocked {
  min-height: 720px;
}
.financing > span,
.financing iframe {
  display: block;
  margin-bottom: 0;
}

.contact-inner {
  gap: calc(var(--gutter-width) * 2);
}
@media only screen and (min-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-inner .contact-right {
  max-width: 600px;
}
.contact-inner hr {
  max-width: 100%;
}
.contact .google-maps-container {
  background-color: #fff;
  position: relative;
  display: block;
  width: 100%;
  height: calc((100vw - var(--outer-margin)) / 2);
  min-height: 300px;
  max-height: 720px;
}
.contact .google-maps-container .ywpp-content-blocker.unblocked,
.contact .google-maps-container .ywpp-content-blocker-unblocked,
.contact .google-maps-container .mapholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

div.gm-contact-small {
  background-color: #6d6d6d;
  padding: 1.2rem 1.5rem 1.4rem;
  font-size: 1.125rem;
}
div.gm-contact-small * {
  color: #fff;
}
div.gm-contact-small .gm-contact-small-title {
  margin-bottom: 0;
}
div.gm-contact-small a:not(.btn) {
  color: #fff;
}
div.gm-contact-small a:not(.btn).gm-contact-small-tel {
  font-size: 1.625rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 0.2em;
}
@media (hover: hover) {
  div.gm-contact-small a:not(.btn):not(:disabled):hover {
    color: #fff;
    opacity: 0.8;
  }
}
div.gm-contact-small a:not(.btn)::focus-visible {
  outline-color: #fff;
}

.jameda-review {
  margin-bottom: var(--gutter-width);
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  cursor: grab;
}
.jameda-review:before {
  content: none;
}
.jameda-review-review {
  text-align: center;
  max-width: var(--max-width-one-col);
  margin-bottom: calc(var(--gutter-width) / 2);
}
.jameda-review-source {
  font-size: 1rem;
  color: #6d6d6d;
}
.jameda-reviews-hint {
  padding-top: var(--outer-margin);
  text-align: center;
}
.jameda-reviews .splide__arrows {
  position: absolute;
  z-index: 1;
  top: auto;
  bottom: -0.5rem;
  width: 100%;
  height: 0;
  display: flex;
}
@media only screen and (min-width: 1440px) {
  .jameda-reviews .splide__arrows {
    top: 40%;
  }
}
.jameda-reviews .splide__arrows button {
  background: transparent;
  border: none;
  display: block;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
}
.jameda-reviews .splide__arrows button svg {
  position: relative;
  top: -1px;
  left: 0%;
  width: 50%;
  height: auto;
}
.jameda-reviews .splide__arrows button svg path {
  fill: var(--color-text);
}
@media (hover: hover) {
  .jameda-reviews .splide__arrows button:not(:disabled):hover svg path {
    fill: var(--color-text);
  }
}
.jameda-reviews .splide__arrows button:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}
.jameda-reviews .splide__arrows button.splide__arrow--prev svg {
  transform: scale(-1);
}
.jameda-reviews .splide__arrows button.splide__arrow--prev {
  margin-left: -0.9375rem;
}
.jameda-reviews .splide__arrows button.splide__arrow--next {
  margin-left: auto;
  margin-right: -0.9375rem;
}
@media only screen and (min-width: 1300px) {
  .jameda-reviews .splide__arrows button.splide__arrow--prev {
    margin-left: 3.75rem;
  }
  .jameda-reviews .splide__arrows button.splide__arrow--next {
    margin-left: auto;
    margin-right: 3.75rem;
  }
}

section {
  display: grid;
}
section hr {
  border-bottom: 0;
  height: min(15px, var(--gutter-width) / 2);
  background-color: #ae895b;
}
section hr.left {
  grid-area: left;
  width: 40%;
  margin-left: 0;
}
section hr.right {
  grid-area: right;
}

.onecolumn.normal .grid {
  max-width: var(--max-width-one-col);
  margin: 0 auto;
}
.onecolumn.left .grid {
  max-width: var(--max-width-one-col);
}

.ywpp-content-blocker {
  /** ********************
   * Variables
   */
  /** ********************
   * Typo and colors
   */
  /** ********************
   * Sizes and positioning
   */
  /** ********************
   * Background image
   */
  /** ********************
   * Inner message
   */
  /** ********************
   * Enable switch
   */
  /** ********************
   * The unblocked container
   */
}
.ywpp-content-blocker .ywpp-content-blocker-title p.ywpp-content-blocker-headline {
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 1;
  margin: 0;
  margin-bottom: 0.2em;
}
@media (min-width: 768px) {
  .ywpp-content-blocker .ywpp-content-blocker-title p.ywpp-content-blocker-headline {
    font-size: 1.25rem;
  }
}
.ywpp-content-blocker .ywpp-content-blocker-title p.ywpp-content-blocker-subtitle {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
  line-height: 1;
  margin: 0;
}
@media (min-width: 768px) {
  .ywpp-content-blocker .ywpp-content-blocker-title p.ywpp-content-blocker-subtitle {
    font-size: 1rem;
  }
}
.ywpp-content-blocker .ywpp-content-blocker-description {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .ywpp-content-blocker .ywpp-content-blocker-description {
    font-size: 1.1875rem;
  }
}
.ywpp-content-blocker button.ywpp-content-blocker-enable .ywpp-enable-button-toggle .ywpp-enable-button-label {
  font-size: 1rem;
  color: #000;
}
@media (min-width: 768px) {
  .ywpp-content-blocker button.ywpp-content-blocker-enable .ywpp-enable-button-toggle .ywpp-enable-button-label {
    font-size: 1.2rem;
  }
}
.ywpp-content-blocker .ywpp-content-blocker-footer small {
  font-size: 80%;
}
.ywpp-content-blocker .ywpp-content-blocker-footer,
.ywpp-content-blocker .ywpp-content-blocker-footer a {
  color: rgba(0, 0, 0, 0.8);
}
.ywpp-content-blocker {
  position: relative;
  background: repeating-linear-gradient(-45deg, #ddd, #ddd 10px, #eeeeee 10px, #eeeeee 20px);
}
.ywpp-content-blocker.unblocked {
  background: none;
}
.ywpp-content-blocker-blocked {
  display: grid;
  opacity: 0;
  grid-template-areas: "overlap";
  justify-items: center;
  align-items: center;
  width: 100%;
  transition: opacity 0.2s;
}
.active .ywpp-content-blocker-blocked {
  opacity: 1;
}
.ywpp-content-blocker-blocked.is-full-width .ywpp-content-blocker-inner {
  width: 100%;
  height: 100%;
}
.ywpp-content-blocker-blocked.has-max-width .ywpp-content-blocker-inner {
  width: 100%;
  max-width: 600px;
  height: auto;
}
.ywpp-content-blocker-blocked.has-fixed-ratio .ywpp-content-blocker-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  max-height: 100%;
}
.ywpp-content-blocker-spacer {
  grid-area: overlap;
  position: relative;
  height: 0;
}
.ywpp-content-blocker-inner {
  grid-area: overlap;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.8rem;
  position: relative;
  padding: 1rem 1rem 0 1rem;
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
  border: 1px solid #000;
  border-width: 1px;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .ywpp-content-blocker-inner {
    gap: 1rem;
  }
}
.ywpp-content-blocker-image, .ywpp-content-blocker-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ywpp-content-blocker-message {
  position: relative;
  display: grid;
  align-self: flex-start;
  gap: 0.8rem;
  margin: 0;
}
@media (min-width: 768px) {
  .ywpp-content-blocker-message {
    gap: 1rem;
  }
}
.ywpp-content-blocker-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
}
.ywpp-content-blocker-header .ywpp-content-blocker-icon {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  border-radius: 3px;
  background-color: #000;
}
@media (min-width: 768px) {
  .ywpp-content-blocker-header .ywpp-content-blocker-icon {
    width: 3.25rem;
    height: 3.25rem;
  }
}
.ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  content: "";
  display: block;
  position: absolute;
  left: 25%;
  top: 25%;
  width: 50%;
  height: 50%;
  background-color: #fff;
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/default.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/default.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
[data-type=facebook-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/facebook.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/facebook.svg);
}
[data-type=google-maps-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/maps.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/maps.svg);
}
[data-type=mapbox-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/maps.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/maps.svg);
}
[data-type=instagram-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/instagram.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/instagram.svg);
}
[data-type=linkedin-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/linkedin.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/linkedin.svg);
}
[data-type=personio-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/personio.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/personio.svg);
}
[data-type=soundcloud-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/soundcloud.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/soundcloud.svg);
}
[data-type=spotify-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/spotify.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/spotify.svg);
}
[data-type=tik-tok-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/tiktok.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/tiktok.svg);
}
[data-type=twitter-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/twitter.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/twitter.svg);
}
[data-type=vimeo-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/vimeo.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/vimeo.svg);
}
[data-type=xing-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/xing.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/xing.svg);
}
[data-type=x-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/x.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/x.svg);
}
[data-type=youtube-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/youtube.svg);
          mask-image: url(../../../../plugins/yeah-wp-privacy/public/img/youtube.svg);
}
[data-type=smava-blocked] .ywpp-content-blocker-header .ywpp-content-blocker-icon:before {
  -webkit-mask-image: url("../img/icon-smava.svg");
          mask-image: url("../img/icon-smava.svg");
}
.ywpp-content-blocker-content {
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .ywpp-content-blocker-content {
    gap: 1rem;
  }
}
.ywpp-content-blocker-footer {
  position: relative;
  display: flex;
  padding-bottom: 1rem;
}
.ywpp-content-blocker .ywpp-content-blocker-enable {
  margin-bottom: 1rem;
}
.ywpp-content-blocker .ywpp-content-blocker-enable .ywpp-enable-button {
  border: none;
  background: none;
  outline: none;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.ywpp-content-blocker .ywpp-content-blocker-enable .ywpp-enable-button .ywpp-enable-button-toggle {
  position: relative;
  display: inline-flex;
  width: 2.6rem;
  height: 1.6rem;
  border-radius: 0.8rem;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s;
}
.ywpp-content-blocker .ywpp-content-blocker-enable .ywpp-enable-button .ywpp-enable-button-toggle:after {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: calc(1.6rem - 6px);
  height: calc(1.6rem - 6px);
  border-radius: 50%;
  background-color: #fff;
  transform: translateX(0);
  transition: transform 0.2s;
}
.ywpp-content-blocker .ywpp-content-blocker-enable .ywpp-enable-button .ywpp-enable-button-label {
  margin-left: 1rem;
  font-weight: bold;
}
@media (hover: hover) {
  .ywpp-content-blocker .ywpp-content-blocker-enable .ywpp-enable-button:hover .ywpp-enable-button-toggle {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.ywpp-content-blocker .ywpp-content-blocker-enable .ywpp-enable-button:focus-visible .ywpp-enable-button-toggle {
  outline-offset: 2px;
  outline: 2px solid #000;
}
.ywpp-content-blocker .ywpp-content-blocker-enable .ywpp-enable-button.active .ywpp-enable-button-toggle {
  background-color: #34c759 !important;
}
.ywpp-content-blocker .ywpp-content-blocker-enable .ywpp-enable-button.active .ywpp-enable-button-toggle:after {
  transform: translateX(1rem);
}
.ywpp-content-blocker-unblocked {
  position: relative;
  display: none;
}
.ywpp-content-blocker-unblocked:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: load 0.8s linear infinite;
}
@keyframes load {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.ywpp-cookiebar-curtain {
  display: none;
}
.ywpp-cookiebar-bar {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 100%;
  right: 0;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(40, 58, 51, 0.4);
  border-radius: 2px;
}
@media (min-width: 730px) {
  .ywpp-cookiebar-bar {
    width: 98%;
    max-width: 720px;
    right: 1rem;
    bottom: 1rem;
  }
}
.ywpp-cookiebar.active {
  display: block;
}
.ywpp-cookiebar.active .ywpp-cookiebar-bar {
  display: block;
  opacity: 1;
}
.ywpp-cookiebar.active .ywpp-cookiebar-bar.enter-active {
  transition: all 0.4s ease-out;
}
.ywpp-cookiebar.active .ywpp-cookiebar-bar.enter-from {
  opacity: 0.5;
  transform: translateY(120%);
}
.ywpp-cookiebar.active .ywpp-cookiebar-bar.enter-to {
  opacity: 1;
  transform: translateY(0);
}
.ywpp-cookiebar.active .ywpp-cookiebar-bar.leave-active {
  transition: all 0.2s 0.3s ease-in;
}
.ywpp-cookiebar.active .ywpp-cookiebar-bar.leave-from {
  opacity: 1;
  transform: translateY(0);
}
.ywpp-cookiebar.active .ywpp-cookiebar-bar.leave-to {
  opacity: 0;
  transform: translateX(120%);
}
.ywpp-cookiebar-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1rem;
  font-size: 0.8rem;
}
@media (min-width: 730px) {
  .ywpp-cookiebar-inner {
    padding: 1.5rem;
    font-size: 1rem;
  }
}
.ywpp-cookiebar-buttons {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.5em;
}
@media (min-width: 630px) {
  .ywpp-cookiebar-buttons {
    display: flex;
  }
}
.ywpp-cookiebar-buttons button {
  font-size: 0.9rem;
  max-width: none;
  margin-right: 0;
  margin-bottom: 0;
}
@media (min-width: 630px) {
  .ywpp-cookiebar-buttons button {
    flex: 1 0 auto;
    margin-right: 0.75rem;
  }
}
.ywpp-cookiebar-buttons button:last-child {
  margin-right: 0;
}
.ywpp-cookiebar-buttons button.btn-primary {
  background-color: #fff;
}
@media (hover: hover) {
  .ywpp-cookiebar-buttons button.btn-primary:hover {
    background-color: #000;
  }
}
.ywpp-cookiebar-buttons button.btn-secondary {
  opacity: 0.5;
  background-color: transparent;
  border-color: #666;
  color: #666;
}
@media (hover: hover) {
  .ywpp-cookiebar-buttons button.btn-secondary:hover {
    border-color: #666;
    background-color: #666;
    color: #fff;
  }
}
.ywpp-cookiebar-buttons button.btn-secondary:focus-visible {
  outline-offset: 2px;
  outline: 2px solid rgba(102, 102, 102, 0.8);
}

.download {
  --download-padding: 2rem;
  --download-gap: 1rem;
  --download-icon-size: 30px;
}
.download.normal .grid {
  max-width: var(--max-width-one-col);
  margin: 0 auto;
}
.download.left .grid {
  max-width: var(--max-width-one-col);
}
.download .download {
  position: relative;
  padding: var(--download-padding);
  display: grid;
  grid-template-columns: var(--download-icon-size) 1fr;
  gap: var(--download-gap);
  align-items: center;
  width: 100%;
  background-color: #cfbca5;
  transition: background-color 0.2s ease;
}
.download .download:before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--color-text);
  -webkit-mask-image: url(../img/icon-dropdown.svg);
          mask-image: url(../img/icon-dropdown.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: all 0.2s ease;
}
.download .download.active:before {
  transform: rotateZ(-180deg);
}
.download .download:hover::before {
  background-color: #fff;
}
.download .download button.download-trigger {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0;
  margin-bottom: 0;
  width: 100%;
  font-weight: 500;
  background-color: inherit;
  border: 0;
  text-transform: none;
  text-align: left;
}
.download .download button.download-trigger::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(-1 * var(--download-padding));
  left: calc(-1 * var(--download-padding) - var(--download-gap) - var(--download-icon-size));
  width: calc(100% + var(--download-padding) * 2 + var(--download-gap) + var(--download-icon-size));
  height: calc(100% + var(--download-padding) * 2);
}
.download .download button.download-trigger:focus-visible {
  outline: 1px solid var(--color-text);
  outline-offset: 5px;
}
.download .download .download-content {
  grid-column: 2/-1;
  padding: 1rem 0;
}
.download .download .download-content .download-link {
  margin-top: 1rem;
  margin-bottom: 0;
}

ul.service-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.service-links li {
  text-align: center;
  margin-bottom: 1em;
}
ul.service-links li:before {
  content: none;
}

.teaserlinks {
  --offset: calc(8em - var(--gutter-width));
  pointer-events: none;
}
.teaserlinks .teaser-link {
  display: grid;
  grid-area: 1/1/-1/-1;
  grid-template-columns: subgrid;
  grid-template-rows: 1fr 1fr auto;
  gap: var(--gutter-width);
  min-width: 0;
}
@media only screen and (min-width: 768px) {
  .teaserlinks .teaser-link {
    gap: 0;
  }
}
.teaserlinks .teaser-link:nth-child(1) .teaser-link-text {
  grid-column: 1/-1;
  grid-row: 1/2;
}
@media only screen and (min-width: 480px) {
  .teaserlinks .teaser-link:nth-child(1) .teaser-link-text {
    grid-column: 1/2;
  }
}
@media only screen and (min-width: 768px) {
  .teaserlinks .teaser-link:nth-child(1) .teaser-link-text {
    grid-column: 1/-1;
    grid-row: 1/2;
    max-width: calc(100% * var(--column-right-dimension) - var(--gutter-width));
  }
}
.teaserlinks .teaser-link:nth-child(2) .teaser-link-text {
  grid-column: 1/-1;
  grid-row: 2/3;
  z-index: 1;
}
@media only screen and (min-width: 480px) {
  .teaserlinks .teaser-link:nth-child(2) .teaser-link-text {
    grid-column: 1/2;
  }
}
@media only screen and (min-width: 768px) {
  .teaserlinks .teaser-link:nth-child(2) .teaser-link-text {
    grid-column: 2/-1;
    grid-row: 2/3;
    margin-top: calc(-0.5 * var(--offset));
    margin-bottom: calc(0.5 * var(--offset));
  }
}
.teaserlinks .teaser-link:nth-child(2) .teaser-link-image {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.teaserlinks .teaser-link .teaser-link-image {
  grid-column: 1/3;
  grid-row: 3/-1;
}
@media only screen and (min-width: 768px) {
  .teaserlinks .teaser-link .teaser-link-image {
    grid-column: 1/2;
    grid-row: 3/4;
    margin-top: calc(-1 * var(--offset));
    margin-right: calc(-1 * var(--offset));
    margin-left: var(--offset);
  }
}
@media only screen and (min-width: 1440px) {
  .teaserlinks .teaser-link .teaser-link-image {
    margin-top: calc(-2 * var(--offset));
  }
}
.teaserlinks .teaser-link .teaser-link-text {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  padding: 2rem;
  font-weight: 500;
  text-decoration: none;
  background-color: #cfbca5;
  pointer-events: all;
  mix-blend-mode: multiply;
  transition: all 0.2s ease;
}
@media only screen and (min-width: 768px) {
  .teaserlinks .teaser-link .teaser-link-text {
    min-height: 150px;
  }
}
@media only screen and (min-width: 1440px) {
  .teaserlinks .teaser-link .teaser-link-text {
    min-height: 230px;
  }
}
.teaserlinks .teaser-link .teaser-link-text:hover {
  background-color: #ae895b;
  color: white;
  transition: all 0.2s ease;
}
.teaserlinks .teaser-link .teaser-link-text:hover + .teaser-link-image {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.textimage .grid {
  column-gap: calc(var(--gutter-width) * 2);
  row-gap: var(--gutter-width);
  align-items: start;
}
@media only screen and (max-width: 767px) {
  .textimage .grid.mobile-reversed > *:nth-child(1) {
    order: 2;
  }
  .textimage .grid.mobile-reversed > *:nth-child(2) {
    order: 1;
  }
}
@media only screen and (min-width: 768px) {
  .textimage .grid {
    grid-template-columns: 1fr 1fr;
  }
}
.textimage .grid .textimage-text {
  align-self: center;
}

div.transition {
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
div.transition .transition-block {
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transform: translateY(0);
  transition: transform 0.2s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
div.transition .transition-block .transition-to,
div.transition .transition-block .transition-from {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
div.transition .transition-block .transition-to {
  transition: opacity 0.2s;
  opacity: 0;
}

.videoheader {
  position: relative;
  width: 100%;
  display: grid;
}
.videoheader .scrolling-placeholder {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.videoheader-video {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  grid-area: 1/1;
}
.videoheader-video video {
  opacity: 0;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s;
}
.videoheader-video video.active {
  opacity: 1;
}
.videoheader .BCB-logo-holder {
  position: sticky;
  z-index: 1;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  grid-area: 1/1;
}
.videoheader .BCB-logo-holder .BCB-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 75px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 20px rgba(83, 115, 137, 0.75));
  transition: all 0.2s;
}
@media only screen and (min-width: 768px) {
  .videoheader .BCB-logo-holder .BCB-logo {
    width: 300px;
    height: 100px;
  }
}
@media only screen and (min-width: 1024px) {
  .videoheader .BCB-logo-holder .BCB-logo {
    width: 400px;
    height: 150px;
  }
}
.videoheader .BCB-logo-holder .BCB-logo-inner {
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-mask-image: url(../img/BCB-logo.svg);
          mask-image: url(../img/BCB-logo.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.videoheader .scrolling-text {
  position: sticky;
  z-index: 1;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  grid-area: 1/1;
}
.videoheader .scrolling-text-inner {
  position: relative;
  top: 50%;
}
.videoheader .scrolling-text .scrolling-line {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  padding: 0.5rem 1rem;
  font-weight: normal;
  letter-spacing: 0.025em;
  opacity: 0;
  transition: all 0.2s;
  text-shadow: 0 0 15px rgba(83, 115, 137, 0.75);
  font-size: 6vw;
}
@media only screen and (min-width: 768px) {
  .videoheader .scrolling-text .scrolling-line {
    font-size: 4.5vw;
    padding: 1rem;
  }
}
@media only screen and (min-width: 1024px) {
  .videoheader .scrolling-text .scrolling-line {
    font-size: 3vw;
    padding: 1rem;
  }
}
@media only screen and (min-width: 1920px) {
  .videoheader .scrolling-text .scrolling-line {
    font-size: 3rem;
  }
}

.videos.normal .grid {
  max-width: var(--max-width-one-col);
  margin: 0 auto;
}
.videos-inner {
  gap: var(--gutter-width);
}
@media only screen and (min-width: 1024px) {
  .videos-inner.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
  .videos-inner.cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.videos .video-title {
  margin: 0.75em 0;
}

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