/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
  /* Colors */
  --primary-color: #C40514;
  --secondary-color: #980410;
  --black-color: #171717;
  --white-color: #ffffff;
  --grey-color: rgba(255, 255, 255, 0.75);
  --dark-grey-color: rgba(255, 255, 255, 0.15);

  /* Spacing */
  --spacing-large: 90px;
  --spacing-medium: 3rem;
  --spacing-small: 30px;
  --spacing-col: 30px;
  --height-navigation: 90px;

  /* Font Sizes */
  --font-size-base: 16px;
  --font-size-h1: 28px;
  --font-size-h2: 24px;
  --font-size-h3: 20px;
  --font-size-lead: 18px;
  --font-size-small: 14px;
  --font-size-tiny: 12px;

  /* Border Radius */
  --border-radius-lg: 30px;
  --border-radius-md: 20px;
  --border-radius-sm: 10px;

  /* Paddings */
  --padding-cards: 30px;

  /* Sonstiges */
  color-scheme: light;
}

@media (min-width: 992px) {
:root {
  /* Spacing */
  --spacing-large: 180px;
  --spacing-medium: 6rem;
  --spacing-small: 40px;
  --spacing-col: 30px;
  --height-navigation: 108px;

  /* Font Sizes */
  --font-size-base: 20px;
  --font-size-h1: 60px;
  --font-size-h2: 52px;
  --font-size-h3: 28px;
  --font-size-lead: 24px;
  --font-size-small: 16px;
  --font-size-tiny: 14px;
}
}

@media (min-width: 1400px) {
:root {
  /* Paddings */
  --padding-cards: 40px;
}
}

@media (max-width: 575px) { :root { --container-width: 100%; } }
@media (min-width: 576px) { :root { --container-width: 540px; } }
@media (min-width: 768px) { :root { --container-width: 720px; } }
@media (min-width: 992px) { :root { --container-width: 960px; } }
@media (min-width: 1200px) { :root { --container-width: 1140px; } }
@media (min-width: 1400px) { :root { --container-width: 1320px; } }
@media (min-width: 1600px) { :root { --container-width: 1520px; } }
@media (min-width: 2000px) { :root { --container-width: 1820px; } }

/*--------------------------------------------------------------
# Body
--------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--white-color);
  background: var(--black-color);
  font-size: var(--font-size-base);
  overflow-x: hidden;
}

.body-bg {
  z-index: 99999;
  opacity: .02;
  pointer-events: none;
  background-image: url("../dmxDaten/background/grain-bg.gif");
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100vh;
  position: fixed;
}

.body-container img {
  max-width: 100%;
  height: auto!important;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

.container {
    max-width: var(--container-width)!important;
}

.section-spacing-lg {
  padding-top: var(--spacing-large);
  padding-bottom: var(--spacing-large);
}

.mt-navbar {
  margin-top: var(--height-navigation);
}

.mt-lg {
  margin-top: var(--spacing-large);
}

.mb-lg {
  margin-bottom: var(--spacing-large);
}

.mb-md {
  margin-bottom: var(--spacing-medium);
}

.pt-lg {
  padding-top: var(--spacing-large);
}

.pt-md {
  padding-top: var(--spacing-medium);
}

.pb-lg {
  padding-bottom: var(--spacing-large);
}

.mb-col {
  margin-bottom: 1.5rem;
}

.slidescroller {
  margin-top: calc(var(--height-navigation) * -1);
  padding-top: var(--height-navigation);
}

@media (max-width: 1199px) {
.mb-col-xl {
  margin-bottom: 1.5rem;
}
}

@media (max-width: 991px) {
.mb-col-lg {
  margin-bottom: 1.5rem;
}
}

@media (max-width: 767px) {
.mb-col-md {
  margin-bottom: 1.5rem;
}
}

/*--------------------------------------------------------------
# Backgrounds
--------------------------------------------------------------*/

.bg-red {
  background-color: var(--primary-color)!important;
}

.bg-gradient {
  background: #C40514;
  background: linear-gradient(-30deg, rgba(196, 5, 20, 0.25) 0%, rgba(23, 23, 23, 1) 50%) !important;
}

