@charset "UTF-8";
/*------------------------------------*\
 * Global Variables
 * 
 * 1. Colors
 *    ─ Purpose: Defines the color variables used throughout the project.
 * 
 * 2. Fonts
 *    ─ Purpose: Sets the font families, line heights, and gaps.
 * 
 * 3. Layout
 *    ─ Purpose: Sets the breakpoints for various screen sizes.
 * 
 * 4. Root Import
 *    ─ Purpose: Imports root-level custom properties.
 * 
 * 5. Spaces
 *    ─ Purpose: Sets the space variables for larger layout elements.
 * 
 * 6. Others
 *    ─ Purpose: Miscellaneous variables like transitions, borders
\*------------------------------------*/
/*------------------------------------*/
/* NOTE - Old Var styles */
/*------------------------------------*/
:root {
  --gap: 15px;
  --outer-gap: 30px;
}
@media only screen and (min-width: 520px) {
  :root {
    --outer-gap: 40px;
  }
}
@media only screen and (min-width: 768px) {
  :root {
    --gap: 20px;
    --outergap: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  :root {
    --outergap: 140px;
  }
}

:root {
  --space-extralarge: 180px;
  --space-large: 120px;
  --space-medium: 60px;
  --space-small: 30px;
  --space-extrasmall: 10px;
}
@media only screen and (max-width: 768px) {
  :root {
    --space-extralarge: 100px;
    --space-large: 75px;
    --space-medium: 50px;
    --space-small: 20px;
    --outergap: 20px;
    --space-extrasmall: 8px;
  }
}

/*------------------------------------*/
/* NOTE - Not from FIGMA */
/*------------------------------------*/
:root {
  --transition: all 300ms ease-in-out;
  --transition-fast: all 100ms ease-in-out;
  --layout-screen: var(--layout-wrapper);
  --layout-desktop: 1024px;
  --layout-tablet: 768px;
  --layout-mobile: 520px;
  --inner-margin: var(--layout-outergap);
}
@media only screen and (min-width: 1164px) {
  :root {
    --inner-margin: calc((100vw - 1100px) / 2);
  }
}

/*------------------------------------*/
/* COLLECTION - 🌟 Primitives */
/*------------------------------------*/
:root {
  /* colors */
  --color-blue-100: rgb(220, 235, 233);
  --color-blue-200: rgb(184, 215, 211);
  --color-blue-300: rgb(141, 187, 184);
  --color-blue-400: rgb(101, 156, 153);
  --color-blue-50: rgb(244, 249, 248);
  --color-blue-500: rgb(75, 129, 127);
  --color-blue-600: rgb(58, 103, 102);
  --color-blue-700: rgb(47, 79, 79);
  --color-blue-800: rgb(43, 68, 68);
  --color-blue-900: rgb(39, 58, 58);
  --color-blue-950: rgb(18, 33, 33);
  --color-dark-blue-100: rgb(205, 228, 253);
  --color-dark-blue-200: rgb(145, 190, 254);
  --color-dark-blue-300: rgb(83, 146, 253);
  --color-dark-blue-400: rgb(28, 99, 253);
  --color-dark-blue-50: rgb(235, 245, 255);
  --color-dark-blue-500: rgb(2, 60, 217);
  --color-dark-blue-600: rgb(2, 35, 156);
  --color-dark-blue-700: rgb(1, 17, 96);
  --color-dark-blue-800: rgb(1, 15, 66);
  --color-dark-blue-900: rgb(0, 8, 30);
  --color-dark-blue-950: rgb(0, 5, 15);
  --color-green-100: rgb(217, 242, 227);
  --color-green-200: rgb(182, 228, 204);
  --color-green-300: rgb(134, 207, 173);
  --color-green-400: rgb(101, 188, 150);
  --color-green-50: rgb(239, 250, 244);
  --color-green-500: rgb(49, 152, 111);
  --color-green-600: rgb(33, 122, 88);
  --color-green-700: rgb(27, 97, 72);
  --color-green-800: rgb(23, 78, 58);
  --color-green-900: rgb(20, 64, 49);
  --color-green-950: rgb(10, 36, 28);
  --color-orange-100: rgb(254, 234, 214);
  --color-orange-200: rgb(253, 210, 171);
  --color-orange-300: rgb(251, 177, 118);
  --color-orange-400: rgb(248, 132, 59);
  --color-orange-50: rgb(255, 246, 237);
  --color-orange-500: rgb(239, 111, 42);
  --color-orange-600: rgb(231, 75, 15);
  --color-orange-700: rgb(191, 55, 15);
  --color-orange-800: rgb(152, 45, 20);
  --color-orange-900: rgb(122, 39, 20);
  --color-orange-950: rgb(66, 17, 8);
  --color-taas-blue-100: rgb(200, 231, 254);
  --color-taas-blue-200: rgb(150, 208, 254);
  --color-taas-blue-300: rgb(94, 184, 253);
  --color-taas-blue-400: rgb(43, 162, 252);
  --color-taas-blue-50: rgb(230, 244, 255);
  --color-taas-blue-500: rgb(3, 135, 237);
  --color-taas-blue-600: rgb(1, 107, 186);
  --color-taas-blue-700: rgb(2, 75, 131);
  --color-taas-blue-800: rgb(1, 45, 78);
  --color-taas-blue-900: rgb(1, 24, 40);
  --color-taas-blue-950: rgb(0, 12, 20);
  /* numbers */
  --space-100: 2px;
  --space-200: 4px;
  --space-300: 8px;
  --space-400: 12px;
  --space-500: 16px;
  --space-600: 20px;
  --space-700: 32px;
  --space-800: 44px;
  --space-900: 64px;
}

/*------------------------------------*/
/* COLLECTION - 🔗 Aliases */
/*------------------------------------*/
:root {
  /* colors */
  --theme-accent-accent: var(--color-orange-500);
  --theme-accent-accent-dark: var(--color-orange-600);
  --theme-accent-accent-darker: var(--color-orange-800);
  --theme-accent-accent-light: var(--color-orange-400);
  --theme-accent-accent-lighter: var(--color-orange-200);
  --theme-accent-accent-lightest: var(--color-orange-50);
  --theme-error-error: var(--tailwind-rose-600);
  --theme-error-error-dark: var(--tailwind-rose-700);
  --theme-error-error-darker: var(--tailwind-rose-800);
  --theme-error-error-light: var(--tailwind-rose-400);
  --theme-error-error-lighter: var(--tailwind-rose-200);
  --theme-error-error-lightest: var(--tailwind-rose-50);
  --theme-neutral-black: var(--tailwind-black);
  --theme-neutral-neutral: var(--tailwind-zinc-400);
  --theme-neutral-neutral-dark: var(--tailwind-zinc-600);
  --theme-neutral-neutral-darker: var(--tailwind-zinc-800);
  --theme-neutral-neutral-darkest: var(--tailwind-zinc-950);
  --theme-neutral-neutral-light: var(--tailwind-zinc-300);
  --theme-neutral-neutral-lighter: var(--tailwind-zinc-100);
  --theme-neutral-neutral-lightest: var(--tailwind-zinc-50);
  --theme-neutral-white: var(--tailwind-white);
  --theme-notice-notice: var(--tailwind-sky-500);
  --theme-notice-notice-dark: var(--tailwind-sky-600);
  --theme-notice-notice-darker: var(--tailwind-sky-700);
  --theme-notice-notice-light: var(--tailwind-sky-400);
  --theme-notice-notice-lighter: var(--tailwind-sky-200);
  --theme-notice-notice-lightest: var(--tailwind-sky-50);
  --theme-primary-primary: var(--color-taas-blue-700);
  --theme-primary-primary-dark: var(--color-taas-blue-800);
  --theme-primary-primary-darker: var(--color-taas-blue-900);
  --theme-primary-primary-light: var(--color-taas-blue-600);
  --theme-primary-primary-lighter: var(--color-taas-blue-500);
  --theme-primary-primary-lightest: var(--color-taas-blue-50);
  --theme-secondary-secondary: var(--tailwind-blue-500);
  --theme-secondary-secondary-dark: var(--tailwind-blue-600);
  --theme-secondary-secondary-darker: var(--tailwind-blue-700);
  --theme-secondary-secondary-light: var(--tailwind-blue-400);
  --theme-secondary-secondary-lighter: var(--tailwind-blue-300);
  --theme-secondary-secondary-lightest: var(--tailwind-blue-50);
  --theme-success-success: var(--tailwind-green-500);
  --theme-success-success-dark: var(--tailwind-green-600);
  --theme-success-success-darker: var(--tailwind-green-700);
  --theme-success-success-light: var(--tailwind-green-400);
  --theme-success-success-lighter: var(--tailwind-green-200);
  --theme-success-success-lightest: var(--tailwind-green-50);
  --theme-warning-warning: var(--tailwind-orange-500);
  --theme-warning-warning-dark: var(--tailwind-orange-600);
  --theme-warning-warning-darker: var(--tailwind-orange-700);
  --theme-warning-warning-light: var(--tailwind-orange-400);
  --theme-warning-warning-lighter: var(--tailwind-orange-200);
  --theme-warning-warning-lightest: var(--tailwind-orange-50);
  /* numbers */
  --radius-2xs: var(--space-100);
  --radius-xs: var(--space-200);
  --radius-sm: var(--space-300);
  --radius-md: var(--space-400);
  --radius-lg: var(--space-500);
  --radius-xl: var(--space-600);
  --radius-2xl: var(--space-700);
  --radius-3xl: var(--space-800);
  --radius-4xl: var(--space-900);
  --space-2xs: var(--space-100);
  --space-xs: var(--space-200);
  --space-sm: var(--space-300);
  --space-md: var(--space-400);
  --space-lg: var(--space-500);
  --space-xl: var(--space-600);
  --space-2xl: var(--space-700);
  --space-3xl: var(--space-800);
  --space-4xl: var(--space-900);
}

/*------------------------------------*/
/* COLLECTION - 🗺️ Responsive Tokens */
/*------------------------------------*/
:root {
  /* numbers */
  --box-padding-small: var(--space-lg);
  --box-padding-medium: var(--space-xl);
  --box-padding-large: var(--space-3xl);
  --components-abstand-extrasmall: 16px;
  --components-abstand-small: 32px;
  --components-abstand-medium: 64px;
  --components-abstand-large: 96px;
  --components-abstand-extralarge: 148px;
  --components-button-padding-y: var(--space-xl);
  --components-button-padding-x: var(--space-3xl);
  --components-input-radius: var(--radius-small);
  --components-input-font-size: 16px;
  --components-input-padding-y: 16px;
  --components-input-padding-x: 18px;
  --font-family-body: "Montserrat";
  --font-family-headings: "Montserrat";
  --font-default-lineheight: 1.5;
  --font-body-lineheight: 1.3;
  --font-default-linegap: 20px;
  --font-line-height-2xs: 16.5px;
  --font-line-height-xs: 19.5px;
  --font-line-height-sm: 22.5px;
  --font-line-height-md: 25.5px;
  --font-line-height-lg: 27px;
  --font-line-height-xl: 31.5px;
  --font-line-height-2xl: 39px;
  --font-line-height-3xl: 47.599998474121094px;
  --font-linegap-subline-h1: var(--space-xs);
  --font-linegap-subline-h2: var(--space-xs);
  --font-size-2xs: 11px;
  --font-size-xs: 13px;
  --font-size-sm: 15px;
  --font-size-md: 17px;
  --font-size-lg: 18px;
  --font-size-xl: 21px;
  --font-size-2xl: 26px;
  --font-size-3xl: 34px;
  --font-weight-regular: 500;
  --font-weight-bold: 600;
  --layout-wrapper: 1120px;
  --layout-grid-columns: 4px;
  --layout-grid-gutter: var(--space-xl);
  --layout-outergap: var(--space-xl);
  --layout-native-ui-height-bottom: 52px;
  --layout-native-ui-height-top: 137px;
  --layout-window-width: 390px;
  --layout-window-height: 844px;
  --radius-small: var(--radius-xs);
  --radius-medium: var(--radius-md);
  --radius-large: var(--radius-lg);
  --radius-rounded: 1000px;
  /* desktop */
}
@media only screen and (min-width: 768px) {
  :root {
    /* numbers */
    --box-padding-small: var(--space-xl);
    --box-padding-medium: var(--space-2xl);
    --box-padding-large: var(--space-4xl);
    --components-abstand-extrasmall: 20px;
    --components-abstand-medium: 80px;
    --components-abstand-small: 80px;
    --components-abstand-large: 160px;
    --components-abstand-extralarge: 200px;
    --components-button-padding-y: var(--space-xl);
    --components-button-padding-x: var(--space-4xl);
    --components-input-radius: var(--radius-small);
    --components-input-font-size: 16px;
    --components-input-padding-y: 18px;
    --components-input-padding-x: 20px;
    --font-family-body: "Montserrat";
    --font-family-headings: "Montserrat";
    --font-default-lineheight: 1.3;
    --font-body-lineheight: 1.3333;
    --font-default-linegap: 20px;
    --font-line-height-2xs: 18px;
    --font-line-height-xs: 21px;
    --font-line-height-sm: 24px;
    --font-line-height-md: 27px;
    --font-line-height-lg: 30px;
    --font-line-height-xl: 36px;
    --font-line-height-2xl: 48px;
    --font-line-height-3xl: 60px;
    --font-linegap-subline-h1: var(--space-xs);
    --font-linegap-subline-h2: var(--space-xs);
    --font-size-2xs: 12px;
    --font-size-xs: 14px;
    --font-size-sm: 16px;
    --font-size-md: 18px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 40px;
    --font-weight-regular: 500;
    --font-weight-bold: 600;
    --layout-wrapper: 1120px;
    --layout-grid-columns: 12px;
    --layout-grid-gutter: var(--space-xl);
    --layout-outergap: var(--space-2xl);
    --layout-native-ui-height-bottom: 0px;
    --layout-native-ui-height-top: 136px;
    --layout-window-height: 982px;
    --layout-window-width: 1512px;
    --radius-small: var(--radius-xs);
    --radius-medium: var(--radius-md);
    --radius-large: var(--radius-lg);
    --radius-rounded: 1000px;
  }
}

/*------------------------------------*/
/* COLLECTION - 🗺️ Theme Tokens */
/*------------------------------------*/
:root {
  /* colors */
  --divider: var(--theme-neutral-neutral-lighter);
  --divider-on-dark: var(--theme-primary-primary);
  --border-accent: var(--theme-accent-accent);
  --border-box: var(--theme-neutral-neutral-lightest);
  --border-error: var(--theme-error-error-lighter);
  --border-input: var(--theme-neutral-neutral-lighter);
  --border-input-error: var(--theme-error-error);
  --border-input-focus: var(--theme-accent-accent);
  --border-input-hover: var(--theme-accent-accent-lighter);
  --border-notice: var(--theme-notice-notice-lighter);
  --border-selector: var(--theme-neutral-neutral);
  --border-selector-active: var(--theme-accent-accent);
  --border-selector-hover: var(--theme-accent-accent);
  --border-selector-press: var(--theme-accent-accent);
  --border-success: var(--theme-success-success-lighter);
  --border-warning: var(--theme-warning-warning-lighter);
  --button-accent-action: var(--theme-accent-accent-darker);
  --button-accent-default: var(--theme-accent-accent);
  --button-accent-disabled: var(--theme-accent-accent-lighter);
  --button-accent-focus: var(--theme-accent-accent-dark);
  --button-accent-hover: var(--theme-accent-accent-dark);
  --button-neutral-action: var(--theme-neutral-neutral-lighter);
  --button-neutral-default: var(--theme-neutral-white);
  --button-neutral-disabled: var(--theme-neutral-neutral);
  --button-neutral-focus: var(--theme-neutral-neutral-lightest);
  --button-neutral-hover: var(--theme-neutral-neutral-lightest);
  --button-primary-action: var(--theme-primary-primary-darker);
  --button-primary-default: var(--theme-primary-primary);
  --button-primary-disabled: var(--theme-primary-primary-lightest);
  --button-primary-focus: var(--theme-primary-primary-dark);
  --button-primary-hover: var(--theme-primary-primary-dark);
  --icon-accent: var(--theme-accent-accent);
  --icon-error: var(--theme-error-error);
  --icon-neutral: var(--text-headings);
  --icon-neutral-on-dark: var(--text-headings-on-dark);
  --icon-neutral-on-disabled: var(--text-on-disabled);
  --icon-notice: var(--theme-notice-notice);
  --icon-primary: var(--theme-primary-primary);
  --icon-secondary: var(--theme-secondary-secondary);
  --icon-success: var(--theme-success-success);
  --icon-warning: var(--theme-warning-warning);
  --surface-accent: var(--theme-accent-accent-lightest);
  --surface-action: var(--theme-accent-accent);
  --surface-action-hover: var(--theme-accent-accent-dark);
  --surface-box: var(--theme-neutral-neutral-lighter);
  --surface-dark: var(--theme-primary-primary-dark);
  --surface-disabled: var(--theme-neutral-neutral);
  --surface-error: var(--theme-error-error-lightest);
  --surface-input: var(--theme-neutral-neutral-lightest);
  --surface-input-hover: var(--theme-accent-accent-lightest);
  --surface-modal: var(--theme-neutral-neutral-lightest);
  --surface-notice: var(--theme-notice-notice-lightest);
  --surface-page: var(--theme-neutral-white);
  --surface-primary: var(--theme-primary-primary);
  --surface-secondary: var(--theme-secondary-secondary);
  --surface-selector: var(--theme-neutral-white);
  --surface-selector-active: var(--theme-accent-accent);
  --surface-selector-hover: var(--theme-accent-accent-lightest);
  --surface-selector-press: var(--theme-accent-accent-lighter);
  --surface-success: var(--theme-success-success-lightest);
  --surface-warning: var(--theme-warning-warning-lightest);
  --text-action: var(--theme-accent-accent);
  --text-action-hover: var(--theme-accent-accent-dark);
  --text-action-press: var(--theme-accent-accent-darker);
  --text-body: var(--theme-neutral-neutral-dark);
  --text-body-on-dark: var(--theme-neutral-neutral-light);
  --text-disabled: var(--theme-neutral-neutral-light);
  --text-error: var(--theme-error-error);
  --text-headings: var(--theme-neutral-black);
  --text-headings-on-dark: var(--theme-neutral-white);
  --text-highlight: var(--theme-accent-accent);
  --text-highlight-on-dark: var(--theme-accent-accent-light);
  --text-notice: var(--theme-notice-notice);
  --text-on-action: var(--theme-neutral-white);
  --text-on-disabled: var(--theme-neutral-neutral-dark);
  --text-placeholder: var(--theme-neutral-neutral);
  --text-success: var(--theme-success-success);
  --text-warning: var(--theme-warning-warning);
}

/*------------------------------------*\
 * SASS Mixins and Utilities
 * 
 * Mixins:
 * ───────────
 * 
 * 1. fluid-type
 *    ─ Purpose: Dynamically adjust the font size based on the viewport width (min and max)
 * 
 * 2. pseudo
 *    ─ Purpose: Default properties for pseudo-elements ::before and ::after and display them.
 * 
 * 3. flex
 *    ─ Purpose: Flexbox configurator sets basic styling for flexbox containers and centers the content.
 * 
 * 4. pos
 *    ─ Purpose: Shortcode for absolute positioning of items and centering elements or images.
 * 
 * 5. hide-scrollbar
 *    ─ Purpose: Cross-browser properties to hide the scrollbar.
 * 
 * 6. background-image
 *    ─ Purpose: Center background images.
 * 
 * 7. bp-higher
 *    ─ Purpose: Breakpoint for min-width device width / mobile first.
 * 
 * 8. bp-lower
 *    ─ Purpose: Breakpoint for max-width device width.
\*------------------------------------*/
/*------------------------------------*\
  @mixin fluid-type
  Dynamically adjusts the font size based on the viewport width (min and max).

  @param {Number} $min-font-size - Minimum font size (default: 12px)
  @param {Number} $max-font-size - Maximum font size (default: 21px)
  @param {Number} $lower-range - Lower boundary for the viewport width (default: $mobile) 
  @param {Number} $upper-range - Upper boundary for the viewport width  (default: $screen) 
  @example
  @include fluid-type(14px, 18px, 400px, 1200px);
\*------------------------------------*/
/*------------------------------------*\
  @mixin pseudo
  Adds inner styles to an element.

  @param none

  @example
  @include inner;
\*------------------------------------*/
/*------------------------------------*\
  @mixin pseudo
  Provides default properties for pseudo-elements ::before and ::after.

  @param {String} $display - Display type (default: block)
  @param {String} $pos - Position (default: absolute)
  @param {String} $content - Content (default: empty)
  @example
  @include pseudo(block, absolute, 'content');
\*------------------------------------*/
/*------------------------------------*\
  @mixin flex
  Configures basic styling for flexbox containers.

  @param {String} $variant - Flexbox direction and alignment (default: empty)
  @param {Number} $gap - Gap between flexbox items (default: 0px)
  @example
  @include flex('row', 10px);
\*------------------------------------*/
/*------------------------------------*\
  @mixin pos
  Provides absolute positioning of items.

  @param {String} $variant - Special positioning variants like 'center' or 'cover'
  @example
  @include pos('center');
\*------------------------------------*/
/*------------------------------------*\
  @mixin hide-scrollbar
  Hides the scrollbar across browsers.

  @param none

  @example
  @include hide-scrollbar;
\*------------------------------------*/
/*------------------------------------*\
  @mixin background-image
  Centers background images.

  @param {String} $image - Background image URL
  @example
  @include background-image(url('path/to/image.jpg'));
\*------------------------------------*/
/*------------------------------------*\
  @mixin bp-higher
  Breakpoint for min-width device width (mobile first).

  @param {Number} $variable - Breakpoint value
  @example
  @include bp-higher(768px) { ... }
\*------------------------------------*/
/*------------------------------------*\
  @mixin bp-lower
  Breakpoint for max-width device width.

  @param {Number} $variable - Breakpoint value
  @example
  @include bp-lower(768px) { ... }
\*------------------------------------*/
/*------------------------------------*/
/* SECTION - NEW */
/*------------------------------------*/
/*------------------------------------*/
/* SECTION - Editor */
/*------------------------------------*/
/*------------------------------------*/
/* Styling for navigation hamburger  */
/*------------------------------------*/
.hamburger {
  width: fit-content;
  padding: 0px;
  display: inline-block;
  cursor: pointer;
  outline: none;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  cursor: pointer;
  float: right;
  margin-right: 0px;
  margin-top: 0px;
  min-width: unset;
}
.hamburger:hover {
  background-color: transparent;
}

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

.hamburger-box {
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
}

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

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 16px;
  height: 1px;
  background-color: #000;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

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

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

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

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

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

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

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

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

/**
 * Print Stylesheet fuer Deinewebsite.de
* @version         1.0
* @lastmodified    16.06.2016
*/
@media print {
  /* Inhaltsbreite setzen, Floats und Margins aufheben */
  /* Achtung: Die Klassen und IDs variieren von Theme zu Theme. Hier also eigene Klassen setzen */
  #content, #page {
    width: 100%;
    margin: 0;
    float: none;
  }
  /** Seitenränder einstellen */
  @page {
    margin: 2cm;
  }
  /* Font auf 16px/13pt setzen, Background auf Weiß und Schrift auf Schwarz setzen.*/
  /* Das spart Tinte */
  body {
    font: 13pt Georgia, "Times New Roman", Times, serif;
    line-height: 1.3;
    background: #fff !important;
    color: #000;
  }
  h1 {
    font-size: 24pt;
  }
  h2, h3, h4 {
    font-size: 14pt;
    margin-top: 25px;
  }
  /* Alle Seitenumbrüche definieren */
  a {
    page-break-inside: avoid;
  }
  blockquote {
    page-break-inside: avoid;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  img {
    page-break-inside: avoid;
    page-break-after: avoid;
  }
  table, pre {
    page-break-inside: avoid;
  }
  ul, ol, dl {
    page-break-before: avoid;
  }
  /* Linkfarbe und Linkverhalten darstellen */
  a:link, a:visited, a {
    background: transparent;
    color: #520;
    font-weight: bold;
    text-decoration: underline;
    text-align: left;
  }
  a {
    page-break-inside: avoid;
  }
  a[href^=http]:after {
    content: " <" attr(href) "> ";
  }
  a:after > img {
    content: "";
  }
  article a[href^="#"]:after {
    content: "";
  }
  a:not(:local-link):after {
    content: " <" attr(href) "> ";
  }
  /**
   * Eingebundene Videos verschwinden lassen und den Whitespace der iframes auf null reduzieren.
   */
  .entry iframe, ins {
    display: none;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    line-height: 0pt !important;
    white-space: nowrap;
  }
  .embed-youtube, .embed-responsive {
    position: absolute;
    height: 0;
    overflow: hidden;
  }
  /* Unnötige Elemente ausblenden für den Druck */
  #header-widgets, nav, aside.mashsb-container,
  .sidebar, .mashshare-top, .mashshare-bottom,
  .content-ads, .make-comment, .author-bio,
  .heading, .related-posts, #decomments-form-add-comment,
  #breadcrumbs, #footer, .post-byline, .meta-single,
  .site-title img, .post-tags, .readability {
    display: none;
  }
  /* Benutzerdefinierte Nachrichten vor und nach dem Inhalt einfügen */
  .entry:after {
    content: " Alle Rechte vorbehalten. (c) 2014 - 2016 TechBrain - techbrain.de";
    color: #999 !important;
    font-size: 1em;
    padding-top: 30px;
  }
  #header:before {
    content: " Vielen herzlichen Dank für das Ausdrucken unseres Artikels. Wir hoffen, dass auch andere Artikel von uns Ihr Interesse wecken können.";
    color: #777 !important;
    font-size: 1em;
    padding-top: 30px;
    text-align: center !important;
  }
  /* Wichtige Elemente definieren */
  p, address, li, dt, dd, blockquote {
    font-size: 100%;
  }
  /* Zeichensatz fuer Code Beispiele */
  code, pre {
    font-family: "Courier New", Courier, mono;
  }
  ul, ol {
    list-style: square;
    margin-left: 18pt;
    margin-bottom: 20pt;
  }
  li {
    line-height: 1.6em;
  }
}
/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 0px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/*------------------------------------*\
    FONTS.SCSS
    Font Smoothing and Custom Fonts
\*------------------------------------*/
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

