@charset "UTF-8";:root{--f-spinner-width: 36px;--f-spinner-height: 36px;--f-spinner-color-1: rgba(0, 0, 0, .1);--f-spinner-color-2: rgba(17, 24, 28, .8);--f-spinner-stroke: 2.75}.f-spinner{margin:auto;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height)}.f-spinner svg{width:100%;height:100%;vertical-align:top;animation:f-spinner-rotate 2s linear infinite}.f-spinner svg *{stroke-width:var(--f-spinner-stroke);fill:none}.f-spinner svg *:first-child{stroke:var(--f-spinner-color-1)}.f-spinner svg *:last-child{stroke:var(--f-spinner-color-2);animation:f-spinner-dash 2s ease-in-out infinite}@keyframes f-spinner-rotate{to{transform:rotate(360deg)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}to{stroke-dasharray:90,150;stroke-dashoffset:-124}}.f-throwOutUp{animation:var(--f-throw-out-duration, .175s) ease-out both f-throwOutUp}.f-throwOutDown{animation:var(--f-throw-out-duration, .175s) ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0,calc(var(--f-throw-out-distance, 150px) * -1),0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0,var(--f-throw-out-distance, 150px),0);opacity:0}}.f-zoomInUp{animation:var(--f-transition-duration, .2s) ease .1s both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration, .2s) ease both f-zoomOutDown}@keyframes f-zoomInUp{0%{transform:scale(.975) translate3d(0,16px,0);opacity:0}to{transform:scale(1) translateZ(0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(.975) translate3d(0,16px,0);opacity:0}}.f-fadeIn{animation:var(--f-transition-duration, .2s) ease both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration, .2s) ease both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes f-fadeOut{to{opacity:0}}.f-fadeFastIn{animation:var(--f-transition-duration, .2s) ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:var(--f-transition-duration, .1s) ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}to{opacity:1}}@keyframes f-fadeFastOut{to{opacity:0}}.f-fadeSlowIn{animation:var(--f-transition-duration, .5s) ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:var(--f-transition-duration, .5s) ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}to{opacity:1}}@keyframes f-fadeSlowOut{to{opacity:0}}.f-crossfadeIn{animation:var(--f-transition-duration, .2s) ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:calc(var(--f-transition-duration, .2s)*.5) linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}to{opacity:1}}@keyframes f-crossfadeOut{to{opacity:0}}.f-slideIn.from-next{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-slideInNext}.f-slideIn.from-prev{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-slideInPrev}.f-slideOut.to-next{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-slideOutNext}.f-slideOut.to-prev{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-slideOutPrev}@keyframes f-slideInPrev{0%{transform:translate(100%)}to{transform:translateZ(0)}}@keyframes f-slideInNext{0%{transform:translate(-100%)}to{transform:translateZ(0)}}@keyframes f-slideOutNext{to{transform:translate(-100%)}}@keyframes f-slideOutPrev{to{transform:translate(100%)}}.f-classicIn.from-next{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-classicOutPrev;z-index:1}@keyframes f-classicInNext{0%{transform:translate(-75px);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translate(75px);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes f-classicOutNext{to{transform:translate(-75px);opacity:0}}@keyframes f-classicOutPrev{to{transform:translate(75px);opacity:0}}:root{--f-button-width: 40px;--f-button-height: 40px;--f-button-border: 0;--f-button-border-radius: 0;--f-button-color: #374151;--f-button-bg: #f8f8f8;--f-button-hover-bg: #e0e0e0;--f-button-active-bg: #d0d0d0;--f-button-shadow: none;--f-button-transition: all .15s ease;--f-button-transform: none;--f-button-svg-width: 20px;--f-button-svg-height: 20px;--f-button-svg-stroke-width: 1.5;--f-button-svg-fill: none;--f-button-svg-filter: none;--f-button-svg-disabled-opacity: .65}.f-button{display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);pointer-events:all;cursor:pointer;transition:var(--f-button-transition)}@media (hover: hover){.f-button:hover:not([disabled]){color:var(--f-button-hover-color);background-color:var(--f-button-hover-bg)}}.f-button:active:not([disabled]){background-color:var(--f-button-active-bg)}.f-button:focus:not(:focus-visible){outline:none}.f-button:focus-visible{outline:none;box-shadow:inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);fill:var(--f-button-svg-fill);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;transition:opacity .15s ease;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-prev,.f-carousel__nav .f-button.is-next,.fancybox__nav .f-button.is-prev,.fancybox__nav .f-button.is-next{position:absolute;z-index:1}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next{top:50%;transform:translateY(-50%)}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev{left:var(--f-button-prev-pos)}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next{right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev{left:auto;right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next{right:auto;left:var(--f-button-prev-pos)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next{top:auto;left:50%;transform:translate(-50%)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev{top:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next{bottom:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg{transform:rotate(90deg)}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body{touch-action:none}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));overflow:hidden!important;overscroll-behavior-y:none}.fancybox__container{--fancybox-color: #dbdbdb;--fancybox-hover-color: #fff;--fancybox-bg: rgba(24, 24, 27, .98);--fancybox-slide-gap: 10px;--f-spinner-width: 50px;--f-spinner-height: 50px;--f-spinner-color-1: rgba(255, 255, 255, .1);--f-spinner-color-2: #bbb;--f-spinner-stroke: 3.65;position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;display:flex;flex-direction:column;box-sizing:border-box;margin:0;padding:0;color:#f8f8f8;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:visible;z-index:var(--fancybox-zIndex, 1050);outline:none;transform-origin:top left;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container *:before,.fancybox__container *:after{box-sizing:inherit}.fancybox__container::-webkit-backdrop{background-color:#0000}.fancybox__container::backdrop{background-color:#0000}.fancybox__backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity, 1);will-change:opacity}.fancybox__carousel{position:relative;box-sizing:border-box;flex:1;min-height:0;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__viewport{width:100%;height:100%}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__track{display:flex;margin:0 auto;height:100%}.fancybox__slide{flex:0 0 auto;position:relative;display:flex;flex-direction:column;align-items:center;width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;padding:4px;overflow:auto;overscroll-behavior:contain;transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-iframe,.fancybox__slide.has-video,.fancybox__slide.has-html5video,.fancybox__slide.has-image{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide:before,.fancybox__slide:after{content:"";flex:0 0 0;margin:auto}.fancybox__content{align-self:center;display:flex;flex-direction:column;position:relative;margin:0;padding:2rem;max-width:100%;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);cursor:default;border-radius:0;z-index:20}.is-loading .fancybox__content{opacity:0}.is-draggable .fancybox__content{cursor:move;cursor:grab}.can-zoom_in .fancybox__content{cursor:zoom-in}.can-zoom_out .fancybox__content{cursor:zoom-out}.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__content [data-selectable],.fancybox__content [contenteditable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:center center;transition:none;transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,.is-zooming-out .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content{visibility:hidden}.is-animating .fancybox__content,.is-dragging .fancybox__content{filter:blur(0px);will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;object-fit:contain;-webkit-user-select:none;-moz-user-select:none;user-select:none}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px;overflow-wrap:anywhere;line-height:1.375;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);cursor:auto;visibility:visible}.is-loading .fancybox__caption,.is-closing .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width: 2;position:absolute;top:0;right:8px;z-index:40}.fancybox__content>.f-button.is-close-btn{--f-button-width: 34px;--f-button-height: 34px;--f-button-border-radius: 4px;--f-button-color: var(--fancybox-color, #fff);--f-button-hover-color: var(--fancybox-color, #fff);--f-button-bg: transparent;--f-button-hover-bg: transparent;--f-button-active-bg: transparent;--f-button-svg-width: 22px;--f-button-svg-height: 22px;position:absolute;top:-38px;right:0;opacity:.75}.is-loading .fancybox__content>.f-button.is-close-btn{visibility:hidden}.is-zooming-out .fancybox__content>.f-button.is-close-btn{visibility:hidden}.fancybox__content>.f-button.is-close-btn:hover{opacity:1}.fancybox__footer{padding:0;margin:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;padding:24px;opacity:var(--fancybox-opacity, 1);transition:all .25s ease}.is-compact .fancybox__footer{position:absolute;bottom:0;left:0;right:0;z-index:20;background:rgba(24,24,27,.5)}.is-compact .fancybox__footer .fancybox__caption{padding:12px}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-border-radius: 50%;--f-button-color: #fff;--f-button-hover-color: #fff;--f-button-outline-color: #000;--f-button-bg: rgba(0, 0, 0, .6);--f-button-active-bg: rgba(0, 0, 0, .6);--f-button-hover-bg: rgba(0, 0, 0, .6);--f-button-svg-width: 18px;--f-button-svg-height: 18px;--f-button-svg-filter: none;top:5px;right:5px}.fancybox__nav{--f-button-width: 50px;--f-button-height: 50px;--f-button-border: 0;--f-button-border-radius: 50%;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: transparent;--f-button-hover-bg: rgba(24, 24, 27, .3);--f-button-active-bg: rgba(24, 24, 27, .5);--f-button-shadow: none;--f-button-transition: all .15s ease;--f-button-transform: none;--f-button-svg-width: 26px;--f-button-svg-height: 26px;--f-button-svg-stroke-width: 2.5;--f-button-svg-fill: none;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .5));--f-button-svg-disabled-opacity: .65;--f-button-next-pos: 1rem;--f-button-prev-pos: 1rem;opacity:var(--fancybox-opacity, 1)}.fancybox__nav .f-button:before{position:absolute;content:"";top:-30px;right:-20px;left:-20px;bottom:-30px;z-index:1}.is-idle .fancybox__nav{animation:.15s ease-out both f-fadeOut}.is-idle.is-compact .fancybox__footer{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top, calc(var(--f-spinner-width) * -.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -.5));z-index:30;cursor:pointer}.fancybox-protected{position:absolute;top:0;left:0;right:0;bottom:0;z-index:40;-webkit-user-select:none;-moz-user-select:none;user-select:none}.fancybox-ghost{position:absolute;top:0;left:0;width:100%;height:100%;min-height:0;object-fit:contain;z-index:40;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}.fancybox-focus-guard{outline:none;opacity:0;position:fixed;pointer-events:none}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-enter-duration, .25s) ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:var(--f-backdrop-enter-duration, .35s) ease backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-exit-duration, .15s) ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:var(--f-backdrop-exit-duration, .35s) ease forwards f-fadeOut}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.fancybox__container.is-compact .has-iframe .fancybox__content,.fancybox__container.is-compact .has-map .fancybox__content,.fancybox__container.is-compact .has-pdf .fancybox__content{width:100%;height:100%}.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{border:0!important;clip:rect(1px,1px,1px,1px)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;white-space:nowrap!important}.f-carousel__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-outline: 0;--f-thumb-outline-color: #5eb0ef;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1;--f-thumb-border-radius: 2px;--f-thumb-offset: 0px;--f-button-next-pos: 0;--f-button-prev-pos: 0}.f-carousel__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: .5;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1}.f-carousel__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px}.f-thumbs{position:relative;flex:0 0 auto;margin:0;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-user-select:none;-moz-user-select:none;user-select:none;perspective:1000px;transform:translateZ(0)}.f-thumbs .f-spinner{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:2px;background-image:linear-gradient(#ebeff2,#e2e8f0);z-index:-1}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden;transform:translateZ(0)}.f-thumbs__track{display:flex}.f-thumbs__slide{position:relative;flex:0 0 auto;box-sizing:content-box;display:flex;align-items:center;justify-content:center;padding:0;margin:0;width:var(--f-thumb-width);height:var(--f-thumb-height);overflow:visible;cursor:pointer}.f-thumbs__slide.is-loading img{opacity:0}.is-classic .f-thumbs__viewport{height:100%}.is-modern .f-thumbs__track{width:-webkit-max-content;width:-moz-max-content;width:max-content}.is-modern .f-thumbs__track:before{content:"";position:absolute;top:0;bottom:0;left:calc((var(--f-thumb-clip-width, 0))*-.5);width:calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));cursor:pointer}.is-modern .f-thumbs__slide{width:var(--f-thumb-clip-width);transform:translate3d(calc(var(--shift, 0) * -1px),0,0);transition:none;pointer-events:none}.is-modern.is-resting .f-thumbs__slide{transition:transform .33s ease}.is-modern.is-resting .f-thumbs__slide__button{transition:-webkit-clip-path .33s ease;transition:clip-path .33s ease;transition:clip-path .33s ease,-webkit-clip-path .33s ease}.is-using-tab .is-modern .f-thumbs__slide:focus-within{filter:drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))}.f-thumbs__slide__button{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:var(--f-thumb-width);height:100%;margin:0 -100%;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:rgba(0,0,0,0);outline:none;cursor:pointer;pointer-events:auto;touch-action:manipulation;opacity:var(--f-thumb-opacity);transition:opacity .2s ease}.f-thumbs__slide__button:hover{opacity:var(--f-thumb-hover-opacity)}.f-thumbs__slide__button:focus:not(:focus-visible){outline:none}.f-thumbs__slide__button:focus-visible{outline:none;opacity:var(--f-thumb-selected-opacity)}.is-modern .f-thumbs__slide__button{--clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * .5 ) round var(--f-thumb-border-radius, 0) );-webkit-clip-path:var(--clip-path);clip-path:var(--clip-path)}.is-classic .is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-classic .is-nav-selected .f-thumbs__slide__button:after{content:"";position:absolute;top:0;left:0;right:0;height:auto;bottom:0;border:var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);border-radius:var(--f-thumb-border-radius);animation:f-fadeIn .2s ease-out;z-index:10}.f-thumbs__slide__img{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:0;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover;border-radius:var(--f-thumb-border-radius)}.f-thumbs.is-horizontal .f-thumbs__track{padding:8px 0 12px}.f-thumbs.is-horizontal .f-thumbs__slide{margin:0 var(--f-thumb-gap) 0 0}.f-thumbs.is-vertical .f-thumbs__track{flex-wrap:wrap;padding:0 8px}.f-thumbs.is-vertical .f-thumbs__slide{margin:0 0 var(--f-thumb-gap) 0}.fancybox__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-border-radius: 2px;--f-thumb-outline: 2px;--f-thumb-outline-color: #ededed;position:relative;opacity:var(--fancybox-opacity, 1);transition:max-height .35s cubic-bezier(.23,1,.32,1)}.fancybox__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: .5;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.05))}.fancybox__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.05))}.fancybox__thumbs.is-horizontal{padding:0 var(--f-thumb-gap)}.fancybox__thumbs.is-vertical{padding:var(--f-thumb-gap) 0}.is-compact .fancybox__thumbs{--f-thumb-width: 64px;--f-thumb-clip-width: 32px;--f-thumb-height: 48px;--f-thumb-extra-gap: 10px}.fancybox__thumbs.is-masked{max-height:0px!important}.is-closing .fancybox__thumbs{transition:none!important}.fancybox__toolbar{--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, .94));--f-button-width: 46px;--f-button-height: 46px;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: rgba(24, 24, 27, .65);--f-button-hover-bg: rgba(70, 70, 73, .65);--f-button-active-bg: rgba(90, 90, 93, .65);--f-button-border-radius: 0;--f-button-svg-width: 24px;--f-button-svg-height: 24px;--f-button-svg-stroke-width: 1.5;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .15));--f-button-svg-fill: none;--f-button-svg-disabled-opacity: .65;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI Adjusted,Segoe UI,Liberation Sans,sans-serif;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .5));pointer-events:none;z-index:20}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{display:flex;justify-content:flex-end;flex-wrap:nowrap}.fancybox__infobar{padding:0 5px;line-height:var(--f-button-height);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;-webkit-user-select:none;-moz-user-select:none;user-select:none}.fancybox__infobar span{padding:0 5px}.fancybox__infobar:not(:first-child):not(:last-child){background:var(--f-button-bg)}[data-fancybox-toggle-slideshow]{position:relative}[data-fancybox-toggle-slideshow] .f-progress{height:100%;opacity:.3}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:-moz-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}:-moz-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;background:var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));z-index:30;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}*{margin:0}html{block-size:100%;box-sizing:border-box;overflow-wrap:break-word;-webkit-text-size-adjust:none;-moz-text-size-adjust:none;text-size-adjust:none}html *,html *:before,html *:after{box-sizing:inherit}html:focus-within{scroll-behavior:smooth}html,body{block-size:100%}body{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;line-height:1.5;text-rendering:optimizeSpeed}a:not([class]){-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}ul,ol{padding:0}img,picture,svg,video,canvas,audio,iframe,embed,object{display:block;max-inline-size:100%}input,button,textarea,select,table{font:inherit}button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:0;color:inherit;padding:0;text-align:inherit}sub,sup{font-size:.75em;line-height:0;position:relative;vertical-align:baseline}sub{inset-block-end:-.25em}sup{inset-block-start:-.5em}:focus-visible{outline-color:Highlight;outline-color:-webkit-focus-ring-color;outline-offset:2px;outline-style:dotted;outline-width:2px}@media (prefers-reduced-motion: reduce){html:focus-within{scroll-behavior:auto}*,*:before,*:after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important}}@font-face{font-family:TT Commons;src:url(./TTCommons-Black-34918a0e.woff2) format("woff2"),url(./TTCommons-Black-24ec4536.woff) format("woff");font-weight:900;font-style:normal}@font-face{font-family:TT Commons;src:url(./TTCommons-BlackItalic-9c777d64.woff2) format("woff2"),url(./TTCommons-BlackItalic-6e88c497.woff) format("woff");font-weight:900;font-style:italic}@font-face{font-family:TT Commons;src:url(./TTCommons-BoldItalic-5a4da5f3.woff2) format("woff2"),url(./TTCommons-BoldItalic-f5fa2a5d.woff) format("woff");font-weight:700;font-style:italic}@font-face{font-family:TT Commons;src:url(./TTCommons-ThinItalic-725cf461.woff2) format("woff2"),url(./TTCommons-ThinItalic-8dd60638.woff) format("woff");font-weight:100;font-style:italic}@font-face{font-family:TT Commons;src:url(./TTCommons-MediumItalic-16e5940a.woff2) format("woff2"),url(./TTCommons-MediumItalic-41f4b83d.woff) format("woff");font-weight:500;font-style:italic}@font-face{font-family:TT Commons;src:url(./TTCommons-Light-78988393.woff2) format("woff2"),url(./TTCommons-Light-e3ac62df.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:TT Commons;src:url(./TTCommons-Medium-7caa3fd2.woff2) format("woff2"),url(./TTCommons-Medium-60be76eb.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:TT Commons;src:url(./TTCommons-Thin-591adeae.woff2) format("woff2"),url(./TTCommons-Thin-e4b4c119.woff) format("woff");font-weight:100;font-style:normal}@font-face{font-family:TT Commons;src:url(./TTCommons-ExtraLightItalic-3bfa9333.woff2) format("woff2"),url(./TTCommons-ExtraLightItalic-3aaf3789.woff) format("woff");font-weight:200;font-style:italic}@font-face{font-family:TT Commons;src:url(./TTCommons-ExtraLight-6e7fadcd.woff2) format("woff2"),url(./TTCommons-ExtraLight-c8162e9c.woff) format("woff");font-weight:200;font-style:normal}@font-face{font-family:TT Commons;src:url(./TTCommons-Italic-978f8bbe.woff2) format("woff2"),url(./TTCommons-Italic-384d04d8.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:TT Commons;src:url(./TTCommons-ExtraBold-e96f4344.woff2) format("woff2"),url(./TTCommons-ExtraBold-9ca8b118.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:TT Commons;src:url(./TTCommons-LightItalic-47d07824.woff2) format("woff2"),url(./TTCommons-LightItalic-ca440da6.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:TT Commons;src:url(./TTCommons-ExtraBoldItalic-e73a26a4.woff2) format("woff2"),url(./TTCommons-ExtraBoldItalic-fe2396d0.woff) format("woff");font-weight:700;font-style:italic}@font-face{font-family:TT Commons;src:url(./TTCommons-Bold-3c71a504.woff2) format("woff2"),url(./TTCommons-Bold-44c7f7a1.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:TT Commons;src:url(./TTCommons-DemiBold-c3ad4ad4.woff2) format("woff2"),url(./TTCommons-DemiBold-6577704b.woff) format("woff");font-weight:600;font-style:normal}@font-face{font-family:TT Commons;src:url(./TTCommons-Regular-661ebc3e.woff2) format("woff2"),url(./TTCommons-Regular-f035eff5.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:TT Commons;src:url(./TTCommons-DemiBoldItalic-c9b74f2b.woff2) format("woff2"),url(./TTCommons-DemiBoldItalic-6dcfb419.woff) format("woff");font-weight:600;font-style:italic}:where(h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6,p,.paragraph,ul,ol,pre,table,figure,blockquote,form,fieldset,dl,address,details,hr,aside,video)+*{-webkit-margin-before:var(--flow-space);margin-block-start:var(--flow-space)}body,.paragraph{color:var(--color-text);font-family:var(--font-family-text);font-size:var(--font-size-body);font-weight:initial;line-height:1.5}body{background-color:var(--color-background)}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{--flow-space: 2.5rem;line-height:1.3}h1,.h1{--flow-space: 3.75rem}h3,.h3{font-size:1.9375rem;line-height:1.2}@media (min-width: 480px){h3,.h3{font-size:2.1875rem}}h4,.h4{font-size:1.625rem;line-height:1.4}@media (min-width: 480px){h4,.h4{font-size:1.825rem}}h5,.h5{font-size:1.375rem;line-height:1.5}@media (min-width: 480px){h5,.h5{font-size:1.5rem}}h6,.h6{color:var(--color-text-muted);font-size:1.0625rem;line-height:1.5}a{color:var(--color-accent);text-underline-offset:.3ex}hr{--flow-space: var(--component-spacing);border:0;margin:var(--flow-space) auto}hr:after{background-color:var(--color-border);block-size:2px;content:"";display:block}kbd,code{background:var(--color-background-secondary);border-radius:4px;display:inline-block;font-size:.95em;padding:0 .375em;word-break:break-word}img{block-size:initial;inline-size:100%}.wp-block-image img{inline-size:initial}figcaption{color:var(--color-text-muted);font-size:var(--font-size-body-small);-webkit-margin-before:.25rem;margin-block-start:.25rem}blockquote,.blockquote{-webkit-border-start:5px solid var(--color-accent);border-inline-start:5px solid var(--color-accent);display:block;font-size:1.44rem;font-style:normal;font-weight:500;line-height:calc(1em + .75rem);margin:var(--flow-space) 0 var(--flow-space) 2.5rem;-webkit-padding-start:.8rem;padding-inline-start:.8rem}blockquote cite,.blockquote cite{color:var(--color-text-muted);display:block;font-size:var(--font-size-body);font-style:normal;-webkit-margin-before:.25rem;margin-block-start:.25rem}small{font-size:var(--font-size-body-small)}ul:not([class]),ol:not([class]){--item-spacing: .66em;-webkit-padding-start:1.5rem;padding-inline-start:1.5rem}ul:not([class]) li+li,ol:not([class]) li+li{-webkit-margin-before:var(--item-spacing);margin-block-start:var(--item-spacing)}ul:not([class]) li>ul,ul:not([class]) li ol,ol:not([class]) li>ul,ol:not([class]) li ol{--item-spacing: .33em;-webkit-margin-before:var(--item-spacing);margin-block-start:var(--item-spacing)}ul.arrow{-webkit-padding-start:40px;padding-inline-start:40px}ul.arrow li::marker{content:"→ ";color:#11ff9b;font-weight:700}table{border-collapse:collapse;border-spacing:0;font-size:var(--font-size-body-small);inline-size:100%;max-inline-size:100%}table caption{caption-side:bottom;color:var(--color-text-muted);-webkit-margin-before:calc(var(--flow-space) / 2);margin-block-start:calc(var(--flow-space) / 2);text-align:start}table td,table th{padding:.9rem 1rem;text-align:inherit;vertical-align:top}table th{color:var(--color-text-muted);font-weight:500}table td{min-inline-size:25ch}table thead{background-color:var(--color-background-secondary);-webkit-border-after:solid 1px var(--color-border);border-block-end:solid 1px var(--color-border)}table tr:nth-child(even){-webkit-border-after:solid 1px var(--color-border);border-block-end:solid 1px var(--color-border);-webkit-border-before:solid 1px var(--color-border);border-block-start:solid 1px var(--color-border)}.button,.wp-block-button>.wp-block-button__link{--button-background-color: var(--color-accent);--button-border-color: var(--color-accent);--button-border-width: 2px;--button-border-radius: 0;--button-font-weight: 700;--button-text-color: var(--color-background);--button-padding-inline: calc(1.125rem - var(--button-border-width));--button-padding-block: calc(.625rem - var(--button-border-width));-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--button-background-color);border:solid var(--button-border-width) var(--button-border-color);border-radius:var(--button-border-radius);color:var(--button-text-color);cursor:pointer;display:inline-block;font:inherit;font-weight:var(--button-font-weight);letter-spacing:0;padding:var(--button-padding-block) var(--button-padding-inline);text-align:center;text-decoration:none}.button:disabled,.button--disabled,.wp-block-button>.wp-block-button__link:disabled,.wp-block-button>.wp-block-button__link--disabled{cursor:default;opacity:.5;pointer-events:none}.button--outlined,.wp-block-button>.wp-block-button__link--outlined{--button-text-color: var(--color-accent);--button-background-color: transparent}.button--text,.wp-block-button>.wp-block-button__link--text{--button-background-color: transparent;--button-text-color: var(--color-accent);border:0;padding:0}.wp-block-button{color:var(--button-text-color)}.wp-block-button.is-style-outline{--button-text-color: var(--color-accent)}.wp-block-button.is-style-outline .wp-block-button__link{--button-text-color: var(--color-accent);border:solid var(--button-border-width) var(--color-accent);color:var(--button-text-color);padding:var(--button-padding-block) var(--button-padding-inline)}form{margin:0}fieldset{border:0;padding:0}legend{color:var(--color-text);font-size:var(--font-size-body);font-weight:700;padding:0}label{color:var(--color-text-muted);font-size:var(--font-size-body-small);font-weight:500;-webkit-margin-before:0;margin-block-start:0}[type=tel],[type=url],[type=text],[type=date],[type=email],[type=search],[type=number],[type=password],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:2px solid var(--color-border-secondary);border-radius:0;caret-color:var(--color-text);color:var(--color-text);font-size:var(--font-size-body-small);max-inline-size:100%;padding:.75rem .625rem;transition:border-color .3s ease-in-out}[type=tel]::placeholder,[type=url]::placeholder,[type=text]::placeholder,[type=date]::placeholder,[type=email]::placeholder,[type=search]::placeholder,[type=number]::placeholder,[type=password]::placeholder,textarea::placeholder,select::placeholder{color:var(--color-border-secondary)}[type=tel]:disabled,[type=url]:disabled,[type=text]:disabled,[type=date]:disabled,[type=email]:disabled,[type=search]:disabled,[type=number]:disabled,[type=password]:disabled,textarea:disabled,select:disabled{cursor:default;opacity:.5;pointer-events:none}[type=tel]:invalid,[type=url]:invalid,[type=text]:invalid,[type=date]:invalid,[type=email]:invalid,[type=search]:invalid,[type=number]:invalid,[type=password]:invalid,textarea:invalid,select:invalid{border-color:var(--color-error)}select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='38' fill='none'%3E%3Crect width='38' height='38' fill='rgba(255, 255, 255, 0.7)' rx='19'/%3E%3Cpath stroke='rgba(48, 48, 48, 1)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8.846 15.846 19 26l10.153-10.154'/%3E%3C/svg%3E");background-position:calc(100% - .75rem) center;background-repeat:no-repeat;background-size:1.75rem;line-height:1.5;-webkit-padding-end:54px;padding-inline-end:54px}textarea{inline-size:100%;min-block-size:150px;resize:vertical;vertical-align:top}[type=checkbox],[type=radio]{accent-color:var(--color-accent);block-size:20px;display:inline-block;inline-size:20px;-webkit-margin-before:4px;margin-block-start:4px;-webkit-margin-end:8px;margin-inline-end:8px;vertical-align:top}[type=checkbox]+label,[type=radio]+label{color:var(--color-text);display:inline-block;font:inherit;inline-size:calc(100% - 33px)}flynt-component{display:block;position:relative;z-index:1}.mainHeader{height:calc(var(--pre-navigation-height) + var(--navigation-height))}.admin-bar .pageWrapper{-webkit-padding-before:var(--wp-admin--admin-bar--height);padding-block-start:var(--wp-admin--admin-bar--height)}.componentSpacing{margin:var(--component-spacing) 0}.componentSpacing[data-theme]{margin:0;padding:var(--component-spacing) 0}.wp-block-post-content>.alignfull{margin-inline:auto;max-inline-size:var(--content-max-width-full)!important}.groupContainer{display:inline-flex;flex-wrap:wrap;gap:var(--flow-space)}.container{margin-inline:auto;max-inline-size:calc(var(--content-max-width-full) + var(--container-spacing) * 2);padding-inline:var(--container-spacing)}.container[data-size=full]{padding-inline:0}[data-align=left]{margin-inline:unset}[data-align=center]{margin-inline:auto}[data-text-align=left]{text-align:start}[data-text-align=center]{text-align:center}[data-flow=layout]>*+*{-webkit-margin-before:calc(var(--component-spacing) / 2);margin-block-start:calc(var(--component-spacing) / 2)}[data-flow=content]>*+*{-webkit-margin-before:var(--flow-space);margin-block-start:var(--flow-space)}@media (max-width: 767px){[data-size=wide] p,[data-size=wide] .paragraph,[data-size=wide] h1,[data-size=wide] h2,[data-size=wide] h3,[data-size=wide] h4,[data-size=wide] h5,[data-size=wide] h6,[data-size=wide] .h1,[data-size=wide] .h2,[data-size=wide] .h3,[data-size=wide] .h4,[data-size=wide] .h5,[data-size=wide] .h6,[data-size=full] p,[data-size=full] .paragraph,[data-size=full] h1,[data-size=full] h2,[data-size=full] h3,[data-size=full] h4,[data-size=full] h5,[data-size=full] h6,[data-size=full] .h1,[data-size=full] .h2,[data-size=full] .h3,[data-size=full] .h4,[data-size=full] .h5,[data-size=full] .h6,[data-text-align=center] p,[data-text-align=center] .paragraph,[data-text-align=center] h1,[data-text-align=center] h2,[data-text-align=center] h3,[data-text-align=center] h4,[data-text-align=center] h5,[data-text-align=center] h6,[data-text-align=center] .h1,[data-text-align=center] .h2,[data-text-align=center] .h3,[data-text-align=center] .h4,[data-text-align=center] .h5,[data-text-align=center] .h6{text-wrap:balance}[data-size=wide] p br,[data-size=wide] .paragraph br,[data-size=wide] h1 br,[data-size=wide] h2 br,[data-size=wide] h3 br,[data-size=wide] h4 br,[data-size=wide] h5 br,[data-size=wide] h6 br,[data-size=wide] .h1 br,[data-size=wide] .h2 br,[data-size=wide] .h3 br,[data-size=wide] .h4 br,[data-size=wide] .h5 br,[data-size=wide] .h6 br,[data-size=full] p br,[data-size=full] .paragraph br,[data-size=full] h1 br,[data-size=full] h2 br,[data-size=full] h3 br,[data-size=full] h4 br,[data-size=full] h5 br,[data-size=full] h6 br,[data-size=full] .h1 br,[data-size=full] .h2 br,[data-size=full] .h3 br,[data-size=full] .h4 br,[data-size=full] .h5 br,[data-size=full] .h6 br,[data-text-align=center] p br,[data-text-align=center] .paragraph br,[data-text-align=center] h1 br,[data-text-align=center] h2 br,[data-text-align=center] h3 br,[data-text-align=center] h4 br,[data-text-align=center] h5 br,[data-text-align=center] h6 br,[data-text-align=center] .h1 br,[data-text-align=center] .h2 br,[data-text-align=center] .h3 br,[data-text-align=center] .h4 br,[data-text-align=center] .h5 br,[data-text-align=center] .h6 br{display:none}}.scrollableTableWrapper{-webkit-overflow-scrolling:touch;overflow-x:auto}.visuallyHidden,.visuallyHidden-focusable{block-size:1px;clip:rect(0,0,0,0);inline-size:1px;margin:-1px;overflow:hidden;position:absolute;transition:none!important;white-space:nowrap}.visuallyHidden-focusable:focus-visible{background-color:var(--color-background);block-size:auto;box-shadow:0 0 20px #0000001a;clip:auto;color:var(--color-text);font-size:1rem;inline-size:auto;inset-block-start:0;inset-inline-start:0;outline-offset:-3px;padding:.75rem 1rem;text-decoration:none;z-index:100000}.boxPadding{padding-block:var(--box-spacing);padding-inline:var(--box-spacing)}.boxBorder{border:solid 2px var(--color-border)}.g-wrapper{max-width:100%;margin-left:auto;margin-right:auto;max-width:var(--content-max-width);padding:0 30px}.g-wrapper:after{content:" ";display:block;clear:both}@media (min-width: 1680px){.g-wrapper{padding:0}}.g-container{max-width:100%;margin-left:auto;margin-right:auto}.g-container:after{content:" ";display:block;clear:both}[data-theme=light]{background-color:var(--color-background);color:var(--color-text)}[data-theme=medium-dark]{background-color:var(--color-grey);color:var(--color-text)}[data-theme=dark]{background-color:var(--color-dark-grey);color:var(--color-text-invert)}.g-primary-c{color:var(--color-primary)}.g-title{font-size:2.5rem;font-weight:300;line-height:1.2}@media (min-width: 1030px){.g-title{font-size:3.75rem}}.g-title .g-primary-c{font-weight:700}.g-btn{font-size:1rem;padding:10px 20px;border-radius:50px;color:#323246;display:inline-block;position:relative;border:solid 2px transparent;background-clip:padding-box;box-sizing:border-box;text-decoration:none;width:auto;font-weight:600}@media (max-width: 760px){.g-btn{font-size:1rem}}.g-btn.fill-primary,.g-btn.outline-primary{border-color:#11ff9b;background-color:#11ff9b}.g-btn.fill-primary:hover,.g-btn.outline-primary:hover{background-color:transparent;color:#11ff9b;border-color:#11ff9b}.g-btn.fill-grey,.g-btn.outline-grey{border-color:#f2f2f2;background-color:#f2f2f2}.g-btn.fill-white,.g-btn.outline-white{border-color:#fff;background-color:#fff}.g-btn.fill-white:hover,.g-btn.outline-white:hover{background-color:transparent;color:#fff;border-color:#fff}.g-btn.outline-primary{color:inherit;background-color:transparent}.g-btn.outline-primary:hover{background-color:#11ff9b;color:#323246;border-color:#11ff9b}.g-btn.outline-grey,.g-btn.outline-white,.g-btn:hover{background-color:transparent}.g-btn.vcard:before{background-image:url(../../assets/images/vcard.svg)!important}.gridbuttton{position:fixed;left:0;bottom:20px;z-index:99999;width:100px;height:30px;background-color:#d3d3d3;padding:3px;border-radius:3px;display:flex;align-items:center;opacity:0}.gridbuttton:hover{opacity:1}.gridbuttton label{font-size:.575rem;color:#000!important}.gridbuttton input{float:left;width:15px}@media (min-width: 1030px){.mobile-visible{display:none}}@media (max-width: 1030px){.desktop-visible{display:none}}.nav-open #CookiebotWidget{display:none!important}.searchwp-highlight{background-color:#11ff9b}.g-wysiwyg table{table-layout:fixed}.g-wysiwyg h3,.g-wysiwyg h2{font-size:3.4rem;font-weight:700}@media (max-width: 760px){.g-wysiwyg h3,.g-wysiwyg h2{font-size:2.5rem}}.g-wysiwyg p,.g-wysiwyg li,.g-wysiwyg a{font-size:1.125rem;line-height:1.33;font-weight:300;letter-spacing:.025em}@media (min-width: 1030px){.g-wysiwyg p,.g-wysiwyg li,.g-wysiwyg a{font-size:1.25rem}}.g-wysiwyg a.g-btn{font-weight:700;font-size:1rem}.g-wysiwyg h4+p,.g-wysiwyg h5+p{margin-top:.5rem}.g-wysiwyg p+p{margin-top:1rem}@media (min-width: 1030px){.g-wysiwyg.big p,.g-wysiwyg.big li,.g-wysiwyg.big a:not(.g-btn){font-size:1.5625rem;line-height:1.33}}@media (min-width: 1030px) and (max-width: 760px){.g-wysiwyg.big p,.g-wysiwyg.big li,.g-wysiwyg.big a:not(.g-btn){font-size:1.25rem}}.g-wysiwyg.big p+p{margin-top:20px}.g-wysiwyg.big h4+p{margin-top:.5rem}.g-wysiwyg ul{-webkit-padding-start:25px;padding-inline-start:25px}.g-wysiwyg ul li::marker{content:"→ ";color:#11ff9b;font-weight:700}.g-wysiwyg ul li+li{margin-top:8px}.g-wysiwyg ul.check-mark{list-style:none;padding:0}.g-wysiwyg ul.check-mark li{position:relative;padding-left:45px;margin-bottom:40px}.g-wysiwyg ul.check-mark li:before{content:"";background-image:url(../../assets/images/checkmark.svg);background-position:center;background-size:contain;background-repeat:no-repeat;width:25px;height:25px;position:absolute;top:0;left:0;display:inline-block}@media (min-width: 760px){.g-wysiwyg .columns-2{-moz-column-count:2;column-count:2}}:root{--color-accent: #11ff9b;--color-background: #fff;--color-background-secondary: #f2f2f2;--color-background-dark: $color-background-dark;--color-border: #11ff9b;--color-border-secondary: #11ff9b;--color-text: #323246;--color-text-invert: #fff;--color-text-muted: #323246;--color-error: #e80243;--color-primary: var(--color-accent);--color-primary-linear-gradient: linear-gradient(to right, #0ff2c9, #00ff81);--color-grey: #f2f2f2;--color-dark-grey: #323246}:root{--font-family-text: TT Commons, sans-serif;--font-size-headline-2: 3.4rem;--font-size-body: 25px;--content-max-width: 1300px;--box-spacing: clamp(1rem, 2.5vw + .25rem, 2.25rem);--component-spacing: 60px;--phone: max-width 639px;--tablet-portrait: 760px;--tablet-landscape: 1030px;--desktop-small: 1030px;--desktop-normal: 1280px;--desktop-large: 1680px;--pre-navigation-height: 0;--navigation-height: 65px}@media (min-width: 1030px){:root{--pre-navigation-height: 40px;--navigation-height: 75px}}.hero-img-block .g-wrapper{position:relative;z-index:10;padding-top:120px;padding-bottom:100px}@media (max-width: 760px){.hero-img-block .g-wrapper{padding-top:80px;padding-bottom:60px}}.hero-img-block .stoerer-img{position:absolute;right:0;bottom:100px}.hero-img-block .stoerer-img img{width:180px;height:180px}@media (max-width: 639px){.hero-img-block .stoerer-img{margin-top:40px;bottom:unset;right:unset;position:relative;width:100%}.hero-img-block .stoerer-img img{margin-left:auto}}.hero-img-block .pre_title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px}@media (max-width: 760px){.hero-img-block .pre_title{font-size:1rem}}.hero-img-block .title{margin-bottom:30px;margin-top:15px}.hero-img-block .text+.buttons{margin-top:30px}.page-id-1374 body{background-image:url(./news-bg-377abac5.svg);background-size:cover;background-repeat:no-repeat;background-position:top center}.page-id-1374 flynt-component[name=BlockHero]{background-color:transparent}.page-id-1374 flynt-component[name=BlockHero] .background.bg-white-heavy:before{display:none}flynt-component[name=Block100Text]{padding:40px 0;--flow-space: 40px;overflow:hidden}flynt-component[name=Block100Text] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px}@media (max-width: 760px){flynt-component[name=Block100Text] .pre-title{font-size:1rem}}flynt-component[name=Block100Text] .title{margin-bottom:40px}flynt-component[name=Block100Text] .title+.g-container{margin-top:9px}flynt-component[name=Block100Text] a{font-weight:700;color:inherit;text-decoration:none;position:relative;border-bottom:4px solid #11ff9b}flynt-component[name=Block100Text] .g-wysiwyg ul{-webkit-padding-start:37px;padding-inline-start:37px}flynt-component[name=Block100Text] .g-wysiwyg ul li+li{margin-top:8px}flynt-component[name=Block50Text50Text]{padding:40px 0;--flow-space: 40px}flynt-component[name=Block50Text50Text] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px}@media (max-width: 760px){flynt-component[name=Block50Text50Text] .pre-title{font-size:1rem}}flynt-component[name=Block50Text50Text] .title{margin-bottom:40px}flynt-component[name=Block50Text50Text] .text-1{margin-bottom:30px}@media (min-width: 760px){flynt-component[name=Block50Text50Text] .text-1{margin-bottom:0;width:48.5714285714%;float:left;margin-right:2.8571428571%}flynt-component[name=Block50Text50Text] .text-2{width:48.5714285714%;float:right;margin-right:0}}flynt-component[name=Block66Text33Bild]{padding:50px 0;--flow-space: 50px}flynt-component[name=Block66Text33Bild] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px}@media (max-width: 760px){flynt-component[name=Block66Text33Bild] .pre-title{font-size:1rem}}flynt-component[name=Block66Text33Bild] .title{margin-bottom:80px}@media (min-width: 760px){flynt-component[name=Block66Text33Bild] .title{margin-bottom:50px}}@media (max-width: 760px){flynt-component[name=Block66Text33Bild] .title{margin-bottom:30px}}flynt-component[name=Block66Text33Bild] .text-66{margin-bottom:30px}@media (min-width: 760px){flynt-component[name=Block66Text33Bild] .text-66{margin-bottom:0}flynt-component[name=Block66Text33Bild] .img-position-left .text-66{width:48.5714285714%;float:right;margin-right:0}flynt-component[name=Block66Text33Bild] .img-position-left .image-33{width:48.5714285714%;float:left;margin-right:2.8571428571%}flynt-component[name=Block66Text33Bild] .img-position-right .text-66{width:48.5714285714%;float:left;margin-right:2.8571428571%}flynt-component[name=Block66Text33Bild] .img-position-right .image-33{width:48.5714285714%;float:right;margin-right:0}}@media (min-width: 1030px){flynt-component[name=Block66Text33Bild] .img-position-left .text-66{margin-left:8.5714285714%;width:57.1428571429%;float:right;margin-right:0}flynt-component[name=Block66Text33Bild] .img-position-left .image-33{width:31.4285714286%;float:left;margin-right:2.8571428571%}flynt-component[name=Block66Text33Bild] .img-position-right .text-66{width:57.1428571429%;float:left;margin-right:2.8571428571%}flynt-component[name=Block66Text33Bild] .img-position-right .image-33{margin-left:8.5714285714%;width:31.4285714286%;float:right;margin-right:0}}flynt-component[name=Block66Text33Text]{padding:50px 0;--flow-space: 50px}flynt-component[name=Block66Text33Text] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px}@media (max-width: 760px){flynt-component[name=Block66Text33Text] .pre-title{font-size:1rem}}flynt-component[name=Block66Text33Text] .title{margin-bottom:80px}@media (min-width: 760px){flynt-component[name=Block66Text33Text] .title{margin-bottom:50px}}@media (max-width: 760px){flynt-component[name=Block66Text33Text] .title{margin-bottom:30px}}flynt-component[name=Block66Text33Text] .title+.g-container{margin-top:9px}flynt-component[name=Block66Text33Text] a{font-weight:700;color:inherit;text-decoration:none;position:relative;border-bottom:4px solid #11ff9b}flynt-component[name=Block66Text33Text] .text-66{margin-bottom:30px}@media (min-width: 1030px){flynt-component[name=Block66Text33Text] .text-66{margin-bottom:0;width:57.1428571429%;float:left;margin-right:2.8571428571%}flynt-component[name=Block66Text33Text] .text-33{margin-left:8.5714285714%;width:31.4285714286%;float:right;margin-right:0}}flynt-component[name=Block66Text33Text] .g-wysiwyg ul{-webkit-margin-before:10px;margin-block-start:10px;-webkit-padding-start:37px;padding-inline-start:37px}@media (min-width: 1030px){flynt-component[name=Block66Text33Text] .g-wysiwyg ul{-webkit-margin-before:0;margin-block-start:0}}flynt-component[name=BlockAccordion]{padding:50px 0}@media (min-width: 1030px){flynt-component[name=BlockAccordion]{padding:100px 0}}flynt-component[name=BlockAccordion] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px;margin-bottom:50px}@media (max-width: 760px){flynt-component[name=BlockAccordion] .pre-title{font-size:1rem}}flynt-component[name=BlockAccordion] .accordion-item{border-bottom:2px solid #11ff9b}flynt-component[name=BlockAccordion] .accordion-item-header{font-size:3.125rem;display:flex;width:100%}@media (max-width: 760px){flynt-component[name=BlockAccordion] .accordion-item-header{font-size:2rem}}@media (min-width: 1030px){flynt-component[name=BlockAccordion] .accordion-item-header{font-size:2.5rem}}@media (min-width: 1030px) and (min-width: 1030px){flynt-component[name=BlockAccordion] .accordion-item-header{font-size:3.75rem}}flynt-component[name=BlockAccordion] .accordion-item-header:hover{color:#11ff9b;cursor:pointer}flynt-component[name=BlockAccordion] .accordion-item-header .icon{will-change:transform;color:var(--color-primary);margin-left:-4px;margin-right:15px;font-size:2em;line-height:.6em;transition:.2s ease-in-out}@media (min-width: 1030px){flynt-component[name=BlockAccordion] .accordion-item-header .icon{margin-right:30px}}flynt-component[name=BlockAccordion] .accordion-item-body{margin-top:40px;display:none;margin-bottom:20px;max-width:900px}@media (min-width: 1030px){flynt-component[name=BlockAccordion] .accordion-item-body{padding-left:80px}}flynt-component[name=BlockAccordion] .accordion-item-body .g-wysiwyg p,flynt-component[name=BlockAccordion] .accordion-item-body .g-wysiwyg li{font-size:1.5625rem}@media (max-width: 760px){flynt-component[name=BlockAccordion] .accordion-item-body .g-wysiwyg p,flynt-component[name=BlockAccordion] .accordion-item-body .g-wysiwyg li{font-size:1.25rem}}flynt-component[name=BlockAccordion] .accordion-item.active .accordion-item-header .icon{transform:rotate(45deg)}flynt-component[name=BlockAccordion] .accordion-item.active .accordion-item-body{display:block}flynt-component[name=BlockAccordion][data-theme=dark] .accordion-item{padding:0 10px;will-change:background-color;transition:background-color .15s ease-in-out}flynt-component[name=BlockAccordion][data-theme=dark] .accordion-item:first-child{border-top:2px solid #11ff9b}flynt-component[name=BlockAccordion][data-theme=dark] .accordion-item.active{background-color:#3c3c50}flynt-component[name=BlockBlogPostsOverview]{padding:50px 0}flynt-component[name=BlockBlogPostsOverview] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px;margin-bottom:20px}@media (max-width: 760px){flynt-component[name=BlockBlogPostsOverview] .pre-title{font-size:1rem}}flynt-component[name=BlockBlogPostsOverview] .filter{display:flex;gap:20px}flynt-component[name=BlockBlogPostsOverview] .filter .facetwp-facet.facetwp-type-checkboxes{display:flex;flex-wrap:wrap;gap:20px}flynt-component[name=BlockBlogPostsOverview] .filter .facetwp-counter{display:none}flynt-component[name=BlockBlogPostsOverview] .facetwp-reset,flynt-component[name=BlockBlogPostsOverview] .facetwp-checkbox,flynt-component[name=BlockBlogPostsOverview] .facetwp-load-more:not(.facetwp-hidden){font-size:1rem;padding:10px 20px;border-radius:50px;color:#323246;display:inline-block;position:relative;border:solid 2px transparent;background-clip:padding-box;box-sizing:border-box;text-decoration:none;width:auto;font-weight:600;border-color:#11ff9b;background-color:#11ff9b}@media (max-width: 760px){flynt-component[name=BlockBlogPostsOverview] .facetwp-reset,flynt-component[name=BlockBlogPostsOverview] .facetwp-checkbox,flynt-component[name=BlockBlogPostsOverview] .facetwp-load-more:not(.facetwp-hidden){font-size:1rem}}flynt-component[name=BlockBlogPostsOverview] .facetwp-reset:hover,flynt-component[name=BlockBlogPostsOverview] .facetwp-checkbox:hover,flynt-component[name=BlockBlogPostsOverview] .facetwp-load-more:not(.facetwp-hidden):hover{cursor:pointer;background-color:transparent;color:#11ff9b;border-color:#11ff9b}flynt-component[name=BlockBlogPostsOverview] .facetwp-checkbox{background-image:none;background-size:auto;margin-bottom:0}flynt-component[name=BlockBlogPostsOverview] .grid-container{margin-left:-40px}flynt-component[name=BlockBlogPostsOverview] .grid-item{display:inline-block;width:100%;margin-left:40px;margin-bottom:40px}@media (min-width: 760px){flynt-component[name=BlockBlogPostsOverview] .grid-item{width:calc(50% - 40px)}}@media (min-width: 1030px){flynt-component[name=BlockBlogPostsOverview] .grid-item{width:calc(33.3333333333% - 40px)}flynt-component[name=BlockBlogPostsOverview] .grid-item.grid-item-2{width:calc(66.6666666667% - 40px)}}flynt-component[name=BlockBlogPostsOverview] .post{padding:20px;background-color:#f2f2f2;font-size:1.25rem}@media (max-width: 760px){flynt-component[name=BlockBlogPostsOverview] .post{font-size:1.25rem}}flynt-component[name=BlockBlogPostsOverview] .post-image{width:100%;aspect-ratio:16/9;object-fit:cover;vertical-align:middle}flynt-component[name=BlockBlogPostsOverview] .post-public-date{font-size:1rem;margin-top:10px;font-weight:700}@media (max-width: 760px){flynt-component[name=BlockBlogPostsOverview] .post-public-date{font-size:1rem}}flynt-component[name=BlockBlogPostsOverview] .post-title{font-weight:700;font-size:1.875rem}@media (max-width: 760px){flynt-component[name=BlockBlogPostsOverview] .post-title{font-size:1.5rem}}flynt-component[name=BlockBlogPostsOverview] .post-text{font-weight:300;font-size:1.5625rem}@media (max-width: 760px){flynt-component[name=BlockBlogPostsOverview] .post-text{font-size:1.25rem}}flynt-component[name=BlockBlogPostsOverview] .post a{margin-top:20px}flynt-component[name=BlockCenterColumnsCasket]{padding:50px 0}flynt-component[name=BlockCenterColumnsCasket] .caskets{max-width:100%;margin-left:auto;margin-right:auto;display:flex;flex-wrap:wrap;justify-content:stretch}flynt-component[name=BlockCenterColumnsCasket] .caskets:after{content:" ";display:block;clear:both}flynt-component[name=BlockCenterColumnsCasket] .caskets .casket{padding-bottom:2.6949152542%}@media (min-width: 760px){flynt-component[name=BlockCenterColumnsCasket] .caskets .casket{padding-right:1.6949152542%;width:48.5714285714%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockCenterColumnsCasket] .caskets .casket:nth-child(2n){width:48.5714285714%;float:right;margin-right:0}}@media (min-width: 1030px){flynt-component[name=BlockCenterColumnsCasket] .caskets .casket{width:31.4285714286%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockCenterColumnsCasket] .caskets .casket:nth-child(2n){width:31.4285714286%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockCenterColumnsCasket] .caskets .casket:nth-child(3n){width:31.4285714286%;float:right;margin-right:0}}@media (max-width: 760px){flynt-component[name=BlockCenterColumnsCasket] .caskets .casket:first-child{padding-top:10px}}flynt-component[name=BlockCenterColumnsCasket] .casket{padding-top:60px;text-align:center}@media (min-width: 760px){flynt-component[name=BlockCenterColumnsCasket] .casket{border-right:3px solid #11ff9b}}@media (min-width: 1030px){flynt-component[name=BlockCenterColumnsCasket] .casket{padding-top:10px}}@media (max-width: 760px){flynt-component[name=BlockCenterColumnsCasket] .casket{width:100%}}flynt-component[name=BlockCenterColumnsCasket] .casket-title .big{font-size:2.5rem;line-height:2rem;margin-bottom:3px;font-weight:700;display:block}@media (min-width: 1030px){flynt-component[name=BlockCenterColumnsCasket] .casket-title .big{font-size:3.75rem}}flynt-component[name=BlockCenterColumnsCasket] .casket-subtitle{font-size:1.875rem;font-weight:700}@media (max-width: 760px){flynt-component[name=BlockCenterColumnsCasket] .casket-subtitle{font-size:1.5rem}}flynt-component[name=BlockCenterColumnsCasket] .casket-text{margin-top:20px}@media (min-width: 760px){flynt-component[name=BlockCenterColumnsCasket] .casket-text{margin-top:40px}}flynt-component[name=BlockCenterColumnsCasket] .casket-text img{width:150px;height:150px;object-fit:contain;margin:0 auto}flynt-component[name=BlockCenterColumnsCasket] .casket-text ul{display:inline-block;text-align:left;margin-left:-40px}@media (min-width: 760px){flynt-component[name=BlockCenterColumnsCasket] .casket:nth-child(odd){border-left:3px solid #11ff9b}}@media (min-width: 1030px){flynt-component[name=BlockCenterColumnsCasket] .casket:nth-child(odd){border-left:0}flynt-component[name=BlockCenterColumnsCasket] .casket:nth-child(4n),flynt-component[name=BlockCenterColumnsCasket] .casket:first-child{border-left:3px solid #11ff9b;padding-left:1.6949152542%}}flynt-component[name=BlockCluster]{padding:100px 0}@media (min-width: 760px){flynt-component[name=BlockCluster] .title-group{width:48.5714285714%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockCluster] .text{width:48.5714285714%;float:right;margin-right:0}}flynt-component[name=BlockCluster] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px}@media (max-width: 760px){flynt-component[name=BlockCluster] .pre-title{font-size:1rem}}@media (min-width: 1030px){flynt-component[name=BlockCluster] .steps{margin-top:100px;display:flex}}flynt-component[name=BlockCluster] .step{font-size:1rem;margin-top:30px}@media (max-width: 760px){flynt-component[name=BlockCluster] .step{font-size:1rem}}flynt-component[name=BlockCluster] .step-header{display:flex;position:relative;margin-bottom:40px}flynt-component[name=BlockCluster] .step-header-inner{font-size:3.125rem;font-weight:700;flex:1;padding:36px 44px;text-align:center;position:relative;z-index:2;filter:drop-shadow(0px 5px 10px rgba(0,0,0,.5))}@media (max-width: 760px){flynt-component[name=BlockCluster] .step-header-inner{font-size:2rem}}flynt-component[name=BlockCluster] .step-header-inner:after,flynt-component[name=BlockCluster] .step-header-inner:before{content:"";-webkit-clip-path:polygon(75% 0%,100% 50%,75% 100%,0% 100%,25% 50%,0% 0%);clip-path:polygon(75% 0%,100% 50%,75% 100%,0% 100%,25% 50%,0% 0%);position:absolute}flynt-component[name=BlockCluster] .step-header-inner:after{top:0;left:0;right:0;bottom:0;z-index:-2;background-color:#11ff9b}flynt-component[name=BlockCluster] .step-header-inner:before{top:5px;left:10px;right:5px;bottom:5px;z-index:-1;background-color:#fff}flynt-component[name=BlockCluster] .step-header:before{content:"";position:absolute;z-index:1;top:2px;bottom:2px;left:30%;width:70%;background-color:#11ff9b;-webkit-clip-path:polygon(75% 0%,100% 50%,75% 100%,0% 100%,0% 0%);clip-path:polygon(75% 0%,100% 50%,75% 100%,0% 100%,0% 0%)}flynt-component[name=BlockCluster] .step-header:after{content:"";flex:1}flynt-component[name=BlockCluster] .step-title{font-weight:700}@media (min-width: 1030px){flynt-component[name=BlockCluster] .step{flex:1}}@media (min-width: 1030px){flynt-component[name=BlockCluster] .step-text{opacity:0}flynt-component[name=BlockCluster] .step:hover .step-text{opacity:1}}flynt-component[name=BlockColumnsCasket]{scroll-margin-top:115px}flynt-component[name=BlockColumnsCasket] .block[data-scroll]:nth-child(2){transition-delay:.2s}flynt-component[name=BlockColumnsCasket] .block[data-scroll]:nth-child(3){transition-delay:.4ss}@media (max-width: 760px){flynt-component[name=BlockColumnsCasket] .casket{border-right:3px solid #11ff9b}}flynt-component[name=BlockColumnsCasket] .casket-title{font-size:1.875rem;font-weight:700;line-height:1.4;line-height:1.1!important;margin-bottom:20px}flynt-component[name=BlockContact]{padding:100px 0}flynt-component[name=BlockContact] .person{position:relative}flynt-component[name=BlockContact] .person:after{content:"";position:absolute;height:50%;bottom:0;left:0;width:100%;background:linear-gradient(to bottom,transparent,rgba(0,0,0,.5));z-index:8}flynt-component[name=BlockContact] .person-text{position:absolute;bottom:0;left:0;width:100%;text-align:center;color:#fff;padding-bottom:30px;z-index:10}flynt-component[name=BlockContact] .person-title{font-weight:700}@media (min-width: 760px){flynt-component[name=BlockContact] .person{width:40%;float:left;margin-right:2.8571428571%}}@media (min-width: 1030px){flynt-component[name=BlockContact] .person{width:31.4285714286%;float:left;margin-right:2.8571428571%}}flynt-component[name=BlockContact] .content{margin-top:36px}@media (min-width: 760px){flynt-component[name=BlockContact] .content{margin-top:0}}flynt-component[name=BlockContact] .content-title{font-size:3.125rem;font-weight:300;line-height:1.2;margin-bottom:1.2em}@media (max-width: 760px){flynt-component[name=BlockContact] .content-title{font-size:2rem}}flynt-component[name=BlockContact] .content-title .g-primary-c{color:inherit;font-weight:700}flynt-component[name=BlockContact] .content-text{font-size:1.5625rem;margin-bottom:75px}@media (max-width: 760px){flynt-component[name=BlockContact] .content-text{font-size:1.25rem}}flynt-component[name=BlockContact] .content-links a{margin-bottom:15px;margin-right:25px}flynt-component[name=BlockContact] .content-links a:before{display:inline-block;content:"";width:20px;height:20px;background-position:center center;background-size:contain;background-repeat:no-repeat;vertical-align:middle;margin-right:8px}flynt-component[name=BlockContact] .content-links a[href^=mailto]:before{background-image:url(../../assets/images/mail.svg)}flynt-component[name=BlockContact] .content-links a[href^=tel]:before{background-image:url(../../assets/images/phone.svg)}flynt-component[name=BlockContact] .content-links a[href^=tel]:nth-child(3):before{background-image:url(../../assets/images/phone-handle-fill.svg)}flynt-component[name=BlockContact] .content-links a[href*=brevo]:before{background-image:url(../../assets/images/kalender.svg)}flynt-component[name=BlockContact] .content-links .g-btn.fill-primary{background:linear-gradient(to right,#0ff2c9,#00ff81);font-weight:700}flynt-component[name=BlockContact] .content-links .g-btn.fill-primary:hover{background:transparent}@media (min-width: 760px){flynt-component[name=BlockContact] .content{width:48.5714285714%;float:right;margin-right:0}}@media (min-width: 1030px){flynt-component[name=BlockContact] .content{margin-left:17.1428571429%;width:48.5714285714%;float:right;margin-right:0}}.single-person flynt-component[name=BlockContact] .content-links{display:flex;flex-direction:column;flex-wrap:wrap;align-items:flex-start}.single-person flynt-component[name=BlockContact] .content-links a{display:inline-flex}flynt-component[name=BlockContactForm]{background-color:#f2f2f2;padding:50px 0}flynt-component[name=BlockContactForm] .title{font-weight:700;margin-bottom:60px}flynt-component[name=BlockContactForm] .form input[type=text],flynt-component[name=BlockContactForm] .form input[type=email],flynt-component[name=BlockContactForm] .form input[type=tel],flynt-component[name=BlockContactForm] .form textarea,flynt-component[name=BlockContactForm] .form select{width:100%;background-color:#fff;border-radius:5px;border-color:transparent;height:35px}flynt-component[name=BlockContactForm] .form input[type=text].wpcf7-not-valid,flynt-component[name=BlockContactForm] .form input[type=email].wpcf7-not-valid,flynt-component[name=BlockContactForm] .form input[type=tel].wpcf7-not-valid,flynt-component[name=BlockContactForm] .form textarea.wpcf7-not-valid,flynt-component[name=BlockContactForm] .form select.wpcf7-not-valid{border-color:#e80243;border-width:1px}flynt-component[name=BlockContactForm] .form textarea{height:220px}flynt-component[name=BlockContactForm] .form label{font-size:1.5625rem;font-weight:300}@media (max-width: 760px){flynt-component[name=BlockContactForm] .form label{font-size:1.25rem}}flynt-component[name=BlockContactForm] .form input[type=submit]{font-size:1rem;padding:2px 20px;border-radius:40px;color:#323246;display:inline-block;position:relative;border:solid 2px transparent;background-clip:padding-box;box-sizing:border-box;text-decoration:none;width:auto;font-weight:600;height:40px;display:inline-flex;justify-content:center;align-items:center;background:linear-gradient(to right,rgb(15,255,222),rgb(0,255,129))}@media (max-width: 760px){flynt-component[name=BlockContactForm] .form input[type=submit]{font-size:1rem}}flynt-component[name=BlockContactForm] .form-row{margin-bottom:16px}flynt-component[name=BlockContactForm] .form .wpcf7-not-valid-tip{font-size:.875rem;font-weight:300;display:block;margin:6px 0 0}flynt-component[name=BlockContactForm] .form .wpcf7-acceptance{display:block;width:100%;margin:30px 0 50px}flynt-component[name=BlockContactForm] .form .wpcf7-acceptance .wpcf7-list-item{margin-left:0}flynt-component[name=BlockContactForm] .form .wpcf7-acceptance .wpcf7-list-item input{float:left;margin:5px 10px 100px 0}@media (min-width: 1030px){flynt-component[name=BlockContactForm] .form .wpcf7-acceptance .wpcf7-list-item input{margin:5px 10px 30px 0}}flynt-component[name=BlockContactForm] .form .wpcf7-acceptance .wpcf7-list-item-label{font-size:1rem;display:block}@media (max-width: 760px){flynt-component[name=BlockContactForm] .form .wpcf7-acceptance .wpcf7-list-item-label{font-size:1rem}}@media (min-width: 1030px){flynt-component[name=BlockContactForm] .form .wpcf7-acceptance .wpcf7-list-item-label{max-width:50%}}flynt-component[name=BlockContactForm] .form .wpcf7-acceptance .wpcf7-list-item-label a{color:#000;display:inline-block;text-decoration:none;border-bottom:2px solid #11ff9b}@media (min-width: 760px){flynt-component[name=BlockContactForm] .form-row{max-width:100%;margin-left:auto;margin-right:auto}flynt-component[name=BlockContactForm] .form-row:after{content:" ";display:block;clear:both}flynt-component[name=BlockContactForm] .form-column{width:48.5714285714%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockContactForm] .form-column:nth-child(2n){width:48.5714285714%;float:right;margin-right:0}}flynt-component[name=BlockContactHero]{background:linear-gradient(315deg,#11ff9b 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0) 100%);padding:100px 0}flynt-component[name=BlockContactHero] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px}@media (max-width: 760px){flynt-component[name=BlockContactHero] .pre-title{font-size:1rem}}flynt-component[name=BlockContactHero] .title{margin:30px 0 60px}flynt-component[name=BlockContactHero] .title .g-primary-c{color:#323246}flynt-component[name=BlockContactHero] .boxes .box{margin-bottom:20px}@media (min-width: 760px){flynt-component[name=BlockContactHero] .boxes{display:flex;flex-wrap:wrap;justify-content:stretch}flynt-component[name=BlockContactHero] .boxes .box{margin-bottom:1.6949152542%}flynt-component[name=BlockContactHero] .boxes.column-2 .box,flynt-component[name=BlockContactHero] .boxes.column-3 .box{width:48.5714285714%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockContactHero] .boxes.column-2 .box:nth-child(2n),flynt-component[name=BlockContactHero] .boxes.column-3 .box:nth-child(2n){width:48.5714285714%;float:right;margin-right:0}}@media (min-width: 1030px){flynt-component[name=BlockContactHero] .boxes.column-3 .box{width:31.4285714286%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockContactHero] .boxes.column-3 .box:nth-child(2n){width:31.4285714286%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockContactHero] .boxes.column-3 .box:nth-child(3n){width:31.4285714286%;float:right;margin-right:0}}flynt-component[name=BlockContactHero] .box{font-size:1.5rem;background-color:#f2f2f2;padding:30px 20px;border-radius:10px;display:flex;flex-direction:column;transition-delay:0s!important}flynt-component[name=BlockContactHero] .box:nth-child(1){transition-delay:0s!important}flynt-component[name=BlockContactHero] .box:nth-child(2){transition-delay:1s!important}flynt-component[name=BlockContactHero] .box:nth-child(3){transition-delay:2s!important}flynt-component[name=BlockContactHero] .box:nth-child(4){transition-delay:3s!important}flynt-component[name=BlockContactHero] .box:nth-child(5){transition-delay:4s!important}flynt-component[name=BlockContactHero] .box:nth-child(6){transition-delay:5s!important}flynt-component[name=BlockContactHero] .box:nth-child(7){transition-delay:6s!important}flynt-component[name=BlockContactHero] .box:nth-child(8){transition-delay:7s!important}flynt-component[name=BlockContactHero] .box:nth-child(9){transition-delay:8s!important}flynt-component[name=BlockContactHero] .box:nth-child(10){transition-delay:9s!important}flynt-component[name=BlockContactHero] .box:nth-child(11){transition-delay:10s!important}flynt-component[name=BlockContactHero] .box:nth-child(12){transition-delay:11s!important}flynt-component[name=BlockContactHero] .box:nth-child(13){transition-delay:12s!important}flynt-component[name=BlockContactHero] .box:nth-child(14){transition-delay:13s!important}flynt-component[name=BlockContactHero] .box:nth-child(15){transition-delay:14s!important}flynt-component[name=BlockContactHero] .box:nth-child(16){transition-delay:15s!important}flynt-component[name=BlockContactHero] .box:nth-child(17){transition-delay:16s!important}flynt-component[name=BlockContactHero] .box:nth-child(18){transition-delay:17s!important}flynt-component[name=BlockContactHero] .box:nth-child(19){transition-delay:18s!important}flynt-component[name=BlockContactHero] .box:nth-child(20){transition-delay:19s!important}flynt-component[name=BlockContactHero] .box:nth-child(21){transition-delay:20s!important}flynt-component[name=BlockContactHero] .box:last-child{border:4px solid #11ff9b}flynt-component[name=BlockContactHero] .box address{line-height:1.33;font-style:normal}flynt-component[name=BlockContactHero] .box-title{margin-bottom:20px;font-size:1.875rem}@media (max-width: 760px){flynt-component[name=BlockContactHero] .box-title{font-size:1.5rem}}flynt-component[name=BlockContactHero] .box-text,flynt-component[name=BlockContactHero] .box-address{flex:1 1 auto}flynt-component[name=BlockContactHero] .box-phone,flynt-component[name=BlockContactHero] .box-email,flynt-component[name=BlockContactHero] .box-footer-text,flynt-component[name=BlockContactHero] .box-box{flex:0 0 auto}flynt-component[name=BlockContactHero] .box-address,flynt-component[name=BlockContactHero] .box-phone a,flynt-component[name=BlockContactHero] .box-email a{display:flex;align-items:center;gap:10px 20px}@media (min-width: 760px){flynt-component[name=BlockContactHero] .box-address,flynt-component[name=BlockContactHero] .box-phone a,flynt-component[name=BlockContactHero] .box-email a{gap:10px 0}}flynt-component[name=BlockContactHero] .box-text,flynt-component[name=BlockContactHero] .box-address,flynt-component[name=BlockContactHero] .box-phone,flynt-component[name=BlockContactHero] .box-email{padding-bottom:20px;border-bottom:1px solid #323246}@media (min-width: 760px){flynt-component[name=BlockContactHero] .box-text .icon,flynt-component[name=BlockContactHero] .box-address .icon,flynt-component[name=BlockContactHero] .box-phone .icon,flynt-component[name=BlockContactHero] .box-email .icon{width:18.1818181818%;float:left;margin-right:9.0909090909%;text-align:center}}flynt-component[name=BlockContactHero] .box-text .icon img,flynt-component[name=BlockContactHero] .box-address .icon img,flynt-component[name=BlockContactHero] .box-phone .icon img,flynt-component[name=BlockContactHero] .box-email .icon img{max-height:30px}@media (min-width: 760px){flynt-component[name=BlockContactHero] .box-text .number,flynt-component[name=BlockContactHero] .box-address .number,flynt-component[name=BlockContactHero] .box-phone .number,flynt-component[name=BlockContactHero] .box-email .number{width:72.7272727273%;float:right;margin-right:0}}flynt-component[name=BlockContactHero] .box-address{align-items:flex-start}@media (min-width: 760px){flynt-component[name=BlockContactHero] .box-address .icon{width:18.1818181818%;float:left;margin-right:9.0909090909%;text-align:center}}flynt-component[name=BlockContactHero] .box-address .icon img{max-height:50px}@media (min-width: 760px){flynt-component[name=BlockContactHero] .box-address .number{width:72.7272727273%;float:right;margin-right:0}}flynt-component[name=BlockContactHero] .box-phone,flynt-component[name=BlockContactHero] .box-email{padding-top:20px}flynt-component[name=BlockContactHero] .box-phone a,flynt-component[name=BlockContactHero] .box-email a{color:inherit;font-weight:700;text-decoration:none}flynt-component[name=BlockContactHero] .box-phone a:hover,flynt-component[name=BlockContactHero] .box-email a:hover{color:#11ff9b}flynt-component[name=BlockContactHero] .box-text,flynt-component[name=BlockContactHero] .box-footer-text{font-size:1rem}@media (max-width: 760px){flynt-component[name=BlockContactHero] .box-text,flynt-component[name=BlockContactHero] .box-footer-text{font-size:1rem}}flynt-component[name=BlockContactHero] .box .box-email+.box-link{margin-top:40px}flynt-component[name=BlockContactHero] .box .box-email+.box-footer-text{margin-top:30px}flynt-component[name=BlockContactHero] .box .box-footer-text+.box-link{margin-top:20px}flynt-component[name=BlockCustomerSlider]{padding:80px 0;overflow:hidden}@media (max-width: 760px){flynt-component[name=BlockCustomerSlider]{padding:50px 0}}flynt-component[name=BlockCustomerSlider] .title{margin-top:20px;margin-bottom:30px;font-weight:700;font-size:3.125rem}@media (max-width: 760px){flynt-component[name=BlockCustomerSlider] .title{font-size:2rem}}flynt-component[name=BlockCustomerSlider] .logos-wrapper{position:relative;padding-right:30px;mix-blend-mode:multiply}@media (min-width: 1680px){flynt-component[name=BlockCustomerSlider] .logos-wrapper{padding-right:0}}flynt-component[name=BlockCustomerSlider] .logo-slider-next{position:absolute;right:0;top:50%;transform:translateY(-50%);color:#11ff9b}flynt-component[name=BlockCustomerSlider] .logo-slider-next svg{width:26px;height:46px}@media (min-width: 760px){flynt-component[name=BlockCustomerSlider] .logo-slider-next{right:-30px}}@media (min-width: 1030px){flynt-component[name=BlockCustomerSlider] .logo-slider-next{right:-20px}}@media (min-width: 1680px){flynt-component[name=BlockCustomerSlider] .logo-slider-next{right:-40px}}flynt-component[name=BlockCustomerSlider] .logo{transition-delay:0s}flynt-component[name=BlockCustomerSlider] .logo.slick-cloned{opacity:1!important}flynt-component[name=BlockColumnsCasket][data-theme=dark]{background-color:#323246!important}flynt-component[name=BlockColumnsCasket] .pre-title{padding-top:50px;font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px}@media (max-width: 760px){flynt-component[name=BlockColumnsCasket] .pre-title{font-size:1rem}}flynt-component[name=BlockColumnsCasket] .block{padding-bottom:50px;display:inline-block;width:100%}flynt-component[name=BlockColumnsCasket] .block+.block .g-wrapper{border-top:1px solid #f2f2f2}flynt-component[name=BlockColumnsCasket] .title{margin:30px 0}flynt-component[name=BlockColumnsCasket][data-theme=dark] .title .g-primary-c{color:inherit}flynt-component[name=BlockColumnsCasket] .casket-list{display:flex;flex-wrap:wrap}flynt-component[name=BlockColumnsCasket] .casket-list .casket{width:100%;margin-bottom:40px;margin-left:0!important;margin-right:0!important}@media (min-width: 760px){flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-3 .casket,flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-4 .casket{width:48.5714285714%;float:left;flex-grow:0;flex-shrink:0}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-3 .casket:nth-child(2n+1),flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-4 .casket:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-3 .casket:nth-child(2n+2),flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-4 .casket:nth-child(2n+2){margin-left:51.4285714286%;margin-right:-100%;clear:none}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-3 .casket:nth-child(2n),flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-4 .casket:nth-child(2n){border-right:3px solid #11ff9b}}@media (min-width: 1030px){flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-3 .casket{width:31.4285714286%;float:left}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-3 .casket:nth-child(3n+1){margin-right:-100%;clear:both;margin-left:0}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-3 .casket:nth-child(3n+2){margin-left:34.2857142857%;margin-right:-100%;clear:none}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-3 .casket:nth-child(3n+3){margin-left:68.5714285714%;margin-right:-100%;clear:none}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-3 .casket:nth-child(2n){border-right:0}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-3 .casket:nth-child(3n){border-right:3px solid #11ff9b}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-4 .casket{width:22.8571428571%;float:left}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-4 .casket:nth-child(4n+1){margin-right:-100%;clear:both;margin-left:0}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-4 .casket:nth-child(4n+2){margin-left:25.7142857143%;margin-right:-100%;clear:none}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-4 .casket:nth-child(4n+3){margin-left:51.4285714286%;margin-right:-100%;clear:none}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-4 .casket:nth-child(4n+4){margin-left:77.1428571429%;margin-right:-100%;clear:none}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-4 .casket:nth-child(2n){border-right:0}flynt-component[name=BlockColumnsCasket] .casket-list.grid-column-4 .casket:nth-child(4n){border-right:3px solid #11ff9b}}flynt-component[name=BlockColumnsCasket] .casket{display:inline-flex;flex-direction:column;border-left:3px solid #11ff9b;padding-left:20px;padding-right:20px}flynt-component[name=BlockColumnsCasket] .casket:last-child{border-right:3px solid #11ff9b}flynt-component[name=BlockColumnsCasket] .casket-title{font-size:1.875rem;font-weight:700;line-height:1.4}@media (max-width: 760px){flynt-component[name=BlockColumnsCasket] .casket-title{font-size:1.5rem}}flynt-component[name=BlockColumnsCasket] .casket-text{flex:1 1 auto}flynt-component[name=BlockColumnsCasket] .casket-link{margin-top:50px}flynt-component[name=BlockColumnsCasket][data-theme=dark] .casket-title{background:linear-gradient(to right,#0ff2c9,#00ff81);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}flynt-component[name=BlockColumnsCasket][data-theme=medium-dark] .title .g-primary-c{color:inherit}flynt-component[name=BlockColumnsCasket][data-theme=medium-dark] .casket-title{color:#323246}flynt-component[name=BlockFullImageText]{position:relative}flynt-component[name=BlockFullImageText] .bg-items{position:absolute;left:0;top:0;width:100%;height:100%}flynt-component[name=BlockFullImageText] .bg-items .background{position:absolute;left:0;top:0;width:100%;height:100%}flynt-component[name=BlockFullImageText] .bg-items .background img{position:absolute;left:0;top:0;width:100%;height:100%;object-fit:cover;object-position:center}flynt-component[name=BlockFullImageText] .bg-items.grid-2 .background{position:absolute;left:0;top:0;width:100%;height:50%}flynt-component[name=BlockFullImageText] .bg-items.grid-2 .background img{position:absolute;left:0;top:0;width:100%;height:100%;object-fit:cover;object-position:center}@media (min-width: 760px){flynt-component[name=BlockFullImageText] .bg-items.grid-2 .background{position:absolute;left:0;top:0;width:50%;height:100%}flynt-component[name=BlockFullImageText] .bg-items.grid-2 .background img{position:absolute;left:0;top:0;width:100%;height:100%;object-fit:cover;object-position:center}}flynt-component[name=BlockFullImageText] .bg-items.grid-2 .background+.background{position:absolute;left:0;top:50%}@media (min-width: 760px){flynt-component[name=BlockFullImageText] .bg-items.grid-2 .background+.background{left:50%;top:0}}flynt-component[name=BlockFullImageText] .background{position:relative}flynt-component[name=BlockFullImageText] .background.bg-white-light:before{position:absolute;left:0;top:0;width:100%;height:100%;background-color:#f2f2f259;z-index:2;content:"";mix-blend-mode:screen}flynt-component[name=BlockFullImageText] .background.bg-white-heavy:before{position:absolute;left:0;top:0;width:100%;height:100%;background-color:#f2f2f2a6;z-index:2;content:"";mix-blend-mode:screen}flynt-component[name=BlockFullImageText] .background.bg-black-light:before{position:absolute;left:0;top:0;width:100%;height:100%;background-color:#32324559;z-index:2;content:"";mix-blend-mode:multiply}flynt-component[name=BlockFullImageText] .background.bg-black-heavy:before{position:absolute;left:0;top:0;width:100%;height:100%;background-color:#323245a6;z-index:2;content:"";mix-blend-mode:multiply}flynt-component[name=BlockFullImageText] .g-wrapper{height:100%}flynt-component[name=BlockFullImageText] .item{position:relative;overflow:hidden;height:600px;background-color:transparent}flynt-component[name=BlockFullImageText] .item-title{font-size:3.125rem}@media (max-width: 760px){flynt-component[name=BlockFullImageText] .item-title{font-size:2rem}}flynt-component[name=BlockFullImageText] .item-text{max-width:650px;font-size:1.875rem}@media (max-width: 760px){flynt-component[name=BlockFullImageText] .item-text{font-size:1.5rem}}flynt-component[name=BlockFullImageText] .item-link a{margin-top:40px}flynt-component[name=BlockFullImageText] .item-content-wrapper{height:100%;display:flex;flex-direction:column;justify-content:flex-start}flynt-component[name=BlockFullImageText] .items{position:relative;z-index:2}@media (min-width: 760px){flynt-component[name=BlockFullImageText] .items.grid-2 .item{width:48.5714285714%;float:left}flynt-component[name=BlockFullImageText] .items.grid-2 .item:nth-child(2n+1){margin-right:-100%;clear:both;margin-left:0}flynt-component[name=BlockFullImageText] .items.grid-2 .item:nth-child(2n+2){margin-left:51.4285714286%;margin-right:-100%;clear:none}flynt-component[name=BlockFullImageText] .items.grid-2 .item+.item{padding-left:50px}}flynt-component[name=BlockFullImageText] [data-theme=dark] .item-text{text-shadow:0px 0px 5px black}flynt-component[name=BlockGiantColumnsCasket]{padding:100px 0}flynt-component[name=BlockGiantColumnsCasket] [class*=background]{position:absolute;z-index:-1;display:inline-block;background-size:contain;background-position:center;background-repeat:no-repeat}flynt-component[name=BlockGiantColumnsCasket] .background-deko{background-image:url(../../assets/images/deko.svg);width:460px;height:240px;opacity:.4;top:-100px;left:-100px}flynt-component[name=BlockGiantColumnsCasket] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px;margin-bottom:120px}@media (max-width: 760px){flynt-component[name=BlockGiantColumnsCasket] .pre-title{font-size:1rem}}flynt-component[name=BlockGiantColumnsCasket] .g-wrapper{position:relative}flynt-component[name=BlockGiantColumnsCasket] .items .item{margin-bottom:4%}@media (min-width: 760px){flynt-component[name=BlockGiantColumnsCasket] .items{display:flex;justify-content:stretch;flex-wrap:wrap;gap:4%}flynt-component[name=BlockGiantColumnsCasket] .items .item{flex-basis:46%}flynt-component[name=BlockGiantColumnsCasket] .items .item.column-2{flex-basis:100%}}@media (min-width: 1030px){flynt-component[name=BlockGiantColumnsCasket] .items{max-width:100%;margin-left:auto;margin-right:auto;gap:0}flynt-component[name=BlockGiantColumnsCasket] .items:after{content:" ";display:block;clear:both}flynt-component[name=BlockGiantColumnsCasket] .items .item{width:31.4285714286%;float:left;margin-right:2.8571428571%;flex-basis:auto!important}flynt-component[name=BlockGiantColumnsCasket] .items .item:nth-child(2){width:31.4285714286%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockGiantColumnsCasket] .items .item.column-1.row-end{width:31.4285714286%;float:right;margin-right:0}flynt-component[name=BlockGiantColumnsCasket] .items .item.column-2{width:65.7142857143%;float:left;margin-right:2.8571428571%}}flynt-component[name=BlockGiantColumnsCasket] .text+.space{padding-left:1.6949152542%;border-left:2px solid #11ff9b}flynt-component[name=BlockGiantColumnsCasket] .item.text{padding-left:1.6949152542%;border-left:2px solid #11ff9b}flynt-component[name=BlockGiantColumnsCasket] .item.text:nth-child(even){border-right:0}flynt-component[name=BlockGiantColumnsCasket] .item.text.row-end{padding-right:1.6949152542%;border-right:2px solid #11ff9b}flynt-component[name=BlockGiantColumnsCasket] .item.space{display:none}@media (min-width: 1030px){flynt-component[name=BlockGiantColumnsCasket] .item.space{display:block}}flynt-component[name=BlockGiantColumnsCasket] .item-text-title{font-size:1.875rem;margin-bottom:40px}@media (max-width: 760px){flynt-component[name=BlockGiantColumnsCasket] .item-text-title{font-size:1.5rem}}flynt-component[name=BlockGiantColumnsCasket] .item-text-text{font-size:1.25rem}@media (max-width: 760px){flynt-component[name=BlockGiantColumnsCasket] .item-text-text{font-size:1.25rem}}flynt-component[name=BlockGiantColumnsCasket] .item-text-button{margin-top:30px}@media (min-width: 1030px){flynt-component[name=BlockGiantColumnsCasket] .item.image.row-end img{margin-top:-100%}}flynt-component[name=BlockGiantColumnsCasket] .footer-text{margin-top:100px}flynt-component[name=BlockGiantColumnsCasket] .footer-text p{font-size:2.5rem}@media (max-width: 760px){flynt-component[name=BlockGiantColumnsCasket] .footer-text p{font-size:1.75rem}}@media (min-width: 1030px){flynt-component[name=BlockGiantColumnsCasket] .footer-text{width:65.7142857143%;float:left;margin-right:2.8571428571%}}@media (scripting: enabled){flynt-component[name=BlockGiantColumnsCasket] [data-scroll]{opacity:0!important;transition:all 1s ease-out}flynt-component[name=BlockGiantColumnsCasket] [data-scroll].is-inview,flynt-component[name=BlockGiantColumnsCasket] [data-scroll].was-inview{opacity:1!important}flynt-component[name=BlockGiantColumnsCasket] [data-scroll]:nth-child(2){transition-delay:.1s}flynt-component[name=BlockGiantColumnsCasket] [data-scroll]:nth-child(3){transition-delay:.2s}flynt-component[name=BlockGiantColumnsCasket] [data-scroll]:nth-child(4){transition-delay:.3s}flynt-component[name=BlockGiantColumnsCasket] [data-scroll]:nth-child(5){transition-delay:.4s}flynt-component[name=BlockGiantColumnsCasket] [data-scroll]:nth-child(6){transition-delay:.5s}flynt-component[name=BlockGiantColumnsCasket] [data-scroll]:nth-child(7){transition-delay:.6s}}flynt-component[name=BlockGiantImageText]{padding-bottom:50px}flynt-component[name=BlockGiantImageText] .row .row-content-title .g-primary-c{color:inherit!important}flynt-component[name=BlockGiantImageText] .pre-title,flynt-component[name=BlockGiantImageText] .title{color:#fff}flynt-component[name=BlockGiantImageText] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px;padding-top:50px}@media (max-width: 760px){flynt-component[name=BlockGiantImageText] .pre-title{font-size:1rem}}@media (min-width: 1030px){flynt-component[name=BlockGiantImageText] .pre-title{padding-top:180px}}flynt-component[name=BlockGiantImageText] .title{padding:10px 0 70px}@media (min-width: 1030px){flynt-component[name=BlockGiantImageText] .title{padding:60px 0 150px}}flynt-component[name=BlockGiantImageText] .row{position:relative}flynt-component[name=BlockGiantImageText] .row .row-background{position:absolute;left:0;top:0;bottom:0;right:0;z-index:-1}flynt-component[name=BlockGiantImageText] .row .row-background img{width:100%;height:100%;object-fit:cover}flynt-component[name=BlockGiantImageText] .row .row-content{position:relative;z-index:1;background-color:#fff;padding:15px 20px}@media (min-width: 1030px){flynt-component[name=BlockGiantImageText] .row .row-content{padding:30px 60px}}flynt-component[name=BlockGiantImageText] .row .row-content-title{font-size:3.125rem;font-weight:500;margin-bottom:30px}@media (max-width: 760px){flynt-component[name=BlockGiantImageText] .row .row-content-title{font-size:2rem}}@media (min-width: 1030px){flynt-component[name=BlockGiantImageText] .row .row-content-title{margin-bottom:60px}}flynt-component[name=BlockGiantImageText] .row .row-content-title .g-primary-c{font-weight:700}flynt-component[name=BlockGiantImageText] .row .row-content .wysiwyg p,flynt-component[name=BlockGiantImageText] .row .row-content .wysiwyg li,flynt-component[name=BlockGiantImageText] .row .row-content .wysiwyg a{font-weight:300}flynt-component[name=BlockGiantImageText] .row:nth-of-type(1) .row-background img{object-fit:cover}flynt-component[name=BlockGiantImageText] .row:nth-of-type(1) .row-content{margin-bottom:-40px}@media (min-width: 1030px){flynt-component[name=BlockGiantImageText] .row:nth-of-type(1) .row-content{margin-bottom:-140px;width:65.7142857143%;float:left;margin-right:2.8571428571%}}flynt-component[name=BlockGiantImageText] .row:nth-of-type(2),flynt-component[name=BlockGiantImageText] .row:nth-of-type(4),flynt-component[name=BlockGiantImageText] .row:nth-of-type(6){margin-top:140px;padding-top:140px}flynt-component[name=BlockGiantImageText] .row:nth-of-type(2) .row-background:before,flynt-component[name=BlockGiantImageText] .row:nth-of-type(4) .row-background:before,flynt-component[name=BlockGiantImageText] .row:nth-of-type(6) .row-background:before{content:"";position:absolute;top:-140px;left:0;bottom:-600px;width:100%;background:linear-gradient(160deg,#11ff9b 0%,rgba(0,0,0,0) 60%,rgba(0,0,0,0) 100%)}flynt-component[name=BlockGiantImageText] .row:nth-of-type(2) .row-background img,flynt-component[name=BlockGiantImageText] .row:nth-of-type(4) .row-background img,flynt-component[name=BlockGiantImageText] .row:nth-of-type(6) .row-background img{position:relative;left:0;width:60%;z-index:1;top:-100px}@media (min-width: 1030px){flynt-component[name=BlockGiantImageText] .row:nth-of-type(2) .row-background img,flynt-component[name=BlockGiantImageText] .row:nth-of-type(4) .row-background img,flynt-component[name=BlockGiantImageText] .row:nth-of-type(6) .row-background img{top:0}}@media (min-width: 1030px){flynt-component[name=BlockGiantImageText] .row:nth-of-type(2) .row-content,flynt-component[name=BlockGiantImageText] .row:nth-of-type(4) .row-content,flynt-component[name=BlockGiantImageText] .row:nth-of-type(6) .row-content{width:65.7142857143%;float:right;margin-right:0}}flynt-component[name=BlockGiantImageText] .row:nth-of-type(3),flynt-component[name=BlockGiantImageText] .row:nth-of-type(5),flynt-component[name=BlockGiantImageText] .row:nth-of-type(7){margin-top:180px}flynt-component[name=BlockGiantImageText] .row:nth-of-type(3) .row-background img,flynt-component[name=BlockGiantImageText] .row:nth-of-type(5) .row-background img,flynt-component[name=BlockGiantImageText] .row:nth-of-type(7) .row-background img{position:relative;z-index:1;top:-180px}@media (min-width: 1030px){flynt-component[name=BlockGiantImageText] .row:nth-of-type(3) .row-background img,flynt-component[name=BlockGiantImageText] .row:nth-of-type(5) .row-background img,flynt-component[name=BlockGiantImageText] .row:nth-of-type(7) .row-background img{width:48.5714285714%;float:right;margin-right:0;top:0}}flynt-component[name=BlockGiantImageText] .row:nth-of-type(3) .row-content,flynt-component[name=BlockGiantImageText] .row:nth-of-type(5) .row-content,flynt-component[name=BlockGiantImageText] .row:nth-of-type(7) .row-content{padding:0;background:transparent}@media (min-width: 1030px){flynt-component[name=BlockGiantImageText] .row:nth-of-type(3) .row-content,flynt-component[name=BlockGiantImageText] .row:nth-of-type(5) .row-content,flynt-component[name=BlockGiantImageText] .row:nth-of-type(7) .row-content{width:48.5714285714%;float:left;margin-right:2.8571428571%}}flynt-component[name=BlockGiantImageText] .links{margin-top:145px;display:flex;gap:30px}flynt-component[name=BlockGiantImageText][data-design=about] .row:nth-of-type(2) .row-background img{top:-140px;object-fit:cover}flynt-component[name=BlockGiantImageText][data-design=about] .row:nth-of-type(3){margin-top:250px}flynt-component[name=BlockGiantImageText][data-design=about] .row:nth-of-type(3) .row-background{display:flex;justify-content:center}flynt-component[name=BlockGiantImageText][data-design=about] .row:nth-of-type(3) .row-background img{top:-250px;object-fit:cover;width:100%;max-width:var(--content-max-width);padding:0 30px}@media (min-width: 1280px){flynt-component[name=BlockGiantImageText][data-design=about] .row:nth-of-type(3) .row-background img{padding:0}}flynt-component[name=BlockGiantImageText][data-design=about] .row:nth-of-type(3) .row-content{background-color:#fff;padding:30px 60px}@media (min-width: 1030px){flynt-component[name=BlockGiantImageText][data-design=about] .row:nth-of-type(3) .row-content{width:57.1428571429%;float:left;margin-right:2.8571428571%}}@media (scripting: enabled){flynt-component[name=BlockGiantImageText] [data-scroll]{opacity:0!important;transition:all 1s ease-out}flynt-component[name=BlockGiantImageText] [data-scroll].is-inview,flynt-component[name=BlockGiantImageText] [data-scroll].was-inview{opacity:1!important}flynt-component[name=BlockGiantImageText] [data-scroll]:nth-child(2){transition-delay:.1s}flynt-component[name=BlockGiantImageText] [data-scroll]:nth-child(3){transition-delay:.2s}flynt-component[name=BlockGiantImageText] [data-scroll]:nth-child(4){transition-delay:.3s}flynt-component[name=BlockGiantImageText] [data-scroll]:nth-child(5){transition-delay:.4s}flynt-component[name=BlockGiantImageText] [data-scroll]:nth-child(6){transition-delay:.5s}flynt-component[name=BlockGiantImageText] [data-scroll]:nth-child(7){transition-delay:.6s}}flynt-component[name=BlockHero]{position:relative;overflow:hidden}@media (min-width: 760px){flynt-component[name=BlockHero] .wrapper-inner{width:65.7142857143%;float:left;margin-right:2.8571428571%}}flynt-component[name=BlockHero] .background{position:absolute;left:0;top:0;width:100%;height:100%}flynt-component[name=BlockHero] .background.bg-white-light:before{position:absolute;left:0;top:0;width:100%;height:100%;background-color:#f2f2f259;z-index:2;content:"";mix-blend-mode:screen}flynt-component[name=BlockHero] .background.bg-white-heavy:before{position:absolute;left:0;top:0;width:100%;height:100%;background-color:#f2f2f2a6;z-index:2;content:"";mix-blend-mode:screen}flynt-component[name=BlockHero] .background.bg-black-light:before{position:absolute;left:0;top:0;width:100%;height:100%;background-color:#32324559;z-index:2;content:"";mix-blend-mode:multiply}flynt-component[name=BlockHero] .background.bg-black-heavy:before{position:absolute;left:0;top:0;width:100%;height:100%;background-color:#323245a6;z-index:2;content:"";mix-blend-mode:multiply}flynt-component[name=BlockHero] .background img{position:absolute;left:0;top:0;width:100%;height:100%;object-fit:cover;object-position:center;z-index:1}flynt-component[name=BlockHero] .background .overlay{position:absolute;left:0;top:0;width:100%;height:100%;z-index:4}flynt-component[name=BlockHero] .background .overlay.green-overlay-design-1:before{content:"";position:absolute;left:-100px;right:-100px;bottom:0;opacity:.6;height:400px;transform:rotate(11deg);transform-origin:center;background:linear-gradient(0deg,rgb(0,255,129) 0%,rgba(255,255,255,0) 50%)}flynt-component[name=BlockHero] .background .overlay.green-overlay-design-1:after{content:"";position:absolute;right:-300px;left:-100px;bottom:-300px;opacity:.7;height:300px;transform:rotate(-33deg);transform-origin:center;background:linear-gradient(-.5deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 60%,rgb(0,255,129) 100%)}flynt-component[name=BlockHero] .background .overlay.green-overlay-design-2:before{content:"";position:absolute;left:-101px;right:-1630px;bottom:0;opacity:.6;height:800px;transform:rotate(142deg);transform-origin:center;background:linear-gradient(0deg,rgb(0,255,129) 0%,rgba(255,255,255,0) 50%)}@media (max-width: 1030px){flynt-component[name=BlockHero] .breadcrumb{font-size:1.125rem;line-height:1.33;font-weight:300;letter-spacing:.025em;margin-bottom:50px}}@media (max-width: 1030px) and (min-width: 1030px){flynt-component[name=BlockHero] .breadcrumb{font-size:1.25rem}}@media (min-width: 1030px){flynt-component[name=BlockHero] .breadcrumb{transform:translateY(-100px)}}flynt-component[name=BlockHero] .breadcrumb a{color:inherit;text-decoration:none}flynt-component[name=BlockHero] .breadcrumb a:hover{color:#11ff9b}flynt-component[name=BlockHero] .breadcrumb .last{color:#11ff9b}@media (max-width: 639px){flynt-component[name=BlockHero] .buttons{display:flex;flex-direction:column;gap:10px}flynt-component[name=BlockHero] .buttons a{text-align:center;flex-basis:100%}}flynt-component[name=blockHistoryDynamic]{padding:50px 0;text-align:center;position:relative}flynt-component[name=blockHistoryDynamic]:before{content:"";position:absolute;z-index:-1;top:0;left:0;bottom:0;width:100%;background:linear-gradient(160deg,#11ff9b 0%,rgba(0,0,0,0) 70%,rgba(0,0,0,0) 100%)}flynt-component[name=blockHistoryDynamic] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px}@media (max-width: 760px){flynt-component[name=blockHistoryDynamic] .pre-title{font-size:1rem}}flynt-component[name=blockHistoryDynamic] .title{margin:50px 0}flynt-component[name=blockHistoryDynamic] .title .g-primary-c{color:inherit}flynt-component[name=blockHistoryDynamic] .history-graphic-container .desktop-container{display:none!important}@media (min-width: 1030px){flynt-component[name=blockHistoryDynamic] .history-graphic-container .desktop-container{display:block!important}}flynt-component[name=blockHistoryDynamic] .history-graphic-container .mobile-container{display:block!important}@media (min-width: 1030px){flynt-component[name=blockHistoryDynamic] .history-graphic-container .mobile-container{display:none!important}}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Linie1,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Linie2,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Linie3,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Linie4,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Linie5,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Linie6,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Linie7{display:none}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Linie1,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Linie1{display:block;stroke-dashoffset:1000;stroke-dasharray:1000;stroke-width:10;stroke:#ebebec;animation:dash 3s linear forwards;fill:none}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Linie2,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Linie2{display:block;stroke-dashoffset:1000;stroke-dasharray:1000;stroke-width:10;stroke:#ebebec;animation:dash2 1.5s linear forwards;animation-delay:3s;fill:none}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Linie3,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Linie3{display:block;stroke-dashoffset:1000;stroke-dasharray:1000;stroke-width:10;stroke:#ebebec;animation:dash2 1.5s linear forwards;animation-delay:3.8s;fill:none}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Linie4,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Linie4{display:block;stroke-dashoffset:1000;stroke-dasharray:1000;stroke-width:10;stroke:#ebebec;animation:dash 1.5s linear forwards;animation-delay:4.5s;fill:none}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Linie5,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Linie5{display:block;stroke-dashoffset:1000;stroke-dasharray:1000;stroke-width:20;stroke:#11ff9b;animation:dash2 1.5s linear forwards;animation-delay:5.4s;fill:none}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Text1,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Text2,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Text3,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Text4,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Text5,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Text6,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Text7,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Text8,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Text9{display:none;opacity:0}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Text1,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Text1{display:block;animation:fade .4s linear forwards;transform-origin:50px 50px;animation-delay:.4s}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Text2,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Text2{display:block;animation:fade .4s linear forwards;animation-delay:.8s;transform-origin:150px 150px}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Text3,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Text3{display:block;animation:fade .4s linear forwards;animation-delay:1.4s;transform-origin:350px 250px}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Text4,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Text4{display:block;animation:fade .4s linear forwards;animation-delay:3.1s;transform-origin:550px 650px}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Text5,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Text5{display:block;animation:fade .4s linear forwards;animation-delay:3.7s;transform-origin:720px 450px}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Text6,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Text6{display:block;animation:fade .4s linear forwards;animation-delay:5.6s;transform-origin:1020px 450px}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Text7,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Text7{display:block;animation:fade .4s linear forwards;animation-delay:5.6s;animation-delay:4.5s;transform-origin:1320px 450px}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Text8,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Text8{display:block;animation:fade .4s linear forwards;animation-delay:6.2s;transform-origin:1120px 250px}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Text9,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Text9{display:block;animation:fade .4s linear forwards;animation-delay:6.4s;transform-origin:1020px 850px}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Step1,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Step2,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Step3,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Step4,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Step5,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Step6,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Step7,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Step8,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg #Step9{display:none;opacity:0}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step1,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step1{display:block;transform-origin:50px 50px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step1,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step1{animation:fadeIn .4s linear forwards}}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step2,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step2{display:block;animation-delay:.4s;transform-origin:150px 150px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step2,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step2{animation:fadeIn .4s linear forwards;animation-delay:.4s}}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step3,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step3{display:block;animation-delay:1s;transform-origin:350px 250px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step3,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step3{animation:fadeIn .4s linear forwards;animation-delay:1s}}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step4,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step4{display:block;animation-delay:2.76s;transform-origin:550px 650px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step4,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step4{animation:fadeIn .4s linear forwards;animation-delay:2.76s}}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step5,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step5{display:block;animation-delay:3.3s;transform-origin:720px 450px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step5,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step5{animation:fadeIn .4s linear forwards;animation-delay:3.3s}}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step6,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step6{display:block;animation-delay:4.1s;transform-origin:1020px 450px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step6,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step6{animation:fadeIn .4s linear forwards;animation-delay:4.1s}}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step7,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step7{display:block;animation-delay:5.17s;transform-origin:1320px 450px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step7,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step7{animation:fadeIn .4s linear forwards;animation-delay:5.17s}}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step8,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step8{display:block;animation-delay:5.8s;transform-origin:1120px 250px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step8,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step8{animation:fadeIn .4s linear forwards;animation-delay:5.8s}}flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step9,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step9{display:block;animation-delay:5.92s;transform-origin:1020px 850px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.is-inview #Step9,flynt-component[name=blockHistoryDynamic] .history-graphic-container svg.was-inview #Step9{animation:fadeIn .4s linear forwards;animation-delay:5.92s}}.js flynt-component[name=blockHistoryDynamic] [data-scroll]{opacity:0!important;transition:all 1s ease-out}.js flynt-component[name=blockHistoryDynamic] [data-scroll].is-inview,.js flynt-component[name=blockHistoryDynamic] [data-scroll].was-inview{opacity:1!important}flynt-component[name=BlockHistoryImage]{padding:50px 0;text-align:center;position:relative}flynt-component[name=BlockHistoryImage]:before{content:"";position:absolute;z-index:-1;top:0;left:0;bottom:0;width:100%;background:linear-gradient(160deg,#11ff9b 0%,rgba(0,0,0,0) 70%,rgba(0,0,0,0) 100%)}flynt-component[name=BlockHistoryImage] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px}@media (max-width: 760px){flynt-component[name=BlockHistoryImage] .pre-title{font-size:1rem}}flynt-component[name=BlockHistoryImage] .title{margin:50px 0}flynt-component[name=BlockHistoryImage] .title .g-primary-c{color:inherit}flynt-component[name=BlockHistoryImage] .history-graphic-container .desktop-container{display:none!important}@media (min-width: 1030px){flynt-component[name=BlockHistoryImage] .history-graphic-container .desktop-container{display:block!important}}flynt-component[name=BlockHistoryImage] .history-graphic-container .mobile-container{display:block!important}@media (min-width: 1030px){flynt-component[name=BlockHistoryImage] .history-graphic-container .mobile-container{display:none!important}}flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Linie1,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Linie2,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Linie3,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Linie4,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Linie5,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Linie6,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Linie7{display:none}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Linie1,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Linie1{display:block;stroke-dashoffset:1000;stroke-dasharray:1000;stroke-width:10;stroke:#ebebec;animation:dash 3s linear forwards;fill:none}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Linie2,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Linie2{display:block;stroke-dashoffset:1000;stroke-dasharray:1000;stroke-width:10;stroke:#ebebec;animation:dash2 1.5s linear forwards;animation-delay:3s;fill:none}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Linie3,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Linie3{display:block;stroke-dashoffset:1000;stroke-dasharray:1000;stroke-width:10;stroke:#ebebec;animation:dash2 1.5s linear forwards;animation-delay:3.8s;fill:none}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Linie4,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Linie4{display:block;stroke-dashoffset:1000;stroke-dasharray:1000;stroke-width:10;stroke:#ebebec;animation:dash 1.5s linear forwards;animation-delay:4.5s;fill:none}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Linie5,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Linie5{display:block;stroke-dashoffset:1000;stroke-dasharray:1000;stroke-width:20;stroke:#11ff9b;animation:dash2 1.5s linear forwards;animation-delay:5.4s;fill:none}@keyframes dash{0%{stroke-dashoffset:-1000}to{stroke-dashoffset:0}}@keyframes dash2{0%{stroke-dashoffset:1000}to{stroke-dashoffset:0}}flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Text1,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Text2,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Text3,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Text4,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Text5,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Text6,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Text7,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Text8,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Text9{display:none;opacity:0}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Text1,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Text1{display:block;animation:fade .4s linear forwards;transform-origin:50px 50px;animation-delay:.4s}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Text2,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Text2{display:block;animation:fade .4s linear forwards;animation-delay:.8s;transform-origin:150px 150px}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Text3,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Text3{display:block;animation:fade .4s linear forwards;animation-delay:1.4s;transform-origin:350px 250px}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Text4,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Text4{display:block;animation:fade .4s linear forwards;animation-delay:3.1s;transform-origin:550px 650px}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Text5,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Text5{display:block;animation:fade .4s linear forwards;animation-delay:3.7s;transform-origin:720px 450px}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Text6,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Text6{display:block;animation:fade .4s linear forwards;animation-delay:5.6s;transform-origin:1020px 450px}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Text7,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Text7{display:block;animation:fade .4s linear forwards;animation-delay:5.6s;animation-delay:4.5s;transform-origin:1320px 450px}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Text8,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Text8{display:block;animation:fade .4s linear forwards;animation-delay:6.2s;transform-origin:1120px 250px}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Text9,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Text9{display:block;animation:fade .4s linear forwards;animation-delay:6.4s;transform-origin:1020px 850px}flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Step1,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Step2,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Step3,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Step4,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Step5,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Step6,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Step7,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Step8,flynt-component[name=BlockHistoryImage] .history-graphic-container svg #Step9{display:none;opacity:0}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step1,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step1{display:block;transform-origin:50px 50px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step1,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step1{animation:fadeIn .4s linear forwards}}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step2,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step2{display:block;animation-delay:.4s;transform-origin:150px 150px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step2,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step2{animation:fadeIn .4s linear forwards}}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step3,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step3{display:block;animation-delay:1s;transform-origin:350px 250px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step3,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step3{animation:fadeIn .4s linear forwards}}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step4,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step4{display:block;animation-delay:2.76s;transform-origin:550px 650px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step4,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step4{animation:fadeIn .4s linear forwards}}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step5,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step5{display:block;animation-delay:3.3s;transform-origin:720px 450px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step5,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step5{animation:fadeIn .4s linear forwards}}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step6,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step6{display:block;animation-delay:4.1s;transform-origin:1020px 450px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step6,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step6{animation:fadeIn .4s linear forwards}}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step7,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step7{display:block;animation-delay:5.17s;transform-origin:1320px 450px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step7,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step7{animation:fadeIn .4s linear forwards}}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step8,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step8{display:block;animation-delay:5.8s;transform-origin:1120px 250px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step8,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step8{animation:fadeIn .4s linear forwards}}flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step9,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step9{display:block;animation-delay:5.92s;transform-origin:1020px 850px;animation:fade .4s linear forwards}@media (min-width: 1030px){flynt-component[name=BlockHistoryImage] .history-graphic-container svg.is-inview #Step9,flynt-component[name=BlockHistoryImage] .history-graphic-container svg.was-inview #Step9{animation:fadeIn .4s linear forwards}}@keyframes fadeIn{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes fade{0%{opacity:0}to{opacity:1}}.js flynt-component[name=BlockHistoryImage] [data-scroll]{opacity:0!important;transition:all 1s ease-out}.js flynt-component[name=BlockHistoryImage] [data-scroll].is-inview,.js flynt-component[name=BlockHistoryImage] [data-scroll].was-inview{opacity:1!important}.js flynt-component[name=BlockHistoryImage] [data-scroll]:nth-child(2){transition-delay:.1s}.js flynt-component[name=BlockHistoryImage] [data-scroll]:nth-child(3){transition-delay:.2s}.js flynt-component[name=BlockHistoryImage] [data-scroll]:nth-child(4){transition-delay:.3s}.js flynt-component[name=BlockHistoryImage] [data-scroll]:nth-child(5){transition-delay:.4s}.js flynt-component[name=BlockHistoryImage] [data-scroll]:nth-child(6){transition-delay:.5s}.js flynt-component[name=BlockHistoryImage] [data-scroll]:nth-child(7){transition-delay:.6s}flynt-component[name=BlockIconTextGrid]{padding:100px 0;overflow:hidden}flynt-component[name=BlockIconTextGrid] .g-wrapper{position:relative;z-index:1}flynt-component[name=BlockIconTextGrid] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px;text-align:center}@media (max-width: 760px){flynt-component[name=BlockIconTextGrid] .pre-title{font-size:1rem}}flynt-component[name=BlockIconTextGrid] [class*=background]{position:absolute;z-index:-1;display:inline-block;background-size:contain;background-position:center;background-repeat:no-repeat}flynt-component[name=BlockIconTextGrid] .background-deko{width:460px;height:240px;top:-100px;left:0;background-image:url(../../assets/images/deko.svg)}flynt-component[name=BlockIconTextGrid] .background-stern{width:130px;height:130px;bottom:-160px;left:-65px;background-image:url(../../assets/images/stern.svg)}flynt-component[name=BlockIconTextGrid] .title{margin-top:60px;text-align:center;display:inline-block;width:100%}flynt-component[name=BlockIconTextGrid] .items{max-width:100%;margin-left:auto;margin-right:auto}flynt-component[name=BlockIconTextGrid] .items:after{content:" ";display:block;clear:both}flynt-component[name=BlockIconTextGrid] .item{font-size:1.5625rem;text-align:center;margin-top:60px}@media (max-width: 760px){flynt-component[name=BlockIconTextGrid] .item{font-size:1.25rem}}@media (min-width: 760px){flynt-component[name=BlockIconTextGrid] .item{width:48.5714285714%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockIconTextGrid] .item:nth-child(2n){width:48.5714285714%;float:right;margin-right:0}}@media (min-width: 1030px){flynt-component[name=BlockIconTextGrid] .item{margin-top:-50px}flynt-component[name=BlockIconTextGrid] .item:nth-child(1),flynt-component[name=BlockIconTextGrid] .item:nth-child(4){width:31.4285714286%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockIconTextGrid] .item:nth-child(2),flynt-component[name=BlockIconTextGrid] .item:nth-child(5){margin-left:34.2857142857%;width:31.4285714286%;float:right;margin-right:0}flynt-component[name=BlockIconTextGrid] .item:nth-child(3),flynt-component[name=BlockIconTextGrid] .item:nth-child(6){margin-left:34.2857142857%;width:31.4285714286%;float:left;margin-right:2.8571428571%}}flynt-component[name=BlockIconTextGrid] .item-img{margin:0 auto 20px;width:160px;height:130px}@media (min-width: 760px){flynt-component[name=BlockIconTextGrid] .item-img{margin-bottom:40px}}flynt-component[name=BlockIconTextGrid] .item-img img{width:100%;height:100%;object-fit:contain;object-position:bottom}flynt-component[name=BlockIconTextGrid] .item-title{font-weight:700}flynt-component[name=BlockIconTextGrid] .links{text-align:center;margin-top:65px;margin-left:-10px}flynt-component[name=BlockIconTextGrid] .links a{display:inline-block;margin-left:10px;margin-top:10px}@media (scripting: enabled){flynt-component[name=BlockIconTextGrid] [data-scroll]{opacity:0!important;transition:all 1s ease-out}flynt-component[name=BlockIconTextGrid] [data-scroll].is-inview,flynt-component[name=BlockIconTextGrid] [data-scroll].was-inview{opacity:1!important}flynt-component[name=BlockIconTextGrid] [data-scroll]:nth-child(2){transition-delay:.1s}flynt-component[name=BlockIconTextGrid] [data-scroll]:nth-child(3){transition-delay:.2s}flynt-component[name=BlockIconTextGrid] [data-scroll]:nth-child(4){transition-delay:.3s}flynt-component[name=BlockIconTextGrid] [data-scroll]:nth-child(5){transition-delay:.4s}flynt-component[name=BlockIconTextGrid] [data-scroll]:nth-child(6){transition-delay:.5s}flynt-component[name=BlockIconTextGrid] [data-scroll]:nth-child(7){transition-delay:.6s}}flynt-component[name=BlockColumnsCasket][data-theme=dark]{background-color:#2e3234}flynt-component[name=BlockImageSlider]{--swiper-navigation-color: #11ff9b}flynt-component[name=BlockKeyfacts]{padding:50px 0}@media (min-width: 1030px){flynt-component[name=BlockKeyfacts]{padding:100px 0}}flynt-component[name=BlockKeyfacts][data-theme=medium-dark] .title .g-primary-c{color:inherit}flynt-component[name=BlockKeyfacts] .items .item{margin-top:40px}@media (min-width: 760px){flynt-component[name=BlockKeyfacts] .items{display:flex;flex-wrap:wrap;justify-content:stretch;max-width:100%;margin-left:auto;margin-right:auto}flynt-component[name=BlockKeyfacts] .items:after{content:" ";display:block;clear:both}flynt-component[name=BlockKeyfacts] .items .item{margin-top:80px;width:48.5714285714%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockKeyfacts] .items .item:nth-child(2n){width:48.5714285714%;float:right;margin-right:0}}@media (min-width: 1030px){flynt-component[name=BlockKeyfacts] .items .item{width:31.4285714286%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockKeyfacts] .items .item:nth-child(2n){width:31.4285714286%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockKeyfacts] .items .item:nth-child(3n){width:31.4285714286%;float:right;margin-right:0}}flynt-component[name=BlockKeyfacts] .item:before{content:"+";font-size:100px;color:#11ff9b;line-height:.5em}flynt-component[name=BlockKeyfacts] .item-title{font-weight:700}flynt-component[name=BlockKeyfacts] .item-text{font-size:1.125rem;line-height:1.33;font-weight:300;letter-spacing:.025em}@media (min-width: 1030px){flynt-component[name=BlockKeyfacts] .item-text{font-size:1.25rem}}@media (scripting: enabled){flynt-component[name=BlockKeyfacts] [data-scroll]{opacity:0!important;transition:all 1s ease-out}flynt-component[name=BlockKeyfacts] [data-scroll].is-inview,flynt-component[name=BlockKeyfacts] [data-scroll].was-inview{opacity:1!important}flynt-component[name=BlockKeyfacts] [data-scroll]:nth-child(2){transition-delay:.1s}flynt-component[name=BlockKeyfacts] [data-scroll]:nth-child(3){transition-delay:.2s}flynt-component[name=BlockKeyfacts] [data-scroll]:nth-child(4){transition-delay:.3s}flynt-component[name=BlockKeyfacts] [data-scroll]:nth-child(5){transition-delay:.4s}flynt-component[name=BlockKeyfacts] [data-scroll]:nth-child(6){transition-delay:.5s}flynt-component[name=BlockKeyfacts] [data-scroll]:nth-child(7){transition-delay:.6s}}flynt-component[name=BlockPopup]{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:100001;background-color:#323246f2;color:#fff}flynt-component[name=BlockPopup].visible{display:block}flynt-component[name=BlockPopup] .background{position:absolute;top:0;left:0;width:100%;height:100%}flynt-component[name=BlockPopup] .background:before{content:"";position:absolute;left:-100px;right:-100px;bottom:0;opacity:.6;height:400px;transform:rotate(11deg);transform-origin:center;background:linear-gradient(0deg,rgb(0,255,129) 0%,rgba(255,255,255,0) 50%)}flynt-component[name=BlockPopup] .background:after{content:"";position:absolute;right:-300px;left:-100px;bottom:-300px;opacity:.7;height:300px;transform:rotate(-33deg);transform-origin:center;background:linear-gradient(-.5deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 60%,rgb(0,255,129) 100%)}flynt-component[name=BlockPopup] .content{position:relative;height:100%;width:100%;display:flex;align-items:center;justify-content:center}flynt-component[name=BlockPopup] .content>*{max-width:900px}flynt-component[name=BlockPopup] .title-wrapper{display:flex;gap:40px;align-items:flex-start}flynt-component[name=BlockPopup] .title-wrapper .title{flex:1 1 auto}flynt-component[name=BlockPopup] .title-wrapper button{flex:0 0 auto}flynt-component[name=BlockPopup] .title-wrapper .icon{color:var(--color-primary);font-size:4em;line-height:.6em;display:inline-block;transform:rotate(45deg)}flynt-component[name=BlockPopup] .pre_title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px}@media (max-width: 760px){flynt-component[name=BlockPopup] .pre_title{font-size:1rem}}flynt-component[name=BlockPopup] .title{margin-bottom:30px;margin-top:15px}flynt-component[name=BlockPopup] .text+.buttons{margin-top:30px}flynt-component[name=BlockPopupRedirect]{z-index:unset}flynt-component[name=BlockTabs]{--flow-space: 50px;padding-top:50px;padding-bottom:50px}flynt-component[name=BlockTabs] .pre-title{font-size:1rem;font-weight:600;line-height:1.2;text-transform:uppercase;letter-spacing:2px;color:#11ff9b}@media (max-width: 760px){flynt-component[name=BlockTabs] .pre-title{font-size:1rem}}flynt-component[name=BlockTabs] .tabs{list-style:none;margin:30px 0 0;width:100%;position:relative}@media (min-width: 760px){flynt-component[name=BlockTabs] .tabs{display:flex}flynt-component[name=BlockTabs] .tabs:after{content:"";position:absolute;left:0;bottom:0;z-index:1;width:100%;border-bottom:2px solid #f2f2f2}}flynt-component[name=BlockTabs] .tab{position:relative}flynt-component[name=BlockTabs] .tab button{padding-right:15px;padding-left:15px;border-right:1px solid #11ff9b;border-left:1px solid #11ff9b;margin-bottom:30px;cursor:pointer;width:100%}flynt-component[name=BlockTabs] .tab button:hover{color:#11ff9b}flynt-component[name=BlockTabs] .tab button.active{color:#11ff9b}@media (min-width: 760px){flynt-component[name=BlockTabs] .tab button{border-left:0}flynt-component[name=BlockTabs] .tab button:after{opacity:0;content:"";width:100%;position:absolute;bottom:-10px;left:0;height:20px;background:linear-gradient(to right,#0ff2c9,#00ff81);border-radius:20px}flynt-component[name=BlockTabs] .tab button.active{color:inherit}flynt-component[name=BlockTabs] .tab button.active:after{z-index:2;opacity:1}}@media (min-width: 760px){flynt-component[name=BlockTabs] .tab:first-child button{padding-left:0}flynt-component[name=BlockTabs] .tab:last-child button{border-color:transparent}}flynt-component[name=BlockTabs] .tab-content{display:none;-webkit-margin-before:var(--flow-space);margin-block-start:var(--flow-space)}flynt-component[name=BlockTabs] .tab-content.visible{display:block}@media (min-width: 760px){flynt-component[name=BlockTabs] .tab-content.grid-2 .tab-content-column{width:48.5714285714%;float:left;margin-right:2.8571428571%}flynt-component[name=BlockTabs] .tab-content.grid-2 .tab-content-column:nth-child(2n){width:48.5714285714%;float:right;margin-right:0}}flynt-component[name=BlockTabs] .tab-content .tab-content-text th,flynt-component[name=BlockTabs] .tab-content .tab-content-produkt th{color:inherit;font-weight:700;padding-left:0}flynt-component[name=BlockTabs] .tab-content .tab-content-text table th,flynt-component[name=BlockTabs] .tab-content .tab-content-text table td,flynt-component[name=BlockTabs] .tab-content .tab-content-produkt table th,flynt-component[name=BlockTabs] .tab-content .tab-content-produkt table td{padding:.6rem 1rem}flynt-component[name=BlockTabs] .tab-content .tab-content-link .price_quotation{font-size:1.875rem}@media (max-width: 760px){flynt-component[name=BlockTabs] .tab-content .tab-content-link .price_quotation{font-size:1.5rem}}flynt-component[name=BlockTabs] .tab-content .tab-content-produkt p{font-size:1.875rem}@media (max-width: 760px){flynt-component[name=BlockTabs] .tab-content .tab-content-produkt p{font-size:1.5rem}}flynt-component[name=BlockTabs] .tab-content .tab-content-produkt .title{font-size:2.5rem;text-transform:none}@media (max-width: 760px){flynt-component[name=BlockTabs] .tab-content .tab-content-produkt .title{font-size:1.75rem}}flynt-component[name=BlockTabs] .mobile-visible .tab-content{margin-bottom:50px}flynt-component[name=BlockTabs][data-theme=dark] .tab-content-text td,flynt-component[name=BlockTabs][data-theme=dark] .tab-content-produkt td{background-color:#ffffff1a}flynt-component[name=BlockTabs][data-theme=dark] .tab-content-text tr,flynt-component[name=BlockTabs][data-theme=dark] .tab-content-produkt tr{-webkit-border-before:solid 1px #fff;border-block-start:solid 1px #fff;-webkit-border-after:solid 1px #fff;border-block-end:solid 1px #fff}flynt-component[name=BlockTabs][data-theme=light] .tab-row+.tab-row{border-top:solid 1px #f2f2f2}flynt-component[name=BlockTabs][data-theme=medium-dark] .tab-row+.tab-row{border-top:solid 1px #d1d1d1}@media (min-width: 760px){flynt-component[name=BlockTabs][data-theme=medium-dark] .tabs:after{border-bottom:2px solid lightgray}}flynt-component[name=BlockTabs] .tab-row+.tab-row{margin-top:50px;padding-top:50px;border-top:solid 1px #474759}flynt-component[name=ListSearchResults] .oneInputForm{--form-inner-space: 6px;display:flex;padding:10px;background-color:#f2f2f2}flynt-component[name=ListSearchResults] .oneInputForm .input{border:0;flex-grow:1;inline-size:100%;-webkit-margin-after:0;margin-block-end:0;padding-block:var(--box-spacing);padding-inline:var(--form-inner-space) var(--box-spacing)}@media (min-width: 480px){flynt-component[name=ListSearchResults] .oneInputForm .input{padding-block:0}}flynt-component[name=ListSearchResults] .oneInputForm .input:focus{outline:none}flynt-component[name=ListSearchResults] .pagination{align-items:center;display:flex;flex-wrap:wrap;gap:var(--flow-space);justify-content:space-between}flynt-component[name=ListSearchResults] .pagination .button{-webkit-margin-before:0;margin-block-start:0}flynt-component[name=ListSearchResults] .pagination .button-next{-webkit-margin-start:auto;margin-inline-start:auto}flynt-component[name=ListSearchResults] .pagination .button-next:after{block-size:.5em;-webkit-border-before:2px solid currentColor;border-block-start:2px solid currentColor;-webkit-border-end:2px solid currentColor;border-inline-end:2px solid currentColor;content:"";display:inline-block;inline-size:.5em;-webkit-margin-after:.07em;margin-block-end:.07em;-webkit-margin-start:.5em;margin-inline-start:.5em;transform:rotate(45deg);vertical-align:baseline}flynt-component[name=ListSearchResults] .pagination .button-previous:before{block-size:.5em;-webkit-border-before:2px solid currentColor;border-block-start:2px solid currentColor;-webkit-border-start:2px solid currentColor;border-inline-start:2px solid currentColor;content:"";display:inline-block;inline-size:.5em;-webkit-margin-after:.07em;margin-block-end:.07em;-webkit-margin-end:.5em;margin-inline-end:.5em;transform:rotate(-45deg);vertical-align:baseline}flynt-component[name=ListSearchResults] .results{list-style:none;padding:0}flynt-component[name=ListSearchResults] .results .result+.result{-webkit-margin-before:20px;margin-block-start:20px}flynt-component[name=ListSearchResults] .results footer{text-align:end}flynt-component[name=ListSearchResults] .noResults{-webkit-margin-before:calc(var(--component-spacing) / 2);margin-block-start:calc(var(--component-spacing) / 2);text-align:center}flynt-component[name=NavigationBurger]{--admin-menu-height: 0px;position:fixed;top:var(--admin-menu-height);left:0;right:0;width:100%;z-index:100000;background-color:#fff;color:#fff}flynt-component[name=NavigationBurger] .hamburger{--line-width: 38px;--line-border-width: 2px;align-items:center;block-size:48px;cursor:pointer;display:flex;inline-size:48px;justify-content:flex-end;position:relative;margin-left:auto}flynt-component[name=NavigationBurger] .hamburger:focus:not(:focus-visible){outline:none}flynt-component[name=NavigationBurger] .hamburger-lines{block-size:18px;inline-size:var(--line-width);position:relative}flynt-component[name=NavigationBurger] .hamburger-lines:before,flynt-component[name=NavigationBurger] .hamburger-lines:after{content:""}flynt-component[name=NavigationBurger] .hamburger-lines:before,flynt-component[name=NavigationBurger] .hamburger-lines:after,flynt-component[name=NavigationBurger] .hamburger-lines--primary,flynt-component[name=NavigationBurger] .hamburger-lines--secondary{background-color:var(--color-text);block-size:var(--line-border-width);border-radius:6px;display:block;inline-size:var(--line-width);inset-inline-start:0;position:absolute;transition:opacity .2s ease-in-out .2s,transform .2s ease-in-out .2s;will-change:opacity,transform}flynt-component[name=NavigationBurger] .hamburger-lines:before{inset-block-start:0px}flynt-component[name=NavigationBurger] .hamburger-lines--primary,flynt-component[name=NavigationBurger] .hamburger-lines--secondary{inset-block-start:10px;transition-delay:0s}flynt-component[name=NavigationBurger] .hamburger-lines:after{inset-block-start:20px}flynt-component[name=NavigationBurger][data-status=menuIsOpen] .hamburger-lines:before{transform:translateY(9px)}flynt-component[name=NavigationBurger][data-status=menuIsOpen] .hamburger-lines:after{transform:translateY(-9px)}flynt-component[name=NavigationBurger][data-status=menuIsOpen] .hamburger-lines--primary{transform:rotate(45deg);transition-delay:.2s}flynt-component[name=NavigationBurger][data-status=menuIsOpen] .hamburger-lines--secondary{transform:rotate(-45deg);transition-delay:.2s}flynt-component[name=NavigationBurger][data-status=menuIsOpen] .hamburger-lines:before,flynt-component[name=NavigationBurger][data-status=menuIsOpen] .hamburger-lines:after{opacity:0;transition-delay:0s}flynt-component[name=NavigationBurger] ul{list-style:none}.admin-bar flynt-component[name=NavigationBurger]{--admin-menu-height: 46px}@media (min-width: 783px){.admin-bar flynt-component[name=NavigationBurger]{--admin-menu-height: 32px}}flynt-component[name=NavigationBurger] .navigation{height:100%;display:flex;flex-direction:column}flynt-component[name=NavigationBurger] .navigation-header{flex:0 0 auto;height:var(--navigation-height)}flynt-component[name=NavigationBurger] .navigation-header .g-wrapper{height:var(--navigation-height);display:flex;justify-content:space-between;align-items:center}flynt-component[name=NavigationBurger] .navigation-body{display:none;flex:1 1 auto;height:calc(100% - 65px);position:relative}flynt-component[name=NavigationBurger] .navigation-body .main-menu-wrapper{padding-top:40px;flex-direction:column;height:100%;display:flex;overflow-x:hidden;overflow-y:scroll;-webkit-overflow-scrolling:touch}flynt-component[name=NavigationBurger] .navigation-body .menu-wrapper{flex:1 1 auto}flynt-component[name=NavigationBurger] .navigation-body .action-bar{flex:0 0 auto}flynt-component[name=NavigationBurger] .logo{height:40px}flynt-component[name=NavigationBurger] .logo svg{height:inherit}flynt-component[name=NavigationBurger] .logo .header-cls-1,flynt-component[name=NavigationBurger] .logo .header-cls-2{stroke-width:0}flynt-component[name=NavigationBurger] .logo .header-cls-1{fill:#323246}flynt-component[name=NavigationBurger] .logo .header-cls-2{fill:#00ff81}flynt-component[name=NavigationBurger] .menu-wrapper .g-wrapper{display:flex;flex-direction:column;justify-content:space-between;height:100%}flynt-component[name=NavigationBurger] .menu-wrapper .g-wrapper:after{display:none}flynt-component[name=NavigationBurger] .open-sub-nav{width:100%;padding:10px 0;margin-bottom:10px;display:flex;align-items:center;color:inherit;text-decoration:none;border-bottom:1px solid #474764;font-weight:700}flynt-component[name=NavigationBurger] .open-sub-nav .icon{flex:0 0 auto}flynt-component[name=NavigationBurger] .open-sub-nav .icon img{width:13px;height:20px;object-fit:contain}flynt-component[name=NavigationBurger] .open-sub-nav span{flex:1 1 auto}flynt-component[name=NavigationBurger] .menu-item:last-child .open-sub-nav{border-color:transparent}flynt-component[name=NavigationBurger] .pre-menu-item:last-child .open-sub-nav{border-color:transparent}flynt-component[name=NavigationBurger] .action-bar{background-color:#474764;padding:20px 0}flynt-component[name=NavigationBurger] .action-bar-menu{display:flex;justify-content:space-between;width:100%}flynt-component[name=NavigationBurger] .action-bar-menu-item.search a:after,flynt-component[name=NavigationBurger] .action-bar-menu-item.search button:after,flynt-component[name=NavigationBurger] .action-bar-menu-item.login a:after,flynt-component[name=NavigationBurger] .action-bar-menu-item.login button:after{content:"";width:20px;height:20px;display:inline-block;background-position:center;background-repeat:no-repeat;top:3px;position:relative}flynt-component[name=NavigationBurger] .action-bar-menu-item.search{width:50%}flynt-component[name=NavigationBurger] .action-bar-menu-item.search>*:after{background-image:url(./suche-3ac865d3.svg)}flynt-component[name=NavigationBurger] .action-bar-menu-item.login>*:after{background-image:url(./profil-f6dc24b1.svg)}flynt-component[name=NavigationBurger] .action-bar-menu-item.language{font-size:1rem;display:flex;align-items:center}@media (max-width: 760px){flynt-component[name=NavigationBurger] .action-bar-menu-item.language{font-size:1rem}}flynt-component[name=NavigationBurger] .action-bar-menu-item.language>button{border:1px solid white;border-radius:20px;line-height:1.5;padding:0 10px}flynt-component[name=NavigationBurger] .action-bar-menu-item.language>button:before{content:"";background:url(./globe-8bfd9afd.svg);width:20px;height:20px;display:inline-block;background-position:center;background-repeat:no-repeat;top:4px;position:relative}flynt-component[name=NavigationBurger] .sub-menu{position:absolute;top:0;left:100vw;bottom:0;width:100%;z-index:0;height:100%;background-color:#474764;transition:left .2s ease-in-out;display:flex;flex-direction:column}flynt-component[name=NavigationBurger] .sub-menu.visible{z-index:10000;left:0}flynt-component[name=NavigationBurger] .sub-menu .open-sub-nav{font-weight:500;border-color:#ffffff4d}flynt-component[name=NavigationBurger] .sub-menu-header{background-color:#323246;flex:0 0 auto}flynt-component[name=NavigationBurger] .sub-menu-header-btn{display:flex;align-items:center;width:100%;gap:15px;padding-bottom:20px;cursor:pointer}flynt-component[name=NavigationBurger] .sub-menu-header-btn .icon img{width:40px;height:25px;object-fit:contain}flynt-component[name=NavigationBurger] .sub-menu-body{flex:1 1 auto;overflow-y:auto}flynt-component[name=NavigationBurger] .sub-menu-body-group a:nth-of-type(1){font-weight:700}flynt-component[name=NavigationBurger] .sub-menu-body-group .open-sub-nav:last-child{border-color:#11ff9b}flynt-component[name=NavigationBurger] .sub-menu-body-group:last-child .open-sub-nav:last-child{border-color:transparent}flynt-component[name=NavigationBurger][data-status=menuIsOpen]{background-color:#323246;height:calc(100dvh - var(--admin-menu-height))}flynt-component[name=NavigationBurger][data-status=menuIsOpen] .header-cls-1{fill:#fff}flynt-component[name=NavigationBurger][data-status=menuIsOpen] .hamburger-lines--primary,flynt-component[name=NavigationBurger][data-status=menuIsOpen] .hamburger-lines--secondary{background-color:#fff}flynt-component[name=NavigationBurger][data-status=menuIsOpen] .navigation-body{display:block}@media (min-width: 1030px){flynt-component[name=NavigationBurger]{display:none}}@media screen and (max-width: 600px){#wpadminbar{position:fixed}}flynt-component[name=NavigationFooter]{padding:50px 0;position:relative;overflow:hidden}flynt-component[name=NavigationFooter]:after{content:"";height:100vw;width:200px;position:absolute;z-index:-1;bottom:-50vw;transform:rotate(45deg);right:0;background-color:#11ff9b}@media (min-width: 1030px){flynt-component[name=NavigationFooter]:after{height:120vw;width:500px;position:absolute;z-index:-1;bottom:-50vw;transform:rotate(55deg);opacity:.6;right:10%;background-color:transparent;background:linear-gradient(90deg,rgb(0,255,129) 0%,rgba(255,255,255,0) 80%)}}flynt-component[name=NavigationFooter] a{color:inherit}flynt-component[name=NavigationFooter] a:hover{color:#11ff9b}flynt-component[name=NavigationFooter] .title{background:linear-gradient(to right,#0ff2c9,#00ff81);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;margin-bottom:80px;font-size:2.1875rem;display:block}@media (min-width: 1030px){flynt-component[name=NavigationFooter] .title br{display:none}}flynt-component[name=NavigationFooter] .navigation{padding-bottom:30px;margin-bottom:40px;border-bottom:3px solid #f2f2f2}flynt-component[name=NavigationFooter] .menu,flynt-component[name=NavigationFooter] .sub-menu{font-size:1rem;list-style:none}@media (max-width: 760px){flynt-component[name=NavigationFooter] .menu,flynt-component[name=NavigationFooter] .sub-menu{font-size:1rem}}flynt-component[name=NavigationFooter] .menu-item button{letter-spacing:1.6px;width:100%;font-weight:700;text-transform:uppercase;display:flex;align-items:center;padding:10px 0}flynt-component[name=NavigationFooter] .menu-item button span{flex:1 1 auto}flynt-component[name=NavigationFooter] .menu-item button svg{flex:0 0 auto;width:30px}@media (min-width: 1030px){flynt-component[name=NavigationFooter] .menu-item button{pointer-events:none}flynt-component[name=NavigationFooter] .menu-item button svg{display:none}}@media (min-width: 760px){flynt-component[name=NavigationFooter] .menu{display:flex;flex-wrap:wrap;justify-content:stretch}flynt-component[name=NavigationFooter] .menu-item{width:48.5714285714%;float:left;margin-right:2.8571428571%}flynt-component[name=NavigationFooter] .menu-item:nth-child(2n){width:48.5714285714%;float:right;margin-right:0}}@media (min-width: 1030px){flynt-component[name=NavigationFooter] .menu-item{width:22.8571428571%;float:left;margin-right:2.8571428571%}flynt-component[name=NavigationFooter] .menu-item:nth-child(2n){width:22.8571428571%;float:left;margin-right:2.8571428571%}flynt-component[name=NavigationFooter] .menu-item:nth-child(4n){width:22.8571428571%;float:right;margin-right:0}}flynt-component[name=NavigationFooter] .sub-menu{margin-bottom:10px;display:none}flynt-component[name=NavigationFooter] .sub-menu a{width:100%;text-decoration:none}flynt-component[name=NavigationFooter] .sub-menu.open{display:block}flynt-component[name=NavigationFooter] .sub-menu .mobil-icon{width:25px;height:25px;object-fit:contain;filter:invert(1)}@media (min-width: 1030px){flynt-component[name=NavigationFooter] .sub-menu{display:block}}flynt-component[name=NavigationFooter] .footer-logo{max-width:200px;width:100%}flynt-component[name=NavigationFooter] .footer-text{display:none;font-size:1rem}@media (max-width: 760px){flynt-component[name=NavigationFooter] .footer-text{font-size:1rem}}@media (min-width: 1030px){flynt-component[name=NavigationFooter] .footer-text{display:block}}@media (min-width: 1030px){flynt-component[name=NavigationFooter] .footer-content{display:flex;align-items:flex-end;justify-content:space-between}}flynt-component[name=NavigationFooter] .menu-item:last-child{margin-top:50px}flynt-component[name=NavigationFooter] .menu-item:last-child button{display:none}flynt-component[name=NavigationFooter] .menu-item:last-child .sub-menu{display:flex;gap:25px}flynt-component[name=NavigationFooter] .menu-item:last-child .sub-menu .mobil-icon+.sub-menu-title{display:none}@media (min-width: 760px){flynt-component[name=NavigationFooter] .menu-item:last-child{margin-top:10px}}@media (min-width: 1030px){flynt-component[name=NavigationFooter] .menu-item:last-child{margin-top:0}flynt-component[name=NavigationFooter] .menu-item:last-child button{display:block}flynt-component[name=NavigationFooter] .menu-item:last-child .sub-menu{display:block;gap:0}flynt-component[name=NavigationFooter] .menu-item:last-child .sub-menu .mobil-icon+.sub-menu-title{display:block}flynt-component[name=NavigationFooter] .menu-item:last-child .sub-menu .mobil-icon{display:none}}flynt-component[name=NavigationMain]{display:none;position:fixed;top:0;left:0;right:0;width:100%;z-index:1000}flynt-component[name=NavigationMain] ul{list-style:none}@media (min-width: 1030px){flynt-component[name=NavigationMain]{display:block}}flynt-component[name=NavigationMain] a{color:inherit;text-decoration:none;height:100%;display:inline-block}flynt-component[name=NavigationMain] .pre-navigation{font-size:1.25rem;height:var(--pre-navigation-height);color:#fff;background:linear-gradient(to right,#0ff2c9,#00ff81,#323246 60%)}@media (max-width: 760px){flynt-component[name=NavigationMain] .pre-navigation{font-size:1.25rem}}flynt-component[name=NavigationMain] .pre-navigation .pre-menu{display:flex;gap:20px;height:var(--pre-navigation-height);width:100%;align-items:center;justify-content:flex-end}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item{position:relative;z-index:1011}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item a{position:relative;z-index:1030}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item a:before{content:attr(data-text);height:0;font-weight:700;width:100%;display:block;overflow:hidden}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item a.active,flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item a:hover{color:#11ff9b;font-weight:700}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item .pre-sub-menu-wrapper{position:absolute;z-index:1010;top:0;padding-top:var(--pre-navigation-height);left:50%;transform:translate(-50%)}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item .pre-sub-menu{display:none;background-color:#fff;box-shadow:0 8px 16px #00000080;border:3px solid #11ff9b;color:#323246;padding:35px 50px}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item .pre-sub-menu:after,flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item .pre-sub-menu:before{top:var(--pre-navigation-height)}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item .pre-sub-menu:after{--size: 18px;content:"";position:absolute;left:50%;margin-left:calc(-1 * var(--size));margin-top:calc(-.8 * var(--size));width:0;z-index:1;height:0;border-bottom:solid var(--size) #fff;border-left:solid var(--size) transparent;border-right:solid var(--size) transparent}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item .pre-sub-menu:before{--size: 20px;content:"";position:absolute;left:50%;margin-left:calc(-1 * var(--size));margin-top:calc(-1 * var(--size));width:0;z-index:1;height:0;border-bottom:solid var(--size) #11ff9b;border-left:solid var(--size) transparent;border-right:solid var(--size) transparent}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item .pre-sub-menu.visible{display:block}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item .pre-sub-menu-item{margin-top:20px}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item .pre-sub-menu-item:first-child{margin-top:0}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item .pre-sub-menu a{position:relative}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item .pre-sub-menu a:after{content:"";position:absolute;bottom:-2px;left:2px;right:2px;height:2px;background:linear-gradient(to right,#0ff2c9,#00ff81);border-radius:2px;width:0;will-change:width;transition:width .25s ease-in-out}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item .pre-sub-menu a:hover:after{width:100%}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.about .pre-sub-menu{-moz-columns:2;columns:2;-moz-column-gap:40px;column-gap:40px}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.about .pre-sub-menu-item{font-weight:700}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.about .pre-sub-menu .pre-sub-menu-item a{white-space:nowrap}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.about>a:after{margin-left:10px;content:"";width:20px;height:20px;display:inline-block;background:url(./arrow-down-gradient-b355136d.svg);background-position:center;background-repeat:no-repeat;top:5px;position:relative}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.search{z-index:1010}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.login>a,flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.search>a{color:transparent}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.login>a:after,flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.search>a:after{margin-left:10px;content:"";width:20px;height:20px;display:inline-block;background:url(./arrow-down-gradient-b355136d.svg);background-position:center;background-repeat:no-repeat;top:5px;position:relative}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.login>a span,flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.search>a span{display:none}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.login>a:before,flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.search>a:before{content:"";width:20px;height:20px;display:inline-block;background-position:center;background-repeat:no-repeat;top:3px;position:relative}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.login>a{pointer-events:none}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.login>a:before{background-image:url(./profil-f6dc24b1.svg)}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.login .pre-sub-menu{padding:35px 10px}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.search>a:before{background-image:url(./suche-3ac865d3.svg)}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.language>a{border:1px solid white;border-radius:20px;line-height:1.3;padding:0 10px}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.language>a>span:before{content:"";background:url(./globe-8bfd9afd.svg);width:20px;height:20px;display:inline-block;background-position:center;background-repeat:no-repeat;top:4px;position:relative}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.language>a:hover{font-weight:400}flynt-component[name=NavigationMain] .pre-navigation .pre-menu-item.language>a:after{margin-left:10px;content:"";width:20px;height:20px;display:inline-block;background:url(./arrow-down-gradient-b355136d.svg);background-position:center;background-repeat:no-repeat;top:5px;position:relative}flynt-component[name=NavigationMain] .pre-navigation .search-form{position:relative}flynt-component[name=NavigationMain] .pre-navigation .search-form [name=s]{padding-right:20px;background-color:#f2f2f2;border:0}flynt-component[name=NavigationMain] .pre-navigation .search-form [type=submit]{position:absolute;top:8px;right:5px;width:40px;height:40px;background-image:url(./suche-dark-4fb2a1d7.svg);background-position:center;background-repeat:no-repeat}flynt-component[name=NavigationMain] .navigation{height:var(--navigation-height);width:100%}flynt-component[name=NavigationMain] .main-menu{height:inherit;background-color:#fff;color:#323246;position:relative;z-index:1000;box-shadow:0 4px 4px #0003}flynt-component[name=NavigationMain] .main-menu .g-wrapper{height:inherit;display:flex;align-items:flex-end;justify-content:space-between}flynt-component[name=NavigationMain] .main-menu .logo{flex:0 0 auto;display:inline-flex;align-items:flex-end}flynt-component[name=NavigationMain] .main-menu .logo-image{width:180px;margin-bottom:10px}flynt-component[name=NavigationMain] .main-menu .menu{flex:1 1 auto;justify-content:flex-end;display:inline-flex;gap:20px 35px;margin-bottom:7px}flynt-component[name=NavigationMain] .main-menu .menu-item{font-weight:700}flynt-component[name=NavigationMain] .main-menu .menu-item a{position:relative}flynt-component[name=NavigationMain] .main-menu .menu-item a:after{position:absolute;content:"";bottom:-12px;height:9px;left:0;right:0;width:100%;display:inline-block;background:linear-gradient(to right,#0ff2c9,#00ff81);border-radius:5px;opacity:0}flynt-component[name=NavigationMain] .main-menu .menu-item a.active:after,flynt-component[name=NavigationMain] .main-menu .menu-item a:hover:after{opacity:1}flynt-component[name=NavigationMain] .popup-menu{position:relative}flynt-component[name=NavigationMain] .sub-menu{display:none;position:absolute;top:0;left:0;right:0;width:100%;max-height:calc(100vh - (var(--navigation-height) + var(--pre-navigation-height)));overflow-y:auto;z-index:900;background-color:#fff}flynt-component[name=NavigationMain] .sub-menu.visible{display:block}flynt-component[name=NavigationMain] .sub-menu-inner{max-width:100%;margin:50px auto;display:flex}flynt-component[name=NavigationMain] .sub-menu-inner:after{content:" ";display:block;clear:both}flynt-component[name=NavigationMain] .sub-menu-column{font-size:1.5625rem}@media (max-width: 760px){flynt-component[name=NavigationMain] .sub-menu-column{font-size:1.25rem}}@media (min-width: 1030px){flynt-component[name=NavigationMain] .sub-menu-column{width:31.4285714286%;float:left;margin-right:2.8571428571%}}@media (min-width: 1030px){flynt-component[name=NavigationMain] .sub-menu-column.column-2{width:48.5714285714%;float:left;margin-right:2.8571428571%}}flynt-component[name=NavigationMain] .sub-menu-column.column-2 .sub-sub-menu{-moz-columns:2;columns:2}@media (min-width: 1030px){flynt-component[name=NavigationMain] .sub-menu-column--inner{width:72.7272727273%;float:left;margin-right:9.0909090909%}}flynt-component[name=NavigationMain] .sub-menu-column--inner.grey-box{background-color:#f2f2f2;position:relative}flynt-component[name=NavigationMain] .sub-menu-column--inner.grey-box:before{top:-10px;left:0;right:0;height:10px;content:"";position:absolute;background-color:#f2f2f2}flynt-component[name=NavigationMain] .sub-menu-column--inner.grey-box:after{bottom:-14px;left:0;right:0;height:14px;content:"";position:absolute;background-color:#f2f2f2}@media (min-width: 1030px){flynt-component[name=NavigationMain] .sub-menu-column:last-child{width:31.4285714286%;float:right;margin-right:0}}flynt-component[name=NavigationMain] .sub-menu-column-header{font-weight:600;line-height:1em}flynt-component[name=NavigationMain] .sub-menu-column-header a{font-weight:600;line-height:1em}flynt-component[name=NavigationMain] .sub-menu-column-header a:after{content:"";position:absolute;bottom:-2px;left:2px;right:2px;height:2px;background:linear-gradient(to right,#0ff2c9,#00ff81);border-radius:2px;width:0;will-change:width;transition:width .25s ease-in-out}flynt-component[name=NavigationMain] .sub-menu-column-header a:hover:after{width:100%}flynt-component[name=NavigationMain] .sub-menu-column-body{padding-top:22px}@media (min-width: 1030px){flynt-component[name=NavigationMain] .sub-menu-column-body{width:72.7272727273%;float:left;margin-right:9.0909090909%}}flynt-component[name=NavigationMain] .sub-menu-column-body a{font-weight:300}flynt-component[name=NavigationMain] .sub-sub-menu-item{-moz-column-break-inside:avoid;break-inside:avoid}flynt-component[name=NavigationMain] .sub-sub-menu-item a{margin-bottom:22px;display:flex;gap:10px;padding:6px;margin-left:-6px;margin-top:-6px;border-radius:6px;align-items:center}flynt-component[name=NavigationMain] .sub-sub-menu-item a:hover{background-color:#f2f2f2}flynt-component[name=NavigationMain] .sub-sub-menu-item-icon{flex:0 0 auto;width:30px;height:30px;object-fit:contain;margin-top:4px;margin-bottom:auto;mix-blend-mode:multiply;background-blend-mode:multiply}flynt-component[name=NavigationMain] .sub-sub-menu-item-text{flex:1 1 auto;line-height:1;display:inline-flex;justify-content:flex-start;flex-direction:column}flynt-component[name=NavigationMain] .sub-sub-menu-item-text-title{font-size:1.125rem;line-height:1.33;font-weight:300;letter-spacing:.025em;font-weight:600;margin-bottom:0}@media (min-width: 1030px){flynt-component[name=NavigationMain] .sub-sub-menu-item-text-title{font-size:1.25rem}}flynt-component[name=NavigationMain] .sub-sub-menu-item-text-text{font-size:1rem;font-weight:300;line-height:1.25;display:block}@media (max-width: 760px){flynt-component[name=NavigationMain] .sub-sub-menu-item-text-text{font-size:1rem}}flynt-component[name=NavigationMain] .grey-box{padding-left:45px;padding-right:15px}flynt-component[name=NavigationMain] .grey-box.sub-menu-column .sub-menu-column-header,flynt-component[name=NavigationMain] .grey-box.sub-menu-column .sub-sub-menu-item-text-title{padding:6px 0}flynt-component[name=NavigationMain] .grey-box .sub-sub-menu-item-icon{display:none}flynt-component[name=NavigationMain] .grey-box .sub-sub-menu-item-text,flynt-component[name=NavigationMain] .grey-box .sub-sub-menu-item-text-title{font-weight:500}flynt-component[name=NavigationMain] .grey-box .sub-menu-column-body{padding-top:0}flynt-component[name=NavigationMain] .grey-box .sub-sub-menu-item-text-text{display:none}flynt-component[name=NavigationMain] .grey-box a{margin-bottom:0;font-weight:500}flynt-component[name=NavigationMain] .sub-menu-column-header a,flynt-component[name=NavigationMain] .sub-sub-menu-item-text-title,flynt-component[name=NavigationMain] .sub-sub-sub-menu a{position:relative}flynt-component[name=NavigationMain] .sub-menu-column-header a span,flynt-component[name=NavigationMain] .sub-sub-menu-item-text-title span,flynt-component[name=NavigationMain] .sub-sub-sub-menu a span{display:inline-block;position:relative}flynt-component[name=NavigationMain] .sub-menu-column-header a span:after,flynt-component[name=NavigationMain] .sub-sub-menu-item-text-title span:after,flynt-component[name=NavigationMain] .sub-sub-sub-menu a span:after{content:"";position:absolute;bottom:1px;left:0;right:0;height:2px;background:linear-gradient(to right,#0ff2c9,#00ff81);border-radius:2px;width:0;will-change:width;transition:width .25s ease-in-out}flynt-component[name=NavigationMain] .sub-menu-column-header a:hover span:after,flynt-component[name=NavigationMain] .sub-sub-menu-item-text-title:hover span:after,flynt-component[name=NavigationMain] .sub-sub-sub-menu a:hover span:after{width:100%}flynt-component[name=NavigationMain] .sub-sub-menu-item-text-title{display:inline-block!important}flynt-component[name=NavigationMain] .sub-sub-menu-item.grey-box{background-color:#f2f2f2}.admin-bar flynt-component[name=NavigationMain]{top:32px}.admin-bar flynt-component[name=NavigationMain] .sub-menu{max-height:calc(100vh - (32px + var(--navigation-height) + var(--pre-navigation-height)))}#submenu-4 .sub-menu-inner .sub-menu-column .sub-menu-column-body,#submenu-4 .sub-menu-inner .sub-menu-column .sub-menu-column--inner{width:100%;margin-right:0}#submenu-4 .sub-menu-inner .sub-menu-column .grey-box .sub-sub-menu{line-height:1.5;margin-top:27px}#submenu-4 .sub-menu-inner .sub-menu-column .grey-box .sub-sub-menu-item{line-height:1.5;margin-top:8px}#submenu-4 .sub-menu-inner .sub-menu-column .grey-box .sub-sub-menu-item a{padding:0 6px}#submenu-4 .sub-menu-inner .sub-menu-column .grey-box .sub-sub-menu-item-text-title{font-weight:300;line-height:1.5}@media (min-width: 1030px){#submenu-1 .sub-menu-column{width:31.4285714286%;float:right;margin-right:0}}#submenu-1 .sub-menu-column .sub-menu-column-body,#submenu-1 .sub-menu-column .sub-menu-column--inner{width:100%;margin-right:0}@media (min-width: 1030px){#submenu-1 .sub-menu-column.column-2{width:65.7142857143%;float:left;margin-right:2.8571428571%}}#submenu-1 .sub-menu-column.column-2 .sub-menu-column-body,#submenu-1 .sub-menu-column.column-2 .sub-menu-column--inner{width:100%;margin-right:0}#submenu-1 .sub-menu-column.column-2 .sub-sub-menu-item:nth-child(4){-moz-column-break-before:column;break-before:column}@media (min-width: 1030px){#submenu-2 .sub-menu-column{width:31.4285714286%;float:left;margin-right:2.8571428571%}#submenu-2 .sub-menu-column:last-child{width:31.4285714286%;float:right;margin-right:0}}#submenu-2 .sub-menu-column .sub-menu-column-body,#submenu-2 .sub-menu-column .sub-menu-column--inner{width:100%;margin-right:0}@media (min-width: 1030px){#submenu-3 .sub-menu-column{width:31.4285714286%;float:right;margin-right:0}}#submenu-3 .sub-menu-column .sub-menu-column-body,#submenu-3 .sub-menu-column .sub-menu-column--inner{width:100%;margin-right:0}@media (min-width: 1030px){#submenu-3 .sub-menu-column.column-2{width:65.7142857143%;float:left;margin-right:2.8571428571%}}#submenu-3 .sub-menu-column.column-2 .sub-menu-column-body,#submenu-3 .sub-menu-column.column-2 .sub-menu-column--inner{width:100%;margin-right:0}#submenu-3 .sub-menu-column.column-2 .sub-sub-menu-item:nth-child(4){-moz-column-break-before:column;break-before:column}#submenu-3 .grey-box>a .sub-sub-menu-item-text-title{font-weight:500}#submenu-3 .grey-box .sub-sub-sub-menu li a{font-weight:300;line-height:1.5;padding-top:6px;padding-bottom:0}#submenu-3 .grey-box .sub-sub-menu{line-height:1.5;margin-top:27px}#submenu-3 .grey-box .sub-sub-menu-item{line-height:1.5;margin-top:8px}#submenu-3 .grey-box .sub-sub-menu-item a{padding:0 6px}#submenu-3 .grey-box .sub-sub-menu-item-text-title{font-weight:300;line-height:1.5}.single-person flynt-component[name=BlockContact] .content-title{margin-bottom:.3em;font-weight:700;color:var(--color-primary)}.single-person flynt-component[name=BlockContact] .abteilung{font-weight:300}.single-person flynt-component[name=BlockContact] .vcard{font-weight:700}.gridchecker{position:fixed;left:0;top:0;bottom:0;right:0;z-index:99999;pointer-events:none;opacity:.1;display:none}.gridchecker .g-wrapper{height:100%}.gridchecker span{width:5.7142857143%;float:left;background-color:red;display:span;height:100%}.gridchecker span:nth-child(12n+1){margin-right:-100%;clear:both;margin-left:0}.gridchecker span:nth-child(12n+2){margin-left:8.5714285714%;margin-right:-100%;clear:none}.gridchecker span:nth-child(12n+3){margin-left:17.1428571429%;margin-right:-100%;clear:none}.gridchecker span:nth-child(12n+4){margin-left:25.7142857143%;margin-right:-100%;clear:none}.gridchecker span:nth-child(12n+5){margin-left:34.2857142857%;margin-right:-100%;clear:none}.gridchecker span:nth-child(12n+6){margin-left:42.8571428571%;margin-right:-100%;clear:none}.gridchecker span:nth-child(12n+7){margin-left:51.4285714286%;margin-right:-100%;clear:none}.gridchecker span:nth-child(12n+8){margin-left:60%;margin-right:-100%;clear:none}.gridchecker span:nth-child(12n+9){margin-left:68.5714285714%;margin-right:-100%;clear:none}.gridchecker span:nth-child(12n+10){margin-left:77.1428571429%;margin-right:-100%;clear:none}.gridchecker span:nth-child(12n+11){margin-left:85.7142857143%;margin-right:-100%;clear:none}.gridchecker span:nth-child(12n+12){margin-left:94.2857142857%;margin-right:-100%;clear:none}