.bg-dark {
      background: rgba(255, 255, 255, 0.05)!important;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

a {
  color: var(--white-color);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none!important;
}

a:hover,
a:focus {
  color: var(--grey-color);
}

/*--------------------------------------------------------------
# Typografie
--------------------------------------------------------------*/

h1,h2.lead-title {
  font-size: var(--font-size-h1);
  font-weight: 550;
  margin-bottom: 2.5rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 550;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 450;
}

.lead,h1.eyebrow {
  font-size: var(--font-size-lead);
  font-weight: 400;
}

.text-main {
  color: var(--primary-color);
}

.text-grey {
  color: var(--grey-color);
}

strong,.strong {
  font-style: normal!important;
  font-weight: 500;
}

.modal-content {
  background: var(--black-color);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn {
  padding: .6rem 1.8rem;
  font-size: var(--font-size-base);
  border-radius: 40px;
  font-weight: 450;
  border-width: 1.5px;
}

.btn-sm {
  padding: .5rem 1.2rem;
  font-size: var(--font-size-small);
}

.btn-main {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-main:hover,
.btn-main:focus,
.btn-main:active {
  color: var(--white-color)!important;
  background: var(--secondary-color)!important;
  border-color: var(--secondary-color)!important;
}

.btn-white {
  color: var(--black-color);
  background: var(--white-color);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  color: var(--white-color)!important;
  background: var(--dark-grey-color)!important;
  border-color: var(--white-color)!important;
}

.btn-main-outline {
  color: var(--white-color);
  background: none;
  border-color: var(--white-color);
}

.btn-main-outline:hover,
.btn-main-outline:focus,
.btn-main-outline:active {
  color: var(--white-color)!important;
  background: var(--dark-grey-color)!important;
  border-color: var(--white-color)!important;
}

@media (max-width: 767px) {
.btn-w-100 {
  width: 100%;
}
}

/*--------------------------------------------------------------
# Formulare
--------------------------------------------------------------*/

label {
  margin-bottom: .5rem;
}

.form-control {
    color: var(--white-color)!important;
    border-radius: var(--border-radius-sm)!important;
    background: rgba(255, 255, 255, 0.05)!important;
  border: 1.5px solid rgba(255,255,255,0.25)!important;
    font-size: 18px!important;
    padding: .6rem 1rem;
    -webkit-box-shadow: none!important;
            box-shadow: none!important;
}

.invalid-feedback {
  display: none!important;
}

.form-control-text {
  background: transparent!important;
}

/* Placeholder */
#kontaktformular .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
#kontaktformular .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
#kontaktformular .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
#kontaktformular .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
#kontaktformular .form-control::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

/* Autofill Chrome / Safari */
#kontaktformular input:-webkit-autofill,
#kontaktformular input:-webkit-autofill:hover,
#kontaktformular input:-webkit-autofill:focus,
#kontaktformular textarea:-webkit-autofill,
#kontaktformular select:-webkit-autofill {
  -webkit-text-fill-color: var(--white-color);
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
          box-shadow: 0 0 0px 1000px transparent inset;
}

/* Firefox Autofill */
#kontaktformular input:-moz-autofill {
  box-shadow: 0 0 0px 1000px transparent inset;
  -moz-text-fill-color: var(--white-color);
}

/* ---- 2-Step Form ---- */
.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

/* Radio-Optionen */
.service-options {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.service-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--border-radius-sm);
  padding: .85rem 1.2rem;
  margin-bottom: .75rem;
  cursor: pointer;
  font-weight: 400;
  font-size: 18px!important;
  color: #fff;
  -webkit-transition: border-color .2s, background .2s;
  transition: border-color .2s, background .2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.service-option:hover {
  border-color: rgba(255,255,255,1);
  background: rgba(255,255,255,0.08);
}

.service-option.is-selected {
  border-color: #fff;
  background: rgba(255,255,255,0.15);
}

.service-option__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: border-color .2s, background .2s;
  transition: border-color .2s, background .2s;
}

.service-option.is-selected .service-option__dot {
  background: #fff;
  border-color: #fff;
}

.service-option.is-selected .service-option__dot::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* Navigation */
.form-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
}

.form-nav .step-indicator {
  color: rgba(255,255,255,0.6);
  font-size: .9rem;
}

.step1-error {
  display: none;
  color: rgba(255,255,255,0.85);
  font-size: .85rem;
  margin-bottom: .75rem;
}

.step1-error.is-visible {
  display: block;
}

.btn-back {
  padding: 6px 12px;
}

.card-contact {
  border-radius: var(--border-radius-md);
  border: rgba(255, 255, 255, 0.15);
  color: white!important;
  background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(7.5px);
            backdrop-filter: blur(7.5px);
}

/*--------------------------------------------------------------
# Images
--------------------------------------------------------------*/

img.icons {
  width: 60px!important;
  height: 60px!important;
  margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
img.icons {
  width: 80px!important;
  height: 80px!important;
  margin-bottom: 1.75rem;
}
}