@-moz-document url-prefix() {
  body {
    font-weight: lighter !important;
  }
}
@font-face {
  font-family: "MINI Serif";
  src: url("../fonts/MINISerif-Black.woff2") format("woff2"), url("../fonts/MINISerif-Black.woff") format("woff"), url("../fonts/MINISerif-Black.ttf") format("truetype"), url("../fonts/MINISerif-Black.svg#MINISerif-Black") format("svg");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "MINI Serif";
  src: url("../fonts/MINISerif-Regular.woff2") format("woff2"), url("../fonts/MINISerif-Regular.woff") format("woff"), url("../fonts/MINISerif-Regular.ttf") format("truetype"), url("../fonts/MINISerif-Regular.svg#MINISerif-Regular") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "MINI Sans";
  src: url("../fonts/MINISans-Medium.woff2") format("woff2"), url("../fonts/MINISans-Medium.woff") format("woff"), url("../fonts/MINISans-Medium.ttf") format("truetype"), url("../fonts/MINISans-Medium.svg#MINISans-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "MINI Sans";
  src: url("../fonts/MINISans-Black.woff2") format("woff2"), url("../fonts/MINISans-Black.woff") format("woff"), url("../fonts/MINISans-Black.ttf") format("truetype"), url("../fonts/MINISans-Black.svg#Relevant-Black") format("svg");
  font-weight: 900;
  font-style: normal;
}
/*------------------------------------*\
	TYPOGRAPHY.scss

	Basic stylings for text elements.

	1. Text (body, p)
	   ─ Purpose: Styles for HTML paragraphs, including padding and margin.

	2. Headings (h1-h6)
	   ─ Note: Utilizes the fluid-type mixin for responsive font sizes.

	3. Links (a)
	   ─ Purpose: Styles for HTML links, including hover and focus states.

	4. Lists (ul)
	   ─ Purpose: Styles for HTML lists, including padding and margin.
\*------------------------------------*/
/*------------------------------------*/
/* SECTION - Text */
/*------------------------------------*/
body {
  font-family: "MINI Sans";
  font-size: calc(16px + 0 * (100vw - 520px) / 580);
  color: #000;
  hyphens: auto;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 520px) {
  body {
    font-size: 16px;
  }
}
@media screen and (min-width: 1100px) {
  body {
    font-size: 16px;
  }
}

p {
  font-family: "MINI Sans";
  font-size: calc(16px + 0 * (100vw - 520px) / 580);
  color: #000;
  hyphens: auto;
  font-weight: 500;
  line-height: 1.8;
  padding: var(--font-default-linegap) 0 0;
  margin: 0px;
  line-height: var(--font-body-lineheight);
}
@media screen and (max-width: 520px) {
  p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1100px) {
  p {
    font-size: 16px;
  }
}

/*------------------------------------*/
/* SECTION - Headings */
/*------------------------------------*/
h1,
.h1,
.--show-as-h1 {
  margin: 0px;
  color: #000;
  font-family: "MINI Serif";
  font-size: calc(30px + 44 * (100vw - 520px) / 580);
  line-height: 100%;
  text-transform: uppercase;
}
@media screen and (max-width: 520px) {
  h1,
  .h1,
  .--show-as-h1 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1100px) {
  h1,
  .h1,
  .--show-as-h1 {
    font-size: 74px;
  }
}

h2,
.h2,
.--show-as-h2 {
  margin: 0px;
  color: #000;
  font-family: "MINI Serif";
  font-size: calc(22px + 10 * (100vw - 520px) / 580);
  font-weight: 400;
  text-transform: uppercase;
}
@media screen and (max-width: 520px) {
  h2,
  .h2,
  .--show-as-h2 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1100px) {
  h2,
  .h2,
  .--show-as-h2 {
    font-size: 32px;
  }
}

h3,
.h3,
.--show-as-h3 {
  margin: 0px;
  color: #000;
  font-family: "MINI Serif";
  font-size: calc(22px + 0 * (100vw - 520px) / 580);
  line-height: 110%;
  font-weight: 400;
  text-transform: uppercase;
}
@media screen and (max-width: 520px) {
  h3,
  .h3,
  .--show-as-h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1100px) {
  h3,
  .h3,
  .--show-as-h3 {
    font-size: 22px;
  }
}

h4,
.h4,
.--show-as-h4 {
  margin: 0px;
  color: #000;
  font-family: "MINI Serif";
  font-size: calc(18px + 4 * (100vw - 520px) / 580);
  text-transform: uppercase;
  line-height: 100%;
  font-weight: 600;
}
@media screen and (max-width: 520px) {
  h4,
  .h4,
  .--show-as-h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1100px) {
  h4,
  .h4,
  .--show-as-h4 {
    font-size: 22px;
  }
}

h5,
.h5,
.--show-as-h5 {
  margin: 0px;
  color: #000;
  font-family: "MINI Serif";
  font-size: calc(17px + 3 * (100vw - 520px) / 580);
}
@media screen and (max-width: 520px) {
  h5,
  .h5,
  .--show-as-h5 {
    font-size: 17px;
  }
}
@media screen and (min-width: 1100px) {
  h5,
  .h5,
  .--show-as-h5 {
    font-size: 20px;
  }
}

h6,
.h6,
.--show-as-h6 {
  margin: 0px;
  color: #000;
  font-family: "MINI Serif";
  font-size: calc(14px + 0 * (100vw - 520px) / 580);
  line-height: 125%;
  font-family: "MINI Sans";
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  h6,
  .h6,
  .--show-as-h6 {
    font-size: 14px;
  }
}
@media screen and (min-width: 1100px) {
  h6,
  .h6,
  .--show-as-h6 {
    font-size: 14px;
  }
}

/*------------------------------------*/
/* SECTION - Links */
/*------------------------------------*/
a {
  color: #000;
  text-decoration: none;
  text-underline-position: under;
}
a:focus, a:hover, a:active {
  outline: 0;
}

/*------------------------------------*/
/* SECTION - Hyphens */
/*------------------------------------*/
@media (max-width: 768px) {
  h1,
  .h1,
  .--show-as-h1,
  h2,
  .h2,
  .--show-as-h2,
  h3,
  .h3,
  .--show-as-h3,
  h4,
  .h4,
  .--show-as-h4,
  h5,
  .h5,
  .--show-as-h5,
  h6,
  .h6,
  .--show-as-h6,
  p,
  a,
  b,
  span {
    hyphens: auto;
  }
}
/*------------------------------------*/
/* SECTION - Lists */
/*------------------------------------*/
/*------------------------------------*/
/* SECTION - Text styles */
/*------------------------------------*/
.text-highlighted {
  position: relative;
  padding-bottom: 10px;
}
.text-highlighted::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #000000;
  height: 2px;
  width: 60px;
  left: 0;
  bottom: -1px;
}

