:root {
  --video-aspect-ratio-padding: 56.25%;
}

.video {
  position: relative;
}

.video::before {
  position: relative;
  display: block;
  padding-bottom: var(--video-aspect-ratio-padding);
  width: 100%;
  height: 0;
  pointer-events: none;
  content: "";
}

.video__overlay {
  object-fit: cover;
  transition: transform 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19), opacity 200ms linear;
  pointer-events: none;
}

.video__play-button {
  z-index: 2;
  transition: transform 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19), opacity 400ms linear;
  cursor: pointer;
}

.video__play-icon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50px;
  height: 100%;
  fill: #fff;
  transform: translate(-50%, 0);
  pointer-events: none;
}

@media (min-width: 641px) and (min-height: 500px) {
  .video__play-icon {
    width: 75px;
  }
}

@media (min-width: 1025px) {
  .video__play-icon {
    width: 120px;
  }
}

.video--show-video .video__overlay {
  opacity: 0;
  transform: scale(1.3);
}

.video--show-video .video__play-button {
  opacity: 0;
  transform: scale(2);
  pointer-events: none;
}

.video__source {
  border: 0;
}

/*!
 * some animations from animate.css
 * @see {@link https://github.com/daneden/animate.css}
 * daneden.github.io/animate.css/
 */

/* .animated {
	animation-duration: 2s;
	animation-fill-mode: both;
} */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

/*!
 * img lightbox
 */

.img-lightbox {
  display: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 999999;
}

.img-lightbox img {
  display: block;
  opacity: 0;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  border: 0;
  box-shadow: 0.267rem 0.267rem 0.267rem 0 rgba(3, 3, 3, 0.3);
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  cursor: zoom-out;
  margin: auto;
}

/*!
 * reset for animate.css
 * daneden.github.io/animate.css/
 */