.image-container {
    display: block;
    overflow: hidden;
}

.img-square {
    aspect-ratio: 1 / 1;
    width: 100%;
    min-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:hover .img-square {
    opacity: 0.5;
}

.image-container a h3 {
    color: var(--white-color)!important;
}

.image-container-caption {
    padding: 180px var(--padding-cards) var(--padding-cards) var(--padding-cards);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.78)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 100%);
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: var(--border-radius-lg);
}

.card-link-icon {
    position: absolute;
    top: var(--padding-cards);
    right: var(--padding-cards);
    pointer-events: none;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:hover .card-link-icon {
    top: calc(var(--padding-cards) - 4px);
    right: calc(var(--padding-cards) - 4px);
}

.card-link-icon .circle-link {
  fill: var(--primary-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-link-icon .circle-link-arrow {
  fill: var(--white-color);
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/

.img-rounded {
    border-radius: var(--border-radius-lg)!important;
}

.card {
    border-radius: var(--border-radius-lg)!important;
}

.card.border-small {
    border-radius: var(--border-radius-md)!important;
}

.card-img-top {
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0!important;
}

.card-header {
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0!important;
}

.card-body {
    padding: var(--padding-cards);
}

.card-footer {
    padding: 0 var(--padding-cards) var(--padding-cards) var(--padding-cards);
    background: none;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg)!important;
    border-top: none;
}

.card-logos {
  border: none;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
  text-align: center;
}

.card-logos img {
  max-height: 80px;
}

@media (max-width: 1199px) {
.card-logos {
  margin-bottom: 1.5rem;
}
.card-logos img {
  max-height: 50px;
}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header-fullscreen {
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: var(--black-color);
  padding-top: var(--height-navigation);
}

.header-normal {
  padding-top: var(--height-navigation);
  position: relative;
  background: #C40514;
  background: linear-gradient(-30deg, rgba(196, 5, 20, 0.25) 0%, rgba(23, 23, 23, 1) 50%) !important;
}

.header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 1;
}

.header-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  opacity: 1;
}

@media (min-width: 1200px) {
.header-fullscreen .overlay-header {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    background: var(--black-color);
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgba(16, 16, 16, 1)), color-stop(90%, rgba(16, 16, 16, 0)));
    background: linear-gradient(90deg, rgba(16, 16, 16, 1) 20%, rgba(16, 16, 16, 0) 90%);
    opacity: 0.75;
}
}

.header-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding-bottom: 40px;
    z-index: 3;
}

@media (max-width: 1199px) {
    .header-fullscreen {
      height: 100%;
      min-height: 100%;
      display: block;
    }
    .header-fullscreen .section-spacing-lg {
      padding-bottom: 0!important;
    }
    .position-relative-mobile {
        position: relative;
    }
    .header-bg {
      position: relative;
      width: 100%;
      height: 50dvh;
      max-height: 50dvh;
    }
    .header-video {
      position: relative;
      width: 100%;
      height: 50dvh;
      max-height: 50dvh;
    }
}

/*--------------------------------------------------------------
# Galerie News
--------------------------------------------------------------*/


.fullscreen-slideshow {
    position: relative;
    width: 100%;
    max-height: 80dvh;
    overflow: hidden;
    background: #000;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

@media (max-width: 1199px) {
.fullscreen-slideshow {
    max-height: 50dvh;
}
}

.slideshow-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 80dvh;
    max-height: 80dvh;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideshow-slide {
    min-width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.slideshow-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255, 0.15);
    -webkit-backdrop-filter: blur(7.5px);
            backdrop-filter: blur(7.5px);
    border: none;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}

.slideshow-btn:hover {
    background: rgba(255,255,255, 0.3);
}

.slideshow-btn svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slideshow-btn-prev { left: 16px; }
.slideshow-btn-next { right: 16px; }

.slideshow-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    -webkit-transition: background 0.2s;
    transition: background 0.2s
}

@media (max-width: 767px) {
.slideshow-dots {
    bottom: 1.5rem;
    gap: 8px;
}
}

.slideshow-dot.active {
    background: #fff;
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.666%;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.gallery-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

body.nav-open {
  overflow: hidden;
}

#navigation {
  position: fixed;
  top: 0;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--black-color);
  z-index: 1002;
}

#navigation .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-brand {
  z-index: 1002;
  padding: 0;
}

.navbar-logo {
  height: 68px;
}

