.element-content .sitepath a:hover{color:#2f3c45;text-decoration:none}
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

.galleries{position:relative}.galleries__mountains{position:absolute;z-index:1;pointer-events:none}.galleries .mountains-desktop{left:0;width:100%;bottom:20px;display:block}@media all and (max-width:80rem){.galleries .mountains-desktop{display:none}}.galleries .mountains-tablet{right:0;bottom:90px;display:none}@media all and (max-width:80rem){.galleries .mountains-tablet{display:block}}@media all and (max-width:46.4375rem){.galleries .mountains-tablet{display:none}}.galleries .mountains-mobile{right:0;bottom:64px;display:none;height:179px}@media all and (max-width:46.4375rem){.galleries .mountains-mobile{display:block}}.element-gallery{display:flex;justify-content:center;margin:0 auto;padding:var(--margin-l) 0 80px}.element-gallery--background{margin-top:0;margin-top:0;padding-top:var(--margin-l);padding-bottom:var(--margin-l)}.element-gallery__images{max-width:1239px}.element-gallery__small-max-width{max-width:810px}.element-gallery__image{display:block;object-fit:cover;transition:transform .5s;transform-origin:center}@media all and (max-width:80rem){.element-gallery__image{height:auto}}.element-gallery__image:hover{transform:scale(1.1)}.element-gallery__image-item{display:block;overflow:hidden;border-radius:5px}.element-gallery__image-item:nth-child(4n+2),.element-gallery__image-item:nth-child(4n+3){grid-column:auto/span 2}@media all and (max-width:80rem){.element-gallery__image-item:nth-child(4n+2),.element-gallery__image-item:nth-child(4n+3){grid-column:auto/span 1}}.element-gallery__buttons{margin-top:var(--spacing-xl)}

.teaser-fullscreen__mountains{position:absolute;z-index:1;pointer-events:none}.teaser-fullscreen .mountains-tablet{right:0;bottom:90px;display:block;width:100%}@media all and (max-width:80rem){.teaser-fullscreen .mountains-tablet{bottom:50px}}@media all and (max-width:46.4375rem){.teaser-fullscreen .mountains-tablet{display:none}}.teaser-fullscreen .mountains-mobile{right:0;bottom:15px;display:none}@media all and (max-width:46.4375rem){.teaser-fullscreen .mountains-mobile{display:block}}@media all and (max-width:26.875rem){.teaser-fullscreen .mountains-mobile{display:none}}.teaser-fullscreen .mountains-small{right:0;bottom:15px;display:none}@media all and (max-width:26.875rem){.teaser-fullscreen .mountains-small{display:block}}.teaser-fullscreen .splide__arrows{position:absolute;display:flex;justify-content:space-between;align-items:center;top:150px;left:18vw;width:88px;height:22px}@media all and (max-width:46.4375rem){.teaser-fullscreen .splide__arrows{left:25px;top:35%}}@media all and (max-width:31.25rem){.teaser-fullscreen .splide__arrows{bottom:195px}}.teaser-fullscreen .splide__arrow{position:static;transform:none;width:17px;height:8px;padding:0;border:none}.teaser-fullscreen .splide__arrow svg{fill:hsl(0,0%,100%);width:17px;height:8px}.element-teaser-fullscreen{display:block;position:relative;color:#fff;width:100%}.element-teaser-fullscreen::before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:1;background:rgba(0,0,0,.4)}.element-teaser-fullscreen__image-placeholder{display:block;aspect-ratio:1920/700;background-color:#fff}.element-teaser-fullscreen__image{display:block;width:100%;height:700px;object-fit:cover}.element-teaser-fullscreen__content{position:absolute;z-index:2;top:150px;left:18vw;max-width:45vw;display:flex;flex-direction:column;align-items:flex-start;gap:15px}@media all and (max-width:80rem){.element-teaser-fullscreen__content{max-width:600px}}@media all and (max-width:46.4375rem){.element-teaser-fullscreen__content{left:25px;right:25px;max-width:unset;top:35%}}@media all and (max-width:31.25rem){.element-teaser-fullscreen__content{bottom:195px}}.element-teaser-fullscreen__overline-container{margin-bottom:70px;position:relative;padding:0 28px}@media all and (max-width:80rem){.element-teaser-fullscreen__overline-container{margin-bottom:45px}}@media all and (max-width:80rem){.element-teaser-fullscreen__overline-container{margin-bottom:10px}}.element-teaser-fullscreen__overline{font-size:16px;font-style:normal;font-weight:400;line-height:normal}.element-teaser-fullscreen__overline-label{color:#fff;z-index:1}.element-teaser-fullscreen__title{display:block}.element-teaser-fullscreen__description{max-width:400px;width:100%}.element-teaser-fullscreen__button{padding:0;margin-top:35px}@media all and (max-width:46.4375rem){.element-teaser-fullscreen__button{margin-top:10px}}
.ajax-loading{position:fixed;left:0;top:0;z-index:55;width:100%;height:100%;background-color:hsla(0,0%,0%,.3);display:none;justify-content:center;align-items:center}.ajax-loading.visible{display:flex}.ajax-loading .loading{width:40px;height:40px;background-color:var(--color-main-500);animation:sk-rotateplane 1.2s infinite ease-in-out}@keyframes sk-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}
.element-image-text__max-width{display:flex;justify-content:stretch;align-items:center;gap:80px}@media all and (max-width:80rem){.element-image-text__max-width{gap:64px}}@media all and (max-width:56.25rem){.element-image-text__max-width{flex-direction:column-reverse;gap:40px}}.element-image-text__badge{width:210px;z-index:10;padding:17px;border-radius:5px;display:flex;flex-direction:column;gap:15px;position:absolute;top:-40px;left:-40px;right:unset;vertical-align:top;color:#fff;background-color:var(--color-main-500)}.element-image-text__badge-title{font-weight:400;line-height:normal;font-family:"Suedtirol Pro"}.element-image-text__badge-buttons .button--light{display:inline-flex!important;padding:0}.element-image-text__container{flex-basis:50%;position:relative}.element-image-text__image-container{display:block;overflow:hidden;border-radius:5px}@media all and (max-width:56.25rem){.element-image-text__image-container{max-width:456px}}.element-image-text__image{display:block;max-width:100%;width:100%;height:auto;transition:transform .5s;transform-origin:center}@media all and (max-width:80rem){.element-image-text__image{height:100%;object-fit:cover}}@media all and (max-width:46.4375rem){.element-image-text__image{height:auto}}.element-image-text__image--video{aspect-ratio:1/1;object-fit:cover}.element-image-text__content{flex-basis:50%;padding-top:var(--margin-s);padding-bottom:var(--margin-s)}@media all and (max-width:46.4375rem){.element-image-text__content{padding:0}}.element-image-text__content-main{display:flex;flex-direction:column;gap:32px}.element-image-text__title{margin-bottom:0;display:block;font-weight:400}.element-image-text__buttons{margin-top:60px;display:flex;gap:16px}@media all and (max-width:46.4375rem){.element-image-text__buttons{margin-top:var(--spacing-l);flex-wrap:wrap;gap:8px}}.element-image-text .button--empty{display:inline-flex}.element-image-text .button--light{display:none}.element-image-text.element-image-text--background .element-image-text__content-main{color:#fff}.element-image-text.element-image-text--background .button--empty{display:none}.element-image-text.element-image-text--background .button--light{display:inline-flex}.element-image-text.content-spacer--background{background:#2f3c45}.element-image-text__link-detail{font-size:var(--font-size-m);font-weight:600;text-decoration:underline}.element-image-text--mirrored .element-image-text__max-width{flex-direction:row-reverse;padding-right:65px;padding-left:var(--margin-s)!important}@media all and (max-width:56.25rem){.element-image-text--mirrored .element-image-text__max-width{flex-direction:column-reverse}}.element-image-text--mirrored .element-image-text__badge{right:-40px;left:unset}.element-image-text--badge{padding-top:calc(var(--margin-l) + 40px)}.element-image-text--badge .content-width{padding-left:65px}
.usp .hgroup{margin-bottom:85px}.usp .view-list{display:flex;flex-wrap:wrap;gap:var(--spacing-xl);justify-content:space-between}@media all and (max-width:33.4375rem){.usp .view-list{flex-direction:column}}.usp__max-width{padding:0 94px}@media all and (max-width:80rem){.usp__max-width .heading-1{font-size:var(--font-size-heading-1-small)}}@media all and (max-width:46.4375rem){.usp__max-width{padding:0 var(--margin-s)}}
.view-list.view-list--2{justify-content:flex-start}
.element-usp{flex-basis:25%;display:flex;flex-direction:column;gap:20px;text-align:center;min-width:223px}.element-usp__image-container{display:block}.element-usp__image{display:block;object-fit:contain}.element-usp__content{text-align:left}.element-usp__title{margin-bottom:12px}.element-usp__buttons{margin-top:12px}@media all and (max-width:46.4375rem){.element-usp__buttons{margin-top:12px}}
.faq{display:flex;justify-content:center;margin:var(--margin-l) auto}.faq .hgroup{margin-bottom:var(--margin-l)}
.element-faq__trigger{width:100%;padding:var(--spacing-s);background:0 0;border:none;text-align:left;position:relative;cursor:pointer;display:flex;justify-content:space-between;align-items:center;background:var(--color-main-100);border-radius:5px}.element-faq__trigger[aria-expanded=true]{border-radius:5px 5px 0 0}.element-faq__trigger--nopanel{cursor:default}.element-faq__trigger:focus-visible{outline:5px auto -webkit-focus-ring-color}dt:first-child .element-faq__trigger{border-top-width:0}.element-faq__title{font-size:18px;font-style:normal;font-weight:700;line-height:normal;padding-right:15px}.element-faq__icon-plus{width:16px;height:16px;display:block;flex-shrink:0}[aria-expanded=true] .element-faq__icon-plus{display:none}.element-faq__icon-minus{width:11px;height:1px;display:none;flex-shrink:0}[aria-expanded=true] .element-faq__icon-minus{display:block}.element-faq__panel{transition:height .3s ease-in-out;height:0;margin:0;position:relative;visibility:visible;overflow:hidden;display:block;background:var(--color-main-100);margin-bottom:15px;border-radius:0 0 5px 5px}.element-faq__panel[hidden] .faq__panel-content{visibility:hidden}.element-faq__panel-content{padding:5px var(--spacing-s) var(--spacing-m) var(--spacing-s);line-height:normal}
.teaser-menu{padding:var(--margin-l) 0}.teaser-menu__background{background:url("/img/menu-teaser-background.png") no-repeat center}.teaser-menu .ajax-container{max-width:1278px;margin:0 auto}.teaser-menu__header{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;margin:0 auto;margin-bottom:100px;max-width:1278px;padding:0 25px}@media all and (max-width:80rem){.teaser-menu__header{margin-bottom:75px}}@media all and (max-width:46.4375rem){.teaser-menu__header{margin-bottom:50px}}.teaser-menu .splide__track{margin:0 25px}.teaser-menu .splide__arrows{align-items:center;justify-content:flex-end;gap:11px}
.carousel{position:relative}@media all and (max-width:53.125rem){.carousel{padding-bottom:74px}}.carousel .splide__pagination{display:none}.carousel .splide__arrows{position:relative;display:flex}@media all and (max-width:53.125rem){.carousel .splide__arrows{position:absolute;bottom:0;left:25px}}.carousel .splide__arrow{position:static;transform:none;width:17px;height:8px;border:none;padding:0}@media all and (max-width:26.5625rem){.carousel__item{width:calc(90% - 30px)}}.carousel.is-overflow .splide__list{justify-content:left}.carousel__horizontal{display:flex;align-items:center;gap:90px}@media all and (max-width:86.875rem){.carousel__horizontal{gap:50px}}@media all and (max-width:67.375rem){.carousel__horizontal{flex-wrap:wrap}}.carousel__horizontal .teaser-menu__header{flex:1 0 585px;gap:50px;display:flex;flex-direction:column;align-items:flex-start;justify-content:unset;max-width:585px;margin:unset;padding:0 25px}@media all and (max-width:86.875rem){.carousel__horizontal .teaser-menu__header{flex:unset;min-width:380px}}@media all and (max-width:67.375rem){.carousel__horizontal .teaser-menu__header{min-width:unset;max-width:unset;gap:37px}}@media all and (max-width:46.4375rem){.carousel__horizontal .teaser-menu__header{gap:25px}}.carousel__horizontal .splide__arrows{order:-1;margin-bottom:35px}@media all and (max-width:53.125rem){.carousel__horizontal .splide__arrows{margin-bottom:0}}@media all and (max-width:36.25rem){.carousel__horizontal .carousel__item{width:calc(90% - 30px)}}.carousel__horizontal .teaser-menu__header{flex-direction:column;align-items:flex-start;justify-content:unset;max-width:585px;margin:unset}
.element-teaser{display:block;position:relative;color:#fff}@media all and (max-width:26.5625rem){.element-teaser{overflow:hidden;border-radius:5px}}.element-teaser:active,.element-teaser:focus,.element-teaser:hover{color:#fff}.element-teaser:active::before,.element-teaser:focus::before,.element-teaser:hover::before{background:rgba(0,0,0,.2)}.element-teaser__icon{position:absolute;top:32px;right:30px;display:block;width:28px;height:24px;z-index:2;fill:hsl(0,0%,100%)}.element-teaser__image-placeholder{display:block;aspect-ratio:360/500;background-color:var(--color-main-500);width:360px;border-radius:5px}@media all and (max-width:80rem){.element-teaser__image-placeholder{width:320px}}@media all and (max-width:26.5625rem){.element-teaser__image-placeholder{width:100%;height:500px}}.element-teaser__image{display:block;border-radius:5px;width:100%;object-fit:cover}.element-teaser__image::before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:1;background:rgba(0,0,0,.4);transition:background ease .3s}.element-teaser__content{display:block;position:absolute;bottom:54px;left:54px;right:50px;z-index:3}.element-teaser__overline{display:block;font-size:12px;letter-spacing:.56px;font-weight:400;margin-bottom:4px}.element-teaser__title{display:block;margin-bottom:10px}.element-teaser__subtitle{display:block;margin-bottom:10px}.element-teaser__description{display:block;font-size:1rem}
.highlight{padding:var(--margin-l) 0}.highlight .ajax-container{max-width:1528px;margin:0 auto;margin-right:0}.highlight__header{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;margin:0 auto;margin-bottom:100px;max-width:1278px;padding:0 25px}@media all and (max-width:80rem){.highlight__header{margin-bottom:75px}}@media all and (max-width:46.4375rem){.highlight__header{margin-bottom:50px}}.highlight .splide__track{margin:0 25px}.highlight .splide__arrows{align-items:center;justify-content:flex-end;gap:11px}
.element-highlight{display:block;position:relative;color:#fff;border-radius:5px;overflow:hidden}.element-highlight:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:1;background:linear-gradient(180deg,rgba(0,0,0,.1) 0,rgba(0,0,0,.8) 100%);transition:background ease .3s}.element-highlight:active,.element-highlight:focus,.element-highlight:hover{color:#fff}.element-highlight__icon{position:absolute;top:32px;right:30px;display:block;width:28px;height:24px;z-index:2;fill:hsl(0,0%,100%)}.element-highlight__image-placeholder{display:block;aspect-ratio:504/836;background-color:var(--color-main-500);width:504px;border-radius:5px}@media all and (max-width:80rem){.element-highlight__image-placeholder{width:460px}}@media all and (max-width:36.25rem){.element-highlight__image-placeholder{width:100%;height:650px}}.element-highlight__image{display:block;position:relative;width:100%;object-fit:cover}.element-highlight__content{display:block;position:absolute;bottom:25px;left:20px;right:20px;z-index:3}.element-highlight__title{display:block;margin-bottom:13px;font-size:45px}.element-highlight__subtitle{display:block;margin-bottom:13px;font-size:24px}.element-highlight__description{display:block;font-size:var(--base-font-size);margin-bottom:13px}.element-highlight__button{padding:0}
.page-footer{margin-right:64px}@media all and (max-width:46.4375rem){.page-footer{margin-right:0}}.page-footer__main-footer-container{display:flex;flex-direction:row;justify-content:space-between;max-width:1220px;width:100%;margin:85px 25px;gap:50px}@media all and (max-width:62.5rem){.page-footer__main-footer-container{flex-wrap:wrap}}@media all and (max-width:46.4375rem){.page-footer__main-footer-container{margin:50px 25px}}.page-footer__main-footer{display:flex;justify-content:center;border-top:10px solid var(--color-main-500);background:#2f3c45;color:#fff}.page-footer__right{max-width:553px;width:100%}.page-footer__title{font-family:"Suedtirol Pro";font-size:var(--font-size-heading-1);font-style:normal;font-weight:400;margin-bottom:13px}@media all and (max-width:46.4375rem){.page-footer__title{margin-bottom:15px}}.page-footer__contact-info{margin-bottom:15px;font-size:var(--font-size-heading-4);font-weight:500}.page-footer__contact-info a{color:#fff;font-size:var(--font-size-heading-4);font-weight:500}.page-footer__contact-info a:active,.page-footer__contact-info a:focus,.page-footer__contact-info a:hover{color:#fff;text-decoration:none}.page-footer__address{font-size:20px;margin-bottom:15px}@media all and (max-width:46.4375rem){.page-footer__address{font-size:18px}}.page-footer__opening-hours-title{font-size:20px;font-weight:900;margin-bottom:15px}@media all and (max-width:46.4375rem){.page-footer__opening-hours-title{font-size:18px}}.page-footer__opening-hours{font-size:20px}@media all and (max-width:46.4375rem){.page-footer__opening-hours{font-size:18px}}.page-footer__icon-links{display:flex;height:90px;align-items:center;gap:25px;align-self:stretch;margin-bottom:68px}@media all and (max-width:46.4375rem){.page-footer__icon-links{gap:15px;margin-bottom:50px}}@media all and (max-width:35.3125rem){.page-footer__icon-links{flex-wrap:wrap;height:unset}}.page-footer__icon-container{display:flex;max-width:120px;min-height:90px;padding:9px 10px;flex-direction:column;justify-content:flex-end;align-items:center;gap:6px;flex:1 0 0;text-align:center;font-size:14px;border-radius:5px;background:var(--color-main-500)}@media all and (max-width:35.3125rem){.page-footer__icon-container{flex:unset;flex-basis:32%}}.page-footer__icon-container:active,.page-footer__icon-container:focus,.page-footer__icon-container:hover{background:var(--color-main-600);text-decoration:none}.page-footer__icon-title{color:#fff}.page-footer .svg-container{display:flex;justify-content:center;width:33px}.page-footer .footer-socials__link{display:flex;align-items:center;gap:10px}.page-footer .icon-youtube{width:33px;height:24px}.page-footer .icon-instagram{width:26px;height:26px}.page-footer .icon-facebook{width:12px;height:23px}.page-footer__navigation{display:flex;justify-content:space-between;width:80%}@media all and (max-width:46.4375rem){.page-footer__navigation{width:100%}}.page-footer__nav-title{font-size:20px;font-weight:900;margin-bottom:13px}@media all and (max-width:46.4375rem){.page-footer__nav-title{font-size:18px}}.page-footer .nav-seo__link{font-size:20px;line-height:32px;color:#fff}.page-footer .nav-seo__link:active,.page-footer .nav-seo__link:focus,.page-footer .nav-seo__link:hover{text-decoration:none}@media all and (max-width:46.4375rem){.page-footer .nav-seo__link{font-size:18px}}.page-footer__services{display:flex;flex-direction:column;gap:18px}.page-footer__services a{color:#fff}.page-footer__services a:active,.page-footer__services a:focus,.page-footer__services a:hover{color:#fff;text-decoration:none}@media all and (max-width:46.4375rem){.page-footer__services{gap:16px}}.page-footer__services-title{font-size:20px;font-weight:900}@media all and (max-width:46.4375rem){.page-footer__services-title{font-size:18px}}.nav-seo ul{margin:0;padding:0;list-style:none}.partners{padding:32px 80px}.partners__title{padding-bottom:20px}.partners .view-logo-list{display:flex;justify-content:flex-start;gap:25px}@media all and (max-width:80rem){.partners{padding:25px 40px}}@media all and (max-width:46.4375rem){.partners{padding:25px 0 25px 25px}}.partners .splide__arrows-position{position:absolute;display:flex;right:40px;transform:translateY(-100%)}.partners .splide__arrow{border:none;border-radius:0;position:relative;transform:translateY(0)}@media all and (max-width:46.4375rem){.partners .splide__arrow{transform:translateY(-20px)}}.partners .splide__arrow--prev{left:0}.partners .splide__arrow--next{right:0}.footer-end{padding:40px 80px;font-size:var(--font-size-m);display:flex;justify-content:space-between;align-items:flex-end;gap:20px;border-top:1px solid #f0f0f0}@media all and (max-width:80rem){.footer-end{padding:25px 40px}}@media all and (max-width:46.4375rem){.footer-end{padding:25px;flex-direction:column;align-items:flex-start}}.nav-bottom{display:flex;flex-wrap:wrap;column-gap:42px}@media all and (max-width:46.4375rem){.nav-bottom{column-gap:18px}}.nav-bottom__menu-0{display:block;color:#2f3c45;position:relative}.nav-bottom__menu-0:not(:last-child):after{content:"";width:2px;height:2px;background-color:#2f3c45;position:absolute;right:-22px;top:50%;transform:translateY(-50%)}@media all and (max-width:46.4375rem){.nav-bottom__menu-0:not(:last-child):after{right:-10px}}.nav-bottom a{cursor:pointer}.logo-consisto{flex-shrink:0;display:flex;gap:12px;align-items:center;font-weight:700;font-size:12px;text-transform:none;text-decoration:none;color:#000}

.element-partner-item{display:block;list-style:none}.element-partner-item__image{display:block}.sponsors{padding:32px 80px}.sponsors .ajax-container{overflow-x:auto}.sponsors__title{padding-bottom:50px}.sponsors .view-logo-list{display:flex;justify-content:flex-start;gap:20px 25px;flex-wrap:wrap}@media all and (max-width:46.4375rem){.sponsors .view-logo-list{gap:20px 15px}}@media all and (max-width:80rem){.sponsors{padding:25px 40px}}@media all and (max-width:46.4375rem){.sponsors{padding:25px}}
.photoswipe-item{cursor:zoom-in}.header-mobile__spacer{height:0}.no-hero .header-mobile__spacer{height:94px}.button:active,.button:focus,.button:hover{background-color:var(--color-main-400);border-color:var(--color-main-500);color:var(--color-main-500)}.button:focus,.button:hover{text-decoration:none}.button:active{background-image:none;outline:0}.button--light:active,.button--light:focus,.button--light:hover{color:#fff;background-color:transparent;border-color:transparent;opacity:.75}.button--primary:active,.button--primary:focus,.button--primary:hover{color:#fff;background-color:#9e112f;border-color:#9e112f}.button--primary:active svg,.button--primary:focus svg,.button--primary:hover svg{fill:hsl(0,0%,100%)}.button--secondary:active,.button--secondary:focus,.button--secondary:hover{color:#fff;background-color:#5082b4;border-color:#5082b4}.button--empty:active,.button--empty:focus,.button--empty:hover{background:0 0;border-color:transparent;color:#2f3c45;text-decoration:underline;opacity:.7}.button--empty-light:active,.button--empty-light:focus,.button--empty-light:hover{background:0 0;border-color:transparent;color:#fff;text-decoration:underline;opacity:.7}a:focus,a:hover{color:#2f3c45;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.modal{position:absolute;top:10px;left:50%;transform:translateX(-50%) translateY(-100px);opacity:0;transition:all .3s ease-in-out;background:#fff;box-shadow:0 0 10px rgba(0,0,0,.3);padding:10px;width:70%;width:70vw}@media all and (max-width:80em){.modal{width:80%;width:80vw}}@media all and (max-width:64em){.modal{width:90%;width:90vw;width:calc(100vw - 20px)}}.modal-container{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10000;pointer-events:none}.modal-container.modal--open{pointer-events:auto}.modal-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.2);opacity:0;transition:all .3s ease-in-out}.modal--open .modal-overlay{opacity:1}.modal__frame{overflow-x:hidden;overflow-y:auto;position:relative;z-index:1}.modal__frame .container{margin:0}.modal__frame .animate-in{opacity:1;transform:none}.modal iframe,.modal__frame{border:none;width:100%;height:90%;height:80vh;display:block;height:calc(100vh - 40px)}.modal__close{position:absolute;border:none;margin:0;top:0;right:0;display:block;width:30px;height:30px;display:inline-block;color:#fff;background:#b71c07;padding:0;line-height:30px;text-align:center;z-index:100}.modal--open .modal{opacity:1;transform:translateX(-50%) translateY(0);transition-delay:0s}
@media print{*{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}.hidden-print{display:none!important}}.visible-print{display:none}