/*------------------------------------*\
    GLOBALS.SCSS
    Stylings for the whole page and utility and extra classes
\*------------------------------------*/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
}
html.navOpen {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* Padding For Sales-Bar */
.site {
  position: relative;
}

/* clear */
.clear:before,
.clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  *zoom: 1;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input:focus {
  outline: 0;
}

.text-left,
.alignleft,
.has-text-align-left {
  text-align: left !important;
}

.text-center,
.aligncenter,
.has-text-align-center {
  text-align: center !important;
}

.text-right,
.alignright,
.has-text-align-right {
  text-align: right !important;
}

.blocksatz {
  text-align: justify !important;
}

hr {
  margin: 40px 0;
  border-color: #f1f1f1;
}

/*------------------------------------*\
    Formatting
\*------------------------------------*/
.wp-block-image {
  padding-top: 10px;
}

/*------------------------------------*\
   BMWTypeWeb === normal and bold 
\*------------------------------------*/
.bold-text {
  font-family: "BMWTypeWeb Bold", Arial, sans-serif;
  font-weight: bold;
}

.light-text {
  font-family: "BMW Type Web Light All", Arial, sans-serif;
  font-weight: normal;
}

/*------------------------------------*\
    Button Secondary ? Gray
\*------------------------------------*/
.button.gray {
  background-color: #525252;
  color: #ffffff;
}
.button.gray:hover {
  background-color: #4d4d4d;
}

button.space_top {
  margin-top: 25px;
}

/*------------------------------------*\
    P > Button Wrapper
\*------------------------------------*/
p.buttons {
  padding-top: 30px;
}

.buttons.two-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 30px;
}

/*------------------------------------*\
    Spaces
\*------------------------------------*/
.space {
  margin-bottom: var(--space-medium);
}
.space-extrasmall {
  margin-bottom: var(--space-extrasmall);
}
.space-small {
  margin-bottom: var(--space-small);
}
.space-medium {
  margin-bottom: var(--space-medium);
}
.space-large {
  margin-bottom: var(--space-large);
}
.space-extralarge {
  margin-bottom: var(--space-extralarge);
}

/*------------------------------------*\
    Grid elements
\*------------------------------------*/
.allcont {
  padding: 0px;
  display: block;
}

.inner,
.wp-block-group {
  width: calc(100% - 2 * var(--outergap));
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1101px) {
  .inner,
  .wp-block-group {
    max-width: 1786px;
  }
}

.wp-block-group .inner.resetInner,
.wp-block-group .wp-block-group {
  width: 100%;
}

.gridrow,
.wp-block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  column-gap: var(--gap);
  flex-wrap: wrap;
  width: 100%;
  margin: 0px auto;
  row-gap: var(--gap);
}
.gridrow > .col,
.gridrow .wp-block-column,
.wp-block-columns > .col,
.wp-block-columns .wp-block-column {
  width: 100%;
}

.wp-block-columns {
  row-gap: var(--space-medium);
}

/* reverseCol */
.reverseCol {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* align col */
.align-center,
.are-vertically-aligned-center {
  align-items: center;
}

.is-vertically-aligned-center {
  align-self: center;
}

.wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start;
}

.is-vertically-aligned-top {
  align-self: flex-start;
}

.are-vertically-aligned-bottom {
  align-items: flex-end;
}

.is-vertically-aligned-bottom {
  align-self: flex-end;
}

@media all and (max-width: 768px) {
  /* reverseCol */
  .reverseCol .col + .col,
  .reverseCol .wp-block-column + .wp-block-column {
    margin-top: 10px;
  }
}
.grayback {
  width: 100%;
  padding: 16px;
  background-color: #f1f1f1;
}
.grayback + .grayback {
  margin-top: var(--space-extrasmall);
}

.blackback {
  padding: 40px var(--outergap) 40px var(--outergap);
  background-color: #000000;
  width: 100%;
  max-width: unset;
}
.blackback h1,
.blackback h2,
.blackback h3,
.blackback h4,
.blackback h5,
.blackback h6,
.blackback p,
.blackback a {
  color: #ffffff;
}
.blackback .button {
  background-color: #ffffff;
  text-align: #000000;
}
.blackback .text-highlighted::after {
  background-color: #ffffff;
}
.blackback h2 {
  font-weight: 900;
}

/*------------------------------------*\
    List checkmark style
\*------------------------------------*/
ul.checkmark, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul, .singleLocation .col ul {
  padding-left: 20px;
}
ul.checkmark li, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul li, .singleLocation .col ul li {
  padding: 0;
  position: relative;
}
ul.checkmark li::marker, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul li::marker, .singleLocation .col ul li::marker {
  content: "";
}
ul.checkmark li::before, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul li::before, .singleLocation .col ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: -20px;
  top: calc(50% - 5.5px);
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4 7L10 1' stroke='black'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
}

