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

@font-face {
    font-family: 'Hind Madurai';
    src: url('fonts/HindMadurai-Medium.woff2') format('woff2'),
        url('fonts/HindMadurai-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hind Madurai';
    src: url('fonts/HindMadurai-Regular.woff2') format('woff2'),
        url('fonts/HindMadurai-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hind Madurai';
    src: url('fonts/HindMadurai-SemiBold.woff2') format('woff2'),
        url('fonts/HindMadurai-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
  /* Colors */
  --primary-color: #E20613;
  --secondary-color: #E1DDDA;
  --black-color: #1D1D1B;
  --white-color: #ffffff;
  --grey-color: #F6F5F4;

  /* Spacing */
  --spacing-large: 80px;
  --spacing-medium: 40px;
  --spacing-small: 30px;
  --spacing-col: 30px;
  --height-navigation: 94px;

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

  /* Border Radius */
  --border-radius: 0;

  /* Paddings */
  --padding-cards: 1.5rem;

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

@media (min-width: 1200px) {
:root {
  /* Spacing */
  --spacing-large: 140px;
  --spacing-medium: 80px;
  --spacing-small: 40px;
  --spacing-col: 30px;
  --height-navigation: 110px;

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

  /* Paddings */
  --padding-cards: 2rem;
}
}

@media (min-width: 2000px) {
:root {
  /* Font Sizes */
  --font-size-base: 22px;
  --font-size-h1: 56px;
  --font-size-h2: 38px;
  --font-size-h3: 26px;
  --font-size-lead: 26px;
}
}

@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: 1200px) { :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: 'Hind Madurai', sans-serif;
  font-weight: 400;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--black-color);
  font-size: var(--font-size-base);
  overflow-x: hidden;
}

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

* {
    scroll-padding-top: calc(var(--height-navigation) - 10px);
}

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

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

.lead-container {
  max-width: 1000px;
}

.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);
}

.mt-md {
  margin-top: var(--spacing-medium);
}

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

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

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

.mb-col {
  margin-bottom: 30px;
}

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

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

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

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

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

.bg-light {
  background-color: var(--grey-color)!important;
}

.bg-dark {
  background-color: var(--black-color)!important;
}

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

.bg-dark a,
a.link-white {
  color: var(--white-color)!important;
}

.bg-dark a:hover,
a.link-white:hover {
  color: var(--secondary-color)!important;
}

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

a {
  color: var(--primary-color);
  text-decoration: none!important;
}

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

.icon-card {
  height: 30px;
  width: 30px;
  margin-bottom: 1.5rem;
}

img.logo-card {
  height: 30px!important;
  margin-bottom: 1.5rem;
}

img.logo-card-lg {
  height: 50px!important;
  margin-bottom: 1.5rem;
}

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

h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
}

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

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

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

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

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

strong,.strong {
  font-weight: 600;
}

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

.btn {
  padding: .5rem 1.75rem .45rem 1.75rem;
  font-size: var(--font-size-base);
  border-radius: 0!important;
  border: none!important;
  -webkit-box-shadow: none!important;
          box-shadow: none!important;
  -webkit-clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
          clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

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

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

.btn-white,
.bg-dark .btn-white {
  color: var(--black-color)!important;
  background: var(--white-color)!important;
}

@media (min-width: 992px) {
.btn-main:hover,
.btn-main:focus,
.btn-main:active {
  color: var(--white-color)!important;
  background: var(--black-color)!important;
  border-color: var(--black-color)!important;
}

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

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

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

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

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

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

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

.card-header {
    border-radius: var(--border-radius) var(--border-radius) 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) var(--border-radius)!important;
    border-top: none;
}

/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/

.accordion {
    --bs-accordion-border-radius: var(--border-radius);
    --bs-accordion-inner-border-radius: calc(var(--border-radius) - (var(--border-radius)));
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.accordion-button {
    -webkit-box-shadow: none!important;
            box-shadow: none!important;
}

.accordion-button:not(.collapsed) {
    color: var(--black-color);
    background: none;
}

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

.google-rating {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    margin-top: 3rem;
}

.gr-logo {
    height: 22px;
    width: auto;
    margin-top: -2px;
    margin-right: 2px;
}

.gr-score {
    font-weight: 600;
}

.gr-stars {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}
.gr-stars::before {
    content: "\2605\2605\2605\2605\2605";
    letter-spacing: 2px;
}

.gr-stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: #fbbc04;
    white-space: nowrap;
}
.gr-stars-fill::before {
    content: "\2605\2605\2605\2605\2605";
    letter-spacing: 2px;
}

.gr-count {
    color: rgba(255, 255, 255, 0.75);
}

.header-fullscreen {
  min-height: calc(100svh - var(--height-navigation));
  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);
  margin-top: var(--height-navigation);
}

