:root {
  --main-light-color: 255, 255, 255;
  --sub-light-color: 238, 238, 238;
  --third-light-color: 248, 248, 248;

  --main-dark-color: 50, 50, 50;
  --sub-dark-color: 80, 84, 84;

  --main-highlight-color: 75, 37, 65;
  --sub-highlight-color: 210, 105, 138;

  --main-font-stack: 'Barlow', Arial, Helvetica, sans-serif;
  --sub-font-stack: 'Crimson Pro', Arial, Helvetica, sans-serif;

  --col-padding: 80px;
}
body:not(.home) .cols-wrapper {
  --col-padding: 50px;
}

@media screen and (min-width: 1024px) {
  :root,
  body:not(.home) .cols-wrapper {
    --col-padding: 50px;
  }
}
@media screen and (min-width: 1440px) {
  :root,
  body:not(.home) .cols-wrapper {
    --col-padding: 100px;
  }
}

html {
  font-size: 62.5%;
  line-height: 1.4;
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}

body {
  background: rgb(var(--third-light-color));
  color: rgb(var(--sub-dark-color));
  font-family: var(--main-font-stack);
  font-size: 1.7rem;
  /*overflow-x: hidden;*/ /* REMOVED BECAUSE OF POSITION STICKY EFFECTS */
  scroll-behavior: smooth;
}

/*
 * Dynamic Changer
 */
#content-wrapper{
  background-color: rgb(var(--third-light-color));
  transition: all .4s;
}
body.light #content-wrapper{
  background-color: rgb(var(--third-light-color));
}
body.dark #content-wrapper{
  background-color: rgb(var(--main-highlight-color));
}
body.grey #content-wrapper{
  background-color: rgb(var(--sub-light-color));
}

body.dark table,
body.dark ul,
body.dark li,
body.dark p,
body.dark h1,
body.dark *.h1-like,
body.dark *.h1-like > *,
body.dark h2,
body.dark *.h2-like,
body.dark *.h2-like > *,
body.dark h3,
body.dark *.h3-like,
body.dark *.h3-like > *,
body.dark h4,
body.dark *.h4-like,
body.dark *.h4-like > *,
body.dark h5,
body.dark h6,
body.dark .cfweb-cols{
  color: rgb(var(--main-light-color));
}

body.dark h1,
body.dark *.h1-like,
body.dark *.h1-like > *{
  background: transparent;
  -webkit-text-fill-color: rgb(var(--main-light-color));
}

#dynamic-changer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
}
#dynamic-changer > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: all .6s ease;
}

input,
select,
textarea{
  color: rgb(var(--sub-dark-color));
}

a,
a:hover,
a:focus {
  color: rgb(var(--main-highlight-color));
  text-decoration: none;
}

body.dark .content .cols a:not([class]),
body.dark .content .cols a:not([class]):hover,
body.dark .content .cols a:not([class]):focus {
  color: rgb(var(--sub-highlight-color));
}

h1,
*.h1-like,
*.h1-like > *,
h2,
*.h2-like,
*.h2-like > *,
h3,
*.h3-like,
*.h3-like > *,
h4,
*.h4-like,
*.h4-like > * {
  font-family: var(--main-font-stack);
  color: rgb(var(--main-dark-color));
  font-weight: 700;
  -webkit-hyphens: auto;
  -webkit-hyphenate-limit-chars: auto 3;
  -webkit-hyphenate-limit-lines: 4;
  -ms-hyphens: auto;
  -ms-hyphenate-limit-chars: 10 3 4;
  -ms-hyphenate-limit-lines: 4;
  hyphens: auto;
  hyphenate-limit-chars: 10 3 4;
  hyphenate-limit-lines: 4;
  line-height: 1.2;
  word-wrap: break-word;
  margin: 0;
}