/*------------------------------------*\
    Call-To-Action's
\*------------------------------------*/
p.cta-grp {
  padding-top: 5px;
  width: 100%;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

a.button,
button,
input[type=submit] {
  display: inline-block;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
  outline: none;
  border: none;
  transition: all 250ms ease-in-out;
  font-family: "MINI Sans";
  min-width: 240px;
  color: #ffffff;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 1000px;
  line-height: 100%;
  padding: 16px 24px;
  font-size: 16px;
  background-color: #000;
  color: #ffffff;
}
a.button::before,
button::before,
input[type=submit]::before {
  display: block;
  content: "";
  margin-top: -0.1875rem;
}
a.button::after,
button::after,
input[type=submit]::after {
  display: block;
  content: "";
  margin-bottom: -0.125rem;
  top: -0.125rem;
}
a.button.back,
button.back,
input[type=submit].back {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='16' viewBox='0 0 10 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 15L1.5 8L8.5 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-size: 7px 14px;
  background-repeat: no-repeat;
  background-position: 20px center;
}
a.button.--color-main,
button.--color-main,
input[type=submit].--color-main {
  background-color: #000;
  color: #ffffff;
}
a.button.--color-main:hover,
button.--color-main:hover,
input[type=submit].--color-main:hover {
  background-color: #525252;
}
a.button.--color-second,
button.--color-second,
input[type=submit].--color-second {
  background-color: #525252;
  color: #ffffff;
}
a.button.--color-second:hover,
button.--color-second:hover,
input[type=submit].--color-second:hover {
  background-color: #4d4d4d;
}
a.button.--color-white,
button.--color-white,
input[type=submit].--color-white {
  background-color: #ffffff;
  color: #000;
}
a.button.--color-white:hover,
button.--color-white:hover,
input[type=submit].--color-white:hover {
  background-color: #f1f1f1;
}
a.button.--size-regular,
button.--size-regular,
input[type=submit].--size-regular {
  font-size: calc(15px + 1 * (100vw - 520px) / 580);
}
@media screen and (max-width: 520px) {
  a.button.--size-regular,
  button.--size-regular,
  input[type=submit].--size-regular {
    font-size: 15px;
  }
}
@media screen and (min-width: 1100px) {
  a.button.--size-regular,
  button.--size-regular,
  input[type=submit].--size-regular {
    font-size: 16px;
  }
}
a.button.--size-small,
button.--size-small,
input[type=submit].--size-small {
  padding: 13.5px 15px;
  font-size: calc(15px + 0 * (100vw - 520px) / 580);
}
@media screen and (max-width: 520px) {
  a.button.--size-small,
  button.--size-small,
  input[type=submit].--size-small {
    font-size: 15px;
  }
}
@media screen and (min-width: 1100px) {
  a.button.--size-small,
  button.--size-small,
  input[type=submit].--size-small {
    font-size: 15px;
  }
}
@media (max-width: 520px) {
  a.button,
  button,
  input[type=submit] {
    padding: 13.5px 15px;
    width: 100%;
  }
  a.button.--size-regular,
  button.--size-regular,
  input[type=submit].--size-regular {
    padding: 13.5px 15px;
  }
  a.button.--size-small,
  button.--size-small,
  input[type=submit].--size-small {
    padding: 13.5px 15px;
  }
}

a.button-link {
  position: relative;
  display: inline-block;
  color: #000;
  text-transform: uppercase;
  font-size: calc(15px + 1 * (100vw - 520px) / 580);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.3;
  padding-right: 20px;
}
@media screen and (max-width: 520px) {
  a.button-link {
    font-size: 15px;
  }
}
@media screen and (min-width: 1100px) {
  a.button-link {
    font-size: 16px;
  }
}
a.button-link:hover {
  color: #e6001d;
}
a.button-link:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-285 417 9 13'%3E%3Cpath fill='%23666' d='M-283.4 430l-1.6-1.6 5.8-4.9-5.8-4.9 1.6-1.6 7.4 6.5-7.4 6.5z'/%3E%3C/svg%3E");
}
a.button-link:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.556' height='10' viewBox='0 0 6.556 10'%3E%3Cpath id='Pfad_1' data-name='Pfad 1' d='M291.108,1304.081a1.1,1.1,0,0,1-.778-1.878l3.122-3.122-3.122-3.122a1.1,1.1,0,0,1,1.555-1.555l4.678,4.678-4.678,4.678A1.1,1.1,0,0,1,291.108,1304.081Z' transform='translate(-290.008 -1294.081)' fill='%231c69d4'/%3E%3C/svg%3E%0A");
}

.link {
  display: block;
  padding: 17.5px 20px;
  border-top: 1px solid #f1f1f1;
}
@media (min-width: 1025px) {
  .link {
    max-width: 25%;
  }
}
.link > span {
  background-size: 5px 10px;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L1 11' stroke='%231C69D4' stroke-width='2'/%3E%3C/svg%3E%0A");
  padding-left: 15px;
  color: #000;
  font-weight: 700;
  font-size: 15px;
}
.link > span.download {
  padding-left: 23px;
  background-size: 13px 13px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='15' viewBox='0 0 14 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3826_63)'%3E%3Cpath d='M12.0625 9.52515V12.6754H1.9375V9.52515H0.25V12.5019C0.25 13.3726 1.2112 14.2501 2.14338 14.2501H12.2684C13.1999 14.2501 13.75 13.3726 13.75 12.5019V9.52515H12.0625Z' fill='%231C69D4'/%3E%3Cpath d='M10.375 6.09128V6.73253L7.3753 10.2H7.0378L3.625 6.73253V6.09128H5.3125V0.75H8.6875V6.09128' fill='%231C69D4'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3826_63'%3E%3Crect width='13.5' height='13.5' fill='white' transform='translate(0.25 0.75)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") !important;
}
.link:hover > span {
  color: #e6001d;
}
.link.--color-second > span {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L1 11' stroke='%23666666' stroke-width='2'/%3E%3C/svg%3E%0A");
  color: #525252;
}
.link.--color-second:hover > span {
  color: #e6001d;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L1 11' stroke='%231C69D4' stroke-width='2'/%3E%3C/svg%3E%0A");
}
.link.--color-white > span {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L1 11' stroke='%23ffff' stroke-width='2'/%3E%3C/svg%3E%0A");
  color: #ffffff;
}
.link.--color-white:hover > span {
  color: #e6001d;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L1 11' stroke='%231C69D4' stroke-width='2'/%3E%3C/svg%3E%0A");
}
@media (min-width: 769px) {
  .link {
    border-bottom: 1px solid #f1f1f1;
  }
}

.wp-block-columns .link {
  width: 100%;
  max-width: unset;
}
@media (max-width: 1024px) {
  .wp-block-columns .link {
    margin-bottom: calc(var(--gap) / 2 * -1);
  }
  .wp-block-columns .wp-block-column:last-of-type .link {
    margin: 0;
    border-bottom: 1px solid #f1f1f1;
  }
}

/*------------------------------------*\
    Cookie
\*------------------------------------*/
.cc-window {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.cc-window .cc-message {
  padding: 15px;
  margin: 0px !important;
  font-size: 12px;
  line-height: 160%;
}

.cc-highlight .cc-btn:first-child:focus,
.cc-highlight .cc-btn:first-child:hover {
  text-decoration: none;
}

.cc-compliance > .cc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: #e6001d;
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #e6001d;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #e6001d;
  color: #fff;
  text-shadow: none;
}

p.alignright,
p.alignleft {
  padding: 0;
  float: none;
  margin: 0;
}
p.alignright + p,
p.alignleft + p {
  margin-top: var(--space-small);
}

table {
  width: 100%;
}

table tr {
  border-bottom: 1px solid var(--color-lightgray);
}

table tr:last-child {
  border-bottom: 0;
}

table tbody tr:hover {
  background-color: #fafafa;
}

table th,
table td {
  text-align: right;
  padding: 15px 15px 15px 0;
}

table th:first-child,
table td:first-child {
  text-align: left;
}

td:not(.wysiwyg)::before {
  display: block;
  content: "";
  margin-top: -0.3125rem;
}

td:not(.wysiwyg)::after {
  display: block;
  content: "";
  margin-bottom: -0.3125rem;
  top: -0.3125rem;
}

/*------------------------------------*\
    HEADER.SCSS
\*------------------------------------*/
.header {
  position: relative;
  z-index: 9999;
  padding: 12px 26px;
  position: relative;
  display: flex;
  align-items: center;
}
.header .logo {
  width: 75px;
  margin-right: 20px;
}

.second-temp-wrapper .header {
  margin-bottom: 30px;
}

/*------------------------------------*/
/* NOTE - Footer */
/*------------------------------------*/
.footer .inner {
  border-top: 2px solid #f4f4f5;
  padding: 44px 0;
}
.footer .inner p,
.footer .inner a,
.footer .inner span {
  font-family: "MINI Sans";
}
.footer .inner .gridrow {
  row-gap: 44px;
}
.footer .inner .gridrow .col > p {
  text-transform: uppercase;
  font-size: 14px;
  padding: 0;
  line-height: 100%;
}
.footer .inner .gridrow .col a {
  font-size: 18px;
  font-weight: 400;
}
.footer .inner .gridrow .col a:hover {
  color: #e6001d;
}
.footer .inner .gridrow .col ul {
  margin: 16px 0 0 0;
  list-style-type: none;
  padding: 0;
}
.footer .inner > p {
  font-size: 14px;
  font-weight: 500;
}

.warn {
  box-sizing: border-box;
  background-color: rgba(255, 0, 0, 0.3);
  border: 2px solid rgba(255, 0, 0, 0.3);
  margin-bottom: 40px;
}
@media (min-width: 1025px) {
  .warn {
    margin: 0;
  }
}
.warn .inner {
  padding: var(--space-extrasmall) 0;
}
.warn .inner span {
  text-align: center;
  font-size: calc(13px + 1 * (100vw - 520px) / 580);
}
@media screen and (max-width: 520px) {
  .warn .inner span {
    font-size: 13px;
  }
}
@media screen and (min-width: 1100px) {
  .warn .inner span {
    font-size: 14px;
  }
}

.notice {
  border-top: 2px solid #f4f4f5;
  padding-top: calc(var(--space-medium) - 10px);
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
}
.nav ul {
  margin: 0;
  background-color: #f1f1f1;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
}
.nav ul li {
  width: 100%;
  padding-bottom: 0;
  position: relative;
}
.nav ul li:first-child {
  padding-top: 30px;
}
.nav ul li:first-child .showSub {
  top: 30px;
}
.nav ul li:not(:first-child) {
  margin-left: 0;
}
.nav ul li a {
  text-decoration: none;
  padding: 18px 26px 19px;
  color: #000;
  font-size: 38px;
  line-height: 38px;
  display: block;
  font-family: "MINI Serif", serif;
  font-weight: 400;
  border: none !important;
}
.nav ul li.has-sub:after {
  display: none;
}
.nav ul li .showSub {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  cursor: pointer;
  width: 50px;
  height: 67px;
  line-height: 61px;
  text-align: center;
  transition: 0.25s ease;
}
.nav ul li .showSub.open:after {
  transform: rotate(-90deg);
}
.nav ul li .showSub:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background-image: url(../img/angle-right.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  transition: 0.25s ease;
}
.subNav .nav ul li .showSub {
  height: 50px;
  line-height: 48px;
}
.nav ul li ul.sub-menu {
  display: none;
  position: relative;
  border-bottom: 1px solid #eee;
  top: inherit;
  padding: 0;
  white-space: inherit;
  background-color: #ffffff;
}
.nav ul li ul.sub-menu li {
  padding: 0;
}
.nav ul li ul.sub-menu li a {
  padding: 10px 30px;
  text-align: center;
  font-size: 16px;
  border: none;
}

.open-nav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  aspect-ratio: 1/1;
}
.open-nav.is-active {
  background-color: #f1f1f1;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  opacity: 0.8;
  background-color: #fff;
}
.mobile-nav-overlay.is-active {
  display: block;
}