.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, from(rgba(16, 16, 16, 1)), color-stop(60%, rgba(16, 16, 16, 0)));
    background: linear-gradient(90deg, rgba(16, 16, 16, 1) 0%, rgba(16, 16, 16, 0) 60%);
    opacity: 0.6;
}

.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.6;
}

.header-normal {
  min-height: 100%;
}

.footer-header {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding-bottom: var(--spacing-medium);
  z-index: 3;
}

@media (max-width: 1199px) {
.header-fullscreen .overlay-header {
  background: none;
}
.position-relative-mobile {
  position: relative;
}
.header-fullscreen {
  min-height: 100%;
  display: block;
  padding-bottom: 0;
}
}

@media (min-width: 1200px) {
.header-fullscreen .container-fluid .position-relative {
  padding-top: var(--spacing-small);
  padding-bottom: var(--spacing-small);
}
}

.card-widget {
  max-width: 100%;
  width: 650px;
  padding: 0.75rem;
  border: 0;
  background: rgba(255, 255, 255, 0.10);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  }

#carouselHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1199px) {
#carouselHeader {
    position: relative;
    aspect-ratio: 3 / 2;
}
.header-btns .btn {
  display: block;
  width: 100%;
}
.portrait-widget {
  margin-bottom: 2rem;
  width: 120px;
  border-radius: 60px;
}
}

#carouselHeader .carousel-inner,
#carouselHeader .carousel-item {
    height: 100%;
}
#carouselHeader img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.header-arrow {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius);
  border: none;
  background: rgba(255, 255, 255, 0.10);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: var(--white-color);
  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;
  position: relative;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.header-arrow:hover {
  background: var(--white-color);
  color: var(--black-color);
}