@supports (-webkit-hyphens: none) and (not (hyphens: none)) {
  h1,
  *.h1-like,
  *.h1-like > *{
    hyphens: none;
    -webkit-hyphens: none;
  }
}
@supports (-webkit-touch-callout: none) {
  h1,
  *.h1-like,
  *.h1-like > *{
    hyphens: none;
    -webkit-hyphens: none;
  }
}
@supports (-webkit-overflow-scrolling: touch) {
  h1,
  *.h1-like,
  *.h1-like > *{
    hyphens: none;
    -webkit-hyphens: none;
  }
}

h1,
*.h1-like,
*.h1-like > * {
  font-size: 4.6rem;
  color: rgb(var(--main-highlight-color));
  background: linear-gradient(180deg, rgb(var(--main-highlight-color)) 0%, rgb(var(--sub-highlight-color)) 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0 10px;
  line-height: 1;
  letter-spacing: -0.02em;
}

h2,
*.h2-like,
*.h2-like > * {
  font-size: 2.6rem;
  font-weight: 400;
  padding: 0 0 25px;
}

h3,
*.h3-like,
*.h3-like > * {
  font-size: 1.9rem;
  padding: 0 0 10px;
  letter-spacing: 0.04em;
}

h4,
*.h4-like,
*.h4-like > * {
  font-size: 1.6rem;
  padding: 0 0 25px;
}

.h1-like > p,
.h2-like > p,
.h3-like > p,
.h4-like > p{
  padding: 0;
}

p {
  line-height: 1.5;
  padding: 0 0 1em;
  margin: 0;
}
/* ab 1024px */
@media screen and (min-width: 1024px) {
  body {
    padding-bottom: 0;
    font-size: 1.8rem;
  }

  .content {
    text-align: left;
  }

  h1,
  *.h1-like,
  *.h1-like > * {
    font-size: 5rem;
  }

  h2,
  *.h2-like,
  *.h2-like > * {
    font-size: 3rem;
    padding-bottom: 20px;
  }

  h3,
  *.h3-like,
  *.h3-like > * {
    font-size: 2rem;
  }
  h4,
  *.h4-like,
  *.h4-like > * {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1440px) {
  body {
    font-size: 2.2rem;
  }
  h1,
  *.h1-like,
  *.h1-like > * {
    font-size: 7rem;
  }

  h2,
  *.h2-like,
  *.h2-like > * {
    font-size: 4rem;
  }

  h3,
  *.h3-like,
  *.h3-like > * {
    font-size: 2.6rem;
  }
  h4,
  *.h4-like,
  *.h4-like > * {
    font-size: 2rem;
  }
}

.swiper {
  width: 100%;
}

.slider-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin: 0;
}

.swiper-button-next,
.swiper-button-prev{
  width: 28px;
  height: 22px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: '';
  background: url('/images/icons/slider-arrow.svg') no-repeat center;
  background-size: contain;
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-button-prev{
  left: 0;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-next:after{
  transform: rotate(180deg);
}
.swiper-pagination-bullet{
  width: 25px !important;
  height: 25px !important;
  margin: 0 !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
}
.swiper-pagination-bullet:before{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(var(--main-light-color), 0.6);
}
body.light .swiper-pagination-bullet:before,
body.grey .swiper-pagination-bullet:before{
  background: rgba(var(--main-dark-color), 0.6);
}
.swiper-pagination-bullet-active:before{
  width: 10px;
  height: 10px;
}

.topslider-wrapper {
  position: relative;
  margin-top: var(--header-height);
}

.topslider,
.topslider .swiper-wrapper{
  height: 60vh;
}
.topslider {
  width: 100%;
  max-width: inherit;
  box-sizing: content-box;
}
.topslider .swiper-button-next,
.topslider .swiper-button-prev {
  display: none;
}
.topslider .swiper-wrapper {
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 0;
  transform: none;
}
.topslider .swiper-heading{
  position: absolute;
  font-size: 3.3rem;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  color: rgb(var(--main-light-color));
  text-align: center;
  width: 100%;
  z-index: 2;
}
.topslider ul,
.topslider li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.home .topslider,
.home .topslider .swiper-wrapper {
  height: 100vh;
}
.home .topslider{
  padding-bottom: 300px;
}
.home .topslider .swiper-wrapper {
  top: 0;
}
.home .topslider .swiper-slide:after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.4);
  pointer-events: none;
}
.topslider-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topslider-video-desktop{
  display: none;
}
.topslider-marquee-wrapper {
  position: absolute;
  top: 25%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation: marquee 15s infinite linear;
  min-width: 200%;
  width: fit-content;
  will-change: transform;
  transform-style: flat;
  content-visibility: visible;
  z-index: 3;
}
.topslider-marquee-wrapper.is-paused{
  animation-play-state: paused;
}
.topslider-marquee-item {
  font-size: 11rem;
  color: rgb(var(--main-light-color));
  font-family: var(--main-font-stack);
  font-weight: 700;
  line-height: 1;
  display: block;
  opacity: 1;
  text-align: left;
  min-width: 50%;
  width: max-content;
  padding-right: 20px;
  height: 120px;
}
.topslider .pause-play-button{
  left: 10px;
  top: calc(var(--header-height) + 10px);
}
@media only screen and (min-width: 768px) {
  .topslider-video {
    height: 100%;
    object-position: center;
  }
  .topslider-video-desktop{
    display: block;
  }
  .topslider-video-mobile{
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .topslider-marquee-item{
    font-size: 14rem;
  }
  .topslider .pause-play-button{
    left: 25px;
    bottom: 25px;
  }
  .topslider .swiper-heading{
    top: 39%;
  }
}
@media only screen and (min-width: 1200px) {
  .topslider-marquee-wrapper {
    top: calc(35% - 60px);
  }
  .topslider .swiper-heading{
    top: 42%;
  }
}
@media only screen and (min-width: 1440px) {
  .topslider{
    padding-bottom: 0;
    box-sizing: border-box;
  }
  .topslider,
  .topslider .swiper-wrapper{
    height: 630px;
  }
  .home .topslider{
    --topslider-padding-bottom: 600px;
    height: 100vh;
    padding-bottom: var(--topslider-padding-bottom);
    box-sizing: content-box;
  }
  .home .topslider:before{
    content: '';
    width: 100%;
    height: 600px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(248, 248, 248, 0.00) 0%, #F8F8F8 100%);
    backdrop-filter: blur(9px);
    pointer-events: none;
    transition: all .4s;
    z-index: 3;
  }
  .topslider .swiper-heading{
    font-size: 7rem;
    top: 35%;
  }
  .topslider .pause-play-button{
    position: fixed;
    top: inherit;
  }

  .topslider-marquee-wrapper{
    top: 16%;
  }
  .topslider-marquee-item {
    font-size: 22rem;
    height: 200px;
  }
}
/*
 * Topslider Job Filter
 */
.topslider-job-filter-container{
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%,0);
  background-color: rgb(var(--main-light-color));
  color: rgb(var(--main-dark-color));
  border-radius: 40px;
  padding: 30px 20px 20px;
  width: 88.88%;
  max-width: 1380px;
  z-index: 3;
}
body:not(.home,.jobs) .topslider-job-filter-container{
  display: none;
}
.topslider-job-filter-wrapper{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.topslider-job-filter-field{
  position: relative;
}
.topslider-job-filter-wrapper label:not(.topslider-job-filter-regio-search-label){
  position: absolute;
  top: 0;
  left: 22px;
  padding: 0 5px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  transform: translateY(-50%);
  background: rgb(var(--main-light-color));
}
.topslider-job-filter-regio-search-heading{
  font-size: 1.4rem;
}
.topslider-job-filter-regio-search-label{
  padding: 0;
  line-height: 1;
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.topslider-job-filter-wrapper select,
.topslider-job-filter-wrapper input:not([type="checkbox"]){
  font-size: 1.8rem;
  min-height: 64px;
  border-radius: 18px;
  padding-left: 14px;
  border-color: #DDDDDD;
  color: rgb(var(--main-dark-color));
  background: transparent;
  transition: all .4s;
}
.topslider-job-filter-wrapper input::placeholder,
.topslider-job-filter-wrapper input:-webkit-autofill{
  -webkit-text-fill-color: rgb(var(--main-dark-color)) !important;
  color: rgb(var(--main-dark-color));
  opacity: 1;
}
.topslider-job-filter-wrapper select:active,
.topslider-job-filter-wrapper input:active,
.topslider-job-filter-wrapper select:focus-within,
.topslider-job-filter-wrapper input:focus-within{
  border-color: rgb(var(--sub-highlight-color));
  outline: none !important;
}
.topslider-job-filter-wrapper select{
  appearance: none;
  padding-right: 30px;
}
.topslider-job-filter-field:has(select):after{
  content: '';
  background: url('/images/icons/select-arrow.svg') no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 7px;
  pointer-events: none;
}
.topslider-job-filter-checkbox{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.topslider-job-filter-checkbox > input{
  width: 18px;
  height: 18px;
  accent-color: rgb(var(--sub-highlight-color));
}
button.topslider-job-filter-button{
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 280px;
  padding: 14px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
button.topslider-job-filter-button:before{
  content: '';
  position: absolute;
  left: 30px;
  background: url('/images/icons/suche.svg') no-repeat center;
  background-size: contain;
  width: 26px;
  height: 26px;
  transition: all .4s;
}
body:not(.home) .topslider-job-filter-container{
  bottom: 0;
  max-width: 1150px;
  transform: translate(-50%, 50%);
  z-index: 3;
}
@media screen and (min-width: 1024px) {
  .topslider-job-filter-container{
    position: fixed;
    bottom: 50px;
    padding: 30px 50px 30px;
  }
  .topslider-job-filter-wrapper{
    flex-direction: row;
    justify-content: space-between;
    gap: 20px 15px;
  }
  .topslider-job-filter-field{
    width: 260px;
  }
  .topslider-job-filter-field:has(.topslider-job-filter-checkbox){
    width: 260px;
    transform: translateY(-10px);
  }
  button.topslider-job-filter-button{
    height: 64px;
    font-size: 2.8rem;
    max-width: 230px;
    padding: 9px 10px;
    margin: 0;
  }
  button.topslider-job-filter-button:before{
    display: inline-block;
    position: relative;
    margin-right: 20px;
    left: inherit;
  }
  body:not(.home) .topslider-job-filter-container{
    position: absolute;
    padding: 25px 40px 25px;
    border-radius: 40px;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.07);
  }
  body:not(.home) .topslider-job-filter-field{
    width: 260px;
  }
  body:not(.home) .topslider-job-filter-field:has(.topslider-job-filter-checkbox){
    width: 225px;
    transform: translateY(-10px);
  }
  body:not(.home) button.topslider-job-filter-button{
    max-width: 220px;
    font-size: 2.4rem;
    height: 64px;
  }
  body:not(.home) .topslider-job-filter-wrapper label:not(.topslider-job-filter-regio-search-label),
  body:not(.home) .topslider-job-filter-regio-search-heading{
    font-size: 1.4rem;
  }
  body:not(.home) .topslider-job-filter-wrapper select,
  body:not(.home) .topslider-job-filter-wrapper input:not([type="checkbox"]),
  body:not(.home) .topslider-job-filter-regio-search-label{
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1440px) {
  .topslider-job-filter-container{
    border-radius: 40px 40px 0 0;
    width: 100%;
    bottom: 0;
  }
  .topslider-job-filter-wrapper{
    gap: 20px 25px;
  }
  .topslider-job-filter-field{
    width: 310px;
  }
  .topslider-job-filter-wrapper label:not(.topslider-job-filter-regio-search-label),
  .topslider-job-filter-regio-search-heading{
    font-size: 1.7rem;
  }
  .topslider-job-filter-wrapper select,
  .topslider-job-filter-wrapper input:not([type="checkbox"]),
  .topslider-job-filter-regio-search-label{
    font-size: 2.1rem;
  }
  button.topslider-job-filter-button{
    max-width: 260px;
  }
}

.content-wrapper {
  position: relative;
  min-height: 100vh;
  padding: 0;
  /*overflow: hidden;*/
  z-index: 2;
}
body.jobs #b-1 {
  padding-top: 240px;
}
body.no-topslider:not(.home) .content-wrapper{
  margin-top: var(--header-height);
}

@media screen and (min-width: 1440px) {
  body.jobs #b-1 {
    padding-top: 200px;
  }
}

.pre-link {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 10px;
  background: #fff;
  opacity: 0;
  z-index: -99;
}

.pre-link:focus-visible {
  opacity: 1;
  z-index: 99;
}

body.impressum table {
  margin-bottom: 40px;
}

/*
 * Job Process Custom Include
 */
.cols-100:has(.job-process-container){
  max-width: 1600px;
}
.job-process-headline{
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1;
  color: rgb(var(--sub-highlight-color));
  margin-bottom: 30px;
}
.job-process-headline span{
  color: rgb(var(--main-dark-color));
}
body.dark .job-process-headline span{
  color: rgb(var(--main-light-color));
}
.job-process-text{
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgb(var(--main-dark-color));
  margin-bottom: 40px;
}
body.dark .job-process-text{
  color: rgb(var(--main-light-color));
}
.job-process-box-1{
  margin-bottom: 40px;
  overflow: hidden;
}
.job-process-box-text:last-of-type{
  margin-bottom: 60px;
  padding: 0;
}
.job-process-steps-wrapper{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.job-process-steps-box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 280px;
  height: 250px;
  padding: 30px 19px 25px;
  background-color: rgb(var(--sub-highlight-color));
  font-size: 4rem;
  font-weight: 700;
  color: rgb(var(--main-light-color));
}
.job-process-steps-box:nth-child(2){
  background-color: rgb(var(--main-light-color));
  color: rgb(var(--main-dark-color));
}
.job-process-steps-box:nth-child(3){
  background-color: #5D3B54;
}
.job-process-steps-icon-wrapper{
  display: flex;
  justify-content: space-between;
  line-height: 1;
}
.job-process-steps-icon-wrapper > svg{
  width: 55px;
  height: 55px;
}
.job-process-steps-text{
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.job-process-box-text{
  max-width: 680px;
}
@media screen and (min-width: 768px) {
  .job-process-headline{
    font-size: 9rem;
  }
  .job-process-steps-wrapper{
    justify-content: flex-start;
  }
  .job-process-steps-box:nth-child(2) {
    transform: translateY(50%);
  }
}
@media screen and (min-width: 1024px) {
  .job-process-container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .job-process-box{
    width: 48%;
    margin: 0;
  }
  .job-process-box-1{
    position: sticky;
    top: 150px;
  }
  .job-process-box-2{
    padding-top: 100px;
  }
  .job-process-steps-box:nth-child(2) {
    transform: translateY(0);
  }
  .job-process-steps-box{
    width: 360px;
    height: 320px;
  }
}
@media screen and (min-width: 1440px) {
  .cols-wrapper:has(.job-process-container){
    padding-bottom: calc(var(--col-padding) + 80px);
  }
  .job-process-box-2{
    padding-top: 160px;
  }
  .job-process-headline{
    font-size: 14rem;
    margin-bottom: 50px;
  }
  .job-process-text{
    font-size: 5rem;
    margin-bottom: 75px;
  }
  .job-process-steps-wrapper{
    gap: 20px;
  }
  .job-process-steps-box{
    width: 47%;
    padding: 40px 30px 30px;
  }
  .job-process-steps-box:nth-child(2){
    transform: translateY(50%);
  }
}
@media screen and (min-width: 1600px) {
  .job-process-steps-wrapper{
    gap: 40px;
  }
  .job-process-steps-text{
    font-size: 5rem;
  }
  .job-process-steps-icon-wrapper > svg{
    width: 70px;
    height: 70px;
  }
}

/*
 * Benefits Slider Custom Include
 */
.benefits-slider-container{
  margin-top: 35px;
}
.benefits-slider{
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.text-big,
.text-big p{
  hyphens: auto;
  word-break: break-word;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1;
  padding: 0;
}
body.light .text-big,
body.light .text-big p,
body.grey .text-big,
body.grey .text-big p{
  color: rgb(var(--main-dark-color));
}
.cols-parallax:has(.benefits-slider-container) h2{
  font-size: 3.3rem;
  padding: 10px 0 0;
}
.benefits-slider .swiper-slide{
  background-color: rgba(var(--main-highlight-color),0.75);
  color: rgb(var(--main-light-color));
  padding: 30px 20px 60px;
  backdrop-filter: blur(15px);
  text-align: center;
  min-height: 330px;
  transition: all .4s;
}
.benefits-slider-icon{
  margin-bottom: 40px;
}
.swiper-slide-active .benefits-slider-icon > svg *{
  transition: all .4s;
}
.benefits-slider-title{
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 15px;
}
.benefits-slider-info{
  font-size: 1.8rem;
}
.benefits-slider .swiper-pagination{
  bottom: 0;
}
.benefits-slider .swiper-pagination-bullet{
  background: rgb(var(--main-light-color));
}
.benefits-slider .swiper-button-prev,
.benefits-slider .swiper-button-next{
  display: none;
}
.benefits-slider .pause-play-button{
  bottom: 3px;
}
/* MAX WIDTH */
@media screen and (max-width: 767px) {
  .benefits-slider .swiper-slide.swiper-slide-active{
    background-color: rgb(var(--main-light-color));
    color: rgb(var(--main-dark-color));
  }
  .benefits-slider .swiper-slide-active .benefits-slider-icon > svg .stroke_black{
    stroke: #323232;
  }
  .benefits-slider .swiper-slide-active .benefits-slider-icon > svg .fill_black{
    fill: #323232;
  }
}
@media screen and (min-width: 1024px) {
  .benefits-slider{
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .cols-parallax:has(.benefits-slider-container){
    padding: 125px 0 140px;
  }
  .text-big,
  .text-big p{
    font-size: 14rem;
  }
  .cols-parallax:has(.benefits-slider-container) h2{
    font-size: 5rem;
  }
  .benefits-slider-container{
    margin-top: 140px;
  }
  .benefits-slider{
    padding: 0 40px 50px;
    max-width: 1600px;
    margin-bottom: 90px;
  }
  .benefits-slider .swiper-slide{
    padding: 65px 10px 20px;
    min-height: 400px;
  }
  .benefits-slider-icon{
    margin-bottom: 55px;
    height: 80px;
  }
  .benefits-slider-title{
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  .benefits-slider-info{
    font-size: 2.2rem;
  }
  .benefits-slider .swiper-pagination{
    display: none;
  }
  .benefits-slider .swiper-button-prev,
  .benefits-slider .swiper-button-next{
    display: block;
    color: rgb(var(--main-light-color));
  }
  .benefits-slider .swiper-slide:hover,
  .benefits-slider .swiper-slide:focus{
    background-color: rgb(var(--main-light-color));
    color: rgb(var(--main-dark-color));
    transform: scale(1.05);
  }
  .benefits-slider .swiper-slide:hover .benefits-slider-icon > svg .stroke_black,
  .benefits-slider .swiper-slide:focus .benefits-slider-icon > svg .stroke_black{
    stroke: #323232;
  }
  .benefits-slider .swiper-slide:hover .benefits-slider-icon > svg .fill_black,
  .benefits-slider .swiper-slide:focus .benefits-slider-icon > svg .fill_black{
    fill: #323232;
  }
}


/*
 * Marquee
 */
.cols-wrapper:has(.marquee-container){
  overflow: hidden;
  padding-top: 0;
}
.cols-wrapper:has(.marquee-container) .cols{
  max-width: none;
}
.col:has(.marquee-container){
  margin: 0;
}
.marquee-container{
  position: relative;
  transform: rotate(-1.5deg);
}
.marquee-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation: marquee 15s infinite linear;
  min-width: 200%;
  width: fit-content;
  will-change: transform;
  transform-style: flat;
  content-visibility: visible;
}
.marquee-wrapper.is-paused{
  animation-play-state: paused;
}
.marquee-item {
  font-size: 11rem;
  color: rgb(var(--main-dark-color));
  font-family: var(--sub-font-stack);
  font-weight: 200;
  line-height: 1;
  display: block;
  opacity: 1;
  text-align: left;
  min-width: 50%;
  width: max-content;
  padding-right: 20px;
}
.marquee-item span{
  font-family: var(--main-font-stack);
  font-weight: 700;
  color: rgb(var(--sub-highlight-color));
}
.marquee-container .pause-play-button{
  background: url('/images/icons/pause-grey.svg') no-repeat center;
  background-size: contain;
  bottom: -30px;
  left: inherit;
  right: 0;
}
.marquee-container .pause-play-button.is-paused{
  background: url('/images/icons/play-grey.svg') no-repeat center;
  background-size: contain;
}
@media only screen and (min-width: 1440px) {
  .marquee-wrapper {
    animation: marquee 15s infinite linear;
  }
  .marquee-item {
    font-size: 17rem;
  }
  .cols-wrapper:has(.marquee-container){
    padding-top: var(--col-padding);
  }
  .marquee-container .pause-play-button{
    bottom: -50px;
    right: 50px;
  }
}

/*
 * Footer
 */
.footer-wrapper{
  overflow: hidden;
  position: relative;
  z-index: 2;
  background-color: rgb(var(--main-highlight-color));
}
.footer {
  position: relative;
  padding: 60px 0 100px;
  max-width: 1600px;
  width: 88.88%;
  margin: 0 auto;
}
.footer,
.footer a{
  color: rgb(var(--main-light-color));
}
.footer-logo{
  position: absolute;
  right: -140px;
  bottom: 75px;
  width: 320px;
  height: auto;
  z-index: 0;
}
.footer-logo:before,
.footer-logo:after{
  content: '';
  position: absolute;
  top: 120px;
  left: 120px;
  display: block;
  width: 50px;
  height: 50px;
  background-color: rgb(var(--sub-highlight-color));
  border-radius: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  opacity: 0;
  transition: all .4s;
  animation: fadeInOut 10s infinite ease-in-out;
}
.footer-logo:before{
  animation: fadeInOut 10s infinite ease-in-out, zwinkern 2s 6.5s infinite cubic-bezier(1, 0, 0, 1);
}
.footer-logo:after{
  left: inherit;
  right: 60px;
}
@keyframes zwinkern {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    border-radius: 100%;
  }
  60% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    border-radius: 100%;
  }
  80% {
    clip-path: polygon(0 27%, 100% 18%, 100% 59%, 0 77%);
    border-radius: 20px
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    border-radius: 100%;
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.footer-box{
  position: relative;
  z-index: 1;
}
.footer-box-1{
  margin-bottom: 45px;
  font-size: 1.9rem;
}
.footer-heading{
  font-weight: 600;
  font-size: 2.8rem;
  margin-bottom: 40px;
  line-height: 1;
}
.footer-address{
  margin-bottom: 40px;
}
.footer-company{
  font-weight: 700;
  margin-bottom: 25px;
}
.footer-street{
  margin-bottom: 5px;
}
.footer-contact-wrapper{
  display: flex;
  flex-direction: column;
  gap: 20px 5px;
}
.footer-contact-wrapper a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  width: fit-content;
  text-decoration: none;
}
.footer-mail:before{
  content: '';
  display: inline-block;
  background: url('/images/icons/mail.svg') no-repeat center;
  background-size: contain;
  width: 15px;
  height: 12px;
}
.footer-phone:before{
  content: '';
  display: inline-block;
  background: url('/images/icons/phone.svg') no-repeat center;
  background-size: contain;
  width: 17px;
  height: 17px;
  margin-bottom: 3px;
}
.footer-social-wrapper{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;
  gap: 15px 25px;
}
.footer-social-item svg *{
  transition: all .4s;
}
.footer-social-item:hover svg *,
.footer-social-item:focus svg *{
  fill: rgb(var(--sub-highlight-color));
}
.footer-social-item:after{
  display: none !important;
}
.footer-partner-wrapper{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-partner-wrapper img{
  margin: 0;
  height: auto;
  object-fit: contain;
}
.footer-partner-wrapper img:nth-child(1){
  width: 110px;
}
.footer-partner-wrapper img:nth-child(2){
  width: 100px;
}
.footer-partner-wrapper img:nth-child(3){
  width: 80px;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .footer-partner-wrapper{
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .footer{
    padding: 55px 0 70px;
  }
  .footer-box-1{
    margin-bottom: 25px;
    font-size: 2.2rem;
  }
  .footer-heading{
    font-size: 3.6rem;
    margin-bottom: 20px;
  }
  .footer-address{
    margin-bottom: 30px;
  }
  .footer-company{
    margin-bottom: 5px;
  }
  .footer-box-2{
    display: flex;
    align-items: flex-end;
    gap: 15px 100px;
  }
  .footer-contact-wrapper{
    gap: 15px 5px;
  }
  .footer-mail:before{
    width: 20px;
    height: 16px;
  }
  .footer-phone:before{
    width: 22px;
    height: 22px;
  }
  .footer-social-wrapper{
    margin-bottom: 0;
  }
  .footer-partner-wrapper{
    align-items: flex-end;
  }
  .footer-partner-wrapper img:nth-child(3){
    margin-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .footer-heading{
    margin-bottom: 30px;
  }
  .footer-logo{
    z-index: 3;
  }
  .footer-partner-wrapper img:nth-child(1){
    width: 180px;
  }
  .footer-partner-wrapper img:nth-child(2){
    width: 165px;
    margin-bottom: -16px;
  }
  .footer-partner-wrapper img:nth-child(3){
    width: 130px;
    margin-bottom: -20px;
  }
}
@media screen and (min-width: 1600px) {
  .footer-logo{
    width: 400px;
    right: 0;
    bottom: 50%;
    transform: translateY(50%);
  }
  .footer-logo:before,
  .footer-logo:after{
    top: 160px;
    left: 140px;
    width: 65px;
    height: 65px;
    animation: fadeInOut 10s infinite ease-in-out;
  }
  .footer-logo:after{
    left: inherit;
    right: 70px;
    animation: fadeInOut 10s infinite ease-in-out, zwinkern 2s 6.5s infinite cubic-bezier(1, 0, 0, 1);
  }
}


/*
 * Copyright
 */
.copyright-wrapper {
  position: relative;
  padding: 10px 0 30px;
  background-color: rgb(var(--main-light-color));
  z-index: 2;
}

.copyright {
  font-size: 1.6rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px 10px;
  text-align: center;
}
.copyright,
.copyright a{
  color: rgb(var(--main-dark-color));
}
.impressum-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 5px;
}
a.ww-logo:after{
  display: none !important;
}

/* ab 1024px */
@media screen and (min-width: 1024px) {
  .copyright-wrapper {
    padding: 15px 0;
  }

  .copyright {
    max-width: 1600px;
    flex-direction: row;
    align-items: center;
    font-size: 1.7rem;
  }

  .copyright-ww,
  .copyright-ww * {
    margin: 0;
    font-size: 1.8rem;
    text-decoration: none;
  }

  .impressum-wrapper{
    justify-content: flex-start;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  .impressum-wrapper{
    font-size: 1.7rem;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}