{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/DxuW9PFMgPy2XzUG5zbS/HY3oM64fH0Dg9rmstfLn/O721z5Hue-0.js", "ssg:https://framerusercontent.com/modules/DxuW9PFMgPy2XzUG5zbS/HY3oM64fH0Dg9rmstfLn/O721z5Hue.js", "ssg:https://framerusercontent.com/modules/BNPHJoZBOlGOdGfipg4a/ub7zYMW73JGd4AvSYHgo/O721z5Hue.js", "ssg:https://framerusercontent.com/modules/xhhVMIbYWf23gJjMpMS3/9yISZT2SThdNo3H1O3ha/augiA20Il.js", "ssg:https://framerusercontent.com/modules/ukbyeH1piFXWuH6F12td/nKLpVNwfHqki6OLjapDg/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(13, 13, 13)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Entdecke unser gesamtes Sortiment\"})});export const v1=({ITYfbp04H})=>/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS12YXJpYWJsZS1yZWd1bGFyVkY9SW5kbmFIUWlJRGN3TUE9PQ==\",\"--framer-font-family\":'\"Sora Variable\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-variation-axes\":'var(--extracted-zfisys, \"wght\" 700)',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(13, 13, 13)))\",\"--framer-text-decoration\":\"underline\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:ITYfbp04H,motionChild:true,nodeId:\"KLEgAnY5G\",openInNewTab:false,scopeId:\"O721z5Hue\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jkhskc\",\"data-styles-preset\":\"SvAOfcWGY\",children:\"Entdecke unser gesamtes Sortiment\"})})})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f76946f)\nimport*as localizedValues from\"./O721z5Hue-0.js\";const valuesByLocaleId={kyhOqUIt_:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f76946f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/2ZKhQUhLGYv5VD66nSu9/1ilHVeinTJTzYFllFQMo/SvAOfcWGY.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/DxuW9PFMgPy2XzUG5zbS/HY3oM64fH0Dg9rmstfLn/O721z5Hue.js\";const RichTextWithFX=withFX(RichText);const enabledGestures={ZbFoiEZ4a:{hover:true}};const serializationHash=\"framer-zEoum\";const variantClassNames={ZbFoiEZ4a:\"framer-v-5vm0lm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:100,delay:.3,mass:1,stiffness:200,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,width,...props})=>{return{...props,ITYfbp04H:link??props.ITYfbp04H};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ITYfbp04H,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ZbFoiEZ4a\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-5vm0lm\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ZbFoiEZ4a\",ref:refBinding,style:{...style},...addPropertyOverrides({\"ZbFoiEZ4a-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(13, 13, 13)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Shop the whole range\"})}),className:\"framer-1olx18f\",\"data-framer-name\":\"Welcome to\",fonts:[\"GF;Sora-700\"],layoutDependency:layoutDependency,layoutId:\"KLEgAnY5G\",style:{\"--extracted-a0htzi\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(13, 13, 13))\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},transformTemplate:transformTemplate1,variants:{\"ZbFoiEZ4a-hover\":{\"--extracted-zfisys\":'\"wght\" 700'}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"ZbFoiEZ4a-hover\":{children:getLocalizedValue(\"v1\",activeLocale)?.({ITYfbp04H})??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U29yYS12YXJpYWJsZS1yZWd1bGFyVkY9SW5kbmFIUWlJRGN3TUE9PQ==\",\"--framer-font-family\":'\"Sora Variable\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-variation-axes\":'var(--extracted-zfisys, \"wght\" 700)',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(13, 13, 13)))\",\"--framer-text-decoration\":\"underline\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:ITYfbp04H,motionChild:true,nodeId:\"KLEgAnY5G\",openInNewTab:false,scopeId:\"O721z5Hue\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jkhskc\",\"data-styles-preset\":\"SvAOfcWGY\",children:\"Shop the whole range\"})})})}),fonts:[\"GF;Sora-variable-regular\"]}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zEoum.framer-1i0r6qg, .framer-zEoum .framer-1i0r6qg { display: block; }\",\".framer-zEoum.framer-5vm0lm { cursor: pointer; height: 42px; overflow: hidden; position: relative; width: 1392px; }\",\".framer-zEoum .framer-1olx18f { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre-wrap; width: 1392px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 1392\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"DIAEsx7xG\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ITYfbp04H\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerO721z5Hue=withCSS(Component,css,\"framer-zEoum\");export default FramerO721z5Hue;FramerO721z5Hue.displayName=\"Range CTR 2\";FramerO721z5Hue.defaultProps={height:42,width:1392};addPropertyControls(FramerO721z5Hue,{ITYfbp04H:{title:\"Link\",type:ControlType.Link}});const variationAxes=[{defaultValue:400,maxValue:800,minValue:100,name:\"Weight\",tag:\"wght\"}];addFonts(FramerO721z5Hue,[{explicitInter:true,fonts:[{family:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v16/xMQOuFFYT72X5wkB_18qmnndmSe1mX-PIwNhBti0.woff2\",weight:\"700\"},{family:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v16/xMQbuFFYT72X_QcjD4e2OX8.woff2\",variationAxes,weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO721z5Hue\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1392\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"42\",\"framerVariables\":\"{\\\"ITYfbp04H\\\":\\\"link\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DIAEsx7xG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (629c622)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={kyhOqUIt_:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (629c622)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import CartCheckoutButton from\"https://framerusercontent.com/modules/0mEoOFqY2zY0DO4DuXt1/gJuXhmjejtXGW0HzuZco/Shopify_CartCheckoutButton.js\";import CartList from\"https://framerusercontent.com/modules/cCi4we0wVgjV5iCPA0sj/oFANuL279KpJJQo3I5b9/Shopify_CartList.js\";import PrimaryButton from\"https://framerusercontent.com/modules/fEF0rLVKVCvxm8tRGXy3/eI3yseTyUe6a105TXCVQ/rW9oaOcZR.js\";import CartSubtotal from\"https://framerusercontent.com/modules/IiFSgENqQNiBdW1kIM0F/DGkYpZBIyDHR9YZ0utoj/Shopify_CartSubtotal.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import SingleTestimonials from\"https://framerusercontent.com/modules/q4zQ3WgQSw3WPsKPtKBp/jCZhlXELeveHErdSnr4Z/qBqRvwW5x.js\";import PrimaryButton2 from\"https://framerusercontent.com/modules/SbaL4YZNnZqDZ1unjCdr/VBFUxMFdxfbgCvgIgMgS/gFx3hC5a8.js\";import Button from\"https://framerusercontent.com/modules/wHgjPLf80ASEUfkn2RJe/HGUH9dz62MK324fS8OUc/hxfqHjhgq.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import NavigationNav from\"#framer/local/canvasComponent/dnpabjQ7U/dnpabjQ7U.js\";import FiltersOverlayFiltersMeniu from\"#framer/local/canvasComponent/gX6ferfXj/gX6ferfXj.js\";import NelaCategoryTools from\"#framer/local/canvasComponent/HQMGiin72/HQMGiin72.js\";import RangeCTR2 from\"#framer/local/canvasComponent/O721z5Hue/O721z5Hue.js\";import NavigationFooter from\"#framer/local/canvasComponent/OsfYy_D6F/OsfYy_D6F.js\";import ComponentCTA from\"#framer/local/canvasComponent/YxVJszKXd/YxVJszKXd.js\";import ShopifyV2 from\"#framer/local/collection/rAY8g_8YQ/rAY8g_8YQ.js\";import*as sharedStyle3 from\"#framer/local/css/pNVN7shce/pNVN7shce.js\";import*as sharedStyle from\"#framer/local/css/qb0MuVskp/qb0MuVskp.js\";import*as sharedStyle2 from\"#framer/local/css/QsEY6rCXy/QsEY6rCXy.js\";import*as sharedStyle1 from\"#framer/local/css/sPngPSXeV/sPngPSXeV.js\";import*as sharedStyle5 from\"#framer/local/css/vuFHPY4co/vuFHPY4co.js\";import*as sharedStyle4 from\"#framer/local/css/Z8R48nT5S/Z8R48nT5S.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavigationNavFonts=getFonts(NavigationNav);const FiltersOverlayFiltersMeniuFonts=getFonts(FiltersOverlayFiltersMeniu);const CartListFonts=getFonts(CartList);const CartSubtotalFonts=getFonts(CartSubtotal);const CartCheckoutButtonFonts=getFonts(CartCheckoutButton);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const NelaCategoryToolsFonts=getFonts(NelaCategoryTools);const RangeCTR2Fonts=getFonts(RangeCTR2);const ButtonFonts=getFonts(Button);const VideoFonts=getFonts(Video);const ImageWithFX=withFX(Image);const PrimaryButtonFonts=getFonts(PrimaryButton);const ContainerWithFX=withFX(Container);const PrimaryButton2Fonts=getFonts(PrimaryButton2);const SingleTestimonialsFonts=getFonts(SingleTestimonials);const ComponentCTAFonts=getFonts(ComponentCTA);const NavigationFooterFonts=getFonts(NavigationFooter);const breakpoints={FdmynJGXV:\"(max-width: 809px)\",KkRDLVNMw:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-HTmL7\";const variantClassNames={FdmynJGXV:\"framer-v-sw3g7\",KkRDLVNMw:\"framer-v-1g8fb3q\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:-150,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition3={damping:100,delay:.3,mass:1,stiffness:200,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={damping:100,delay:.1,mass:1,stiffness:200,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:150};const transition5={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition6={damping:100,delay:1.5,mass:1,stiffness:200,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition7={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition8={damping:60,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition9={damping:60,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transition10={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transition11={damping:60,delay:.6,mass:1,stiffness:400,type:\"spring\"};const transition12={damping:60,delay:.8,mass:1,stiffness:400,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"FdmynJGXV\",Tablet:\"KkRDLVNMw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,WojElidwKcT6OC9VXs,rXizOPzkhcT6OC9VXs,ZA4jHSpLMcT6OC9VXs,idcT6OC9VXs,WojElidwKC9gYWNmJ0,idC9gYWNmJ0,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const U4rVpJn7j3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const WL2cgc8sJ3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const GAllpqiTp1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const elementId=useRouteElementId(\"xzDio8l5p\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"FdmynJGXV\")return true;return false;};const elementId1=useRouteElementId(\"WcF_njAIi\");const ref2=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"FdmynJGXV\")return false;return true;};const elementId2=useRouteElementId(\"GlpcZM7du\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"u_RXCib1I\");const ref4=React.useRef(null);const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if([\"KkRDLVNMw\",\"FdmynJGXV\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5iqsch-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jZP1ml4YA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"jZP1ml4YA\",intensity:20,layoutId:\"jZP1ml4YA\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-vrbx7h\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11td07s\",\"data-framer-name\":\"Desktop\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mpssfo\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{y:(componentViewport?.y||0)+3+0+0+0+0+0+0},KkRDLVNMw:{y:(componentViewport?.y||0)+3+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:122,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-t3l3ry-container\",id:\"t3l3ry\",nodeId:\"e5CRDJEFM\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{variant:overlay.visible||overlay1.visible?\"FTQ5lYVEM\":\"FTQ5lYVEM\"}},children:/*#__PURE__*/_jsx(NavigationNav,{height:\"100%\",id:\"e5CRDJEFM\",layoutId:\"e5CRDJEFM\",style:{width:\"100%\"},U4rVpJn7j:U4rVpJn7j3bnx0g({overlay}),variant:overlay.visible||overlay1.visible?\"l5nNBsxr9\":\"l5nNBsxr9\",width:\"100%\",WL2cgc8sJ:WL2cgc8sJ3bnx0g({overlay:overlay1})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[0,0,1,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-385u7x\"),\"data-framer-portal-id\":\"t3l3ry\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"mGkfm4an0\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"350px\",children:/*#__PURE__*/_jsx(Container,{animate:animation1,className:cx(scopingClassNames,\"framer-1jag8db-container\"),\"data-framer-portal-id\":\"t3l3ry\",exit:animation,inComponentSlot:true,initial:animation2,nodeId:\"vBBP3zgLs\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FiltersOverlayFiltersMeniu,{GAllpqiTp:GAllpqiTp1wnntms({overlay}),height:\"100%\",id:\"vBBP3zgLs\",layoutId:\"vBBP3zgLs\",style:{height:\"100%\",width:\"100%\"},variant:\"ifdy2OGpZ\",width:\"100%\",yLCq0pGWA:\"\"})})})]}),getContainer())})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1lxwhet\"),\"data-framer-portal-id\":\"t3l3ry\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"IZqPXrPDf\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation4,className:cx(scopingClassNames,\"framer-o5a8fz\"),\"data-framer-name\":\"Cart Overlay\",\"data-framer-portal-id\":\"t3l3ry\",exit:animation3,initial:animation5,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gtahe8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tdx6fr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\"},children:\"Cart\"})}),className:\"framer-t9z2nn\",\"data-framer-name\":\"Cart\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ui0qf\",onTap:onTap1wnntms({overlay:overlay1}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1da8xny\",\"data-framer-name\":\"cancel 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19 19\"><path d=\"M 17.943 17.953 L 6.067 6.047\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(255, 255, 255, 0.5)\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 17.953 6.067 L 6.047 17.943\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgba(255, 255, 255, 0.5)\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11860032988,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lu2bno\",\"data-framer-name\":\"Frame 6\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18b4nmm-container\",\"data-framer-name\":\"Cart List\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Cart List\",nodeId:\"sqmHo6bB7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CartList,{cartItem:{border:{borderColor:\"rgb(217, 217, 217)\",borderStyle:\"solid\",borderWidth:1},borderRadius:\"16px\",font:{},gap:10,padding:\"6px\"},config:{countryIsoCode:\"DE\",languageIsoCode:\"DE\",permissions:{selling_plans:false},storeDomain:\"https://nelatools.myshopify.com/\",storefrontToken:\"4f91a83de624e9bf967c32059f35aa62\",testMode:false},counterStyles:{border:{borderColor:\"rgb(219, 219, 219)\",borderStyle:\"solid\",borderWidth:1},borderRadius:\"24px\",color:\"rgb(0, 0, 0)\",font:{},fontSize:16,gap:14,iconColor:\"rgb(145, 145, 145)\",iconSize:16,padding:\"6px 14px 6px 14px\"},emptyCompoenent:[],font:{},gap:10,height:\"100%\",id:\"sqmHo6bB7\",imageStyle:{border:{borderColor:\"rgb(207, 207, 207)\",borderStyle:\"solid\",borderWidth:0},borderRadius:\"7px\",objectFit:\"scale-down\"},layoutId:\"sqmHo6bB7\",name:\"Cart List\",priceStyles:{color:\"\",font:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},fontSize:14,padding:\"0px\"},removeStyles:{backgroundColor:\"rgb(219, 219, 219)\",border:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:0},borderRadius:\"30px\",color:\"rgb(0, 0, 0)\",padding:\"6px\",size:16},style:{height:\"100%\",width:\"100%\"},titleStyles:{color:\"\",font:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},fontSize:14,padding:\"0px\"},variantStyles:{color:\"\",font:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},fontSize:12,padding:\"0px\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-reuxs9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ppftl\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k3xvsz\",\"data-framer-name\":\"Group 8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yoacbo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"Subtotal\"})}),className:\"framer-ti8bpu\",\"data-framer-name\":\"Subtotal\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lrpube-container\",\"data-framer-name\":\"Cart Subtotal\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Cart Subtotal\",nodeId:\"n_ICgus7b\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CartSubtotal,{config:{countryIsoCode:\"DE\",languageIsoCode:\"DE\",permissions:{selling_plans:false},storeDomain:\"https://nelatools.myshopify.com/\",storefrontToken:\"4f91a83de624e9bf967c32059f35aa62\",testMode:false},font:{},height:\"100%\",id:\"n_ICgus7b\",layoutId:\"n_ICgus7b\",name:\"Cart Subtotal\",styles:{color:\"rgb(18, 18, 18)\",font:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},fontSize:18,padding:\"0px\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif'},children:\"Shipping, taxes, and discount codes calculated at checkout.\"})}),className:\"framer-t3xotw\",\"data-framer-name\":\"Shipping, taxes, and discount codes calculated at checkout.\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ryqn93-container\",\"data-framer-name\":\"Checkout Button\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Checkout Button\",nodeId:\"Fz0DOz7dt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CartCheckoutButton,{buttonComponent:[],buttonType:\"Default\",buttonVariants:{default:getLocalizedValue(\"v3\",activeLocale)??\"Default\",disabled:getLocalizedValue(\"v5\",activeLocale)??\"Disabled\",loading:getLocalizedValue(\"v4\",activeLocale)??\"Loading\"},config:{countryIsoCode:\"DE\",languageIsoCode:\"DE\",permissions:{selling_plans:false},storeDomain:\"https://nelatools.myshopify.com/\",storefrontToken:\"4f91a83de624e9bf967c32059f35aa62\",testMode:false},font:{},height:\"100%\",hoverStyle:{backgroundColor:\"rgb(0, 0, 0)\",border:{borderBottomWidth:0,borderColor:\"rgb(255, 255, 255)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},color:\"rgb(255, 255, 255)\"},id:\"Fz0DOz7dt\",label:getLocalizedValue(\"v6\",activeLocale)??\"Checkout\",layoutId:\"Fz0DOz7dt\",name:\"Checkout Button\",style:{border:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:0},borderRadius:\"6px\",color:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},fontSize:16,padding:\"10px 32px 10px 32px\"},width:\"100%\"})})})]})]})]}),getContainer())})})]})})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wuwwm6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"T4dSUCyIV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"T4dSUCyIV\",intensity:20,layoutId:\"T4dSUCyIV\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-5onmmb\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1da55c7\",\"data-framer-name\":\"Header Section\",id:elementId,ref:ref1,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"424px\",src:\"https://framerusercontent.com/images/X6oQTXwOWak7kAbkMH1dzJXlSHE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/X6oQTXwOWak7kAbkMH1dzJXlSHE.png?scale-down-to=512 512w,https://framerusercontent.com/images/X6oQTXwOWak7kAbkMH1dzJXlSHE.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,src:\"https://framerusercontent.com/images/X6oQTXwOWak7kAbkMH1dzJXlSHE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/X6oQTXwOWak7kAbkMH1dzJXlSHE.png?scale-down-to=512 512w,https://framerusercontent.com/images/X6oQTXwOWak7kAbkMH1dzJXlSHE.png 1000w\"},className:\"framer-1j0jd6i hidden-72rtr7 hidden-1g8fb3q\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-1x6d53g\",\"data-framer-name\":\"Header Section\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15r51rr\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rtwuee\",\"data-styles-preset\":\"qb0MuVskp\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Welcome to\"})}),className:\"framer-1wdkr0i\",\"data-framer-name\":\"Welcome to\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kwo672\",\"data-styles-preset\":\"sPngPSXeV\",style:{\"--framer-text-color\":\"rgb(255, 247, 247)\"},children:\"NELA TOOLS\"})}),className:\"framer-9w5je1\",\"data-framer-name\":\"CCOMMERCE\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12m7bjb hidden-sw3g7\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1gjeqte\",\"data-framer-name\":\"Header Section\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1afmm14\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-3uuftf\",\"data-framer-name\":\"Header Grid\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bdu3cg\",\"data-framer-name\":\"Header Grid\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+0+0+0+0+0+0+0+0+0+0),pixelHeight:1067,pixelWidth:1600,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) * 1.0201)`,src:\"https://framerusercontent.com/images/qe2vfCXir9JRoQn11i2kyQGEI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qe2vfCXir9JRoQn11i2kyQGEI.png?scale-down-to=512 512w,https://framerusercontent.com/images/qe2vfCXir9JRoQn11i2kyQGEI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qe2vfCXir9JRoQn11i2kyQGEI.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+0+0+0+0+0+0+0+0+0+0+0+0),pixelHeight:1067,pixelWidth:1600,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) * 1.0201)`,src:\"https://framerusercontent.com/images/qe2vfCXir9JRoQn11i2kyQGEI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qe2vfCXir9JRoQn11i2kyQGEI.png?scale-down-to=512 512w,https://framerusercontent.com/images/qe2vfCXir9JRoQn11i2kyQGEI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qe2vfCXir9JRoQn11i2kyQGEI.png 1600w\"},className:\"framer-1qi8w08\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-fklq0c\",\"data-framer-name\":\"Header Section\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jf2if9\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rtwuee\",\"data-styles-preset\":\"qb0MuVskp\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Welcome to\"})}),className:\"framer-beldv7\",\"data-framer-name\":\"Welcome to\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kwo672\",\"data-styles-preset\":\"sPngPSXeV\",style:{\"--framer-text-color\":\"rgb(255, 247, 247)\"},children:\"NELA TOOLS\"})}),className:\"framer-1epwbax\",\"data-framer-name\":\"CCOMMERCE\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]})})})})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a0oord\",\"data-framer-name\":\"Header\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jxkOmwOHL\"},implicitPathVariables:undefined},{href:{webPageId:\"jxkOmwOHL\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{height:315.6667,width:`max((${componentViewport?.width||\"100vw\"} * 0.8938 - 17px) / 2, 50px)`,y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+0+0+0+0+952+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:618.0488,width:\"259.0258px\",y:(componentViewport?.y||0)+0+0+0+0+0+122+0+0+0+0+0+0+0+952+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zg325y-container\",nodeId:\"w_ieqCQXq\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{EJDHCEtJC:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(NelaCategoryTools,{EJDHCEtJC:resolvedLinks[0],gL0toXMjK:addImageAlt({pixelHeight:534,pixelWidth:800,src:\"https://framerusercontent.com/images/zLjb8dr8YO97cOhsDjSPGFTls7Y.jpg\",srcSet:\"https://framerusercontent.com/images/zLjb8dr8YO97cOhsDjSPGFTls7Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zLjb8dr8YO97cOhsDjSPGFTls7Y.jpg 800w\"},\"\"),height:\"100%\",id:\"w_ieqCQXq\",layoutId:\"w_ieqCQXq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yotk3E05U:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{children:\"VENETIAN\"})})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"d20Qp9i84\"},implicitPathVariables:undefined},{href:{webPageId:\"d20Qp9i84\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{height:315.6667,width:`max((${componentViewport?.width||\"100vw\"} * 0.8938 - 17px) / 2, 50px)`,y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+0+0+0+0+952+0+332.6667}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:616.5679,width:\"259.2258px\",y:(componentViewport?.y||0)+0+0+0+0+0+122+0+0+0+0+0+0+0+952+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1us1vyy-container\",nodeId:\"aW1DBxDGd\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{EJDHCEtJC:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(NelaCategoryTools,{EJDHCEtJC:resolvedLinks1[0],gL0toXMjK:addImageAlt({pixelHeight:1067,pixelWidth:1600,src:\"https://framerusercontent.com/images/hwTNJpkEc6Jax4Efxtbej3keXE.jpg\",srcSet:\"https://framerusercontent.com/images/hwTNJpkEc6Jax4Efxtbej3keXE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hwTNJpkEc6Jax4Efxtbej3keXE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hwTNJpkEc6Jax4Efxtbej3keXE.jpg 1600w\"},\"\"),height:\"100%\",id:\"aW1DBxDGd\",layoutId:\"aW1DBxDGd\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yotk3E05U:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{children:\"SPONGES\"})})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined},{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{height:315.6667,width:`max((${componentViewport?.width||\"100vw\"} * 0.8938 - 17px) / 2, 50px)`,y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+0+0+0+0+952+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:616.5679,width:\"259.2258px\",y:(componentViewport?.y||0)+0+0+0+0+0+122+0+0+0+0+0+0+0+952+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r9zx1p-container\",nodeId:\"SBfhlY4xj\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{EJDHCEtJC:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(NelaCategoryTools,{EJDHCEtJC:resolvedLinks2[0],gL0toXMjK:addImageAlt({pixelHeight:961,pixelWidth:1280,src:\"https://framerusercontent.com/images/6I2rHdLNbfsI8h6dTK0PK9kqJM.jpg\",srcSet:\"https://framerusercontent.com/images/6I2rHdLNbfsI8h6dTK0PK9kqJM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6I2rHdLNbfsI8h6dTK0PK9kqJM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6I2rHdLNbfsI8h6dTK0PK9kqJM.jpg 1280w\"},\"\"),height:\"100%\",id:\"SBfhlY4xj\",layoutId:\"SBfhlY4xj\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yotk3E05U:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{children:\"FINISHING\"})})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DaYgSzukk\"},implicitPathVariables:undefined},{href:{webPageId:\"DaYgSzukk\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{height:315.6667,width:`max((${componentViewport?.width||\"100vw\"} * 0.8938 - 17px) / 2, 50px)`,y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+0+0+0+0+952+0+665.3334}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:616.5679,width:\"259.2258px\",y:(componentViewport?.y||0)+0+0+0+0+0+122+0+0+0+0+0+0+0+952+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ff265v-container\",nodeId:\"zWfX4Yk2V\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{EJDHCEtJC:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(NelaCategoryTools,{EJDHCEtJC:resolvedLinks3[0],gL0toXMjK:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/pBbQg0piYv6NBqdCnaEz8H95i4.jpg\"},\"\"),height:\"100%\",id:\"zWfX4Yk2V\",layoutId:\"zWfX4Yk2V\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yotk3E05U:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{children:\"TOOLS\"})})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"H5GT1GPXr\"},implicitPathVariables:undefined},{href:{webPageId:\"H5GT1GPXr\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{height:315.6667,width:`max((${componentViewport?.width||\"100vw\"} * 0.8938 - 17px) / 2, 50px)`,y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+0+0+0+0+952+0+332.6667}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:616.5679,width:\"259.2258px\",y:(componentViewport?.y||0)+0+0+0+0+0+122+0+0+0+0+0+0+0+952+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xjoqt1-container\",nodeId:\"mAnYrCm1S\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{EJDHCEtJC:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(NelaCategoryTools,{EJDHCEtJC:resolvedLinks4[0],gL0toXMjK:addImageAlt({pixelHeight:1654,pixelWidth:2480,src:\"https://framerusercontent.com/images/cLLm8oAuC51HadYAa36l0B3KUXw.jpg\",srcSet:\"https://framerusercontent.com/images/cLLm8oAuC51HadYAa36l0B3KUXw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cLLm8oAuC51HadYAa36l0B3KUXw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cLLm8oAuC51HadYAa36l0B3KUXw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cLLm8oAuC51HadYAa36l0B3KUXw.jpg 2480w\"},\"\"),height:\"100%\",id:\"mAnYrCm1S\",layoutId:\"mAnYrCm1S\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yotk3E05U:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{children:\"TROWELS\"})})})})})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"z47VNsQM1\"},implicitPathVariables:undefined},{href:{webPageId:\"z47VNsQM1\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+0+0+0+0+1983}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+122+0+0+0+0+0+0+0+1619.0615,children:/*#__PURE__*/_jsx(Container,{className:\"framer-438pm8-container\",nodeId:\"ODrAuzsNn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{ITYfbp04H:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(RangeCTR2,{height:\"100%\",id:\"ODrAuzsNn\",ITYfbp04H:resolvedLinks5[0],layoutId:\"ODrAuzsNn\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:.9,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1e3,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-dtlgl4\",\"data-framer-name\":\"Header\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined},{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined},{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+424+0},KkRDLVNMw:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+1952+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:\"399px\",y:(componentViewport?.y||0)+0+0+0+0+0+122+0+0+0+1661+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-631ccm-container\",nodeId:\"VrMfQE54k\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{EJDHCEtJC:resolvedLinks6[2]},KkRDLVNMw:{EJDHCEtJC:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(NelaCategoryTools,{EJDHCEtJC:resolvedLinks6[0],gL0toXMjK:addImageAlt({pixelHeight:534,pixelWidth:800,src:\"https://framerusercontent.com/images/zLjb8dr8YO97cOhsDjSPGFTls7Y.jpg\",srcSet:\"https://framerusercontent.com/images/zLjb8dr8YO97cOhsDjSPGFTls7Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zLjb8dr8YO97cOhsDjSPGFTls7Y.jpg 800w\"},\"\"),height:\"100%\",id:\"VrMfQE54k\",layoutId:\"VrMfQE54k\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yotk3E05U:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{children:\"NELA VENETIAN\"})})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":YbtLHS5AV\",webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined},{href:{hash:\":YbtLHS5AV\",webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined},{href:{hash:\":YbtLHS5AV\",webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+424+0},KkRDLVNMw:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+1952+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:\"399px\",y:(componentViewport?.y||0)+0+0+0+0+0+122+0+0+0+1661+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gzt6wa-container\",nodeId:\"DXrGW5HqB\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{EJDHCEtJC:resolvedLinks7[2]},KkRDLVNMw:{EJDHCEtJC:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(NelaCategoryTools,{EJDHCEtJC:resolvedLinks7[0],gL0toXMjK:addImageAlt({pixelHeight:1654,pixelWidth:2480,src:\"https://framerusercontent.com/images/cLLm8oAuC51HadYAa36l0B3KUXw.jpg\",srcSet:\"https://framerusercontent.com/images/cLLm8oAuC51HadYAa36l0B3KUXw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cLLm8oAuC51HadYAa36l0B3KUXw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cLLm8oAuC51HadYAa36l0B3KUXw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cLLm8oAuC51HadYAa36l0B3KUXw.jpg 2480w\"},\"\"),height:\"100%\",id:\"DXrGW5HqB\",layoutId:\"DXrGW5HqB\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yotk3E05U:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{children:\"NELA TROWELS\"})})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined},{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined},{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+424+0},KkRDLVNMw:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+1952+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:\"399px\",y:(componentViewport?.y||0)+0+0+0+0+0+122+0+0+0+1661+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gazt1u-container\",nodeId:\"phY_Sv6PN\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{EJDHCEtJC:resolvedLinks8[2]},KkRDLVNMw:{EJDHCEtJC:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(NelaCategoryTools,{EJDHCEtJC:resolvedLinks8[0],gL0toXMjK:addImageAlt({pixelHeight:961,pixelWidth:1280,src:\"https://framerusercontent.com/images/6I2rHdLNbfsI8h6dTK0PK9kqJM.jpg\",srcSet:\"https://framerusercontent.com/images/6I2rHdLNbfsI8h6dTK0PK9kqJM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6I2rHdLNbfsI8h6dTK0PK9kqJM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6I2rHdLNbfsI8h6dTK0PK9kqJM.jpg 1280w\"},\"\"),height:\"100%\",id:\"phY_Sv6PN\",layoutId:\"phY_Sv6PN\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yotk3E05U:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{children:\"NELA FINISHING\"})})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined},{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined},{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+424+0},KkRDLVNMw:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+1952+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:\"399px\",y:(componentViewport?.y||0)+0+0+0+0+0+122+0+0+0+1661+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pl5l4k-container\",nodeId:\"mjGYXGw5d\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{EJDHCEtJC:resolvedLinks9[2]},KkRDLVNMw:{EJDHCEtJC:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(NelaCategoryTools,{EJDHCEtJC:resolvedLinks9[0],gL0toXMjK:addImageAlt({pixelHeight:1067,pixelWidth:1600,src:\"https://framerusercontent.com/images/hwTNJpkEc6Jax4Efxtbej3keXE.jpg\",srcSet:\"https://framerusercontent.com/images/hwTNJpkEc6Jax4Efxtbej3keXE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hwTNJpkEc6Jax4Efxtbej3keXE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hwTNJpkEc6Jax4Efxtbej3keXE.jpg 1600w\"},\"\"),height:\"100%\",id:\"mjGYXGw5d\",layoutId:\"mjGYXGw5d\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yotk3E05U:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{children:\"NELA SPONGES\"})})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined},{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined},{href:{webPageId:\"tsQ99YdeK\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+424+0},KkRDLVNMw:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+0+0+1952+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:\"399px\",y:(componentViewport?.y||0)+0+0+0+0+0+122+0+0+0+1661+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s2h81b-container\",nodeId:\"DTsmjeMr_\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{EJDHCEtJC:resolvedLinks10[2]},KkRDLVNMw:{EJDHCEtJC:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(NelaCategoryTools,{EJDHCEtJC:resolvedLinks10[0],gL0toXMjK:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/pBbQg0piYv6NBqdCnaEz8H95i4.jpg\"},\"\"),height:\"100%\",id:\"DTsmjeMr_\",layoutId:\"DTsmjeMr_\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Yotk3E05U:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{children:\"NELA HAWKS\"})})})})})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1iu7l6m\",\"data-framer-name\":\"Header Grid\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xteqe7 hidden-1g8fb3q hidden-sw3g7\",\"data-framer-name\":\"Glow\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l0x0g0\",opacity:.2,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 716 743\"></svg>',svgContentId:9607109091,withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-69jsss hidden-1g8fb3q hidden-sw3g7\",\"data-framer-name\":\"Glow\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-klb4ly\",\"data-framer-name\":\"Header Info\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kwo672\",\"data-styles-preset\":\"sPngPSXeV\",children:\"ENGINEERING EXCELLENCE FOR 35 YEARS\"})}),className:\"framer-1wb9l8v\",\"data-framer-name\":\"Elevating Your Style Game\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rtwuee\",\"data-styles-preset\":\"qb0MuVskp\",style:{\"--framer-text-alignment\":\"center\"},children:\"DISCOVER THE ORIGINAL\u2026\"})}),className:\"framer-y0gv61\",\"data-framer-name\":\"We give you more\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5gpskf\",\"data-framer-name\":\"Header Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e2jvrs\",\"data-framer-name\":\"Section Grid\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KVGFhbOfn\"},motionChild:true,nodeId:\"z7d1IsnLz\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-x90eel framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Reason 1\",\"data-reset\":\"button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"100% MADE IN GERMANY\"})}),fonts:[\"GF;Sora-700\"]},KkRDLVNMw:{children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"100% MADE IN GERMANY\"})}),fonts:[\"GF;Sora-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-why9d2\",\"data-styles-preset\":\"QsEY6rCXy\",style:{\"--framer-text-alignment\":\"center\"},children:\"100% MADE IN GERMANY\"})}),className:\"framer-692gk7\",\"data-framer-name\":\"Reasons\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+483+0+166+50+0+0+0+392-135.4905),pixelHeight:433,pixelWidth:577,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 177.5px)`,src:\"https://framerusercontent.com/images/65rTBHr522f8udIsJedtSUzuhYE.png\",srcSet:\"https://framerusercontent.com/images/65rTBHr522f8udIsJedtSUzuhYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/65rTBHr522f8udIsJedtSUzuhYE.png 577w\"}},KkRDLVNMw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+1952+50+166+50+0+0+392-135.4905),pixelHeight:433,pixelWidth:577,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 900px) - 130px) / 3, 1px) - 77.5px)`,src:\"https://framerusercontent.com/images/65rTBHr522f8udIsJedtSUzuhYE.png\",srcSet:\"https://framerusercontent.com/images/65rTBHr522f8udIsJedtSUzuhYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/65rTBHr522f8udIsJedtSUzuhYE.png 577w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+1661+50+166+50+0+0+392-264.9987),pixelHeight:433,pixelWidth:577,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 130px) / 3, 1px) - 78px)`,src:\"https://framerusercontent.com/images/65rTBHr522f8udIsJedtSUzuhYE.png\",srcSet:\"https://framerusercontent.com/images/65rTBHr522f8udIsJedtSUzuhYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/65rTBHr522f8udIsJedtSUzuhYE.png 577w\"},className:\"framer-1f7angc\",\"data-framer-name\":\"Image\",style:{rotate:-6}})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Sn5mmtz4i\"},motionChild:true,nodeId:\"ZxNJYqRGS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1yjozbk hidden-sw3g7 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Reason 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"FIRST CLASS FINISHING TROWELS\"})}),fonts:[\"GF;Sora-700\"],transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-why9d2\",\"data-styles-preset\":\"QsEY6rCXy\",style:{\"--framer-text-alignment\":\"center\"},children:\"FIRST CLASS FINISHING TROWELS\"})}),className:\"framer-x7q30o\",\"data-framer-name\":\"Reason\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+1952+50+166+50+0+416+226-57.0029),pixelHeight:350,pixelWidth:577,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 900px) - 130px) / 3, 1px) - 92.5px)`,src:\"https://framerusercontent.com/images/yUcDErNlknDgNWczasANwvKaARo.png\",srcSet:\"https://framerusercontent.com/images/yUcDErNlknDgNWczasANwvKaARo.png?scale-down-to=512 512w,https://framerusercontent.com/images/yUcDErNlknDgNWczasANwvKaARo.png 577w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+1661+50+166+50+0+416+226-131),pixelHeight:350,pixelWidth:577,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 130px) / 3, 1px) - 93px)`,src:\"https://framerusercontent.com/images/yUcDErNlknDgNWczasANwvKaARo.png\",srcSet:\"https://framerusercontent.com/images/yUcDErNlknDgNWczasANwvKaARo.png?scale-down-to=512 512w,https://framerusercontent.com/images/yUcDErNlknDgNWczasANwvKaARo.png 577w\"},className:\"framer-1v711xe\",\"data-framer-name\":\"Image\",style:{rotate:2}})})]})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WNgSljfzd\"},motionChild:true,nodeId:\"z9PQzyVnj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-zhbnju framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Reason 3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"WORLD RENOWNED & ACCLAIMED\"})}),fonts:[\"GF;Sora-700\"],transformTemplate:transformTemplate1},KkRDLVNMw:{children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"WORLD RENOWNED & ACCLAIMED\"})}),fonts:[\"GF;Sora-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-why9d2\",\"data-styles-preset\":\"QsEY6rCXy\",style:{\"--framer-text-alignment\":\"center\"},children:\"WORLD RENOWNED & ACCLAIMED\"})}),className:\"framer-dij18a\",\"data-framer-name\":\"Reason 3\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+483+0+166+50+407+324-167),pixelHeight:433,pixelWidth:577,positionX:\"center\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 100px)`,src:\"https://framerusercontent.com/images/Z0r6g6w42vg52n4xwboq1kLVyk0.png\",srcSet:\"https://framerusercontent.com/images/Z0r6g6w42vg52n4xwboq1kLVyk0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z0r6g6w42vg52n4xwboq1kLVyk0.png 577w\"}},KkRDLVNMw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+1952+50+166+50+642-167),pixelHeight:433,pixelWidth:577,positionX:\"center\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 900px) - 130px) / 3, 1px)`,src:\"https://framerusercontent.com/images/Z0r6g6w42vg52n4xwboq1kLVyk0.png\",srcSet:\"https://framerusercontent.com/images/Z0r6g6w42vg52n4xwboq1kLVyk0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z0r6g6w42vg52n4xwboq1kLVyk0.png 577w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+1661+50+166+50+642-125),pixelHeight:433,pixelWidth:577,positionX:\"center\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 130px) / 3, 1px)`,src:\"https://framerusercontent.com/images/Z0r6g6w42vg52n4xwboq1kLVyk0.png\",srcSet:\"https://framerusercontent.com/images/Z0r6g6w42vg52n4xwboq1kLVyk0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z0r6g6w42vg52n4xwboq1kLVyk0.png 577w\"},className:\"framer-kelxtc\",\"data-framer-name\":\"Image\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+1952+50+166+50+-108),pixelHeight:433,pixelWidth:577,positionX:\"center\",positionY:\"bottom\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 900px) - 130px) / 3, 1px)`,src:\"https://framerusercontent.com/images/GWXkDnpdJC0LIo2pBXs8aw3Iz58.png\",srcSet:\"https://framerusercontent.com/images/GWXkDnpdJC0LIo2pBXs8aw3Iz58.png?scale-down-to=512 512w,https://framerusercontent.com/images/GWXkDnpdJC0LIo2pBXs8aw3Iz58.png 577w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+1661+50+166+50+-226),pixelHeight:433,pixelWidth:577,positionX:\"center\",positionY:\"bottom\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 130px) / 3, 1px)`,src:\"https://framerusercontent.com/images/GWXkDnpdJC0LIo2pBXs8aw3Iz58.png\",srcSet:\"https://framerusercontent.com/images/GWXkDnpdJC0LIo2pBXs8aw3Iz58.png?scale-down-to=512 512w,https://framerusercontent.com/images/GWXkDnpdJC0LIo2pBXs8aw3Iz58.png 577w\"},className:\"framer-952w76 hidden-sw3g7\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o80m43\",\"data-framer-name\":\"Section Grid\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yyj02hyIo\"},motionChild:true,nodeId:\"rEZO7E8RJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1jap2a hidden-sw3g7 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Reason 4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"MANUFACTURED TO THE HIGHEST QUALITY\"})}),fonts:[\"GF;Sora-700\"],transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-why9d2\",\"data-styles-preset\":\"QsEY6rCXy\",style:{\"--framer-text-alignment\":\"center\"},children:\"MANUFACTURED TO THE HIGHEST QUALITY\"})}),className:\"framer-175awk6\",\"data-framer-name\":\"Reason\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+1952+50+166+50+0+0+226-98),pixelHeight:433,pixelWidth:577,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 900px) - 130px) / 3, 1px)`,src:\"https://framerusercontent.com/images/D3pTdSZS9fwSEE3VX8Lm57CZFM4.png\",srcSet:\"https://framerusercontent.com/images/D3pTdSZS9fwSEE3VX8Lm57CZFM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/D3pTdSZS9fwSEE3VX8Lm57CZFM4.png 577w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+1661+50+166+50+0+0+226-114),pixelHeight:433,pixelWidth:577,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 130px) / 3, 1px)`,src:\"https://framerusercontent.com/images/D3pTdSZS9fwSEE3VX8Lm57CZFM4.png\",srcSet:\"https://framerusercontent.com/images/D3pTdSZS9fwSEE3VX8Lm57CZFM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/D3pTdSZS9fwSEE3VX8Lm57CZFM4.png 577w\"},className:\"framer-k91u3\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gyz5ku_bb\"},motionChild:true,nodeId:\"c6aGT4IyG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-im920o framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Reason 5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"LONG WARRANTIES\"})}),fonts:[\"GF;Sora-700\"]},KkRDLVNMw:{children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"LONG WARRANTIES\"})}),fonts:[\"GF;Sora-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-why9d2\",\"data-styles-preset\":\"QsEY6rCXy\",children:\"LONG WARRANTIES\"})}),className:\"framer-1jf60go\",\"data-framer-name\":\"Reason\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+483+0+166+50+746+0+0+392-117.5),pixelHeight:281,pixelWidth:279,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 189.5px)`,...getLocalizedValue(\"v29\",activeLocale)??{pixelHeight:281,pixelWidth:279,src:\"https://framerusercontent.com/images/qx8QcIFRULm0QfQ659ksqYg2KO8.png\"}}},KkRDLVNMw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+1952+50+166+50+0+250+392-117.5),pixelHeight:281,pixelWidth:279,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 900px) - 130px) / 3, 1px) - 89.5px)`,...getLocalizedValue(\"v29\",activeLocale)??{pixelHeight:281,pixelWidth:279,src:\"https://framerusercontent.com/images/qx8QcIFRULm0QfQ659ksqYg2KO8.png\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+1661+50+166+50+0+250+392-330),pixelHeight:281,pixelWidth:279,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 130px) / 3, 1px) - 123px)`,...getLocalizedValue(\"v29\",activeLocale)??{pixelHeight:281,pixelWidth:279,src:\"https://framerusercontent.com/images/qx8QcIFRULm0QfQ659ksqYg2KO8.png\"}},className:\"framer-1mvox90\",\"data-framer-name\":\"Image\"})})]})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-pm07i8\",\"data-framer-name\":\"Header Grids\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j24lu9\",\"data-framer-name\":\"Section Info\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kwo672\",\"data-styles-preset\":\"sPngPSXeV\",children:\"BEST SELLERS\"})}),className:\"framer-18huwhn\",\"data-framer-name\":\"TRENDING NOW\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wnm5pv\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lvbjho\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"z47VNsQM1\"},implicitPathVariables:undefined},{href:{webPageId:\"z47VNsQM1\"},implicitPathVariables:undefined},{href:{webPageId:\"z47VNsQM1\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+1946+0+116+0+0+0},KkRDLVNMw:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+2960+0+116+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+0+0+0+0+122+0+2669+0+116+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19ul6eh-container\",isModuleExternal:true,nodeId:\"FpOaBTpiE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{QxXFL7NXK:resolvedLinks11[2]},KkRDLVNMw:{QxXFL7NXK:resolvedLinks11[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",HV2vodukn:false,Ib5NOdRzj:getLocalizedValue(\"v31\",activeLocale)??\"Shop all\",id:\"FpOaBTpiE\",layoutId:\"FpOaBTpiE\",QxXFL7NXK:resolvedLinks11[0],Rm6FkTkB9:\"ItQrElKh5\",rUUjn933p:\"shopping-cart\",variant:\"tohNpAZc1\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rnsl2d\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"C9gYWNmJ0\",data:ShopifyV2,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"C9gYWNmJ0\",name:\"WojElidwK\",type:\"Identifier\"},{collection:\"C9gYWNmJ0\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"C9gYWNmJ0\",name:\"c4uhjyiSb\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"best\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idC9gYWNmJ0,WojElidwK:WojElidwKC9gYWNmJ0},index1)=>{WojElidwKC9gYWNmJ0??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`C9gYWNmJ0-${idC9gYWNmJ0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{WojElidwK:WojElidwKC9gYWNmJ0},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16yqh1g\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cT6OC9VXs\",data:ShopifyV2,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"cT6OC9VXs\",name:\"WojElidwK\",type:\"Identifier\"},{collection:\"cT6OC9VXs\",name:\"rXizOPzkh\",type:\"Identifier\"},{collection:\"cT6OC9VXs\",name:\"ZA4jHSpLM\",type:\"Identifier\"},{collection:\"cT6OC9VXs\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"cT6OC9VXs\",name:\"c4uhjyiSb\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"Best\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idcT6OC9VXs,rXizOPzkh:rXizOPzkhcT6OC9VXs,WojElidwK:WojElidwKcT6OC9VXs,ZA4jHSpLM:ZA4jHSpLMcT6OC9VXs},index)=>{WojElidwKcT6OC9VXs??=\"\";ZA4jHSpLMcT6OC9VXs??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cT6OC9VXs-${idcT6OC9VXs}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{WojElidwK:WojElidwKcT6OC9VXs},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{WojElidwK:WojElidwKcT6OC9VXs},webPageId:\"cfceV84RX\"},motionChild:true,nodeId:\"MVXApm8ml\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1dpr3n2 framer-lux5qc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+1946+0+116+0+70+0+25+0+50+0),sizes:\"176px\",...toResponsiveImage(rXizOPzkhcT6OC9VXs)}},KkRDLVNMw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+2960+0+116+0+70+0+25+0+50+0),sizes:\"176px\",...toResponsiveImage(rXizOPzkhcT6OC9VXs)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+2669+0+116+0+70+0+25+0+50+0),sizes:\"290px\",...toResponsiveImage(rXizOPzkhcT6OC9VXs)},className:\"framer-6nc6z5\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-s9vyy3\",\"data-styles-preset\":\"pNVN7shce\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(13, 13, 13))\"},children:\"Nelaflex II Gold Finishing Trowel\"})}),className:\"framer-14qjuxl\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:ZA4jHSpLMcT6OC9VXs,verticalAlignment:\"top\",withExternalLayout:true})]})})})},idcT6OC9VXs);})})})})})})},idC9gYWNmJ0);})})})})})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1muqz4d\",\"data-framer-name\":\"Feature Section 01\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kwo672\",\"data-styles-preset\":\"sPngPSXeV\",children:\"ABOUT NELA\"})}),className:\"framer-bd0up3\",\"data-framer-name\":\"TRENDING NOW\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1wmd094\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-143t2za-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FCiJOXZ6X\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:9,bottomLeftRadius:9,bottomRightRadius:9,controls:true,height:\"100%\",id:\"FCiJOXZ6X\",isMixedBorderRadius:false,layoutId:\"FCiJOXZ6X\",loop:true,muted:false,objectFit:\"contain\",playing:false,poster:\"https://framerusercontent.com/images/DYa1xvYrJ0FIGZ8vyktyRS04r4.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/tDLPju7TdPIgYUl7zr3mnJe8mRU.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:9,topRightRadius:9,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wzd6x3\",\"data-border\":true,\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xasrhj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zw7d7h\",\"data-framer-name\":\"Feature Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1070,intrinsicWidth:1122,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+2604+0+66+0+112+72+0+0+260+0+0),pixelHeight:800,pixelWidth:1e3,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1320px) / 1.028)`,src:\"https://framerusercontent.com/images/sxdQ1XubhgkkCLHmkQbNOP5T2M.jpg\",srcSet:\"https://framerusercontent.com/images/sxdQ1XubhgkkCLHmkQbNOP5T2M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sxdQ1XubhgkkCLHmkQbNOP5T2M.jpg 1000w\"}},KkRDLVNMw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1070,intrinsicWidth:1122,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+3678+0+66+0+162+130+0+0+0+0+0),pixelHeight:800,pixelWidth:1e3,sizes:\"561px\",src:\"https://framerusercontent.com/images/sxdQ1XubhgkkCLHmkQbNOP5T2M.jpg\",srcSet:\"https://framerusercontent.com/images/sxdQ1XubhgkkCLHmkQbNOP5T2M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sxdQ1XubhgkkCLHmkQbNOP5T2M.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1070,intrinsicWidth:1122,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+3467+0+66+0+162+130+0+0+0),pixelHeight:800,pixelWidth:1e3,sizes:\"561px\",src:\"https://framerusercontent.com/images/sxdQ1XubhgkkCLHmkQbNOP5T2M.jpg\",srcSet:\"https://framerusercontent.com/images/sxdQ1XubhgkkCLHmkQbNOP5T2M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sxdQ1XubhgkkCLHmkQbNOP5T2M.jpg 1000w\"},className:\"framer-195tl0s\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:494,intrinsicWidth:612,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+2604+0+66+0+112+72+0+0+260+307-125),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JTdR7MjQ3wAwN82INY84rO0Iop4.png\"}},KkRDLVNMw:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:494,intrinsicWidth:612,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+3678+0+66+0+162+130+0+0+0+535-274),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JTdR7MjQ3wAwN82INY84rO0Iop4.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:494,intrinsicWidth:612,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+3467+0+66+0+162+130+0+535-274),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JTdR7MjQ3wAwN82INY84rO0Iop4.png\"},className:\"framer-1tx73sl\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r6wd1g\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-e5fd1d2d-45e6-49b9-b341-ad7384948a67, rgb(46, 46, 46))\"},children:\"ENGINEERED AND MADE IN GERMANY\"})}),fonts:[\"GF;Sora-700\"]},KkRDLVNMw:{children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-e5fd1d2d-45e6-49b9-b341-ad7384948a67, rgb(46, 46, 46))\"},children:\"ENGINEERED AND MADE IN GERMANY\"})}),fonts:[\"GF;Sora-700\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4gyww9\",\"data-styles-preset\":\"Z8R48nT5S\",children:\"ENGINEERED AND MADE IN GERMANY\"})}),className:\"framer-3v0siz\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ik3gr0\",\"data-styles-preset\":\"vuFHPY4co\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(13, 13, 13))\"},children:\"Nela tools are engineered and made exclusively in Germany.  Our commitment to precision engineering and high-quality materials ensures that every tool we create meets the highest industry standards. Nela tools bring unmatched reliability, strength, and performance to local tradespeople.\"})}),className:\"framer-1tvqzx7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"btJMRz35N\"},implicitPathVariables:undefined},{href:{webPageId:\"btJMRz35N\"},implicitPathVariables:undefined},{href:{webPageId:\"btJMRz35N\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+2604+0+66+0+112+72+0+0+0+0+179},KkRDLVNMw:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+3678+0+66+0+162+130+0+0+567+0+179}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+0+0+0+122+0+3467+0+66+0+162+130+0+0+186,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-158t99o-container\",isModuleExternal:true,nodeId:\"JrZRc1IOJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{X5LroKdYr:resolvedLinks12[2]},KkRDLVNMw:{X5LroKdYr:resolvedLinks12[1]}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",IBDADqidq:getLocalizedValue(\"v36\",activeLocale)??\"Learn More\",id:\"JrZRc1IOJ\",layoutId:\"JrZRc1IOJ\",variant:\"zb51ucTJx\",width:\"100%\",X5LroKdYr:resolvedLinks12[0]})})})})})})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-egksml\",\"data-framer-name\":\"Feature Section 02\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8dojz0\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j1przi\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cw5na4\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-e5fd1d2d-45e6-49b9-b341-ad7384948a67, rgb(46, 46, 46))\"},children:\"THE PROFESSIONAL'S CHOICE\"})}),fonts:[\"GF;Sora-700\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4gyww9\",\"data-styles-preset\":\"Z8R48nT5S\",children:\"THE PROFESSIONAL'S CHOICE\"})}),className:\"framer-baopsb\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ik3gr0\",\"data-styles-preset\":\"vuFHPY4co\",style:{\"--framer-text-alignment\":\"left\"},children:\"Crafted with both durability and finesse, Nela tools are designed to handle the toughest rendering work while delivering a flawless finish every time. Our trowels feature advanced lightweight metals and alloys, with many still benefiting from expert hand-finishing. Ergonomically designed for comfort and efficiency, Nela tools help you work smarter, not harder - giving professionals the edge they need on every job.\"})}),className:\"framer-1a2stck\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"btJMRz35N\"},implicitPathVariables:undefined},{href:{webPageId:\"btJMRz35N\"},implicitPathVariables:undefined},{href:{webPageId:\"btJMRz35N\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+2604+0+66+0+823+0+0+21+0+0+195},KkRDLVNMw:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+3678+0+66+0+1267+0+0+130+0+0+202}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+0+0+0+122+0+3467+0+66+0+1007+0+0+292.5+0+202,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n6rskx-container\",isModuleExternal:true,nodeId:\"DBM9VbKFw\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{X5LroKdYr:resolvedLinks13[2]},KkRDLVNMw:{X5LroKdYr:resolvedLinks13[1]}},children:/*#__PURE__*/_jsx(PrimaryButton2,{height:\"100%\",IBDADqidq:getLocalizedValue(\"v36\",activeLocale)??\"Learn More\",id:\"DBM9VbKFw\",layoutId:\"DBM9VbKFw\",variant:\"MarLJeRJt\",width:\"100%\",X5LroKdYr:resolvedLinks13[0]})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fwpl02 hidden-sw3g7\",\"data-framer-name\":\"Feature Image\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:494,intrinsicWidth:612,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+3678+0+66+0+1267+0+0+130+371+65+0),pixelHeight:769,pixelWidth:1225,sizes:\"422px\",src:\"https://framerusercontent.com/images/qwNVmvD1XwKp9Esq0ki9Cfv3qE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qwNVmvD1XwKp9Esq0ki9Cfv3qE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qwNVmvD1XwKp9Esq0ki9Cfv3qE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qwNVmvD1XwKp9Esq0ki9Cfv3qE.png 1225w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:494,intrinsicWidth:612,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+3467+0+66+0+1007+0+0+130+65+0),pixelHeight:769,pixelWidth:1225,sizes:\"422px\",src:\"https://framerusercontent.com/images/qwNVmvD1XwKp9Esq0ki9Cfv3qE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qwNVmvD1XwKp9Esq0ki9Cfv3qE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qwNVmvD1XwKp9Esq0ki9Cfv3qE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qwNVmvD1XwKp9Esq0ki9Cfv3qE.png 1225w\"},className:\"framer-1izbcdo\",\"data-framer-name\":\"Card 01\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:630,intrinsicWidth:844,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+3678+0+66+0+1267+0+0+130+371+576-191),pixelHeight:850,pixelWidth:850,positionX:\"48%\",positionY:\"92.5%\",sizes:\"422px\",src:\"https://framerusercontent.com/images/sqOlPZInPWzGjOGYWFW3wh478.jpg\",srcSet:\"https://framerusercontent.com/images/sqOlPZInPWzGjOGYWFW3wh478.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sqOlPZInPWzGjOGYWFW3wh478.jpg 850w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:630,intrinsicWidth:844,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+3467+0+66+0+1007+0+0+130+576-191),pixelHeight:850,pixelWidth:850,positionX:\"48%\",positionY:\"92.5%\",sizes:\"422px\",src:\"https://framerusercontent.com/images/sqOlPZInPWzGjOGYWFW3wh478.jpg\",srcSet:\"https://framerusercontent.com/images/sqOlPZInPWzGjOGYWFW3wh478.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sqOlPZInPWzGjOGYWFW3wh478.jpg 850w\"},className:\"framer-2kq53m\",\"data-framer-name\":\"Card 02\",style:{transformPerspective:1200},transformTemplate:transformTemplate1})})]})]})})]})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1lbiogl\",\"data-framer-name\":\"Feature Section 03\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-st0agv\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1myo1g6 hidden-sw3g7\",\"data-framer-name\":\"Feature Image\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5vasp5\",\"data-framer-name\":\"Card 02\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gwaath\",\"data-framer-name\":\"User\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:148,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+6268+0+0+62+0+471-131+-38+48),pixelHeight:246,pixelWidth:246,src:\"https://framerusercontent.com/images/Scd92xOrOYHLDdGSUfTDktBnLB0.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:148,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+5426+0+0+130+471-131+-38+48),pixelHeight:246,pixelWidth:246,src:\"https://framerusercontent.com/images/Scd92xOrOYHLDdGSUfTDktBnLB0.jpg\"},className:\"framer-qems41\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s43ipp\",\"data-framer-name\":\"User Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-83c4b4ac-74f2-4b38-bfa3-a30b696d613d, rgb(12, 34, 23))\"},children:\"Advanced Materials\"})}),className:\"framer-1jnim4m\",fonts:[\"GF;Figtree-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l3pit1\",\"data-framer-name\":\"Card 01\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sq0z2q\",\"data-framer-name\":\"User\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KkRDLVNMw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:148,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+6268+0+0+62+0+471-244+-38+48),pixelHeight:246,pixelWidth:246,src:\"https://framerusercontent.com/images/fYL74YiLafIH6pkqs2SSXvaMtag.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:148,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+5426+0+0+130+471-244+-38+48),pixelHeight:246,pixelWidth:246,src:\"https://framerusercontent.com/images/fYL74YiLafIH6pkqs2SSXvaMtag.jpg\"},className:\"framer-yxk6a5\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o65tki\",\"data-framer-name\":\"User Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-83c4b4ac-74f2-4b38-bfa3-a30b696d613d, rgb(12, 34, 23))\"},children:\"Ergonomic Construction\"})}),className:\"framer-wxiwxm\",fonts:[\"GF;Figtree-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mtwfz8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vfohl5\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4gyww9\",\"data-styles-preset\":\"Z8R48nT5S\",children:\"NELA TOOLS\"})}),className:\"framer-1tvsk54\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ik3gr0\",\"data-styles-preset\":\"vuFHPY4co\",style:{\"--framer-text-alignment\":\"left\"},children:\"Nela takes immense pride in manufacturing high-quality plastering tools with meticulous attention to detail. We balance traditional craftsmanship with innovative design, creating tools that are both strong and precise.\"})}),className:\"framer-1j8s7dz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11bqrxq\",\"data-framer-name\":\"Feature List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uvqypc\",\"data-framer-name\":\"List 01\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bpvhvp\",\"data-framer-name\":\"Single Feature\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ba3zqv\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+3838+0+0+0+0+0+183+0+0+0+0+4.3+5),pixelHeight:13,pixelWidth:12,src:\"https://framerusercontent.com/images/C9Kh74KS2IplNfzWWeMCqWTNxQ.svg\"}},KkRDLVNMw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+6268+0+0+62+513+0+234+0+0+0+4.3+5),pixelHeight:13,pixelWidth:12,src:\"https://framerusercontent.com/images/C9Kh74KS2IplNfzWWeMCqWTNxQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+5426+0+0+205.9+0+234+0+0+0+4.3+5),pixelHeight:13,pixelWidth:12,src:\"https://framerusercontent.com/images/C9Kh74KS2IplNfzWWeMCqWTNxQ.svg\"},className:\"framer-108yy5m\",\"data-framer-name\":\"Check\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(13, 13, 13))\"},children:\"100% made in Germany\"})}),className:\"framer-6thlb4\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g9jsxy\",\"data-framer-name\":\"Single Feature\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fgs1gp\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+3838+0+0+0+0+0+183+0+0+0+30.6+4.3+5),pixelHeight:13,pixelWidth:12,src:\"https://framerusercontent.com/images/C9Kh74KS2IplNfzWWeMCqWTNxQ.svg\"}},KkRDLVNMw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+6268+0+0+62+513+0+234+0+0+0+4.3+5),pixelHeight:13,pixelWidth:12,src:\"https://framerusercontent.com/images/C9Kh74KS2IplNfzWWeMCqWTNxQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+5426+0+0+205.9+0+234+0+0+0+4.3+5),pixelHeight:13,pixelWidth:12,src:\"https://framerusercontent.com/images/C9Kh74KS2IplNfzWWeMCqWTNxQ.svg\"},className:\"framer-1e1ofgu\",\"data-framer-name\":\"Check\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(13, 13, 13))\"},children:\"Manufactured to the highest quality\"})}),className:\"framer-16qft6t\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wyb32z\",\"data-framer-name\":\"List 02\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sdqhmn\",\"data-framer-name\":\"Single Feature\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e77em1\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+3838+0+0+0+0+0+183+0+61.2+0+4.3+5),pixelHeight:13,pixelWidth:12,src:\"https://framerusercontent.com/images/C9Kh74KS2IplNfzWWeMCqWTNxQ.svg\"}},KkRDLVNMw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+3+0+0+0+0+122+0+6268+0+0+62+513+0+234+0+54.6+0+4.3+5),pixelHeight:13,pixelWidth:12,src:\"https://framerusercontent.com/images/C9Kh74KS2IplNfzWWeMCqWTNxQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13,intrinsicWidth:12,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+122+0+5426+0+0+205.9+0+234+0+54.6+0+4.3+5),pixelHeight:13,pixelWidth:12,src:\"https://framerusercontent.com/images/C9Kh74KS2IplNfzWWeMCqWTNxQ.svg\"},className:\"framer-1x8du5u\",\"data-framer-name\":\"Check\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, rgb(13, 13, 13))\"},children:\"Up to 5 years warranty\"})}),className:\"framer-hx07vg\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-lc2myd\",\"data-framer-name\":\"Testimonial Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2y22qi\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U29yYS03MDA=\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3e6ec15f-2b75-4e3b-ad0b-168aa37f4237, rgb(245, 245, 245))\"},children:\"What the trade says about Nela tools\"})}),fonts:[\"GF;Sora-700\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4gyww9\",\"data-styles-preset\":\"Z8R48nT5S\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3e6ec15f-2b75-4e3b-ad0b-168aa37f4237, rgb(245, 245, 245))\"},children:\"What the trade says about Nela tools\"})}),className:\"framer-1ve8sw0\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w1qosh\",\"data-framer-name\":\"Testimonial Area\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k6p3or\",\"data-framer-name\":\"List 01\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hjn3b9-container\",isModuleExternal:true,nodeId:\"qS4hFj_tq\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SingleTestimonials,{height:\"100%\",id:\"qS4hFj_tq\",kLad3_qp5:\"Ed Turner\",layoutId:\"qS4hFj_tq\",QRxKLTYX3:\"\",RdDEFoxiI:addImageAlt({pixelHeight:400,pixelWidth:599,src:\"https://framerusercontent.com/images/XkoxcCZ6ZRplL7Luej8ohJCwIRQ.jpg\",srcSet:\"https://framerusercontent.com/images/XkoxcCZ6ZRplL7Luej8ohJCwIRQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XkoxcCZ6ZRplL7Luej8ohJCwIRQ.jpg 599w\"},\"\"),style:{width:\"100%\"},width:\"100%\",WiUoBhCPI:getLocalizedValue(\"v49\",activeLocale)??\"NELA tools are built to the highest standards, offering precision and durability. The trowels feel perfectly balanced, making finishing work effortless. Since switching to NELA, my results have improved, and the tools have lasted far longer than other brands. Highly recommended.\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ilk0et\",\"data-framer-name\":\"List 02\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7nyxyp-container\",isModuleExternal:true,nodeId:\"pBcn3hHzb\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SingleTestimonials,{height:\"100%\",id:\"pBcn3hHzb\",kLad3_qp5:\"Falk Kartmann\",layoutId:\"pBcn3hHzb\",QRxKLTYX3:\"\",RdDEFoxiI:addImageAlt({pixelHeight:64,pixelWidth:64,src:\"https://framerusercontent.com/images/0h3hyWBTLQBCfVEOGw2n2D1oyo.png\"},\"\"),style:{width:\"100%\"},width:\"100%\",WiUoBhCPI:getLocalizedValue(\"v50\",activeLocale)??\"The quality of NELA tools is outstanding. They are lightweight yet strong, making plastering smoother and easier. The comfort and control they provide help achieve a flawless finish every time. I\u2019ve used many brands, but nothing compares to the reliability of NELA.\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yd1t3z\",\"data-framer-name\":\"List 03\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14ji5wf-container\",isModuleExternal:true,nodeId:\"Zz3KxlX1v\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SingleTestimonials,{height:\"100%\",id:\"Zz3KxlX1v\",kLad3_qp5:\"Harry Fleet\",layoutId:\"Zz3KxlX1v\",QRxKLTYX3:\"\",RdDEFoxiI:addImageAlt({pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/koKzbZjpOFT3v9r2dxluc0SWS8.png\"},\"\"),style:{width:\"100%\"},width:\"100%\",WiUoBhCPI:getLocalizedValue(\"v51\",activeLocale)??\"NELA tools have made a real difference to my work. The craftsmanship is excellent, and they handle beautifully. The trowels give a smooth, professional finish with less effort. They are built to last and have quickly become my first choice for every job.\"})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+5308.8},KkRDLVNMw:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+7817.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:389,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0+122+0+6750,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bx6rvt-container\",nodeId:\"z6JM6C85h\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentCTA,{height:\"100%\",id:\"z6JM6C85h\",layoutId:\"z6JM6C85h\",style:{width:\"100%\"},variant:\"ywMQqlnML\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rxarlz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+5756.8+0},KkRDLVNMw:{y:(componentViewport?.y||0)+3+0+0+0+0+122+0+8206.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:526,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px)`,y:(componentViewport?.y||0)+0+0+0+0+0+122+0+7139+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8hdwjm-container\",nodeId:\"gEKlU55XL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FdmynJGXV:{variant:\"ehrJJ06Ql\"}},children:/*#__PURE__*/_jsx(NavigationFooter,{height:\"100%\",id:\"gEKlU55XL\",layoutId:\"gEKlU55XL\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"xeTia3Esd\",width:\"100%\"})})})})})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HTmL7.framer-lux5qc, .framer-HTmL7 .framer-lux5qc { display: block; }\",\".framer-HTmL7.framer-72rtr7 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-HTmL7 .framer-5iqsch-container, .framer-HTmL7 .framer-wuwwm6-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-HTmL7 .framer-vrbx7h { align-content: center; align-items: center; background-color: var(--token-3e6ec15f-2b75-4e3b-ad0b-168aa37f4237, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-11td07s { align-content: center; align-items: center; background-color: var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, #0d0d0d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-mpssfo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-t3l3ry-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 5; }\",'.framer-HTmL7.framer-385u7x { background-color: var(--token-ab591a21-7f4d-4730-9bd6-d3f6304cf2d9, rgba(216, 216, 227, 0.3)) /* {\"name\":\"UI 30%\"} */; inset: 0px; position: fixed; user-select: none; z-index: 8; }',\".framer-HTmL7.framer-1jag8db-container { bottom: 0px; flex: none; left: 0px; position: fixed; top: 0px; width: 350px; will-change: var(--framer-will-change-effect-override, transform); z-index: 8; }\",'.framer-HTmL7.framer-1lxwhet { background-color: var(--token-ab591a21-7f4d-4730-9bd6-d3f6304cf2d9, rgba(170, 170, 170, 0.3)) /* {\"name\":\"UI 30%\"} */; inset: 0px; position: fixed; user-select: none; z-index: 8; }',\".framer-HTmL7.framer-o5a8fz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 40px 24px 40px 24px; position: fixed; right: 0px; top: 0px; width: 450px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-HTmL7 .framer-1gtahe8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 497px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-tdx6fr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-t9z2nn, .framer-HTmL7 .framer-ti8bpu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HTmL7 .framer-8ui0qf { background-color: var(--token-65694e9a-5b86-4ff8-8c1a-40b3925be036, #9b2f4f); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; cursor: pointer; flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HTmL7 .framer-1da8xny { background-color: rgba(0, 0, 0, 0); flex: none; height: 19px; left: 0px; position: absolute; top: 0px; width: 19px; }\",\".framer-HTmL7 .framer-lu2bno { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-18b4nmm-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-reuxs9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-5ppftl { background-color: #dbdbdb; flex: none; height: 1px; overflow: visible; position: relative; width: 402px; }\",\".framer-HTmL7 .framer-k3xvsz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1yoacbo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1lrpube-container, .framer-HTmL7 .framer-19ul6eh-container, .framer-HTmL7 .framer-158t99o-container, .framer-HTmL7 .framer-1n6rskx-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HTmL7 .framer-t3xotw, .framer-HTmL7 .framer-1wdkr0i, .framer-HTmL7 .framer-9w5je1, .framer-HTmL7 .framer-beldv7, .framer-HTmL7 .framer-1epwbax, .framer-HTmL7 .framer-1wb9l8v, .framer-HTmL7 .framer-692gk7, .framer-HTmL7 .framer-x7q30o, .framer-HTmL7 .framer-dij18a, .framer-HTmL7 .framer-175awk6, .framer-HTmL7 .framer-1jf60go, .framer-HTmL7 .framer-18huwhn, .framer-HTmL7 .framer-bd0up3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmL7 .framer-1ryqn93-container, .framer-HTmL7 .framer-143t2za-container, .framer-HTmL7 .framer-hjn3b9-container, .framer-HTmL7 .framer-7nyxyp-container, .framer-HTmL7 .framer-14ji5wf-container, .framer-HTmL7 .framer-bx6rvt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-5onmmb { align-content: center; align-items: center; background-color: var(--token-3e6ec15f-2b75-4e3b-ad0b-168aa37f4237, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1da55c7 { align-content: center; align-items: center; background-color: var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, #0d0d0d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-HTmL7 .framer-1j0jd6i { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 424px); overflow: visible; position: relative; width: 424px; }\",\".framer-HTmL7 .framer-1x6d53g, .framer-HTmL7 .framer-fklq0c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; left: 51%; overflow: hidden; padding: 42px 24px 42px 24px; position: absolute; top: -4px; transform: translateX(-50%); width: 342px; z-index: 0; }\",\".framer-HTmL7 .framer-15r51rr, .framer-HTmL7 .framer-1jf2if9, .framer-HTmL7 .framer-klb4ly { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-12m7bjb, .framer-HTmL7 .framer-1afmm14 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1gjeqte { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: 1661px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-HTmL7 .framer-3uuftf { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-HTmL7 .framer-1bdu3cg { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1qi8w08 { flex: none; height: 902px; overflow: visible; position: relative; width: 102%; }\",\".framer-HTmL7 .framer-1a0oord { align-content: flex-start; align-items: flex-start; aspect-ratio: 2.3338735818476497 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 17px; height: 37%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 1440px); }\",\".framer-HTmL7 .framer-zg325y-container, .framer-HTmL7 .framer-1us1vyy-container, .framer-HTmL7 .framer-r9zx1p-container, .framer-HTmL7 .framer-1ff265v-container, .framer-HTmL7 .framer-1xjoqt1-container { flex: none; height: 100%; position: relative; width: 18%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-HTmL7 .framer-438pm8-container { flex: none; height: 42px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-dtlgl4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HTmL7 .framer-631ccm-container, .framer-HTmL7 .framer-1gzt6wa-container, .framer-HTmL7 .framer-gazt1u-container, .framer-HTmL7 .framer-pl5l4k-container, .framer-HTmL7 .framer-1s2h81b-container { flex: none; height: 80%; position: relative; width: 399px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-HTmL7 .framer-1iu7l6m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 50px 0px 50px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-HTmL7 .framer-1xteqe7 { -webkit-filter: blur(64px); align-content: center; align-items: center; bottom: 0px; display: flex; filter: blur(64px); flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; width: min-content; z-index: 0; }\",\".framer-HTmL7 .framer-l0x0g0 { flex: none; height: 743px; opacity: 0.2; position: relative; width: 716px; }\",\".framer-HTmL7 .framer-69jsss { -webkit-filter: blur(64px); align-content: center; align-items: center; bottom: 0px; display: flex; filter: blur(64px); flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; min-height: 743px; min-width: 716px; overflow: hidden; padding: 0px; position: absolute; width: min-content; z-index: 0; }\",\".framer-HTmL7 .framer-y0gv61 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmL7 .framer-5gpskf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-e2jvrs, .framer-HTmL7 .framer-o80m43 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HTmL7 .framer-x90eel { --border-bottom-width: 2px; --border-color: var(--token-cb084d69-fb3a-43a7-b50a-e7506bdef46c, rgba(0, 0, 0, 0.05)); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; aspect-ratio: 0.8979591836734694 / 1; background: linear-gradient(222deg, var(--token-1d4f7ead-bfa1-40e6-9e94-a738e2b2b3fc, #fcfcfc) 0%, var(--token-ab591a21-7f4d-4730-9bd6-d3f6304cf2d9, rgba(216, 216, 227, 0.3)) 100%); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: var(--framer-aspect-ratio-supported, 457px); justify-content: flex-start; overflow: hidden; padding: 50px 40px 50px 40px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HTmL7 .framer-1f7angc { -webkit-filter: drop-shadow(-5px 4px 5px #000000); aspect-ratio: 1 / 1; bottom: -67px; filter: drop-shadow(-5px 4px 5px #000000); flex: none; height: var(--framer-aspect-ratio-supported, 332px); left: 39px; position: absolute; right: 39px; z-index: 1; }\",\".framer-HTmL7 .framer-1yjozbk { --border-bottom-width: 2px; --border-color: var(--token-cb084d69-fb3a-43a7-b50a-e7506bdef46c, rgba(0, 0, 0, 0.05)); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; aspect-ratio: 1.5575221238938053 / 1; background: linear-gradient(349deg, var(--token-1d4f7ead-bfa1-40e6-9e94-a738e2b2b3fc, #fcfcfc) 0%, var(--token-ab591a21-7f4d-4730-9bd6-d3f6304cf2d9, rgba(216, 216, 227, 0.3)) 100%); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: var(--framer-aspect-ratio-supported, 264px); justify-content: flex-start; overflow: hidden; padding: 50px 20px 50px 20px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",'.framer-HTmL7 .framer-1v711xe { -webkit-filter: drop-shadow(-3px 4px 5px var(--token-3e6ec15f-2b75-4e3b-ad0b-168aa37f4237, #ffffff) /* {\"name\":\"Background\"} */); aspect-ratio: 1 / 1; bottom: -186px; filter: drop-shadow(-3px 4px 5px var(--token-3e6ec15f-2b75-4e3b-ad0b-168aa37f4237, #ffffff) /* {\"name\":\"Background\"} */); flex: none; height: var(--framer-aspect-ratio-supported, 317px); left: 47px; overflow: visible; position: absolute; right: 46px; z-index: 1; }',\".framer-HTmL7 .framer-zhbnju { --border-bottom-width: 2px; --border-color: var(--token-cb084d69-fb3a-43a7-b50a-e7506bdef46c, rgba(0, 0, 0, 0.05)); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; align-self: stretch; background: radial-gradient(50% 50% at 50% 50%, var(--token-1d4f7ead-bfa1-40e6-9e94-a738e2b2b3fc, #fcfcfc) 0%, var(--token-ab591a21-7f4d-4730-9bd6-d3f6304cf2d9, rgba(216, 216, 227, 0.3)) 100%); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: center; overflow: hidden; padding: 50px 40px 50px 40px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HTmL7 .framer-kelxtc { -webkit-filter: drop-shadow(-5px 4px 5px #000000); aspect-ratio: 1 / 1; bottom: -227px; filter: drop-shadow(-5px 4px 5px #000000); flex: none; height: var(--framer-aspect-ratio-supported, 490px); left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-HTmL7 .framer-952w76 { -webkit-filter: drop-shadow(-5px 4px 5px #000000); aspect-ratio: 1 / 1; filter: drop-shadow(-5px 4px 5px #000000); flex: none; height: var(--framer-aspect-ratio-supported, 490px); left: 0px; position: absolute; right: 0px; top: -226px; z-index: 1; }\",\".framer-HTmL7 .framer-1jap2a { --border-bottom-width: 2px; --border-color: var(--token-cb084d69-fb3a-43a7-b50a-e7506bdef46c, rgba(0, 0, 0, 0.05)); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; aspect-ratio: 1.5575221238938053 / 1; background: linear-gradient(238deg, var(--token-1d4f7ead-bfa1-40e6-9e94-a738e2b2b3fc, #fcfcfc) -10.23525336188705%, var(--token-ab591a21-7f4d-4730-9bd6-d3f6304cf2d9, rgba(216, 216, 227, 0.3)) 100%); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: var(--framer-aspect-ratio-supported, 263px); justify-content: flex-start; overflow: hidden; padding: 50px 40px 50px 40px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HTmL7 .framer-k91u3 { -webkit-filter: drop-shadow(-5px 4px 5px #000000); aspect-ratio: 1 / 1; bottom: -238px; filter: drop-shadow(-5px 4px 5px #000000); flex: none; height: var(--framer-aspect-ratio-supported, 410px); left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-HTmL7 .framer-im920o { --border-bottom-width: 2px; --border-color: var(--token-cb084d69-fb3a-43a7-b50a-e7506bdef46c, rgba(0, 0, 0, 0.05)); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; aspect-ratio: 0.8979591836734694 / 1; background: linear-gradient(41deg, var(--token-1d4f7ead-bfa1-40e6-9e94-a738e2b2b3fc, #fcfcfc) 0%, var(--token-ab591a21-7f4d-4730-9bd6-d3f6304cf2d9, rgba(216, 216, 227, 0.3)) 100%); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: var(--framer-aspect-ratio-supported, 457px); justify-content: flex-start; overflow: hidden; padding: 50px 40px 50px 40px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-HTmL7 .framer-1mvox90 { -webkit-filter: drop-shadow(-4px 4px 5px #000000); aspect-ratio: 1 / 1; bottom: 43px; filter: drop-shadow(-4px 4px 5px #000000); flex: none; height: var(--framer-aspect-ratio-supported, 287px); left: 61px; position: absolute; right: 62px; z-index: 1; }\",\".framer-HTmL7 .framer-pm07i8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-j24lu9, .framer-HTmL7 .framer-11bqrxq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1wnm5pv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1lvbjho { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1rnsl2d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-16yqh1g { display: grid; flex: none; gap: 50px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: 532px; justify-content: center; padding: 25px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1dpr3n2 { align-content: center; align-items: center; align-self: start; background-color: var(--token-1d4f7ead-bfa1-40e6-9e94-a738e2b2b3fc, #eaeaea); border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: 100%; justify-content: flex-start; justify-self: start; padding: 50px 0px 50px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-HTmL7 .framer-6nc6z5 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 290px; position: relative; width: 290px; }\",\".framer-HTmL7 .framer-14qjuxl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 66%; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmL7 .framer-1muqz4d, .framer-HTmL7 .framer-1lbiogl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1wmd094 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1320px; overflow: hidden; padding: 0px 24px 50px 24px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1wzd6x3 { --border-bottom-width: 1.5px; --border-color: rgba(12, 34, 23, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 130px 0px 130px 0px; position: relative; width: 1320px; }\",\".framer-HTmL7 .framer-1xasrhj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HTmL7 .framer-zw7d7h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HTmL7 .framer-195tl0s { aspect-ratio: 1.0485981308411214 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 535px); position: relative; width: 561px; }\",\".framer-HTmL7 .framer-1tx73sl { aspect-ratio: 1.2388663967611335 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 27px; flex: none; height: var(--framer-aspect-ratio-supported, 247px); position: absolute; right: 27px; width: 306px; z-index: 1; }\",\".framer-HTmL7 .framer-r6wd1g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 0px; position: relative; width: 1px; }\",\".framer-HTmL7 .framer-3v0siz, .framer-HTmL7 .framer-baopsb, .framer-HTmL7 .framer-1tvsk54 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmL7 .framer-1tvqzx7, .framer-HTmL7 .framer-1a2stck, .framer-HTmL7 .framer-1jnim4m, .framer-HTmL7 .framer-wxiwxm, .framer-HTmL7 .framer-1j8s7dz { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmL7 .framer-egksml { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 1440px; }\",\".framer-HTmL7 .framer-8dojz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 130px 0px 130px 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1j1przi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HTmL7 .framer-cw5na4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 10px 0px 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-fwpl02 { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.9739583333333334 / 1; background-color: var(--token-65694e9a-5b86-4ff8-8c1a-40b3925be036, #9b2f4f); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 576px); justify-content: flex-start; overflow: hidden; padding: 65px 70px 0px 70px; position: relative; width: 561px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HTmL7 .framer-1izbcdo { aspect-ratio: 1.470383275261324 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 287px); position: relative; width: 422px; }\",\".framer-HTmL7 .framer-2kq53m { aspect-ratio: 1.3396825396825396 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: -124px; flex: none; height: var(--framer-aspect-ratio-supported, 315px); left: 50%; position: absolute; transform: translateX(-50%); width: 422px; z-index: 1; }\",\".framer-HTmL7 .framer-st0agv { --border-bottom-width: 0px; --border-color: rgba(12, 34, 23, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 115px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 130px 0px 130px 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1myo1g6 { aspect-ratio: 0.875195007800312 / 1; background-color: var(--token-65694e9a-5b86-4ff8-8c1a-40b3925be036, #9b2f4f); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 471px); position: relative; width: 412px; }\",\".framer-HTmL7 .framer-5vasp5 { align-content: center; align-items: center; aspect-ratio: 4.585106382978723 / 1; background-color: var(--token-8d33f426-e23b-47f3-b423-412efeb5da93, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 37px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: var(--framer-aspect-ratio-supported, 94px); justify-content: space-between; left: 31px; overflow: hidden; padding: 10px 25px 10px 10px; position: absolute; width: 431px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HTmL7 .framer-gwaath, .framer-HTmL7 .framer-1sq0z2q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HTmL7 .framer-qems41, .framer-HTmL7 .framer-yxk6a5 { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 74px); position: relative; width: 74px; }\",\".framer-HTmL7 .framer-s43ipp, .framer-HTmL7 .framer-1o65tki { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HTmL7 .framer-l3pit1 { align-content: center; align-items: center; aspect-ratio: 4.585106382978723 / 1; background-color: var(--token-8d33f426-e23b-47f3-b423-412efeb5da93, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 150px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: var(--framer-aspect-ratio-supported, 94px); justify-content: space-between; left: 31px; overflow: hidden; padding: 10px 25px 10px 10px; position: absolute; width: 431px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HTmL7 .framer-mtwfz8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HTmL7 .framer-vfohl5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1uvqypc, .framer-HTmL7 .framer-wyb32z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-bpvhvp, .framer-HTmL7 .framer-1g9jsxy, .framer-HTmL7 .framer-sdqhmn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HTmL7 .framer-ba3zqv, .framer-HTmL7 .framer-1fgs1gp, .framer-HTmL7 .framer-1e77em1 { align-content: center; align-items: center; background-color: var(--token-65694e9a-5b86-4ff8-8c1a-40b3925be036, #9b2f4f); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 22px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 22px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HTmL7 .framer-108yy5m, .framer-HTmL7 .framer-1e1ofgu, .framer-HTmL7 .framer-1x8du5u { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: relative; width: 12px; }\",\".framer-HTmL7 .framer-6thlb4, .framer-HTmL7 .framer-16qft6t, .framer-HTmL7 .framer-hx07vg { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-HTmL7 .framer-lc2myd { align-content: center; align-items: center; background-color: var(--token-65694e9a-5b86-4ff8-8c1a-40b3925be036, #9b2f4f); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-2y22qi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1ve8sw0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 61%; word-break: break-word; word-wrap: break-word; }\",\".framer-HTmL7 .framer-w1qosh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-1k6p3or, .framer-HTmL7 .framer-1ilk0et, .framer-HTmL7 .framer-yd1t3z { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HTmL7 .framer-1rxarlz { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTmL7 .framer-8hdwjm-container { flex: 1 0 0px; height: auto; max-width: 1440px; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-HTmL7[data-border=\"true\"]::after, .framer-HTmL7 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-HTmL7.framer-72rtr7 { padding: 3px 0px 0px 0px; width: 810px; } .framer-HTmL7 .framer-mpssfo { background-color: var(--token-ad4d2a8b-0add-4634-8710-f4704da278ff, #0d0d0d); position: sticky; top: 0px; z-index: 1; } .framer-HTmL7 .framer-1gjeqte { height: 1952px; } .framer-HTmL7 .framer-3uuftf, .framer-HTmL7 .framer-1iu7l6m { max-width: 900px; } .framer-HTmL7 .framer-1a0oord { align-content: unset; align-items: unset; aspect-ratio: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 981px; width: 89%; } .framer-HTmL7 .framer-zg325y-container { align-self: start; height: 100%; justify-self: start; order: 1; width: 100%; } .framer-HTmL7 .framer-1us1vyy-container { align-self: start; height: 100%; justify-self: start; order: 2; width: 100%; } .framer-HTmL7 .framer-r9zx1p-container { align-self: start; height: 100%; justify-self: start; order: 0; width: 100%; } .framer-HTmL7 .framer-1ff265v-container { align-self: start; height: 100%; justify-self: start; order: 4; width: 100%; } .framer-HTmL7 .framer-1xjoqt1-container { align-self: start; height: 100%; justify-self: start; order: 3; width: 100%; } .framer-HTmL7 .framer-x90eel, .framer-HTmL7 .framer-im920o { height: var(--framer-aspect-ratio-supported, 223px); } .framer-HTmL7 .framer-1f7angc { bottom: 16px; height: var(--framer-aspect-ratio-supported, 123px); left: 39px; right: 39px; } .framer-HTmL7 .framer-1yjozbk, .framer-HTmL7 .framer-1jap2a { height: var(--framer-aspect-ratio-supported, 129px); } .framer-HTmL7 .framer-x7q30o { left: 50%; order: 0; position: absolute; top: 8px; transform: translateX(-50%); width: 157px; z-index: 1; } .framer-HTmL7 .framer-1v711xe { bottom: -47px; height: var(--framer-aspect-ratio-supported, 108px); left: 47px; order: 1; right: 45px; } .framer-HTmL7 .framer-kelxtc { bottom: -110px; height: var(--framer-aspect-ratio-supported, 280px); } .framer-HTmL7 .framer-952w76 { height: var(--framer-aspect-ratio-supported, 280px); top: -108px; } .framer-HTmL7 .framer-175awk6 { left: 49%; position: absolute; top: 15px; transform: translateX(-50%); width: 149px; z-index: 1; } .framer-HTmL7 .framer-k91u3 { bottom: -99px; height: var(--framer-aspect-ratio-supported, 200px); } .framer-HTmL7 .framer-1mvox90 { bottom: 10px; height: var(--framer-aspect-ratio-supported, 111px); left: 45px; right: 45px; } .framer-HTmL7 .framer-pm07i8 { padding: 0px; } .framer-HTmL7 .framer-1dpr3n2 { height: 363px; } .framer-HTmL7 .framer-6nc6z5 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 176px); width: 176px; } .framer-HTmL7 .framer-1wzd6x3 { flex-direction: column; width: 100%; } .framer-HTmL7 .framer-1xasrhj { flex: none; flex-direction: column; width: 100%; } .framer-HTmL7 .framer-r6wd1g, .framer-HTmL7 .framer-1j1przi, .framer-HTmL7 .framer-mtwfz8 { flex: none; width: 100%; } .framer-HTmL7 .framer-egksml { width: 100%; } .framer-HTmL7 .framer-8dojz0 { flex-direction: column; } .framer-HTmL7 .framer-st0agv { flex-direction: column; gap: 42px; padding: 62px 0px 62px 0px; }}\",\"@media (max-width: 809px) { .framer-HTmL7.framer-72rtr7 { padding: 3px 0px 0px 0px; width: 390px; } .framer-HTmL7.framer-o5a8fz { width: 100%; } .framer-HTmL7 .framer-5onmmb { gap: 59px; } .framer-HTmL7 .framer-15r51rr { order: 0; } .framer-HTmL7 .framer-1iu7l6m { max-width: 900px; padding: 0px; } .framer-HTmL7 .framer-5gpskf, .framer-HTmL7 .framer-w1qosh { flex-direction: column; } .framer-HTmL7 .framer-e2jvrs, .framer-HTmL7 .framer-o80m43, .framer-HTmL7 .framer-1j1przi, .framer-HTmL7 .framer-1k6p3or, .framer-HTmL7 .framer-1ilk0et, .framer-HTmL7 .framer-yd1t3z { flex: none; width: 100%; } .framer-HTmL7 .framer-x90eel, .framer-HTmL7 .framer-im920o { height: var(--framer-aspect-ratio-supported, 223px); } .framer-HTmL7 .framer-1f7angc { bottom: 16px; height: var(--framer-aspect-ratio-supported, 119px); left: 39px; right: 39px; } .framer-HTmL7 .framer-zhbnju { align-self: unset; flex: none; height: 324px; width: 100%; } .framer-HTmL7 .framer-dij18a { left: 50%; position: absolute; top: 60px; transform: translateX(-50%); width: 210px; z-index: 1; } .framer-HTmL7 .framer-kelxtc { bottom: -110px; height: var(--framer-aspect-ratio-supported, 277px); } .framer-HTmL7 .framer-1mvox90 { bottom: 10px; height: var(--framer-aspect-ratio-supported, 107px); left: 45px; right: 45px; } .framer-HTmL7 .framer-pm07i8 { padding: 0px; } .framer-HTmL7 .framer-1lvbjho { gap: 10px; justify-content: center; } .framer-HTmL7 .framer-16yqh1g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; } .framer-HTmL7 .framer-1dpr3n2 { align-self: unset; height: 363px; } .framer-HTmL7 .framer-6nc6z5 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 177px); width: 176px; } .framer-HTmL7 .framer-1wmd094 { gap: 0px; padding: 0px; } .framer-HTmL7 .framer-1wzd6x3 { flex-direction: column; gap: 38px; padding: 72px 0px 72px 0px; width: 100%; } .framer-HTmL7 .framer-1xasrhj { flex: none; flex-direction: column; width: 100%; } .framer-HTmL7 .framer-zw7d7h { order: 1; width: 100%; } .framer-HTmL7 .framer-195tl0s { height: var(--framer-aspect-ratio-supported, 191px); width: 97%; } .framer-HTmL7 .framer-1tx73sl { height: var(--framer-aspect-ratio-supported, 98px); width: 121px; } .framer-HTmL7 .framer-r6wd1g { flex: none; order: 0; width: 100%; } .framer-HTmL7 .framer-egksml { padding: 0px; width: 100%; } .framer-HTmL7 .framer-8dojz0 { flex-direction: column; padding: 21px 0px 21px 0px; } .framer-HTmL7 .framer-st0agv { flex-direction: column; padding: 0px; } .framer-HTmL7 .framer-mtwfz8 { flex: none; gap: 13px; width: 100%; } .framer-HTmL7 .framer-11bqrxq { gap: 0px; } .framer-HTmL7 .framer-1uvqypc { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8548.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KkRDLVNMw\":{\"layout\":[\"fixed\",\"auto\"]},\"FdmynJGXV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"xzDio8l5p\":{\"pattern\":\":xzDio8l5p\",\"name\":\"2\"},\"WcF_njAIi\":{\"pattern\":\":WcF_njAIi\",\"name\":\"2\"},\"GlpcZM7du\":{\"pattern\":\":GlpcZM7du\",\"name\":\"2\"},\"u_RXCib1I\":{\"pattern\":\":u_RXCib1I\",\"name\":\"2\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-HTmL7\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8548.5,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Sora\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sora/v16/xMQOuFFYT72X5wkB_18qmnndmSe1mX-PIwNhBti0.woff2\",weight:\"700\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v8/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v8/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"}]},...SmoothScrollFonts,...NavigationNavFonts,...FiltersOverlayFiltersMeniuFonts,...CartListFonts,...CartSubtotalFonts,...CartCheckoutButtonFonts,...NelaCategoryToolsFonts,...RangeCTR2Fonts,...ButtonFonts,...VideoFonts,...PrimaryButtonFonts,...PrimaryButton2Fonts,...SingleTestimonialsFonts,...ComponentCTAFonts,...NavigationFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"xzDio8l5p\\\":{\\\"pattern\\\":\\\":xzDio8l5p\\\",\\\"name\\\":\\\"2\\\"},\\\"WcF_njAIi\\\":{\\\"pattern\\\":\\\":WcF_njAIi\\\",\\\"name\\\":\\\"2\\\"},\\\"GlpcZM7du\\\":{\\\"pattern\\\":\\\":GlpcZM7du\\\",\\\"name\\\":\\\"2\\\"},\\\"u_RXCib1I\\\":{\\\"pattern\\\":\\\":u_RXCib1I\\\",\\\"name\\\":\\\"2\\\"}}\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"8548.5\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KkRDLVNMw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FdmynJGXV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "O721z5Hue_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "ITYfbp04H", "Link", "__FramerMetadata__", "valuesByLocaleId", "O721z5Hue_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "RichTextWithFX", "withFX", "RichText", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ITYfbp04H", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "getLocalizedValue", "Link", "css", "FramerO721z5Hue", "withCSS", "O721z5Hue_default", "addPropertyControls", "ControlType", "variationAxes", "addFonts", "getFontsFromSharedStyle", "fonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "SmoothScrollFonts", "getFonts", "SmoothScroll_Prod_default", "NavigationNavFonts", "dnpabjQ7U_default", "FiltersOverlayFiltersMeniuFonts", "gX6ferfXj_default", "CartListFonts", "Shopify_CartList", "CartSubtotalFonts", "Shopify_CartSubtotal", "CartCheckoutButtonFonts", "Shopify_CartCheckoutButton", "RichTextWithFX", "withFX", "RichText", "MotionDivWithFX", "motion", "NelaCategoryToolsFonts", "HQMGiin72_default", "RangeCTR2Fonts", "O721z5Hue_default", "ButtonFonts", "hxfqHjhgq_default", "VideoFonts", "Video", "ImageWithFX", "Image2", "PrimaryButtonFonts", "rW9oaOcZR_default", "ContainerWithFX", "Container", "PrimaryButton2Fonts", "gFx3hC5a8_default", "SingleTestimonialsFonts", "qBqRvwW5x_default", "ComponentCTAFonts", "YxVJszKXd_default", "NavigationFooterFonts", "OsfYy_D6F_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "getContainer", "transition2", "animation3", "animation4", "animation5", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition3", "animation6", "animation7", "transition4", "animation8", "animation9", "animation10", "transition5", "animation11", "addImageAlt", "image", "alt", "transition6", "animation12", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "animation13", "transition7", "transition8", "animation14", "transition9", "transition10", "transition11", "transition12", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "WojElidwKcT6OC9VXs", "rXizOPzkhcT6OC9VXs", "ZA4jHSpLMcT6OC9VXs", "idcT6OC9VXs", "WojElidwKC9gYWNmJ0", "idC9gYWNmJ0", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "U4rVpJn7j3bnx0g", "overlay", "loadMore", "args", "WL2cgc8sJ3bnx0g", "GAllpqiTp1wnntms", "onTap1wnntms", "scopingClassNames", "cx", "usePreloadLocalizedValues", "elementId", "useRouteElementId", "ref1", "isDisplayed", "elementId1", "ref2", "isDisplayed1", "elementId2", "ref3", "elementId3", "ref4", "router", "useRouter", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "overlay1", "l", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "getLocalizedValue", "SVG", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "Link", "resolvedLinks11", "ChildrenCanSuspend", "rAY8g_8YQ_default", "collection1", "paginationInfo1", "loadMore1", "index1", "PathVariablesContext", "collection", "paginationInfo", "index", "resolvedLinks12", "resolvedLinks13", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
