{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/vZEC8ZYJjT4hgXUBu2I2/zvekYumspIZYBkm39prh/d1UMVyg8b.js", "ssg:https://framerusercontent.com/modules/86OVjrOBqwoKigZcdVuS/zRNLwmq4DzyFeBVF87Va/N_pE_Csvp.js", "ssg:https://framerusercontent.com/modules/Gt5aNUu9zMMc3KzlUtXk/u28r3DPPslAF4A7WPaqp/V_DuaWlqo.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{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={}));// 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 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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?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!==null&&rawProgressValue!==void 0?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!==null&&startTime!==void 0?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//     !isOnCanvas\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!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"CUSTOM;Roobert SemiBold\"]);export const fonts=[{family:\"Roobert SemiBold\",moduleAsset:{localModuleIdentifier:\"local-module:css/d1UMVyg8b:default\",url:\"assets/AiqfYO8TwJUzhvrGqxO3tDFyvE.woff2\"},url:new URL(\"assets/AiqfYO8TwJUzhvrGqxO3tDFyvE.woff2\",\"https://framerusercontent.com/modules/vZEC8ZYJjT4hgXUBu2I2/zvekYumspIZYBkm39prh/d1UMVyg8b.js\").href}];export const css=['.framer-2xsp3 .framer-styles-preset-5kx373:not(.rich-text-wrapper), .framer-2xsp3 .framer-styles-preset-5kx373.rich-text-wrapper h3 { --framer-font-family: \"Roobert SemiBold\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -1px; --framer-line-height: 140%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-2xsp3 .framer-styles-preset-5kx373:not(.rich-text-wrapper), .framer-2xsp3 .framer-styles-preset-5kx373.rich-text-wrapper h3 { --framer-font-family: \"Roobert SemiBold\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -1px; --framer-line-height: 140%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-2xsp3 .framer-styles-preset-5kx373:not(.rich-text-wrapper), .framer-2xsp3 .framer-styles-preset-5kx373.rich-text-wrapper h3 { --framer-font-family: \"Roobert SemiBold\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -1px; --framer-line-height: 140%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-2xsp3\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1249b65)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useActiveVariantCallback,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/vZEC8ZYJjT4hgXUBu2I2/zvekYumspIZYBkm39prh/d1UMVyg8b.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/o9uW4fWFlvH1UwSrXdgC/TBUsMtjKp5QVfAJiSmkL/FTXKWhUag.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/om0jpquNM5kp3NRJD41H/UXBh7dWqioelUBmCvSum/xZndidUCt.js\";const cycleOrder=[\"rFs4_CNUK\",\"BZogyJlde\",\"VUN_0uWdx\",\"vi7SbA3Bk\",\"lrMkSVHdC\",\"AFAPwztu_\"];const variantClassNames={AFAPwztu_:\"framer-v-ht9f59\",BZogyJlde:\"framer-v-hol8gv\",lrMkSVHdC:\"framer-v-nnqq19\",rFs4_CNUK:\"framer-v-16c22xp\",vi7SbA3Bk:\"framer-v-1q4ffv0\",VUN_0uWdx:\"framer-v-18hnf63\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const transformTemplate=(_,t)=>`translateY(-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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Mobile Quote 1\":\"vi7SbA3Bk\",\"Mobile Quote 2\":\"lrMkSVHdC\",\"Mobile Quote 3\":\"AFAPwztu_\",\"Quote 1\":\"rFs4_CNUK\",\"Quote 2\":\"BZogyJlde\",\"Quote 3\":\"VUN_0uWdx\"};const getProps=({background,height,id,logoStripe,quote1,quote1JobTitle,quote1Logo,quote1Name,quote2,quote2JobTitle,quote2Logo,quote2Name,quote3,quote3JobTitle,quote3Logo,quote3Name,width,...props})=>{var ref,ref1,ref2,ref3,ref4,ref5,ref6,ref7,ref8,ref9,ref10,ref11,_variant,ref12,ref13,ref14;return{...props,bEQZKWir2:(ref=quote2JobTitle!==null&&quote2JobTitle!==void 0?quote2JobTitle:props.bEQZKWir2)!==null&&ref!==void 0?ref:\"Engineer, Construsoft\",g5wYMmgHm:(ref1=quote1Logo!==null&&quote1Logo!==void 0?quote1Logo:props.g5wYMmgHm)!==null&&ref1!==void 0?ref1:{src:\"https://framerusercontent.com/images/WM6ibfKz38L4r6lS3IYSmRyUvxQ.png\"},gp1cDkodR:(ref2=quote3Name!==null&&quote3Name!==void 0?quote3Name:props.gp1cDkodR)!==null&&ref2!==void 0?ref2:\"Jason Walter\",jCzBTWMa5:(ref3=quote1JobTitle!==null&&quote1JobTitle!==void 0?quote1JobTitle:props.jCzBTWMa5)!==null&&ref3!==void 0?ref3:\"Engineer, Construsoft\",l4NueJF62:(ref4=quote2Name!==null&&quote2Name!==void 0?quote2Name:props.l4NueJF62)!==null&&ref4!==void 0?ref4:\"Jason Walter\",LJ26Zeu1v:(ref5=quote3Logo!==null&&quote3Logo!==void 0?quote3Logo:props.LJ26Zeu1v)!==null&&ref5!==void 0?ref5:{src:\"https://framerusercontent.com/images/85lAH12uig4pQg3DNEZG88uXbto.png\"},MI28vwkdF:(ref6=logoStripe!==null&&logoStripe!==void 0?logoStripe:props.MI28vwkdF)!==null&&ref6!==void 0?ref6:true,NeuAiBNo8:(ref7=quote2Logo!==null&&quote2Logo!==void 0?quote2Logo:props.NeuAiBNo8)!==null&&ref7!==void 0?ref7:{src:\"https://framerusercontent.com/images/m8KZk68WuVZZ4e6xiy2E0KyVc.png\"},QUheLSWNq:(ref8=quote1Name!==null&&quote1Name!==void 0?quote1Name:props.QUheLSWNq)!==null&&ref8!==void 0?ref8:\"Jason Walter\",tKZ1ukokB:(ref9=quote3JobTitle!==null&&quote3JobTitle!==void 0?quote3JobTitle:props.tKZ1ukokB)!==null&&ref9!==void 0?ref9:\"Engineer, Construsoft\",tNCVpA4lr:(ref10=quote3!==null&&quote3!==void 0?quote3:props.tNCVpA4lr)!==null&&ref10!==void 0?ref10:\"\u201CPartnerships are the best way to promote innovation and sustainability\u201D\",V7FNrJ5fr:(ref11=quote2!==null&&quote2!==void 0?quote2:props.V7FNrJ5fr)!==null&&ref11!==void 0?ref11:\"Its products might be small, but make a massive difference in installations. From clamps to brackets, from struts to fasteners, from cable ties to roof supports.\",variant:(ref12=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref12!==void 0?ref12:\"rFs4_CNUK\",XQ3aNAwBD:(ref13=quote1!==null&&quote1!==void 0?quote1:props.XQ3aNAwBD)!==null&&ref13!==void 0?ref13:\"\u201CPartnerships are the best way to promote innovation and sustainability\u201D\",yFNGYRU5R:(ref14=background!==null&&background!==void 0?background:props.yFNGYRU5R)!==null&&ref14!==void 0?ref14:'var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, rgb(241, 247, 253)) /* {\"name\":\"Mist Blue\"} */'};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,MI28vwkdF,yFNGYRU5R,XQ3aNAwBD,QUheLSWNq,jCzBTWMa5,g5wYMmgHm,V7FNrJ5fr,l4NueJF62,bEQZKWir2,NeuAiBNo8,tNCVpA4lr,gp1cDkodR,tKZ1ukokB,LJ26Zeu1v,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"rFs4_CNUK\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1wq4a7d=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"BZogyJlde\"),6e3);});const onAppear9nxkru=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"VUN_0uWdx\"),6e3);});const onAppear15rinp0=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rFs4_CNUK\"),6e3);});const onAppearys6oy6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lrMkSVHdC\"),6e3);});const onAppeari1qz1p=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"AFAPwztu_\"),6e3);});const onTaplaca0q=activeVariantCallback(async(...args)=>{setVariant(\"rFs4_CNUK\");});const onTap1irgabs=activeVariantCallback(async(...args)=>{setVariant(\"vi7SbA3Bk\");});const onTap1k4zm5w=activeVariantCallback(async(...args)=>{setVariant(\"BZogyJlde\");});const onTap1vcuhg1=activeVariantCallback(async(...args)=>{setVariant(\"lrMkSVHdC\");});const onTap1yt99uy=activeVariantCallback(async(...args)=>{setVariant(\"VUN_0uWdx\");});const onTap1wa5unu=activeVariantCallback(async(...args)=>{setVariant(\"AFAPwztu_\");});useOnVariantChange(baseVariant,{AFAPwztu_:onAppear15rinp0,BZogyJlde:onAppear9nxkru,default:onAppear1wq4a7d,lrMkSVHdC:onAppeari1qz1p,vi7SbA3Bk:onAppearys6oy6,VUN_0uWdx:onAppear15rinp0});const isDisplayed=()=>{if([\"VUN_0uWdx\",\"AFAPwztu_\"].includes(baseVariant))return isSet(tNCVpA4lr);return true;};const isDisplayed1=()=>{if([\"vi7SbA3Bk\",\"lrMkSVHdC\",\"AFAPwztu_\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-BXcDl\",sharedStyle.className,sharedStyle1.className,sharedStyle2.className,classNames),style:{display:\"contents\"},children:isDisplayed()&&/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-16c22xp\",className),\"data-framer-name\":\"Quote 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rFs4_CNUK\",ref:ref,style:{backgroundColor:yFNGYRU5R,...style},...addPropertyOverrides({AFAPwztu_:{\"data-framer-name\":\"Mobile Quote 3\"},BZogyJlde:{\"data-framer-name\":\"Quote 2\"},lrMkSVHdC:{\"data-framer-name\":\"Mobile Quote 2\"},vi7SbA3Bk:{\"data-framer-name\":\"Mobile Quote 1\"},VUN_0uWdx:{\"data-framer-name\":\"Quote 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-lyf8io\",layoutDependency:layoutDependency,layoutId:\"TzjxvX8s_\",children:[isDisplayed1()&&/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-ma3woh\",\"data-framer-name\":\"Quote 3\",layoutDependency:layoutDependency,layoutId:\"r_VJtx8Qr\",style:{opacity:0},transformTemplate:transformTemplate,variants:{VUN_0uWdx:{opacity:1}},children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h3,{className:\"framer-styles-preset-5kx373\",\"data-styles-preset\":\"d1UMVyg8b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(42, 75, 240)))\"},children:\"\u201CPartnerships are the best way to promote innovation and sustainability\u201D\"})}),className:\"framer-1jqzb1w\",layoutDependency:layoutDependency,layoutId:\"nYifquGK9\",style:{\"--extracted-a0htzi\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(42, 75, 240))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:tNCVpA4lr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1k982t9\",layoutDependency:layoutDependency,layoutId:\"pFWG157Xm\",children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h5,{className:\"framer-styles-preset-1apt68q\",\"data-styles-preset\":\"FTXKWhUag\",style:{\"--framer-text-alignment\":\"center\"},children:\"Jason Walter\"})}),className:\"framer-umg40s\",layoutDependency:layoutDependency,layoutId:\"jeL5qdVKp\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:gp1cDkodR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Engineer, Construsoft\"})}),className:\"framer-1ceyob5\",layoutDependency:layoutDependency,layoutId:\"y7vd600qD\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:tKZ1ukokB,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-35ji7z\",\"data-framer-name\":\"Quote 2\",layoutDependency:layoutDependency,layoutId:\"SLwKY_x90\",style:{opacity:0},transformTemplate:transformTemplate,variants:{BZogyJlde:{opacity:1}},children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h3,{className:\"framer-styles-preset-5kx373\",\"data-styles-preset\":\"d1UMVyg8b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(42, 75, 240)))\"},children:\"Its products might be small, but make a massive difference in installations. From clamps to brackets, from struts to fasteners, from cable ties to roof supports.\"})}),className:\"framer-t42jt2\",layoutDependency:layoutDependency,layoutId:\"ovZPMH2R4\",style:{\"--extracted-a0htzi\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(42, 75, 240))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:V7FNrJ5fr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-ff4fw9\",layoutDependency:layoutDependency,layoutId:\"RxdQ6DbdF\",children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h5,{className:\"framer-styles-preset-1apt68q\",\"data-styles-preset\":\"FTXKWhUag\",style:{\"--framer-text-alignment\":\"center\"},children:\"Jason Walter\"})}),className:\"framer-1m9oa1t\",layoutDependency:layoutDependency,layoutId:\"gggF0GRBZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:l4NueJF62,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Engineer, Construsoft\"})}),className:\"framer-3e70u\",layoutDependency:layoutDependency,layoutId:\"ylILJucQA\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:bEQZKWir2,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1r1v97s\",\"data-framer-name\":\"Quote 1\",layoutDependency:layoutDependency,layoutId:\"qprbvx1Au\",style:{opacity:1},transformTemplate:transformTemplate,variants:{BZogyJlde:{opacity:0},VUN_0uWdx:{opacity:0}},...addPropertyOverrides({AFAPwztu_:{transformTemplate:undefined},lrMkSVHdC:{transformTemplate:undefined},vi7SbA3Bk:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h3,{className:\"framer-styles-preset-5kx373\",\"data-styles-preset\":\"d1UMVyg8b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(42, 75, 240)))\"},children:\"\u201CPartnerships are the best way to promote innovation and sustainability\u201D\"})}),className:\"framer-1i4co3t\",layoutDependency:layoutDependency,layoutId:\"Xx_MIPfqq\",style:{\"--extracted-a0htzi\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(42, 75, 240))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:XQ3aNAwBD,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AFAPwztu_:{text:tNCVpA4lr},lrMkSVHdC:{text:V7FNrJ5fr}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-s0e2ye\",layoutDependency:layoutDependency,layoutId:\"jG1y9KaZ2\",children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h5,{className:\"framer-styles-preset-1apt68q\",\"data-styles-preset\":\"FTXKWhUag\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30)))\"},children:\"Jason Walter\"})}),className:\"framer-px0s34\",layoutDependency:layoutDependency,layoutId:\"iCxizTkSH\",style:{\"--extracted-1lwpl3i\":\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:QUheLSWNq,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AFAPwztu_:{text:gp1cDkodR},lrMkSVHdC:{text:l4NueJF62}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Engineer, Construsoft\"})}),className:\"framer-fhn869\",layoutDependency:layoutDependency,layoutId:\"cQ968wvKR\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:jCzBTWMa5,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AFAPwztu_:{text:tKZ1ukokB},lrMkSVHdC:{text:bEQZKWir2}},baseVariant,gestureVariant)})]})]})]}),MI28vwkdF&&/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-83qm2s\",\"data-framer-name\":\"Logos\",layoutDependency:layoutDependency,layoutId:\"lqA8DDVru\",children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-cmikax\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZDLP1Iitt\",onTap:onTaplaca0q,style:{backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22,opacity:1},variants:{AFAPwztu_:{opacity:.4},BZogyJlde:{opacity:.4},lrMkSVHdC:{opacity:.4},VUN_0uWdx:{opacity:.4}},...addPropertyOverrides({AFAPwztu_:{onTap:onTap1irgabs},lrMkSVHdC:{onTap:onTap1irgabs},vi7SbA3Bk:{onTap:onTap1irgabs}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:235,pixelHeight:240,pixelWidth:470,sizes:\"126px\",...toResponsiveImage(g5wYMmgHm)},className:\"framer-17kz3ob\",\"data-framer-name\":\"logo_construsoft_1\",layoutDependency:layoutDependency,layoutId:\"FNq58kHmh\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-5tvn3c\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UIq9r4_1X\",onTap:onTap1k4zm5w,style:{backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22,opacity:.4},variants:{BZogyJlde:{opacity:1},lrMkSVHdC:{opacity:1}},...addPropertyOverrides({AFAPwztu_:{onTap:onTap1vcuhg1},lrMkSVHdC:{onTap:onTap1vcuhg1},vi7SbA3Bk:{onTap:onTap1vcuhg1}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:235,pixelHeight:240,pixelWidth:470,sizes:\"126px\",...toResponsiveImage(NeuAiBNo8)},className:\"framer-1hkb6ex\",\"data-framer-name\":\"Logo_Platform_78_Black_White\",layoutDependency:layoutDependency,layoutId:\"hKgkIsZJi\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}})}),isSet(tNCVpA4lr)&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1eapqii\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ec2KxP7KA\",onTap:onTap1yt99uy,style:{backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22,opacity:.4},variants:{AFAPwztu_:{opacity:1},VUN_0uWdx:{opacity:1}},...addPropertyOverrides({AFAPwztu_:{onTap:onTap1wa5unu},lrMkSVHdC:{onTap:onTap1wa5unu},vi7SbA3Bk:{onTap:onTap1wa5unu}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:120,intrinsicWidth:235,pixelHeight:240,pixelWidth:470,sizes:\"126px\",...toResponsiveImage(LJ26Zeu1v)},className:\"framer-1mntz3t\",\"data-framer-name\":\"logo_igg\",layoutDependency:layoutDependency,layoutId:\"MKGd78fo8\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}})})]})]})})})});});const css=['.framer-BXcDl [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BXcDl .framer-1ayonrj { display: block; }\",\".framer-BXcDl .framer-16c22xp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-BXcDl .framer-lyf8io { flex: none; height: 320px; max-width: 800px; overflow: visible; position: relative; width: 100%; }\",\".framer-BXcDl .framer-ma3woh, .framer-BXcDl .framer-35ji7z, .framer-BXcDl .framer-1r1v97s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: 100%; }\",\".framer-BXcDl .framer-1jqzb1w, .framer-BXcDl .framer-umg40s, .framer-BXcDl .framer-1ceyob5, .framer-BXcDl .framer-t42jt2, .framer-BXcDl .framer-1m9oa1t, .framer-BXcDl .framer-3e70u, .framer-BXcDl .framer-1i4co3t, .framer-BXcDl .framer-px0s34, .framer-BXcDl .framer-fhn869 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BXcDl .framer-1k982t9, .framer-BXcDl .framer-ff4fw9, .framer-BXcDl .framer-s0e2ye { 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; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BXcDl .framer-83qm2s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BXcDl .framer-cmikax, .framer-BXcDl .framer-5tvn3c, .framer-BXcDl .framer-1eapqii { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 4px 4px 4px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-BXcDl .framer-17kz3ob, .framer-BXcDl .framer-1mntz3t { aspect-ratio: 1.9583333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 126px; }\",\".framer-BXcDl .framer-1hkb6ex { flex: none; height: 65px; overflow: visible; position: relative; width: 126px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BXcDl .framer-16c22xp, .framer-BXcDl .framer-ma3woh, .framer-BXcDl .framer-1k982t9, .framer-BXcDl .framer-35ji7z, .framer-BXcDl .framer-ff4fw9, .framer-BXcDl .framer-1r1v97s, .framer-BXcDl .framer-s0e2ye, .framer-BXcDl .framer-83qm2s, .framer-BXcDl .framer-cmikax, .framer-BXcDl .framer-5tvn3c, .framer-BXcDl .framer-1eapqii { gap: 0px; } .framer-BXcDl .framer-16c22xp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-BXcDl .framer-16c22xp > :first-child, .framer-BXcDl .framer-ma3woh > :first-child, .framer-BXcDl .framer-1k982t9 > :first-child, .framer-BXcDl .framer-35ji7z > :first-child, .framer-BXcDl .framer-ff4fw9 > :first-child, .framer-BXcDl .framer-1r1v97s > :first-child, .framer-BXcDl .framer-s0e2ye > :first-child { margin-top: 0px; } .framer-BXcDl .framer-16c22xp > :last-child, .framer-BXcDl .framer-ma3woh > :last-child, .framer-BXcDl .framer-1k982t9 > :last-child, .framer-BXcDl .framer-35ji7z > :last-child, .framer-BXcDl .framer-ff4fw9 > :last-child, .framer-BXcDl .framer-1r1v97s > :last-child, .framer-BXcDl .framer-s0e2ye > :last-child { margin-bottom: 0px; } .framer-BXcDl .framer-ma3woh > *, .framer-BXcDl .framer-35ji7z > *, .framer-BXcDl .framer-1r1v97s > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BXcDl .framer-1k982t9 > *, .framer-BXcDl .framer-ff4fw9 > *, .framer-BXcDl .framer-s0e2ye > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BXcDl .framer-83qm2s > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-BXcDl .framer-83qm2s > :first-child, .framer-BXcDl .framer-cmikax > :first-child, .framer-BXcDl .framer-5tvn3c > :first-child, .framer-BXcDl .framer-1eapqii > :first-child { margin-left: 0px; } .framer-BXcDl .framer-83qm2s > :last-child, .framer-BXcDl .framer-cmikax > :last-child, .framer-BXcDl .framer-5tvn3c > :last-child, .framer-BXcDl .framer-1eapqii > :last-child { margin-right: 0px; } .framer-BXcDl .framer-cmikax > *, .framer-BXcDl .framer-5tvn3c > *, .framer-BXcDl .framer-1eapqii > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-BXcDl.framer-v-hol8gv .framer-ma3woh, .framer-BXcDl.framer-v-hol8gv .framer-35ji7z, .framer-BXcDl.framer-v-hol8gv .framer-1r1v97s, .framer-BXcDl.framer-v-18hnf63 .framer-ma3woh, .framer-BXcDl.framer-v-18hnf63 .framer-35ji7z, .framer-BXcDl.framer-v-18hnf63 .framer-1r1v97s { max-width: 800px; }\",\".framer-BXcDl.framer-v-1q4ffv0 .framer-16c22xp, .framer-BXcDl.framer-v-nnqq19 .framer-16c22xp, .framer-BXcDl.framer-v-ht9f59 .framer-16c22xp { justify-content: flex-end; width: 390px; }\",\".framer-BXcDl.framer-v-1q4ffv0 .framer-lyf8io, .framer-BXcDl.framer-v-nnqq19 .framer-lyf8io, .framer-BXcDl.framer-v-ht9f59 .framer-lyf8io { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; }\",\".framer-BXcDl.framer-v-1q4ffv0 .framer-1r1v97s, .framer-BXcDl.framer-v-nnqq19 .framer-1r1v97s, .framer-BXcDl.framer-v-ht9f59 .framer-1r1v97s { left: unset; position: relative; top: unset; }\",\".framer-BXcDl.framer-v-1q4ffv0 .framer-1i4co3t, .framer-BXcDl.framer-v-nnqq19 .framer-1i4co3t, .framer-BXcDl.framer-v-ht9f59 .framer-1i4co3t { min-height: 250px; }\",\".framer-BXcDl.framer-v-1q4ffv0 .framer-83qm2s, .framer-BXcDl.framer-v-nnqq19 .framer-83qm2s, .framer-BXcDl.framer-v-ht9f59 .framer-83qm2s { flex-direction: column; gap: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BXcDl.framer-v-1q4ffv0 .framer-lyf8io, .framer-BXcDl.framer-v-1q4ffv0 .framer-83qm2s { gap: 0px; } .framer-BXcDl.framer-v-1q4ffv0 .framer-lyf8io > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BXcDl.framer-v-1q4ffv0 .framer-lyf8io > :first-child, .framer-BXcDl.framer-v-1q4ffv0 .framer-83qm2s > :first-child { margin-top: 0px; } .framer-BXcDl.framer-v-1q4ffv0 .framer-lyf8io > :last-child, .framer-BXcDl.framer-v-1q4ffv0 .framer-83qm2s > :last-child { margin-bottom: 0px; } .framer-BXcDl.framer-v-1q4ffv0 .framer-83qm2s > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BXcDl.framer-v-nnqq19 .framer-lyf8io, .framer-BXcDl.framer-v-nnqq19 .framer-83qm2s { gap: 0px; } .framer-BXcDl.framer-v-nnqq19 .framer-lyf8io > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BXcDl.framer-v-nnqq19 .framer-lyf8io > :first-child, .framer-BXcDl.framer-v-nnqq19 .framer-83qm2s > :first-child { margin-top: 0px; } .framer-BXcDl.framer-v-nnqq19 .framer-lyf8io > :last-child, .framer-BXcDl.framer-v-nnqq19 .framer-83qm2s > :last-child { margin-bottom: 0px; } .framer-BXcDl.framer-v-nnqq19 .framer-83qm2s > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BXcDl.framer-v-ht9f59 .framer-lyf8io, .framer-BXcDl.framer-v-ht9f59 .framer-83qm2s { gap: 0px; } .framer-BXcDl.framer-v-ht9f59 .framer-lyf8io > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BXcDl.framer-v-ht9f59 .framer-lyf8io > :first-child, .framer-BXcDl.framer-v-ht9f59 .framer-83qm2s > :first-child { margin-top: 0px; } .framer-BXcDl.framer-v-ht9f59 .framer-lyf8io > :last-child, .framer-BXcDl.framer-v-ht9f59 .framer-83qm2s > :last-child { margin-bottom: 0px; } .framer-BXcDl.framer-v-ht9f59 .framer-83qm2s > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 432\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"BZogyJlde\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"VUN_0uWdx\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"vi7SbA3Bk\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"lrMkSVHdC\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"AFAPwztu_\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerVariables {\"MI28vwkdF\":\"logoStripe\",\"yFNGYRU5R\":\"background\",\"XQ3aNAwBD\":\"quote1\",\"QUheLSWNq\":\"quote1Name\",\"jCzBTWMa5\":\"quote1JobTitle\",\"g5wYMmgHm\":\"quote1Logo\",\"V7FNrJ5fr\":\"quote2\",\"l4NueJF62\":\"quote2Name\",\"bEQZKWir2\":\"quote2JobTitle\",\"NeuAiBNo8\":\"quote2Logo\",\"tNCVpA4lr\":\"quote3\",\"gp1cDkodR\":\"quote3Name\",\"tKZ1ukokB\":\"quote3JobTitle\",\"LJ26Zeu1v\":\"quote3Logo\"}\n * @framerImmutableVariables false\n */ const FramerN_pE_Csvp=withCSS(Component,css,\"framer-BXcDl\");export default FramerN_pE_Csvp;FramerN_pE_Csvp.displayName=\"Quote Carousel\";FramerN_pE_Csvp.defaultProps={height:432,width:1e3};addPropertyControls(FramerN_pE_Csvp,{variant:{options:[\"rFs4_CNUK\",\"BZogyJlde\",\"VUN_0uWdx\",\"vi7SbA3Bk\",\"lrMkSVHdC\",\"AFAPwztu_\"],optionTitles:[\"Quote 1\",\"Quote 2\",\"Quote 3\",\"Mobile Quote 1\",\"Mobile Quote 2\",\"Mobile Quote 3\"],title:\"Variant\",type:ControlType.Enum},MI28vwkdF:{defaultValue:true,title:\"Logo Stripe\",type:ControlType.Boolean},yFNGYRU5R:{defaultValue:'var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, rgb(241, 247, 253)) /* {\"name\":\"Mist Blue\"} */',title:\"Background\",type:ControlType.Color},XQ3aNAwBD:{defaultValue:\"\u201CPartnerships are the best way to promote innovation and sustainability\u201D\",displayTextArea:false,title:\"Quote 1\",type:ControlType.String},QUheLSWNq:{defaultValue:\"Jason Walter\",displayTextArea:false,title:\"Quote 1 name\",type:ControlType.String},jCzBTWMa5:{defaultValue:\"Engineer, Construsoft\",displayTextArea:false,title:\"Quote 1 job title\",type:ControlType.String},g5wYMmgHm:{__defaultAssetReference:\"data:framer/asset-reference,WM6ibfKz38L4r6lS3IYSmRyUvxQ.png?originalFilename=logo-construsoft+1.png&preferredSize=auto\",title:\"Quote 1 logo\",type:ControlType.ResponsiveImage},V7FNrJ5fr:{defaultValue:\"Its products might be small, but make a massive difference in installations. From clamps to brackets, from struts to fasteners, from cable ties to roof supports.\",displayTextArea:false,title:\"Quote 2\",type:ControlType.String},l4NueJF62:{defaultValue:\"Jason Walter\",displayTextArea:false,title:\"Quote 2 name\",type:ControlType.String},bEQZKWir2:{defaultValue:\"Engineer, Construsoft\",displayTextArea:false,title:\"Quote 2 job title\",type:ControlType.String},NeuAiBNo8:{__defaultAssetReference:\"data:framer/asset-reference,m8KZk68WuVZZ4e6xiy2E0KyVc.png?originalFilename=Logo+Platform+78+-+Black_White.png&preferredSize=auto\",title:\"Quote 2 logo\",type:ControlType.ResponsiveImage},tNCVpA4lr:{defaultValue:\"\u201CPartnerships are the best way to promote innovation and sustainability\u201D\",displayTextArea:false,title:\"Quote 3\",type:ControlType.String},gp1cDkodR:{defaultValue:\"Jason Walter\",displayTextArea:false,title:\"Quote 3 name\",type:ControlType.String},tKZ1ukokB:{defaultValue:\"Engineer, Construsoft\",placeholder:\"\",title:\"Quote 3 job title\",type:ControlType.String},LJ26Zeu1v:{__defaultAssetReference:\"data:framer/asset-reference,85lAH12uig4pQg3DNEZG88uXbto.png?originalFilename=logo-igg.png&preferredSize=auto\",title:\"Quote 3 logo\",type:ControlType.ResponsiveImage}});addFonts(FramerN_pE_Csvp,[...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerN_pE_Csvp\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"432\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1000\",\"framerImmutableVariables\":\"false\",\"framerVariables\":\"{\\\"MI28vwkdF\\\":\\\"logoStripe\\\",\\\"yFNGYRU5R\\\":\\\"background\\\",\\\"XQ3aNAwBD\\\":\\\"quote1\\\",\\\"QUheLSWNq\\\":\\\"quote1Name\\\",\\\"jCzBTWMa5\\\":\\\"quote1JobTitle\\\",\\\"g5wYMmgHm\\\":\\\"quote1Logo\\\",\\\"V7FNrJ5fr\\\":\\\"quote2\\\",\\\"l4NueJF62\\\":\\\"quote2Name\\\",\\\"bEQZKWir2\\\":\\\"quote2JobTitle\\\",\\\"NeuAiBNo8\\\":\\\"quote2Logo\\\",\\\"tNCVpA4lr\\\":\\\"quote3\\\",\\\"gp1cDkodR\\\":\\\"quote3Name\\\",\\\"tKZ1ukokB\\\":\\\"quote3JobTitle\\\",\\\"LJ26Zeu1v\\\":\\\"quote3Logo\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"BZogyJlde\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"VUN_0uWdx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"vi7SbA3Bk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"lrMkSVHdC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"AFAPwztu_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./N_pE_Csvp.map", "// Generated by Framer (63f9d4a)\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,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bwgDNfOkuRQlrlKseDFD/SlideShow.js\";import ListItemBadge from\"#framer/local/canvasComponent/bkf_3iqYh/bkf_3iqYh.js\";import BlogCard from\"#framer/local/canvasComponent/FIQUCdJNE/FIQUCdJNE.js\";import FeatureCard from\"#framer/local/canvasComponent/Kym4ifyAB/Kym4ifyAB.js\";import Footer from\"#framer/local/canvasComponent/M82dauGNX/M82dauGNX.js\";import QuoteCarousel from\"#framer/local/canvasComponent/N_pE_Csvp/N_pE_Csvp.js\";import NavbarDark from\"#framer/local/canvasComponent/NJQgPrjUI/NJQgPrjUI.js\";import Button from\"#framer/local/canvasComponent/Tnz4seCKc/Tnz4seCKc.js\";import ENDCTA from\"#framer/local/canvasComponent/v7wr_bkV5/v7wr_bkV5.js\";import CaseStudyCard from\"#framer/local/canvasComponent/VFC6fq4Iy/VFC6fq4Iy.js\";import Blog from\"#framer/local/collection/nWZy3UnCE/nWZy3UnCE.js\";import CaseStudy from\"#framer/local/collection/OqfvEJYp3/OqfvEJYp3.js\";import*as sharedStyle4 from\"#framer/local/css/AAFpP0Jli/AAFpP0Jli.js\";import*as sharedStyle3 from\"#framer/local/css/F0zbRqGes/F0zbRqGes.js\";import*as sharedStyle5 from\"#framer/local/css/ND6XVLnoy/ND6XVLnoy.js\";import*as sharedStyle2 from\"#framer/local/css/pbkah0okA/pbkah0okA.js\";import*as sharedStyle1 from\"#framer/local/css/puB8kY46u/puB8kY46u.js\";import*as sharedStyle6 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import metadataProvider from\"#framer/local/webPageMetadata/V_DuaWlqo/V_DuaWlqo.js\";const NavbarDarkFonts=getFonts(NavbarDark);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const VideoFonts=getFonts(Video);const SlideshowFonts=getFonts(Slideshow);const FeatureCardFonts=getFonts(FeatureCard);const CaseStudyCardFonts=getFonts(CaseStudyCard);const ListItemBadgeFonts=getFonts(ListItemBadge);const QuoteCarouselFonts=getFonts(QuoteCarousel);const BlogCardFonts=getFonts(BlogCard);const ENDCTAFonts=getFonts(ENDCTA);const FooterFonts=getFonts(Footer);const breakpoints={DMYDBRKuv:\"(max-width: 809px)\",fJ6YHVS_P:\"(min-width: 1200px) and (max-width: 1679px)\",oCgjgs3ub:\"(min-width: 810px) and (max-width: 1199px)\",YBKX6VqqL:\"(min-width: 1680px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-hAQGD\";const variantClassNames={DMYDBRKuv:\"framer-v-81e7uw\",fJ6YHVS_P:\"framer-v-1xxvuzj\",oCgjgs3ub:\"framer-v-xq0enl\",YBKX6VqqL:\"framer-v-ije9bh\"};const transition1={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:100};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"fJ6YHVS_P\",Large:\"YBKX6VqqL\",Phone:\"DMYDBRKuv\",Tablet:\"oCgjgs3ub\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"fJ6YHVS_P\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,TyxD043ytbkf_3iqYh,VAZo35BIQH5l2S9K7N,Cz4FAy8HJH5l2S9K7N,OB2Ki7bdwH5l2S9K7N,dtamzP7piH5l2S9K7N,luwqngcTxH5l2S9K7N,M3RWq1SVnH5l2S9K7N,idH5l2S9K7N,PPeTwl1b8HxCW43FBY,DD39DBmBHHxCW43FBY,kBAWMceDjHxCW43FBY,YSKHrdVc1HxCW43FBY,ivFLyaMNqHxCW43FBY,EZue1CzWPHxCW43FBY,Tu_Pd0zTZHxCW43FBY,idHxCW43FBY,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-hAQGD`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-hAQGD`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"olTn6GMzI\");const dynamicRef=useDynamicRefs();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"DMYDBRKuv\")return false;return true;};const activeLocaleCode=useLocaleCode();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"DMYDBRKuv\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"fJ6YHVS_P\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1xxvuzj\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1704y2a-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{variant:\"b1qyyUdYF\"},oCgjgs3ub:{variant:\"b1qyyUdYF\"}},children:/*#__PURE__*/_jsx(NavbarDark,{height:\"100%\",id:\"DPR2Y1xIO\",layoutId:\"DPR2Y1xIO\",style:{height:\"100%\",width:\"100%\"},variant:\"Wu1rA6ANS\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j3czli\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:150,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11uzieh\",\"data-framer-name\":\"Bg shape\",name:\"Bg shape\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:692,loading:getLoadingLazyAtYPosition(-94),pixelHeight:1e3,pixelWidth:692,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/p1zEvAX6uMvg5Otbx6DvKNIc5A.png\"}},oCgjgs3ub:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:692,loading:getLoadingLazyAtYPosition(-111),pixelHeight:1e3,pixelWidth:692,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/p1zEvAX6uMvg5Otbx6DvKNIc5A.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:692,loading:getLoadingLazyAtYPosition(-161),pixelHeight:1e3,pixelWidth:692,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/p1zEvAX6uMvg5Otbx6DvKNIc5A.png\"},className:\"framer-wa0l4t\",\"data-framer-name\":\"header_half_circle_2x\",name:\"header_half_circle_2x\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rlxfzl\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6rlr1r\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-d2tt67\",\"data-framer-appear-id\":\"d2tt67\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13c10ru\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\"},children:\"Ramp up sales, digitise & run error-free production.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\"},children:\"Ramp up sales, digitise & run error-free production.\"})}),className:\"framer-1ll3hak\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\"},children:[\"Packhunt for Factories is a system, built around a \",/*#__PURE__*/_jsx(\"strong\",{children:\"3D configurator\"}),\" to connect your customer needs to production without mistakes and digitise your factory.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-color\":\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\"},children:[\"Packhunt for Factories is a system, built around a \",/*#__PURE__*/_jsx(\"strong\",{children:\"3D configurator\"}),\" to connect your customer needs to production without mistakes and digitise your factory.\"]})}),className:\"framer-7kuomh\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14jpyng\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3p9nj8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{gHeOvXgAq:\"https://meetings-eu1.hubspot.com/will-de-hoon\",Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:\"Book a demo\",id:\"p3MzgTWVe\",L6BYhkXEg:false,layoutId:\"p3MzgTWVe\",Uwhubicpx:false,variant:\"zMIqz4YH_\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined},{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined},{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined},{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-les99u-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{gHeOvXgAq:resolvedLinks[2],style:{width:\"100%\"}},oCgjgs3ub:{gHeOvXgAq:resolvedLinks[1]},YBKX6VqqL:{gHeOvXgAq:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{gHeOvXgAq:resolvedLinks[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:\"Get in touch\",id:\"Hoe2Fc25d\",L6BYhkXEg:false,layoutId:\"Hoe2Fc25d\",Uwhubicpx:false,variant:\"b48suxf0R\",width:\"100%\"})})})})})]})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zrxymv\",\"data-framer-name\":\"Social proof\",name:\"Social proof\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f2nugq\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zyrzia\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vuvj9g\",\"data-framer-name\":\"Frame 48097309\",name:\"Frame 48097309\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(25, 24, 31)\"},children:\"Partners we work with\"})}),className:\"framer-1gnbmq4\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1s52uxm\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"Frame\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.8\" d=\"M18.75 8.24993V17.9999C18.75 18.1988 18.671 18.3896 18.5303 18.5303C18.3897 18.6709 18.1989 18.7499 18 18.7499H8.24999C8.05108 18.7499 7.86031 18.6709 7.71966 18.5303C7.57901 18.3896 7.49999 18.1988 7.49999 17.9999C7.49999 17.801 7.57901 17.6103 7.71966 17.4696C7.86031 17.3289 8.05108 17.2499 8.24999 17.2499H16.1897L5.46936 6.53055C5.32863 6.38982 5.24957 6.19895 5.24957 5.99993C5.24957 5.80091 5.32863 5.61003 5.46936 5.4693C5.6101 5.32857 5.80097 5.24951 5.99999 5.24951C6.19901 5.24951 6.38988 5.32857 6.53062 5.4693L17.25 16.1896V8.24993C17.25 8.05102 17.329 7.86025 17.4697 7.7196C17.6103 7.57895 17.8011 7.49993 18 7.49993C18.1989 7.49993 18.3897 7.57895 18.5303 7.7196C18.671 7.86025 18.75 8.05102 18.75 8.24993Z\" fill=\"#1C1C21\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rwa45e-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:42,height:\"100%\",hoverFactor:1,id:\"wuRPJK6LE\",layoutId:\"wuRPJK6LE\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:62,intrinsicWidth:120,pixelHeight:62,pixelWidth:120,src:\"https://framerusercontent.com/images/aFRWnH3c465ClGah93iTlM0k.svg\"},className:\"framer-14xhrlm\",\"data-framer-name\":\"logo-construsoft 1\",name:\"logo-construsoft 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:62,intrinsicWidth:120,pixelHeight:62,pixelWidth:120,src:\"https://framerusercontent.com/images/WkSCJJPoEBZRyC3Y4QMXC1tdd4.svg\"},className:\"framer-1p8mvvr\",\"data-framer-name\":\"logo-CYBE 1\",name:\"logo-CYBE 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:62,intrinsicWidth:120,pixelHeight:62,pixelWidth:120,src:\"https://framerusercontent.com/images/FI9RqJ9fM2gpucApjkDCUmp6mU.svg\"},className:\"framer-j935ms\",\"data-framer-name\":\"logo-LBPSIGHT 1\",name:\"logo-LBPSIGHT 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240,intrinsicWidth:470,pixelHeight:240,pixelWidth:470,src:\"https://framerusercontent.com/images/V4iJ7WmgyEubrh0Yr2OeI7iG0.png\"},className:\"framer-qosmtu\",\"data-framer-name\":\"logo-SCIA 1\",name:\"logo-SCIA 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:62,intrinsicWidth:120,pixelHeight:62,pixelWidth:120,src:\"https://framerusercontent.com/images/calqIcW4MoSPOR2IgCrEoZmYA.svg\"},className:\"framer-737x2u\",\"data-framer-name\":\"logo-SCIA 1\",name:\"logo-SCIA 1\"})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ijxdq9\",\"data-framer-name\":\"Pivot\",name:\"Pivot\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uihq91-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Ha9jB2sXK\",isMixedBorderRadius:false,layoutId:\"Ha9jB2sXK\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/RjCjSve4MVE5wvExhcQVvviALE.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rbweq7\",\"data-framer-name\":\"Solutions\",name:\"Solutions\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ubc3db\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1so8u6s\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:[\"Join dozens of companies that digitised their \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-db700996-58b8-482d-a575-3cc0cd33c75c, rgb(255, 121, 65))\"},children:\"sales-to-production\"}),\" processess\"]})}),className:\"framer-1874dhg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11xqnl6\",\"data-styles-preset\":\"F0zbRqGes\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},children:\"Powerful digital solutions tailored for the supply chain to the building industry.\"})}),className:\"framer-19por6p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t7seeq\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sgkisz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{arrowOptions:{arrowFill:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(42, 75, 240))\",arrowGap:10,arrowPadding:-20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:48,showMouseControls:true}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(42, 75, 240))\",arrowGap:10,arrowPadding:-28,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:48,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:.3,effectsPerspective:1e3,effectsRotate:0,effectsScale:.8},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",id:\"qqan4drtc\",intervalControl:6,itemAmount:1,layoutId:\"qqan4drtc\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:16,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14y0ymv\",\"data-framer-name\":\"HVAC by Walraven\",name:\"HVAC by Walraven\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:450,intrinsicWidth:800,pixelHeight:450,pixelWidth:800,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/TyemYcKUa3XrZq4FZlTHQYwYc.gif\"},className:\"framer-wwtt8d\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7j2h41\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ixa47q\",\"data-styles-preset\":\"AAFpP0Jli\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"HVAC unit by Walraven \"})}),className:\"framer-36xi0w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e15g6q\",\"data-framer-name\":\"List item + badge\",name:\"List item + badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p4sgmx\",\"data-styles-preset\":\"ND6XVLnoy\",style:{\"--framer-text-color\":\"var(--variable-reference-TyxD043yt-bkf_3iqYh)\"},children:\"Installations\"})}),className:\"framer-juo5ls\",fonts:[\"Inter\"],style:{\"--variable-reference-TyxD043yt-bkf_3iqYh\":TyxD043ytbkf_3iqYh},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12rfxor\",\"data-framer-name\":\"House extension by De Aanbouw Expert\",name:\"House extension by De Aanbouw Expert\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:425,intrinsicWidth:700,pixelHeight:425,pixelWidth:700,src:\"https://framerusercontent.com/images/sx7j3s02RiWuOfNLoxWw3cowtM.gif\"},className:\"framer-1rq3ubz\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-is303r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ixa47q\",\"data-styles-preset\":\"AAFpP0Jli\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"House extension by De Aanbouw Expert\"})}),className:\"framer-ibucwo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fruz9f\",\"data-framer-name\":\"List item + badge\",name:\"List item + badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p4sgmx\",\"data-styles-preset\":\"ND6XVLnoy\",style:{\"--framer-text-color\":\"var(--variable-reference-TyxD043yt-bkf_3iqYh)\"},children:\"Construction\"})}),className:\"framer-1rcwjjf\",fonts:[\"Inter\"],style:{\"--variable-reference-TyxD043yt-bkf_3iqYh\":TyxD043ytbkf_3iqYh},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hni2o8\",\"data-framer-name\":\"Taludtrap by Neolithic\",name:\"Taludtrap by Neolithic\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:425,intrinsicWidth:700,pixelHeight:425,pixelWidth:700,sizes:\"700px\",src:\"https://framerusercontent.com/images/xreaMpjAoaptsNGbjEgOYfQmNMA.gif\",srcSet:\"https://framerusercontent.com/images/xreaMpjAoaptsNGbjEgOYfQmNMA.gif?scale-down-to=512 512w,https://framerusercontent.com/images/xreaMpjAoaptsNGbjEgOYfQmNMA.gif 700w\"},className:\"framer-10we5h7\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-prahnb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ixa47q\",\"data-styles-preset\":\"AAFpP0Jli\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"3D printed Talud staircase by Neolithic BV\"})}),className:\"framer-i9g0ix\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hteefs\",\"data-framer-name\":\"List item + badge\",name:\"List item + badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p4sgmx\",\"data-styles-preset\":\"ND6XVLnoy\",style:{\"--framer-text-color\":\"var(--variable-reference-TyxD043yt-bkf_3iqYh)\"},children:\"Environmental\"})}),className:\"framer-uh1y3c\",fonts:[\"Inter\"],style:{\"--variable-reference-TyxD043yt-bkf_3iqYh\":TyxD043ytbkf_3iqYh},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kvgez2\",\"data-framer-name\":\"Hardeman wall & roof\",name:\"Hardeman wall & roof\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:924,intrinsicWidth:1638,pixelHeight:924,pixelWidth:1638,sizes:\"700px\",src:\"https://framerusercontent.com/images/GDCo2CmM2apztEQFQiLrNNGyA.png\",srcSet:\"https://framerusercontent.com/images/GDCo2CmM2apztEQFQiLrNNGyA.png?scale-down-to=512 512w,https://framerusercontent.com/images/GDCo2CmM2apztEQFQiLrNNGyA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GDCo2CmM2apztEQFQiLrNNGyA.png 1638w\"},className:\"framer-18zt7pi\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o0wlkz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ixa47q\",\"data-styles-preset\":\"AAFpP0Jli\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Steel hall by Hardeman\"})}),className:\"framer-v9qfav\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18kbc9x\",\"data-framer-name\":\"List item + badge\",name:\"List item + badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p4sgmx\",\"data-styles-preset\":\"ND6XVLnoy\",style:{\"--framer-text-color\":\"var(--variable-reference-TyxD043yt-bkf_3iqYh)\"},children:\"Construction\"})}),className:\"framer-19bqqmu\",fonts:[\"Inter\"],style:{\"--variable-reference-TyxD043yt-bkf_3iqYh\":TyxD043ytbkf_3iqYh},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18271uq\",\"data-framer-name\":\"SlicerXL by Vertico\",name:\"SlicerXL by Vertico\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:1080,pixelWidth:1920,sizes:\"700px\",src:\"https://framerusercontent.com/images/x714O4zOSydvZTk8nTvisPSvY.png\",srcSet:\"https://framerusercontent.com/images/x714O4zOSydvZTk8nTvisPSvY.png?scale-down-to=512 512w,https://framerusercontent.com/images/x714O4zOSydvZTk8nTvisPSvY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/x714O4zOSydvZTk8nTvisPSvY.png 1920w\"},className:\"framer-1ezk14y\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-115wzph\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ixa47q\",\"data-styles-preset\":\"AAFpP0Jli\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"SlicerXL by Vertico\"})}),className:\"framer-s8opyc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lodvk6\",\"data-framer-name\":\"List item + badge\",name:\"List item + badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p4sgmx\",\"data-styles-preset\":\"ND6XVLnoy\",style:{\"--framer-text-color\":\"var(--variable-reference-TyxD043yt-bkf_3iqYh)\"},children:\"3D printing\"})}),className:\"framer-ei1ll3\",fonts:[\"Inter\"],style:{\"--variable-reference-TyxD043yt-bkf_3iqYh\":TyxD043ytbkf_3iqYh},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7zxdys\",\"data-framer-name\":\"SystemFlex\",name:\"SystemFlex\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:433,intrinsicWidth:769,pixelHeight:433,pixelWidth:769,sizes:\"700px\",src:\"https://framerusercontent.com/images/QZKHfio2tDSPr7TJuLWL3i8X0VU.jpg\",srcSet:\"https://framerusercontent.com/images/QZKHfio2tDSPr7TJuLWL3i8X0VU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QZKHfio2tDSPr7TJuLWL3i8X0VU.jpg 769w\"},className:\"framer-10xo9u3\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uqp4tl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ixa47q\",\"data-styles-preset\":\"AAFpP0Jli\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Flexible wall system by SystemFlex\"})}),className:\"framer-n2aflv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j2ye37\",\"data-framer-name\":\"List item + badge\",name:\"List item + badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p4sgmx\",\"data-styles-preset\":\"ND6XVLnoy\",style:{\"--framer-text-color\":\"var(--variable-reference-TyxD043yt-bkf_3iqYh)\"},children:\"Installations\"})}),className:\"framer-1shmee2\",fonts:[\"Inter\"],style:{\"--variable-reference-TyxD043yt-bkf_3iqYh\":TyxD043ytbkf_3iqYh},verticalAlignment:\"top\",withExternalLayout:true})})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y93zka\",\"data-framer-name\":\"Cards section\",name:\"Cards section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pjhopq\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-il0ax9\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, rgb(241, 247, 253))\"},children:[\"Why digitise with \",/*#__PURE__*/_jsx(\"br\",{}),\"Packhunt for Factories?\"]})}),className:\"framer-1p2zslt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2jpme4\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19hsjjj-container\",children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",dcjgPmTEj:\"var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, rgb(241, 247, 253))\",EgEa9J473:\"Explore pages\",fsUmuS24I:\"Connect your systems through Packhunt for Factories and digitise your production fully. Avoid engineering mistakes and endless back-and-forth. Error-free production is feasible.\",Ft3jtRoxf:true,g56HeEMzh:\"Get rid of inefficiencies\",height:\"100%\",HQlsDHpqI:true,id:\"KSS6aD7ln\",J2X4hmGjs:true,layoutId:\"KSS6aD7ln\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"Circuitry\",TClpfvT8l:\"var(--token-bbfa20dd-b173-4795-9375-645ac9777484, rgb(79, 116, 237))\",variant:\"pfo7UfeO_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ft6pqj-container\",children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",dcjgPmTEj:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",EgEa9J473:\"Explore pages\",fsUmuS24I:\"By providing a detailed quote within minutes, our clients shortened their lead times, automated and prevented long delays & get more leads that are committed to buy. \",Ft3jtRoxf:true,g56HeEMzh:\"Sell faster and smarter\",height:\"100%\",HQlsDHpqI:true,id:\"Q3PsjWXND\",J2X4hmGjs:true,layoutId:\"Q3PsjWXND\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"ChartLineUp\",TClpfvT8l:\"var(--token-bbfa20dd-b173-4795-9375-645ac9777484, rgb(79, 116, 237))\",variant:\"pfo7UfeO_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-thry5o-container\",children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",dcjgPmTEj:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",EgEa9J473:\"Explore pages\",fsUmuS24I:\"Customers do not know how their choices impact cost and price of your product. Allow your customer to customise your product in real time and free up your engineers of endless recalculations.\",Ft3jtRoxf:true,g56HeEMzh:\"Customer-centric production\",height:\"100%\",HQlsDHpqI:true,id:\"mq08g32Qf\",J2X4hmGjs:true,layoutId:\"mq08g32Qf\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"UserFocus\",TClpfvT8l:\"var(--token-bbfa20dd-b173-4795-9375-645ac9777484, rgb(79, 116, 237))\",variant:\"pfo7UfeO_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n6r0hj-container\",children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",dcjgPmTEj:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",EgEa9J473:\"Explore pages\",fsUmuS24I:\"Full digitalisation is a big commitment, we understand. Packhunt for Factories is a ready-made solution, that can adjust to the requirements of each business, and introduced gradually.\",Ft3jtRoxf:true,g56HeEMzh:\"Smooth into digital way of working\",height:\"100%\",HQlsDHpqI:true,id:\"S072mtbcX\",J2X4hmGjs:true,layoutId:\"S072mtbcX\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"At\",TClpfvT8l:\"var(--token-bbfa20dd-b173-4795-9375-645ac9777484, rgb(79, 116, 237))\",variant:\"pfo7UfeO_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ysgijd-container\",children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",dcjgPmTEj:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",EgEa9J473:\"Explore pages\",fsUmuS24I:\"Provide a totally new customer experience, access new channel opportunities to sell your products and beat competition.\",Ft3jtRoxf:true,g56HeEMzh:\"Access new business models\",height:\"100%\",HQlsDHpqI:true,id:\"a3sw0bBqG\",J2X4hmGjs:true,layoutId:\"a3sw0bBqG\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"ArrowsOut\",TClpfvT8l:\"var(--token-bbfa20dd-b173-4795-9375-645ac9777484, rgb(79, 116, 237))\",variant:\"pfo7UfeO_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14tx3ej-container\",children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",dcjgPmTEj:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",EgEa9J473:\"Explore pages\",fsUmuS24I:\"Keep the knowledge in-house: fluctuations in staff put your production at risk. Secure your product knowledge, scale more efficiently and free time for innovation.\",Ft3jtRoxf:true,g56HeEMzh:\"Keep the knowledge in-house\",height:\"100%\",HQlsDHpqI:true,id:\"chFwLdSvd\",J2X4hmGjs:true,layoutId:\"chFwLdSvd\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"Vault\",TClpfvT8l:\"var(--token-bbfa20dd-b173-4795-9375-645ac9777484, rgb(79, 116, 237))\",variant:\"pfo7UfeO_\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ymecwd\",\"data-framer-name\":\"Domains\",name:\"Domains\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vw4cwi\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(42, 75, 240))\"},children:\"Featured Case Study:\"})}),className:\"framer-8ljec6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hnu4jg\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"H5l2S9K7N\",data:CaseStudy,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"H5l2S9K7N\",name:\"VAZo35BIQ\",type:\"Identifier\"},{collection:\"H5l2S9K7N\",name:\"Cz4FAy8HJ\",type:\"Identifier\"},{collection:\"H5l2S9K7N\",name:\"OB2Ki7bdw\",type:\"Identifier\"},{collection:\"H5l2S9K7N\",name:\"dtamzP7pi\",type:\"Identifier\"},{collection:\"H5l2S9K7N\",name:\"luwqngcTx\",type:\"Identifier\"},{collection:\"H5l2S9K7N\",name:\"M3RWq1SVn\",type:\"Identifier\"},{collection:\"H5l2S9K7N\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"H5l2S9K7N\",name:\"GJpTNhd8l\",type:\"Identifier\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"VAZo35BIQ\":VAZo35BIQH5l2S9K7N,\"Cz4FAy8HJ\":Cz4FAy8HJH5l2S9K7N,\"OB2Ki7bdw\":OB2Ki7bdwH5l2S9K7N,\"dtamzP7pi\":dtamzP7piH5l2S9K7N,\"luwqngcTx\":luwqngcTxH5l2S9K7N,\"M3RWq1SVn\":M3RWq1SVnH5l2S9K7N,\"id\":idH5l2S9K7N},i)=>{VAZo35BIQH5l2S9K7N!==null&&VAZo35BIQH5l2S9K7N!==void 0?VAZo35BIQH5l2S9K7N:VAZo35BIQH5l2S9K7N=\"\";Cz4FAy8HJH5l2S9K7N!==null&&Cz4FAy8HJH5l2S9K7N!==void 0?Cz4FAy8HJH5l2S9K7N:Cz4FAy8HJH5l2S9K7N=\"\";OB2Ki7bdwH5l2S9K7N!==null&&OB2Ki7bdwH5l2S9K7N!==void 0?OB2Ki7bdwH5l2S9K7N:OB2Ki7bdwH5l2S9K7N=\"\";dtamzP7piH5l2S9K7N!==null&&dtamzP7piH5l2S9K7N!==void 0?dtamzP7piH5l2S9K7N:dtamzP7piH5l2S9K7N=\"\";luwqngcTxH5l2S9K7N!==null&&luwqngcTxH5l2S9K7N!==void 0?luwqngcTxH5l2S9K7N:luwqngcTxH5l2S9K7N=\"\";M3RWq1SVnH5l2S9K7N!==null&&M3RWq1SVnH5l2S9K7N!==void 0?M3RWq1SVnH5l2S9K7N:M3RWq1SVnH5l2S9K7N=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`H5l2S9K7N-${idH5l2S9K7N}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{VAZo35BIQ:VAZo35BIQH5l2S9K7N},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{VAZo35BIQ:VAZo35BIQH5l2S9K7N},webPageId:\"kBHAcovjR\"},implicitPathVariables:undefined},{href:{pathVariables:{VAZo35BIQ:VAZo35BIQH5l2S9K7N},webPageId:\"kBHAcovjR\"},implicitPathVariables:undefined},{href:{pathVariables:{VAZo35BIQ:VAZo35BIQH5l2S9K7N},webPageId:\"kBHAcovjR\"},implicitPathVariables:undefined},{href:{pathVariables:{VAZo35BIQ:VAZo35BIQH5l2S9K7N},webPageId:\"kBHAcovjR\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{width:\"max(min(100vw - 40px, 1200px), 200px)\",y:9067.222222222223},oCgjgs3ub:{y:4033},YBKX6VqqL:{y:4448}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:481,width:\"max(min(100vw - 100px, 1200px), 200px)\",y:4313,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wlt6km-container\",id:`${VAZo35BIQH5l2S9K7N}-${elementId}`,ref:dynamicRef(`${VAZo35BIQH5l2S9K7N}-${elementId}`),children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{dJZ8qNW7v:resolvedLinks1[2],variant:\"ko4QQoVMT\"},oCgjgs3ub:{dJZ8qNW7v:resolvedLinks1[1]},YBKX6VqqL:{dJZ8qNW7v:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(CaseStudyCard,{dJZ8qNW7v:resolvedLinks1[0],height:\"100%\",id:\"olTn6GMzI\",ij8pXtsMF:OB2Ki7bdwH5l2S9K7N,isRl0a1JW:M3RWq1SVnH5l2S9K7N,layoutId:\"olTn6GMzI\",sN1MrFsYE:addImageAlt({positionX:\"73.7%\",positionY:\"59.1%\",src:\"https://framerusercontent.com/images/AgeL5JWR16hz1D9MP1D9moupE.png\",srcSet:\"https://framerusercontent.com/images/AgeL5JWR16hz1D9MP1D9moupE.png?scale-down-to=512 512w,https://framerusercontent.com/images/AgeL5JWR16hz1D9MP1D9moupE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AgeL5JWR16hz1D9MP1D9moupE.png 2036w\"},\"Valentijn Oude Hengel\"),sORJKV8wl:Cz4FAy8HJH5l2S9K7N,style:{height:\"100%\",width:\"100%\"},variant:\"n0qRVJnOL\",width:\"100%\",WtRSVlHMe:dtamzP7piH5l2S9K7N,YcPJd6Y4C:luwqngcTxH5l2S9K7N})})})})})})})},idH5l2S9K7N);})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qnko1s\",\"data-framer-name\":\"Domains\",name:\"Domains\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yus99l\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Built for the supply chain to the building industry\"})}),className:\"framer-an0boi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-51f6qk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3tmb8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{variant:\"JRy01CcrU\"}},children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",dcjgPmTEj:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",EgEa9J473:\"Explore pages\",fsUmuS24I:\"\",Ft3jtRoxf:false,g56HeEMzh:\"Manufacturers\",height:\"100%\",HQlsDHpqI:false,id:\"eme0F4EWm\",J2X4hmGjs:false,layoutId:\"eme0F4EWm\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"DeviceMobile\",TClpfvT8l:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",variant:\"vNE0aB60J\",width:\"100%\",ZD9gvrYTk:addImageAlt({src:\"https://framerusercontent.com/images/v7tnzQgRBsdZZPd25X0TdreKok.jpg\",srcSet:\"https://framerusercontent.com/images/v7tnzQgRBsdZZPd25X0TdreKok.jpg 670w\"},\"\")})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t1z7b6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{variant:\"JRy01CcrU\"}},children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",dcjgPmTEj:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",EgEa9J473:\"Explore pages\",fsUmuS24I:\"\",Ft3jtRoxf:false,g56HeEMzh:\"Suppliers\",height:\"100%\",HQlsDHpqI:false,id:\"GoAVpVtTQ\",J2X4hmGjs:false,layoutId:\"GoAVpVtTQ\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"Sparkle\",TClpfvT8l:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",variant:\"vNE0aB60J\",width:\"100%\",ZD9gvrYTk:addImageAlt({src:\"https://framerusercontent.com/images/ysQnqWoxi7FvwmuTDpuJ3MfXcM0.jpg\"},\"\")})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gge9iy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{variant:\"JRy01CcrU\"}},children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",dcjgPmTEj:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",EgEa9J473:\"Explore pages\",fsUmuS24I:\"\",Ft3jtRoxf:false,g56HeEMzh:\"Contractors\",height:\"100%\",HQlsDHpqI:false,id:\"swcunaapa\",J2X4hmGjs:false,layoutId:\"swcunaapa\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"PuzzlePiece\",TClpfvT8l:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",variant:\"vNE0aB60J\",width:\"100%\",ZD9gvrYTk:addImageAlt({src:\"https://framerusercontent.com/images/yalI3GA2hVfdXY8ErZVuHGXHqjo.jpg\",srcSet:\"https://framerusercontent.com/images/yalI3GA2hVfdXY8ErZVuHGXHqjo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yalI3GA2hVfdXY8ErZVuHGXHqjo.jpg 688w\"},\"\")})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2u2bx9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kl6bm9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oCgjgs3ub:{variant:\"xfy5ZrbV4\"}},children:/*#__PURE__*/_jsx(ListItemBadge,{BxIfyR1tY:\"Ready-made solution\",GQcl1it4F:\"rgba(241, 247, 253, 0.05)\",height:\"100%\",id:\"YKVRNgT0V\",JQsM7qtYB:true,layoutId:\"YKVRNgT0V\",q2nPHW7TA:\"CheckCircle\",TyxD043yt:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",uuoAbae5k:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-411ec0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oCgjgs3ub:{variant:\"xfy5ZrbV4\"}},children:/*#__PURE__*/_jsx(ListItemBadge,{BxIfyR1tY:\"All systems connected by one\",GQcl1it4F:\"rgba(241, 247, 253, 0.05)\",height:\"100%\",id:\"LAXFun5jL\",JQsM7qtYB:true,layoutId:\"LAXFun5jL\",q2nPHW7TA:\"CheckCircle\",TyxD043yt:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",uuoAbae5k:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xo84tm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oCgjgs3ub:{variant:\"xfy5ZrbV4\"}},children:/*#__PURE__*/_jsx(ListItemBadge,{BxIfyR1tY:\"Grow with your needs\",GQcl1it4F:\"rgba(241, 247, 253, 0.05)\",height:\"100%\",id:\"OGwZ0j_rY\",JQsM7qtYB:true,layoutId:\"OGwZ0j_rY\",q2nPHW7TA:\"CheckCircle\",TyxD043yt:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",uuoAbae5k:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1blt5jc\",\"data-framer-name\":\"Solution types\",name:\"Solution types\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pgy2jy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fhbzlc\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10rr6k8\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"Predictable steps with predictable outcomes.\"})}),className:\"framer-10nhsg3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(26, 25, 32))\"},children:\"Build & pay only for what you need. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(26, 25, 32))\"},children:\"Our step-by-step approach and ready-made solution modules allow rolling out the digitised way of working based on each business needs.\"})]}),className:\"framer-1l7r2ai\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jk2qgz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1msx0wk-container\",children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",dcjgPmTEj:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",EgEa9J473:\"See Style Guide\",fsUmuS24I:\"In a 1-day workshop we work shoulder to shoulder with you and your team to build your (sales/ production) automation plan, define specifications.\",Ft3jtRoxf:true,g56HeEMzh:\"1. Aim.\",height:\"100%\",HQlsDHpqI:true,id:\"dymCs44kN\",J2X4hmGjs:true,layoutId:\"dymCs44kN\",qKOBsbAyJ:false,style:{maxWidth:\"100%\",width:\"100%\"},SXDgbTQKy:\"Crosshair\",TClpfvT8l:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",variant:\"VNkkb3ueA\",width:\"100%\",ZD9gvrYTk:addImageAlt({src:\"https://framerusercontent.com/images/5qlObIwStNFKtgktpVdVtQwsFc.jpg\"},\"\")})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15e000x-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{eZ5aNjZIy:resolvedLinks2[2]},oCgjgs3ub:{eZ5aNjZIy:resolvedLinks2[1]},YBKX6VqqL:{eZ5aNjZIy:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(119, 173, 238))\",dcjgPmTEj:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",EgEa9J473:\"Explore pages\",eZ5aNjZIy:resolvedLinks2[0],fsUmuS24I:\"We start the journey by analysing your business processes, customer journey and your product logic.\",Ft3jtRoxf:true,g56HeEMzh:\"2. Analyse.\",height:\"100%\",HQlsDHpqI:true,id:\"ovouPL3tn\",J2X4hmGjs:true,layoutId:\"ovouPL3tn\",qKOBsbAyJ:false,style:{maxWidth:\"100%\",width:\"100%\"},SXDgbTQKy:\"MagnifyingGlass\",TClpfvT8l:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",variant:\"pfo7UfeO_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r6rdje-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{eZ5aNjZIy:resolvedLinks3[2]},oCgjgs3ub:{eZ5aNjZIy:resolvedLinks3[1]},YBKX6VqqL:{eZ5aNjZIy:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",dcjgPmTEj:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",EgEa9J473:\"Explore sections\",eZ5aNjZIy:resolvedLinks3[0],fsUmuS24I:\"In less than few weeks we build an online tool, based on your product, that serves as a Minimal Viable Product, that your team can manage independently.\",Ft3jtRoxf:true,g56HeEMzh:\"3. Develop.\",height:\"100%\",HQlsDHpqI:true,id:\"LJBenKcpD\",J2X4hmGjs:true,layoutId:\"LJBenKcpD\",qKOBsbAyJ:false,style:{maxWidth:\"100%\",width:\"100%\"},SXDgbTQKy:\"Flask\",TClpfvT8l:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",variant:\"pfo7UfeO_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17wflwm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{eZ5aNjZIy:resolvedLinks4[2]},oCgjgs3ub:{eZ5aNjZIy:resolvedLinks4[1]},YBKX6VqqL:{eZ5aNjZIy:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(FeatureCard,{asiSR2XO3:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(119, 173, 238))\",dcjgPmTEj:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",EgEa9J473:\"Explore pages\",eZ5aNjZIy:resolvedLinks4[0],fsUmuS24I:\"When the tool is live we gather feedback and optimise for the best results. Your digitisation journey begins here!\",Ft3jtRoxf:true,g56HeEMzh:\"4. Launch & Test.\",height:\"100%\",HQlsDHpqI:true,id:\"PEaDz4B1i\",J2X4hmGjs:true,layoutId:\"PEaDz4B1i\",qKOBsbAyJ:false,style:{maxWidth:\"100%\",width:\"100%\"},SXDgbTQKy:\"Rocket\",TClpfvT8l:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(25, 24, 30))\",variant:\"pfo7UfeO_\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19wf5ib\",\"data-framer-name\":\"Become supplier\",name:\"Become supplier\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g086pw\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x1igj8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ktffzw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Curious where to start?\"})}),className:\"framer-1yoh6gi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Get started with a commitment-free intro call with our team.\"})}),className:\"framer-1qiphmu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1attwy6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uwvvnj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{gHeOvXgAq:\"https://meetings-eu1.hubspot.com/will-de-hoon\",Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:\"Book a free 15-min call\",id:\"XipaM1l6_\",L6BYhkXEg:false,layoutId:\"XipaM1l6_\",Uwhubicpx:false,variant:\"h4g3U5mfW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined},{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined},{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined},{href:{webPageId:\"rTY_RGksB\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-in1zgs-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{gHeOvXgAq:resolvedLinks5[2],style:{width:\"100%\"}},oCgjgs3ub:{gHeOvXgAq:resolvedLinks5[1]},YBKX6VqqL:{gHeOvXgAq:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(Button,{gHeOvXgAq:resolvedLinks5[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:\"Get in touch\",id:\"DDFD91HBH\",L6BYhkXEg:false,layoutId:\"DDFD91HBH\",Uwhubicpx:false,variant:\"rR8gbhtfg\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-269u1\",\"data-framer-name\":\"Bg shape\",name:\"Bg shape\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:431,intrinsicWidth:305,loading:getLoadingLazyAtYPosition(8140.222222222223),pixelHeight:862,pixelWidth:610,src:\"https://framerusercontent.com/images/HEPlCXQZHr6wUIVDjMX1uQ9rc.png\"}},oCgjgs3ub:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:431,intrinsicWidth:305,loading:getLoadingLazyAtYPosition(9789),pixelHeight:862,pixelWidth:610,src:\"https://framerusercontent.com/images/HEPlCXQZHr6wUIVDjMX1uQ9rc.png\"}},YBKX6VqqL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:431,intrinsicWidth:305,loading:getLoadingLazyAtYPosition(9682),pixelHeight:862,pixelWidth:610,src:\"https://framerusercontent.com/images/HEPlCXQZHr6wUIVDjMX1uQ9rc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:431,intrinsicWidth:305,loading:getLoadingLazyAtYPosition(9547),pixelHeight:862,pixelWidth:610,src:\"https://framerusercontent.com/images/HEPlCXQZHr6wUIVDjMX1uQ9rc.png\"},className:\"framer-1y6atfg\",\"data-framer-name\":\"monetize_bgshape2_2x\",name:\"monetize_bgshape2_2x\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-123qohk\",\"data-framer-name\":\"Bg shape\",name:\"Bg shape\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:504,intrinsicWidth:242,loading:getLoadingLazyAtYPosition(8400.222222222223),pixelHeight:1008,pixelWidth:484,src:\"https://framerusercontent.com/images/ea3nG1SBrnBXAXjpdC5d2UaHgU.png\"}},oCgjgs3ub:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:504,intrinsicWidth:242,loading:getLoadingLazyAtYPosition(9940),pixelHeight:1008,pixelWidth:484,src:\"https://framerusercontent.com/images/ea3nG1SBrnBXAXjpdC5d2UaHgU.png\"}},YBKX6VqqL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:504,intrinsicWidth:242,loading:getLoadingLazyAtYPosition(9651),pixelHeight:1008,pixelWidth:484,src:\"https://framerusercontent.com/images/ea3nG1SBrnBXAXjpdC5d2UaHgU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:504,intrinsicWidth:242,loading:getLoadingLazyAtYPosition(9516),pixelHeight:1008,pixelWidth:484,src:\"https://framerusercontent.com/images/ea3nG1SBrnBXAXjpdC5d2UaHgU.png\"},className:\"framer-kygwkp\",\"data-framer-name\":\"monetize_bgshape1_2x\",name:\"monetize_bgshape1_2x\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1blqc41\",\"data-framer-name\":\"Testimonial section\",name:\"Testimonial section\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16076ks-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{variant:\"vi7SbA3Bk\"}},children:/*#__PURE__*/_jsx(QuoteCarousel,{bEQZKWir2:\"Parametric Design Specialist at Neolithic\",g5wYMmgHm:addImageAlt({src:\"https://framerusercontent.com/images/rZWrMx2S1rset84SYgglP8Fso.png\"},\"walraven logo\"),gp1cDkodR:\"Rayaan Ajouz\",height:\"100%\",id:\"GTdDbI6HR\",jCzBTWMa5:\"Sales Director Central & East Europe, Walraven Group\",l4NueJF62:\"Tico Beekman\",layoutId:\"GTdDbI6HR\",LJ26Zeu1v:addImageAlt({src:\"https://framerusercontent.com/images/vZuUMEaPwH9tuBSA4esNw50azK0.jpg\"},\"\"),MI28vwkdF:true,NeuAiBNo8:addImageAlt({src:\"https://framerusercontent.com/images/Ny0X3d5f8O7p2rp7ue88lV2ENw.png\",srcSet:\"https://framerusercontent.com/images/Ny0X3d5f8O7p2rp7ue88lV2ENw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ny0X3d5f8O7p2rp7ue88lV2ENw.png 528w\"},\"\"),QUheLSWNq:\"Grzegorz Adamski\",style:{maxWidth:\"100%\",width:\"100%\"},tKZ1ukokB:\"Structural Engineer, Bouwen met Staal and ABT\",tNCVpA4lr:'\"A configurator is worth more than 10.000 words.\"',V7FNrJ5fr:'\"Packhunt helps us facilitate towards the customer. Someone orders our product through the Packhunt configurator and due to the automated processes, we can print and ship it within a week.\"',variant:\"rFs4_CNUK\",width:\"100%\",XQ3aNAwBD:' \"Creating a configurator was an unknown world to us. This collaboration is aiding us to control and align the project with our strategic objectives.\"',yFNGYRU5R:\"var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, rgb(241, 247, 253))\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-198vsva\",\"data-framer-name\":\"Latest news\",name:\"Latest news\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12rif1h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"left\"},children:\"Latest updates\"})}),className:\"framer-1m6eqp9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lCMKdjGrh\"},implicitPathVariables:undefined},{href:{webPageId:\"lCMKdjGrh\"},implicitPathVariables:undefined},{href:{webPageId:\"lCMKdjGrh\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pc6jir-container hidden-81e7uw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oCgjgs3ub:{gHeOvXgAq:resolvedLinks6[1]},YBKX6VqqL:{gHeOvXgAq:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(Button,{gHeOvXgAq:resolvedLinks6[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:\"See more updates\",id:\"pnV8JfL8r\",L6BYhkXEg:false,layoutId:\"pnV8JfL8r\",Uwhubicpx:false,variant:\"MWIJTc0WP\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r9bzgw\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HxCW43FBY\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"HxCW43FBY\",name:\"PPeTwl1b8\",type:\"Identifier\"},{collection:\"HxCW43FBY\",name:\"DD39DBmBH\",type:\"Identifier\"},{collection:\"HxCW43FBY\",name:\"kBAWMceDj\",type:\"Identifier\"},{collection:\"HxCW43FBY\",name:\"YSKHrdVc1\",type:\"Identifier\"},{collection:\"HxCW43FBY\",name:\"ivFLyaMNq\",type:\"Identifier\"},{collection:\"HxCW43FBY\",name:\"EZue1CzWP\",type:\"Identifier\"},{collection:\"HxCW43FBY\",name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{collection:\"HxCW43FBY\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"HxCW43FBY\",name:\"PPeTwl1b8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Company News\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"PPeTwl1b8\":PPeTwl1b8HxCW43FBY,\"DD39DBmBH\":DD39DBmBHHxCW43FBY,\"kBAWMceDj\":kBAWMceDjHxCW43FBY,\"YSKHrdVc1\":YSKHrdVc1HxCW43FBY,\"ivFLyaMNq\":ivFLyaMNqHxCW43FBY,\"EZue1CzWP\":EZue1CzWPHxCW43FBY,\"Tu_Pd0zTZ\":Tu_Pd0zTZHxCW43FBY,\"id\":idHxCW43FBY},i)=>{PPeTwl1b8HxCW43FBY!==null&&PPeTwl1b8HxCW43FBY!==void 0?PPeTwl1b8HxCW43FBY:PPeTwl1b8HxCW43FBY=\"\";YSKHrdVc1HxCW43FBY!==null&&YSKHrdVc1HxCW43FBY!==void 0?YSKHrdVc1HxCW43FBY:YSKHrdVc1HxCW43FBY=\"\";ivFLyaMNqHxCW43FBY!==null&&ivFLyaMNqHxCW43FBY!==void 0?ivFLyaMNqHxCW43FBY:ivFLyaMNqHxCW43FBY=\"\";Tu_Pd0zTZHxCW43FBY!==null&&Tu_Pd0zTZHxCW43FBY!==void 0?Tu_Pd0zTZHxCW43FBY:Tu_Pd0zTZHxCW43FBY=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HxCW43FBY-${idHxCW43FBY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZHxCW43FBY},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bcUIOegNe\"},implicitPathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZHxCW43FBY}},{href:{webPageId:\"bcUIOegNe\"},implicitPathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZHxCW43FBY}},{href:{webPageId:\"bcUIOegNe\"},implicitPathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZHxCW43FBY}},{href:{webPageId:\"bcUIOegNe\"},implicitPathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZHxCW43FBY}}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{width:\"max(min(100vw - 40px, 1440px), 200px)\",y:12257.222222222223},oCgjgs3ub:{y:11298},YBKX6VqqL:{y:11103}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:580,width:\"max((min(100vw - 100px, 1440px) - 40px) / 3, 200px)\",y:10968,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e3f2l8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{iTLspfP7r:resolvedLinks7[2]},oCgjgs3ub:{iTLspfP7r:resolvedLinks7[1]},YBKX6VqqL:{iTLspfP7r:resolvedLinks7[3]}},children:/*#__PURE__*/_jsx(BlogCard,{CPMabOrfU:PPeTwl1b8HxCW43FBY,cWI4CB6po:DD39DBmBHHxCW43FBY,fl_dKZrsX:true,HDbfmLJN9:YSKHrdVc1HxCW43FBY,height:\"100%\",id:\"FMR8iG9Ho\",iTLspfP7r:resolvedLinks7[0],layoutId:\"FMR8iG9Ho\",LFXgxuHG4:true,mJ5LrnBOl:toDateString(EZue1CzWPHxCW43FBY,{dateStyle:\"medium\",locale:\"en\"},activeLocaleCode),mMXkBrQjq:false,style:{width:\"100%\"},TS9IF2Dr6:ivFLyaMNqHxCW43FBY,variant:\"Nsz6JbBfs\",width:\"100%\",Yo7UXCjeZ:toResponsiveImage(kBAWMceDjHxCW43FBY)})})})})})})})},idHxCW43FBY);})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lCMKdjGrh\"},implicitPathVariables:undefined},{href:{webPageId:\"lCMKdjGrh\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7pp0x6-container hidden-1xxvuzj hidden-xq0enl hidden-ije9bh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{gHeOvXgAq:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(Button,{gHeOvXgAq:resolvedLinks8[0],Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:\"See more updates\",id:\"wU8ENwoG0\",L6BYhkXEg:false,layoutId:\"wU8ENwoG0\",Uwhubicpx:false,variant:\"MWIJTc0WP\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{y:24365.222222222223},oCgjgs3ub:{y:15558},YBKX6VqqL:{y:15363}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:746,width:\"100vw\",y:15228,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i0kqjl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{variant:\"JZzJDJSw0\"},oCgjgs3ub:{variant:\"Z0lH6tNZc\"}},children:/*#__PURE__*/_jsx(ENDCTA,{a7yL5pfSv:\"https://meetings-eu1.hubspot.com/will-de-hoon\",ASZo1wVBL:\"Backbone of a Digitalised Factory\",height:\"100%\",id:\"V8eyMP4ub\",layoutId:\"V8eyMP4ub\",qPtv_itfH:\"Join over 70+ companies that have unlocked the growth by digitalisation with Packhunt.\",style:{width:\"100%\"},U6PrFq7jR:\"Get started with a demo call\",variant:\"MwuqQL6Mz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{y:25111.222222222223},oCgjgs3ub:{y:16304},YBKX6VqqL:{y:16109}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:854,width:\"100vw\",y:15974,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vxnfe0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DMYDBRKuv:{variant:\"SHemWNayl\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"zGIXG9fdU\",layoutId:\"zGIXG9fdU\",style:{width:\"100%\"},variant:\"NWDLXXgiF\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hAQGD.framer-bq09jg, .framer-hAQGD .framer-bq09jg { display: block; }\",\".framer-hAQGD.framer-1xxvuzj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-hAQGD .framer-1704y2a-container { flex: none; height: 72px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-hAQGD .framer-1j3czli { align-content: center; align-items: center; background-color: var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, #77adee); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: 700px; justify-content: center; overflow: hidden; padding: 80px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-11uzieh { bottom: 156px; flex: none; left: 649px; overflow: visible; position: absolute; right: 0px; top: -11px; z-index: 0; }\",\".framer-hAQGD .framer-wa0l4t { bottom: -53px; flex: none; left: -137px; overflow: visible; position: absolute; right: -311px; top: -222px; z-index: 1; }\",\".framer-hAQGD .framer-1rlxfzl { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 1px; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-6rlr1r { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hAQGD .framer-d2tt67 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-13c10ru { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-1ll3hak, .framer-hAQGD .framer-7kuomh, .framer-hAQGD .framer-1874dhg, .framer-hAQGD .framer-19por6p, .framer-hAQGD .framer-36xi0w, .framer-hAQGD .framer-ibucwo, .framer-hAQGD .framer-i9g0ix, .framer-hAQGD .framer-v9qfav, .framer-hAQGD .framer-s8opyc, .framer-hAQGD .framer-n2aflv, .framer-hAQGD .framer-1p2zslt, .framer-hAQGD .framer-8ljec6, .framer-hAQGD .framer-an0boi, .framer-hAQGD .framer-10nhsg3, .framer-hAQGD .framer-1l7r2ai, .framer-hAQGD .framer-1yoh6gi, .framer-hAQGD .framer-1qiphmu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hAQGD .framer-14jpyng { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hAQGD .framer-3p9nj8-container, .framer-hAQGD .framer-les99u-container, .framer-hAQGD .framer-kl6bm9-container, .framer-hAQGD .framer-411ec0-container, .framer-hAQGD .framer-xo84tm-container, .framer-hAQGD .framer-1uwvvnj-container, .framer-hAQGD .framer-in1zgs-container, .framer-hAQGD .framer-1pc6jir-container, .framer-hAQGD .framer-7pp0x6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-hAQGD .framer-zrxymv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 50px 24px 50px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-1f2nugq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-zyrzia { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 624px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hAQGD .framer-vuvj9g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hAQGD .framer-1gnbmq4 { flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre; width: auto; }\",\".framer-hAQGD .framer-1s52uxm { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-hAQGD .framer-1rwa45e-container { flex: none; height: 100px; opacity: 0.5; position: relative; width: 100%; }\",\".framer-hAQGD .framer-14xhrlm { -webkit-filter: grayscale(1); aspect-ratio: 1.9516129032258065 / 1; filter: grayscale(1); height: var(--framer-aspect-ratio-supported, 62px); overflow: hidden; position: relative; width: 121px; }\",\".framer-hAQGD .framer-1p8mvvr { -webkit-filter: grayscale(1); aspect-ratio: 1.95 / 1; filter: grayscale(1); height: var(--framer-aspect-ratio-supported, 62px); overflow: hidden; position: relative; width: 121px; }\",\".framer-hAQGD .framer-j935ms { aspect-ratio: 1.9523809523809523 / 1; height: var(--framer-aspect-ratio-supported, 62px); overflow: hidden; position: relative; width: 121px; }\",\".framer-hAQGD .framer-qosmtu, .framer-hAQGD .framer-737x2u { aspect-ratio: 1.9516129032258065 / 1; height: var(--framer-aspect-ratio-supported, 62px); overflow: hidden; position: relative; width: 121px; }\",\".framer-hAQGD .framer-ijxdq9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-uihq91-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 540px); position: relative; width: 960px; }\",\".framer-hAQGD .framer-1rbweq7 { align-content: center; align-items: center; background-color: var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, #19181e); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-1ubc3db { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-1so8u6s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 600px; z-index: 1; }\",\".framer-hAQGD .framer-1t7seeq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-1sgkisz-container { aspect-ratio: 1.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 400px); position: relative; width: 500px; }\",\".framer-hAQGD .framer-14y0ymv, .framer-hAQGD .framer-12rfxor, .framer-hAQGD .framer-1hni2o8, .framer-hAQGD .framer-kvgez2, .framer-hAQGD .framer-18271uq, .framer-hAQGD .framer-7zxdys { align-content: center; align-items: center; aspect-ratio: 1.4 / 1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: var(--framer-aspect-ratio-supported, 500px); justify-content: flex-start; padding: 0px; position: relative; width: 700px; }\",\".framer-hAQGD .framer-wwtt8d, .framer-hAQGD .framer-10we5h7, .framer-hAQGD .framer-18zt7pi, .framer-hAQGD .framer-1ezk14y, .framer-hAQGD .framer-10xo9u3 { aspect-ratio: 1.6470588235294117 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 425px); position: relative; width: 100%; }\",\".framer-hAQGD .framer-7j2h41, .framer-hAQGD .framer-is303r, .framer-hAQGD .framer-prahnb, .framer-hAQGD .framer-o0wlkz, .framer-hAQGD .framer-115wzph, .framer-hAQGD .framer-1uqp4tl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-e15g6q, .framer-hAQGD .framer-1fruz9f, .framer-hAQGD .framer-1hteefs, .framer-hAQGD .framer-18kbc9x, .framer-hAQGD .framer-1lodvk6, .framer-hAQGD .framer-1j2ye37 { align-content: center; align-items: center; background-color: var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, #f1f7fd); 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: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-hAQGD .framer-juo5ls, .framer-hAQGD .framer-1rcwjjf, .framer-hAQGD .framer-uh1y3c, .framer-hAQGD .framer-19bqqmu, .framer-hAQGD .framer-ei1ll3, .framer-hAQGD .framer-1shmee2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --variable-reference-TyxD043yt-bkf_3iqYh: var(--1go01el); flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hAQGD .framer-1rq3ubz { aspect-ratio: 1.6470588235294117 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 425px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hAQGD .framer-1y93zka { align-content: center; align-items: center; background-color: var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, #19181e); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-1pjhopq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hAQGD .framer-il0ax9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-hAQGD .framer-2jpme4 { display: grid; flex: none; gap: 48px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-19hsjjj-container, .framer-hAQGD .framer-ft6pqj-container, .framer-hAQGD .framer-thry5o-container, .framer-hAQGD .framer-n6r0hj-container, .framer-hAQGD .framer-ysgijd-container, .framer-hAQGD .framer-14tx3ej-container, .framer-hAQGD .framer-wlt6km-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-hAQGD .framer-1ymecwd { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-1vw4cwi, .framer-hAQGD .framer-1yus99l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-hAQGD .framer-hnu4jg { display: grid; flex: none; gap: 144px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1200px; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-qnko1s { align-content: center; align-items: center; background-color: var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #2a4bf0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-51f6qk { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(3, min-content); height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-3tmb8-container, .framer-hAQGD .framer-1t1z7b6-container, .framer-hAQGD .framer-gge9iy-container { align-self: start; flex: none; height: 250px; justify-self: start; position: relative; width: 100%; }\",\".framer-hAQGD .framer-2u2bx9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hAQGD .framer-1blt5jc { align-content: center; align-items: center; background-color: var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, #f1f7fd); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 200px 50px 150px 50px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-pgy2jy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-fhbzlc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hAQGD .framer-10rr6k8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 450px; overflow: hidden; padding: 0px; position: sticky; top: 220px; width: 450px; will-change: transform; z-index: 1; }\",\".framer-hAQGD .framer-jk2qgz { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(4, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hAQGD .framer-1msx0wk-container, .framer-hAQGD .framer-15e000x-container, .framer-hAQGD .framer-r6rdje-container, .framer-hAQGD .framer-17wflwm-container { align-self: start; flex: none; height: auto; justify-self: start; max-width: 800px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-19wf5ib { align-content: center; align-items: center; background-color: var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, #19181e); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-1g086pw { 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-hAQGD .framer-1x1igj8 { 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: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-hAQGD .framer-ktffzw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-1attwy6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hAQGD .framer-269u1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 431px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -32px; top: 0px; width: 306px; z-index: 1; }\",\".framer-hAQGD .framer-1y6atfg { aspect-ratio: 0.7076566125290024 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 431px); overflow: visible; position: relative; width: 305px; }\",\".framer-hAQGD .framer-123qohk { align-content: center; align-items: center; bottom: -10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -40px; overflow: hidden; padding: 0px; position: absolute; width: min-content; z-index: 1; }\",\".framer-hAQGD .framer-kygwkp { aspect-ratio: 0.4801587301587302 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 558px); overflow: visible; position: relative; width: 268px; }\",\".framer-hAQGD .framer-1blqc41 { align-content: center; align-items: center; background-color: var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, #f1f7fd); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 144px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-16076ks-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-198vsva { align-content: center; align-items: center; background-color: var(--token-9bee1602-b191-465f-8eaf-bc740a2a3fbd, #f1f7fd); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 50px 80px 50px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-12rif1h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-1m6eqp9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hAQGD .framer-r9bzgw { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1440px; padding: 0px; position: relative; width: 100%; }\",\".framer-hAQGD .framer-1e3f2l8-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-hAQGD .framer-i0kqjl-container, .framer-hAQGD .framer-vxnfe0-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hAQGD.framer-1xxvuzj, .framer-hAQGD .framer-1j3czli, .framer-hAQGD .framer-1rlxfzl, .framer-hAQGD .framer-6rlr1r, .framer-hAQGD .framer-d2tt67, .framer-hAQGD .framer-13c10ru, .framer-hAQGD .framer-14jpyng, .framer-hAQGD .framer-zrxymv, .framer-hAQGD .framer-1f2nugq, .framer-hAQGD .framer-zyrzia, .framer-hAQGD .framer-vuvj9g, .framer-hAQGD .framer-ijxdq9, .framer-hAQGD .framer-1rbweq7, .framer-hAQGD .framer-1ubc3db, .framer-hAQGD .framer-1so8u6s, .framer-hAQGD .framer-1t7seeq, .framer-hAQGD .framer-14y0ymv, .framer-hAQGD .framer-7j2h41, .framer-hAQGD .framer-e15g6q, .framer-hAQGD .framer-12rfxor, .framer-hAQGD .framer-is303r, .framer-hAQGD .framer-1fruz9f, .framer-hAQGD .framer-1hni2o8, .framer-hAQGD .framer-prahnb, .framer-hAQGD .framer-1hteefs, .framer-hAQGD .framer-kvgez2, .framer-hAQGD .framer-o0wlkz, .framer-hAQGD .framer-18kbc9x, .framer-hAQGD .framer-18271uq, .framer-hAQGD .framer-115wzph, .framer-hAQGD .framer-1lodvk6, .framer-hAQGD .framer-7zxdys, .framer-hAQGD .framer-1uqp4tl, .framer-hAQGD .framer-1j2ye37, .framer-hAQGD .framer-1y93zka, .framer-hAQGD .framer-1pjhopq, .framer-hAQGD .framer-il0ax9, .framer-hAQGD .framer-1ymecwd, .framer-hAQGD .framer-1vw4cwi, .framer-hAQGD .framer-qnko1s, .framer-hAQGD .framer-1yus99l, .framer-hAQGD .framer-2u2bx9, .framer-hAQGD .framer-1blt5jc, .framer-hAQGD .framer-pgy2jy, .framer-hAQGD .framer-fhbzlc, .framer-hAQGD .framer-10rr6k8, .framer-hAQGD .framer-19wf5ib, .framer-hAQGD .framer-1g086pw, .framer-hAQGD .framer-1x1igj8, .framer-hAQGD .framer-ktffzw, .framer-hAQGD .framer-1attwy6, .framer-hAQGD .framer-269u1, .framer-hAQGD .framer-123qohk, .framer-hAQGD .framer-1blqc41, .framer-hAQGD .framer-198vsva { gap: 0px; } .framer-hAQGD.framer-1xxvuzj > *, .framer-hAQGD .framer-zrxymv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hAQGD.framer-1xxvuzj > :first-child, .framer-hAQGD .framer-1j3czli > :first-child, .framer-hAQGD .framer-6rlr1r > :first-child, .framer-hAQGD .framer-d2tt67 > :first-child, .framer-hAQGD .framer-13c10ru > :first-child, .framer-hAQGD .framer-zrxymv > :first-child, .framer-hAQGD .framer-zyrzia > :first-child, .framer-hAQGD .framer-1rbweq7 > :first-child, .framer-hAQGD .framer-1ubc3db > :first-child, .framer-hAQGD .framer-1so8u6s > :first-child, .framer-hAQGD .framer-14y0ymv > :first-child, .framer-hAQGD .framer-7j2h41 > :first-child, .framer-hAQGD .framer-12rfxor > :first-child, .framer-hAQGD .framer-is303r > :first-child, .framer-hAQGD .framer-1hni2o8 > :first-child, .framer-hAQGD .framer-prahnb > :first-child, .framer-hAQGD .framer-kvgez2 > :first-child, .framer-hAQGD .framer-o0wlkz > :first-child, .framer-hAQGD .framer-18271uq > :first-child, .framer-hAQGD .framer-115wzph > :first-child, .framer-hAQGD .framer-7zxdys > :first-child, .framer-hAQGD .framer-1uqp4tl > :first-child, .framer-hAQGD .framer-1pjhopq > :first-child, .framer-hAQGD .framer-il0ax9 > :first-child, .framer-hAQGD .framer-1ymecwd > :first-child, .framer-hAQGD .framer-1vw4cwi > :first-child, .framer-hAQGD .framer-qnko1s > :first-child, .framer-hAQGD .framer-1yus99l > :first-child, .framer-hAQGD .framer-1blt5jc > :first-child, .framer-hAQGD .framer-10rr6k8 > :first-child, .framer-hAQGD .framer-19wf5ib > :first-child, .framer-hAQGD .framer-1x1igj8 > :first-child, .framer-hAQGD .framer-ktffzw > :first-child, .framer-hAQGD .framer-123qohk > :first-child, .framer-hAQGD .framer-1blqc41 > :first-child, .framer-hAQGD .framer-198vsva > :first-child { margin-top: 0px; } .framer-hAQGD.framer-1xxvuzj > :last-child, .framer-hAQGD .framer-1j3czli > :last-child, .framer-hAQGD .framer-6rlr1r > :last-child, .framer-hAQGD .framer-d2tt67 > :last-child, .framer-hAQGD .framer-13c10ru > :last-child, .framer-hAQGD .framer-zrxymv > :last-child, .framer-hAQGD .framer-zyrzia > :last-child, .framer-hAQGD .framer-1rbweq7 > :last-child, .framer-hAQGD .framer-1ubc3db > :last-child, .framer-hAQGD .framer-1so8u6s > :last-child, .framer-hAQGD .framer-14y0ymv > :last-child, .framer-hAQGD .framer-7j2h41 > :last-child, .framer-hAQGD .framer-12rfxor > :last-child, .framer-hAQGD .framer-is303r > :last-child, .framer-hAQGD .framer-1hni2o8 > :last-child, .framer-hAQGD .framer-prahnb > :last-child, .framer-hAQGD .framer-kvgez2 > :last-child, .framer-hAQGD .framer-o0wlkz > :last-child, .framer-hAQGD .framer-18271uq > :last-child, .framer-hAQGD .framer-115wzph > :last-child, .framer-hAQGD .framer-7zxdys > :last-child, .framer-hAQGD .framer-1uqp4tl > :last-child, .framer-hAQGD .framer-1pjhopq > :last-child, .framer-hAQGD .framer-il0ax9 > :last-child, .framer-hAQGD .framer-1ymecwd > :last-child, .framer-hAQGD .framer-1vw4cwi > :last-child, .framer-hAQGD .framer-qnko1s > :last-child, .framer-hAQGD .framer-1yus99l > :last-child, .framer-hAQGD .framer-1blt5jc > :last-child, .framer-hAQGD .framer-10rr6k8 > :last-child, .framer-hAQGD .framer-19wf5ib > :last-child, .framer-hAQGD .framer-1x1igj8 > :last-child, .framer-hAQGD .framer-ktffzw > :last-child, .framer-hAQGD .framer-123qohk > :last-child, .framer-hAQGD .framer-1blqc41 > :last-child, .framer-hAQGD .framer-198vsva > :last-child { margin-bottom: 0px; } .framer-hAQGD .framer-1j3czli > * { margin: 0px; margin-bottom: calc(140px / 2); margin-top: calc(140px / 2); } .framer-hAQGD .framer-1rlxfzl > *, .framer-hAQGD .framer-1y93zka > *, .framer-hAQGD .framer-pgy2jy > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-hAQGD .framer-1rlxfzl > :first-child, .framer-hAQGD .framer-14jpyng > :first-child, .framer-hAQGD .framer-1f2nugq > :first-child, .framer-hAQGD .framer-vuvj9g > :first-child, .framer-hAQGD .framer-ijxdq9 > :first-child, .framer-hAQGD .framer-1t7seeq > :first-child, .framer-hAQGD .framer-e15g6q > :first-child, .framer-hAQGD .framer-1fruz9f > :first-child, .framer-hAQGD .framer-1hteefs > :first-child, .framer-hAQGD .framer-18kbc9x > :first-child, .framer-hAQGD .framer-1lodvk6 > :first-child, .framer-hAQGD .framer-1j2ye37 > :first-child, .framer-hAQGD .framer-1y93zka > :first-child, .framer-hAQGD .framer-2u2bx9 > :first-child, .framer-hAQGD .framer-pgy2jy > :first-child, .framer-hAQGD .framer-fhbzlc > :first-child, .framer-hAQGD .framer-1g086pw > :first-child, .framer-hAQGD .framer-1attwy6 > :first-child, .framer-hAQGD .framer-269u1 > :first-child { margin-left: 0px; } .framer-hAQGD .framer-1rlxfzl > :last-child, .framer-hAQGD .framer-14jpyng > :last-child, .framer-hAQGD .framer-1f2nugq > :last-child, .framer-hAQGD .framer-vuvj9g > :last-child, .framer-hAQGD .framer-ijxdq9 > :last-child, .framer-hAQGD .framer-1t7seeq > :last-child, .framer-hAQGD .framer-e15g6q > :last-child, .framer-hAQGD .framer-1fruz9f > :last-child, .framer-hAQGD .framer-1hteefs > :last-child, .framer-hAQGD .framer-18kbc9x > :last-child, .framer-hAQGD .framer-1lodvk6 > :last-child, .framer-hAQGD .framer-1j2ye37 > :last-child, .framer-hAQGD .framer-1y93zka > :last-child, .framer-hAQGD .framer-2u2bx9 > :last-child, .framer-hAQGD .framer-pgy2jy > :last-child, .framer-hAQGD .framer-fhbzlc > :last-child, .framer-hAQGD .framer-1g086pw > :last-child, .framer-hAQGD .framer-1attwy6 > :last-child, .framer-hAQGD .framer-269u1 > :last-child { margin-right: 0px; } .framer-hAQGD .framer-6rlr1r > *, .framer-hAQGD .framer-zyrzia > *, .framer-hAQGD .framer-il0ax9 > *, .framer-hAQGD .framer-1vw4cwi > *, .framer-hAQGD .framer-1yus99l > *, .framer-hAQGD .framer-123qohk > *, .framer-hAQGD .framer-1blqc41 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hAQGD .framer-d2tt67 > *, .framer-hAQGD .framer-10rr6k8 > *, .framer-hAQGD .framer-1x1igj8 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hAQGD .framer-13c10ru > *, .framer-hAQGD .framer-7j2h41 > *, .framer-hAQGD .framer-is303r > *, .framer-hAQGD .framer-prahnb > *, .framer-hAQGD .framer-o0wlkz > *, .framer-hAQGD .framer-115wzph > *, .framer-hAQGD .framer-1uqp4tl > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-hAQGD .framer-14jpyng > *, .framer-hAQGD .framer-1f2nugq > *, .framer-hAQGD .framer-1t7seeq > *, .framer-hAQGD .framer-2u2bx9 > *, .framer-hAQGD .framer-fhbzlc > *, .framer-hAQGD .framer-1g086pw > *, .framer-hAQGD .framer-269u1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hAQGD .framer-vuvj9g > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-hAQGD .framer-ijxdq9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hAQGD .framer-1rbweq7 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-hAQGD .framer-1ubc3db > *, .framer-hAQGD .framer-1so8u6s > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hAQGD .framer-14y0ymv > *, .framer-hAQGD .framer-12rfxor > *, .framer-hAQGD .framer-1hni2o8 > *, .framer-hAQGD .framer-kvgez2 > *, .framer-hAQGD .framer-18271uq > *, .framer-hAQGD .framer-7zxdys > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-hAQGD .framer-e15g6q > *, .framer-hAQGD .framer-1fruz9f > *, .framer-hAQGD .framer-1hteefs > *, .framer-hAQGD .framer-18kbc9x > *, .framer-hAQGD .framer-1lodvk6 > *, .framer-hAQGD .framer-1j2ye37 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-hAQGD .framer-1pjhopq > *, .framer-hAQGD .framer-1blt5jc > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-hAQGD .framer-1ymecwd > *, .framer-hAQGD .framer-qnko1s > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-hAQGD .framer-19wf5ib > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hAQGD .framer-ktffzw > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-hAQGD .framer-1attwy6 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-hAQGD .framer-198vsva > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-hAQGD.framer-1xxvuzj { width: 810px; } .framer-hAQGD .framer-1j3czli { height: 600px; justify-content: flex-start; } .framer-hAQGD .framer-11uzieh { bottom: unset; height: 504px; left: 320px; top: -43px; } .framer-hAQGD .framer-wa0l4t { left: 43px; right: -480px; top: -140px; } .framer-hAQGD .framer-1rlxfzl { flex: none; flex-direction: column; gap: 0px; height: min-content; } .framer-hAQGD .framer-6rlr1r { flex: none; height: min-content; padding: 150px 0px 96px 0px; width: 100%; z-index: 2; } .framer-hAQGD .framer-d2tt67 { max-width: 100%; } .framer-hAQGD .framer-13c10ru { width: 80%; } .framer-hAQGD .framer-uihq91-container { height: var(--framer-aspect-ratio-supported, 360px); width: 640px; } .framer-hAQGD .framer-1t7seeq { display: block; height: 400px; padding: unset; } .framer-hAQGD .framer-1sgkisz-container { aspect-ratio: unset; bottom: 0px; height: unset; left: 0px; position: absolute; top: 0px; } .framer-hAQGD .framer-8ljec6, .framer-hAQGD .framer-an0boi { width: 70%; } .framer-hAQGD .framer-51f6qk { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-hAQGD .framer-1blt5jc { padding: 100px 50px 150px 50px; } .framer-hAQGD .framer-pgy2jy { flex-direction: column; gap: 80px; } .framer-hAQGD .framer-fhbzlc { flex: none; height: min-content; width: 100%; } .framer-hAQGD .framer-10rr6k8 { max-width: 540px; position: relative; top: unset; } .framer-hAQGD .framer-jk2qgz { flex: none; width: 100%; } .framer-hAQGD .framer-1attwy6 { z-index: 2; } .framer-hAQGD .framer-269u1 { right: -80px; top: -88px; } .framer-hAQGD .framer-123qohk { bottom: unset; left: -96px; top: 157px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hAQGD .framer-1rlxfzl, .framer-hAQGD .framer-1t7seeq, .framer-hAQGD .framer-pgy2jy { gap: 0px; } .framer-hAQGD .framer-1rlxfzl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hAQGD .framer-1rlxfzl > :first-child, .framer-hAQGD .framer-pgy2jy > :first-child { margin-top: 0px; } .framer-hAQGD .framer-1rlxfzl > :last-child, .framer-hAQGD .framer-pgy2jy > :last-child { margin-bottom: 0px; } .framer-hAQGD .framer-1t7seeq > *, .framer-hAQGD .framer-1t7seeq > :first-child, .framer-hAQGD .framer-1t7seeq > :last-child { margin: 0px; } .framer-hAQGD .framer-pgy2jy > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}\",\"@media (max-width: 809px) { .framer-hAQGD.framer-1xxvuzj { width: 390px; } .framer-hAQGD .framer-1704y2a-container { order: 0; } .framer-hAQGD .framer-1j3czli { gap: 0px; height: 638px; justify-content: flex-start; order: 1; padding: 204px 20px 0px 20px; z-index: 1; } .framer-hAQGD .framer-11uzieh { aspect-ratio: 1.4459930313588851 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 309px); left: unset; right: -113px; top: -52px; width: 447px; } .framer-hAQGD .framer-wa0l4t { bottom: 85px; left: -15px; right: -76px; top: -114px; } .framer-hAQGD .framer-1rlxfzl { align-content: center; align-items: center; flex: none; flex-direction: column; gap: 50px; height: min-content; z-index: 1; } .framer-hAQGD .framer-6rlr1r, .framer-hAQGD .framer-fhbzlc { flex: none; height: min-content; width: 100%; } .framer-hAQGD .framer-d2tt67 { align-content: center; align-items: center; } .framer-hAQGD .framer-14jpyng { flex-direction: column; gap: 16px; width: 100%; } .framer-hAQGD .framer-3p9nj8-container, .framer-hAQGD .framer-les99u-container, .framer-hAQGD .framer-1so8u6s, .framer-hAQGD .framer-1uwvvnj-container, .framer-hAQGD .framer-in1zgs-container { width: 100%; } .framer-hAQGD .framer-zrxymv { order: 3; padding: 32px 20px 24px 20px; } .framer-hAQGD .framer-ijxdq9 { flex-direction: column; order: 4; padding: 20px; } .framer-hAQGD .framer-uihq91-container { height: var(--framer-aspect-ratio-supported, 198px); width: 352px; } .framer-hAQGD .framer-1rbweq7 { order: 5; padding: 100px 20px 100px 20px; } .framer-hAQGD .framer-1sgkisz-container { aspect-ratio: 0.9006211180124224 / 1; height: var(--framer-aspect-ratio-supported, 322px); width: 290px; } .framer-hAQGD .framer-1y93zka { order: 8; padding: 80px 20px 100px 20px; } .framer-hAQGD .framer-1pjhopq { gap: 50px; } .framer-hAQGD .framer-2jpme4 { gap: 32px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-hAQGD .framer-1ymecwd { order: 13; padding: 100px 20px 100px 20px; } .framer-hAQGD .framer-hnu4jg { gap: 120px; } .framer-hAQGD .framer-qnko1s { order: 9; padding: 100px 20px 100px 20px; } .framer-hAQGD .framer-51f6qk { grid-template-columns: repeat(1, minmax(160px, 1fr)); grid-template-rows: repeat(4, min-content); } .framer-hAQGD .framer-3tmb8-container, .framer-hAQGD .framer-1t1z7b6-container, .framer-hAQGD .framer-gge9iy-container { height: 220px; } .framer-hAQGD .framer-2u2bx9 { align-content: center; align-items: center; flex-direction: column; } .framer-hAQGD .framer-1blt5jc { background-color: #f6f4ff; order: 10; padding: 50px 20px 50px 20px; } .framer-hAQGD .framer-pgy2jy { flex-direction: column; gap: 50px; } .framer-hAQGD .framer-10rr6k8 { flex: 1 0 0px; max-width: 540px; position: relative; top: unset; width: 1px; } .framer-hAQGD .framer-jk2qgz { flex: none; width: 100%; } .framer-hAQGD .framer-19wf5ib { order: 11; padding: 120px 20px 120px 20px; } .framer-hAQGD .framer-1attwy6 { flex-direction: column; width: 100%; z-index: 2; } .framer-hAQGD .framer-269u1 { top: -112px; } .framer-hAQGD .framer-123qohk { bottom: unset; left: -88px; top: 261px; } .framer-hAQGD .framer-1blqc41 { order: 14; padding: 144px 20px 100px 20px; } .framer-hAQGD .framer-198vsva { background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); gap: 32px; order: 15; padding: 50px 20px 50px 20px; } .framer-hAQGD .framer-r9bzgw { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-hAQGD .framer-i0kqjl-container { order: 16; } .framer-hAQGD .framer-vxnfe0-container { order: 17; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hAQGD .framer-1j3czli, .framer-hAQGD .framer-1rlxfzl, .framer-hAQGD .framer-14jpyng, .framer-hAQGD .framer-ijxdq9, .framer-hAQGD .framer-1pjhopq, .framer-hAQGD .framer-2jpme4, .framer-hAQGD .framer-hnu4jg, .framer-hAQGD .framer-2u2bx9, .framer-hAQGD .framer-pgy2jy, .framer-hAQGD .framer-1attwy6, .framer-hAQGD .framer-198vsva { gap: 0px; } .framer-hAQGD .framer-1j3czli > *, .framer-hAQGD .framer-ijxdq9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hAQGD .framer-1j3czli > :first-child, .framer-hAQGD .framer-1rlxfzl > :first-child, .framer-hAQGD .framer-14jpyng > :first-child, .framer-hAQGD .framer-ijxdq9 > :first-child, .framer-hAQGD .framer-1pjhopq > :first-child, .framer-hAQGD .framer-2u2bx9 > :first-child, .framer-hAQGD .framer-pgy2jy > :first-child, .framer-hAQGD .framer-1attwy6 > :first-child, .framer-hAQGD .framer-198vsva > :first-child { margin-top: 0px; } .framer-hAQGD .framer-1j3czli > :last-child, .framer-hAQGD .framer-1rlxfzl > :last-child, .framer-hAQGD .framer-14jpyng > :last-child, .framer-hAQGD .framer-ijxdq9 > :last-child, .framer-hAQGD .framer-1pjhopq > :last-child, .framer-hAQGD .framer-2u2bx9 > :last-child, .framer-hAQGD .framer-pgy2jy > :last-child, .framer-hAQGD .framer-1attwy6 > :last-child, .framer-hAQGD .framer-198vsva > :last-child { margin-bottom: 0px; } .framer-hAQGD .framer-1rlxfzl > *, .framer-hAQGD .framer-1pjhopq > *, .framer-hAQGD .framer-pgy2jy > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-hAQGD .framer-14jpyng > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-hAQGD .framer-2jpme4 > *, .framer-hAQGD .framer-2jpme4 > :first-child, .framer-hAQGD .framer-2jpme4 > :last-child, .framer-hAQGD .framer-hnu4jg > *, .framer-hAQGD .framer-hnu4jg > :first-child, .framer-hAQGD .framer-hnu4jg > :last-child { margin: 0px; } .framer-hAQGD .framer-2u2bx9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hAQGD .framer-1attwy6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hAQGD .framer-198vsva > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\",\"@media (min-width: 1680px) { .framer-hAQGD.framer-1xxvuzj { justify-content: center; width: 1680px; } .framer-hAQGD .framer-uihq91-container { height: var(--framer-aspect-ratio-supported, 675px); width: 1200px; }}\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10897\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oCgjgs3ub\":{\"layout\":[\"fixed\",\"auto\"]},\"DMYDBRKuv\":{\"layout\":[\"fixed\",\"auto\"]},\"YBKX6VqqL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerV_DuaWlqo=withCSS(Component,css,\"framer-hAQGD\");export default FramerV_DuaWlqo;FramerV_DuaWlqo.displayName=\"Packhunt For Factories\";FramerV_DuaWlqo.defaultProps={height:10897,width:1200};addFonts(FramerV_DuaWlqo,[{explicitInter:true,fonts:[{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:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavbarDarkFonts,...ButtonFonts,...TickerFonts,...VideoFonts,...SlideshowFonts,...FeatureCardFonts,...CaseStudyCardFonts,...ListItemBadgeFonts,...QuoteCarouselFonts,...BlogCardFonts,...ENDCTAFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV_DuaWlqo\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oCgjgs3ub\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DMYDBRKuv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YBKX6VqqL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"10897\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "isSet", "value", "transformTemplate", "_", "t", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "background", "height", "id", "logoStripe", "quote1", "quote1JobTitle", "quote1Logo", "quote1Name", "quote2", "quote2JobTitle", "quote2Logo", "quote2Name", "quote3", "quote3JobTitle", "quote3Logo", "quote3Name", "width", "props", "ref", "ref1", "ref2", "ref3", "ref4", "ref5", "ref6", "ref7", "ref8", "ref9", "ref10", "ref11", "_variant", "ref12", "ref13", "ref14", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "MI28vwkdF", "yFNGYRU5R", "XQ3aNAwBD", "QUheLSWNq", "jCzBTWMa5", "g5wYMmgHm", "V7FNrJ5fr", "l4NueJF62", "bEQZKWir2", "NeuAiBNo8", "tNCVpA4lr", "gp1cDkodR", "tKZ1ukokB", "LJ26Zeu1v", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1wq4a7d", "args", "onAppear9nxkru", "onAppear15rinp0", "onAppearys6oy6", "onAppeari1qz1p", "onTaplaca0q", "onTap1irgabs", "onTap1k4zm5w", "onTap1vcuhg1", "onTap1yt99uy", "onTap1wa5unu", "useOnVariantChange", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "Image2", "css", "FramerN_pE_Csvp", "withCSS", "N_pE_Csvp_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "NavbarDarkFonts", "getFonts", "NJQgPrjUI_default", "MotionDivWithFX", "withFX", "motion", "ButtonFonts", "Tnz4seCKc_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "TickerFonts", "Ticker", "VideoFonts", "Video", "SlideshowFonts", "Slideshow", "FeatureCardFonts", "Kym4ifyAB_default", "CaseStudyCardFonts", "VFC6fq4Iy_default", "ListItemBadgeFonts", "bkf_3iqYh_default", "QuoteCarouselFonts", "N_pE_Csvp_default", "BlogCardFonts", "FIQUCdJNE_default", "ENDCTAFonts", "v7wr_bkV5_default", "FooterFonts", "M82dauGNX_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "addImageAlt", "image", "alt", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "TyxD043ytbkf_3iqYh", "VAZo35BIQH5l2S9K7N", "Cz4FAy8HJH5l2S9K7N", "OB2Ki7bdwH5l2S9K7N", "dtamzP7piH5l2S9K7N", "luwqngcTxH5l2S9K7N", "M3RWq1SVnH5l2S9K7N", "idH5l2S9K7N", "PPeTwl1b8HxCW43FBY", "DD39DBmBHHxCW43FBY", "kBAWMceDjHxCW43FBY", "YSKHrdVc1HxCW43FBY", "ivFLyaMNqHxCW43FBY", "EZue1CzWPHxCW43FBY", "Tu_Pd0zTZHxCW43FBY", "idHxCW43FBY", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "router", "useRouter", "elementId", "useRouteElementId", "dynamicRef", "useDynamicRefs", "isDisplayed", "activeLocaleCode", "useLocaleCode", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "RichText2", "ResolveLinks", "resolvedLinks", "SVG", "ChildrenCanSuspend", "OqfvEJYp3_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "nWZy3UnCE_default", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks7", "resolvedLinks8", "css", "FramerV_DuaWlqo", "withCSS", "V_DuaWlqo_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