.nav-link {
  color: var(--grey-color)!important;
  font-size: var(--font-size-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white-color)!important;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item.active {
  color: var(--white-color)!important;
  background: var(--primary-color)!important;
}

.nav-item.dropdown.active > .nav-link {
  color: var(--white-color)!important;
  background: none!important;
}

#burgerToggle {
  display: none;
}

@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (max-width: 1199px) {
  .navbar-logo {
    height: 50px;
  }

  .nav-link {
    font-size: var(--font-size-h2);
  }

  #burgerToggle {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-shadow: none!important;
            box-shadow: none!important;
    border: none;
    background: transparent;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 40px;
    width: 40px;
    z-index: 1003;
  }

  .burger-line {
    display: block;
    width: 30px;
    height: 2px;
    margin: 4px auto;
    background-color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .burger-open .burger-line:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(7px, 7px);
            transform: rotate(45deg) translate(7px, 7px);
  }
  .burger-open .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-open .burger-line:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(7px, -7px);
            transform: rotate(-45deg) translate(7px, -7px);
  }

  .navbar-collapse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    position: relative;
    top: 0;
    left: 0;
    height: calc(100dvh - var(--height-navigation));
    width: 100vw;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 60px;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .navbar-nav.navbar-main {
    margin: auto;
  }

.nav-item.dropdown > .nav-link {
  text-align: center;
}

  .dropdown-menu {
    position: static !important;
    float: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
  }

  .dropdown-menu .dropdown-item {
    padding: 2px;
    text-align: center;
    color: var(--grey-color);
    font-size: var(--font-size-lead);
  }

  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item.active {
  color: var(--white-color)!important;
  background: none!important;
  }

  .navbar-nav .dropdown-menu li:last-child .dropdown-item {
    margin-bottom: 10px;
  }
}

