.title1 {
  font-size: clamp(3.75rem, 3.6101083vw + 2.86552347rem, 6.25rem);
  line-height: clamp(3.75rem, 3.6101083vw + 2.86552347rem, 6.25rem);
  font-weight: bold;
  color: var(--textColor);
}
.title2 {
  font-size: clamp(2.5rem, 1.80505415vw + 2.05776173rem, 3.75rem);
  line-height: clamp(3.125rem, 1.80505415vw + 2.68276173rem, 4.375rem);
  font-weight: bold;
  color: var(--textColor);
}
.title3 {
  font-size: clamp(2.1875rem, 1.35379061vw + 1.8558213rem, 3.125rem);
  line-height: clamp(2.5rem, 1.80505415vw + 2.05776173rem, 3.75rem);
  font-weight: bold;
  color: var(--textColor);
}
.title4 {
  font-size: clamp(1.5625rem, 0.90252708vw + 1.34138087rem, 2.1875rem);
  line-height: clamp(1.875rem, 1.35379061vw + 1.5433213rem, 2.8125rem);
  font-weight: bold;
  color: var(--textColor);
  font-weight: 400;
}
.title5 {
  font-size: clamp(0.875rem, 0.36101083vw + 0.78655235rem, 1.125rem);
  line-height: clamp(1.125rem, 0vw + 1.125rem, 1.125rem);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--textColor);
}
.lead {
  font-size: clamp(1.125rem, 0.54151625vw + 0.99232852rem, 1.5rem);
  line-height: clamp(1.5rem, 1.08303249vw + 1.23465704rem, 2.25rem);
  color: var(--textColor);
}
.buttonBasics {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
}
.button {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--buttonBackground);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--buttonColor);
  padding: 13px 19px;
  border-radius: 10000px;
  border: 1px solid var(--buttonBorder);
  transition: all 0.5s ease-out;
}
.button:hover,
.button:focus {
  background-color: var(--buttonBackgroundHover);
  color: var(--buttonColorHover);
  border-color: var(--buttonBorderHover);
}
.button-arrow {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondaryButtonColor);
  padding-left: 52px;
  padding-right: 13px;
  position: relative;
  transition: all 0.5s ease-out;
}
.button-arrow:before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--secondaryButtonDotColor);
  transition: all 0.5s ease-out;
}
.button-arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 30px;
  height: 30px;
  mask-size: 42px 100%;
  mask-position: 100% 50%;
  mask-repeat: no-repeat;
  mask-image: var(--arrowRight);
  background-color: var(--secondaryButtonColor);
  transition: all 0.5s ease-out;
}
.button-arrow:hover,
.button-arrow:focus {
  padding-left: 65px;
  padding-right: 0;
}
.button-arrow:hover:before,
.button-arrow:focus:before {
  left: 25px;
}
.button-arrow:hover:after,
.button-arrow:focus:after {
  width: 42px;
}
.button-stoerer {
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--stoererBackground);
  width: 258px;
  aspect-ratio: 1;
  font-size: clamp(0.8125rem, 1.08303249vw + 0.54715704rem, 1.5625rem);
  line-height: clamp(1rem, 1.26353791vw + 0.69043321rem, 1.875rem);
  text-align: center;
  font-weight: 700;
  color: var(--stoererColor);
  padding: 75px 10px 75px 10px;
  border-radius: 10000px;
  position: relative;
}
@supports not (aspect-ratio: 1 /  1) {
  .button-stoerer:before {
    float: left;
    padding-top: 100%;
    content: '';
  }
  .button-stoerer:after {
    display: block;
    content: '';
    clear: both;
  }
}
.button-stoerer:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 36px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--stoererDotColor);
  transition: all 0.5s ease-out;
}
.button-stoerer:after {
  content: '';
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 30px;
  mask-size: 42px 100%;
  mask-position: -12px 50%;
  mask-repeat: no-repeat;
  mask-image: var(--arrowRight);
  background-color: #fff;
  transition: all 0.5s ease-out;
}
@media (min-width: 1024px) {
  .button-stoerer:hover:before,
  .button-stoerer:focus:before {
    left: calc(50% + 12px);
  }
  .button-stoerer:hover:after,
  .button-stoerer:focus:after {
    mask-position: 0 50%;
  }
}
@media (max-width: 1023px) {
  .button-stoerer {
    width: 160px;
    padding: 40px 10px 40px;
    --arrowRight: url(/images/arrow-right-mobile.svg);
  }
  .button-stoerer:before {
    width: 16px;
    height: 16px;
    bottom: 20px;
  }
  .button-stoerer:after {
    width: 30px;
    height: 16px;
    bottom: 20px;
    mask-size: 16px 100%;
    mask-position: 0 50%;
  }
}
@media (max-width: 767px) {
  .button-stoerer {
    width: 136px;
    height: 136px;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.logo {
  height: 60px;
}
.section--multimood:before {
  background-size: 100% auto;
  background-position: 50% calc(100% + 100px);
}
.container--mood {
  flex-direction: row;
  padding-top: 80px;
  padding-bottom: 120px;
  gap: 20px;
}
.container--mood .mood {
  width: calc(40% - 10px);
}
.container--mood .content {
  width: calc(60% - 10px);
  padding-top: 100px;
  padding-left: 0;
}
.downlink {
  bottom: 12px;
}
.cbdModule--stoerer {
  --fluidSize: clamp(4.375rem, 7.24043716vw + 0.89959016rem, 7.6875rem);
  top: -80px;
  left: var(--fluidSize);
  right: unset;
}
.container--slogan {
  gap: 40px 0;
  padding-top: 80px;
  padding-bottom: 80px;
}
.designelement--signature-s {
  width: 80px;
  height: 66px;
}
.area--one .unitOne .unit__body {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.area--one .unitOne .part--medium,
.area--one .unitOne .part--slim {
  width: calc(50% - 10px);
}
.area--one .unitTwo {
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.area--one .unitTwo--imageLeft .unit__content {
  margin-left: auto;
}
.area--one .unitTwo--imageRight .unit__background {
  order: 2;
}
.area--one .unitTwo--imageRight .unit__content {
  order: 1;
}
.area--one .unitTwo .unit__content {
  width: calc(50% - 10px);
}
.area--one .unitTwo .unit__background {
  aspect-ratio: 0.75714286;
  width: calc(50% - 10px);
}
@supports not (aspect-ratio: 530 /  700) {
  .area--one .unitTwo .unit__background:before {
    float: left;
    padding-top: 132.0754717%;
    content: '';
  }
  .area--one .unitTwo .unit__background:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--one .unitTwo .unit__background * {
  height: 100%;
}
.area--one .unitTwo .unit__background img {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.area--one .unitTwo .unit__background .placeholder {
  padding-bottom: 0;
}
.area--one .unitThree {
  padding-top: 200px;
  padding-bottom: 80px;
}
.area--one .unitThree:before {
  background-size: 50% 100%;
}
.area--one .unitThree .unit__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 20px;
}
.area--one .unitThree .part.link:first-child {
  top: 30px;
  right: 0;
  left: unset;
  transform: translateX(0);
}
.area--one .unitThree .part--slim {
  width: calc(50% - 10px);
}
.area--one .unitThree .part--auto {
  width: auto;
}
.area--one .unitFour .unit__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 20px;
}
.area--one .unitFour .part--medium {
  width: calc(50% - 10px);
}
.area--one .unitFour .part--slim {
  width: calc(50% - 10px);
}
.area--one .unitGallery .part--wide {
  width: calc((100% / 1420 * 830) - 10px);
  margin-left: 0;
  aspect-ratio: 1.36666667;
}
@supports not (aspect-ratio: 820 /  600) {
  .area--one .unitGallery .part--wide:before {
    float: left;
    padding-top: 73.17073171%;
    content: '';
  }
  .area--one .unitGallery .part--wide:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--one .unitGallery .part--slim {
  width: calc((100% / 1420 * 590) - 10px);
  aspect-ratio: 0.96666667;
}
@supports not (aspect-ratio: 580 /  600) {
  .area--one .unitGallery .part--slim:before {
    float: left;
    padding-top: 103.44827586%;
    content: '';
  }
  .area--one .unitGallery .part--slim:after {
    display: block;
    content: '';
    clear: both;
  }
}
.area--one .unitSupporter .unit__body {
  display: flex;
  align-items: center;
  gap: 0 40px;
}
.area--one .unitSupporter .supporterText {
  width: calc(40% - 20px);
}
.area--one .unitSupporter .supporterLogos {
  width: calc(60% - 20px);
}
.area--one .unitSupporter .part--supporterLogos .iconLinks__content {
  flex-direction: row;
  align-items: flex-start;
  gap: 50px;
}
.area--one .unit--form .unit__body {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.area--one .unit--form .part--slim {
  width: calc(50% - 10px);
}
/*# sourceMappingURL=./screen-medium.css.map */