.img-lightbox.animated,
.img-lightbox img.animated {
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

/*!
 * another pure css spinner
 * @see {@link https://epic-spinners.epicmax.co/}
 */

.img-lightbox .half-circle-spinner,
.img-lightbox .half-circle-spinner * {
  box-sizing: border-box;
}

.img-lightbox .half-circle-spinner {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: relative;
  margin: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.img-lightbox .half-circle-spinner .circle {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 6px solid transparent;
}

.img-lightbox .half-circle-spinner .circle.circle-1 {
  border-top-color: #FFFFFF;
  animation: half-circle-spinner-animation 1s infinite;
}

.img-lightbox .half-circle-spinner .circle.circle-2 {
  border-bottom-color: #FFFFFF;
  animation: half-circle-spinner-animation 1s infinite alternate;
}

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.img-lightbox.is-loaded .half-circle-spinner {
  display: none;
}

.img-lightbox .btn-close {
  display: block;
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  border: 0;
  background-color: transparent;
}

/*!
 * pure css version
 * @see {@link https://codepen.io/brissmyr/pen/egidw}
 */

.img-lightbox .btn-close:before,
.img-lightbox .btn-close:after {
  content: " ";
  width: 0.125em;
  height: 1.5em;
  position: absolute;
  top: 0;
  right: 0.688em;
  background-color: #FFFFFF;
}

.img-lightbox .btn-close:before {
  transform: rotate(45deg);
}

.img-lightbox .btn-close:after {
  transform: rotate(-45deg);
}

/*!
 * @see {@link https://github.com/englishextra/iframe-lightbox/issues/12}
 */

.img-lightbox--open {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  height: auto;
}

.app-teaser {
  overflow: hidden;
  margin-top: 100px;
  width: 100%;
}

@media (min-width: 641px) and (min-height: 500px) {
  .app-teaser {
    padding: 82px 0 0;
  }
}

@media (min-width: 1025px) {
  .app-teaser {
    margin-top: 150px;
    padding: 184px 0 0;
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .app-teaser__container {
    height: 408px;
  }
}

@media (min-width: 1025px) {
  .app-teaser__container {
    height: 640px;
  }
}

.app-teaser + .footer {
  margin-top: 0;
}

.app-teaser--dark::before, .app-teaser--light::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(#222327 25%, #474c4f 75%);
  content: "";
}

.app-teaser--dark::before {
  background: linear-gradient(#222327 25%, #474c4f 75%);
}

.app-teaser--light::before {
  background: linear-gradient(#7e7e7e, #d9d9d9);
}

.app-teaser--light .app-teaser__logo {
  opacity: 0.15;
  fill: transparent;
}

.app-teaser--right .app-teaser__logo {
  right: -22px;
  left: unset;
}

@media (min-width: 641px) and (min-height: 500px) {
  .app-teaser--right .app-teaser__text {
    order: 2;
  }
}

@media (min-width: 1025px) {
  .app-teaser--right .app-teaser__images__first {
    left: calc(230 * var(--vw-unit));
  }
  .app-teaser--right .app-teaser__images__second {
    left: calc(450 * var(--vw-unit));
  }
}

.app-teaser__text {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 125px;
  padding: 75px 20px 0;
  height: -moz-fit-content;
  height: fit-content;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .app-teaser__text {
    position: unset;
    margin-bottom: unset;
    padding: 0 50px;
    height: 100%;
    justify-content: center;
  }
}

@media (min-width: 1025px) {
  .app-teaser__text {
    padding: 0;
  }
}

.app-teaser__text__headline, .app-teaser__text__bodytext {
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
}

.app-teaser__text__bodytext {
  padding: 30px 0 40px;
}

@media (min-width: 1025px) {
  .app-teaser__text__bodytext {
    padding: 50px 0;
  }
}

.app-teaser__images {
  position: relative;
}

@media (max-width: 640px) {
  .app-teaser__images {
    grid-column-start: 3;
    grid-column-end: 8;
    padding-bottom: 173px;
  }
}

@media (min-width: 1025px) {
  .app-teaser__images {
    position: absolute;
    grid-column-start: unset;
    grid-column-end: unset;
    width: 100%;
  }
}

.app-teaser__images__container {
  overflow: hidden;
}

.app-teaser__images__first .image, .app-teaser__images__second .image {
  position: absolute;
  width: calc(123 * var(--vw-unit));
  aspect-ratio: 123/250;
  object-fit: cover;
  object-position: center center;
  background: none !important;
  filter: drop-shadow(7.65px 7.65px 11.475px rgba(0, 0, 0, 0.15));
}

@media (min-width: 641px) and (min-height: 500px) {
  .app-teaser__images__first .image, .app-teaser__images__second .image {
    width: calc(164 * var(--vw-unit));
    aspect-ratio: 164/332;
  }
}

@media (min-width: 1025px) {
  .app-teaser__images__first .image, .app-teaser__images__second .image {
    width: calc(370 * var(--vw-unit));
    aspect-ratio: 370/750;
  }
}

.app-teaser__images__first .image {
  top: -75px;
  z-index: 2;
}

@media (min-width: 641px) and (min-height: 500px) {
  .app-teaser__images__first .image {
    top: -62px;
  }
}

@media (min-width: 1025px) {
  .app-teaser__images__first .image {
    top: -150px;
    right: calc(450 * var(--vw-unit));
  }
}

.app-teaser__images__second .image {
  top: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
}

@media (min-width: 641px) and (min-height: 500px) {
  .app-teaser__images__second .image {
    top: 35px;
    right: 0;
  }
}

@media (min-width: 1025px) {
  .app-teaser__images__second .image {
    top: 70px;
    right: calc(230 * var(--vw-unit));
  }
}

.destination-teaser {
  row-gap: calc(23 * var(--vw-unit));
}

@media (min-width: 641px) and (min-height: 500px) {
  .destination-teaser {
    row-gap: calc(30 * var(--vw-unit));
  }
}

@media (min-width: 1025px) {
  .destination-teaser {
    row-gap: calc(38 * var(--vw-unit));
  }
}

@media (min-width: 641px) and (min-height: 500px) and (max-width: 1024px) {
  .destination-teaser--6 {
    grid-template-columns: [fullsize-start] 50fr repeat(5, [col-start] 103fr [col-end] 30fr) [col-start] 103fr [col-end] 50fr [fullsize-end];
  }
}

.destination-teaser__tile {
  position: relative;
  grid-column-start: col-start 1;
  grid-column-end: span 3;
  width: 100%;
}

.destination-teaser__tile:nth-child(even) {
  grid-column-start: col-start 3;
}

@media (min-width: 641px) and (min-height: 500px) {
  .destination-teaser__tile--4 {
    grid-column-end: span 7;
  }
  .destination-teaser__tile--4:nth-child(even) {
    grid-column-start: col-start 5;
  }
}

@media (min-width: 1025px) {
  .destination-teaser__tile--4 {
    grid-column-end: span 11;
  }
  .destination-teaser__tile--4:nth-child(even) {
    grid-column-start: col-start 7;
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .destination-teaser__tile--6 {
    grid-column-end: span 3;
  }
  .destination-teaser__tile--6:nth-child(3n+1) {
    grid-column-start: col-start 1;
  }
  .destination-teaser__tile--6:nth-child(3n+2) {
    grid-column-start: col-start 3;
  }
  .destination-teaser__tile--6:nth-child(3n+3) {
    grid-column-start: col-start 5;
  }
}

@media (min-width: 1025px) {
  .destination-teaser__tile--6 {
    grid-column-end: span 7;
  }
  .destination-teaser__tile--6:nth-child(3n+2) {
    grid-column-start: col-start 5;
  }
  .destination-teaser__tile--6:nth-child(3n+3) {
    grid-column-start: col-start 9;
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .destination-teaser__tile--8 {
    grid-column-end: span 3;
  }
  .destination-teaser__tile--8:nth-child(4n+2) {
    grid-column-start: col-start 3;
  }
  .destination-teaser__tile--8:nth-child(4n+3) {
    grid-column-start: col-start 5;
  }
  .destination-teaser__tile--8:nth-child(4n+4) {
    grid-column-start: col-start 7;
  }
}

@media (min-width: 1025px) {
  .destination-teaser__tile--8 {
    grid-column-end: span 5;
  }
  .destination-teaser__tile--8:nth-child(4n+2) {
    grid-column-start: col-start 4;
  }
  .destination-teaser__tile--8:nth-child(4n+3) {
    grid-column-start: col-start 7;
  }
  .destination-teaser__tile--8:nth-child(4n+4) {
    grid-column-start: col-start 10;
  }
}

.destination-teaser__tile__full-link {
  z-index: 1;
  overflow: hidden;
  text-indent: -999em;
  pointer-events: auto;
}

.destination-teaser__tile__content {
  position: relative;
  height: 100%;
  min-height: 85px;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

@media (min-width: 641px) and (min-height: 500px) {
  .destination-teaser__tile__content {
    min-height: 170px;
  }
}

@media (min-width: 1025px) {
  .destination-teaser__tile__content {
    min-height: 320px;
  }
}

.destination-teaser__tile__content__text {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 20px 10px;
  width: 100%;
  max-width: calc(151 * var(--vw-unit));
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .destination-teaser__tile__content__text {
    gap: 20px;
    justify-content: flex-end;
  }
  .destination-teaser__tile__content__text.layout--4 {
    padding: 30px 30px 80px;
    max-width: calc(352 * var(--vw-unit));
  }
  .destination-teaser__tile__content__text.layout--6 {
    padding: 30px 20px 80px;
    max-width: calc(224 * var(--vw-unit));
  }
  .destination-teaser__tile__content__text.layout--8 {
    padding: 30px 10px 80px;
    max-width: calc(161 * var(--vw-unit));
  }
}

@media (min-width: 1025px) {
  .destination-teaser__tile__content__text {
    gap: 25px;
  }
  .destination-teaser__tile__content__text.layout--4 {
    padding: 60px 70px 135px;
    max-width: calc(676 * var(--vw-unit));
  }
  .destination-teaser__tile__content__text.layout--6 {
    padding: 60px 50px 135px;
    max-width: calc(438 * var(--vw-unit));
  }
  .destination-teaser__tile__content__text.layout--8 {
    padding: 60px 20px 135px;
    max-width: calc(319 * var(--vw-unit));
  }
}

.destination-teaser__tile__content__text__title {
  overflow: hidden;
  margin: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  text-overflow: ellipsis;
  overflow-wrap: normal;
}

.destination-teaser__tile__content__text__button {
  display: none;
}

@media (min-width: 641px) and (min-height: 500px) {
  .destination-teaser__tile__content__text__button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    display: inline-flex;
    max-width: 95%;
    align-items: center;
    transform: translate3d(-21px, 0, 0);
    transition: transform 400ms cubic-bezier(0.77, 0, 0.175, 1) 200ms;
    pointer-events: auto;
  }
}

@media (min-width: 641px) and (min-height: 500px) and (min-width: 1025px) {
  .destination-teaser__tile__content__text__button {
    bottom: 60px;
    transform: translate3d(-29px, 0, 0);
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .destination-teaser__tile__content__text__button .btn__title {
    overflow: hidden;
    max-width: calc(100% - var(--textRight) - var(--textLeft));
    text-overflow: ellipsis;
  }
}

.destination-teaser__tile__content__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-radius: 5px;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 641px) and (min-height: 500px) {
  .destination-teaser__tile__content__image {
    border-radius: 10px;
  }
}

@media (min-width: 1025px) {
  .destination-teaser__tile__content__image {
    border-radius: 15px;
  }
}

.destination-teaser__tile__content__image::before {
  position: absolute;
  top: 20px;
  z-index: 1;
  width: 100%;
  height: calc(100% - 20px);
  opacity: 1;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.74));
  transition: opacity 0.3s ease-in-out;
  content: "";
}

.destination-teaser__tile__content__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-alignment);
  filter: brightness(1);
  transform: scale(1);
  transition: transform 0.3s ease-out, filter 0.3s ease-in-out;
}

@media (hover: hover), (min-width: 1025px) {
  .destination-teaser__tile:hover .destination-teaser__tile__content__text__button {
    transform: translate3d(-50%, 0, 0);
    transition-delay: 0ms;
  }
  .destination-teaser__tile:hover .destination-teaser__tile__content__gradient {
    top: 0;
    height: 100%;
    opacity: 0;
  }
  .destination-teaser__tile:hover .destination-teaser__tile__content__image .image {
    filter: brightness(0.6);
    transform: scale(1.1);
  }
}

.logo-slider__headline {
  margin: 0 0 15px;
  text-align: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .logo-slider__headline {
    margin: 0 0 20px;
  }
}

@media (min-width: 1025px) {
  .logo-slider__headline {
    margin: 0 0 25px;
  }
}

.logo-slider > .swiper {
  overflow: visible;
  margin: 0 auto;
  width: calc(100% - 13px);
}

@media (min-width: 641px) and (min-height: 500px) {
  .logo-slider > .swiper {
    width: calc(100% - 20px);
  }
}

@media (min-width: 1025px) {
  .logo-slider > .swiper {
    width: calc(100% - 50px);
  }
}

.logo-slider__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-slider__logo.swiper-slide {
  padding: 0 13px;
  width: 86px;
  height: 40px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .logo-slider__logo.swiper-slide {
    padding: 0 20px;
    width: 115px;
    height: 50px;
  }
}

@media (min-width: 1025px) {
  .logo-slider__logo.swiper-slide {
    padding: 0 50px;
    width: 250px;
    height: 100px;
  }
}

.logo-slider__logo__link {
  width: 100%;
  height: 100%;
}

.logo-slider__logo__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: transparent !important;
  filter: grayscale(1);
  transition: filter 200ms linear;
}

.logo-slider__logo__link:hover .logo-slider__logo__image {
  filter: grayscale(0);
}

/**
 * Swiper 8.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 15, 2022
 */

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.intro {
  --startColumn: 1;
  padding: 0 20px;
  text-align: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .intro {
    padding: 0;
    text-align: unset;
  }
}

.intro--center {
  text-align: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .intro--center {
    --startColumn: 3;
  }
}

@media (min-width: 1025px) {
  .intro--center {
    --startColumn: 4;
  }
}

.intro--center .intro__text-container {
  grid-column-start: col-start var(--startColumn);
}

.intro__headline {
  margin: 0;
}

.intro__bodytext {
  margin: 30px 0 0;
}

@media (min-width: 641px) and (min-height: 500px) {
  .intro__bodytext {
    padding: 0;
  }
}

@media (min-width: 1025px) {
  .intro__bodytext {
    margin-top: 35px;
  }
}

.intro__button {
  margin: 40px 0 0;
}

@media (min-width: 1025px) {
  .intro__button {
    margin-top: 50px;
  }
}

.intro__background-shape {
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 465px;
  opacity: 0.075;
}

@media (min-width: 1025px) {
  .intro__background-shape {
    width: 685px;
    height: 739px;
  }
}

.intro__background-shape--right {
  top: -50px;
  left: 63%;
}

@media (min-width: 641px) and (min-height: 500px) {
  .intro__background-shape--right {
    top: -100px;
    left: 57%;
  }
}

@media (min-width: 1025px) {
  .intro__background-shape--right {
    top: -150px;
    left: 70%;
  }
}

.intro__background-shape--left {
  top: 0;
  right: 65%;
}

@media (min-width: 641px) and (min-height: 500px) {
  .intro__background-shape--left {
    top: -50px;
    right: 70%;
  }
}

@media (min-width: 1025px) {
  .intro__background-shape--left {
    right: 75%;
  }
}

@media (min-width: 2300px) {
  .intro__background-shape--left {
    right: 84%;
  }
}

.media-slider__intro {
  margin: 0 0 40px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .media-slider__intro {
    margin-bottom: 50px;
  }
}

@media (min-width: 1025px) {
  .media-slider__intro {
    margin-bottom: 70px;
  }
}

.media-slider__container {
  --card-height: 480px;
  --card-container-padding: 3.3045977011%;
  --card-content-padding: 0 calc(25 * var(--vw-unit)) calc(25 * var(--vw-unit));
  --card-border-radius: 10px;
  --card-gradient-size: 70%;
  --card-transition-duration: 300ms;
  --card-fade-opacity: 1;
  --text-button-gap: 20px;
  --card-aspect-ratio: 0;
  overflow: visible;
  margin: 0 auto;
  width: 93.3333333333%;
}

@media (min-width: 641px) and (min-height: 500px) and (max-width: 1024px) {
  .media-slider__container .btn {
    --mobileHeight: 40px;
    --arrowLeft: 14px;
    --width: 45px;
    --height: 40px;
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .media-slider__container {
    --card-height: 470px;
    --card-gradient-size: 50%;
    width: 91.9540229885%;
  }
}

@media (min-width: 1025px) {
  .media-slider__container {
    width: 92.7272727273%;
    max-width: 1428px;
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .media-slider__container--s {
    --card-container-padding: 3.75%;
    --card-content-padding: 0 25px 25px;
    --text-button-gap: 25px;
  }
}

@media (min-width: 1025px) {
  .media-slider__container--s {
    --card-height: 585px;
    --card-container-padding: 3.9915966387%;
    --card-content-padding: 0 calc(35 * var(--vw-unit)) 25px;
    --text-button-gap: calc(40 * var(--vw-unit));
  }
  .media-slider__container--s .btn {
    --borderRadius: 5px;
    --arrowLeft: 18px;
    --arrowHeight: 24px;
    --width: 58px;
    --height: 50px;
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .media-slider__container--m {
    --card-container-padding: 3.75%;
    --card-content-padding: 0 25px 25px;
    --text-button-gap: 25px;
  }
}

@media (min-width: 1025px) {
  .media-slider__container--m {
    --card-height: 0;
    --card-aspect-ratio: 122%;
    --card-container-padding: 3.1932773109%;
    --card-content-padding: 0 calc(60 * var(--vw-unit)) calc(50 * var(--vw-unit));
    --card-border-radius: 15px;
    --card-transition-duration: 500ms;
    --text-button-gap: calc(130 * var(--vw-unit));
    width: 77.2727272727%;
    max-width: 1190px;
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .media-slider__container--l {
    --card-container-padding: 1.875%;
    --card-content-padding: 0 calc(60 * var(--vw-unit)) calc(30 * var(--vw-unit));
    --card-transition-duration: 500ms;
    --text-button-gap: calc(280 * var(--vw-unit));
  }
}

@media (min-width: 1025px) {
  .media-slider__container--l {
    --card-height: 0;
    --card-aspect-ratio: 60%;
    --card-container-padding: 1.5966386555%;
    --card-content-padding: 0 calc(75 * var(--vw-unit)) calc(50 * var(--vw-unit));
    --card-border-radius: 15px;
    --card-transition-duration: 800ms;
    --text-button-gap: calc(360 * var(--vw-unit));
    width: 77.2727272727%;
    max-width: 1190px;
  }
}

.media-slider__slide {
  position: relative;
  z-index: 1;
  padding: 0;
  height: auto;
  transition: transform var(--card-transition-duration) linear, z-index 0ms linear calc(var(--card-transition-duration) * 0.5);
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}

.media-slider__slide::before {
  position: relative;
  display: block;
  padding: 0 0 var(--card-aspect-ratio);
  width: 100%;
  height: var(--card-height);
  content: "";
}

.media-slider__slide.swiper-slide-active {
  --card-fade-opacity: 0;
  z-index: 2;
  pointer-events: auto;
}

.media-slider__slide__inner {
  position: absolute;
  top: 0;
  right: var(--card-container-padding);
  bottom: 0;
  left: var(--card-container-padding);
  overflow: hidden;
  width: auto;
  height: 100%;
  border-radius: var(--card-border-radius);
  background: #fff;
  transform: translate3d(0, 0, 0);
  transition: transform var(--card-transition-duration) cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.media-slider__slide__inner::before, .media-slider__slide__inner::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  content: "";
}

.media-slider__slide__inner::before {
  z-index: 2;
  height: var(--card-gradient-size);
  background: linear-gradient(to top, #000 -45%, rgba(0, 0, 0, 0) 80%);
}

.media-slider__slide__inner::after {
  z-index: 4;
  height: 100%;
  opacity: var(--card-fade-opacity);
  background: rgba(255, 255, 255, 0.6);
  transition: opacity var(--card-transition-duration) linear;
  pointer-events: none;
}

@media (max-width: 640px) {
  .media-slider__slide__inner {
    transform: translate3d(0, 0, 0) scale(0.85);
  }
  .media-slider__slide.swiper-slide-active .media-slider__slide__inner {
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: calc(var(--card-transition-duration) * 0.35);
  }
}

.media-slider__slide__image {
  z-index: 1;
  object-fit: cover;
  object-position: var(--alignment, center center);
  transform: scale(1);
  transition: transform 1000ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (hover: hover), (min-width: 1025px) {
  .media-slider__slide__inner:hover .media-slider__slide__image {
    transform: scale(1.05);
  }
}

.media-slider__slide__link {
  z-index: 2;
}

.media-slider__slide__textcontent {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  padding: var(--card-content-padding);
  width: 100%;
  grid-template: "headline headline" auto "bodytext button" auto/minmax(1px, 1fr) auto;
  align-items: flex-start;
  color: #fff;
  pointer-events: none;
}

@media (min-width: 1025px) {
  .media-slider__slide__textcontent--m, .media-slider__slide__textcontent--l {
    grid-template-areas: "headline button" "bodytext button";
  }
}

.media-slider__slide__headline-container {
  grid-area: headline;
  display: flex;
  margin: 0;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.media-slider__slide__marker {
  display: inline-block;
  margin: 0 5px 0 0;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: #fff;
}

@media (min-width: 641px) and (min-height: 500px) {
  .media-slider__slide__marker {
    margin-right: 10px;
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1025px) {
  .media-slider__slide__marker {
    width: 50px;
    height: 50px;
  }
}

.media-slider__slide__headline {
  overflow: hidden;
  margin: 0;
  flex: 1 1 auto;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-slider__slide__bodytext {
  grid-area: bodytext;
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (min-width: 641px) and (min-height: 500px) {
  .media-slider__slide__bodytext {
    margin-top: 15px;
  }
}

.media-slider__slide__button {
  grid-area: button;
  align-self: flex-end;
  margin: 0 0 0 var(--text-button-gap);
  pointer-events: auto;
}

@media (min-width: 641px) and (min-height: 500px) {
  .media-slider__container--s .media-slider__slide.swiper-slide-next {
    --card-fade-opacity: 0;
    pointer-events: auto;
  }
}

@media (min-width: 1025px) {
  .media-slider__container--s .media-slider__slide.swiper-slide-next + .media-slider__slide {
    --card-fade-opacity: 0;
    pointer-events: auto;
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .media-slider__container--m .media-slider__slide.swiper-slide-next {
    --card-fade-opacity: 0;
    pointer-events: auto;
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .media-slider__container--l .media-slider__slide__inner {
    transform: translate3d(0, 0, 0) scale(0.8);
  }
  .media-slider__container--l .media-slider__slide.swiper-slide-active .media-slider__slide__inner {
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: calc(var(--card-transition-duration) * 0.25);
  }
}

@media (min-width: 1025px) {
  .media-slider__container--l .media-slider__slide__inner {
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.25);
  }
}

.media-slider__navigation {
  display: none;
  margin: 75px 0 0;
  justify-content: center;
}

@media (min-width: 1025px) {
  .media-slider__navigation {
    display: flex;
  }
}

.media-slider__navigation__button {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M14.75 11.9991L8.75 19.9991H10.01L16 11.9991L10.01 3.99908H8.75L14.75 11.9991Z" /></svg>');
  display: block;
  overflow: hidden;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px 50px;
  text-indent: -999em;
  transition: opacity 300ms linear;
  cursor: pointer;
}

.media-slider__navigation__button--prev {
  transform: rotate(0.5turn);
}

.media-slider__navigation__button.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.text-media-creator {
  text-align: center;
}

.text-media-creator__headline {
  margin: 0 0 20px;
}

@media (min-width: 1025px) {
  .text-media-creator__headline {
    margin: 0 0 30px;
  }
}

.text-media-creator__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-media-creator__image {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
}

.text-media-creator__name {
  margin: 20px 0 0;
}

@media (min-width: 1025px) {
  .text-media-creator__name {
    margin: 30px 0 0;
  }
}

.text-media-creator__username {
  margin: 5px 0 0;
}

.navigation-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .navigation-links {
    gap: 20px;
  }
}

@media (min-width: 1025px) {
  .navigation-links {
    gap: 25px;
  }
}

.navigation-links__link {
  position: relative;
  display: flex;
  padding: 0 15px 0 30px;
  height: 30px;
  flex-shrink: 0;
  align-items: center;
  border-radius: 50px;
  background-color: #f4f4f4;
  color: #000;
  font-size: 0.75rem;
  font-style: italic;
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: 0.01;
}

@media (min-width: 641px) and (min-height: 500px) {
  .navigation-links__link {
    height: 35px;
    font-size: 0.875rem;
  }
}

@media (min-width: 1025px) {
  .navigation-links__link {
    height: 40px;
    font-size: 1rem;
    line-height: 1.2;
  }
}

.navigation-links__link::before {
  position: absolute;
  left: 15px;
  color: #96989a;
  font-weight: 700;
  content: "#";
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes flash-alt {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.numbers__container {
  padding: calc(50 * var(--vh-unit)) 0;
  grid-template-rows: auto 1fr auto;
  border-radius: 10px;
  background: #000;
  color: #fff;
}

@media (min-width: 641px) and (min-height: 500px) {
  .numbers__container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1025px) {
  .numbers__container {
    padding-top: 75px;
    padding-bottom: 75px;
    border-radius: 15px;
  }
}

.numbers__headlines, .numbers__contents {
  display: contents;
  text-align: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .numbers__headlines, .numbers__contents {
    text-align: left;
  }
}

@media (min-width: 1025px) {
  .numbers__headlines, .numbers__contents {
    display: block;
  }
}

@media (min-width: 1025px) {
  .numbers__headlines {
    grid-column: col-end 1/col-end 4;
  }
}

@media (min-width: 1025px) {
  .numbers__contents {
    grid-column: col-end 5/col-start 12;
  }
}

@media (max-width: 640px) {
  .numbers__topline, .numbers__headline, .numbers__bodytext, .numbers__numbers {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.numbers__topline {
  display: block;
}

@media (min-width: 641px) and (min-height: 500px) {
  .numbers__topline {
    grid-row: 1/span 1;
    grid-column-start: col-end 1;
  }
}

@media (min-width: 1025px) {
  .numbers__topline {
    margin-top: 15px;
  }
}

.numbers__headline {
  margin: 10px 0 0;
}

@media (min-width: 641px) and (min-height: 500px) {
  .numbers__headline {
    grid-row: 2/span 1;
    grid-column-start: col-end 1;
    margin-top: 20px;
    margin-bottom: calc(60 * var(--vh-unit));
  }
}

@media (min-width: 1025px) {
  .numbers__headline {
    margin-top: 30px;
    margin-bottom: 0;
  }
}

.numbers__bodytext {
  margin-top: 25px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .numbers__bodytext {
    grid-row: 1/span 2;
    grid-column-end: col-start 8;
    margin-top: 0;
    margin-bottom: calc(38 * var(--vh-unit));
  }
}

@media (min-width: 1025px) {
  .numbers__bodytext {
    grid-column-start: col-end 5;
    grid-column-end: col-start 12;
    margin-bottom: 0;
  }
}

.numbers__numbers {
  margin-top: 25px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .numbers__numbers {
    grid-row: 3/span 1;
    grid-column: col-end 1/col-start 8;
    display: flex;
    margin-top: -10px;
    margin-right: calc(-25 * var(--vw-unit));
    margin-left: calc(-25 * var(--vw-unit));
    flex-flow: row wrap;
    justify-content: center;
  }
}

@media (min-width: 1025px) {
  .numbers__numbers {
    grid-column-end: col-start 12;
    margin-top: 25px;
    justify-content: flex-start;
  }
}

.numbers__item {
  width: auto;
  flex: 0 0 auto;
  justify-content: flex-end;
  align-items: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .numbers__item {
    display: inline-flex;
    margin: 0;
    padding: 10px calc(25 * var(--vw-unit)) 0;
  }
}

@media (min-width: 1025px) {
  .numbers__item {
    padding-top: 0;
  }
}

.numbers__number {
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  font-size: 32px;
  font-weight: 600;
  line-height: 50px;
}

@media (max-width: 640px) {
  .numbers__number {
    grid-column: col-start 1/col-end 2;
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .numbers__number {
    line-height: 1.4em;
  }
}

@media (min-width: 1025px) {
  .numbers__number {
    font-size: 54px;
  }
}

.numbers__number__digit {
  position: relative;
  z-index: 1;
}

.numbers__number__digit::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.6);
  animation: 100ms linear forwards flash;
  content: attr(data-lastnumber);
}

.numbers__number__digit.animation-restart::before {
  animation-name: flash-alt;
}

.numbers__number__digit[data-lastnumber="$"]::before {
  visibility: hidden;
}

.numbers__number__digit:nth-last-child(3n+4)::after {
  content: ".";
}

.numbers__number__digit[data-currentnumber=§]:nth-last-child(n+2) {
  opacity: 0;
}

.numbers__number-text {
  line-height: 1.1em;
  text-align: left;
}

@media (max-width: 640px) {
  .numbers__number-text {
    grid-column: col-start 3/col-end 4;
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .numbers__number-text {
    margin-left: 15px;
  }
}

@media (min-width: 1025px) {
  .numbers__number-text {
    margin-left: 10px;
    line-height: 1.4em;
  }
}

.region-slider__intro {
  margin: 0 0 40px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .region-slider__intro {
    margin-bottom: 50px;
  }
}

@media (min-width: 1025px) {
  .region-slider__intro {
    margin-bottom: 70px;
  }
}

.region-slider__conveyor {
  position: relative;
  margin-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
  height: 170px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .region-slider__conveyor {
    margin-bottom: 15px;
  }
}

@media (min-width: 1025px) {
  .region-slider__conveyor {
    margin-bottom: 30px;
    height: 320px;
  }
}

.region-slider__conveyor--lower .region-slider__conveyor__container, .region-slider__conveyor--lower .region-slider__conveyor__wrapper {
  animation-direction: reverse;
}

.region-slider__conveyor__wrapper {
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  animation: scroll linear infinite forwards;
  animation-direction: normal;
  animation-play-state: running;
}

.region-slider__conveyor__wrapper:hover {
  animation-play-state: paused;
}

.region-slider__conveyor__container {
  display: flex;
  height: 100%;
  gap: 10px;
  flex-direction: row;
  flex-wrap: nowrap;
  animation: scroll linear infinite normal forwards;
}

@media (min-width: 641px) and (min-height: 500px) {
  .region-slider__conveyor__container {
    gap: 15px;
  }
}

@media (min-width: 1025px) {
  .region-slider__conveyor__container {
    gap: 30px;
  }
}

.region-slider__conveyor__container:nth-child(1) {
  position: absolute;
  left: 100%;
}

.region-slider__conveyor__container:nth-child(2) {
  position: absolute;
  left: 200%;
}

.region-slider__slide:first-of-type {
  margin-left: 10px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .region-slider__slide:first-of-type {
    margin-left: 15px;
  }
}

@media (min-width: 1025px) {
  .region-slider__slide:first-of-type {
    margin-left: 30px;
  }
}

.region-slider__slide.xs-slide {
  width: 150px;
}

@media (min-width: 1025px) {
  .region-slider__slide.xs-slide {
    width: 319px;
  }
}

.region-slider__slide.xs-slide .region-slider__tile__content__text {
  padding: 25px 10px 85px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .region-slider__slide.xs-slide .region-slider__tile__content__text {
    padding: 25px 15px 80px;
  }
}

@media (min-width: 1025px) {
  .region-slider__slide.xs-slide .region-slider__tile__content__text {
    padding: 60px 20px 135px;
  }
}

.region-slider__slide.s-slide {
  width: 150px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .region-slider__slide.s-slide {
    width: 250px;
  }
}

@media (min-width: 1025px) {
  .region-slider__slide.s-slide {
    width: 670px;
  }
}

.region-slider__slide.s-slide .region-slider__tile__content__text {
  padding: 25px 10px 85px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .region-slider__slide.s-slide .region-slider__tile__content__text {
    padding: 25px 15px 80px;
  }
}

@media (min-width: 1025px) {
  .region-slider__slide.s-slide .region-slider__tile__content__text {
    padding: 60px 50px 135px;
  }
}

.region-slider__slide.m-slide {
  width: 325px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .region-slider__slide.m-slide {
    width: 360px;
  }
}

@media (min-width: 1025px) {
  .region-slider__slide.m-slide {
    width: 689px;
  }
}

.region-slider__slide.m-slide .region-slider__tile__content__text {
  padding: 25px 20px 85px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .region-slider__slide.m-slide .region-slider__tile__content__text {
    padding: 25px 15px 80px;
  }
}

@media (min-width: 1025px) {
  .region-slider__slide.m-slide .region-slider__tile__content__text {
    padding: 60px 70px 135px;
  }
}

.region-slider__slide.l-slide {
  width: 325px;
}

@media (min-width: 1025px) {
  .region-slider__slide.l-slide {
    width: 1030px;
  }
}

.region-slider__slide.l-slide .region-slider__tile__content__text {
  padding: 25px 20px 85px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .region-slider__slide.l-slide .region-slider__tile__content__text {
    padding: 25px 15px 80px;
  }
}

@media (min-width: 1025px) {
  .region-slider__slide.l-slide .region-slider__tile__content__text {
    padding: 60px 100px 135px;
  }
}

.region-slider__tile {
  position: relative;
  width: 100%;
  height: 100%;
}

.region-slider__tile__full-link {
  z-index: 1;
  overflow: hidden;
  text-indent: -999em;
  pointer-events: auto;
}

.region-slider__tile__content {
  height: 100%;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.region-slider__tile__content__text {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.region-slider__tile__content__text__title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.region-slider__tile__content__text__button {
  position: absolute;
  bottom: 35px;
  left: 50%;
  display: inline-flex;
  max-width: 95%;
  align-items: center;
  transform: translate3d(-21px, 0, 0);
  transition: transform 400ms cubic-bezier(0.77, 0, 0.175, 1) 200ms;
  pointer-events: auto;
}

@media (min-width: 1025px) {
  .region-slider__tile__content__text__button {
    bottom: 60px;
    transform: translate3d(-29px, 0, 0);
  }
}

.region-slider__tile__content__text__button .btn__title {
  overflow: hidden;
  max-width: calc(100% - var(--textRight) - var(--textLeft));
  text-overflow: ellipsis;
  transform: translate3d(0, 0, 0);
}

.region-slider__tile__content__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-radius: 5px;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 641px) and (min-height: 500px) {
  .region-slider__tile__content__image {
    border-radius: 10px;
  }
}

@media (min-width: 1025px) {
  .region-slider__tile__content__image {
    border-radius: 15px;
  }
}

.region-slider__tile__content__image::before {
  position: absolute;
  top: 20px;
  z-index: 1;
  width: 100%;
  height: calc(100% - 20px);
  opacity: 1;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.74));
  transition: opacity 0.3s ease-in-out;
  content: "";
}

.region-slider__tile__content__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-alignment);
  filter: brightness(1);
  transform: scale(1);
  transition: transform 0.3s ease-out, filter 0.3s ease-in-out;
}

@media (hover: hover), (min-width: 1025px) {
  .region-slider__tile:hover .region-slider__tile__content__text__button {
    transform: translate3d(-50%, 0, 0);
    transition-delay: 0ms;
  }
  .region-slider__tile:hover .region-slider__tile__content__gradient {
    top: 0;
    height: 100%;
    opacity: 0;
  }
  .region-slider__tile:hover .region-slider__tile__content__image .image {
    filter: brightness(0.6);
    transform: scale(1.1);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.routes-slider {
  --bg: hsl(0, 0, 0);
}

.routes-slider--slider {
  padding: 34px 0;
}

@media (min-width: 641px) and (min-height: 500px) {
  .routes-slider--slider {
    padding: 60px 0 53px;
  }
}

@media (min-width: 1025px) {
  .routes-slider--slider {
    padding: 120px 0;
  }
}

.routes-slider--text {
  padding: 60px 0 40px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .routes-slider--text {
    padding: 93px 0 53px;
  }
}

@media (min-width: 1025px) {
  .routes-slider--text {
    padding: 183px 0 120px;
  }
}

.routes-slider--text .intro__text-container {
  margin-bottom: 40px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .routes-slider--text .intro__text-container {
    margin-bottom: 50px;
  }
}

@media (min-width: 1025px) {
  .routes-slider--text .intro__text-container {
    margin-bottom: 70px;
  }
}

.routes-slider--image {
  padding: 25px 0;
}

@media (min-width: 641px) and (min-height: 500px) {
  .routes-slider--image {
    padding: 46px 0 57px;
  }
}

@media (min-width: 1025px) {
  .routes-slider--image {
    padding: 95px 0 106px;
  }
}

.routes-slider--image__text {
  margin-bottom: 35px;
  padding: 0 20px;
  text-align: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .routes-slider--image__text {
    margin-bottom: 42px;
    padding: 0;
  }
}

@media (min-width: 1025px) {
  .routes-slider--image__text {
    order: 1;
    margin-bottom: 40px;
    padding: 50px 0;
  }
}

.routes-slider--image__text--left, .routes-slider--image__text--center {
  text-align: center;
}

@media (min-width: 1025px) {
  .routes-slider--image__text--left, .routes-slider--image__text--center {
    text-align: left;
  }
}

.routes-slider--image__button {
  margin-top: 40px;
}

@media (min-width: 1025px) {
  .routes-slider--image__button {
    margin-top: 50px;
  }
}

.routes-slider--image__image {
  grid-column-start: fullsize-start;
  grid-column-end: 8;
  order: 2;
  margin-bottom: -70px;
  height: 172px;
  border-radius: 0 10px 10px 0;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .routes-slider--image__image {
    grid-column-end: 17;
    height: 365px;
    border-radius: 0 15px 15px 0;
  }
}

@media (min-width: 1025px) {
  .routes-slider--image__image {
    position: absolute;
    grid-column-end: 13;
    margin-top: -30px;
    margin-bottom: 0;
    height: 556px;
  }
}

.routes-slider__slider {
  --card-fade-opacity: 1;
  --card-transition-duration: 300ms;
  overflow: unset;
}

.routes-slider__slider__card {
  position: relative;
  overflow: hidden;
  width: 325px;
  height: 200px;
  border-radius: 10px;
  background: var(--bg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1025px) {
  .routes-slider__slider__card {
    width: 411px;
    height: 290px;
    border-radius: 15px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  .routes-slider__slider__card.swiper-slide-active, .routes-slider__slider__card.swiper-slide-next, .routes-slider__slider__card.swiper-slide-next + .routes-slider__slider__card {
    --card-fade-opacity: 0;
    pointer-events: auto;
  }
  .routes-slider__slider__card::after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    opacity: var(--card-fade-opacity);
    background: rgba(255, 255, 255, 0.6);
    transition: opacity var(--card-transition-duration) linear;
    pointer-events: none;
    content: "";
  }
}

.routes-slider__slider__card__image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 1025px) {
  .routes-slider__slider__card__image {
    height: 157px;
  }
}

.routes-slider__slider__card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 20px;
  width: 100%;
  height: 100px;
  justify-content: space-between;
}

@media (min-width: 1025px) {
  .routes-slider__slider__card__content {
    padding: 25px 25px 35px;
    height: 135px;
  }
}

.routes-slider__slider__card__content__left-side {
  display: flex;
  overflow: hidden;
  flex-grow: 1;
  gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
}

@media (min-width: 1025px) {
  .routes-slider__slider__card__content__left-side {
    gap: 15px;
  }
}

.routes-slider__slider__card__content__title {
  overflow: hidden;
  max-height: 1.5em;
  color: #fff;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-block-start: 0;
}

@media (max-width: 640px) {
  .routes-slider__slider__card__content__title {
    font-size: 14px;
  }
}

.routes-slider__slider__card__content__tagbox {
  display: flex;
  padding: 0 10px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  height: 30px;
  align-items: center;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.2);
}

.routes-slider__slider__card__content__tagbox__text {
  overflow: hidden;
  padding-right: 10px;
  color: #fff;
  font-size: 11px;
  font-style: italic;
  line-height: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.routes-slider__slider__card__content__tagbox__text__icon {
  margin: 0 0 -1px 10px;
  width: 8px;
  height: 9px;
  opacity: 0.3;
  fill: #fff;
}

.routes-slider__slider__card__content__right-side {
  display: flex;
  margin-left: 25px;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.routes-slider__slider__card__content__duration {
  color: #fff;
  white-space: nowrap;
  margin-block-start: 0;
}

.routes-slider__slider__card__content__duration__icon {
  width: 20px;
  height: 20px;
}

.routes-slider__slider__card__environment {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 1px;
}

@media (min-width: 1025px) {
  .routes-slider__slider__card__environment {
    top: 20px;
    right: 17px;
    gap: 8px;
  }
}

.routes-slider__slider__card__environment__icon {
  width: 25px;
  height: 25px;
}

@media (min-width: 1025px) {
  .routes-slider__slider__card__environment__icon {
    width: 50px;
    height: 50px;
  }
}

.text-media-image-teaser {
  margin-bottom: -70px;
  align-items: center;
  grid-auto-flow: dense;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-image-teaser {
    margin-bottom: -75px;
  }
}

@media (min-width: 1025px) {
  .text-media-image-teaser {
    margin-bottom: -100px;
  }
}

.text-media-image-teaser__image {
  align-self: flex-start;
  margin: 0;
  border-radius: 15px;
  line-height: 0;
}

.text-media-image-teaser__image img, .text-media-image-teaser__image picture {
  object-fit: cover;
  aspect-ratio: 3/2;
}

.text-media-image-teaser__image.figure {
  margin: 0 0 70px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-image-teaser__image.figure {
    margin: 0 0 75px;
  }
}

@media (min-width: 1025px) {
  .text-media-image-teaser__image.figure {
    margin: 0 0 100px;
  }
}

.text-media-image-teaser__image .caption {
  margin: 10px 0 0;
  line-height: 1.4;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-image-teaser__image .caption {
    line-height: 1.2;
  }
}

@media (min-width: 1025px) {
  .text-media-image-teaser__image .caption {
    margin: 15px 15px 0;
  }
}

.text-media-image-teaser__image--left {
  grid-column: col-start 1/col-end 4;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-image-teaser__image--left {
    grid-column: col-start 1/col-end 4;
  }
}

@media (min-width: 1025px) {
  .text-media-image-teaser__image--left {
    grid-column: col-start 1/col-start 7;
  }
}

.text-media-image-teaser__image--left .caption {
  text-align: right;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-image-teaser__image--left .caption {
    text-align: left;
  }
}

.text-media-image-teaser__image--right {
  grid-column: col-start 1/col-end 4;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-image-teaser__image--right {
    grid-column: col-start 5/col-end 8;
  }
}

@media (min-width: 1025px) {
  .text-media-image-teaser__image--right {
    grid-column: col-end 6/col-end 12;
  }
}

.text-media-image-teaser__image--right .caption {
  text-align: right;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-image-teaser__image--right .caption {
    text-align: right;
  }
}

.text-media-image-teaser__content {
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .text-media-image-teaser__content {
    text-align: center;
  }
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-image-teaser__content {
    margin-bottom: 75px;
  }
}

@media (min-width: 1025px) {
  .text-media-image-teaser__content {
    margin-bottom: 100px;
  }
}

.text-media-image-teaser__content--left {
  grid-column: col-start 1/col-end 4;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-image-teaser__content--left {
    grid-column: col-start 5/col-end 8;
  }
}

@media (min-width: 1025px) {
  .text-media-image-teaser__content--left {
    grid-column: col-start 8/col-end 12;
  }
}

.text-media-image-teaser__content--right {
  grid-column: col-start 1/col-end 4;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-image-teaser__content--right {
    grid-column: col-start 1/col-end 4;
  }
}

@media (min-width: 1025px) {
  .text-media-image-teaser__content--right {
    grid-column: col-start 1/col-end 5;
  }
}

.text-media-image-teaser__content__headline {
  margin: 0 0 30px;
}

@media (min-width: 1025px) {
  .text-media-image-teaser__content__headline {
    margin: 0 0 50px;
  }
}

.text-media-image-teaser__content__text {
  margin: 0 0 40px;
  padding: 0 20px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-image-teaser__content__text {
    padding: 0;
  }
}

@media (min-width: 1025px) {
  .text-media-image-teaser__content__text {
    margin: 0 0 50px;
  }
}

.text-media-image-teaser__content__text:last-child {
  margin: 0;
}

.after-lupe, .text-media-images__gallery__slide--active::after, .text-media-images__gallery__slide.swiper-slide-duplicate-active::after, .text-media-images__mosaik__image:not(img):after, .text-media-images__single:not(figure, img):after {
  background-image: url('data:image/svg+xml;utf8,<svg fill="rgb(255, 255, 255)" width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="M9.61667 18.2617L0.75 27.0967L2.8875 29.25L11.8333 20.3992C10.9913 19.8021 10.244 19.0815 9.61667 18.2617Z" fill="white"/><path d="M19.75 0.75C17.8711 0.75 16.0343 1.30717 14.4721 2.35104C12.9098 3.39491 11.6922 4.87861 10.9731 6.61451C10.2541 8.35041 10.066 10.2605 10.4325 12.1034C10.7991 13.9462 11.7039 15.6389 13.0325 16.9675C14.3611 18.2961 16.0538 19.2009 17.8966 19.5675C19.7395 19.934 21.6496 19.7459 23.3855 19.0269C25.1214 18.3078 26.6051 17.0902 27.649 15.5279C28.6928 13.9657 29.25 12.1289 29.25 10.25C29.25 7.73044 28.2491 5.31408 26.4675 3.53249C24.6859 1.75089 22.2696 0.75 19.75 0.75ZM19.75 18.1667C18.1842 18.1667 16.6536 17.7024 15.3517 16.8325C14.0498 15.9626 13.0351 14.7262 12.436 13.2796C11.8368 11.833 11.68 10.2412 11.9854 8.70554C12.2909 7.16985 13.0449 5.75924 14.1521 4.65207C15.2592 3.54491 16.6699 2.79092 18.2055 2.48545C19.7412 2.17998 21.333 2.33676 22.7796 2.93595C24.2262 3.53515 25.4626 4.54985 26.3325 5.85174C27.2024 7.15363 27.6667 8.68423 27.6667 10.25C27.6667 11.2896 27.4619 12.3191 27.064 13.2796C26.6662 14.2401 26.0831 15.1128 25.3479 15.8479C24.6128 16.5831 23.7401 17.1662 22.7796 17.564C21.8191 17.9619 20.7896 18.1667 19.75 18.1667Z" fill="white"/></svg>');
  position: absolute;
  right: 23.75px;
  bottom: 18.75px;
  width: 28.5px;
  height: 28.5px;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translate3d(0, 0, 0);
  transition: opacity 400ms ease-in-out;
  content: "";
}

/* Lightbox fix */

.img-lightbox--open {
  overflow: initial;
}

.img-lightbox img {
  object-fit: contain;
}

.text-media-images__single {
  grid-column: fullsize-start/fullsize-end;
  margin: 0;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 400ms ease-in-out, filter 400ms ease-in-out;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .text-media-images__single {
    grid-column: 1 col-start/12 col-end;
  }
}

@media (hover: hover), (min-width: 1025px) {
  .text-media-images__single:not(picture, img):hover {
    filter: drop-shadow(0 30px 90px rgba(0, 0, 0, 0.1)) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
    transform: translate3d(0, 0, 0) scale(1.0429);
  }
  .text-media-images__single:not(figure, img):hover:after {
    opacity: 1;
  }
}

.text-media-images__single img, .text-media-images__single picture {
  display: block;
  max-height: 250px;
  object-fit: cover;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-images__single img, .text-media-images__single picture {
    max-height: 425px;
  }
}

@media (min-width: 1025px) {
  .text-media-images__single img, .text-media-images__single picture {
    max-height: 700px;
    border-radius: 15px;
  }
}

.text-media-images__mosaik {
  grid-template-rows: unset;
  grid-auto-rows: 200px;
  row-gap: 10px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-images__mosaik {
    grid-auto-rows: 284px;
    row-gap: 25px;
  }
}

@media (min-width: 1025px) {
  .text-media-images__mosaik {
    grid-template-rows: 400px 237px 400px;
    row-gap: 38px;
  }
}

.text-media-images__mosaik__image {
  overflow: hidden;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 400ms ease-in-out, filter 400ms ease-in-out;
  cursor: pointer;
}

@media (hover: hover), (min-width: 1025px) {
  .text-media-images__mosaik__image:not(img):hover {
    filter: drop-shadow(0 30px 90px rgba(0, 0, 0, 0.1)) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
    transform: translate3d(0, 0, 0) scale(1.037);
  }
  .text-media-images__mosaik__image:not(img):hover:after {
    opacity: 1;
  }
}

.text-media-images__mosaik__image:nth-child(1):not(img) {
  grid-row: 1/span 1;
  grid-column: 1 col-start/4 col-end;
  border-radius: 5px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-images__mosaik__image:nth-child(1):not(img) {
    grid-column: fullsize-start/4 col-end;
    border-radius: 0 10px 10px 0;
  }
}

@media (min-width: 1025px) {
  .text-media-images__mosaik__image:nth-child(1):not(img) {
    grid-column: 1 col-start/6 col-end;
    margin-left: -100px;
    width: calc(100% + 100px);
    border-radius: 15px;
  }
}

.text-media-images__mosaik__image:nth-child(2):not(img) {
  grid-row: 2/span 1;
  grid-column: 1 col-start/4 col-end;
  border-radius: 5px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-images__mosaik__image:nth-child(2):not(img) {
    grid-row: 1/span 1;
    grid-column: 5 col-start/8 col-end;
    border-radius: 10px;
  }
}

@media (min-width: 1025px) {
  .text-media-images__mosaik__image:nth-child(2):not(img) {
    grid-row: 1/span 2;
    grid-column: 7 col-start/12 col-end;
    border-radius: 15px;
  }
}

.text-media-images__mosaik__image:nth-child(3):not(img) {
  grid-row: 3/span 1;
  grid-column: 1 col-start/4 col-end;
  border-radius: 5px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-images__mosaik__image:nth-child(3):not(img) {
    grid-row: 2/span 1;
    border-radius: 10px;
  }
}

@media (min-width: 1025px) {
  .text-media-images__mosaik__image:nth-child(3):not(img) {
    grid-row: 2/span 2;
    grid-column: 1 col-start/6 col-end;
    border-radius: 15px;
  }
}

.text-media-images__mosaik__image:nth-child(4):not(img) {
  grid-row: 4/span 1;
  grid-column: 1 col-start/4 col-end;
  border-radius: 5px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-images__mosaik__image:nth-child(4):not(img) {
    grid-row: 2/span 1;
    grid-column: 5 col-start/fullsize-end;
    border-radius: 10px 0 0 10px;
  }
}

@media (min-width: 1025px) {
  .text-media-images__mosaik__image:nth-child(4):not(img) {
    grid-row: 3/span 1;
    grid-column: 7 col-start/12 col-end;
    margin-right: -100px;
    width: calc(100% + 100px);
    border-radius: 15px;
  }
}

.text-media-images__mosaik__image img, .text-media-images__mosaik__image picture {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.text-media-images__gallery {
  overflow: visible;
  margin: 0;
  height: 250px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-images__gallery {
    height: 425px;
  }
}

@media (min-width: 1025px) {
  .text-media-images__gallery {
    height: 700px;
  }
}

.text-media-images__gallery__slide {
  overflow: hidden;
  width: 100% !important;
  border-radius: 4.02171px;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 400ms ease-in-out, filter 400ms ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-images__gallery__slide {
    border-radius: 7.88571px;
  }
}

@media (min-width: 1025px) {
  .text-media-images__gallery__slide {
    border-radius: 15px;
  }
}

.text-media-images__gallery__slide::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  background: #fff;
  transition: opacity 400ms ease-in-out;
  pointer-events: none;
  content: "";
}

.text-media-images__gallery__slide--active::before, .text-media-images__gallery__slide.swiper-slide-duplicate-active::before {
  opacity: 0;
}

@media (hover: hover), (min-width: 1025px) {
  .text-media-images__gallery__slide--active:hover, .text-media-images__gallery__slide.swiper-slide-duplicate-active {
    filter: drop-shadow(0 30px 90px rgba(0, 0, 0, 0.1)) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
    transform: translate3d(0, 0, 0) scale(1.0429);
  }
  .text-media-images__gallery__slide--active:hover::after, .text-media-images__gallery__slide.swiper-slide-duplicate-active::after {
    opacity: 1;
  }
}

.text-media-images__gallery__slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
}

.text-media-images .caption {
  display: none;
  margin: 15px 0 0;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-images .caption {
    grid-column: 1 col-start/8 col-end;
    display: block;
    max-height: 425px;
  }
}

@media (min-width: 1025px) {
  .text-media-images .caption {
    grid-column: 4 col-start/9 col-end;
    max-height: 700px;
    border-radius: 15px;
  }
}

.text-media-intro {
  text-align: center;
}

.text-media-intro strong,
.text-media-intro b {
  font-weight: 700;
}

.text-media-intro a {
  padding: 0 0 2px;
  background-image: linear-gradient(to right, transparent 0%, transparent 33%, #000 33%, #000 100%);
  background-repeat: repeat-x;
  background-position: 100% 1.25em;
  background-size: 150% 2px;
  color: #000;
  font-style: italic;
  font-weight: 700;
  text-decoration: none;
  transition: background-position 800ms ease-in-out, background-size 800ms ease-in-out;
}

.text-media-intro a:hover {
  background-position: -100% 1.25em;
  background-size: 200% 2px;
}

.text-media-text__headline {
  margin: 0 0 30px;
  text-align: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-text__headline {
    margin: 0 0 35px;
  }
}

@media (min-width: 1025px) {
  .text-media-text__headline {
    margin: 0 0 50px;
  }
}

.text-media-text__headline:last-child {
  margin: 0;
}

.text-media-quote__quote {
  position: relative;
  margin: 0 0 25px;
  font-size: 1.563rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-quote__quote {
    font-size: 2rem;
  }
}

@media (min-width: 1025px) {
  .text-media-quote__quote {
    font-size: 2.5rem;
  }
}

.text-media-quote__quote::before, .text-media-quote__quote::after {
  position: absolute;
  width: 100px;
  height: 93px;
  opacity: 0.05;
  content: "";
}

.text-media-quote__quote::before {
  background-image: url('data:image/svg+xml;utf8,<svg width="101" height="94" viewBox="0 0 101 94" xmlns="http://www.w3.org/2000/svg"><path d="M46.1522 93.3962H71.5145L100.5 46.6981L83.1087 0H57.7464L72.2391 46.6981L46.1522 93.3962ZM0.5 93.3962H25.8623L54.8478 46.6981L37.4565 0H12.0942L26.587 46.6981L0.5 93.3962Z"/></svg>');
  top: 0;
  left: -25px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-quote__quote::before {
    top: -35px;
  }
}

@media (min-width: 1025px) {
  .text-media-quote__quote::before {
    top: -30px;
    left: -15px;
  }
}

.text-media-quote__quote::after {
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="93" viewBox="0 0 100 93" xmlns="http://www.w3.org/2000/svg"><path d="M63.0435 92.7536H88.4058L73.913 46.3768L100 0H74.6377L45.6522 46.3768L63.0435 92.7536ZM17.3913 92.7536H42.7536L28.2609 46.3768L54.3478 0H28.9855L0 46.3768L17.3913 92.7536Z"/></svg>');
  right: -25px;
  bottom: 0;
}

@media (min-width: 641px) and (min-height: 500px) {
  .text-media-quote__quote::after {
    right: -20px;
    bottom: -20px;
  }
}

@media (min-width: 1025px) {
  .text-media-quote__quote::after {
    right: -15px;
  }
}

.text-media-quote__author {
  text-align: center;
}

.text-media-video__container {
  overflow: hidden;
  border-radius: 15px;
  transform: translate3d(0, 0, 0);
}

.text-media-video__container .video__play-button {
  background-color: rgba(0, 0, 0, 0.35);
}

.text-media-video__container .video__play-icon {
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  opacity: 0.7;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 250ms ease-in-out, opacity 250ms ease-in-out;
  pointer-events: none;
}

.text-media-video__container:hover .video__play-icon {
  opacity: 1;
  transform: scale(1.04) translate(-50%, -50%);
}

.text-media-video__container .video__source {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 33.97%, #000 89.02%);
}

.text-media-video__caption {
  margin: 15px 0 0;
  text-align: center;
}

.footer {
  margin-top: 100px;
  padding: 60px 0;
  background: #000;
  color: #fff;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer {
    padding: 70px 0;
  }
}

@media (min-width: 1025px) {
  .footer {
    margin-top: 150px;
    padding: 75px 0 100px;
  }
}

.footer__logo-container, .footer__navigation, .footer__subscribe, .footer__language {
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__logo-container, .footer__navigation, .footer__subscribe, .footer__language {
    padding-right: 0;
    padding-left: 0;
  }
}

.footer__logo-container {
  order: 1;
  padding-top: 0;
  padding-bottom: 30px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__logo-container {
    padding-bottom: 0;
  }
}

.footer__logo {
  display: block;
  margin: 0 auto;
  width: 53px;
  height: 80px;
  fill: #fff;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__logo {
    margin: 0;
    width: 115px;
    height: 40px;
  }
}

.footer__logo__row {
  display: none;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__logo__row {
    display: block;
    width: 100%;
    height: 100%;
  }
}

.footer__logo__column {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__logo__column {
    display: none;
  }
}

.footer__logo-text {
  margin: 30px 0 0;
  text-align: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__logo-text {
    margin-top: 40px;
    text-align: left;
  }
}

@media (min-width: 1025px) {
  .footer__logo-text {
    margin-top: 30px;
  }
}

.footer__navigation {
  order: 2;
  margin: 0;
}

@media (min-width: 641px) and (min-height: 500px) and (max-width: 1024px) {
  .footer__navigation {
    order: 3;
    margin-top: 50px;
  }
}

@media (min-width: 1025px) {
  .footer__navigation {
    grid-column-end: col-start 7;
    padding-right: 12px;
  }
}

.footer__navigation ul {
  margin: -5px 0;
  padding: 0;
  columns: 2;
  column-gap: calc(23 * var(--vw-unit));
  list-style: none;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__navigation ul {
    margin: -7px 0 -8px;
    column-gap: 25px;
  }
}

@media (min-width: 1025px) {
  .footer__navigation ul {
    margin: -15px 0;
  }
}

.footer__navigation ul li {
  page-break-inside: avoid;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.footer__navigation .menu-item a {
  display: block;
  padding: 5px 0;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__navigation .menu-item a {
    padding: 7px 0 8px;
  }
}

@media (min-width: 1025px) {
  .footer__navigation .menu-item a {
    padding: 15px 0;
  }
}

.footer__subscribe {
  position: relative;
  order: 3;
  margin: 50px 0 0;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__subscribe {
    order: 2;
    margin-top: 0;
  }
}

@media (min-width: 1025px) {
  .footer__subscribe {
    order: 3;
  }
}

.footer__subscribe__form {
  opacity: 1;
  transition: opacity 300ms linear;
}

.footer__subscribe__form--hidden {
  opacity: 0;
}

.footer__subscribe__form--loading {
  opacity: 0.5;
  pointer-events: none;
}

.footer__subscribe__headline {
  overflow: hidden;
  margin: 0 0 20px;
  height: 1.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer__subscribe__input-wrapper {
  display: flex;
  margin-bottom: 20px;
}

@media (min-width: 1025px) {
  .footer__subscribe__input-wrapper {
    margin-bottom: 25px;
  }
}

.footer__subscribe__mail {
  padding-left: 25px;
  width: calc(100% - 55px);
  height: 35px;
  border-radius: 5px 0 0 5px;
  background: #fff;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__subscribe__mail {
    height: 45px;
  }
}

@media (min-width: 1025px) {
  .footer__subscribe__mail {
    height: 50px;
  }
}

.footer__subscribe__mail::placeholder {
  color: #96989a;
}

.footer__subscribe__url {
  /** Make this stuff disappear from screen but not via display:none */
  position: absolute;
  left: -200vw;
  border: none;
  background-color: transparent;
}

.footer__subscribe__submit {
  background-image: url('data:image/svg+xml;utf8,<svg fill="rgb(255, 255, 255)" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M14.75 11.9991L8.75 19.9991H10.01L16 11.9991L10.01 3.99908H8.75L14.75 11.9991Z" /></svg>');
  position: relative;
  width: 55px;
  height: 35px;
  border: 1px solid #fff;
  border-radius: 0 5px 5px 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
  text-indent: -9999px;
  cursor: pointer;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__subscribe__submit {
    height: 45px;
  }
}

@media (min-width: 1025px) {
  .footer__subscribe__submit {
    height: 50px;
  }
}

.footer__subscribe__checkbox-wrapper {
  display: flex;
}

.footer__subscribe__checkbox-label > p {
  margin: 2px 0 0 10px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__subscribe__checkbox-label > p {
    margin: 3px 0 0 10px;
  }
}

.footer__subscribe__checkbox-label a {
  color: #fff;
}

.footer__subscribe__checkbox {
  display: grid;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid #fff;
  place-content: center;
  appearance: none;
  border-radius: 2px;
  background: none;
}

.footer__subscribe__checkbox::before {
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  box-shadow: inset 1em 1em #fff;
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  content: "";
}

.footer__subscribe__checkbox:checked::before {
  transform: scale(1);
}

.footer__subscribe__feedback {
  position: absolute;
  top: calc(1.6rem + 20px);
  display: flex;
  padding: 15px;
  width: calc(100% - 40px);
  max-height: 79px;
  border: 1px solid #fff;
  justify-content: space-between;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  border-radius: 5px;
  transition: opacity 300ms linear 200ms;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__subscribe__feedback {
    width: 100%;
    max-height: 99px;
  }
}

@media (min-width: 1025px) {
  .footer__subscribe__feedback {
    padding: 25px;
    max-height: none;
  }
}

.footer__subscribe__feedback--success, .footer__subscribe__feedback--error {
  visibility: visible;
  opacity: 1;
}

.footer__subscribe__feedback--success .footer__subscribe__feedback-icon--success {
  opacity: 1;
}

.footer__subscribe__feedback--error .footer__subscribe__feedback-icon--error {
  opacity: 1;
}

.footer__subscribe__feedback--error .footer__subscribe__feedback-reload {
  display: block;
}

.footer__subscribe__feedback-message {
  margin-right: 10px;
}

.footer__subscribe__feedback-icon {
  position: absolute;
  width: 100%;
  height: 100%;
}

.footer__subscribe__feedback-icon-wrapper {
  position: relative;
  width: 63px;
  height: 42px;
  flex-shrink: 0;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__subscribe__feedback-icon-wrapper {
    width: 81px;
    height: 54px;
  }
}

.footer__subscribe__feedback-icon--success, .footer__subscribe__feedback-icon--error {
  opacity: 0;
}

.footer__subscribe__feedback-reload {
  display: none;
  margin-top: 5px;
  width: 25px;
  height: 25px;
  border: none;
  background: none;
  cursor: pointer;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__subscribe__feedback-reload {
    width: 30px;
    height: 30px;
  }
}

.footer__subscribe__feedback-reload-icon {
  width: 100%;
  height: 100%;
}

.footer__subscribe__feedback--show {
  visibility: visible;
  opacity: 1;
}

.footer__language {
  order: 4;
  margin: 20px 0 0;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__language {
    margin-top: 50px;
  }
}

@media (min-width: 1025px) {
  .footer__language {
    grid-column-start: col-end 10;
    margin-top: calc(1.6rem + 20px);
  }
}

.footer__languageswitch__dropdown {
  background-image: url('data:image/svg+xml;utf8,<svg fill="rgb(255, 255, 255)" width="13" height="6" viewBox="0 0 13 6" xmlns="http://www.w3.org/2000/svg"><path d="M6.54512 4.57586L0.845118 0.255859L0.845118 1.16306L6.54512 5.47586L12.2451 1.16306L12.2451 0.255859L6.54512 4.57586Z" /></svg>');
  padding: 0 40px 0 12px;
  width: 100%;
  height: 35px;
  border: 1px solid #fff;
  appearance: none;
  border-radius: 5px;
  outline: none;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: top 1px right 12px;
  background-size: 12px 100%;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__languageswitch__dropdown {
    height: 45px;
    background-position: top 1px right 20px;
    background-size: 15px 100%;
  }
}

.footer__appstore-link {
  position: relative;
  display: block;
  margin: 20px 35px 0 0;
  width: 105px;
  height: 35px;
  flex-shrink: 0;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__appstore-link {
    margin: 25px 15px 0 0;
  }
}

.footer__appstore-link--fr {
  width: 111px;
}

.footer__appstore-link__image {
  width: 100%;
  height: 100%;
}

.footer__media-link-wrapper {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer__social-media {
  display: flex;
  margin-top: 20px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .footer__social-media {
    margin-top: 25px;
  }
}

.footer__social-media__link {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background-color: #323639;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px;
}

.footer__social-media__link:not(:first-child) {
  margin-left: 8px;
}

.footer__social-media__link--facebook {
  background-image: url('data:image/svg+xml;utf8,<svg fill="rgb(255, 255, 255)" id="icon-facebook" width="41" height="40" viewBox="0 0 41 40" xmlns="http://www.w3.org/2000/svg"><path d="M22.662 34.9953V21.3353H27.2704L27.9554 15.9869H22.662V12.5803C22.662 11.0369 23.092 9.98028 25.307 9.98028H28.1137V5.21195C26.7481 5.0656 25.3755 4.99494 24.002 5.00028C19.9287 5.00028 17.132 7.48695 17.132 12.0519V15.9769H12.5537V21.3253H17.142V34.9953H22.662Z"></path></svg>');
}

.footer__social-media__link--linkedin {
  background-image: url('data:image/svg+xml;utf8,<svg fill="rgb(255, 255, 255)" id="icon-linkedin" width="41" height="40" viewBox="0 0 41 40" xmlns="http://www.w3.org/2000/svg"><path d="M8.97088 11.9947C10.9849 11.9947 12.6176 10.362 12.6176 8.34801C12.6176 6.33401 10.9849 4.70134 8.97088 4.70134C6.95689 4.70134 5.32422 6.33401 5.32422 8.34801C5.32422 10.362 6.95689 11.9947 8.97088 11.9947Z" /><path d="M16.0599 14.7586V34.9903H22.3416V24.9853C22.3416 22.3453 22.8382 19.7886 26.1116 19.7886C29.3399 19.7886 29.3799 22.807 29.3799 25.152V34.992H35.6649V23.897C35.6649 18.447 34.4916 14.2586 28.1216 14.2586C25.0632 14.2586 23.0132 15.937 22.1749 17.5253H22.0899V14.7586H16.0599ZM5.82324 14.7586H12.1149V34.9903H5.82324V14.7586Z" /></svg>');
}

.footer__social-media__link--twitter {
  background-image: url('data:image/svg+xml;utf8,<svg fill="rgb(255, 255, 255)" id="icon-twitter" width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M32.7213 13.3284C32.743 13.6201 32.743 13.9101 32.743 14.2001C32.743 23.0751 25.988 33.3017 13.643 33.3017C9.83967 33.3017 6.30634 32.2001 3.33301 30.2867C3.87301 30.3484 4.39301 30.3701 4.95467 30.3701C7.97633 30.3774 10.9124 29.367 13.2897 27.5017C11.8887 27.4764 10.5306 27.0142 9.40507 26.1796C8.27951 25.3451 7.44265 24.1799 7.01134 22.8467C7.42634 22.9084 7.84301 22.9501 8.27967 22.9501C8.88134 22.9501 9.48634 22.8667 10.048 22.7217C8.52761 22.4148 7.16046 21.5907 6.17904 20.3896C5.19761 19.1884 4.6625 17.6845 4.66467 16.1334V16.0501C5.55967 16.5484 6.59801 16.8601 7.69801 16.9017C6.77649 16.2894 6.02087 15.4584 5.49857 14.4831C4.97627 13.5077 4.70353 12.4182 4.70467 11.3117C4.70467 10.0651 5.03634 8.92174 5.61801 7.92508C7.30491 10.0001 9.40885 11.6977 11.7936 12.9078C14.1783 14.118 16.7906 14.8138 19.4613 14.9501C19.358 14.4501 19.2947 13.9317 19.2947 13.4117C19.2942 12.53 19.4676 11.6568 19.8048 10.8421C20.142 10.0274 20.6365 9.2872 21.26 8.66372C21.8835 8.04025 22.6237 7.54576 23.4384 7.20854C24.2531 6.87132 25.1263 6.69797 26.008 6.69841C27.9413 6.69841 29.6863 7.50841 30.913 8.81841C32.416 8.52777 33.8572 7.97911 35.173 7.19674C34.672 8.7481 33.6226 10.0636 32.2213 10.8967C33.5543 10.7447 34.8571 10.3942 36.0863 9.85674C35.1682 11.1952 34.0305 12.369 32.7213 13.3284Z"></path></svg>');
}

.wp-block {
  max-width: none;
}

.editor-styles-wrapper {
  overflow: hidden;
  font-family: unset;
}

.grid-display {
  --columnDisplay: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000000;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.grid-display.visible {
  --columnDisplay: block;
}

.grid-display__column {
  position: relative;
  display: var(--columnDisplay);
  height: 100%;
  background: rgba(255, 0, 0, 0.3);
}

.grid-display__column::before, .grid-display__column::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  color: rgba(255, 255, 255, 0.5);
  font-family: sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  content: attr(data-columnnumber);
}

.grid-display__column::before {
  top: 40px;
}

.grid-display__column::after {
  bottom: 40px;
}

.grid-display__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: auto;
}

.consent-options__embed div {
  margin-right: auto;
  margin-left: auto;
}

.consent-history__embed div {
  margin-right: auto;
  margin-left: auto;
}

.destination-content-image {
  margin-top: 70px;
  margin-bottom: -30px;
  text-align: center;
}

@media (min-width: 641px) and (min-height: 500px) {
  .destination-content-image {
    margin-top: 75px;
    margin-bottom: -25px;
  }
}

@media (min-width: 1025px) {
  .destination-content-image {
    margin-top: 100px;
    margin-bottom: -50px;
  }
}

.destination-content-image__image {
  max-width: 1000px;
  height: auto;
  border-radius: 5px;
}

@media (min-width: 641px) and (min-height: 500px) {
  .destination-content-image__image {
    border-radius: 10px;
  }
}

@media (min-width: 1025px) {
  .destination-content-image__image {
    border-radius: 15px;
  }
}
/*# sourceMappingURL=main.css.map */