h3.tuning-title::before {
  content: "";
  display: inline-block;
  margin-bottom: -4px;
  margin-right: 12px;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='3 4.5 10 7'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='3 4.5 10 7'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.section-normal { 
  min-height: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.section-normal .container-fluid { 
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
}

.section-bg-half {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    width: 50%;
    right: 0;
    left: auto;
}

.section-bg-half-right {
  left: 0;
  right: auto;
}

img.section-bg-half {
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.text-zertifikat {
  color: var(--grey-color);
}

.text-zertifikat::before {
  content: url("data:image/svg+xml,%3Csvg width='19' height='20' viewBox='0 0 19 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.7924 3.74722C18.7583 3.61953 18.6992 3.49987 18.6185 3.39517C18.5378 3.29046 18.4372 3.20279 18.3224 3.13722L13.1224 0.137223C13.0089 0.0706903 12.8834 0.0272213 12.753 0.00930814C12.6226 -0.00860505 12.49 -0.000610311 12.3627 0.0328341C12.2354 0.0662785 12.116 0.124515 12.0113 0.204204C11.9066 0.283894 11.8186 0.38347 11.7524 0.497223L9.41245 4.55722L7.07245 0.497223C7.00628 0.38347 6.91832 0.283894 6.8136 0.204204C6.70887 0.124515 6.58945 0.0662785 6.46218 0.0328341C6.3349 -0.000610311 6.20228 -0.00860505 6.07191 0.00930814C5.94154 0.0272213 5.81598 0.0706903 5.70245 0.137223L0.502447 3.13722C0.387679 3.20279 0.287049 3.29046 0.206376 3.39517C0.125702 3.49987 0.0665864 3.61953 0.0324471 3.74722C-0.0337362 4.00067 0.00217034 4.26997 0.132447 4.49722L4.13245 11.3272C3.68619 12.1448 3.43949 13.0562 3.41245 13.9872C3.41007 14.8955 3.61393 15.7925 4.00867 16.6105C4.4034 17.4285 4.97871 18.1463 5.6912 18.7096C6.4037 19.2729 7.23479 19.6671 8.12182 19.8625C9.00884 20.0579 9.92865 20.0493 10.8119 19.8375C11.6951 19.6256 12.5187 19.216 13.2206 18.6395C13.9225 18.063 14.4844 17.3347 14.8638 16.5095C15.2432 15.6842 15.4304 14.7836 15.4111 13.8755C15.3918 12.9675 15.1666 12.0756 14.7524 11.2672L18.6524 4.50722C18.725 4.39616 18.7748 4.27177 18.7988 4.14129C18.8229 4.01081 18.8207 3.87686 18.7924 3.74722ZM2.41245 4.36722L5.87245 2.36722L9.09245 7.98722C7.71987 8.07202 6.41923 8.63045 5.41245 9.56722L2.41245 4.36722ZM9.41245 17.9872C8.35158 17.9872 7.33417 17.5658 6.58402 16.8156C5.83387 16.0655 5.41245 15.0481 5.41245 13.9872C5.41245 12.9264 5.83387 11.9089 6.58402 11.1588C7.33417 10.4086 8.35158 9.98722 9.41245 9.98722C10.4733 9.98722 11.4907 10.4086 12.2409 11.1588C12.991 11.9089 13.4124 12.9264 13.4124 13.9872C13.4124 15.0481 12.991 16.0655 12.2409 16.8156C11.4907 17.5658 10.4733 17.9872 9.41245 17.9872ZM13.4124 9.53722C12.8695 9.04134 12.2387 8.6513 11.5524 8.38722L10.5724 6.55722L12.9924 2.36722L16.4524 4.36722L13.4124 9.53722Z' fill='white'/%3E%3C/svg%3E");
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  opacity: 0.75;
  margin-bottom: -2px;
}

@media (max-width: 1199px) {
    .section-normal { 
        min-height: 100%;
        display: block;
    }
    .section-normal .container-fluid { 
        padding-top: var(--spacing-medium)!important;
        margin-top: 0;
        margin-bottom: 0;
    }
    h3.tuning-title::before {
      width: 18px;
      height: 18px;
    }
    .position-relative-mobile {
        position: relative;
    }
    .section-bg-half {
        position: relative;
        margin-top: 0;
        aspect-ratio: 3 / 2;
        width: 100%;
        height: auto;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-logo {
  max-height: 160px;
}

@media (max-width: 1199px) {
.footer-logo {
  max-height: 80px;
}
}

a.footer-link::before {
  content: "";
  display: inline-block;
  margin-bottom: -5px;
  margin-right: 10px;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='3 4.5 10 7'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='3 4.5 10 7'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

@media (max-width: 991px) {

a.footer-link::before {
  width: 18px;
  height: 18px;
}
}


.faq-list {
    border-top: 1px solid #dee2e6;
}

.faq-item {
    border-bottom: 1px solid #dee2e6;
}

.faq-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
    color: inherit;
}

.faq-trigger:hover .faq-question {
    opacity: 0.7;
}

.faq-question {
    margin: 0;
    -webkit-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
}

.faq-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: currentColor;
}

.icon-minus { display: none; }

.faq-trigger[aria-expanded="true"] .icon-plus  { display: none; }
.faq-trigger[aria-expanded="true"] .icon-minus { display: block; }

.faq-answer {
    overflow: hidden;
}

.faq-answer[hidden] {
    display: none;
}

.faq-answer-inner {
    padding-bottom: 1.25rem;
}

.faq-answer-inner a {
    color: inherit;
    text-decoration: underline;
}

.faq-answer-inner p:last-of-type {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

#popupToast {
  background: var(--black-color);
  color: var(--white-color);
  min-width: 320px;
  max-width: 400px;
        border-radius: var(--border-radius-sm);
        -webkit-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.95);
                box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.95);
}

@media (max-width: 414px) {
#popupToast {
  min-width: calc(100vw - 30px);
  max-width: calc(100vw - 30px);
}
}

#popupToast h5 {
  font-size: var(--font-size-base);
}

#popupToast .small {
  font-size: var(--font-size-small);
}

#popupToast .tiny {
  font-size: var(--font-size-tiny);
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

    .cookie-consent-banner {
        display: none;
        bottom: 1rem;
        left: 1rem;
        position: fixed;
        padding: 1rem;
        border-radius: var(--border-radius-sm);
        width: 300px;
        text-align: left;
        max-height: 85%;
        overflow-y: auto;
        max-width: calc(100% - 40px);
        z-index: 997;
        opacity: 1;
        font-size: var(--font-size-tiny);
        -webkit-box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.95);
                box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.95);
        color: var(--white-color);
        background-color: var(--black-color);
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }

    .cookie-consent-options label {
        margin: 0 10px;
        font-size: 14px;
    }

    .cookie-consent-options input {
        margin-right: 5px;
    }

    @media (max-width: 414px) {
        .cookie-consent-banner {
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            border-radius: 0;
            max-width: 100%;
            background-color: var(--black-color);
            text-align: center;
        }
    }

/*--------------------------------------------------------------
# Tiny MCE
--------------------------------------------------------------*/

.tox-tinymce {
  top: auto!important;
  bottom: 0!important;
  position: fixed!important;
}

.tox-form__group--stretched .tox-label {
  display: none!important;
}

.tox-form__group {
  margin-bottom: 10px!important;
}