@charset "UTF-8";
/*
  Project: brockmeyer
  Author: tobias lorenz
 */
/* Fonts
   ========================================================================== */
/* Breakpoints
   ========================================================================== */
/* Colors
   ========================================================================== */
/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box;
}

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

/* ==========================================================================
   #FONT-FACE
   ========================================================================== */
/**
 * Add font-display: swap to font-face blocks here
 * https://www.zachleat.com/web/comprehensive-webfonts/#font-display
 */
@font-face {
  font-family: cormorantgaramond;
  src: url("../assets/fonts/CormorantGaramond-Light.ttf") format("truetype");
  font-weight: light;
  font-style: normal;
}

@font-face {
  font-family: montserrat;
  src: url("../assets/fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: light;
  font-style: normal;
}

/* ==========================================================================
   #NORMALIZE
   ========================================================================== */
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Correct the line height in all browsers.
     * 2. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
       ========================================================================== */
/**
     * Remove the margin in all browsers (opinionated).
     */
body {
  margin: 0;
}

/**
     * Add the correct display in IE 9-.
     */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
figcaption,
figure {
  display: block;
}

/**
     * Add the correct margin in IE 8.
     */
figure {
  margin: 1em 40px;
}

/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
     * Add the correct display in IE.
     */
main {
  display: block;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Links
       ========================================================================== */
/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/* Text-level semantics
       ========================================================================== */
/**
     * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */
b,
strong {
  font-weight: inherit;
}

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
b,
strong {
  font-weight: bolder;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
     * Add the correct font style in Android 4.3-.
     */
dfn {
  font-style: italic;
}

/**
     * Add the correct background and color in IE 9-.
     */
mark {
  background-color: #ff0;
  color: #000;
}

/**
     * Add the correct font size in all browsers.
     */
small {
  font-size: 80%;
}

/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
audio,
video {
  display: inline-block;
}

/**
     * Add the correct display in iOS 4-7.
     */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
     * Remove the border on images inside links in IE 10-.
     */
img {
  border-style: none;
}

/**
     * Hide the overflow in IE.
     */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers (opinionated).
     * 2. Remove the margin in Firefox and Safari.
     */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
     * Show the overflow in IE.
     */
button {
  overflow: visible;
}

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */
}

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

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible;
}

/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
       * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
       */
}

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

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
     * Correct the padding in Firefox.
     */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
  box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
     * Remove the default vertical scrollbar in IE.
     */
textarea {
  overflow: auto;
}

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE, and Firefox.
     */
details {
  display: block;
}

/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item;
}

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block;
}

/* Scripting
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
canvas {
  display: inline-block;
}

/**
     * Add the correct display in IE.
     */
template {
  display: none;
}

/* Hidden
       ========================================================================== */
/**
     * Add the correct display in IE 10-.
     */
[hidden] {
  display: none;
}

/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
  margin-bottom: 0;
}

/**
 * Remove default table spacing.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
fieldset {
  min-width: 0;
  /* [1] */
  border: 0;
}

/* ==========================================================================
   #SHARED
   ========================================================================== */
/**
 * Shared declarations for certain elements.
 */
/**
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
address,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 1.3rem;
}

/**
 * Consistent indentation for lists.
 */
dd, ol, ul {
  margin-left: 1rem;
}

/* ==========================================================================
   #BLOCKQUOTES
   ========================================================================== */
blockquote {
  quotes: '“' '”' '‘' '’';
  font-style: italic;
}

blockquote p:first-child:before {
  content: open-quote;
}

blockquote p:last-child:after {
  content: close-quote;
}

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Simple default styles for headings 1 through 6. Anything more opinionated
 * than simple font-size changes should likely be applied via classes (see:
 * http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
 */
h1 {
  font-size: 60px;
  font-weight: lighter;
  line-height: 66px;
  margin-top: 0;
  margin-bottom: 40px;
  font-family: cormorantgaramond, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
}

h2 {
  font-size: 44px;
  line-height: 48px;
  font-weight: lighter;
  margin-top: 0;
  font-family: cormorantgaramond, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
}

h3 {
  font-size: 18px;
  color: #c2b6a6;
  margin-bottom: 15px;
}

h4 {
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

@media only screen and (max-width: 959px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }
}

/* ==========================================================================
   #HR
   ========================================================================== */
hr {
  display: block;
}

/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  background: #fff;
  color: #6e6a66;
  font-family: montserrat, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  font-size: 0.8125rem;
  /* [1] */
  /* 13px */
  line-height: 1.5;
  /* [1] */
  min-height: 100%;
  /* [3] */
  overflow-y: scroll;
  /* [2] */
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -ms-hyphens: auto;
      hyphens: auto;
}

@media (min-width: 768px) {
  html {
    font-size: 0.875em;
    /* 14px */
  }
}

@media (min-width: 1024px) {
  html {
    font-size: 0.9375em;
    /* 15px */
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 1em;
    /* 16px */
  }
}

::selection {
  color: white;
  background: #6e6a66;
}

section .section-large {
  padding: 180px;
  position: relative;
}

.section-large {
  padding: 180px 0;
}

.section-small {
  padding: 120px 0;
  background-color: #f2ede8;
}

.show-for-small {
  display: none !important;
}

@media only screen and (max-width: 959px) {
  .section-large {
    padding: 140px 0;
  }
  .section-small {
    padding-top: 100px;
    padding-bottom: 100px;
    /* width */
    /* Track */
    /* Handle */
  }
  .section-small ::-webkit-scrollbar {
    height: 10px;
  }
  .section-small ::-webkit-scrollbar-track {
    background: white;
    margin: 0 20px;
    border-radius: 5px;
    height: 10px;
  }
  .section-small ::-webkit-scrollbar-thumb {
    background: #6e6a66;
    border: 3px solid white;
    border-radius: 5px;
  }
  .show-for-large {
    display: none !important;
  }
  .show-for-small {
    display: flex !important;
  }
}

/* ==========================================================================
   #IMAGES
   ========================================================================== */
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  font-style: italic;
  /* [2] */
  max-width: 100%;
  /* [1] */
  vertical-align: middle;
  /* [3] */
}

/**
 * 1. If a `width` and/or `height` attribute have been explicitly defined, let’s
 *    not make the image fluid.
 */
img[width],
img[height] {
  max-width: none;
}

/* ==========================================================================
   #LINKS
   ========================================================================== */
a {
  cursor: pointer;
  color: #c2b6a6;
  text-decoration: none;
  font-size: 18px;
}

a:hover {
  color: #6e6a66;
}

button {
  cursor: pointer;
  border: none;
  color: rgba(110, 106, 102, 0.66);
  text-decoration: none;
  padding: 15px 20px;
  background-color: #ebe4db;
  transition: color 0.3s ease;
  font-family: montserrat, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
}