@media (min-width: 1025px) {
  .open-nav {
    display: none;
  }
  .nav {
    display: block;
    position: static;
  }
  .nav > ul {
    position: static;
    flex-wrap: nowrap;
    background-color: transparent;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  .nav > ul > li {
    display: block;
    position: relative;
    width: auto;
  }
  .nav > ul > li:first-child {
    padding: 0;
  }
  .nav > ul > li.current_page_item > a {
    text-decoration: underline;
  }
}
@media (min-width: 1025px) and (min-width: 1025px) {
  .nav > ul > li:not(:first-child) {
    margin-left: 40px;
  }
}
@media (min-width: 1025px) {
  .nav > ul > li a {
    text-transform: uppercase;
    display: block;
    font-size: 12px;
    font-family: "MINI Sans";
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 100%;
  }
  .nav > ul > li > a {
    font-size: 16px;
    font-weight: 500;
    padding: 7px 0 4px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
  }
  .nav > ul > li > a:hover {
    text-decoration: underline;
  }
}
@media (min-width: 1025px) and (min-width: 1025px) {
  .nav > ul > li > a {
    font-size: 12px;
  }
}
@media (min-width: 1025px) {
  .nav > ul > li .showSub {
    display: none;
  }
  .nav > ul > li ul.sub-menu {
    position: absolute;
    background-color: #ffffff;
    min-width: 100%;
    top: 100%;
    white-space: nowrap;
    display: none;
    left: 0;
    z-index: 999;
    padding-top: 30px;
  }
  .nav > ul > li ul.sub-menu li:not(:last-child) {
    border-bottom: 1px solid #f1f1f1;
  }
  .nav > ul > li ul.sub-menu > :last-child:hover {
    border-bottom: 1px solid #000000;
  }
  .nav > ul > li ul.sub-menu li {
    width: 100%;
    padding: 0 10px;
  }
  .nav > ul > li ul.sub-menu li:hover {
    border-color: #000000;
  }
  .nav > ul > li ul.sub-menu li:not(:first-child) {
    margin: 0;
  }
  .nav > ul > li ul.sub-menu li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    padding: 10px;
  }
}
@media (min-width: 1025px) and (min-width: 1101px) {
  .nav > ul > li ul.sub-menu li a {
    font-size: 12px;
  }
}
@media (min-width: 1025px) {
  .nav > ul > li:hover > ul {
    display: block;
  }
}
/*------------------------------------*/
/* NOTE - Swiper slider componente */
/*------------------------------------*/
.slider__pagination {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.slider__pagination .swiper-pagination-bullet {
  background-color: #999999;
}
.slider__pagination .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: #000;
}

.slider__controls button {
  display: none;
}
@media (min-width: 769px) {
  .slider__controls button {
    display: block;
    min-width: unset;
    z-index: 1;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 30px);
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 32 32' style='enable-background:new 0 0 32 32;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Cpath class='st0' d='M12,7.5l-7.3,7.3H32v2.5H4.7l7.3,7.3l-1.8,1.7L0,16L10.2,5.8L12,7.5z'/%3E%3C/svg%3E%0A");
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
  }
  .slider__controls button:hover {
    background-color: #e6001d;
  }
  .slider__controls button.--prev {
    left: -20px;
  }
}
@media (min-width: 769px) and (min-width: 1281px) {
  .slider__controls button.--prev {
    left: -30px;
  }
}
@media (min-width: 769px) and (min-width: 1401px) {
  .slider__controls button.--prev {
    left: -90px;
  }
}
@media (min-width: 769px) {
  .slider__controls button.--next {
    rotate: 180deg;
    right: -20px;
  }
}
@media (min-width: 769px) and (min-width: 1281px) {
  .slider__controls button.--next {
    right: -30px;
  }
}
@media (min-width: 769px) and (min-width: 1401px) {
  .slider__controls button.--next {
    right: -90px;
  }
}

.pagingInfo {
  margin: 30px auto;
  display: flex;
  justify-content: center;
}
.pagingInfo span {
  font-family: "MINI Serif";
}
.pagingInfo span.current {
  color: #000;
}
.pagingInfo span.all {
  color: #a7a7a7;
}

/*------------------------------------*\
    ACF Block: Site Links
\*------------------------------------*/
.siteLinks {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 99999;
}
@media (min-width: 1025px) {
  .siteLinks {
    width: 273px;
    bottom: unset;
    top: 50%;
    transition: all 250ms ease-in-out;
    transform: translateX(calc(-100% + 40px)) translateY(-50%);
  }
  .siteLinks:hover {
    transform: translateX(0) translateY(-50%);
  }
}
.siteLinks > div {
  display: flex;
  width: 100%;
}
@media (min-width: 1025px) {
  .siteLinks > div {
    display: block;
    background-color: #4d4d4d;
    width: auto;
  }
}
.siteLinks > div a {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex: 1;
}
@media (min-width: 1025px) {
  .siteLinks > div a {
    flex: unset;
  }
}
.siteLinks > div a > :first-child {
  display: none;
}
@media (min-width: 1025px) {
  .siteLinks > div a > :first-child {
    display: block;
    padding: 13px;
  }
  .siteLinks > div a > :first-child p {
    line-height: 100%;
    color: #ffffff;
    font-weight: 500;
    font-family: "MINI Sans";
    padding: 0;
  }
}
.siteLinks > div a > :last-child {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  justify-content: center;
  align-items: center;
  padding: 13px;
  background-color: #000;
  width: 100%;
}
.siteLinks > div a > :last-child img {
  width: 16px;
  height: 16px;
}
.siteLinks > div a > :last-child img.invert {
  filter: invert(1);
}
@media (min-width: 1025px) {
  .siteLinks > div a > :last-child {
    aspect-ratio: 1/1;
    padding: 0 13px;
    width: auto;
  }
}
.siteLinks > div a + a {
  border-left: 1px solid #ffffff;
}
@media (min-width: 1025px) {
  .siteLinks > div a + a {
    border-left: unset;
    border-top: 1px solid #ffffff;
  }
}
.siteLinks > div a:hover > :last-child {
  background-color: #de0a27;
}

/*------------------------------------*/
/* NOTE - Taxonomy standort single page */
/*------------------------------------*/
.standard-formular {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.standard-formular p {
  width: 100%;
}
.standard-formular br {
  display: none;
}
.standard-formular > span {
  display: block;
  width: 100%;
  font-family: "MINI Sans";
  margin-top: 25px;
}
.standard-formular > span.half {
  width: calc(50% - 12.5px);
}
.standard-formular > span input,
.standard-formular > span textarea {
  width: 100%;
  border: 1px solid #bbb !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  background-color: #fafafa;
  color: #000;
  margin-top: 4px;
  outline: none !important;
  padding: 10px;
  border-radius: 0% !important;
}
.standard-formular > span input::-webkit-input-placeholder, .standard-formular > span input::-moz-placeholder, .standard-formular > span input:-ms-input-placeholder, .standard-formular > span input:-moz-placeholder,
.standard-formular > span textarea::-webkit-input-placeholder,
.standard-formular > span textarea::-moz-placeholder,
.standard-formular > span textarea:-ms-input-placeholder,
.standard-formular > span textarea:-moz-placeholder {
  color: #666666;
}
.standard-formular > span textarea {
  height: 250px;
  resize: none;
}
.standard-formular > span.select {
  margin-top: 25px;
}
.standard-formular > span.select .wpcf7-form-control-wrap {
  display: block;
  position: relative;
  width: fit-content;
  margin-top: 12px;
}
.standard-formular > span.select .wpcf7-form-control-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #525252;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M11 1L6 6L1 1' stroke='%23FAFAFA' stroke-width='2'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 15px 7.5px;
  background-repeat: no-repeat;
  pointer-events: none;
}
.standard-formular > span.select select {
  background-color: #fafafa;
  padding: 10px;
  border: 1px solid #bbb;
  font-family: "MINI Sans";
}
.standard-formular > span.select select:focus, .standard-formular > span.select select:active {
  border-radius: 0;
  border-color: #525252;
}
@media (min-width: 769px) {
  .standard-formular > span.select select {
    min-width: 380px;
  }
}
.standard-formular > span .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}
.standard-formular > span .wpcf7-checkbox .wpcf7-list-item {
  width: fit-content;
  min-width: 250px;
  margin-left: 0;
}
.standard-formular > span .wpcf7-checkbox .wpcf7-list-item:first-of-type, .standard-formular > span .wpcf7-checkbox .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 12px;
}
.standard-formular > span .wpcf7-checkbox label {
  display: flex;
  position: relative;
  cursor: pointer;
}
.standard-formular > span .wpcf7-checkbox label input[type=checkbox] {
  width: 20px;
  height: 20px;
  display: block;
  appearance: none;
  border: none;
  margin: 0;
  padding: 0;
  border: 2px solid #bbb !important;
  border-radius: 0% !important;
}
.standard-formular > span .wpcf7-checkbox label .wpcf7-list-item-label {
  margin-left: 10px;
  line-height: 140%;
  font-weight: 300;
}
.standard-formular > span .wpcf7-checkbox label .wpcf7-list-item-label a {
  color: #e6001d;
}
.standard-formular > span .wpcf7-checkbox .checkmark, .standard-formular > span .wpcf7-checkbox .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide .standard-formular > span .wpcf7-checkbox ul, .standard-formular > span .wpcf7-checkbox .singleLocation .col ul, .singleLocation .col .standard-formular > span .wpcf7-checkbox ul {
  position: absolute;
  aspect-ratio: 1/1;
  width: 18px;
}
.standard-formular > span .wpcf7-checkbox .checkmark::after, .standard-formular > span .wpcf7-checkbox .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul::after, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide .standard-formular > span .wpcf7-checkbox ul::after, .standard-formular > span .wpcf7-checkbox .singleLocation .col ul::after, .singleLocation .col .standard-formular > span .wpcf7-checkbox ul::after {
  content: "";
  position: absolute;
  display: none;
  top: 1px;
  left: 1px;
  height: 18px;
  width: 18px;
  background-size: 12px 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4.5 7L10 1' stroke='%231C69D4' stroke-width='2'/%3E%3C/svg%3E%0A");
}
.standard-formular > span .wpcf7-checkbox .checkmark.active::before, .standard-formular > span .wpcf7-checkbox .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul.active::before, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide .standard-formular > span .wpcf7-checkbox ul.active::before, .standard-formular > span .wpcf7-checkbox .singleLocation .col ul.active::before, .singleLocation .col .standard-formular > span .wpcf7-checkbox ul.active::before, .standard-formular > span .wpcf7-checkbox .checkmark.active::after, .standard-formular > span .wpcf7-checkbox .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul.active::after, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide .standard-formular > span .wpcf7-checkbox ul.active::after, .standard-formular > span .wpcf7-checkbox .singleLocation .col ul.active::after, .singleLocation .col .standard-formular > span .wpcf7-checkbox ul.active::after {
  display: block;
}
.standard-formular > span .wpcf7-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  display: block;
  appearance: none;
  border: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #bbb;
  border-radius: 0% !important;
}
.standard-formular > span .wpcf7-checkbox input[type=checkbox]:checked {
  border-color: #e6001d;
}
.standard-formular > span .wpcf7-acceptance {
  display: block;
  position: relative;
}
.standard-formular > span .wpcf7-acceptance span {
  margin: 0;
  max-width: 80%;
}
.standard-formular > span .wpcf7-acceptance label {
  display: flex;
  position: relative;
}
.standard-formular > span .wpcf7-acceptance label input[type=checkbox] {
  width: 20px;
  aspect-ratio: 1/1;
  display: block;
  appearance: none;
  border: none;
  margin: 0;
  padding: 0;
  background-color: #f1f1f1;
  cursor: pointer;
  border-radius: 0% !important;
}
.standard-formular > span .wpcf7-acceptance label .wpcf7-list-item-label {
  margin-left: 10px;
  font-size: 12px;
  line-height: 140%;
  color: #000;
}
.standard-formular > span .wpcf7-acceptance label .wpcf7-list-item-label a {
  color: #e6001d;
}
.standard-formular > span .wpcf7-acceptance .checkmark, .standard-formular > span .wpcf7-acceptance .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide .standard-formular > span .wpcf7-acceptance ul, .standard-formular > span .wpcf7-acceptance .singleLocation .col ul, .singleLocation .col .standard-formular > span .wpcf7-acceptance ul {
  position: absolute;
  top: 2px;
  left: 3px;
  height: 18px;
  width: 18px;
}
.standard-formular > span .wpcf7-acceptance .checkmark::after, .standard-formular > span .wpcf7-acceptance .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul::after, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide .standard-formular > span .wpcf7-acceptance ul::after, .standard-formular > span .wpcf7-acceptance .singleLocation .col ul::after, .singleLocation .col .standard-formular > span .wpcf7-acceptance ul::after, .standard-formular > span .wpcf7-acceptance .checkmark::before, .standard-formular > span .wpcf7-acceptance .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul::before, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide .standard-formular > span .wpcf7-acceptance ul::before, .standard-formular > span .wpcf7-acceptance .singleLocation .col ul::before, .singleLocation .col .standard-formular > span .wpcf7-acceptance ul::before {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 1px;
  width: 2px;
  height: 15px;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  background-color: #000;
}
.standard-formular > span .wpcf7-acceptance .checkmark::before, .standard-formular > span .wpcf7-acceptance .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul::before, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide .standard-formular > span .wpcf7-acceptance ul::before, .standard-formular > span .wpcf7-acceptance .singleLocation .col ul::before, .singleLocation .col .standard-formular > span .wpcf7-acceptance ul::before {
  transform: rotate(-45deg);
}
.standard-formular > span .wpcf7-acceptance .checkmark.active::before, .standard-formular > span .wpcf7-acceptance .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul.active::before, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide .standard-formular > span .wpcf7-acceptance ul.active::before, .standard-formular > span .wpcf7-acceptance .singleLocation .col ul.active::before, .singleLocation .col .standard-formular > span .wpcf7-acceptance ul.active::before, .standard-formular > span .wpcf7-acceptance .checkmark.active::after, .standard-formular > span .wpcf7-acceptance .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul.active::after, .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide .standard-formular > span .wpcf7-acceptance ul.active::after, .standard-formular > span .wpcf7-acceptance .singleLocation .col ul.active::after, .singleLocation .col .standard-formular > span .wpcf7-acceptance ul.active::after {
  display: block;
}
.standard-formular > span .wpcf7-acceptance input[type=checkbox] {
  width: 20px;
  height: 20px;
  display: block;
  appearance: none;
  border: none;
  margin: 0;
  padding: 0;
  background-color: #f1f1f1;
  cursor: pointer;
  border-radius: 0% !important;
}

