/* @license GPL-2.0-or-later https://www.drupal.org/licensing/faq */
: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-zoomInUp{animation:.2s ease-out .1s both f-zoomInUp}.f-zoomOutDown{animation:.2s ease-out 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-throwOutUp{animation:.175s ease-out both f-throwOutUp}.f-throwOutDown{animation:.175s ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0,-150px,0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0,150px,0);opacity:0}}.f-fadeIn{animation:.2s ease both f-fadeIn;z-index:2}.f-fadeOut{animation:.2s ease both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes f-fadeOut{to{opacity:0}}.f-fadeSlowIn{animation:.5s ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:.5s ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}to{opacity:1}}@keyframes f-fadeSlowOut{to{opacity:0}}.f-fadeFastIn{animation:.2s ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:.2s ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}to{opacity:1}}@keyframes f-fadeFastOut{to{opacity:0}}.f-crossfadeIn{animation:.2s ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:.1s 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:.85s cubic-bezier(.16,1,.3,1) f-slideInNext}.f-slideIn.from-prev{animation:.85s cubic-bezier(.16,1,.3,1) f-slideInPrev}.f-slideOut.to-next{animation:.85s cubic-bezier(.16,1,.3,1) f-slideOutNext}.f-slideOut.to-prev{animation:.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:.85s cubic-bezier(.16,1,.3,1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:.85s cubic-bezier(.16,1,.3,1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:.85s cubic-bezier(.16,1,.3,1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:.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;inset: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:1050;outline:none;transform-origin:top left;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;-ms-text-size-adjust:100%;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container *:before,.fancybox__container *:after{box-sizing:inherit}.fancybox__backdrop{position:fixed;inset: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__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;transform:translateZ(0);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:#0000;min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:center center;transition:none;transform:translateZ(0);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__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;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:#18181b80}.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:"";inset:-30px -20px;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;inset:0;z-index:40;user-select:none}.fancybox-ghost{position:absolute;top:0;left:0;width:100%;height:100%;min-height:0;object-fit:contain;z-index:40;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:.25s ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:.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:.15s ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:.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:100%;height:100%}.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,.fancybox__container:not(.is-compact) .has-map .fancybox__content,.fancybox__container:not(.is-compact) .has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.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:#18181be6;color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:#0000}.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:20px;--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);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}.f-thumbs__track{display:flex;will-change:transform}.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);min-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:max-content}.is-modern .f-thumbs__track:before{content:"";position:absolute;top:0;bottom:0;left:calc(var(--left,0)*1px);width:calc(100% - var(--width,0)*1px);cursor:pointer}.is-modern .f-thumbs__slide{--clip-path:inset(0 calc((var(--f-thumb-width,0) - var(--f-thumb-clip-width,0)) * .5 * (1 - var(--progress,0))) round var(--f-thumb-border-radius,0));transform:translate3d(calc(var(--shift,0) * -1px),0,0);transition:none;pointer-events:none}.is-modern .f-thumbs__slide:focus-within:not(.is-selected){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))}.is-modern .f-thumbs__slide>*{clip-path:var(--clip-path)}.is-modern.in-touch .f-thumbs__slide{filter:none}.is-modern.is-resting .f-thumbs__slide{transition:all .33s ease}.is-modern.is-resting .f-thumbs__slide>*{transition:all .33s ease}.f-thumbs__slide__button{appearance:none;width:100%;height:100%;margin:0;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:#0000;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-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-nav-selected .f-thumbs__slide__button:after{content:"";position:absolute;inset:0;height:auto;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{position:absolute;overflow:hidden;inset:0;width:100%;height:100%;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover}.f-thumbs.is-horizontal .f-thumbs__track{margin:0 auto;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;margin:auto 0;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(#ffffff1a,#ffffff0d)}.fancybox__thumbs.is-modern{--f-thumb-gap:4px;--f-thumb-extra-gap:20px;--f-thumb-clip-width:46px;--f-thumb-opacity:1;--f-thumb-hover-opacity:1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(#ffffff1a,#ffffff0d)}.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-hidden{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;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}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}: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;user-select:none;pointer-events:none}
html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,html [type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}legend{box-sizing:border-box;color:inherit;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}.ui-autocomplete.ui-autocomplete.ui-autocomplete{border:1px solid #e6ebee;font-family:inherit;font-size:inherit;border-radius:.625rem;max-height:25rem;overflow:auto}.ui-autocomplete.ui-autocomplete.ui-autocomplete .ui-menu-item-wrapper{display:block;padding:.3125rem 1.25rem;color:inherit;transition:none}.ui-autocomplete.ui-autocomplete.ui-autocomplete .ui-menu-item-wrapper.ui-state-active{background:#009ee2;color:#fff;border:none}@media screen and (min-width:61.25em){[data-animation-trigger] [data-animation=fade-in]:not([data-animation-initial-ignore]){opacity:0}}@media screen and (min-width:61.25em){[data-animation-trigger] [data-animation=clip-path]:not([data-animation-initial-ignore]){clip-path:inset(100% 0% 0% 0%)}}img,svg{vertical-align:top;max-width:100%;width:auto;height:auto}video{width:100%;height:auto;vertical-align:top}iframe{width:100%}table{margin:0;overflow:scroll;display:block;width:100%;border-collapse:collapse}@media screen and (min-width:30em){table{display:table}}table tr{border-bottom:1px solid #e6ebee}table td{padding:.3125rem}table th{padding:.3125rem;text-align:left}table .form-item,table p{margin:0}@font-face{font-family:gbl icons;src:url(/themes/gbltheme/fonts/gbl-icons/icomoon.eot);src:url(/themes/gbltheme/fonts/gbl-icons/icomoon.eot) format("embedded-opentype"),url(/themes/gbltheme/fonts/gbl-icons/icomoon.ttf) format("truetype"),url(/themes/gbltheme/fonts/gbl-icons/icomoon.woff) format("woff"),url(/themes/gbltheme/fonts/gbl-icons/icomoon.svg) format("svg");font-weight:400;font-style:normal}[class^=gbl-icons-]:before,[class*=gbl-icons-]:before,[class*=gbl-child-anchor-icons-] a:before{font-family:gbl icons,sans-serif!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gbl-icons-facebook:before,.gbl-child-anchor-icons-facebook a:before{content:"\ea90"}.gbl-icons-instagram:before,.gbl-child-anchor-icons-instagram a:before{content:"\ea92"}.gbl-icons-twitter:before,.gbl-child-anchor-icons-twitter a:before{content:"\ea96"}.gbl-icons-youtube:before,.gbl-child-anchor-icons-youtube a:before{content:"\ea9d"}.gbl-icons-linkedin:before,.gbl-child-anchor-icons-linkedin a:before{content:"\eaca"}.gbl-icons-pinterest:before,.gbl-child-anchor-icons-pinterest a:before{content:"\ead1"}.gbl-icons-icon-dropdown:before,.gbl-child-anchor-icons-icon-dropdown a:before{content:"\e900"}.gbl-icons-icon-button-inline-arrow:before,.gbl-child-anchor-icons-icon-button-inline-arrow a:before{content:"\e901"}.gbl-icons-icon-logo-gbl:before,.gbl-child-anchor-icons-icon-logo-gbl a:before{content:"\e902"}.gbl-icons-icon-download:before,.gbl-child-anchor-icons-icon-download a:before{content:"\e903"}.gbl-icons-icon-check:before,.gbl-child-anchor-icons-icon-check a:before{content:"\e904"}.gbl-icons-icon-smiley-negative:before,.gbl-child-anchor-icons-icon-smiley-negative a:before{content:"\e905"}.gbl-icons-icon-email:before,.gbl-child-anchor-icons-icon-email a:before{content:"\e906"}.gbl-icons-icon-phone:before,.gbl-child-anchor-icons-icon-phone a:before{content:"\e907"}button{margin:0;padding:0;border:none;box-shadow:none;appearance:none;outline:none;text-decoration:none;line-height:inherit;font-family:inherit;font-size:inherit;background:transparent;cursor:pointer}html{background:#fff;color:#2b2b2b;font-size:100%;font-family:neuzeit-grotesk,Helvetica,Arial,sans-serif;font-variant-ligatures:none;text-rendering:optimizelegibility;scroll-behavior:smooth;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}@media screen and (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}body{font-size:16px;line-height:1.55;font-weight:400}@media screen and (min-width:61.25em){body{font-size:18px}}strong{font-weight:700}h1,h2,h3,h4,h5,.h1,.h2,.h3,.pg-usp-bar__item__nr,.h4,.h5{font-family:din-2014,Helvetica,Arial,sans-serif;font-weight:300;color:#183757;margin:0;line-height:1.1}h1,.h1{margin-bottom:1.25rem;font-size:2.1875rem;letter-spacing:.03rem;line-height:1}@media screen and (min-width:30em){h1,.h1{font-size:2.5rem}}@media screen and (min-width:46em){h1,.h1{font-size:3.125rem}}@media screen and (min-width:61.25em){h1,.h1{font-size:3.75rem;margin-bottom:1.875rem}}@media screen and (min-width:71.875em){h1,.h1{font-size:4.0625rem}}@media screen and (min-width:90em){h1,.h1{font-size:4.375rem}}@media screen and (min-width:100em){h1,.h1{font-size:4.6875rem}}h2,.h2{margin-bottom:1.25rem;font-size:1.75rem;letter-spacing:.03rem}@media screen and (min-width:30em){h2,.h2{font-size:2.25rem}}@media screen and (min-width:46em){h2,.h2{font-size:2.5rem}}@media screen and (min-width:71.875em){h2,.h2{font-size:3rem}}@media screen and (min-width:90em){h2,.h2{font-size:3.375rem}}h3,.h3,.pg-usp-bar__item__nr{margin-bottom:1.25rem;font-size:1.3125rem}@media screen and (min-width:46em){h3,.h3,.pg-usp-bar__item__nr{font-size:1.5rem}}@media screen and (min-width:61.25em){h3,.h3,.pg-usp-bar__item__nr{font-size:1.6875rem}}h4,.h4{font-weight:700;margin-bottom:1.25rem;font-size:1.3125rem}@media screen and (min-width:46em){h4,.h4{font-size:1.5rem}}@media screen and (min-width:61.25em){h4,.h4{font-size:1.6875rem}}h5,.h5{margin-bottom:1.25rem}h6,.h6{margin-bottom:.625rem}.text-formatted ol,.text-formatted ul,p{margin:0 0 1.5625rem}.text-formatted ol:last-child,.text-formatted ul:last-child,p:last-child{margin-bottom:0}blockquote{line-height:1.2;font-size:2.125rem;font-style:italic;font-weight:600}blockquote:before{content:"\ab";margin-right:.125rem}blockquote:after{content:"\bb";margin-left:1px}blockquote p{display:inline}.wysiwyg-list-negative .text-formatted ul li{position:relative;padding-left:1.875rem}.wysiwyg-list-negative .text-formatted ul li:not(:last-child){margin-bottom:.5rem}.wysiwyg-list-negative .text-formatted ul li:before{font-family:gbl icons,sans-serif!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e905";color:#e25151;line-height:1.4;position:absolute}.cke_editable a:not(.button),.text-formatted a:not(.button){text-decoration:underline}.cke_editable a span[class^=gbl-icons-]:before,.text-formatted a span[class^=gbl-icons-]:before{display:inline-block;font-size:.8em;width:2rem;color:#009ee2;position:relative;top:.1em}.cke_editable ol,.cke_editable ul,.text-formatted ol,.text-formatted ul{padding:0}.cke_editable ol li,.cke_editable ul li,.text-formatted ol li,.text-formatted ul li{position:relative;padding-left:.9375rem}.cke_editable ol li:not(:last-child),.cke_editable ul li:not(:last-child),.text-formatted ol li:not(:last-child),.text-formatted ul li:not(:last-child){margin-bottom:.1875rem}.cke_editable ol li:before,.cke_editable ul li:before,.text-formatted ol li:before,.text-formatted ul li:before{color:#183757;position:absolute;left:0}.cke_editable ul li:before,.text-formatted ul li:before{content:"-"}.cke_editable ol li,.text-formatted ol li{counter-increment:list}.cke_editable ol li:before,.text-formatted ol li:before{content:counter(list) "."}.cke_editable p+h4,.cke_editable ul+h4,.cke_editable p+h3,.cke_editable ul+h3,.cke_editable p+h2,.cke_editable ul+h2,.text-formatted p+h4,.text-formatted ul+h4,.text-formatted p+h3,.text-formatted ul+h3,.text-formatted p+h2,.text-formatted ul+h2{margin-top:2.5rem}.button,input[type=submit]{display:inline-flex;transition:all .1s linear;background:transparent;position:relative;align-items:center;text-decoration:none;text-transform:lowercase;line-height:1;z-index:1;font-size:1em;font-family:din-2014,Helvetica,Arial,sans-serif}.button--type-default,input[type=submit]{border-radius:.625rem;padding:1rem 1.25rem;background-color:#009ee2;color:#fff;font-weight:400}.button--type-default:hover,input[type=submit]:hover,.button--type-default:focus,input[type=submit]:focus,.trigger-hover:focus .button--type-default,.trigger-hover:focus input[type=submit],.trigger-hover:hover .button--type-default,.trigger-hover:hover input[type=submit]{color:#fff;background-color:#098ac6}@keyframes button-type-inline-hover{0%{transform:scaleX(0)}to{transform:scale(1)}}.button--type-inline{color:#183757;column-gap:.375rem;padding-bottom:.5rem}.button--type-inline:hover,.button--type-inline:focus,.trigger-hover:focus .button--type-inline,.trigger-hover:hover .button--type-inline{color:#183757}.button--type-inline:hover:before,.button--type-inline:focus:before,.trigger-hover:focus .button--type-inline:before,.trigger-hover:hover .button--type-inline:before{animation:button-type-inline-hover .3s forwards linear}.button--type-inline:after{font-family:gbl icons,sans-serif!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e901";font-size:.5em;position:relative;top:.18em}.button--type-inline:before{display:block;content:"";position:absolute;bottom:0;left:0;width:100%;height:1px;background:currentcolor;transform-origin:left center}.button--type-inline.button--color-light{color:#fff}.button--type-inline.button--color-light:hover,.button--type-inline.button--color-light:focus,.trigger-hover:focus .button--type-inline.button--color-light,.trigger-hover:hover .button--type-inline.button--color-light{color:#fff}.button--type-inline.button--w-download{flex-direction:row-reverse;column-gap:.625rem}.button--type-inline.button--w-download:after{content:"\e903";font-size:.7em}.button--type-inline.button--reverse{flex-direction:row-reverse}.button--type-inline.button--reverse:after{transform:scaleX(-1)}.button--type-mobile{background:#183757;aspect-ratio:1/1;width:3.75rem;border-radius:.625rem;align-items:center;justify-content:center}.button--with-icon{flex-direction:row-reverse}.button--with-icon:before{margin-left:.5rem}input,textarea,select{margin:0;padding:0;font-family:inherit;outline:none;border-radius:0;border:none;line-height:inherit;box-shadow:none;color:inherit}input:-ms-input-placeholder,textarea:-ms-input-placeholder,select:-ms-input-placeholder{color:#a3abb1}input::-moz-placeholder,textarea::-moz-placeholder,select::-moz-placeholder{color:#a3abb1}input:-moz-placeholder,textarea:-moz-placeholder,select:-moz-placeholder{color:#a3abb1}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder,select::-webkit-input-placeholder{color:#a3abb1}textarea,select,input:not([type=checkbox],[type=radio],[type=submit],[type=file],[type=range]){padding:.625rem 1.25rem;width:100%;max-width:100%;appearance:none;transition:all .1s linear;background-color:#fff;color:#2b2b2b;border-radius:2px;font-weight:300;border:1px solid #a3abb1;min-height:3.125rem}textarea:focus,select:focus,input:not([type=checkbox],[type=radio],[type=submit],[type=file],[type=range]):focus{border-color:#183757}.form-layout-search-compact textarea,.form-layout-search-compact select,.form-layout-search-compact input:not([type=checkbox],[type=radio],[type=submit],[type=file],[type=range]){border-radius:10px}.form-layout-search-compact input[type=submit]{width:100%}textarea{resize:none}select{background-image:url(/themes/gbltheme/img/form-icon-select.svg);background-repeat:no-repeat;background-position:right 1.25rem center;padding-right:2.1875rem!important}select::-ms-expand{display:none}label,legend{margin-bottom:.5rem;display:block}label.form-required:after,legend.form-required:after{content:" *"}.form-item,#ajax-wrapper .form-item{margin-bottom:1.875rem}.form-layout-search-compact .form-item,.form-layout-search-compact #ajax-wrapper .form-item{margin-bottom:.625rem}.form-item.error label{color:#a94442}.description{font-style:italic;font-size:.75rem;margin-top:.1875rem}.form-actions{margin-top:1.875rem}.form-layout-search-compact .form-actions{margin-top:.625rem}.form-layout-search-compact .form-actions button,.form-layout-search-compact .form-actions .button,.form-layout-search-compact .form-actions input[type=submit]{width:100%;justify-content:center}.js-form-type-checkbox input,.js-form-type-radio input,.form-type-checkbox input,.form-type-radio input,.facets-widget-checkbox .facet-item input{opacity:0;position:absolute}.js-form-type-checkbox label,.js-form-type-radio label,.form-type-checkbox label,.form-type-radio label,.facets-widget-checkbox .facet-item label{position:relative;padding-left:1.875rem;font-weight:inherit;margin:0;display:inline-block;cursor:pointer}.js-form-type-checkbox label:before,.js-form-type-radio label:before,.form-type-checkbox label:before,.form-type-radio label:before,.facets-widget-checkbox .facet-item label:before{transition:all .2s ease;position:absolute;left:0;top:.25rem;content:"";background-color:#fff;width:1rem;height:1rem;border:1px solid #a3abb1}.js-form-type-checkbox a,.js-form-type-radio a,.form-type-checkbox a,.form-type-radio a,.facets-widget-checkbox .facet-item a{text-decoration:underline}.js-form-type-checkbox label:before,.form-type-checkbox label:before,.facets-widget-checkbox .facet-item label:before{border-radius:.125rem;background-repeat:no-repeat;background-position:center;background-size:.5rem .5rem}.js-form-type-checkbox input:checked+label:before,.form-type-checkbox input:checked+label:before,.facets-widget-checkbox .facet-item input:checked+label:before{background-image:url(/themes/gbltheme/img/form-icon-check.svg);background-color:#183757;border-color:#183757}.js-form-type-radio label:before,.form-type-radio label:before{border-radius:100%;top:.2em}.js-form-type-radio label:after,.form-type-radio label:after{content:"";position:absolute;left:.25rem;top:.42em;width:.625rem;height:.625rem;border-radius:100%}.js-form-type-radio input:checked+label:after,.form-type-radio input:checked+label:after{background-color:#183757}.form-radios .form-item,.form-checkboxes .form-item{margin-bottom:0}.form-radios .form-item:not(:first-child),.form-checkboxes .form-item:not(:first-child){margin-top:.3125rem}.form-managed-file{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1.25rem}.captcha{margin-top:1.25rem}.webform-flexbox{margin-top:0;margin-bottom:1.875rem}fieldset{margin:0;padding:0;border:none}.input--w-search-icon{background:url(/themes/gbltheme/dist/img/form-icon-search.svg) no-repeat;background-position:center right 1.25rem;padding-right:2.8125rem!important}@media screen and (min-width:30em){.form-input-label-2-columns{display:flex;flex-direction:row-reverse;align-items:center;justify-content:flex-end;column-gap:1.25rem}}.form-input-label-2-columns+.form-input-label-2-columns{margin-top:-.9375rem}@media screen and (min-width:30em){.form-input-label-2-columns input{max-width:5rem}}@media screen and (min-width:30em){.form-input-label-2-columns label{margin:0}}.form-section-title{margin-top:2.5rem}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{opacity:1}ul,ol{list-style:none;margin:0;padding:0}a{color:#2b2b2b;outline:0!important;text-decoration:none;transition:.1s color linear}a:hover,a:focus{color:#7e92a7}.h-color-light{color:#fff}.h-color-dark{color:#2b2b2b}.h-color-primary{color:#183757}.h-color-secondary{color:#009ee2}.h-color-grey{color:#e6ebee}.h-bg-color-dark,.h-bg-color-primary,.h-bg-color-secondary,.h-bg-color-tertiary,.h-bg-color-quaternary,.h-bg-color-quinary,.h-bg-color-senary,.h-bg-color-septenary,.h-bg-color-octonary,.h-bg-color-nonary,.h-bg-color-denary,.h-bg-color-undenary{color:#fff}.h-bg-color-dark .text-formatted a:not(.button),.h-bg-color-dark a:not(.button),.h-bg-color-primary .text-formatted a:not(.button),.h-bg-color-primary a:not(.button),.h-bg-color-secondary .text-formatted a:not(.button),.h-bg-color-secondary a:not(.button),.h-bg-color-tertiary .text-formatted a:not(.button),.h-bg-color-tertiary a:not(.button),.h-bg-color-quaternary .text-formatted a:not(.button),.h-bg-color-quaternary a:not(.button),.h-bg-color-quinary .text-formatted a:not(.button),.h-bg-color-quinary a:not(.button),.h-bg-color-senary .text-formatted a:not(.button),.h-bg-color-senary a:not(.button),.h-bg-color-septenary .text-formatted a:not(.button),.h-bg-color-septenary a:not(.button),.h-bg-color-octonary .text-formatted a:not(.button),.h-bg-color-octonary a:not(.button),.h-bg-color-nonary .text-formatted a:not(.button),.h-bg-color-nonary a:not(.button),.h-bg-color-denary .text-formatted a:not(.button),.h-bg-color-denary a:not(.button),.h-bg-color-undenary .text-formatted a:not(.button),.h-bg-color-undenary a:not(.button){border-bottom-color:#fff}.h-bg-color-dark .text-formatted a:not(.button):hover,.h-bg-color-dark .text-formatted a:not(.button):focus,.h-bg-color-dark a:not(.button):hover,.h-bg-color-dark a:not(.button):focus,.h-bg-color-primary .text-formatted a:not(.button):hover,.h-bg-color-primary .text-formatted a:not(.button):focus,.h-bg-color-primary a:not(.button):hover,.h-bg-color-primary a:not(.button):focus,.h-bg-color-secondary .text-formatted a:not(.button):hover,.h-bg-color-secondary .text-formatted a:not(.button):focus,.h-bg-color-secondary a:not(.button):hover,.h-bg-color-secondary a:not(.button):focus,.h-bg-color-tertiary .text-formatted a:not(.button):hover,.h-bg-color-tertiary .text-formatted a:not(.button):focus,.h-bg-color-tertiary a:not(.button):hover,.h-bg-color-tertiary a:not(.button):focus,.h-bg-color-quaternary .text-formatted a:not(.button):hover,.h-bg-color-quaternary .text-formatted a:not(.button):focus,.h-bg-color-quaternary a:not(.button):hover,.h-bg-color-quaternary a:not(.button):focus,.h-bg-color-quinary .text-formatted a:not(.button):hover,.h-bg-color-quinary .text-formatted a:not(.button):focus,.h-bg-color-quinary a:not(.button):hover,.h-bg-color-quinary a:not(.button):focus,.h-bg-color-senary .text-formatted a:not(.button):hover,.h-bg-color-senary .text-formatted a:not(.button):focus,.h-bg-color-senary a:not(.button):hover,.h-bg-color-senary a:not(.button):focus,.h-bg-color-septenary .text-formatted a:not(.button):hover,.h-bg-color-septenary .text-formatted a:not(.button):focus,.h-bg-color-septenary a:not(.button):hover,.h-bg-color-septenary a:not(.button):focus,.h-bg-color-octonary .text-formatted a:not(.button):hover,.h-bg-color-octonary .text-formatted a:not(.button):focus,.h-bg-color-octonary a:not(.button):hover,.h-bg-color-octonary a:not(.button):focus,.h-bg-color-nonary .text-formatted a:not(.button):hover,.h-bg-color-nonary .text-formatted a:not(.button):focus,.h-bg-color-nonary a:not(.button):hover,.h-bg-color-nonary a:not(.button):focus,.h-bg-color-denary .text-formatted a:not(.button):hover,.h-bg-color-denary .text-formatted a:not(.button):focus,.h-bg-color-denary a:not(.button):hover,.h-bg-color-denary a:not(.button):focus,.h-bg-color-undenary .text-formatted a:not(.button):hover,.h-bg-color-undenary .text-formatted a:not(.button):focus,.h-bg-color-undenary a:not(.button):hover,.h-bg-color-undenary a:not(.button):focus{color:#7e92a7}.h-bg-color-light{background-color:#fff}.h-bg-color-dark{background-color:#2b2b2b}.h-bg-color-grey{background-color:#e6ebee}.h-bg-color-primary{background-color:#183757}.h-bg-color-secondary{background-color:#009ee2}.h-bg-color-tertiary{background-color:#0016ba}.h-bg-color-quaternary{background-color:purple}.h-bg-color-quinary{background-color:#e20060}.h-bg-color-senary{background-color:#e25151}.h-bg-color-septenary{background-color:brown}.h-bg-color-octonary{background-color:#ff6217}.h-bg-color-nonary{background-color:#5a9300}.h-bg-color-denary{background-color:#f8e593}.h-bg-color-undenary{background-color:#ffcf00}.h-bg-color-dark a:not(.button),.h-bg-color-dark h1,.h-bg-color-dark h2,.h-bg-color-dark h3,.h-bg-color-dark h4,.h-bg-color-dark h5,.h-bg-color-dark .h1,.h-bg-color-dark .h2,.h-bg-color-dark .h3,.h-bg-color-dark .h4,.h-bg-color-dark .h5,.h-bg-color-primary a:not(.button),.h-bg-color-primary h1,.h-bg-color-primary h2,.h-bg-color-primary h3,.h-bg-color-primary h4,.h-bg-color-primary h5,.h-bg-color-primary .h1,.h-bg-color-primary .h2,.h-bg-color-primary .h3,.h-bg-color-primary .h4,.h-bg-color-primary .h5,.h-bg-color-secondary a:not(.button),.h-bg-color-secondary h1,.h-bg-color-secondary h2,.h-bg-color-secondary h3,.h-bg-color-secondary h4,.h-bg-color-secondary h5,.h-bg-color-secondary .h1,.h-bg-color-secondary .h2,.h-bg-color-secondary .h3,.h-bg-color-secondary .h4,.h-bg-color-secondary .h5,.h-color-dark a:not(.button),.h-color-dark h1,.h-color-dark h2,.h-color-dark h3,.h-color-dark h4,.h-color-dark h5,.h-color-dark .h1,.h-color-dark .h2,.h-color-dark .h3,.h-color-dark .h4,.h-color-dark .h5,.h-color-light a:not(.button),.h-color-light h1,.h-color-light h2,.h-color-light h3,.h-color-light h4,.h-color-light h5,.h-color-light .h1,.h-color-light .h2,.h-color-light .h3,.h-color-light .h4,.h-color-light .h5{color:inherit}.h-anchors-color-primary a{color:#183757}.h-anchors-color-primary a:hover,.h-anchors-color-primary a:focus{color:#7e92a7}.h-image-full-width img{width:100%}.h-image-children-display-block img{display:block}.visually-hidden{position:absolute!important;clip:rect(1px,1px,1px,1px);overflow:hidden;height:1px;width:1px;word-wrap:normal}.hidden{display:none!important}.h-layout-display-block{display:block}.h-layout-overflow-hidden{overflow:hidden}.h-layout-grow-parent{height:100%}.h-layout-border-radius-default{border-radius:10px}.h-layout-border-radius-default-top{border-top-left-radius:10px;border-top-right-radius:10px}.h-layout-border-radius-default-bottom{border-bottom-left-radius:10px;border-bottom-right-radius:10px}.h-layout-border-radius-large{border-radius:10px}@media screen and (min-width:61.25em){.h-layout-border-radius-large{border-radius:50px}}.h-layout-border-radius-large-top{border-top-left-radius:10px;border-top-right-radius:10px}@media screen and (min-width:61.25em){.h-layout-border-radius-large-top{border-top-left-radius:50px;border-top-right-radius:50px}}.h-layout-border-radius-large-bottom{border-bottom-left-radius:10px;border-bottom-right-radius:10px}@media screen and (min-width:61.25em){.h-layout-border-radius-large-bottom{border-bottom-left-radius:50px;border-bottom-right-radius:50px}}.h-layout-border-radius-medium{border-radius:10px}@media screen and (min-width:61.25em){.h-layout-border-radius-medium{border-radius:20px}}.h-layout-border-radius-medium-top{border-top-left-radius:10px;border-top-right-radius:10px}@media screen and (min-width:61.25em){.h-layout-border-radius-medium-top{border-top-left-radius:20px;border-top-right-radius:20px}}.h-layout-border-radius-medium-bottom{border-bottom-left-radius:10px;border-bottom-right-radius:10px}@media screen and (min-width:61.25em){.h-layout-border-radius-medium-bottom{border-bottom-left-radius:20px;border-bottom-right-radius:20px}}.h-layout-has-outer-bg.h-padding-default+.h-layout-has-outer-bg{padding-top:0;margin-top:-1.875rem;position:relative}@media screen and (min-width:30em){.h-layout-has-outer-bg.h-padding-default+.h-layout-has-outer-bg{margin-top:-2.8125rem}}@media screen and (min-width:90em){.h-layout-has-outer-bg.h-padding-default+.h-layout-has-outer-bg{margin-top:-4.6875rem}}.h-layout-has-outer-bg.h-padding-default+.h-layout-has-outer-bg:before{content:"";display:block;height:10px;width:100%;position:absolute;top:0;left:0;transform:translateY(-100%);background:#183757}@media screen and (min-width:61.25em){.h-layout-has-outer-bg.h-padding-default+.h-layout-has-outer-bg:before{height:50px}}.h-layout-has-outer-bg.h-padding-default+.h-layout-has-outer-bg .h-layout-has-outer-bg__element{border-top-left-radius:0;border-top-right-radius:0;padding-top:0;position:relative;top:-2px}.h-layout-no-bg+.h-layout-has-bg.h-layout-border-radius-large-top,.h-layout-has-bg.h-layout-border-radius-large-bottom+.h-layout-no-bg{margin-top:1.875rem}@media screen and (min-width:30em){.h-layout-no-bg+.h-layout-has-bg.h-layout-border-radius-large-top,.h-layout-has-bg.h-layout-border-radius-large-bottom+.h-layout-no-bg{margin-top:2.8125rem}}@media screen and (min-width:90em){.h-layout-no-bg+.h-layout-has-bg.h-layout-border-radius-large-top,.h-layout-has-bg.h-layout-border-radius-large-bottom+.h-layout-no-bg{margin-top:4.6875rem}}.h-layout-no-bg:last-child{padding-bottom:0}.h-layout-has-bg.h-bg-color-grey+.h-layout-has-outer-bg{background:#e6ebee}.h-margin-bottom-5{margin-bottom:.3125rem}.h-margin-top-5{margin-top:.3125rem}.h-margin-bottom-10{margin-bottom:.625rem}.h-margin-top-10{margin-top:.625rem}.h-margin-bottom-20{margin-bottom:1.25rem}.h-margin-top-20{margin-top:1.25rem}.h-margin-bottom-30{margin-bottom:1.875rem}.h-margin-top-30{margin-top:1.875rem}.h-margin-bottom-40{margin-bottom:2.5rem}.h-margin-top-40{margin-top:2.5rem}.h-margin-bottom-50{margin-bottom:3.125rem}.h-margin-top-50{margin-top:3.125rem}.h-margin-bottom-60{margin-bottom:3.75rem}.h-margin-top-60{margin-top:3.75rem}.h-margin-bottom-70{margin-bottom:4.375rem}.h-margin-top-70{margin-top:4.375rem}.h-margin-bottom-80{margin-bottom:5rem}.h-margin-top-80{margin-top:5rem}.h-margin-none{margin:0}.h-margin-childs-none *{margin:0!important}.h-margin-top-cta{margin-top:1.25rem}.h-margin-bottom-pretitle{margin-bottom:1.875rem}@media screen and (min-width:46em){.h-margin-bottom-pretitle{margin-bottom:2.5rem}}@media screen and (min-width:61.25em){.h-margin-bottom-pretitle{margin-bottom:3.125rem}}@media screen and (min-width:90em){.h-margin-bottom-pretitle{margin-bottom:3.75rem}}@media screen and (min-width:100em){.h-margin-bottom-pretitle{margin-bottom:4.375rem}}.h-margin-default{margin-top:3.75rem;margin-bottom:3.75rem}@media screen and (min-width:30em){.h-margin-default{margin-top:5.625rem}}@media screen and (min-width:90em){.h-margin-default{margin-top:9.375rem}}@media screen and (min-width:30em){.h-margin-default{margin-bottom:5.625rem}}@media screen and (min-width:90em){.h-margin-default{margin-bottom:9.375rem}}.h-margin-top-default{margin-top:3.75rem}@media screen and (min-width:30em){.h-margin-top-default{margin-top:5.625rem}}@media screen and (min-width:90em){.h-margin-top-default{margin-top:9.375rem}}.h-margin-bottom-default{margin-bottom:3.75rem}@media screen and (min-width:30em){.h-margin-bottom-default{margin-bottom:5.625rem}}@media screen and (min-width:90em){.h-margin-bottom-default{margin-bottom:9.375rem}}.h-margin-small{margin-top:2.5rem;margin-bottom:2.5rem}@media screen and (min-width:30em){.h-margin-small{margin-top:3.4375rem}}@media screen and (min-width:90em){.h-margin-small{margin-top:5rem}}@media screen and (min-width:30em){.h-margin-small{margin-bottom:3.4375rem}}@media screen and (min-width:90em){.h-margin-small{margin-bottom:5rem}}.h-margin-top-small{margin-top:2.5rem}@media screen and (min-width:30em){.h-margin-top-small{margin-top:3.4375rem}}@media screen and (min-width:90em){.h-margin-top-small{margin-top:5rem}}.h-margin-bottom-small{margin-bottom:2.5rem}@media screen and (min-width:30em){.h-margin-bottom-small{margin-bottom:3.4375rem}}@media screen and (min-width:90em){.h-margin-bottom-small{margin-bottom:5rem}}.h-padding-default{padding-top:1.875rem;padding-bottom:1.875rem}@media screen and (min-width:30em){.h-padding-default{padding-top:2.8125rem}}@media screen and (min-width:90em){.h-padding-default{padding-top:4.6875rem}}@media screen and (min-width:30em){.h-padding-default{padding-bottom:2.8125rem}}@media screen and (min-width:90em){.h-padding-default{padding-bottom:4.6875rem}}.h-padding-top-default{padding-top:1.875rem}@media screen and (min-width:30em){.h-padding-top-default{padding-top:2.8125rem}}@media screen and (min-width:90em){.h-padding-top-default{padding-top:4.6875rem}}.h-padding-bottom-default{padding-bottom:1.875rem}@media screen and (min-width:30em){.h-padding-bottom-default{padding-bottom:2.8125rem}}@media screen and (min-width:90em){.h-padding-bottom-default{padding-bottom:4.6875rem}}.h-padding-default-x2{padding-top:3.75rem;padding-bottom:3.75rem}@media screen and (min-width:30em){.h-padding-default-x2{padding-top:5.625rem}}@media screen and (min-width:90em){.h-padding-default-x2{padding-top:9.375rem}}@media screen and (min-width:30em){.h-padding-default-x2{padding-bottom:5.625rem}}@media screen and (min-width:90em){.h-padding-default-x2{padding-bottom:9.375rem}}.h-padding-top-default-x2{padding-top:3.75rem}@media screen and (min-width:30em){.h-padding-top-default-x2{padding-top:5.625rem}}@media screen and (min-width:90em){.h-padding-top-default-x2{padding-top:9.375rem}}.h-padding-bottom-default-x2{padding-bottom:3.75rem}@media screen and (min-width:30em){.h-padding-bottom-default-x2{padding-bottom:5.625rem}}@media screen and (min-width:90em){.h-padding-bottom-default-x2{padding-bottom:9.375rem}}.h-text-transform-lowercase{text-transform:lowercase}.h-text-transform-uppercase{text-transform:uppercase}.h-text-transform-none{text-transform:none}.h-text-weight-bold{font-weight:700}.h-text-weight-semibold{font-weight:600}.h-text-align-left{text-align:left}.h-text-align-center{text-align:center}.h-text-align-right{text-align:right}.h-text-size-small{font-size:.875rem}.h-text-size-medium{font-size:1.25rem}.h-text-pretitle{font-family:neuzeit-grotesk,Helvetica,Arial,sans-serif;text-transform:uppercase;letter-spacing:1.5px;font-size:.875rem;font-weight:300}.h-text-lowercase,.h-text-uppercase{text-transform:uppercase}.container{padding-left:1.875rem;padding-right:1.875rem;margin:0 auto;max-width:102.5rem}@media screen and (min-width:71.875em){.container{padding-left:5rem;padding-right:5rem}}.container-row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.container-row__content--size-16{padding-left:15px;padding-right:15px;width:88.8888888889%;margin-left:5.5555555556%}.grid{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px;row-gap:1.875rem}.grid__item{padding-left:15px;padding-right:15px;width:100%}.grid--row-gap-medium{row-gap:2.5rem}@media screen and (min-width:61.25em){.grid--row-gap-medium{row-gap:4.375rem}}.grid--row-gap-large{row-gap:2.5rem}@media screen and (min-width:61.25em){.grid--row-gap-large{row-gap:4.375rem}}@media screen and (min-width:90em){.grid--row-gap-large{row-gap:6.875rem}}.grid--column-gap-default{gap:.625rem}@media screen and (min-width:46em){.grid--items-2>.grid__item{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:46em){.grid--items-3>.grid__item{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:71.875em){.grid--items-3>.grid__item{padding-left:15px;padding-right:15px;width:33.3333333333%}}@media screen and (min-width:30em){.grid--items-4>.grid__item{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:90em){.grid--items-4>.grid__item{padding-left:15px;padding-right:15px;width:25%}}.path-user .block-system-main-block{padding-left:80px;padding-right:80px;max-width:50rem;margin:0 auto}.page-footer__line__element{border-top:1px solid #e6ebee;margin-bottom:1.875rem}@media screen and (min-width:30em){.page-footer__line__element{margin-bottom:3.125rem}}@media screen and (min-width:61.25em){.page-footer__line__element{margin-bottom:3.75rem}}@media screen and (min-width:71.875em){.page-footer__line__element{margin-bottom:4.375rem}}@media screen and (min-width:90em){.page-footer__line__element{margin-bottom:5rem}}.page-footer-cols{margin-bottom:1.875rem}@media screen and (min-width:46em){.page-footer-cols{margin-bottom:2.5rem}}@media screen and (min-width:61.25em){.page-footer-cols{margin-bottom:3.125rem}}@media screen and (min-width:71.875em){.page-footer-cols{margin-bottom:3.75rem}}@media screen and (min-width:90em){.page-footer-cols{margin-bottom:4.375rem}}.page-footer-cols__wrapper{row-gap:1.875rem}@media screen and (min-width:30em){.page-footer-cols__wrapper{row-gap:3.75rem}}@media screen and (min-width:30em){.page-footer-cols__el{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:71.875em){.page-footer-cols__el{padding-left:15px;padding-right:15px;width:25%}}.page-footer-cols__el h2{font-size:1em;margin-bottom:.625rem;font-family:neuzeit-grotesk,Helvetica,Arial,sans-serif;letter-spacing:inherit;font-weight:700}.page-footer-cols__el .menu a{display:inline-flex;align-items:center;column-gap:.5rem}.page-footer-cols__el .menu a:before{font-family:gbl icons,sans-serif!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e901";font-size:.5em}.page-footer-cols__el .c-menu-item-cta{padding:0;background:transparent;color:currentcolor!important}.page-footer-cols__el .c-menu-item-cta:hover,.page-footer-cols__el .c-menu-item-cta:focus{color:#7e92a7!important}.page-footer-cols__el .c-menu-item-cta:after{display:none}.page-footer-cols__brand img{max-width:10.625rem}@media screen and (min-width:30em){.page-footer-cols__brand img{max-width:11.25rem}}.page-footer-bottom{margin-top:1.875rem}@media screen and (min-width:46em){.page-footer-bottom{margin-top:2.5rem}}@media screen and (min-width:61.25em){.page-footer-bottom{margin-top:3.125rem}}@media screen and (min-width:71.875em){.page-footer-bottom{margin-top:3.75rem}}@media screen and (min-width:90em){.page-footer-bottom{margin-top:4.375rem}}.page-footer-bottom__wrapper{row-gap:.3125rem}.page-footer-bottom__content{display:flex;flex-direction:column;column-gap:1.875rem;row-gap:.3125rem}@media screen and (min-width:46em){.page-footer-bottom__content{flex-direction:row;align-items:center}}@media screen and (min-width:61.25em){.page-footer-bottom__content{padding-left:15px;padding-right:15px;width:75%}}@media screen and (min-width:90em){.page-footer-bottom__content{padding-left:15px;padding-right:15px;width:50%;margin-left:25%;column-gap:2.5rem}}.page-footer-bottom__content .menu{display:flex;flex-direction:column;column-gap:1.875rem;row-gap:.3125rem}@media screen and (min-width:30em){.page-footer-bottom__content .menu{flex-direction:row;align-items:center}}@media screen and (min-width:90em){.page-footer-bottom__content .menu{column-gap:2.5rem}}@media screen and (min-width:61.25em){.page-footer-bottom__creator{padding-left:15px;padding-right:15px;width:25%}}.page-header{z-index:10;background:#fff;position:sticky;top:0;left:0}@media screen and (min-width:61.25em){.page-header{position:relative}}.page-header-nav{display:none}@media screen and (min-width:61.25em){.page-header-nav{display:block;border-bottom:1px solid #e6ebee}}.page-header-nav__wrapper{display:flex;align-items:center;justify-content:center}.page-header-nav__wrapper .block-menu>.menu{display:flex;column-gap:1.875rem}@media screen and (min-width:71.875em){.page-header-nav__wrapper .block-menu>.menu{column-gap:3.125rem}}@media screen and (min-width:90em){.page-header-nav__wrapper .block-menu>.menu{column-gap:3.75rem}}.page-header-nav__wrapper .block-menu>.menu>.menu__item>a{display:flex;padding:1rem 0}.page-header-nav__wrapper .block-menu>.menu>.menu__item>a.is-active{position:relative}.page-header-nav__wrapper .block-menu>.menu>.menu__item>a.is-active:before{content:"";display:block;width:100%;height:2px;background:currentcolor;position:absolute;top:100%;bottom:0}.page-header-nav__wrapper .block-menu>.menu>.menu__item.menu__item--expanded{position:relative}.page-header-nav__wrapper .block-menu>.menu>.menu__item.menu__item--expanded:hover>.menu,.page-header-nav__wrapper .block-menu>.menu>.menu__item.menu__item--expanded:focus>.menu{opacity:1;pointer-events:all}.page-header-nav__wrapper .block-menu>.menu>.menu__item.menu__item--expanded>a{align-items:baseline;column-gap:.5rem}.page-header-nav__wrapper .block-menu>.menu>.menu__item.menu__item--expanded>a:after{font-family:gbl icons,sans-serif!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e900";font-size:.4em;position:relative;top:-.15em}.page-header-nav__wrapper .block-menu>.menu>.menu__item.menu__item--expanded>.menu{content-visibility:auto;opacity:0;pointer-events:none;min-width:8.125rem;position:absolute;left:50%;transform:translate(-50%);background:#e6ebee;border-radius:.625rem;overflow:hidden;white-space:nowrap;transition:.1s opacity linear}.page-header-nav__wrapper .block-menu>.menu>.menu__item.menu__item--expanded>.menu>.menu__item:not(:first-child){border-top:1px solid #fff}.page-header-nav__wrapper .block-menu>.menu>.menu__item.menu__item--expanded>.menu>.menu__item:first-child{font-weight:700}.page-header-nav__wrapper .block-menu>.menu>.menu__item.menu__item--expanded>.menu>.menu__item>a{display:block;padding:.75rem 1.5rem}.page-header-nav__wrapper .block-menu>.menu>.menu__item.menu__item--expanded>.menu>.menu__item>a:hover,.page-header-nav__wrapper .block-menu>.menu>.menu__item.menu__item--expanded>.menu>.menu__item>a:focus{color:#183757;background:#d2d9df}.page-header-topbar{display:none}@media screen and (min-width:61.25em){.page-header-topbar{display:block;padding:.75rem 0}}.page-header-topbar__wrapper{display:flex}.page-header-topbar__wrapper .menu{display:flex;column-gap:1.875rem}@media screen and (min-width:71.875em){.page-header-topbar__wrapper .menu{column-gap:2.5rem}}.page-header-topbar__wrapper .menu--secondary-navigation{margin-left:auto}.page-header-topbar__wrapper .c-menu-item-cta:after{top:-.75rem;height:calc(100% + 1.5rem)}.page-header-topbar__wrapper .block-language{margin-left:2.5rem}@media screen and (min-width:71.875em){.page-header-topbar__wrapper .block-language{margin-left:3.75rem}}.page-header-topbar__wrapper .block-language a:not(.is-active):hover,.page-header-topbar__wrapper .block-language a:not(.is-active):focus{color:#e6ebee}.page-header-branding{border-bottom:1px solid #e6ebee}@media screen and (min-width:61.25em){.page-header-branding{padding:1.5rem 0}}.page-header-branding__content{display:flex;align-items:center;height:100px}@media screen and (min-width:61.25em){.page-header-branding__content{display:block;height:auto}}.page-header-branding__content__logo{max-width:10.625rem}@media screen and (min-width:61.25em){.page-header-branding__content__logo{max-width:15.625rem;margin:0 auto}}.page-header-branding__content__mobile{margin-left:auto}@media screen and (min-width:61.25em){.page-header-branding__content__mobile{display:none}}.overlay-open{overflow:hidden}.page-overlay{content-visibility:auto;font-size:1.125rem;background:#fff;position:fixed;z-index:9;bottom:0;left:0;height:calc(100% - 100px);width:100%;user-select:none;pointer-events:none;opacity:0}@media screen and (min-width:61.25em){.page-overlay{display:none!important}}.overlay-open .page-overlay{pointer-events:all;opacity:1;z-index:15}.gin--horizontal-toolbar .page-overlay{height:calc(100% - 101px - var(--gin-toolbar-secondary-height) - var(--gin-toolbar-height))}.page-overlay__content{height:100%;display:flex;flex-direction:column;overflow:auto}.page-overlay__content .block-menu .menu a{display:block;padding:1.375rem 1.875rem}.page-overlay__content .block-menu .menu a.is-active{font-weight:700}.page-overlay__content .block-menu>.menu>.menu__item{border-top:1px solid #e6ebee}.page-overlay__content .block-menu>.menu>.menu__item.menu__item--expanded{position:relative;display:flex;flex-wrap:wrap;justify-content:space-between;column-gap:.625rem}.page-overlay__content .block-menu>.menu>.menu__item.menu__item--expanded.active>.menu{display:block}.page-overlay__content .block-menu>.menu>.menu__item.menu__item--expanded:after{font-family:gbl icons,sans-serif!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e900";font-size:.5em;position:relative;top:0;padding-right:1.875rem;width:2.75rem;display:flex;align-items:center;justify-content:flex-end;cursor:pointer;order:2;aspect-ratio:1/1}.page-overlay__content .block-menu>.menu>.menu__item.menu__item--expanded>a{flex:1;order:1;padding-right:0}.page-overlay__content .block-menu>.menu>.menu__item>.menu{width:100%;order:3;display:none}.page-overlay__content .block-menu>.menu>.menu__item>.menu .menu__item:not(:first-child){border-top:1px solid #fff}.page-overlay__content .block-menu>.menu>.menu__item>.menu .menu__item>a{background:#e6ebee;padding-left:3.125rem}.page-overlay__content .block-language{border-top:1px solid #e6ebee;padding:1.25rem 1.875rem;margin-top:auto}.page-overlay__content .block-language .links{column-gap:1.5rem}*{box-sizing:border-box}.site-wrapper{width:100%}.c-actions{display:flex;flex-wrap:wrap;overflow:hidden;align-items:center;column-gap:1.875rem;row-gap:.625rem}.c-actions__item{flex-grow:0;flex-shrink:0}.h-text-align-center .c-actions{justify-content:center}.c-hamburger{width:1.875rem;height:1.25rem;position:relative;cursor:pointer}.c-hamburger__line{position:absolute;height:2px;width:100%;background:#fff;opacity:1;left:0;transition:.25s ease-in-out;border-radius:.375rem}.c-hamburger__line:first-child{top:0}.c-hamburger__line:last-child{bottom:0}.overlay-open .c-hamburger__line:first-child,.overlay-open .c-hamburger__line:last-child{opacity:0}.c-hamburger__line:not(:first-child,:last-child){top:50%;transform:translateY(-50%)}.overlay-open .c-hamburger__line:nth-child(2){transform:translateY(-50%) rotate(45deg)}.overlay-open .c-hamburger__line:nth-child(3){transform:translateY(-50%) rotate(-45deg)}.c-messages{padding:.75rem 1.25rem;margin:1.25rem 0;border:1px solid transparent;border-radius:.1875rem}.c-messages--info{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.c-messages--warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.c-messages--error{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.c-messages--status{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.c-pager{text-align:center;text-transform:uppercase}.c-pager ul{margin:0;padding:0}.c-pager ul li{display:inline-block}.c-menu-item-cta{display:block;position:relative;z-index:1;padding:0 .875rem;color:#fff!important}.c-menu-item-cta:hover,.c-menu-item-cta:focus{color:#fff!important}.c-menu-item-cta:hover:after,.c-menu-item-cta:focus:after{background:#098ac6}.c-menu-item-cta:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;background:#009ee2;transition:.15s background-color linear}.c-menu-item-cta.h-bg-color-nonary:hover:after,.c-menu-item-cta.h-bg-color-nonary:focus:after{background:#4f7e04}.c-menu-item-cta.h-bg-color-nonary:after{background:#5a9300}.c-menu-item-cta.h-bg-color-senary:hover:after,.c-menu-item-cta.h-bg-color-senary:focus:after{background:#d34747}.c-menu-item-cta.h-bg-color-senary:after{background:#e25151}.c-pretitle-w-circle{position:relative;display:inline-flex;align-items:flex-start;column-gap:1rem;row-gap:.9375rem;font-family:din-2014,Helvetica,Arial,sans-serif;font-size:1rem;color:#183757;margin-bottom:0;line-height:inherit;letter-spacing:.08rem;font-weight:inherit}.c-pretitle-w-circle:before{content:"";display:block;width:1rem;aspect-ratio:1/1;border-radius:100%;background:#e6ebee;position:relative;line-height:0}.c-pretitle-w-circle--direction-vertical{align-items:center;flex-direction:column}.c-pretitle-w-circle--direction-horizontal:before{position:relative;top:.25em}.c-pretitle-w-circle--color-light{color:#fff}.c-pretitle-w-circle--circle-color-light:before{background:#fff}.c-card{overflow:hidden;display:block;box-shadow:0 0 2px #e6ebee}.c-card:hover,.c-card:focus{color:currentcolor}.c-card--type-product .c-card__image img{object-fit:contain;height:74%}.c-card__image{aspect-ratio:472/300;position:relative}.c-card__image .contextual-region{position:initial}.c-card__image img{position:absolute;top:50%;left:50%;width:100%;height:100%;transform:translate(-50%,-50%);object-fit:cover}.c-card__content{padding:1.875rem 1.875rem 2.5rem}@media screen and (min-width:90em){.c-card__content{padding:2.5rem 2.5rem 3.125rem}}.c-card__labels{display:flex;gap:.625rem}.c-card__promolabel{position:absolute;inset:1.875rem auto auto 1.875rem}.c-card__title.grid__item{padding-left:15px;padding-right:15px;width:66.6666666667%}@media screen and (min-width:61.25em){.c-card__title.grid__item{padding-left:15px;padding-right:15px;width:77.7777777778%}}.c-card__users.grid__item{padding-left:15px;padding-right:15px;width:33.3333333333%}@media screen and (min-width:61.25em){.c-card__users.grid__item{padding-left:15px;padding-right:15px;width:22.2222222222%}}.c-card__users ul{justify-content:flex-end}.c-card__users ul li img{height:auto;width:.75rem}.c-tag{display:inline-block;overflow:hidden;border-radius:.3125rem;padding:.125rem .875rem;padding-bottom:1px}@media screen and (min-width:71.875em){.c-layout-title-content--layout-default .c-layout-title-content__title{padding-left:15px;padding-right:15px;width:55.5555555556%}}@media screen and (min-width:90em){.c-layout-title-content--layout-default .c-layout-title-content__title{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:71.875em){.c-layout-title-content--layout-default .c-layout-title-content__content{padding-left:15px;padding-right:15px;width:44.4444444444%}}@media screen and (min-width:90em){.c-layout-title-content--layout-default .c-layout-title-content__content{padding-left:15px;padding-right:15px;width:38.8888888889%;margin-left:5.5555555556%}}@media screen and (min-width:61.25em){.c-layout-title-content--layout-full .c-layout-title-content__title{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:61.25em){.c-layout-title-content--layout-full .c-layout-title-content__content{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:90em){.c-layout-title-content--layout-full .c-layout-title-content__content{padding-left:15px;padding-right:15px;width:44.4444444444%;margin-left:5.5555555556%}}@media screen and (min-width:61.25em){.c-layout-title-content--layout-mobile .c-layout-title-content__title{padding-left:15px;padding-right:15px;width:55.5555555556%}}@media screen and (min-width:90em){.c-layout-title-content--layout-mobile .c-layout-title-content__title{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:61.25em){.c-layout-title-content--layout-mobile .c-layout-title-content__content{padding-left:15px;padding-right:15px;width:44.4444444444%}}@media screen and (min-width:90em){.c-layout-title-content--layout-mobile .c-layout-title-content__content{padding-left:15px;padding-right:15px;width:38.8888888889%;margin-left:5.5555555556%}}.c-layout-title-content__wrapper{row-gap:0}.c-layout-title-content__wrapper--margin-medium{row-gap:3.125rem}.c-card-large__element.c-card-large__element.c-card-large__element{display:block}.c-card-large__element.c-card-large__element.c-card-large__element:hover,.c-card-large__element.c-card-large__element.c-card-large__element:focus{color:currentcolor}.c-card-large__media{overflow:hidden;aspect-ratio:730/340;position:relative}.c-card-large__media .contextual-region{position:initial}.c-card-large__media img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}.c-icon-text{display:flex;align-items:center;column-gap:1.25rem}@media screen and (min-width:61.25em){.c-icon-text{column-gap:1.875rem}}.c-icon-text__icon{aspect-ratio:1/1;width:3.5rem;position:relative;flex-shrink:0;flex-grow:0}@media screen and (min-width:61.25em){.c-icon-text__icon{width:3.75rem}}.c-icon-text__icon .contextual-region{position:initial}.c-icon-text__icon img{position:absolute;top:50%;left:50%;width:60%;height:60%;transform:translate(-50%,-50%);object-fit:contain}.c-product-detail__header{margin-bottom:2.5rem}@media screen and (min-width:46em){.c-product-detail__header{margin-bottom:4.375rem}}.c-product-detail__header__wrapper{display:flex;flex-direction:column-reverse;column-gap:2.5rem;row-gap:1.25rem}@media screen and (min-width:46em){.c-product-detail__header__wrapper{flex-direction:row;align-items:flex-end;justify-content:space-between}}.c-product-detail__media{position:relative}@media screen and (min-width:61.25em){.c-product-detail__media{padding-left:15px;padding-right:15px;width:44.4444444444%}}@media screen and (min-width:71.875em){.c-product-detail__media{padding-left:15px;padding-right:15px;width:50%}}.c-product-detail__media__outer{position:relative;aspect-ratio:16/9}@media screen and (min-width:61.25em){.c-product-detail__media__outer{aspect-ratio:16/11}}@media screen and (min-width:71.875em){.c-product-detail__media__outer{aspect-ratio:16/10}}.c-product-detail__media__outer .contextual-region{position:initial}.c-product-detail__media__outer img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain;object-position:center}.c-product-detail__labels{display:flex;gap:.625rem}.c-product-detail__promolabel{position:absolute;inset:.9375rem auto auto .9375rem}@media screen and (min-width:61.25em){.c-product-detail__content{padding-left:15px;padding-right:15px;width:55.5555555556%}}@media screen and (min-width:71.875em){.c-product-detail__content{padding-left:15px;padding-right:15px;width:44.4444444444%;margin-left:5.5555555556%}}.c-product-detail__price-wrapper{display:inline-block}@media screen and (min-width:46em){.c-product-detail__price-wrapper{text-align:right}}.c-product-detail__usp-list{border:1px solid #e6ebee;padding:.9375rem 1.25rem}.c-product-detail__usp-list ul li{padding-left:1.5625rem;position:relative}.c-product-detail__usp-list ul li:before{font-family:gbl icons,sans-serif!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#5a9300;content:"\e900";font-size:.625rem;inset:.5625rem auto auto 0;position:absolute}.c-downloads-list{display:flex;flex-direction:column;row-gap:.3125rem}.c-water-hardness-tool__content__wrapper{justify-content:center}.c-water-hardness-tool__content__inner{padding-left:15px;padding-right:15px;width:88.8888888889%}.c-water-hardness-tool__options{margin-top:3.125rem;display:grid;gap:1rem}@media screen and (min-width:30em){.c-water-hardness-tool__options{grid-template-columns:repeat(2,1fr)}}@media screen and (min-width:61.25em){.c-water-hardness-tool__options{grid-template-columns:repeat(3,1fr)}}@media screen and (min-width:90em){.c-water-hardness-tool__options{grid-template-columns:repeat(6,1fr)}}.c-water-hardness-tool__options__item{opacity:.5;text-align:center;padding:1.25rem}.c-water-hardness-tool__options__item.active{opacity:1;position:relative}.c-water-hardness-tool__options__item.active:after{content:"";display:block;position:absolute;top:50%;left:50%;width:calc(100% + 10px);height:calc(100% + 10px);border-radius:.625rem;border:4px solid #2b2b2b;transform:translate(-50%,-50%);pointer-events:none}.c-water-hardness-tool__info{margin-top:3.125rem;justify-content:space-between;row-gap:2.5rem}@media screen and (min-width:61.25em){.c-water-hardness-tool__info{margin-top:4.375rem}}@media screen and (min-width:46em){.c-water-hardness-tool__info__item{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:90em){.c-water-hardness-tool__info__item{padding-left:15px;padding-right:15px;width:38.8888888889%}}.c-water-hardness-tool__webform{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px;padding:1.875rem}@media screen and (min-width:61.25em){.c-water-hardness-tool__webform .grid__item{padding-left:15px;padding-right:15px;width:50%}}.c-water-hardness-tool__webform form{margin:0 auto;max-width:37.5rem}.c-water-hardness-tool__webform form .webform-flexbox{margin-bottom:0}.c-water-hardness-tool__webform form .form-type-processed-text{margin-bottom:1.25rem}.c-water-hardness-tool__webform form .webform-address--wrapper{margin-bottom:0}.c-water-hardness-tool__webform form .captcha{margin-bottom:1.875rem}.c-media-wrapper{display:block;position:relative}.c-media-wrapper__overlay{width:100%;height:100%;position:absolute;top:0;left:0;z-index:1;display:flex;align-items:center;justify-content:center;cursor:pointer}.c-media-wrapper__overlay:hover:before{opacity:1}.c-media-wrapper__overlay:hover:after{opacity:.2}.c-media-wrapper__overlay:hover .c-media-wrapper__overlay__circle{background:#183757}.c-media-wrapper__overlay:hover .c-media-wrapper__overlay__circle:after{border-left-color:#fff}.c-media-wrapper__overlay:before,.c-media-wrapper__overlay:after{content:"";width:100%;height:100%;position:absolute;top:0;left:0;opacity:0;transition:.2s opacity ease-out}.c-media-wrapper__overlay:not(.c-media-wrapper__overlay--type-video):before{background-image:url(/themes/gbltheme/img/icons/search-light.svg);background-position:right 1.25rem bottom 1.25rem;background-size:.9375rem auto;background-repeat:no-repeat;z-index:1}.c-media-wrapper__overlay:after{background-color:#2b2b2b}.c-media-wrapper__overlay__circle{border-radius:100%;aspect-ratio:1/1;background:#fff;max-width:4.375rem;width:50%;display:flex;align-items:center;justify-content:center;position:relative;z-index:2;transition:.2s all ease-out}.c-media-wrapper__overlay__circle:before{content:"";display:block;position:absolute;aspect-ratio:1/1;width:64%;border-radius:100%;border:1px solid #183757}.c-media-wrapper__overlay__circle:after{content:"";width:0;height:0;border-top:.5rem solid transparent;border-bottom:.5rem solid transparent;border-left:.875rem solid #183757;position:absolute;top:50%;left:50%;transform:translate(-40%,-50%);transition:.2s all ease-out}.c-responsive-video{width:100%;aspect-ratio:16/9;position:relative}.c-responsive-video video,.c-responsive-video iframe{position:absolute;top:0;left:0;width:100%;height:100%}.c-intro{width:100%;overflow:hidden}.c-intro__wrapper{row-gap:2.5rem}.c-intro__content{position:relative;z-index:2}@media screen and (min-width:46em){.c-intro__content{padding-left:15px;padding-right:15px;width:44.4444444444%;padding-top:1.875rem;align-self:center}}@media screen and (min-width:46em){.c-intro__image{padding-left:15px;padding-right:15px;width:50%;margin-left:5.5555555556%}}.c-intro__image__outer{width:100%;position:relative;height:22.5rem}@media screen and (min-width:46em){.c-intro__image__outer{height:25rem}}@media screen and (min-width:61.25em){.c-intro__image__outer{height:40rem}}.c-intro__image__outer .contextual-region{position:initial}.c-intro__image__inner{position:absolute;top:0;left:0;width:calc(100% + 1.875rem);height:100%}@media screen and (min-width:71.875em){.c-intro__image__inner{width:calc(100% + 5rem)}}@media screen and (min-width:1640px){.c-intro__image__inner{width:calc(100% + 540px)}}.c-intro__image__inner img:not(.shape){position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}.c-intro__image__shape{position:absolute;top:-1px;left:-.5px;width:100%;height:calc(100% + 2px);z-index:1}.c-intro__image__shape img{width:auto;height:100%;display:block}.menu--social-menu ul.menu{display:flex;column-gap:1.25rem;align-items:center}.menu--social-menu ul.menu a{color:#fff;display:block;height:1rem;width:1rem;text-align:center;font-size:0}.menu--social-menu ul.menu a:before{font-size:1rem;position:relative}.menu--social-menu ul.menu a:focus,.menu--social-menu ul.menu a:hover{background:#009ee2}.paragraph{position:relative;scroll-margin-top:100px}@media screen and (min-width:61.25em){.paragraph{scroll-margin-top:0}}.paragraph--padding{padding-top:1.875rem;padding-bottom:1.875rem}@media screen and (min-width:30em){.paragraph--padding{padding-top:2.8125rem}}@media screen and (min-width:90em){.paragraph--padding{padding-top:4.6875rem}}@media screen and (min-width:30em){.paragraph--padding{padding-bottom:2.8125rem}}@media screen and (min-width:90em){.paragraph--padding{padding-bottom:4.6875rem}}.pg-banner{min-height:60vh;overflow:hidden;position:relative;display:flex;align-items:center;padding:3.125rem 0}@media screen and (min-width:61.25em){.pg-banner{padding:6.25rem 0;min-height:37.5rem;max-height:80vh}}@media screen and (min-width:100em){.pg-banner{min-height:43.75rem}}.pg-banner:before{content:"";position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background:linear-gradient(transparent,#0009)}.pg-banner__media{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none}.pg-banner__media .contextual-region,.pg-banner__media .c-responsive-video{position:inherit}.pg-banner__media img,.pg-banner__media video{display:block;width:100%;height:100%;position:absolute;top:0;left:0;object-fit:cover}.pg-banner__content{position:relative;z-index:2;width:100%}.pg-banner__content__wrapper{display:flex;justify-content:center}.pg-banner__content__inner{padding-left:15px;padding-right:15px;width:88.8888888889%}@media screen and (min-width:61.25em){.pg-banner__content__inner{padding-left:15px;padding-right:15px;width:66.6666666667%}}@media screen and (min-width:90em){.pg-banner__content__inner{padding-left:15px;padding-right:15px;width:55.5555555556%}}.pg-banner+.h-layout-has-bg.h-layout-border-radius-large-top,.pg-banner+.h-layout-has-bg.h-layout-border-radius-large{margin-top:-10px;position:relative;z-index:1}@media screen and (min-width:61.25em){.pg-banner+.h-layout-has-bg.h-layout-border-radius-large-top,.pg-banner+.h-layout-has-bg.h-layout-border-radius-large{margin-top:-50px}}.pg-form--has-bg .pg-form__wrapper{justify-content:center}.pg-form--has-bg .pg-form__content{padding-left:15px;padding-right:15px;width:88.8888888889%}@media screen and (min-width:46em){.pg-form--has-bg .pg-form__content{padding-left:15px;padding-right:15px;width:77.7777777778%}}@media screen and (min-width:61.25em){.pg-form--has-bg .pg-form__content{padding-left:15px;padding-right:15px;width:61.1111111111%}}@media screen and (min-width:90em){.pg-form--has-bg .pg-form__content{padding-left:15px;padding-right:15px;width:44.4444444444%}}.pg-form--has-bg .pg-form__content .field--name-field-text+.field--name-field-form{margin-top:3em}.c-form-columns__content__wrapper{justify-content:center}.c-form-columns__content__inner{padding-left:15px;padding-right:15px;width:88.8888888889%}.c-form-columns__options{margin-top:3.125rem;display:grid;gap:1rem}@media screen and (min-width:30em){.c-form-columns__options{grid-template-columns:repeat(2,1fr)}}@media screen and (min-width:61.25em){.c-form-columns__options{grid-template-columns:repeat(3,1fr)}}@media screen and (min-width:90em){.c-form-columns__options{grid-template-columns:repeat(6,1fr)}}.c-form-columns__options__item{opacity:.5;text-align:center;padding:1.25rem}.c-form-columns__options__item.active{opacity:1;position:relative}.c-form-columns__options__item.active:after{content:"";display:block;position:absolute;top:50%;left:50%;width:calc(100% + 10px);height:calc(100% + 10px);border-radius:.625rem;border:4px solid #2b2b2b;transform:translate(-50%,-50%);pointer-events:none}.c-form-columns__info{margin-top:3.125rem;justify-content:space-between;row-gap:2.5rem}@media screen and (min-width:61.25em){.c-form-columns__info{margin-top:4.375rem}}@media screen and (min-width:46em){.c-form-columns__info__item{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:90em){.c-form-columns__info__item{padding-left:15px;padding-right:15px;width:38.8888888889%}}.c-form-columns__webform{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px;padding:1.875rem}@media screen and (min-width:61.25em){.c-form-columns__webform .grid__item{padding-left:15px;padding-right:15px;width:50%}}.c-form-columns__webform .c-form-columns__column__title{margin:auto;max-width:37.5rem}.c-form-columns__webform form{margin:0 auto;max-width:37.5rem}.c-form-columns__webform form .form-type-processed-text{margin-bottom:1.25rem}.c-form-columns__webform form .webform-address--wrapper{margin-bottom:0}.c-form-columns__webform form .captcha{margin-bottom:1.875rem}@media screen and (min-width:46em){.pg-text-media--position-right .pg-text-media__wrapper{flex-direction:row-reverse}}.pg-text-media__wrapper{justify-content:space-between;align-items:center}@media screen and (min-width:46em){.pg-text-media__media,.pg-text-media__content{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:71.875em){.pg-text-media__media,.pg-text-media__content{padding-left:15px;padding-right:15px;width:44.4444444444%}}.pg-usp-bar__items--layout-basic{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}@media screen and (min-width:90em){.pg-usp-bar__items--layout-basic{display:flex;flex-wrap:wrap;margin-left:-35px;margin-right:-35px}}.pg-usp-bar__items--layout-basic .pg-usp-bar__item{display:flex;align-items:flex-start;column-gap:1.25rem}@media screen and (min-width:46em){.pg-usp-bar__items--layout-basic .pg-usp-bar__item{padding-left:15px;padding-right:15px;width:50%;column-gap:1.875rem}}@media screen and (min-width:71.875em){.pg-usp-bar__items--layout-basic .pg-usp-bar__item{padding-left:15px;padding-right:15px;width:33.3333333333%}}@media screen and (min-width:90em){.pg-usp-bar__items--layout-basic .pg-usp-bar__item{padding-left:35px;padding-right:35px;width:33.3333333333%}}.pg-usp-bar__items--layout-basic .pg-usp-bar__item:before{font-family:gbl icons,sans-serif!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\e904";width:3.125rem;aspect-ratio:1/1;border-radius:10px;background:#e6ebee;flex-shrink:0;color:#183757;display:flex;align-items:center;justify-content:center;line-height:0;font-size:.9em}@media screen and (min-width:46em){.pg-usp-bar__items--layout-basic .pg-usp-bar__item:before{width:3.75rem}}.pg-usp-bar__items--layout-default{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}@media screen and (min-width:90em){.pg-usp-bar__items--layout-default{display:flex;flex-wrap:wrap;margin-left:-45px;margin-right:-45px}}.pg-usp-bar__items--layout-default .pg-usp-bar__item{display:flex;column-gap:1.875rem}@media screen and (min-width:46em){.pg-usp-bar__items--layout-default .pg-usp-bar__item{padding-left:15px;padding-right:15px;width:50%;column-gap:2.5rem}}@media screen and (min-width:71.875em){.pg-usp-bar__items--layout-default .pg-usp-bar__item{padding-left:15px;padding-right:15px;width:33.3333333333%;column-gap:3.125rem}}@media screen and (min-width:90em){.pg-usp-bar__items--layout-default .pg-usp-bar__item{padding-left:45px;padding-right:45px;width:33.3333333333%;column-gap:4.375rem}}.pg-usp-bar__item__nr{margin-bottom:0;color:#009ee2;display:flex;flex-direction:column;align-items:center;row-gap:.75rem}.pg-usp-bar__item__nr:after{content:"";display:block;width:1px;flex:1;background:#009ee2}@media screen and (min-width:61.25em){.pg-cta--layout-w-bg-color .pg-cta__pretitle{padding-left:15px;padding-right:15px;width:37.5%}}@media screen and (min-width:71.875em){.pg-cta--layout-w-bg-color .pg-cta__pretitle{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:61.25em){.pg-cta--layout-w-bg-color .pg-cta__content{padding-left:15px;padding-right:15px;width:62.5%}}@media screen and (min-width:71.875em){.pg-cta--layout-w-bg-color .pg-cta__content{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:61.25em){.pg-cta--layout-default .pg-cta__pretitle{padding-left:15px;padding-right:15px;width:44.4444444444%}}@media screen and (min-width:90em){.pg-cta--layout-default .pg-cta__pretitle{padding-left:15px;padding-right:15px;width:55.5555555556%}}@media screen and (min-width:61.25em){.pg-cta--layout-default .pg-cta__content{padding-left:15px;padding-right:15px;width:55.5555555556%}}@media screen and (min-width:90em){.pg-cta--layout-default .pg-cta__content{padding-left:15px;padding-right:15px;width:44.4444444444%}}.pg-cta__wrapper{row-gap:1.25rem}.pg-text--layout-center .pg-text__wrapper{justify-content:center}.pg-text--layout-center .pg-text__content{padding-left:15px;padding-right:15px;width:88.8888888889%}@media screen and (min-width:61.25em){.pg-text--layout-center .pg-text__content{padding-left:15px;padding-right:15px;width:66.6666666667%}}.pg-usp-rows__wrapper{row-gap:5rem;flex-direction:column-reverse}@media screen and (min-width:61.25em){.pg-usp-rows__wrapper{flex-direction:row}}.pg-usp-rows__media{position:relative}@media screen and (min-width:61.25em){.pg-usp-rows__media{padding-left:15px;padding-right:15px;width:44.4444444444%}}.pg-usp-rows__media__outer{max-width:25.625rem;margin:0 auto;position:relative}@media screen and (min-width:61.25em){.pg-usp-rows__media__outer{max-width:100%;margin:0;position:sticky;top:0;left:0}}.pg-usp-rows__media__content{overflow:hidden;aspect-ratio:640/750;position:relative}.pg-usp-rows__media__content .contextual-region{position:initial}.pg-usp-rows__media__content img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}.pg-usp-rows__media__over{position:absolute;left:15px;bottom:0;max-width:56%;transform:translate(-1.25rem,1.25rem)}@media screen and (min-width:71.875em){.pg-usp-rows__media__over{transform:translate(-2.5rem,2.5rem)}}@media screen and (min-width:61.25em){.pg-usp-rows__content{padding-left:15px;padding-right:15px;width:50%;margin-left:5.5555555556%}}@media screen and (min-width:71.875em){.pg-usp-rows__content{padding-left:15px;padding-right:15px;width:44.4444444444%;margin-left:11.1111111111%}}.pg-usp-rows__items{display:flex;flex-direction:column;row-gap:2.5rem}@media screen and (min-width:61.25em){.pg-usp-rows__items{row-gap:5rem}}@media screen and (min-width:90em){.pg-usp-rows__items{row-gap:6.25rem}}.pg-usp-rows-item__icon{margin-bottom:1.25rem;width:5.625rem;aspect-ratio:1/1;position:relative;box-shadow:0 0 2px #e6ebee}@media screen and (min-width:61.25em){.pg-usp-rows-item__icon{width:6.25rem}}@media screen and (min-width:71.875em){.pg-usp-rows-item__icon{margin-bottom:2.5rem;width:7.5rem}}@media screen and (min-width:90em){.pg-usp-rows-item__icon{width:8.75rem}}.pg-usp-rows-item__icon .contextual-region{position:initial}.pg-usp-rows-item__icon img{position:absolute;top:50%;left:50%;width:64%;height:64%;transform:translate(-50%,-50%);object-fit:contain}.pg-water-hardness-select__outer{overflow:hidden}@media screen and (min-width:46em){.pg-water-hardness-select__wrapper{display:flex}}@media screen and (min-width:46em){.pg-water-hardness-select__media{flex:1}}.pg-water-hardness-select__media__inner{position:relative;aspect-ratio:350/200}@media screen and (min-width:46em){.pg-water-hardness-select__media__inner{height:100%;aspect-ratio:initial}}.pg-water-hardness-select__media__inner .contextual-region{position:initial}.pg-water-hardness-select__media__inner img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}.pg-water-hardness-select__content{padding-top:2.5rem;padding-bottom:2.5rem}@media screen and (min-width:46em){.pg-water-hardness-select__content{padding-top:5rem;padding-bottom:5rem;flex:1}}@media screen and (min-width:71.875em){.pg-water-hardness-select__content{padding-top:5.625rem;padding-bottom:5.625rem}}@media screen and (min-width:90em){.pg-water-hardness-select__content{padding-top:6.875rem;padding-bottom:6.875rem}}.pg-water-hardness-select__content__inner{padding:0 1.25rem}@media screen and (min-width:30em){.pg-water-hardness-select__content__inner{padding:0 1.875rem}}@media screen and (min-width:61.25em){.pg-water-hardness-select__content__inner{padding:0 2.5rem}}@media screen and (min-width:71.875em){.pg-water-hardness-select__content__inner{padding:0 4.375rem}}@media screen and (min-width:90em){.pg-water-hardness-select__content__inner{padding:0 6.25rem}}.pg-usp-columns:last-child{padding-bottom:0!important}.pg-usp-columns__items{display:flex;flex-direction:column;row-gap:1.25rem}@media screen and (min-width:61.25em){.pg-usp-columns__items{row-gap:1.875rem}}.pg-usp-columns__image{position:relative;top:-2px}.pg-usp-columns__image:before,.pg-usp-columns__image:after{content:"";display:block;width:100%;position:absolute;left:0}.pg-usp-columns__image:before{height:70%;background:#183757;top:0;border-bottom-left-radius:10px;border-bottom-right-radius:10px}@media screen and (min-width:61.25em){.pg-usp-columns__image:before{border-bottom-left-radius:50px;border-bottom-right-radius:50px}}.pg-usp-columns__image:after{background:#fff;bottom:0;height:1.875rem;transform:translateY(100%)}@media screen and (min-width:30em){.pg-usp-columns__image:after{height:2.8125rem}}@media screen and (min-width:90em){.pg-usp-columns__image:after{height:4.6875rem}}.pg-usp-columns__image__element{overflow:hidden;aspect-ratio:1480/600;position:relative;z-index:1}.pg-usp-columns__image__element .contextual-region{position:initial}.pg-usp-columns__image__element img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}.pg-solutions-children__message{display:flex;flex-direction:column;column-gap:2.5rem;row-gap:1.25rem;padding:1.875rem}@media screen and (min-width:61.25em){.pg-solutions-children__message{flex-direction:row;align-items:flex-end}}@media screen and (min-width:90em){.pg-solutions-children__message{padding:2.5rem}}.pg-solutions-children__message h2,.pg-solutions-children__message h3,.pg-solutions-children__message h4{font-weight:700}.pg-solutions-children__message h2 a,.pg-solutions-children__message h3 a,.pg-solutions-children__message h4 a{text-decoration:none!important;color:#009ee2}.pg-solutions-children__link{flex-shrink:0}.pg-ff-item__number{border-radius:.625rem;padding:1.25rem}@media screen and (min-width:46em){.pg-ff-item__number{padding:2.5rem}}.pg-facts-figures__items{justify-content:space-between}@media screen and (min-width:30em){.pg-facts-figures__item{padding-left:15px;padding-right:15px;width:50%}}@media screen and (min-width:71.875em){.pg-facts-figures__item{padding-left:15px;padding-right:15px;width:22.2222222222%}}.pg-solutions-parents__content{margin-top:2.5rem}@media screen and (min-width:46em){.pg-solutions-parents__content{margin-top:3.75rem}}.pg-partners__media{padding:1.25rem;display:inline-block}.pg-partners__media img{width:auto;height:5rem}@media screen and (min-width:61.25em){.pg-partners__media img{height:6.25rem}}.pg-technical-data-item{border-top:2px solid #fff;border-bottom:2px solid #fff;margin-top:-2px;padding:.9375rem 0;display:flex;flex-flow:column wrap;column-gap:1.25rem}@media screen and (min-width:30em){.pg-technical-data-item{padding:1.25rem 0;flex-flow:row nowrap}}.pg-technical-data-item__property{flex:1;flex-shrink:0}@media screen and (min-width:46em){.pg-technical-data-item__property{flex:2}}.pg-technical-data-item__value{flex:1}@media screen and (min-width:46em){.pg-technical-data-item__value{flex:3}}.pg-title+.h-layout-no-bg{padding-top:0}.pg-timeline__wrapper{justify-content:space-between}.pg-timeline__year{display:none}@media screen and (min-width:61.25em){.pg-timeline__year{padding-left:15px;padding-right:15px;width:44.4444444444%;display:block}}@media screen and (min-width:61.25em){.pg-timeline__year__inner{position:sticky;top:3.125rem;left:0}}@media screen and (min-width:61.25em){.pg-timeline__content{padding-left:15px;padding-right:15px;width:50%}}.pg-timeline__decades{margin-top:-.45em;padding-left:1em}.pg-timeline__digits{font-family:din-2014,Helvetica,Arial,sans-serif;font-weight:300;color:#009ee2;line-height:1;display:flex;height:1em;overflow:hidden;transition:1s opacity linear}@media screen and (min-width:61.25em){.pg-timeline__digits{font-size:10rem}}@media screen and (min-width:71.875em){.pg-timeline__digits{font-size:12.5rem}}@media screen and (min-width:90em){.pg-timeline__digits{font-size:15.625rem}}.pg-timeline__digit{opacity:0}.pg-timeline__digit.loaded{opacity:1}.pg-timeline-item{position:relative;padding-left:4.375rem;padding-bottom:5rem}@media screen and (min-width:61.25em){.pg-timeline-item{padding-bottom:6.875rem}}.pg-timeline-item:before,.pg-timeline-item:after{content:"";display:block;position:absolute;top:0;left:0}@media screen and (min-width:61.25em){.pg-timeline-item:before,.pg-timeline-item:after{left:-15px;transform:translate(-50%)}}.pg-timeline-item:before{background:#e6ebee;width:3.125rem;aspect-ratio:1/1;border-radius:100%;z-index:1}@media screen and (min-width:61.25em){.pg-timeline-item:before{width:4.375rem}}@media screen and (min-width:90em){.pg-timeline-item:before{width:5rem}}.pg-timeline-item:after{width:1px;height:100%;background:#009ee2;left:1.5625rem}@media screen and (min-width:61.25em){.pg-timeline-item:after{left:-15px}}@media screen and (min-width:90em){.pg-timeline-item__inner{padding-left:15px;padding-right:15px;width:88.8888888889%;margin-left:11.1111111111%}}.pg-timeline-item__year{font-family:din-2014,Helvetica,Arial,sans-serif;font-size:1.125rem;letter-spacing:.05rem}.block.block-paragraph-block>.contextual{display:none!important}.block-system-breadcrumb-block{height:0;overflow:hidden;margin-bottom:2.5rem}@media screen and (min-width:61.25em){.block-system-breadcrumb-block{height:auto;margin:2.5rem 0;font-size:1rem}}.breadcrumbs-list{display:flex;column-gap:.5rem}.breadcrumbs-list__item{display:inline-flex;column-gap:inherit}.breadcrumbs-list__item:after{content:"\2022"}.breadcrumbs-list__item:last-child:after{display:none}.block-local-tasks-block{position:fixed;right:.625rem;bottom:.625rem;z-index:40;font-size:.8em}.block-local-tasks-block ul:not(.contextual-links){display:flex;column-gap:.625rem}.block-language .links{display:flex;column-gap:.625rem}@media screen and (min-width:71.875em){.block-language .links{column-gap:1.25rem}}.block-language .links a:not(.is-active){color:#7e92a7}