.header-arrow::after {
  content: "";
  width: 18px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,\ <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'>\ <path d='M18 6.99954L10.8002 14L9.09695 12.3439L13.4045 8.16674H0V5.8351L2.39994 5.83326H13.4045L9.09695 1.65608L10.8002 0L18 6.99954Z'/>\ </svg>");
  mask-image: url("data:image/svg+xml;utf8,\ <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'>\ <path d='M18 6.99954L10.8002 14L9.09695 12.3439L13.4045 8.16674H0V5.8351L2.39994 5.83326H13.4045L9.09695 1.65608L10.8002 0L18 6.99954Z'/>\ </svg>");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.header-arrow.arrow-prev::after { -webkit-transform: rotate(180deg); transform: rotate(180deg); }
.header-arrow.arrow-next::after { -webkit-transform: rotate(0deg); transform: rotate(0deg); }

/*--------------------------------------------------------------
# Downloads
--------------------------------------------------------------*/

    .womo-downloadlist {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .womo-downloadlist a {
        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;
        gap: 1rem;
        padding: 0.5rem 0;
        text-decoration: none;
    }

    .womo-downloadlist .womo-dl-item:last-child a {
        padding-bottom: 0;
    }

    .womo-downloadlist .womo-dl-item {
        border-bottom: 1px solid currentColor;
        border-color: rgba(0, 0, 0, .12);
    }

    .womo-downloadlist .womo-dl-item:last-child {
        border-bottom: none;
    }

    .womo-downloadlist .womo-dl-title {
        font-weight: 500;
    }

    .womo-downloadlist .womo-dl-icon {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        font-size: 1.25rem;
    }


/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/

.service-list { margin-top: .5rem; }
.service-step {
  position: relative;
  padding-left: 2.25rem;
  padding-bottom: 1.5rem;
}
.service-step:last-child { padding-bottom: 0; }
.service-step::before {              /* Punkt */
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-color, #d81f2a);
  z-index: 2;
}
.service-step::after { 
  content: "";
  position: absolute;
  left: 7px;
  top: 14px;
  width: 2px;
  height: 100%;
  background: var(--primary-color, #d81f2a);
  z-index: 1;
}
.service-step:last-child::after { display: none; }
.service-step .service-title { margin-bottom: .5rem; }
 
/* Galerie */
.service-img {
  display: block;
  width: 100%;
  border-radius: var(--border-radius, 1rem);
}
@media (min-width: 992px) {
  .service-gallery-offset { margin-top: 10rem; } 
}

/*--------------------------------------------------------------
# über uns
--------------------------------------------------------------*/

/* Ansprechpersonen */
.person-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
 
/* Map */
.map-embed {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
.person-img {
  width: 80px;
  height: 80px;
  border-radius:40px;
}
}

/*--------------------------------------------------------------
# Mieten
--------------------------------------------------------------*/

.womo-fahrzeuge .womo-divider { margin: 3rem 0; border: 0; border-top: 1px solid currentColor; opacity: .1; }

.womo-gallery { position: relative; }

.womo-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.womo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.womo-slide.is-active { opacity: 1; }

.womo-single {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  -o-object-fit: cover;
     object-fit: cover;
}

.womo-arrows {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .5rem;
}

.womo-downloads {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*--------------------------------------------------------------
# Prozess
--------------------------------------------------------------*/

.womo-stepper .womo-step { position: relative; }
 
.womo-step-marker {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 22px;
  margin-bottom: 1.5rem;
}
.womo-step-marker::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white-color, #fff);
  position: relative;
  z-index: 2;
}
.womo-step-title { color: var(--white-color, #fff); }
 
@media (min-width: 992px) {
  .womo-step-marker::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 11px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 2px;
    width: calc(100% + var(--bs-gutter-x, 1.5rem));
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
  .womo-stepper .womo-step:last-child .womo-step-marker::after { display: none; }
}
 
@media (max-width: 991px) {
  .womo-stepper .womo-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .womo-stepper .womo-step:last-child { margin-bottom: 0; }
  .womo-step-marker { margin-bottom: 0; margin-left: 0.75rem; }
  .womo-stepper .womo-step::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 11px;
    width: 2px;
    height: calc(100% + 2rem);
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
     margin-left: 0.75rem;
  }
  .womo-stepper .womo-step:last-child::after { display: none; }
}

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

body.nav-open {
  overflow: hidden;
}

#navigation {
  position: fixed;
  top: 0;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--white-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: 70px;
  margin-right: 80px;
}

.nav-link {
  color: var(--black-color);
  font-size: var(--font-size-base);
}

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

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

.nav-item.dropdown.active > .nav-link {
  color: var(--primary-color);
}

#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: 54px;
    margin-right: 0;
  }

  .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(--black-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: start;
        -ms-flex-align: start;
            align-items: start;
  }

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

  .navbar-lg {
    margin-left: 0;
    margin-right: auto;
  }

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

  .dropdown-menu .dropdown-item {
    padding: 0;
    text-align: left;
  }

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

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

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

.cta-wolf {
  position: relative;
  overflow: hidden;
}

.cta-wolf-img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-logo {
  height: 120px;
}

.some-icons {
    height: 50px;
    width: 50px;
    font-size: 26px !important;
    color: var(--white-color);
    background: rgba(225, 225, 225, 0.1);
    padding-top: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-navigation a {
  font-size: var(--font-size-lead);
}

.footer-navigation a::before {
    content: '';
    display: inline-block;
    width: 0.65em;
    height: 0.65em;
    margin-right: 8px;
    margin-top: -5px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 11'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.18105e-07 5.25095C8.83326e-07 5.05203 0.0790186 4.86127 0.219671 4.72062C0.360323 4.57997 0.551088 4.50095 0.750001 4.50095L9.4395 4.50095L6.219 1.28195C6.07817 1.14112 5.99905 0.95011 5.99905 0.750947C5.99905 0.551783 6.07817 0.360776 6.219 0.219946C6.35983 0.0791165 6.55084 0 6.75 0C6.94916 0 7.14017 0.0791164 7.281 0.219946L11.781 4.71995C11.8508 4.78961 11.9063 4.87238 11.9441 4.96349C11.9819 5.05461 12.0013 5.15229 12.0013 5.25095C12.0013 5.3496 11.9819 5.44728 11.9441 5.5384C11.9063 5.62951 11.8508 5.71228 11.781 5.78195L7.281 10.2819C7.14017 10.4228 6.94917 10.5019 6.75 10.5019C6.55084 10.5019 6.35983 10.4228 6.219 10.2819C6.07817 10.1411 5.99905 9.95011 5.99905 9.75095C5.99905 9.55178 6.07817 9.36078 6.219 9.21995L9.4395 6.00095L0.750001 6.00095C0.551089 6.00095 0.360323 5.92193 0.219671 5.78128C0.0790188 5.64063 0 5.44986 0 5.25095Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Desktop ab lg: rechte Hälfte, links schräg angeschnitten */
@media (min-width: 992px) {
  .cta-wolf-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 0;
    -webkit-clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  }

  /* Inhalt über dem Bild halten */
  .cta-wolf .container {
    position: relative;
    z-index: 2;
  }
}

.footer-navigation li .btn-link,
.footer-navigation li {
  text-decoration: none!important;
  font-size: var(--font-size-base);
}

.footer-navigation li ul li {
  font-size: var(--font-size-small);
}

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

#popupToast {
  background: var(--white-color);
  color: var(--text-color);
  min-width: 320px;
  max-width: 400px;
        border-radius: var(--border-radius);
        -webkit-box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.15);
                box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.15);
}

@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);
        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 2px 8px 0 rgba(0, 0, 0, 0.15);
                box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.15);
        color: var(--text-color);
        background-color: #ffffff;
        -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: #ffffff;
            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;
}