.wpcf7-submit {
  margin-top: 12px;
}

.blueback .standard-formular span.wpcf7-acceptance label .wpcf7-list-item-label {
  color: #fff;
}
.blueback .standard-formular span.wpcf7-acceptance label .wpcf7-list-item-label a {
  color: #fff;
}

/*------------------------------------*\
    BOX20.SCSS

	Sets the width of a column based on its parent container - .box20 or .wp-block-columns.box20 .col;

	Layout for 2 columns layout on desktop 

\*------------------------------------*/
@media (min-width: 769px) {
  .box50 > .col,
  .wp-block-columns.box50 > .wp-block-column {
    width: calc(50% - var(--layout-grid-gutter) / 2);
  }
}

/*------------------------------------*\
    BOX20.SCSS

	Sets the width of a column based on its parent container - .box20 or .wp-block-columns.box20 .col;

	Layout for 3 columns layout on desktop 

\*------------------------------------*/
@media (min-width: 769px) {
  .box33 .col,
  .box33 .wp-block-column,
  .wp-block-columns.box33 .col,
  .wp-block-columns.box33 .wp-block-column {
    width: calc(50% - var(--layout-grid-gutter) * 2 / 2);
  }
}
@media (min-width: 1025px) {
  .box33 .col,
  .box33 .wp-block-column,
  .wp-block-columns.box33 .col,
  .wp-block-columns.box33 .wp-block-column {
    width: calc(33.333% - var(--layout-grid-gutter) * 2 / 3);
  }
}

/*------------------------------------*\
    BOX20.SCSS

	Sets the width of a column based on its parent container - .box20 or .wp-block-columns.box20 .col;

	Layout for 4 columns layout on desktop 

\*------------------------------------*/
@media (min-width: 521px) {
  .box25 .col,
  .box25 .wp-block-column,
  .wp-block-columns.box25 .col,
  .wp-block-columns.box25 .wp-block-column {
    width: calc(50% - var(--layout-grid-gutter) / 2);
  }
}
@media (min-width: 1025px) {
  .box25 .col,
  .box25 .wp-block-column,
  .wp-block-columns.box25 .col,
  .wp-block-columns.box25 .wp-block-column {
    width: calc(25% - var(--layout-grid-gutter) * 3 / 4);
  }
}

/*------------------------------------*\
    BOX20.SCSS

	Sets the width of a column based on its parent container - .box20 or .wp-block-columns.box20 .col;

	Layout for 5 columns layout on desktop 

\*------------------------------------*/
@media (min-width: 521px) {
  .box20 .col,
  .box20 .wp-block-column,
  .wp-block-columns.box20 .col,
  .wp-block-columns.box20 .wp-block-column {
    width: calc(50% - var(--layout-grid-gutter) / 2);
  }
}
@media (min-width: 1025px) {
  .box20 .col,
  .box20 .wp-block-column,
  .wp-block-columns.box20 .col,
  .wp-block-columns.box20 .wp-block-column {
    width: calc(20% - var(--layout-grid-gutter) * 4 / 5);
  }
}

/*------------------------------------*/
/* ACF BLOCK - contact */
/*------------------------------------*/
.contact {
  padding-top: 10px;
}
.contact a {
  display: block;
  position: relative;
  padding-left: 32px;
  background-size: 20px;
  background-position: left center;
  background-repeat: no-repeat;
  line-height: 100%;
}
.contact a p {
  padding: 0;
}
.contact a.tel {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_17_4518)'%3E%3Cpath d='M6.54 5C6.6 5.89 6.75 6.76 6.99 7.59L5.79 8.79C5.38 7.59 5.12 6.32 5.03 5H6.54ZM16.4 17.02C17.25 17.26 18.12 17.41 19 17.47V18.96C17.68 18.87 16.41 18.61 15.2 18.21L16.4 17.02ZM7.5 3H4C3.45 3 3 3.45 3 4C3 13.39 10.61 21 20 21C20.55 21 21 20.55 21 20V16.51C21 15.96 20.55 15.51 20 15.51C18.76 15.51 17.55 15.31 16.43 14.94C16.33 14.9 16.22 14.89 16.12 14.89C15.86 14.89 15.61 14.99 15.41 15.18L13.21 17.38C10.38 15.93 8.06 13.62 6.62 10.79L8.82 8.59C9.1 8.31 9.18 7.92 9.07 7.57C8.7 6.45 8.5 5.25 8.5 4C8.5 3.45 8.05 3 7.5 3Z' fill='%23323232'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_17_4518'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.contact a.mail {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_17_856)'%3E%3Cpath d='M22 6C22 4.9 21.1 4 20 4H4C2.9 4 2 4.9 2 6V18C2 19.1 2.9 20 4 20H20C21.1 20 22 19.1 22 18V6ZM20 6L12 11L4 6H20ZM20 18H4V8L12 13L20 8V18Z' fill='%23323232'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_17_856'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.contact a.adress {
  background-position: left top;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_17_846)'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9C5 14.25 12 22 12 22C12 22 19 14.25 19 9C19 5.13 15.87 2 12 2ZM7 9C7 6.24 9.24 4 12 4C14.76 4 17 6.24 17 9C17 11.88 14.12 16.19 12 18.88C9.92 16.21 7 11.85 7 9Z' fill='%23323232'/%3E%3Cpath d='M12 11.5C13.3807 11.5 14.5 10.3807 14.5 9C14.5 7.61929 13.3807 6.5 12 6.5C10.6193 6.5 9.5 7.61929 9.5 9C9.5 10.3807 10.6193 11.5 12 11.5Z' fill='%23323232'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_17_846'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.contact a + a {
  margin-top: var(--space-extrasmall);
}

/*------------------------------------*/
/* ACF BLOCK - Oeffnungszeiten */
/*------------------------------------*/
.oeffnungszeiten {
  margin-top: var(--space-small);
}
@media (min-width: 769px) {
  .oeffnungszeiten .slideNavWrapper {
    width: 140px;
  }
}
.oeffnungszeiten .slideNavWrapper .mobileNav {
  padding: 8px 36px 8px 8px;
  border: 2px solid #000000;
  font-size: 12px;
  font-weight: 400;
}
.oeffnungszeiten .slideNavWrapper .mobileNav::after {
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
  background-color: #000000;
  background-size: 15px 10px;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E%0A");
  top: 0;
  right: 0;
}
.oeffnungszeiten .slideNavWrapper .mobileNav.active::after {
  rotate: 0deg;
}
.oeffnungszeiten ul.times {
  display: block;
}
.oeffnungszeiten ul.times button {
  padding: 8px;
  font-size: 12px;
}
.oeffnungszeiten ul {
  overflow: hidden;
  padding: 0;
}
.oeffnungszeiten ul li {
  max-width: 350px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: var(--gap);
}
.oeffnungszeiten ul li::before {
  display: none;
}
.oeffnungszeiten ul li p {
  padding: 0;
}

/*------------------------------------*/
/* ACF BLOCK - Fahrzeuge */
/*------------------------------------*/
.fahrzeuge .col {
  background-color: #f1f1f1;
}
.fahrzeuge .col .thb {
  position: relative;
}
.fahrzeuge .col .thb .note {
  position: absolute;
  color: #ffffff;
  bottom: -8px;
  left: 0;
}
.fahrzeuge .col .thb .note span {
  position: relative;
  left: 0;
  color: #fff;
  padding: 2px 8px 2px 15px;
  font-size: 14px;
  line-height: 18px;
  background-color: #0085ac;
}
.fahrzeuge .col .thb .note span::before, .fahrzeuge .col .thb .note span::after {
  content: "";
  display: block;
  position: absolute;
  right: -8px;
  width: 0;
  height: 0;
}
.fahrzeuge .col .thb .note span::after {
  top: 0;
  border-top: 18px solid #0085ac;
  border-right: 10px solid transparent;
}
.fahrzeuge .col .thb .note span::before {
  bottom: 0;
  border-top: 18px solid transparent;
  border-left: 10px solid #0085ac;
}
.fahrzeuge .col .content {
  padding: 40px;
}
.fahrzeuge .col .content + .content {
  border-top: 1px solid #ffffff;
}
.fahrzeuge .col .content .button {
  width: 100%;
  min-width: unset;
}
.fahrzeuge .col .content b {
  font-family: "MINI Sans";
  font-weight: 900;
  font-size: 14px;
}
.fahrzeuge .col .content ul:not(.e-tab) {
  padding: 0;
}
.fahrzeuge .col .content ul:not(.e-tab) li {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: 10px 0 15px 0;
  border-top: 1px solid #999;
  font-family: "MINI Sans";
  font-size: 14px;
}
.fahrzeuge .col .content ul:not(.e-tab) li:last-of-type {
  border-bottom: 1px solid #999;
}
.fahrzeuge .col .content ul:not(.e-tab) li > :first-child span {
  font-weight: 500;
}
.fahrzeuge .col .content ul:not(.e-tab) li > :last-child span {
  line-height: 2.7;
  font-weight: 900;
}
.fahrzeuge .col .content .tbl-sml {
  padding-top: 5px;
  font-family: "MINI Sans";
  font-size: 14px;
  font-weight: 500;
}
.fahrzeuge .col .content .sml {
  font-size: 14px;
}
.fahrzeuge .col .content a.openPopup {
  display: inline-block;
  width: 14px;
  height: 14px;
  line-height: 14px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3C!-- Generated by IcoMoon.io --%3E%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctitle%3Einfo%3C/title%3E%3Cpath d='M17.248 21.344h1.632v2.464h-5.76v-2.464h1.664v-8.224h2.464v8.224zM17.248 8.192h-2.464v2.464h2.464v-2.464zM32 16q0 4.352-2.176 8.064-2.144 3.616-5.76 5.76-3.712 2.176-8.064 2.176t-8.064-2.176q-3.616-2.144-5.76-5.76-2.176-3.712-2.176-8.064t2.176-8.064q2.144-3.616 5.76-5.76 3.712-2.176 8.064-2.176t8.064 2.176q3.616 2.144 5.76 5.76 2.176 3.712 2.176 8.064zM29.536 16q0-3.68-1.856-6.816-1.792-3.072-4.864-4.864-3.136-1.856-6.816-1.856t-6.816 1.856q-3.072 1.792-4.864 4.864-1.856 3.136-1.856 6.816t1.856 6.816q1.792 3.072 4.864 4.864 3.136 1.856 6.816 1.856t6.816-1.856q3.072-1.792 4.864-4.864 1.856-3.136 1.856-6.816z'%3E%3C/path%3E%3C/svg%3E%0A");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 2px;
  cursor: pointer;
}
.fahrzeuge .col .content.emissions li,
.fahrzeuge .col .content.emissions p {
  font-family: "MINI Sans";
  font-size: 14px;
  padding: 0;
}
.fahrzeuge .col .content.emissions .gridrow {
  margin-top: var(--space-small);
}
@media (min-width: 769px) {
  .fahrzeuge .col .content.emissions .gridrow {
    align-items: center;
  }
}
.fahrzeuge .col .content.emissions .gridrow > :first-child {
  line-height: 110%;
  width: 100%;
}
@media (min-width: 769px) {
  .fahrzeuge .col .content.emissions .gridrow > :first-child {
    flex: 1;
  }
}
.fahrzeuge .col .content.emissions .gridrow > :first-child p {
  display: inline;
  line-height: 100%;
}
.fahrzeuge .col .content.emissions .gridrow > :first-child img {
  width: 28px;
}
.fahrzeuge .col .content.emissions .gridrow > :first-child img:last-of-type {
  padding-top: 10px;
}
.fahrzeuge .col .content.emissions .gridrow > :last-child {
  flex: 1;
}
.fahrzeuge .col .content.emissions ul {
  position: relative;
  max-width: 120px;
  padding: 0;
  list-style: none;
}
.fahrzeuge .col .content.emissions ul li {
  line-height: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 1px 3px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
}
.fahrzeuge .col .content.emissions ul li::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  border: 6px solid transparent;
  border-left-color: inherit;
  position: absolute;
  right: -12px;
  top: 0;
}
.fahrzeuge .col .content.emissions ul li + li {
  margin-top: 2px;
}
.fahrzeuge .col .content.emissions ul li:nth-of-type(1) {
  background-color: #00a94e;
  border-color: #00a94e;
  width: 40%;
}
.fahrzeuge .col .content.emissions ul li:nth-of-type(2) {
  background-color: #00a94e;
  border-color: #00a94e;
  width: 45%;
}
.fahrzeuge .col .content.emissions ul li:nth-of-type(3) {
  background-color: #6cb947;
  border-color: #6cb947;
  width: 50%;
}
.fahrzeuge .col .content.emissions ul li:nth-of-type(4) {
  background-color: #c1d534;
  border-color: #c1d534;
  width: 55%;
}
.fahrzeuge .col .content.emissions ul li:nth-of-type(5) {
  background-color: #fff00d;
  border-color: #fff00d;
  width: 60%;
}
.fahrzeuge .col .content.emissions ul li:nth-of-type(6) {
  background-color: #fab22a;
  border-color: #fab22a;
  width: 65%;
}
.fahrzeuge .col .content.emissions ul li:nth-of-type(7) {
  background-color: #eb6130;
  border-color: #eb6130;
  width: 70%;
}
.fahrzeuge .col .content.emissions ul li:nth-of-type(8) {
  background-color: #e42130;
  border-color: #e42130;
  width: 75%;
}
.fahrzeuge .col .content.emissions ul li:nth-of-type(9) {
  background-color: #e42130;
  border-color: #e42130;
  width: 80%;
}
.fahrzeuge .col .content.emissions ul li:last-of-type {
  width: max-content;
  position: absolute;
  right: 0;
  top: 1%;
  font-size: 14px;
  padding: 4px 8px;
  font-weight: 600;
  background-color: #000000;
  border-color: #000000;
  line-height: 100%;
}
.fahrzeuge .col .content.emissions ul li:last-of-type::after {
  border: none;
  width: 16px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='78' height='118' viewBox='0 0 78 118' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-2.97237e-06 59L78 0.110272L78 117.89L-2.97237e-06 59Z' fill='black'/%3E%3C/svg%3E%0A");
  right: calc(100% - 2px);
}
.fahrzeuge .col .content.emissions ul li:last-of-type.Ap {
  top: -6px;
  left: 65%;
}
.fahrzeuge .col .content.emissions ul li:last-of-type.A {
  left: 70%;
  top: 10px;
}
.fahrzeuge .col .content.emissions ul li:last-of-type.B {
  left: 75%;
  top: 25px;
}
.fahrzeuge .col .content.emissions ul li:last-of-type.C {
  left: 80%;
  top: 42px;
}
.fahrzeuge .col .content.emissions ul li:last-of-type.D {
  left: 85%;
  top: 59px;
}
.fahrzeuge .col .content.emissions ul li:last-of-type.E {
  top: 76px;
  left: 90%;
}
.fahrzeuge .col .content.emissions ul li:last-of-type.F {
  top: 92px;
  left: 95%;
}
.fahrzeuge .col .content.emissions ul li:last-of-type.G {
  left: 100%;
  top: 108px;
}
.fahrzeuge .col .content.emissions ul li:last-of-type.H {
  top: 124px;
  left: 100%;
}