button:hover {
  color: #6e6a66;
}

.dark {
  cursor: pointer;
  border: none;
  color: rgba(255, 255, 255, 0.77);
  text-decoration: none;
  padding: 15px 20px;
  background-color: rgba(194, 182, 166, 0.66);
  transition: color 0.3s ease;
  font-family: montserrat, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
}

.dark:hover {
  color: white;
}

.popup-text a {
  cursor: pointer;
  border: none;
  color: #c2b6a6;
  text-decoration: none;
  padding: 15px 20px;
  background-color: #ebe4db;
}

.popup-text a:hover {
  color: #6e6a66;
}

@media only screen and (max-width: 959px) {
  button {
    width: 100%;
    margin-bottom: 0;
  }
}

/* ==========================================================================
   #LISTS
   ========================================================================== */
li {
  margin-bottom: 0.5rem;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1rem;
  margin-top: 0.5rem;
}

dt {
  font-weight: bold;
}

dd {
  margin-bottom: 1rem;
  margin-left: 1rem;
}

/* ==========================================================================
   #TABLES
   ========================================================================== */
/**
 * 1. Ensure tables fill up as much space as possible.
 */
table {
  width: 100%;
  /* [1] */
}

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
/* Simple flexbox layout system */
.o-layout {
  display: block;
}

@media (min-width: 768px) {
  .o-layout {
    display: flex;
  }
}

.o-layout__item {
  flex: 1;
}

.o-layout--guttered {
  justify-content: space-between;
}

.o-layout--guttered > .o-layout__item {
  flex: none;
}

@media (min-width: 768px) {
  .o-layout--2 > .o-layout__item {
    width: 49%;
  }
}

@media (min-width: 768px) {
  .o-layout--3 > .o-layout__item {
    width: 32%;
  }
}

@media (min-width: 768px) {
  .o-layout--4 > .o-layout__item {
    width: 24%;
  }
}

/* ==========================================================================
   #LIST-BARE
   ========================================================================== */
/**
 * Strip list-like appearance from lists by removing their bullets, and any
 * indentation.
 */
.o-list-bare {
  list-style: none;
  margin-left: 0;
}

/* ==========================================================================
   #LIST-INLINE
   ========================================================================== */
/**
 * The list-inline object simply displays a list of items in one line.
 */
.o-list-inline {
  list-style: none;
  margin-left: 0;
}

.o-list-inline__item {
  display: inline-block;
}

/* ==========================================================================
   #MEDIA
   ========================================================================== */
/**
 * Place any image- and text-like content side-by-side, as per:
 * http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 */
.o-media {
  display: block;
}

.o-media:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.o-media__img {
  float: left;
  margin-right: 1rem;
}

.o-media__img > img {
  display: block;
}

.o-media__body {
  display: block;
  overflow: hidden;
}

.o-media__body,
.o-media__body > :last-child {
  margin-bottom: 0;
}

/* Reversed media objects
   ========================================================================== */
.o-media--reverse > .o-media__img {
  float: right;
  margin-left: 1rem;
  margin-right: 0;
}

/* Gutterless media objects
   ========================================================================== */
.o-media--flush > .o-media__img {
  margin-left: 0;
  margin-right: 0;
}

/* ==========================================================================
   #TABLE
   ========================================================================== */
/**
 * A simple object for manipulating the structure of HTML `table`s.
 */
.o-table {
  width: 100%;
}

/* Equal-width table cells.
   ========================================================================== */
/**
 * `table-layout: fixed` forces all cells within a table to occupy the same
 * width as each other. This also has performance benefits: because the browser
 * does not need to (re)calculate cell dimensions based on content it discovers,
 * the table can be rendered very quickly. Further reading:
 * https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout#Values
 */
.o-table--fixed {
  table-layout: fixed;
}

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
/**
 * Page-level constraining and wrapping elements.
 */
.o-wrapper {
  margin-right: auto;
  margin-left: auto;
  max-width: 1255px;
  padding-left: 50px;
  padding-right: 50px;
}

.o-wrapper:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.p-wrapper {
  margin-right: auto;
  margin-left: auto;
  max-width: 1440px;
}