.info_popup {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(80, 80, 80, 0.4470588235);
  transition: all 0.25s ease-in-out;
}
.info_popup > div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.info_popup > div > div {
  background-color: #000000;
  max-width: 500px;
  padding: 20px 20px 50px 20px;
}
.info_popup > div > div h3,
.info_popup > div > div p {
  color: #ffffff;
}
.info_popup > div > div > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.info_popup > div > div > div button {
  padding: 0;
  background-color: transparent;
  min-width: unset;
  border-radius: 0;
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctitle%3Eclose%3C/title%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Cpath class='st0' d='M27.552 5.472l-1.152-1.152-10.464 10.464-10.464-10.464-1.152 1.152 10.464 10.464-10.464 10.464 1.152 1.152 10.464-10.464 10.464 10.464 1.152-1.152-10.464-10.464z'%3E%3C/path%3E%3C/svg%3E%0A");
}
.info_popup.active {
  visibility: visible;
  opacity: 1;
}

/*------------------------------------*/
/* ACF BLOCK - checklist-grid */
/*------------------------------------*/
.checklist-grid .gridrow .col {
  width: 100%;
}
@media (min-width: 1025px) {
  .checklist-grid .gridrow .col {
    flex: 1;
  }
}
@media (min-width: 769px) {
  .checklist-grid .gridrow .col {
    width: calc(50% - var(--gap) / 2);
  }
}
.checklist-grid h3 {
  padding-top: 10px;
}
.checklist-grid img {
  max-height: 300px;
  aspect-ratio: 26/20;
  width: 100%;
  object-fit: cover;
}

/*------------------------------------*/
/* ACF BLOCK - 2 Spalten 60/40 */
/*------------------------------------*/
.sixfour {
  gap: 30px;
}
.sixfour .button {
  margin-top: 10px;
}
@media (min-width: 1025px) {
  .sixfour > :first-child {
    flex: 6;
  }
  .sixfour > :first-child img {
    min-height: 300px;
    object-fit: cover;
  }
  .sixfour > :last-child {
    flex: 4;
  }
}

/*------------------------------------*/
/* ACF BLOCK - employees */
/*------------------------------------*/
@media (min-width: 1025px) {
  .employees {
    gap: var(--gap);
    display: flex;
  }
}
.employees.tab-navigation > :first-child {
  flex: 1;
  margin-bottom: var(--space-small);
}
@media (min-width: 1025px) {
  .employees.tab-navigation > :first-child {
    margin: 0;
  }
}
.employees.tab-navigation > :first-child .mobileNav {
  display: none !important;
}
.employees.tab-navigation > :first-child .slidNav {
  position: static !important;
  display: block !important;
  padding: 0;
  gap: 0 !important;
  border-bottom: none !important;
  box-shadow: none;
  padding: 0 !important;
}
.employees.tab-navigation > :first-child .slidNav li {
  width: 100%;
}
.employees.tab-navigation > :first-child .slidNav li button {
  border-top: 1px solid #eee;
}
.employees.tab-navigation > :first-child .slidNav li button.active {
  text-decoration: underline;
  background-color: transparent;
  color: #000;
}
.employees.tab-navigation > :first-child .slidNav li:last-of-type button {
  border-bottom: 1px solid #eee;
}
.employees .swiper {
  flex: 3;
  margin-top: var(--space-small);
  row-gap: var(--gap);
}
@media (min-width: 1025px) {
  .employees .swiper {
    margin: 0;
  }
}
.employees .swiper .gridrow {
  row-gap: var(--gap);
}
.employees .swiper .gridrow .col {
  background-color: #f1f1f1;
}
.employees .swiper .gridrow .col img {
  aspect-ratio: 35/35;
  width: 100%;
  object-fit: cover;
}
.employees .swiper .gridrow .col .text {
  padding: 10px 20px 40px;
}
.employees .swiper .gridrow .col .text p,
.employees .swiper .gridrow .col .text h3 {
  padding-top: 10px;
}

/*------------------------------------*/
/* ACF BLOCK - Standort-Slider */
/*------------------------------------*/
.standort-slider {
  overflow: hidden;
  width: 100%;
}
.standort-slider .slideWrapper {
  overflow: visible;
  position: relative;
}
.standort-slider .slideWrapper .swiper {
  overflow: visible;
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide {
  transition: opacity 250ms ease-in-out;
  border: 1px solid #bbb;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
}
@media (min-width: 1025px) {
  .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide {
    flex-direction: row;
  }
}
@media (min-width: 1025px) {
  .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide {
    align-items: center;
  }
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide > :first-child {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (min-width: 1025px) {
  .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide > :first-child {
    display: block;
    width: 40%;
  }
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide > :first-child img {
  aspect-ratio: 25/17;
  width: 100%;
  height: auto;
  max-width: unset;
  object-fit: cover;
  transform: translate(0, 32px);
}
@media (min-width: 1025px) {
  .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide > :first-child img {
    transform: translate(-50px, 0px);
  }
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide > :last-child {
  height: fit-content;
}
@media (min-width: 1025px) {
  .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide > :last-child {
    width: 60%;
  }
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide > :last-child p {
  font-family: "MINI Sans";
  font-weight: 400;
  line-height: 130%;
  padding-top: 0;
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide > :last-child p:first-of-type {
  margin-top: 10px;
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide > :last-child .con {
  margin-bottom: var(--space-small);
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide > :last-child .con a {
  display: block;
  margin-top: 10px;
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide > :last-child .con a:hover {
  color: #e6001d;
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0;
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul {
  padding: 0;
  margin: 0;
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide ul li::before {
  top: calc(50% - 4.5px);
}
.standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide a + a {
  margin-left: 20px;
}
@media (min-width: 1025px) {
  .standort-slider .slideWrapper .swiper .swiper-wrapper .swiper-slide a + a {
    margin-left: 0;
  }
}

/*------------------------------------*/
/* ACF BLOCK - Tab-Navigation */
/*------------------------------------*/
/*------------------------------------*\
    ACF Block: Tabs
\*------------------------------------*/
.tab-navigation .slideNavWrapper {
  position: relative;
}
.tab-navigation .slideNavWrapper > span {
  font-family: "MINI Sans";
  display: block;
  cursor: pointer;
  width: 100%;
  padding: 16px;
  border: 1px solid #000;
  position: relative;
  margin-bottom: var(--space-small);
  font-weight: 600;
}
.tab-navigation .slideNavWrapper > span::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234D4D4D' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 15px;
  height: 10px;
  right: 10px;
  top: calc(50% - 4.5px);
  transition: all 250ms ease-in-out;
}
@media (min-width: 769px) {
  .tab-navigation .slideNavWrapper > span:not(.times) {
    display: none;
  }
}
.tab-navigation .slideNavWrapper > span.active::after {
  rotate: 180deg;
}
.tab-navigation .slideNavWrapper .slidNav {
  display: none;
  margin: 0;
  top: 100%;
  position: absolute;
  z-index: 10;
  background-color: #ffffff;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 8px 0px;
  padding: 0;
  list-style: none;
}
.tab-navigation .slideNavWrapper .slidNav li {
  padding: 0;
  width: 100%;
}
.tab-navigation .slideNavWrapper .slidNav li button {
  padding: 18px 16px;
  text-align: left;
  text-transform: none;
  color: #000;
  font-weight: 500;
  background: transparent;
  height: auto;
  width: 100%;
  margin: 0px;
  border-radius: 0;
}
.tab-navigation .slideNavWrapper .slidNav li button.active {
  background-color: #e6001d;
  color: #ffffff;
}
.tab-navigation .slideNavWrapper .slidNav li::before {
  display: none;
}
@media (min-width: 769px) {
  .tab-navigation .slideNavWrapper .slidNav:not(.times) {
    position: static;
    background-color: transparent;
    display: flex !important;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 20px;
    border-bottom: 1px solid #f4f4f5;
    margin-bottom: var(--space-small);
    box-shadow: none;
  }
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li {
    width: fit-content;
    display: flex; /* Ensure li is a flex container */
    align-items: stretch;
    cursor: pointer;
  }
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li .button_leasing,
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li .btn_mitarbeiter {
    padding: 24px 16px;
    position: relative;
    min-width: unset;
    text-align: center;
  }
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li .button_leasing:after,
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li .btn_mitarbeiter:after {
    content: "";
    display: none;
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: #000000;
    margin-bottom: 0 !important;
    top: inherit !important;
  }
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li .button_leasing:hover,
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li .btn_mitarbeiter:hover {
    color: #e6001d;
  }
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li .button_leasing:hover::after,
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li .btn_mitarbeiter:hover::after {
    background-color: #e6001d;
  }
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li .button_leasing.active,
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li .btn_mitarbeiter.active {
    background-color: transparent;
    color: #000;
  }
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li .button_leasing.active::after,
  .tab-navigation .slideNavWrapper .slidNav:not(.times) li .btn_mitarbeiter.active::after {
    display: block;
  }
}
.tab-navigation .tabs-slider .swiper {
  width: 100%;
}
.tab-navigation .tabs-slider .swiper .swiper-slide {
  width: 100% !important;
}
.tab-navigation .tabs-slider .swiper .swiper-slide h2 {
  padding: 0;
}
.tab-navigation .tabs-slider .swiper .swiper-slide .buttons a + a {
  margin: var(--space-extrasmall) 0;
}
@media (min-width: 769px) {
  .tab-navigation .tabs-slider .swiper .swiper-slide .col > :first-child {
    padding: 0;
  }
}
.tab-navigation .tabs-slider .item {
  width: 100%;
}
.tab-navigation .tabs-slider .item .gridrow.box33-66 img {
  padding-top: 10px;
}
.tab-navigation .tabs-slider .item table {
  width: 100%;
}
.tab-navigation .tabs-slider .item table tr td:nth-child(2) {
  text-align: right;
}
.tab-navigation .tabs-slider .item .offer {
  margin-top: var(--space-extrasmall);
}
.tab-navigation .tabs-slider .item .offer .gridrow.box50 p {
  padding: 0;
}
.tab-navigation .tabs-slider .item .offer .gridrow.box50 table tr {
  border-bottom: none;
}
.tab-navigation .tabs-slider .item .offer .gridrow.btn .col.col1 {
  width: calc(50% - 20px);
}
.tab-navigation .tabs-slider .item .offer .gridrow.btn .col.col1 a.button {
  width: 100%;
}

/*------------------------------------*/
/* ACF BLOCK - standorte */
/*------------------------------------*/
.standorte .col > div h4,
.standorte .col > div p {
  margin: 0 20px;
}
.standorte .col > div h4 {
  padding-top: 10px;
}
.standorte .col > div p {
  font-family: "MINI Sans";
  font-weight: 400;
  line-height: 130%;
  padding-top: 0;
}
.standorte .col > div p:first-of-type {
  margin-top: 10px;
}

/*------------------------------------*/
/* ACF BLOCK - box-slider */
/*------------------------------------*/
.box-slider .slider-container {
  position: relative;
}
.box-slider .slider-container .swiper-slide {
  background-color: #f1f1f1;
}
.box-slider .slider-container .swiper-slide img {
  aspect-ratio: 8/3;
  object-fit: cover;
  width: 100%;
}
.box-slider .slider-container .swiper-slide > div {
  padding: 40px;
}
.box-slider .slider-container .swiper-slide > div a {
  margin-top: 20px;
}

/*------------------------------------*/
/* ACF BLOCK - boxes */
/*------------------------------------*/
.boxes .gridrow {
  row-gap: var(--space-medium);
}
.boxes .gridrow .col img {
  aspect-ratio: 55/30;
  width: 100%;
  object-fit: cover;
}
.boxes .gridrow .col h2 {
  padding-top: 10px;
}
.boxes .gridrow .col a {
  margin-top: 20px;
}

/*------------------------------------*/
/* ACF BLOCK - sub-head */
/*------------------------------------*/
.second-temp-wrapper .sub-head {
  display: none;
}

.sub-head h1 {
  font-weight: 700;
  padding: 30px 0;
  text-transform: uppercase;
}
.sub-head .gridrow {
  margin: var(--space-small) 0 var(--space-medium) 0;
  row-gap: var(--space-medium);
}
.sub-head .gridrow .col {
  display: flex;
  justify-content: flex-start;
}
.sub-head .gridrow .col a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  justify-content: center;
  align-items: center;
  font-family: "MINI Sans";
  gap: 8px;
}
.sub-head .gridrow .col a img {
  width: 16px;
  aspect-ratio: 1/1;
}
.sub-head.big-icn .col {
  width: calc(50% - var(--gap) / 2);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .sub-head.big-icn .col {
    width: auto;
  }
  .sub-head.big-icn .col + .col {
    margin-left: 40px;
  }
}
.sub-head.big-icn .col > a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.sub-head.big-icn .col > a span {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 769px) {
  .sub-head.big-icn .col > a span {
    padding-right: 18px;
    background-image: url("data:image/svg+xml,%3C!-- Generated by IcoMoon.io --%3E%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctitle%3Eangle-right%3C/title%3E%3Cpath d='M23.264 16l-12.768 12.768-1.76-1.728 11.040-11.040-11.040-11.040 1.76-1.728z'%3E%3C/path%3E%3C/svg%3E%0A");
    background-position: right center;
    background-size: 13px 13px;
    background-repeat: no-repeat;
  }
}
.sub-head.big-icn .col > a img {
  width: 50px;
  height: auto;
}

/*------------------------------------*\
	ACF Block: Akkordeon
\*------------------------------------*/
.accordeon {
  width: calc(100% - 2 * var(--outergap));
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  margin-top: var(--font-default-linegap);
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
  flex-direction: column;
}
@media (min-width: 1101px) {
  .accordeon {
    max-width: 1786px;
  }
}
.accordeon .item {
  align-items: stretch;
  width: 100%;
  background: var(--surface-box);
  border-bottom: 2px solid #000000;
  transition: all 250ms ease-in-out;
}
.accordeon .item .title {
  margin: 0px;
  color: #000;
  font-family: "MINI Serif";
  font-size: calc(14px + 0 * (100vw - 520px) / 580);
  line-height: 125%;
  font-family: "MINI Sans";
  font-weight: 500;
  margin: 0;
  padding: 32px;
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
@media screen and (max-width: 520px) {
  .accordeon .item .title {
    font-size: 14px;
  }
}
@media screen and (min-width: 1100px) {
  .accordeon .item .title {
    font-size: 14px;
  }
}
.accordeon .item .title span {
  text-transform: none;
  display: inline-block;
  font-family: "MINI Sans";
  font-weight: 500;
  transition: all 250ms ease-in-out;
}
.accordeon .item .title:after {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 250ms ease-in-out;
  width: 10px;
  aspect-ratio: 1;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234D4D4D' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.accordeon .item .content-container {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 300ms linear;
}
.accordeon .item .content {
  line-height: var(--font-body-lineheight);
  font-size: calc(15px + 0 * (100vw - 520px) / 580);
  font-size: calc(16px + 0 * (100vw - 520px) / 580);
  padding: 0px var(--space-xl) var(--space-xl) var(--space-xl);
  overflow: hidden;
  transition: padding 300ms linear;
}
.accordeon .item .content > *:is(h1, h2, h3, h4, h5, h6, p, a, ul):not(.button):first-child {
  margin-top: 0;
  padding-top: 0;
}
@media screen and (max-width: 520px) {
  .accordeon .item .content {
    font-size: 15px;
  }
}
@media screen and (min-width: 1100px) {
  .accordeon .item .content {
    font-size: 15px;
  }
}
@media screen and (max-width: 520px) {
  .accordeon .item .content {
    font-size: 16px;
  }
}
@media screen and (min-width: 1100px) {
  .accordeon .item .content {
    font-size: 16px;
  }
}
.accordeon .item.--open .title:after {
  transform: translateY(-50%) rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23e6001d' stroke-width='2'/%3E%3C/svg%3E%0A");
}
.accordeon .item:not(.--open) .content-container {
  grid-template-rows: 0fr;
}
.accordeon .item:not(.--open) .content {
  padding-top: 0;
  padding-bottom: 0;
}
.accordeon .item:not(.--open):hover {
  border-color: #e6001d;
}
.accordeon .item:not(.--open):hover span {
  color: #e6001d;
}
.accordeon .item:not(.--open):hover .title::after {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23e6001d' stroke-width='2'/%3E%3C/svg%3E%0A");
}
.accordeon .item:last-of-type {
  border: none;
}
@media (min-width: 769px) {
  .accordeon .item .title {
    padding: var(--space-2xl) 90px var(--space-2xl) var(--space-2xl);
  }
  .accordeon .item .title::after {
    right: 25px;
  }
  .accordeon .item .content {
    padding: 0px var(--space-2xl) var(--space-2xl) var(--space-2xl);
  }
}

/*------------------------------------*/
/* ACF Block: Galerie Slider */
/*------------------------------------*/
.gallery-slider {
  --gallery-gap: var(--space-md);
  overflow: hidden;
}
.gallery-slider .swiper {
  margin-left: calc(-1 * var(--gallery-gap) / 2);
  margin-right: calc(-1 * var(--gallery-gap) / 2);
}
.gallery-slider .swiper .swiper-slide {
  padding: 0px calc(var(--gallery-gap) / 2);
}
.gallery-slider .swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
.gallery-slider .swiper .slider__controls {
  margin-top: var(--space-2xl);
  margin-left: calc(var(--gallery-gap) / 2);
  margin-right: calc(var(--gallery-gap) / 2);
}

/*------------------------------------*/
/* ACF Block: Hero Banner */
/*------------------------------------*/
.hero-banner .swiper-slide {
  position: relative;
}
.hero-banner .swiper-slide img {
  position: relative;
  z-index: -1;
  width: 100%;
  min-height: 666px;
  object-fit: cover;
}
@media (min-width: 1025px) {
  .hero-banner .swiper-slide img {
    aspect-ratio: 15/5;
  }
}
.hero-banner .swiper-slide .content {
  position: absolute;
  left: var(--outergap);
  width: calc(100% - var(--outergap) * 2);
  bottom: 20px;
}
@media (min-width: 1025px) {
  .hero-banner .swiper-slide .content {
    top: 64px;
    bottom: unset;
  }
}
@media (min-width: 2061px) {
  .hero-banner .swiper-slide .content {
    left: calc((100% - 1786px) / 2);
    width: calc(100% - (100% - 1786px));
  }
}
.hero-banner .swiper-slide .content h1,
.hero-banner .swiper-slide .content .h1,
.hero-banner .swiper-slide .content .h4 {
  padding: 0;
  color: #ffffff;
}
.hero-banner .swiper-slide .content .button-grp a + a {
  margin-top: 12px;
}
@media (min-width: 521px) {
  .hero-banner .swiper-slide .content .button-grp a + a {
    margin: 0;
    margin-left: 12px;
  }
}
.hero-banner .swiper-slide.bot .content {
  top: unset;
  bottom: 64px;
}
.hero-banner .swiper-slide.black h1,
.hero-banner .swiper-slide.black .h1,
.hero-banner .swiper-slide.black .h4 {
  color: #000000;
}

/*------------------------------------*/
/* ACF BLOCK - Image Text */
/*------------------------------------*/
.image-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-2xl);
  /*------------------------------------*/
  /* SECTION - Responsive */
  /*------------------------------------*/
}
.image-text .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.image-text .text > *:is(h1, h2, h3, h4, h5, h6, p, a, ul):not(.button):first-child {
  margin-top: 0;
  padding-top: 0;
}
.image-text .image {
  position: relative;
}
.image-text .image img {
  width: 100%;
  min-height: 200px;
  max-height: 350px;
  object-fit: cover;
  object-position: top;
  height: -webkit-fill-available;
}
@media (min-width: 769px) {
  .image-text {
    flex-direction: row;
    gap: var(--space-4xl);
  }
  .image-text .text,
  .image-text .image {
    flex: auto;
    width: 50%;
  }
  .image-text .text {
    padding: var(--space-3xl) 0;
  }
  .image-text .image img {
    max-height: 700px;
  }
  .image-text.--order-text-image {
    flex-direction: row-reverse;
  }
}

/*------------------------------------*/
/* ACF BLOCK - Seitenanfang */
/*------------------------------------*/
.page-start {
  padding: var(--space-3xl) 0;
  background: var(--surface-dark);
  border-bottom: 4px solid var(--border-accent);
  /*------------------------------------*/
  /* SECTION - Responsive */
  /*------------------------------------*/
}
.page-start .inner > *:is(h1, h2, h3, h4, h5, h6, p, a, ul):not(.button):first-child {
  margin-top: 0;
  padding-top: 0;
}
.page-start .inner h1 {
  color: var(--text-headings-on-dark);
}
.page-start .inner p {
  color: var(--text-body-on-dark);
}
@media (min-width: 769px) {
  .page-start {
    padding: var(--space-4xl) 0;
  }
}

/*------------------------------------*/
/* ACF Block: Headline icon */
/*------------------------------------*/
.headIcon {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.headIcon.aligncenter {
  display: flex;
}
.headIcon > div {
  position: relative;
  width: fit-content;
}
.headIcon > div img {
  margin: 0 auto;
  width: 64px;
}
.headIcon > div::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #e6001d;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  top: -23px;
  right: -33px;
  z-index: -1;
}
.headIcon h2 {
  padding-left: 10px;
}

.icon-boxes {
  display: flex;
  gap: var(--gap);
  flex-direction: column;
}
@media (min-width: 769px) {
  .icon-boxes {
    flex-direction: row;
  }
}
.icon-boxes > div {
  flex: 1;
  padding: 20px;
  background-color: #f1f1f1;
}
.icon-boxes > div img {
  padding-bottom: 10px;
  max-width: 24px;
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}
.steps > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background-color: #f1f1f1;
  border: 1px solid transparent;
  transition: all 250ms ease-in-out;
}
@media (min-width: 768px) {
  .steps > div {
    width: calc(50% - 8px);
  }
}
.steps .step-number {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  font-size: 44px;
  font-weight: 600;
  color: #e6001d;
}
.steps .step-number span {
  opacity: 0;
  transform: translateX(-4px);
  line-height: 100%;
  transition: all 250ms ease-in-out;
}
.steps .step-number h3 {
  padding: 0;
}
.steps .active {
  border-color: #e6001d;
}
.steps .active .step-number span {
  opacity: 1;
  transform: unset;
}
.steps .step-content p {
  display: block;
  padding-top: 16px;
}

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