.p-wrapper:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.arrow-wrapper {
  max-width: 1534px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

@media only screen and (min-device-width: 1440px) and (max-device-width: 1919px) {
  .o-wrapper {
    max-width: 1195px;
  }
}

@media only screen and (max-width: 1400px) {
  .arrow-wrapper {
    max-width: 260px;
  }
}

@media only screen and (min-device-width: 960px) and (max-device-width: 1439px) {
  .o-wrapper {
    max-width: 1024px;
  }
}

@media only screen and (max-width: 959px) {
  .o-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-wrapper {
    margin-left: 15px;
    margin-right: 15px;
  }
  .arrow-wrapper {
    max-width: 960px;
    padding: 0 30px;
  }
}

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
/**
 * This is an example component. Extend inuitcss by building your own components
 * that make up your UI. Component classes are prefixed with a `c-`.
 */
/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 */
.c-btn {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font: inherit;
  /* [3] */
  text-align: center;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  padding: 0.5rem 1rem;
  transition: all 300ms ease-in-out;
  border-radius: 3px;
}

/* Style variants
   ========================================================================== */
.c-btn--primary {
  background-color: #666;
}

.c-btn--primary, .c-btn--primary:hover, .c-btn--primary:active, .c-btn--primary:focus {
  text-decoration: none;
  /* [4] */
  color: #fff;
}

.c-btn--primary:hover, .c-btn--primary:focus {
  background-color: #999;
}

/* Size variants
   ========================================================================== */
.c-btn--small {
  padding: 0.25rem 0.5rem;
}

.c-btn--large {
  padding: 0.75rem 1.5rem;
}

/* ==========================================================================
   #COMMENT FORM
   Here we are using default HTML structure and classes,
   to create custom ones use comment_form_defaults filter
   ========================================================================== */
.c-comment-form {
  margin-top: 2em;
}

.c-comment-form label {
  display: block;
}

.c-comment-form textarea {
  max-width: 100%;
}

.comment-reply-title {
  margin-bottom: 0.25em;
}

/* ==========================================================================
   #COMMENT
   ========================================================================== */
.c-comment {
  margin-bottom: 1em;
}

.c-comment__author {
  font-size: 1rem;
  margin-bottom: 0.25em;
}

.c-comment__moderation {
  font-style: italic;
  margin-bottom: 0.5em;
}

/* ==========================================================================
   #FOOTER
   ========================================================================== */
.c-footer {
  background-color: rgba(0, 0, 0, 0.66);
  height: 100%;
}

.c-footer p {
  width: auto;
  white-space: nowrap;
  margin: 20px 0;
  color: #c2b6a6;
  line-height: 40px;
}

.c-footer .social-svg {
  display: flex;
  margin: 20px 0;
}

.c-footer .social-svg a {
  margin-left: 30px;
  height: 40px;
  width: 40px;
}

.c-footer .social-svg a:first-child {
  margin-left: 0;
}

.footer-content {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.partner {
  display: flex;
  flex-direction: row;
  margin-right: auto;
  margin-left: auto;
}

.partner a {
  margin: 0 15px;
  align-self: center;
}

.partner img {
  height: auto;
  max-width: 240px;
  max-height: 54px;
  object-fit: contain;
}

@media only screen and (max-width: 959px) {
  .partner {
    margin-bottom: 30px;
  }
  .c-footer {
    height: 100%;
    position: relative;
  }
  .footer-content {
    flex-direction: column-reverse;
    align-items: center;
  }
  .footer-content p {
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .footer-content .social-svg {
    margin: 40px 0;
  }
}

@media only screen and (max-width: 540px) {
  .partner {
    display: flex;
    flex-wrap: wrap;
    max-width: 240px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
  }
  .partner a {
    margin: 0 auto 30px auto;
    align-self: center;
  }
  .partner img {
    height: auto;
    max-width: 240px;
    max-height: 54px;
    object-fit: contain;
  }
}

/* ==========================================================================
   #HEADER
   ========================================================================== */
.c-header {
  border-bottom: 1px solid #ccc;
  margin-bottom: 2em;
  padding-bottom: 1em;
}

.mix-unset {
  mix-blend-mode: unset !important;
}

/* ==========================================================================
   #MAIN NAV
   ========================================================================== */
.hidden {
  visibility: hidden;
}

.no-transition {
  transition: none !important;
}

.transform {
  visibility: visible !important;
  transform: translateX(0) !important;
}

.opacity {
  opacity: 0.8 !important;
  visibility: visible !important;
}

.opacity-1 {
  opacity: 1 !important;
  visibility: visible !important;
}

.c-main-nav {
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 570px;
  height: 100vh;
  z-index: 999999;
  margin: 0 0 2em 0;
  background: white;
  padding: 170px 0;
  overflow-y: scroll;
  transform: translateX(100%);
  transition: visibility 0.3s ease-in-out 0s, transform 0.3s ease-in-out 0s;
}

.c-main-nav span {
  font-size: 18px;
  margin-bottom: 15px;
  color: #c2b6a6;
  font-family: montserrat, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
}

@media only screen and (max-width: 1360px) {
  .c-main-nav {
    width: 360px;
  }
  .c-main-nav__link {
    font-size: 48px !important;
    line-height: 56px !important;
  }
  .c-main-nav__small-link {
    font-size: 34px !important;
    line-height: 42px !important;
  }
}

@media only screen and (max-width: 959px) {
  .c-main-nav {
    width: 100%;
    padding: 130px 0;
  }
}

.c-main-nav__item {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
  text-align: center;
}

.c-main-nav__item:hover .c-main-nav__dropdown {
  display: flex;
}

.small-nav {
  margin-top: 60px;
}

.c-main-nav__link {
  font-family: cormorantgaramond, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  font-size: 60px;
  line-height: 66px;
  color: #6e6a66;
  opacity: 0.5;
  display: block;
  padding-bottom: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.c-main-nav__link:hover {
  opacity: 1;
}

.c-main-nav__small-link {
  font-family: cormorantgaramond, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  font-size: 44px;
  line-height: 48px;
  color: #6e6a66;
  opacity: 0.5;
  display: block;
  padding-bottom: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.c-main-nav__small-link:hover {
  opacity: 1;
}

.current-menu-item .c-main-nav__link {
  border-bottom-color: #000;
}

.c-main-nav__dropdown {
  display: none;
  flex-direction: column;
  margin: 0;
  position: absolute;
}

.c-main-nav__subitem {
  list-style: none;
  margin: 0;
}

.c-main-nav__sublink {
  background: #fff;
  border-bottom: 1px solid #ccc;
  display: block;
  padding: 0.5em;
  text-decoration: none;
}

.current-menu-item .c-main-nav__sublink {
  border-bottom-color: #000;
}

.soft-overlay {
  visibility: hidden;
  width: 100%;
  height: 100vh;
  left: -50px;
  top: 0;
  background-color: #ebe4db;
  opacity: 0;
  position: absolute;
  z-index: 99999;
  transition: visibility 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
}

.no-scroll {
  overflow: hidden !important;
}

/* ==========================================================================
   #POST
   Includes styles for default WP images classes
   ========================================================================== */
.c-post {
  margin-bottom: 2em;
}

.c-post:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.alignnone {
  margin: 1em 1em 1em 0;
}

.aligncenter {
  margin: 1em auto;
}

.alignright {
  float: right;
  margin: 1em 0 1em 1em;
}

.alignleft {
  float: left;
  margin: 1em 1em 1em 0;
}

.wp-caption {
  text-align: center;
}

.wp-caption-text {
  font-style: italic;
  margin-top: 0.5em;
}

/* ==========================================================================
   #ALIGN
   ========================================================================== */
.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-clear {
  clear: both;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

/* ==========================================================================
   #CLEARFIX
   ========================================================================== */
/**
 * Attach our clearfix mixin to a utility class.
 */
.u-clearfix:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

/* ==========================================================================
   #HIDE
   ========================================================================== */
/**
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.u-hidden-visually {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

/**
 * Hide visually and from screen readers.
 */
.u-hidden {
  display: none !important;
}

.u-hidden\@small {
  display: none;
}

@media (min-width: 768px) {
  .u-hidden\@small {
    display: block;
  }
}

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.hidden {
  max-height: 0 !important;
  opacity: 0 !important;
  margin: 0 !important;
  display: none;
}

.slider-white-border {
  height: 10px;
  background-color: white;
}

p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
}

.visible-scroll {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.text-left-img-right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  position: relative;
  transition: opacity 1s ease, transform 1s ease;
}

.text-left-img-right .text {
  width: 500px;
  max-width: 500px;
  margin-right: 130px;
  position: relative;
}

.text-left-img-right .text p {
  margin-bottom: 60px;
}

.text-left-img-right .animate-line {
  height: 400px !important;
}

.text-left-img-right .headline-with-animated-line {
  position: relative;
}

.text-left-img-right .headline-with-animated-line .animated-line {
  height: 0;
  transform: rotate(180deg);
  width: 4px;
  border-left: 4px solid #ebe4db;
  position: absolute;
  bottom: 13px;
  left: -40px;
  transition: height 1s ease;
}

.text-left-img-right .image {
  align-items: stretch;
  width: 470px;
  max-width: 500px;
  background-color: #ebe4db;
  margin-left: auto;
  margin-top: 40px;
}

.text-left-img-right .image .img {
  background-color: #6e6a66;
  height: 100%;
  margin: 0 0 0 0;
  transform: translate(0, 0);
  background-position: top center;
  background-size: cover;
  transition: transform 1s ease-out;
}

.translate-left {
  transform: translate(-30px, -30px) !important;
}

@media only screen and (max-width: 959px) {
  .text-left-img-right {
    flex-direction: column;
  }
  .text-left-img-right .text {
    width: 100%;
    max-width: unset;
    margin-bottom: 100px;
  }
  .text-left-img-right .headline-with-animated-line .animated-line {
    height: 0;
    bottom: 13px;
    left: -20px;
  }
  .text-left-img-right .animate-line {
    height: 340px !important;
  }
  .text-left-img-right .image {
    align-items: unset;
    max-width: unset;
    width: calc(100% - 30px);
    padding-top: 112%;
    margin: 0 0 0 30px;
    position: relative;
    transform: translateY(30px);
  }
  .text-left-img-right .image .img {
    width: 100%;
    position: absolute;
    top: 0;
    margin: 0 0 0 0;
  }
  .animated-margin {
    margin: -30px 0 0 -30px !important;
  }
}

.news {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.news .text {
  width: 500px;
  max-width: 500px;
  margin-left: 100px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.news .text p {
  margin-bottom: 60px;
}

.news .image {
  align-items: stretch;
  position: relative;
  width: 470px;
  max-width: 500px;
  min-height: 580px;
  background-color: #ebe4db;
  margin-bottom: 40px;
  margin-left: 30px;
}

.news .image .img {
  background-color: #6e6a66;
  min-height: 580px;
  transform: translate(0, 0);
  background-position: top center;
  background-size: cover;
  transition: transform 1s ease;
}

.translate-out {
  transform: translate(-30px, 40px) !important;
}

@media only screen and (max-width: 959px) {
  .news {
    flex-direction: column;
  }
  .news .text {
    width: 100%;
    max-width: unset;
    margin-left: 0;
  }
  .news .image {
    align-items: unset;
    max-width: unset;
    width: calc(100% - 30px);
    min-height: 374px;
    position: relative;
    margin-left: 30px;
    margin-bottom: 32px;
  }
  .news .image .img {
    width: 100%;
    min-height: 374px;
    padding-top: 129%;
    top: 0;
    transform: translate(0, 0);
  }
  .translate-out {
    transform: translate(-30px, 30px) !important;
  }
}

.kontakt-swiper {
  position: relative;
}

.kontakt-info {
  display: flex;
  width: 100%;
  flex-direction: row;
}

.info-container {
  width: 100%;
  margin-left: 20px;
}

.info-container:first-child {
  margin-left: 0;
}

.info-container h3 {
  width: 100%;
  border-bottom: 1px solid #c2b6a6;
  line-height: 10px;
  margin-bottom: 42px;
}

.info-container h3 span {
  background-color: #f2ede8;
  padding-right: 20px;
}

.info-container p {
  margin-bottom: 0;
}

.info-container .contact-info {
  display: flex;
  margin-top: 32px;
}

.info-container .contact-info .contact-left {
  margin-right: 20px;
}

.info-container .contact-info .contact-right a {
  margin-bottom: 0;
  text-decoration: underline;
  color: #6e6a66;
  line-height: 32px;
}

@media only screen and (max-width: 959px) {
  .footer-liste .kontakt-info {
    flex-direction: column;
    overflow-x: hidden;
    padding-bottom: 0;
  }
  .footer-liste .info-container {
    width: 100%;
    margin-left: 0;
    margin-bottom: 80px;
  }
  .footer-liste .info-container:last-child {
    margin-bottom: 0;
  }
  .kontakt-swiper {
    padding-bottom: 75px;
  }
  .kontakt-info {
    overflow-x: hidden;
    padding-left: 20px;
    padding-top: 5px;
    padding-right: 20px;
  }
  .info-container {
    width: 100%;
    min-width: 260px;
    margin-left: 0;
  }
}

.line-plus {
  width: 80px;
  margin-left: 35px;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #c2b6a6;
  margin-bottom: -1px;
}

.line-pricing-classes {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #c2b6a6;
  margin-bottom: -1px;
}

.line-pricing-classes .line {
  width: 100%;
}

.line-pricing-classes .plus {
  display: flex;
  flex-direction: row;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s ease, opacity 0.5s ease;
}

.line-pricing-classes .plus p {
  margin-bottom: -17px;
  background-color: #3d3d3c;
  padding: 0 5px;
  text-align: center;
}

.preisliste-legende {
  font-size: 14px;
  line-height: 18px;
  color: #6e6a66 !important;
  text-align: center;
  margin-top: 40px;
}

.preisliste {
  background-color: #3d3d3c;
}

.preisliste p {
  color: #c2b6a6;
}

.leistungsgruppe .text-center {
  margin-bottom: 90px;
}

.leistungsgruppe .text-center h2 {
  color: #ebe4db;
  text-align: center;
  padding: 0 240px;
  margin-bottom: 50px;
}

.leistungsgruppe .text-center h3 {
  text-align: center;
}

.leistungsgruppe .text-center p {
  text-align: center;
  padding: 0 90px;
}

.leistungsgruppe .max-height {
  max-height: 0;
}

.leistungsgruppe .toggle-visible {
  visibility: visible !important;
  max-height: 2500px !important;
}

@media only screen and (max-width: 959px) {
  .leistungsgruppe .toggle-visible {
    max-height: 3500px !important;
  }
}

.leistungsgruppe .toggle-content {
  visibility: hidden;
  padding-top: 0;
  overflow: hidden;
  height: auto;
  max-height: 0;
  opacity: 1;
  transition: visibility 2s, max-height 2s;
}

.leistungsgruppe .spacer {
  height: 75px;
}

.leistungsgruppe .spacer-half {
  height: 40px;
}

.leistungsgruppe .plus-visible {
  visibility: visible;
  opacity: 1;
}

.leistungsgruppe .toggle-head {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  padding: 30px 0 18px 0;
  margin-bottom: -1px;
  border-top: 1px solid #c2b6a6;
}

.leistungsgruppe .toggle-head h1 {
  align-self: center;
  width: 100%;
  color: #ebe4db;
  margin-bottom: 0;
}

.leistungsgruppe .toggle-head span {
  align-self: center;
  font-size: 44px;
  line-height: 48px;
  color: #c2b6a6;
  font-family: cormorantgaramond, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  -ms-hyphens: none;
      hyphens: none;
}

.bildgruppe-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 80px 80px 80px 0;
}

.bildgruppe-container .image {
  width: 33.33%;
  height: 100%;
  background-color: #4e4d4b;
  margin: 0 10px 0 8px;
}

.bildgruppe-container .image:last-child {
  margin: 0 0 0 8px;
}

.bildgruppe-container .image .img {
  width: 100%;
  padding-top: 100%;
  margin: -8px 0 8px -8px;
  background: no-repeat;
  background-position: top center;
  background-size: cover;
}

.disclaimer-container {
  margin: 80px 0;
  padding: 10px;
  background-color: #4e4d4b;
  margin-left: 10px;
}

.disclaimer-container .disclaimer {
  margin-left: -20px;
  margin-top: -20px;
  background-color: #3d3d3c;
  border: 1px solid #c2b6a6;
  padding: 80px 180px 80px 180px;
}

.disclaimer-container .disclaimer h2 {
  color: #ebe4db;
  margin-bottom: 40px;
}

.disclaimer-container .disclaimer h1 {
  color: #ebe4db;
  margin-bottom: 40px;
}

.leistung-variation {
  display: block;
  margin-bottom: 35px;
}

.leistung-variation .beschreibung {
  width: 100%;
  position: relative;
}

.leistung-variation .beschreibung h4 {
  color: #ebe4db;
  margin-bottom: 16px;
}

.leistung-variation .beschreibung .copy {
  width: 57%;
  font-size: 16px;
  line-height: 24px;
}

.leistung-variation .variation {
  display: flex;
  flex-direction: row;
}

.leistung-variation .variation .variation-left {
  width: 100%;
}

.leistung-variation .variation .variation-left p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.leistung-variation .variation .plus {
  display: flex;
  flex-direction: row;
}

.leistung-variation .variation .plus p {
  width: 33.33%;
  text-align: center;
  margin-bottom: 0;
}

.leistung-variation .variation .preise {
  display: flex;
  margin-bottom: 0;
}

.leistung-variation .variation .preise p {
  color: #ebe4db;
  width: 80px;
  margin-left: 35px;
  text-align: right;
  line-height: 24px;
  margin-bottom: 0;
}

.leistung {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 35px;
}

.leistung .beschreibung {
  width: 100%;
  position: relative;
}

.leistung .beschreibung h4 {
  color: #ebe4db;
  margin-bottom: 16px;
}

.leistung .beschreibung .copy {
  width: 85%;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.leistung .plus {
  display: flex;
  flex-direction: row;
}

.leistung .plus p {
  width: 33.33%;
  text-align: center;
  margin-bottom: 0;
}

.leistung .preise {
  display: flex;
}

.leistung .preise p {
  color: #ebe4db;
  width: 80px;
  margin-left: 35px;
  text-align: right;
  line-height: 22px;
  white-space: nowrap;
}

@media only screen and (min-device-width: 960px) and (max-device-width: 1439px) {
  .disclaimer-container .disclaimer {
    padding: 80px 100px 80px 100px;
  }
}

@media only screen and (max-width: 959px) {
  .leistungsgruppe .text-center h2 {
    padding: 0;
  }
  .leistungsgruppe .text-center p {
    padding: 0;
  }
  .leistung {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .leistung .beschreibung .copy {
    width: 100%;
    margin-bottom: 7px;
  }
  .leistung .preise p {
    width: 33.33%;
    margin-left: 0;
    text-align: center;
  }
  .leistung-variation .beschreibung .copy {
    width: 100%;
  }
  .leistung-variation .variation {
    flex-direction: column;
  }
  .leistung-variation .variation .preise p {
    width: 33.33%;
    margin-left: 0;
    text-align: center;
  }
  .bildgruppe-container {
    flex-direction: column;
  }
  .bildgruppe-container .image {
    width: 100%;
    margin-bottom: 20px;
  }
  .disclaimer-container .disclaimer {
    padding: 80px 20px 80px 20px;
  }
  .line-pricing-classes .plus p {
    opacity: 0 !important;
  }
  .toggle-head {
    padding: span;
    padding-font-size: 34px !important;
    padding-line-height: 34px !important;
  }
}

.leistung-swiper {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 75px;
}

.leistungen-container {
  width: 100%;
}

.leistungen-container h3 {
  border-bottom: 1px solid #c2b6a6;
  line-height: 10px;
  margin-bottom: 42px;
}

.leistungen-container h3 span {
  background-color: #f2ede8;
  padding-right: 20px;
}

.lineheading-small {
  margin-left: 20px;
  width: calc(100% - 40px);
}

.leistungen {
  display: block;
  column-count: 3;
  width: 100%;
}

.leistungen .leistung {
  margin-bottom: 0;
}

.leistungen .leistung .plus {
  padding-right: 10px;
  color: #c2b6a6;
}

.leistungen .leistung p {
  margin-bottom: 0;
}

@media only screen and (max-width: 959px) {
  .leistungen {
    overflow-x: hidden;
    display: flex;
    width: 830px;
  }
  .leistungen .leistung {
    flex-direction: row;
    padding-right: 10px;
  }
}

.textmodul {
  padding: 0 100px;
}

@media only screen and (max-width: 959px) {
  .textmodul {
    padding: 0 20px;
  }
}

.kontakt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.kontakt .text {
  width: 500px;
  align-items: flex-end;
  margin-right: 100px;
}

.kontakt .text h1 {
  padding-right: 120px;
}

.formular {
  width: 500px;
  margin-left: auto;
}

.formular p {
  margin-bottom: 2px;
}

.formular input[type="text"], .formular input[type="tel"], .formular input[type="email"], .formular input[type="submit"] {
  -webkit-appearance: none;
  box-shadow: none !important;
  font-weight: 500;
  width: 100%;
  height: 50px;
  border: 1px solid #e8e2db;
  font-family: cormorantgaramond, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  font-size: 24px;
  line-height: 29px;
  padding-left: 20px;
  color: #6e6a66;
  background-color: #e8e2db;
  transition: border 0.5s ease;
}

.formular input[type="text"]:focus, .formular input[type="tel"]:focus, .formular input[type="email"]:focus, .formular input[type="submit"]:focus {
  outline: none;
  border: 1px solid #6e6a66;
}

.formular input[aria-invalid='true'] {
  border: 1px solid red;
}

.formular .wpcf7 form.invalid .wpcf7-response-output, .formular .wpcf7 form.unaccepted .wpcf7-response-output {
  color: red;
  border: none;
  margin: 0;
  padding: 0;
}

.formular .wpcf7 form.sent .wpcf7-response-output {
  color: green;
  border: none;
  margin: 0;
  padding: 0;
}

.formular textarea {
  -webkit-appearance: none;
  width: 100%;
  border: 1px solid #e8e2db;
  font-family: cormorantgaramond, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  font-size: 24px;
  line-height: 29px;
  padding-left: 20px;
  padding-top: 12px;
  color: #6e6a66;
  background-color: #e8e2db;
  height: 236px;
  transition: border 0.5s ease;
}

.formular textarea:focus {
  outline: none;
  border: 1px solid #6e6a66;
}

.formular textarea[aria-invalid='true'] {
  border: 1px solid red;
}

.formular :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #97938d;
}

.formular ::placeholder {
  color: #97938d;
}

.formular .wpcf7-acceptance span {
  margin-left: 0;
}

.formular .wpcf7-acceptance span label {
  margin-top: -10px;
  padding: 12px;
  display: flex;
  align-items: center;
  background-color: #e8e2db;
  margin-bottom: 0;
}

.formular .wpcf7-acceptance span label input[type="checkbox"] {
  width: 25px;
}

.formular .wpcf7-acceptance span span {
  width: 100%;
  padding-left: 12px;
  font-size: 10px;
  line-height: 12px;
}

.formular .wpcf7-submit {
  padding-left: 0;
  background-color: #e3dbd4;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.formular .wpcf7-submit:hover {
  background-color: #c2b6a6;
}

@media only screen and (max-width: 959px) {
  .kontakt {
    flex-direction: column;
  }
  .kontakt .text {
    width: 100%;
  }
  .formular {
    margin-top: 80px;
    width: 100%;
  }
}

.gradient {
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(194, 182, 166, 0) 20%, #c2b6a6 100%);
}

.slider-left-text-right {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background-color: #f2ede8;
  position: relative;
  margin: 0 80px;
}

.slider-left-text-right .slider {
  transform: translate(-30px, -30px);
  width: 50%;
  max-width: 643px;
  margin-right: auto;
  padding-right: 18px;
}

.slider-left-text-right .slider .swiper-container {
  box-shadow: 0 0 0 0 #ffffff;
  transition: box-shadow 1s ease;
}

.slider-left-text-right .white-border {
  box-shadow: 10px 10px 0 0 #ffffff !important;
}

@media only screen and (max-width: 959px) {
  .slider-left-text-right .white-border {
    box-shadow: 0 10px 0 0 #ffffff !important;
  }
}

.slider-left-text-right .text {
  width: 50%;
  max-width: 500px;
  margin-left: 48px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 90px 0;
  margin-right: 94px;
}

.slider-left-text-right .text p {
  margin-bottom: 55px;
  margin-top: 45px;
}

.slider-left-text-right .text a {
  margin-right: 15px;
}

.slider-right-text-left {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background-color: #f2ede8;
  margin: 0 80px;
}

.slider-right-text-left .slider {
  transform: translate(30px, -30px);
  margin-left: auto;
  width: 50%;
  max-width: 643px;
  margin-left: auto;
  padding-left: 18px;
}

.slider-right-text-left .slider .swiper-container {
  box-shadow: 0 0 0 0 #ffffff;
  transition: box-shadow 1s ease;
}

.slider-right-text-left .white-border-right {
  box-shadow: -10px 10px 0 0 #ffffff !important;
}

.slider-right-text-left .text {
  max-width: 500px;
  width: 50%;
  margin-top: auto;
  margin-bottom: auto;
  padding: 90px 0;
  margin-left: 94px;
  margin-right: 48px;
}

.slider-right-text-left .text p {
  margin-bottom: 55px;
  margin-top: 45px;
}

.slider-right-text-left .text a {
  margin-right: 15px;
}

@media only screen and (max-width: 1360px) {
  .slider-right-text-left {
    margin: 0 20px;
    align-items: stretch;
  }
  .slider-right-text-left .slider {
    transform: translate(10px, -30px);
    padding-left: 40px;
    max-width: unset;
  }
  .slider-right-text-left .text {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 30px;
    margin-right: 50px;
    max-width: unset;
    padding: 90px 0;
  }
  .slider-left-text-right {
    margin: 0 20px;
    align-items: stretch;
  }
  .slider-left-text-right .slider {
    transform: translate(-10px, -30px);
    padding-right: 40px;
    max-width: unset;
  }
  .slider-left-text-right .text {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 50px;
    margin-right: 30px;
    padding: 90px 0;
    max-width: unset;
  }
}

@media only screen and (max-width: 959px) {
  .slider-left-text-right {
    flex-direction: column;
    margin: 0 0;
  }
  .slider-left-text-right .slider {
    width: calc(100% + 10px);
    max-width: 1340px;
    position: relative;
    transform: translate(0);
    margin-right: 0;
    margin-left: -5px;
    padding-right: 0 !important;
  }
  .slider-left-text-right .slider .swiper-container {
    box-shadow: 0 10px 0 0 #ffffff;
  }
  .slider-left-text-right .swiper-container {
    max-width: unset;
    width: 100%;
    margin-bottom: 80px;
    height: 404px;
  }
  .slider-left-text-right .swiper-container .content {
    width: 30%;
  }
  .slider-left-text-right .swiper-container .title {
    font-size: 42px;
    line-height: 50px;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 100px);
  }
  .slider-left-text-right .swiper-container .swiper-button-next {
    height: 27px;
    width: 60px;
    bottom: 30px;
    right: 20px;
    background-position: right;
  }
  .slider-left-text-right .swiper-container .swiper-button-next:focus {
    outline: none;
  }
  .slider-left-text-right .text {
    width: 100%;
    max-width: unset;
    padding: 0 25px;
    margin-bottom: 80px;
    margin-left: 0;
  }
  .slider-left-text-right .text button {
    margin-bottom: 20px;
  }
  .slider-right-text-left {
    flex-direction: column;
  }
  .slider-right-text-left .slider .swiper-container {
    box-shadow: 0 10px 0 0 #ffffff;
  }
}

.swiper-container {
  max-width: 623px;
  width: 100%;
  height: 100%;
  min-height: 740px;
}

.swiper-container .title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 60px;
  line-height: 66px;
  font-family: cormorantgaramond, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  color: #ebe4db;
  margin-bottom: 0;
  width: calc(100% - 200px);
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 2s ease, transform 1s ease;
  padding-right: 10px;
}

.swiper-container .swiper-slide-active .title {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 2s ease, transform 1s ease;
  z-index: 1;
}

.swiper-container .swiper-slide-active .slide-bgimg {
  width: 623px !important;
}

.swiper-container .slide-bgimg {
  position: absolute;
  height: 100%;
}

@media only screen and (max-width: 959px) {
  .swiper-container .swiper-slide-active .slide-bgimg {
    width: 100% !important;
  }
  .swiper-container {
    min-height: unset;
    height: 100%;
  }
}

.swiper-slide-prev .slide-bgimg {
  width: 100%;
  transition: none;
}

.slide-bgimg {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.swiper-button-next {
  height: 38px;
  width: 80px;
  cursor: pointer;
  background: no-repeat;
  position: absolute;
  bottom: 40px;
  right: 50px;
  z-index: 999;
}

.swiper-button-prev {
  height: 38px;
  width: 80px;
  cursor: pointer;
  background: no-repeat;
  position: absolute;
  bottom: 40px;
  right: 50px;
  z-index: 999;
  transform: rotate(180deg);
}

.news-slider {
  position: relative;
}

.news-slider .swiper-slide {
  display: block;
}

.news-slider .swiper-container {
  max-width: unset;
  height: 100%;
  min-height: unset;
}

.news-slider .news-swiper-button-next {
  right: 0;
  z-index: 999;
  margin-bottom: 260px;
  margin-right: 30px;
  height: 38px;
  width: 80px;
  cursor: pointer;
  background: no-repeat;
  position: absolute;
  bottom: 40px;
  z-index: 999;
}

.news-slider .news-swiper-button-next:focus {
  outline: none;
}

.news-slider .news-swiper-button-prev {
  left: 0;
  z-index: 999;
  margin-bottom: 260px;
  margin-left: 30px;
  height: 38px;
  width: 80px;
  cursor: pointer;
  background: no-repeat;
  position: absolute;
  bottom: 40px;
  z-index: 999;
  transform: rotate(180deg);
}

.news-slider .news-swiper-button-prev:focus {
  outline: none;
}

.news-slider .swiper-wrapper {
  box-sizing: border-box;
}

@media only screen and (max-width: 1400px) {
  .swiper-buttons {
    display: flex;
    margin-top: 70px;
  }
  .news-swiper-button-next {
    position: relative;
    margin-left: auto;
    margin-right: 0 !important;
    z-index: 999;
    margin-bottom: 0 !important;
    bottom: unset !important;
  }
  .news-swiper-button-prev {
    position: relative;
    z-index: 999;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    bottom: unset !important;
  }
}

@media only screen and (max-width: 959px) {
  .news-slider {
    position: relative;
  }
  .news-slider .swiper-container {
    max-width: unset;
    height: 100%;
  }
  .news-slider .swiper-buttons {
    display: flex;
    margin-top: 0;
  }
  .news-slider .news-swiper-button-next {
    position: relative;
    margin-left: auto;
    margin-right: 30px;
    z-index: 999;
    margin-bottom: 0;
    bottom: 0;
  }
  .news-slider .news-swiper-button-prev {
    position: relative;
    z-index: 999;
    margin-left: 30px;
    margin-bottom: 0;
    bottom: 0;
  }
  .news-slider .swiper-wrapper {
    box-sizing: border-box;
  }
}

.social-links {
  padding-top: 32px;
}

.footer-link {
  display: flex;
}

.footer-link a {
  margin-bottom: 0;
  color: #6e6a66;
  text-decoration: underline;
  line-height: 32px;
}

.footer-link .plus {
  padding-right: 10px;
  color: #c2b6a6;
}

.stage {
  position: relative;
  width: 100%;
  padding-top: 45%;
  min-height: 460px;
  background-size: cover !important;
  background-position: top center !important;
}

.header-bg {
  background-color: rgba(61, 61, 60, 0.5);
  backdrop-filter: blur(4px);
}

.hide {
  top: -120px !important;
}

header {
  background: none;
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 50px;
  position: fixed;
  top: 0;
  transition: all 0.4s ease-in-out;
  z-index: 99999;
}

header a {
  color: #ebe4db;
}

header .header-left {
  width: 33%;
  display: flex;
}

header .header-left a {
  margin-right: auto;
}

header .header-left a:hover p {
  color: white;
}

header .header-left p {
  text-align: left;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

header .header-right {
  display: flex;
  width: 33%;
}

header .header-right a {
  margin-left: auto;
  margin-right: 50px;
}

header .header-right a:hover p {
  color: white;
}

header .header-right p {
  text-align: right;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

header .header-right .burger-nav {
  cursor: pointer;
  position: relative;
  width: 35px;
  height: 35px;
  z-index: 99999999999;
}

header .header-right .burger-nav .line {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: white;
  display: block;
  transition: 0.5s;
  transform-origin: center;
}

header .header-right .burger-nav .line:nth-child(1) {
  top: 8px;
}

header .header-right .burger-nav .line:nth-child(2) {
  top: 16px;
}

header .header-right .burger-nav .line:nth-child(3) {
  top: 24px;
}

header .header-right .burger-nav.checked .line:nth-child(1) {
  transform: translateY(8px) rotate(-45deg);
  background: #6e6a66;
}

header .header-right .burger-nav.checked .line:nth-child(2) {
  opacity: 0;
  background: #6e6a66;
}

header .header-right .burger-nav.checked .line:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
  background: #6e6a66;
}

header .logo {
  margin-right: auto;
  margin-left: auto;
}

header p {
  margin-bottom: 0;
}

@media only screen and (max-width: 959px) {
  header {
    padding: 20px 30px;
  }
  .header-left {
    width: 10%;
  }
  .header-right {
    width: 10%;
  }
  .logo a img {
    height: 64px;
    min-height: 64px;
    width: 100%;
  }
}

.acf-map {
  width: 100%;
  padding-top: 38.8%;
  min-height: 400px;
  margin: 0;
}

.acf-map img {
  max-width: inherit !important;
}

.cta {
  position: absolute;
  right: 0;
  bottom: -30px;
}

.cta-right {
  background-color: #ebe4db;
  height: 60px;
  color: rgba(110, 106, 102, 0.66);
  padding-top: 13px;
  border-radius: 30px 0 0 30px;
  display: flex;
  transition: color 0.3s ease;
}

.cta-right p {
  padding-right: 50px;
  margin-left: 20px;
}

.cta-right .icon {
  width: 30px;
  height: 30px;
  margin-left: 20px;
}

.cta-right:hover {
  color: #6e6a66;
}

.cta-right-white {
  background-color: white;
  height: 60px;
  position: absolute;
  right: 0;
  color: rgba(110, 106, 102, 0.66);
  padding-top: 13px;
  border-radius: 30px 0 0 30px;
  transform: translateY(-30px);
  display: flex;
  transition: color 0.3s ease;
}

.cta-right-white p {
  padding-right: 50px;
  margin-left: 20px;
}

.cta-right-white .icon {
  width: 30px;
  height: 30px;
  margin-left: 20px;
}

.cta-right-white:hover {
  color: #6e6a66;
}

.news-swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.page-template-legal {
  background-color: #ebe4db;
}

.page-template-legal .impressum h1 {
  margin-bottom: 50px;
}

.page-template-legal .impressum h2 {
  margin-top: 100px;
  margin-bottom: 45px;
}

.page-template-legal .impressum h3 {
  font-weight: 400;
}

.page-template-legal .impressum p {
  margin-bottom: 32px;
}

.page-template-legal .impressum a {
  text-decoration: underline;
  color: #6e6a66;
}

.page-template-legal .impressum table {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 32px;
  width: auto;
}

.page-template-legal .impressum table td {
  padding-right: 20px;
}

.page-template-legal header {
  background-color: #ebe4db;
}

.page-template-legal header p {
  color: #6e6a66;
}

.popup {
  visibility: hidden;
  overflow-x: hidden;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  max-height: 80vh;
  padding: 50px 140px 140px 140px;
  max-width: 1240px;
  width: calc(100% - 100px);
  transform: translate(-50%, -50%);
  background: white;
  z-index: 99999999999;
  overflow-y: scroll;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
  transition: visibility 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
}

.popup .close {
  cursor: pointer;
  width: 26px;
  height: 26px;
  margin-left: auto;
  margin-right: -90px;
  margin-bottom: 63px;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

.popup .close .line {
  top: 50%;
  position: absolute;
  left: 0;
  height: 2px;
  width: 32px;
  background: #6e6a66;
  display: block;
  transition: opacity 0.5s;
  transform-origin: center;
}

.popup .close .line:nth-child(1) {
  transform: translateX(-3px) rotate(45deg);
}

.popup .close .line:nth-child(2) {
  transform: translateX(-3px) rotate(-45deg);
}

.popup .close:hover .line {
  opacity: 0.5;
}

.popup-section {
  margin-bottom: 140px;
}

.popup-section:last-child {
  margin-bottom: 0;
}

.soft-overlay-popup {
  visibility: hidden;
  width: calc(100%);
  height: 100vh;
  left: 0;
  top: 0;
  background-color: #ebe4db;
  opacity: 0;
  position: fixed;
  z-index: 999999999;
  transition: visibility 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
}

.image-border {
  width: calc(100% - 40px);
  margin-left: 20px;
  height: 20px;
  background-color: #ebe4db;
}

.popup-text {
  max-width: 800px;
  margin: 0 auto;
}

.popup-text p:last-child {
  margin-top: 60px;
}

.popup .text-right-img-left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.popup .text-right-img-left .text {
  width: 500px;
  max-width: 500px;
  margin-left: 90px;
  padding: 60px 0;
}

.popup .text-right-img-left .text h2 {
  font-size: 44px;
  line-height: 48px;
  margin-bottom: 40px;
}

.popup .text-right-img-left .text p {
  margin-bottom: 0;
}

.popup .text-right-img-left .image {
  align-items: stretch;
  width: 470px;
  max-width: 500px;
  background-color: #ebe4db;
  margin-right: auto;
  margin-top: 20px;
  margin-left: 20px;
}

.popup .text-right-img-left .image .img {
  background-color: #6e6a66;
  height: 100%;
  margin: -20px 20px 0 -20px;
  background-position: center center;
  background-size: cover;
}

.popup .text-left-img-right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.popup .text-left-img-right .text {
  width: 500px;
  max-width: 500px;
  margin-right: 90px;
  padding: 60px 0;
  margin-bottom: 0;
}

.popup .text-left-img-right .text h2 {
  font-size: 44px;
  line-height: 48px;
  margin-bottom: 40px;
}

.popup .text-left-img-right .text p {
  margin-bottom: 0;
}

.popup .text-left-img-right .image {
  align-items: stretch;
  width: 470px;
  max-width: 500px;
  background-color: #ebe4db;
  margin-left: auto;
  margin-top: 20px;
  margin-right: 20px;
}

.popup .text-left-img-right .image .img {
  background-color: #6e6a66;
  height: 100%;
  margin: -20px -20px 0 20px;
  background-position: center center;
  background-size: cover;
}

@media only screen and (max-width: 1239px) {
  .popup {
    padding: 20px !important;
    width: calc(100% - 24px);
  }
  .popup .scroll {
    bottom: 30px;
    right: 30px;
  }
  .popup .close {
    margin-bottom: -36px;
    margin-top: 10px;
    right: 10px;
    z-index: 999999999999999;
  }
  .popup .text-left-img-right {
    padding-left: 90px;
  }
  .popup .text-right-img-left {
    padding-right: 90px;
  }
  .popup .popup-section:last-child {
    margin-bottom: 140px;
  }
}

@media only screen and (max-width: 959px) {
  .popup .image-border {
    width: calc(100% - 30px);
    margin-left: 15px;
    height: 15px;
    background-color: #ebe4db;
  }
  .popup .popup-text {
    padding: 0 20px;
  }
  .popup .text-left-img-right {
    flex-direction: column-reverse;
    padding-left: 0;
  }
  .popup .text-left-img-right .text {
    width: 100%;
    max-width: unset;
    margin-top: 100px;
    margin-left: 0;
    padding: 0;
    margin-bottom: 0;
  }
  .popup .text-left-img-right .text p {
    margin-bottom: 0;
  }
  .popup .text-left-img-right .image {
    align-items: unset;
    max-width: unset;
    width: calc(100% - 15px);
    padding-top: 150%;
    margin: 0 0 0 15px;
    position: relative;
    transform: translateY(15px);
  }
  .popup .text-left-img-right .image .img {
    width: 100%;
    position: absolute;
    top: 0;
    margin: -15px 0 0 -15px;
  }
  .popup .text-right-img-left {
    flex-direction: column;
    padding-right: 0;
  }
  .popup .text-right-img-left .text {
    width: 100%;
    max-width: unset;
    margin-top: 100px;
    margin-left: 0;
    margin-bottom: 0;
    padding: 0;
  }
  .popup .text-right-img-left .text p {
    margin-bottom: 0;
  }
  .popup .text-right-img-left .image {
    align-items: unset;
    max-width: unset;
    width: calc(100% - 15px);
    padding-top: 150%;
    margin: 0 0 0 15px;
    position: relative;
    transform: translateY(15px);
  }
  .popup .text-right-img-left .image .img {
    width: 100%;
    position: absolute;
    top: 0;
    margin: -15px 0 0 -15px;
  }
}

@media only screen and (max-width: 959px) and (max-width: 959px) {
  .popup {
    width: calc(100% - 10px);
    max-height: calc(100% - 10px);
  }
  .popup .close {
    margin-bottom: -36px;
    margin-top: 10px;
    right: 10px;
    z-index: 999999999999999;
  }
  .popup-section {
    margin-bottom: 100px;
  }
  .popup-section:last-child {
    margin-bottom: 100px;
  }
}

.kontakt-swiper .swiper-scrollbar {
  width: calc(100% - 40px);
  margin: 0 20px;
}

.swiper-scrollbar {
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: 50;
  height: 10px;
  border-radius: 5px;
  width: 100%;
  background: white;
}

.swiper-scrollbar-drag {
  background: #6e6a66;
  height: 10px;
  border: 3px white solid;
  border-radius: 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.scroll:before {
  position: absolute;
  left: 50%;
}

.scroll {
  width: 26px;
  height: 48px;
  position: absolute;
  right: 50px;
  bottom: 42px;
  box-shadow: inset 0 0 0 1px #6e6a66;
  border-radius: 25px;
}

.scroll:before {
  content: '';
  width: 4px;
  height: 4px;
  background: #6e6a66;
  margin-left: -2px;
  top: 8px;
  border-radius: 4px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}

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