{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/v8io7eUGYiqrQKTgyylH/wFfbW0mUptr0HO9s45Zu/B8HoEXk1K.js", "ssg:https://framerusercontent.com/modules/OQHjpvmEwrBWXVaE6je8/x5O5sxQObd1fRfEebptl/WCbly3BuC.js", "ssg:https://framerusercontent.com/modules/y70VCJfDLGWfP1o1JZqB/I1ZkILBNhzLgPslTrkGG/augiA20Il.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://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const 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);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(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]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==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=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)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:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",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\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...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\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (c56cc2c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{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\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-5rSOO .framer-styles-preset-1awl2q4:not(.rich-text-wrapper), .framer-5rSOO .framer-styles-preset-1awl2q4.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 30px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-e2698e5d-fc15-4ba5-a5bd-ef3e63d2d996, rgba(255, 255, 255, 0.8)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-5rSOO .framer-styles-preset-1awl2q4:not(.rich-text-wrapper), .framer-5rSOO .framer-styles-preset-1awl2q4.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 28px; --framer-paragraph-spacing: 18px; --framer-text-alignment: center; --framer-text-color: var(--token-e2698e5d-fc15-4ba5-a5bd-ef3e63d2d996, rgba(255, 255, 255, 0.8)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-5rSOO .framer-styles-preset-1awl2q4:not(.rich-text-wrapper), .framer-5rSOO .framer-styles-preset-1awl2q4.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 28px; --framer-paragraph-spacing: 18px; --framer-text-alignment: center; --framer-text-color: var(--token-e2698e5d-fc15-4ba5-a5bd-ef3e63d2d996, rgba(255, 255, 255, 0.8)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-5rSOO\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c56cc2c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-EOPKb .framer-styles-preset-mqbywo:not(.rich-text-wrapper), .framer-EOPKb .framer-styles-preset-mqbywo.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.96px; --framer-line-height: 60px; --framer-paragraph-spacing: 48px; --framer-text-alignment: center; --framer-text-color: var(--token-7ce9f3dc-2da2-4b29-ac78-b4d6b8c0ed85, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-EOPKb .framer-styles-preset-mqbywo:not(.rich-text-wrapper), .framer-EOPKb .framer-styles-preset-mqbywo.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.72px; --framer-line-height: 44px; --framer-paragraph-spacing: 36px; --framer-text-alignment: center; --framer-text-color: var(--token-7ce9f3dc-2da2-4b29-ac78-b4d6b8c0ed85, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-EOPKb .framer-styles-preset-mqbywo:not(.rich-text-wrapper), .framer-EOPKb .framer-styles-preset-mqbywo.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.72px; --framer-line-height: 44px; --framer-paragraph-spacing: 36px; --framer-text-alignment: center; --framer-text-color: var(--token-7ce9f3dc-2da2-4b29-ac78-b4d6b8c0ed85, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-EOPKb\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import CTA from\"#framer/local/canvasComponent/CxMLZWqBt/CxMLZWqBt.js\";import DesktopNavigation from\"#framer/local/canvasComponent/gq2vTEqxP/gq2vTEqxP.js\";import SecondaryButtonLight from\"#framer/local/canvasComponent/H7bQfrgAt/H7bQfrgAt.js\";import PrimaryButtonLight from\"#framer/local/canvasComponent/h7QMuRFUQ/h7QMuRFUQ.js\";import IconButton from\"#framer/local/canvasComponent/iQKAfuLl7/iQKAfuLl7.js\";import SecondaryButtonDark from\"#framer/local/canvasComponent/kjQjGg0K9/kjQjGg0K9.js\";import Footer from\"#framer/local/canvasComponent/pP60aXhpa/pP60aXhpa.js\";import MobileNavigation from\"#framer/local/canvasComponent/Z4G7f5dRX/Z4G7f5dRX.js\";import ServiceGroups from\"#framer/local/collection/W6EEQb9KE/W6EEQb9KE.js\";import*as sharedStyle3 from\"#framer/local/css/B8HoEXk1K/B8HoEXk1K.js\";import*as sharedStyle8 from\"#framer/local/css/h4U28DnAN/h4U28DnAN.js\";import*as sharedStyle5 from\"#framer/local/css/ijeVxmZwP/ijeVxmZwP.js\";import*as sharedStyle6 from\"#framer/local/css/JX27msJJt/JX27msJJt.js\";import*as sharedStyle4 from\"#framer/local/css/knHcVOtGK/knHcVOtGK.js\";import*as sharedStyle10 from\"#framer/local/css/Maza4yQHP/Maza4yQHP.js\";import*as sharedStyle1 from\"#framer/local/css/O1gNQIGTY/O1gNQIGTY.js\";import*as sharedStyle from\"#framer/local/css/pwondRpwB/pwondRpwB.js\";import*as sharedStyle11 from\"#framer/local/css/TVGTO73zK/TVGTO73zK.js\";import*as sharedStyle7 from\"#framer/local/css/uiaEJHN4C/uiaEJHN4C.js\";import*as sharedStyle2 from\"#framer/local/css/WCbly3BuC/WCbly3BuC.js\";import*as sharedStyle9 from\"#framer/local/css/y3iradeTa/y3iradeTa.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const PrimaryButtonLightFonts=getFonts(PrimaryButtonLight);const SecondaryButtonLightFonts=getFonts(SecondaryButtonLight);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const EmbedFonts=getFonts(Embed);const SecondaryButtonDarkFonts=getFonts(SecondaryButtonDark);const IconButtonFonts=getFonts(IconButton);const VideoFonts=getFonts(Video);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const DesktopNavigationFonts=getFonts(DesktopNavigation);const MobileNavigationFonts=getFonts(MobileNavigation);const breakpoints={CG3nOxtAh:\"(max-width: 809px)\",EG26ebgud:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-JsrWH\";const variantClassNames={CG3nOxtAh:\"framer-v-tul3xz\",EG26ebgud:\"framer-v-lg67az\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:40,delay:.1,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"CG3nOxtAh\",Tablet:\"EG26ebgud\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,W9WxtZBiSFsHndgMjT,w5jRlsboxFsHndgMjT,FOQfh7VoMFsHndgMjT,R6NiCkc7eFsHndgMjT,mKGnzq0uMFsHndgMjT,idFsHndgMjT,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"kEBD8BOzN\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"CG3nOxtAh\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"CG3nOxtAh\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-e55f5e6f-6e6c-4f79-833e-aecf6e086d87, rgb(245, 245, 245)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gqruc2\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-148egs\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-5t8tyt\",\"data-framer-appear-id\":\"5t8tyt\",\"data-framer-name\":\"Content\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bkgqgp\",\"data-framer-name\":\"Heading and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1pg41ss\",\"data-styles-preset\":\"pwondRpwB\",children:\"Connecting the Commercial Construction Industry with the Qualified Tradesmen\"})}),className:\"framer-1mmvg8i\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gerx9v\",\"data-styles-preset\":\"O1gNQIGTY\",children:\"We work with general and trade contractors on commercial construction projects to staff the highest quality tradesman as soon as the next day so they can utilize a reliable and capable workforce to complete their projects successfully.\"})}),className:\"framer-190ak59\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4rd4of\",\"data-framer-name\":\"Actions\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qM8ymwmE1\"},implicitPathVariables:undefined},{href:{webPageId:\"qM8ymwmE1\"},implicitPathVariables:undefined},{href:{webPageId:\"qM8ymwmE1\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{height:48,width:`max(min(${componentViewport?.width||\"100vw\"}, 500px) - 32px, 1px)`,y:(componentViewport?.y||0)+64+0+0+0+64+0+258+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"132px\",y:(componentViewport?.y||0)+80+0+0+0+96+0+266+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tgiau3-container\",nodeId:\"dIGLB4yBy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{o6KtLC0Yl:resolvedLinks[2],style:{height:\"100%\",width:\"100%\"}},EG26ebgud:{o6KtLC0Yl:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(PrimaryButtonLight,{cxy4DINuV:false,GvI6h4Mpk:\"Hire Now\",height:\"100%\",id:\"dIGLB4yBy\",layoutId:\"dIGLB4yBy\",o6KtLC0Yl:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qM8ymwmE1\"},implicitPathVariables:undefined},{href:{webPageId:\"qM8ymwmE1\"},implicitPathVariables:undefined},{href:{webPageId:\"qM8ymwmE1\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{height:48,width:`max(min(${componentViewport?.width||\"100vw\"}, 500px) - 32px, 1px)`,y:(componentViewport?.y||0)+64+0+0+0+64+0+258+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"132px\",y:(componentViewport?.y||0)+80+0+0+0+96+0+266+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n1y2pc-container\",nodeId:\"NBgxV2CYS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{style:{height:\"100%\",width:\"100%\"},ul_3Xf6HU:resolvedLinks1[2]},EG26ebgud:{ul_3Xf6HU:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(SecondaryButtonLight,{height:\"100%\",id:\"NBgxV2CYS\",layoutId:\"NBgxV2CYS\",pilPgccWc:\"Apply Now\",style:{width:\"100%\"},ul_3Xf6HU:resolvedLinks1[0],width:\"100%\",xc3wMpt1P:false})})})})})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k574b2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jBzFkz_Tx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"jBzFkz_Tx\",layoutId:\"jBzFkz_Tx\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://fast.wistia.net/embed/iframe/uc9ihbjy9c\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18tnn1b\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ci33q\",\"data-framer-name\":\"About Us Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h0o0j7\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hel5ml\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bfa1an\",\"data-framer-name\":\"Heading and supporting text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-mqbywo\",\"data-styles-preset\":\"WCbly3BuC\",children:[\"Built on Experience. \",/*#__PURE__*/_jsx(\"br\",{}),\"Driven by Results.\"]})}),className:\"framer-10ucxp5\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1awl2q4\",\"data-styles-preset\":\"B8HoEXk1K\",children:\"DavinWorks is more than just a labor staffing agency. We're your trusted partner in building success. Founded by industry veterans who understand the challenges of finding and retaining qualified skilled labor, we're committed to providing labor and solutions that streamline your workforce needs to maximize productivity.\"})}),className:\"framer-8t8f1e\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Qspxfhv74\"},implicitPathVariables:undefined},{href:{webPageId:\"Qspxfhv74\"},implicitPathVariables:undefined},{href:{webPageId:\"Qspxfhv74\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{y:(componentViewport?.y||0)+64+1164+128+0+0+0+258},EG26ebgud:{y:(componentViewport?.y||0)+80+948.5+192+0+0+0+274}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+80+1168+192+0+0+0+274,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12ng1t1-container\",nodeId:\"XedsGKa1C\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{ESnQk2LAW:resolvedLinks2[2]},EG26ebgud:{ESnQk2LAW:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(SecondaryButtonDark,{ESnQk2LAW:resolvedLinks2[0],eyxsu9950:\"Learn More About Us\",H4bfu4m0Q:false,height:\"100%\",id:\"XedsGKa1C\",layoutId:\"XedsGKa1C\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ic5ty\",\"data-framer-name\":\"Services Section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1am90z0\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u6jlq3\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1pg41ss\",\"data-styles-preset\":\"pwondRpwB\",children:\"Workforce Solutions\"})}),className:\"framer-1jq6wzs\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-se3bj0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FsHndgMjT\",data:ServiceGroups,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"FsHndgMjT\",name:\"W9WxtZBiS\",type:\"Identifier\"},{collection:\"FsHndgMjT\",name:\"w5jRlsbox\",type:\"Identifier\"},{collection:\"FsHndgMjT\",name:\"FOQfh7VoM\",type:\"Identifier\"},{collection:\"FsHndgMjT\",name:\"R6NiCkc7e\",type:\"Identifier\"},{collection:\"FsHndgMjT\",name:\"mKGnzq0uM\",type:\"Identifier\"},{collection:\"FsHndgMjT\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({FOQfh7VoM:FOQfh7VoMFsHndgMjT,id:idFsHndgMjT,mKGnzq0uM:mKGnzq0uMFsHndgMjT,R6NiCkc7e:R6NiCkc7eFsHndgMjT,w5jRlsbox:w5jRlsboxFsHndgMjT,W9WxtZBiS:W9WxtZBiSFsHndgMjT},index)=>{W9WxtZBiSFsHndgMjT??=\"\";FOQfh7VoMFsHndgMjT??=\"\";R6NiCkc7eFsHndgMjT??=\"\";mKGnzq0uMFsHndgMjT??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FsHndgMjT-${idFsHndgMjT}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{W9WxtZBiS:W9WxtZBiSFsHndgMjT},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{W9WxtZBiS:W9WxtZBiSFsHndgMjT},webPageId:\"WGXAjojYQ\"},motionChild:true,nodeId:\"W8AyKQJLK\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-o13c8y framer-lux5qc\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+1718+64+108+0+0+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 500px) - 32px)`,...toResponsiveImage(w5jRlsboxFsHndgMjT)}},EG26ebgud:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+1646.5+64+108+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 900px) - 56px) / 2, 50px)`,...toResponsiveImage(w5jRlsboxFsHndgMjT)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+1866+96+124+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 112px) / 3, 50px)`,...toResponsiveImage(w5jRlsboxFsHndgMjT)},className:\"framer-1ua7ea3\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h4aunr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-soqtba\",\"data-framer-name\":\"Service Name and Short Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1odabux\",\"data-styles-preset\":\"knHcVOtGK\",children:\"Carpentry\"})}),className:\"framer-h1g4cf\",\"data-framer-name\":\"Service Name\",fonts:[\"Inter\"],text:FOQfh7VoMFsHndgMjT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:R6NiCkc7eFsHndgMjT,className:\"framer-1qfjhyu\",\"data-framer-name\":\"Short Description\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-l7us4x\",code:\"framer-styles-preset-1flijxw\",h1:\"framer-styles-preset-1pg41ss\",h2:\"framer-styles-preset-1odabux\",h3:\"framer-styles-preset-a1h0or\",h4:\"framer-styles-preset-1rre3z4\",h5:\"framer-styles-preset-105zvd0\",h6:\"framer-styles-preset-1uqik2y\",p:\"framer-styles-preset-6wl21u\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{y:(componentViewport?.y||0)+64+1718+64+108+0+0+0+274+0+146},EG26ebgud:{y:(componentViewport?.y||0)+80+1646.5+64+108+0+0+0+274+0+146}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+80+1866+96+124+0+0+0+274+0+146,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wbs1pw-container\",nodeId:\"aVFlFW6w2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IconButton,{DN_8EuRSf:mKGnzq0uMFsHndgMjT,height:\"100%\",id:\"aVFlFW6w2\",layoutId:\"aVFlFW6w2\",width:\"100%\"})})})})]})]})})})},idFsHndgMjT);})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bdbqdt\",\"data-framer-name\":\"Services Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3296fy\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-44sfg3\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1pg41ss\",\"data-styles-preset\":\"pwondRpwB\",children:\"The DavinWorks Advantage\"})}),className:\"framer-cq6lxz\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-btxcfu\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19b1h1o\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nmf3hh\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ltv6qu\",\"data-border\":true,\"data-framer-name\":\"Featured icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1b5w93b\",\"data-framer-name\":\"Zap-fast\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 9 17.5 L 3.5 17.5 M 6.5 12 L 2 12 M 9 6.5 L 4 6.5 M 17 3 L 10.404 12.235 C 10.112 12.644 9.966 12.848 9.972 13.019 C 9.978 13.167 10.049 13.305 10.166 13.396 C 10.301 13.5 10.552 13.5 11.055 13.5 L 16 13.5 L 15 21 L 21.596 11.765 C 21.888 11.356 22.034 11.152 22.028 10.981 C 22.022 10.833 21.951 10.695 21.834 10.604 C 21.699 10.5 21.448 10.5 20.945 10.5 L 16 10.5 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(211,131,69)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11724167730,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14d2xpo\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--token-3371f698-f764-4725-b14d-90f6b6fa5a14, rgb(56, 55, 50))\"},children:\"Speed\"})}),className:\"framer-fcandq\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-f4ec7a81-5556-43d7-bab1-87831dd4c57a, rgb(71, 84, 103))\"},children:\"We understand commercial construction demands. So, we are built to augment your workforce as soon as the next day, this minimizes downtime and keeps your projects moving.\"})}),className:\"framer-1fvisy5\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12j7krm\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10nw80h\",\"data-border\":true,\"data-framer-name\":\"Featured icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sbvktl\",\"data-framer-name\":\"Settings-03\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15.384 9h-9.55a2.5 2.5 0 0 1 0-5h9.55M9.283 20h9.55a2.5 2.5 0 0 0 0-5h-9.55m-5.95 2.5a3.5 3.5 0 1 0 7 0 3.5 3.5 0 0 0-7 0Zm18-11a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z\" stroke=\"#D38345\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r4c2j1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--token-3371f698-f764-4725-b14d-90f6b6fa5a14, rgb(56, 55, 50))\"},children:\"Technology\"})}),className:\"framer-1b0360w\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-f4ec7a81-5556-43d7-bab1-87831dd4c57a, rgb(71, 84, 103))\"},children:\"Electronic timekeeping, geofencing, worker apps, auto billing and electronic payroll are used to provide the most accurate information to our customers.\"})}),className:\"framer-cv0o49\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v37isf\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1po0zwy\",\"data-border\":true,\"data-framer-name\":\"Featured icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-90uir0\",\"data-framer-name\":\"Bar-line-chart\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M20.667 20v-7m-8 7V10m-8 10v-4m9.406-10.973 5.169 1.939M11.465 5.4 5.867 9.6m15.86-3.16a1.5 1.5 0 1 1-2.121 2.12 1.5 1.5 0 0 1 2.121-2.12Zm-16 3a1.5 1.5 0 1 1-2.121 2.12 1.5 1.5 0 0 1 2.121-2.12Zm8-6a1.5 1.5 0 1 1-2.121 2.12 1.5 1.5 0 0 1 2.121-2.12Z\" stroke=\"#D38345\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yno1j9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--token-3371f698-f764-4725-b14d-90f6b6fa5a14, rgb(56, 55, 50))\"},children:\"Competitive\"})}),className:\"framer-hakjr1\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-f4ec7a81-5556-43d7-bab1-87831dd4c57a, rgb(71, 84, 103))\"},children:\"We offer competitive pricing without compromising on quality, providing solutions to fit your project needs and budget. No hidden fees, no surprises.\"})}),className:\"framer-8i71ki\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cn9n12\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17wokwz\",\"data-border\":true,\"data-framer-name\":\"Featured icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1n7oczh\",\"data-framer-name\":\"Send-01\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10.5 13.5 21 3M10.627 13.828l2.628 6.758c.232.596.347.893.514.98a.5.5 0 0 0 .462 0c.167-.086.283-.384.515-.979L21.336 3.7c.21-.537.315-.805.258-.977a.5.5 0 0 0-.316-.316c-.172-.057-.44.048-.978.257L3.413 9.253c-.595.233-.893.349-.98.516a.5.5 0 0 0 0 .461c.087.167.385.283.98.514l6.758 2.629c.121.047.182.07.233.106a.5.5 0 0 1 .116.117c.037.051.06.111.107.232Z\" stroke=\"#D38345\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fkfs9l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--token-3371f698-f764-4725-b14d-90f6b6fa5a14, rgb(56, 55, 50))\"},children:\"Quality\"})}),className:\"framer-1n7850n\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-f4ec7a81-5556-43d7-bab1-87831dd4c57a, rgb(71, 84, 103))\"},children:\"We\u2019re committed to providing skilled, reliable and safety-conscious workers. Our rigorous screening process ensures you get the best talent for your project.\"})}),className:\"framer-108wswt\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h55cfa\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dl17ww\",\"data-border\":true,\"data-framer-name\":\"Featured icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jpdrf\",\"data-framer-name\":\"Move\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m5.333 9-3 3m0 0 3 3m-3-3h20m-13-7 3-3m0 0 3 3m-3-3v20m3-3-3 3m0 0-3-3m10-10 3 3m0 0-3 3\" stroke=\"#D38345\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qr74ra\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--token-3371f698-f764-4725-b14d-90f6b6fa5a14, rgb(56, 55, 50))\"},children:\"Scalability\"})}),className:\"framer-xz3sg4\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-f4ec7a81-5556-43d7-bab1-87831dd4c57a, rgb(71, 84, 103))\"},children:\"As your project grows, so do we. Our flexible staffing solutions scale with your needs, ensuring you have the right team size at the right time.\"})}),className:\"framer-6lj47p\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d4e4cq\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wn4rqj\",\"data-border\":true,\"data-framer-name\":\"Featured icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12alpsq\",\"data-framer-name\":\"User-01\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M20.667 21c0-1.396 0-2.093-.173-2.661a4 4 0 0 0-2.666-2.667c-.568-.172-1.266-.172-2.661-.172h-5c-1.396 0-2.094 0-2.662.172A4 4 0 0 0 4.84 18.34c-.172.568-.172 1.265-.172 2.661m12.5-13.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z\" stroke=\"#D38345\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hy271d\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--token-3371f698-f764-4725-b14d-90f6b6fa5a14, rgb(56, 55, 50))\"},children:\"Dedicated Support\"})}),className:\"framer-rvsm5u\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-f4ec7a81-5556-43d7-bab1-87831dd4c57a, rgb(71, 84, 103))\"},children:\"Our experienced account managers provide clear communication and tailored solutions throughout the staffing process.\"})}),className:\"framer-j42idl\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cjm11g\",\"data-framer-name\":\"Quote Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13bw1a8\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kab4lg\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xkszc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1466,intrinsicWidth:1435,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+4934+0+115+0+0+0),pixelHeight:2932,pixelWidth:2870,sizes:\"160px\",src:\"https://framerusercontent.com/images/TxZRGfX2aBTyGeDqmgLDZhJY8M.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/TxZRGfX2aBTyGeDqmgLDZhJY8M.png?scale-down-to=1024 1002w,https://framerusercontent.com/images/TxZRGfX2aBTyGeDqmgLDZhJY8M.png?scale-down-to=2048 2004w,https://framerusercontent.com/images/TxZRGfX2aBTyGeDqmgLDZhJY8M.png 2870w\"}},EG26ebgud:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1466,intrinsicWidth:1435,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+4328.5+140+0+0+0+0),pixelHeight:2932,pixelWidth:2870,sizes:\"220px\",src:\"https://framerusercontent.com/images/TxZRGfX2aBTyGeDqmgLDZhJY8M.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/TxZRGfX2aBTyGeDqmgLDZhJY8M.png?scale-down-to=1024 1002w,https://framerusercontent.com/images/TxZRGfX2aBTyGeDqmgLDZhJY8M.png?scale-down-to=2048 2004w,https://framerusercontent.com/images/TxZRGfX2aBTyGeDqmgLDZhJY8M.png 2870w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1466,intrinsicWidth:1435,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+4262+190+0+0+0+0),pixelHeight:2932,pixelWidth:2870,sizes:\"220px\",src:\"https://framerusercontent.com/images/TxZRGfX2aBTyGeDqmgLDZhJY8M.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/TxZRGfX2aBTyGeDqmgLDZhJY8M.png?scale-down-to=1024 1002w,https://framerusercontent.com/images/TxZRGfX2aBTyGeDqmgLDZhJY8M.png?scale-down-to=2048 2004w,https://framerusercontent.com/images/TxZRGfX2aBTyGeDqmgLDZhJY8M.png 2870w\"},className:\"framer-6b0qes\",\"data-framer-name\":\"Logotype X (2)\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1chcvtd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EkW22MoUk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"EkW22MoUk\",isMixedBorderRadius:false,layoutId:\"EkW22MoUk\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/Wcnt0vQbgANp2epX8iZ994IQ5AU.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cpqks8\",\"data-framer-name\":\"CTA Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10mnl8d\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 500px) - 32px)`,y:(componentViewport?.y||0)+64+5324+128+0+0+0},EG26ebgud:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 900px) - 32px)`,y:(componentViewport?.y||0)+80+4828.5+128+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 64px)`,y:(componentViewport?.y||0)+80+4862+192+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gip9tp-container\",nodeId:\"avpwRneXi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{variant:\"nK5i3fXja\"},EG26ebgud:{variant:\"TLybTAHPX\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"avpwRneXi\",layoutId:\"avpwRneXi\",style:{width:\"100%\"},variant:\"TrWKSgy6t\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{y:(componentViewport?.y||0)+64+6056},EG26ebgud:{y:(componentViewport?.y||0)+80+5560.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:318,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+80+5690,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iqhrab-container\",nodeId:\"MmUjjyqai\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{variant:\"voIt4z1fY\"},EG26ebgud:{variant:\"l0CxonZ8g\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"MmUjjyqai\",layoutId:\"MmUjjyqai\",style:{width:\"100%\"},variant:\"UgrpERBOc\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jtzjs8-container hidden-tul3xz\",layoutScroll:true,nodeId:\"uyMOsyr5K\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EG26ebgud:{variant:\"STwTohcqA\"}},children:/*#__PURE__*/_jsx(DesktopNavigation,{height:\"100%\",id:\"uyMOsyr5K\",layoutId:\"uyMOsyr5K\",style:{height:\"100%\",width:\"100%\"},variant:\"S2NNWhv9V\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG3nOxtAh:{height:64,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nbzqe5-container hidden-72rtr7 hidden-lg67az\",layoutScroll:true,nodeId:\"IWZY1ErhI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MobileNavigation,{height:\"100%\",id:\"IWZY1ErhI\",layoutId:\"IWZY1ErhI\",style:{width:\"100%\"},variant:\"P4INmF6PC\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JsrWH.framer-lux5qc, .framer-JsrWH .framer-lux5qc { display: block; }\",\".framer-JsrWH.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-e55f5e6f-6e6c-4f79-833e-aecf6e086d87, #f5f5f5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-JsrWH .framer-gqruc2 { 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; position: relative; width: 100%; }\",\".framer-JsrWH .framer-148egs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 96px 32px 96px 32px; position: relative; width: 100%; z-index: 3; }\",\".framer-JsrWH .framer-5t8tyt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JsrWH .framer-1bkgqgp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-1mmvg8i { --framer-paragraph-spacing: 48px; flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JsrWH .framer-190ak59 { --framer-paragraph-spacing: 18px; flex: none; height: auto; max-width: 1060px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JsrWH .framer-4rd4of { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-JsrWH .framer-tgiau3-container, .framer-JsrWH .framer-1n1y2pc-container { flex: none; height: auto; position: relative; width: 132px; }\",\".framer-JsrWH .framer-k574b2-container { aspect-ratio: 1.791044776119403 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 684px); position: relative; width: 102%; }\",\".framer-JsrWH .framer-18tnn1b { background-color: rgba(255, 255, 255, 0); bottom: -1px; flex: none; height: 100%; overflow: hidden; position: absolute; right: 0px; width: 100%; z-index: 1; }\",\".framer-JsrWH .framer-4ci33q { align-content: center; align-items: center; background-color: var(--token-3371f698-f764-4725-b14d-90f6b6fa5a14, #383732); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 192px 0px 192px 0px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-h0o0j7, .framer-JsrWH .framer-1am90z0, .framer-JsrWH .framer-3296fy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-1hel5ml, .framer-JsrWH .framer-1u6jlq3, .framer-JsrWH .framer-44sfg3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JsrWH .framer-bfa1an { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-10ucxp5 { --framer-paragraph-spacing: 48px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JsrWH .framer-8t8f1e { --framer-paragraph-spacing: 20px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JsrWH .framer-12ng1t1-container, .framer-JsrWH .framer-1wbs1pw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-JsrWH .framer-4ic5ty { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 96px 0px 72px 0px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-JsrWH .framer-1jq6wzs, .framer-JsrWH .framer-cq6lxz { --framer-paragraph-spacing: 48px; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JsrWH .framer-se3bj0 { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; max-width: 1400px; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-o13c8y { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px 0px 16px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-JsrWH .framer-1ua7ea3 { aspect-ratio: 1.4069767441860466 / 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, 258px); position: relative; width: 100%; }\",\".framer-JsrWH .framer-1h4aunr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-soqtba { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-h1g4cf, .framer-JsrWH .framer-1qfjhyu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JsrWH .framer-bdbqdt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-btxcfu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-19b1h1o { --border-bottom-width: 1px; --border-color: var(--token-cabe9581-e37e-4ad9-8c2a-ad9c7ad8f1b3, #d1d1d1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: grid; flex: none; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JsrWH .framer-1nmf3hh, .framer-JsrWH .framer-12j7krm, .framer-JsrWH .framer-1v37isf, .framer-JsrWH .framer-1cn9n12, .framer-JsrWH .framer-1h55cfa, .framer-JsrWH .framer-1d4e4cq { --border-bottom-width: 0.5px; --border-color: var(--token-cabe9581-e37e-4ad9-8c2a-ad9c7ad8f1b3, #d1d1d1); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; justify-self: start; min-height: 302px; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-1ltv6qu, .framer-JsrWH .framer-10nw80h, .framer-JsrWH .framer-1po0zwy, .framer-JsrWH .framer-17wokwz, .framer-JsrWH .framer-1dl17ww, .framer-JsrWH .framer-wn4rqj { --border-bottom-width: 1px; --border-color: var(--token-cabe9581-e37e-4ad9-8c2a-ad9c7ad8f1b3, #d1d1d1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; background-color: var(--token-7ce9f3dc-2da2-4b29-ac78-b4d6b8c0ed85, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 48px; }\",\".framer-JsrWH .framer-1b5w93b { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-JsrWH .framer-14d2xpo, .framer-JsrWH .framer-r4c2j1, .framer-JsrWH .framer-1yno1j9, .framer-JsrWH .framer-fkfs9l, .framer-JsrWH .framer-qr74ra, .framer-JsrWH .framer-hy271d { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-fcandq, .framer-JsrWH .framer-1b0360w, .framer-JsrWH .framer-hakjr1, .framer-JsrWH .framer-1n7850n, .framer-JsrWH .framer-xz3sg4, .framer-JsrWH .framer-rvsm5u { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JsrWH .framer-1fvisy5, .framer-JsrWH .framer-cv0o49, .framer-JsrWH .framer-8i71ki, .framer-JsrWH .framer-108wswt, .framer-JsrWH .framer-6lj47p, .framer-JsrWH .framer-j42idl { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JsrWH .framer-sbvktl, .framer-JsrWH .framer-90uir0, .framer-JsrWH .framer-jpdrf, .framer-JsrWH .framer-12alpsq { aspect-ratio: 1.0416666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 25px; }\",\".framer-JsrWH .framer-1n7oczh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 24px; }\",\".framer-JsrWH .framer-cjm11g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-13bw1a8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 1px; z-index: 2; }\",\".framer-JsrWH .framer-kab4lg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JsrWH .framer-xkszc { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-e55f5e6f-6e6c-4f79-833e-aecf6e086d87, #f5f5f5); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 900px; height: var(--framer-aspect-ratio-supported, 220px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 220px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JsrWH .framer-6b0qes { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 220px); overflow: visible; position: relative; width: 220px; }\",\".framer-JsrWH .framer-1chcvtd-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-JsrWH .framer-1cpqks8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 192px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-10mnl8d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-JsrWH .framer-gip9tp-container, .framer-JsrWH .framer-1iqhrab-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-JsrWH .framer-1jtzjs8-container { flex: none; height: 80px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 8; }\",\".framer-JsrWH .framer-nbzqe5-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 8; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JsrWH.framer-72rtr7, .framer-JsrWH .framer-gqruc2, .framer-JsrWH .framer-148egs, .framer-JsrWH .framer-5t8tyt, .framer-JsrWH .framer-1bkgqgp, .framer-JsrWH .framer-4rd4of, .framer-JsrWH .framer-4ci33q, .framer-JsrWH .framer-h0o0j7, .framer-JsrWH .framer-1hel5ml, .framer-JsrWH .framer-bfa1an, .framer-JsrWH .framer-4ic5ty, .framer-JsrWH .framer-1am90z0, .framer-JsrWH .framer-1u6jlq3, .framer-JsrWH .framer-o13c8y, .framer-JsrWH .framer-1h4aunr, .framer-JsrWH .framer-soqtba, .framer-JsrWH .framer-bdbqdt, .framer-JsrWH .framer-3296fy, .framer-JsrWH .framer-44sfg3, .framer-JsrWH .framer-btxcfu, .framer-JsrWH .framer-1nmf3hh, .framer-JsrWH .framer-14d2xpo, .framer-JsrWH .framer-12j7krm, .framer-JsrWH .framer-r4c2j1, .framer-JsrWH .framer-1v37isf, .framer-JsrWH .framer-1yno1j9, .framer-JsrWH .framer-1cn9n12, .framer-JsrWH .framer-fkfs9l, .framer-JsrWH .framer-1h55cfa, .framer-JsrWH .framer-qr74ra, .framer-JsrWH .framer-1d4e4cq, .framer-JsrWH .framer-hy271d, .framer-JsrWH .framer-cjm11g, .framer-JsrWH .framer-13bw1a8, .framer-JsrWH .framer-kab4lg, .framer-JsrWH .framer-xkszc, .framer-JsrWH .framer-1cpqks8, .framer-JsrWH .framer-10mnl8d { gap: 0px; } .framer-JsrWH.framer-72rtr7 > *, .framer-JsrWH .framer-gqruc2 > *, .framer-JsrWH .framer-btxcfu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JsrWH.framer-72rtr7 > :first-child, .framer-JsrWH .framer-gqruc2 > :first-child, .framer-JsrWH .framer-5t8tyt > :first-child, .framer-JsrWH .framer-1bkgqgp > :first-child, .framer-JsrWH .framer-4ci33q > :first-child, .framer-JsrWH .framer-1hel5ml > :first-child, .framer-JsrWH .framer-bfa1an > :first-child, .framer-JsrWH .framer-4ic5ty > :first-child, .framer-JsrWH .framer-1u6jlq3 > :first-child, .framer-JsrWH .framer-o13c8y > :first-child, .framer-JsrWH .framer-1h4aunr > :first-child, .framer-JsrWH .framer-soqtba > :first-child, .framer-JsrWH .framer-bdbqdt > :first-child, .framer-JsrWH .framer-44sfg3 > :first-child, .framer-JsrWH .framer-btxcfu > :first-child, .framer-JsrWH .framer-1nmf3hh > :first-child, .framer-JsrWH .framer-14d2xpo > :first-child, .framer-JsrWH .framer-12j7krm > :first-child, .framer-JsrWH .framer-r4c2j1 > :first-child, .framer-JsrWH .framer-1v37isf > :first-child, .framer-JsrWH .framer-1yno1j9 > :first-child, .framer-JsrWH .framer-1cn9n12 > :first-child, .framer-JsrWH .framer-fkfs9l > :first-child, .framer-JsrWH .framer-1h55cfa > :first-child, .framer-JsrWH .framer-qr74ra > :first-child, .framer-JsrWH .framer-1d4e4cq > :first-child, .framer-JsrWH .framer-hy271d > :first-child, .framer-JsrWH .framer-kab4lg > :first-child, .framer-JsrWH .framer-1cpqks8 > :first-child, .framer-JsrWH .framer-10mnl8d > :first-child { margin-top: 0px; } .framer-JsrWH.framer-72rtr7 > :last-child, .framer-JsrWH .framer-gqruc2 > :last-child, .framer-JsrWH .framer-5t8tyt > :last-child, .framer-JsrWH .framer-1bkgqgp > :last-child, .framer-JsrWH .framer-4ci33q > :last-child, .framer-JsrWH .framer-1hel5ml > :last-child, .framer-JsrWH .framer-bfa1an > :last-child, .framer-JsrWH .framer-4ic5ty > :last-child, .framer-JsrWH .framer-1u6jlq3 > :last-child, .framer-JsrWH .framer-o13c8y > :last-child, .framer-JsrWH .framer-1h4aunr > :last-child, .framer-JsrWH .framer-soqtba > :last-child, .framer-JsrWH .framer-bdbqdt > :last-child, .framer-JsrWH .framer-44sfg3 > :last-child, .framer-JsrWH .framer-btxcfu > :last-child, .framer-JsrWH .framer-1nmf3hh > :last-child, .framer-JsrWH .framer-14d2xpo > :last-child, .framer-JsrWH .framer-12j7krm > :last-child, .framer-JsrWH .framer-r4c2j1 > :last-child, .framer-JsrWH .framer-1v37isf > :last-child, .framer-JsrWH .framer-1yno1j9 > :last-child, .framer-JsrWH .framer-1cn9n12 > :last-child, .framer-JsrWH .framer-fkfs9l > :last-child, .framer-JsrWH .framer-1h55cfa > :last-child, .framer-JsrWH .framer-qr74ra > :last-child, .framer-JsrWH .framer-1d4e4cq > :last-child, .framer-JsrWH .framer-hy271d > :last-child, .framer-JsrWH .framer-kab4lg > :last-child, .framer-JsrWH .framer-1cpqks8 > :last-child, .framer-JsrWH .framer-10mnl8d > :last-child { margin-bottom: 0px; } .framer-JsrWH .framer-148egs > *, .framer-JsrWH .framer-h0o0j7 > *, .framer-JsrWH .framer-1am90z0 > *, .framer-JsrWH .framer-3296fy > *, .framer-JsrWH .framer-13bw1a8 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-JsrWH .framer-148egs > :first-child, .framer-JsrWH .framer-4rd4of > :first-child, .framer-JsrWH .framer-h0o0j7 > :first-child, .framer-JsrWH .framer-1am90z0 > :first-child, .framer-JsrWH .framer-3296fy > :first-child, .framer-JsrWH .framer-cjm11g > :first-child, .framer-JsrWH .framer-13bw1a8 > :first-child, .framer-JsrWH .framer-xkszc > :first-child { margin-left: 0px; } .framer-JsrWH .framer-148egs > :last-child, .framer-JsrWH .framer-4rd4of > :last-child, .framer-JsrWH .framer-h0o0j7 > :last-child, .framer-JsrWH .framer-1am90z0 > :last-child, .framer-JsrWH .framer-3296fy > :last-child, .framer-JsrWH .framer-cjm11g > :last-child, .framer-JsrWH .framer-13bw1a8 > :last-child, .framer-JsrWH .framer-xkszc > :last-child { margin-right: 0px; } .framer-JsrWH .framer-5t8tyt > *, .framer-JsrWH .framer-1hel5ml > *, .framer-JsrWH .framer-1u6jlq3 > *, .framer-JsrWH .framer-44sfg3 > *, .framer-JsrWH .framer-kab4lg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-JsrWH .framer-1bkgqgp > *, .framer-JsrWH .framer-o13c8y > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-JsrWH .framer-4rd4of > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-JsrWH .framer-4ci33q > *, .framer-JsrWH .framer-10mnl8d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JsrWH .framer-bfa1an > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-JsrWH .framer-4ic5ty > *, .framer-JsrWH .framer-bdbqdt > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-JsrWH .framer-1h4aunr > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-JsrWH .framer-soqtba > *, .framer-JsrWH .framer-14d2xpo > *, .framer-JsrWH .framer-r4c2j1 > *, .framer-JsrWH .framer-1yno1j9 > *, .framer-JsrWH .framer-fkfs9l > *, .framer-JsrWH .framer-qr74ra > *, .framer-JsrWH .framer-hy271d > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-JsrWH .framer-1nmf3hh > *, .framer-JsrWH .framer-12j7krm > *, .framer-JsrWH .framer-1v37isf > *, .framer-JsrWH .framer-1cn9n12 > *, .framer-JsrWH .framer-1h55cfa > *, .framer-JsrWH .framer-1d4e4cq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-JsrWH .framer-cjm11g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JsrWH .framer-xkszc > * { margin: 0px; margin-left: calc(900px / 2); margin-right: calc(900px / 2); } .framer-JsrWH .framer-1cpqks8 > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-JsrWH[data-border=\"true\"]::after, .framer-JsrWH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-JsrWH.framer-72rtr7 { width: 810px; } .framer-JsrWH .framer-148egs { max-width: 900px; padding: 96px 16px 96px 16px; } .framer-JsrWH .framer-1mmvg8i { max-width: 700px; } .framer-JsrWH .framer-190ak59 { max-width: 760px; } .framer-JsrWH .framer-k574b2-container { aspect-ratio: 1.798002219755827 / 1; height: var(--framer-aspect-ratio-supported, 460px); } .framer-JsrWH .framer-h0o0j7, .framer-JsrWH .framer-1am90z0, .framer-JsrWH .framer-3296fy, .framer-JsrWH .framer-btxcfu, .framer-JsrWH .framer-10mnl8d { max-width: 900px; padding: 0px 16px 0px 16px; } .framer-JsrWH .framer-4ic5ty, .framer-JsrWH .framer-bdbqdt { gap: 48px; padding: 64px 0px 64px 0px; } .framer-JsrWH .framer-se3bj0 { grid-template-columns: repeat(2, minmax(50px, 1fr)); max-width: 900px; padding: 0px 16px 0px 16px; } .framer-JsrWH .framer-1ua7ea3 { height: var(--framer-aspect-ratio-supported, 268px); } .framer-JsrWH .framer-cq6lxz { max-width: 400px; } .framer-JsrWH .framer-19b1h1o { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-JsrWH .framer-cjm11g { height: 500px; } .framer-JsrWH .framer-13bw1a8 { flex: none; max-width: 900px; order: 0; padding: 0px 16px 0px 16px; width: 100%; } .framer-JsrWH .framer-1chcvtd-container { left: calc(50.00000000000002% - 100% / 2); order: 1; top: calc(50.00000000000002% - 100% / 2); } .framer-JsrWH .framer-1cpqks8 { padding: 128px 0px 64px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JsrWH .framer-4ic5ty, .framer-JsrWH .framer-bdbqdt { gap: 0px; } .framer-JsrWH .framer-4ic5ty > *, .framer-JsrWH .framer-bdbqdt > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-JsrWH .framer-4ic5ty > :first-child, .framer-JsrWH .framer-bdbqdt > :first-child { margin-top: 0px; } .framer-JsrWH .framer-4ic5ty > :last-child, .framer-JsrWH .framer-bdbqdt > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-JsrWH.framer-72rtr7 { padding: 64px 0px 0px 0px; width: 390px; } .framer-JsrWH .framer-gqruc2, .framer-JsrWH .framer-1bkgqgp { order: 0; } .framer-JsrWH .framer-148egs { max-width: 500px; padding: 64px 16px 64px 16px; } .framer-JsrWH .framer-5t8tyt, .framer-JsrWH .framer-1hel5ml { gap: 32px; } .framer-JsrWH .framer-4rd4of { flex-direction: column; order: 1; width: 100%; } .framer-JsrWH .framer-tgiau3-container, .framer-JsrWH .framer-1n1y2pc-container { height: 48px; width: 100%; } .framer-JsrWH .framer-k574b2-container { height: var(--framer-aspect-ratio-supported, 222px); } .framer-JsrWH .framer-4ci33q { order: 1; padding: 128px 0px 128px 0px; } .framer-JsrWH .framer-h0o0j7, .framer-JsrWH .framer-1am90z0, .framer-JsrWH .framer-3296fy, .framer-JsrWH .framer-btxcfu, .framer-JsrWH .framer-10mnl8d { max-width: 500px; padding: 0px 16px 0px 16px; } .framer-JsrWH .framer-bfa1an { gap: 16px; } .framer-JsrWH .framer-4ic5ty { gap: 48px; order: 2; padding: 64px 0px 64px 0px; } .framer-JsrWH .framer-se3bj0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; max-width: 500px; padding: 0px 16px 0px 16px; } .framer-JsrWH .framer-o13c8y { align-self: unset; height: min-content; } .framer-JsrWH .framer-1ua7ea3 { height: var(--framer-aspect-ratio-supported, 255px); } .framer-JsrWH .framer-bdbqdt { order: 3; padding: 64px 0px 64px 0px; } .framer-JsrWH .framer-19b1h1o { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-JsrWH .framer-1nmf3hh, .framer-JsrWH .framer-12j7krm, .framer-JsrWH .framer-1v37isf, .framer-JsrWH .framer-1cn9n12, .framer-JsrWH .framer-1h55cfa, .framer-JsrWH .framer-1d4e4cq { align-self: unset; gap: 16px; min-height: unset; padding: 24px; } .framer-JsrWH .framer-1ltv6qu, .framer-JsrWH .framer-10nw80h, .framer-JsrWH .framer-1po0zwy, .framer-JsrWH .framer-17wokwz, .framer-JsrWH .framer-1dl17ww, .framer-JsrWH .framer-wn4rqj { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; } .framer-JsrWH .framer-14d2xpo, .framer-JsrWH .framer-r4c2j1, .framer-JsrWH .framer-1yno1j9, .framer-JsrWH .framer-fkfs9l, .framer-JsrWH .framer-qr74ra, .framer-JsrWH .framer-hy271d { gap: 4px; } .framer-JsrWH .framer-sbvktl, .framer-JsrWH .framer-90uir0, .framer-JsrWH .framer-jpdrf, .framer-JsrWH .framer-12alpsq { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); width: 20px; } .framer-JsrWH .framer-1n7oczh { height: var(--framer-aspect-ratio-supported, 20px); width: 20px; } .framer-JsrWH .framer-cjm11g { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 390px); order: 5; } .framer-JsrWH .framer-13bw1a8 { flex: none; height: 100%; left: calc(50.00000000000002% - min(500px, 100%) / 2); max-width: 500px; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; } .framer-JsrWH .framer-kab4lg { align-content: center; align-items: center; } .framer-JsrWH .framer-xkszc { height: var(--framer-aspect-ratio-supported, 160px); width: 160px; } .framer-JsrWH .framer-6b0qes { aspect-ratio: unset; height: 100%; width: 100%; } .framer-JsrWH .framer-1chcvtd-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 390px); } .framer-JsrWH .framer-1cpqks8 { order: 7; padding: 128px 0px 64px 0px; } .framer-JsrWH .framer-1iqhrab-container { order: 8; } .framer-JsrWH .framer-nbzqe5-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JsrWH .framer-5t8tyt, .framer-JsrWH .framer-4rd4of, .framer-JsrWH .framer-1hel5ml, .framer-JsrWH .framer-bfa1an, .framer-JsrWH .framer-4ic5ty, .framer-JsrWH .framer-se3bj0, .framer-JsrWH .framer-19b1h1o, .framer-JsrWH .framer-1nmf3hh, .framer-JsrWH .framer-14d2xpo, .framer-JsrWH .framer-12j7krm, .framer-JsrWH .framer-r4c2j1, .framer-JsrWH .framer-1v37isf, .framer-JsrWH .framer-1yno1j9, .framer-JsrWH .framer-1cn9n12, .framer-JsrWH .framer-fkfs9l, .framer-JsrWH .framer-1h55cfa, .framer-JsrWH .framer-qr74ra, .framer-JsrWH .framer-1d4e4cq, .framer-JsrWH .framer-hy271d { gap: 0px; } .framer-JsrWH .framer-5t8tyt > *, .framer-JsrWH .framer-1hel5ml > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-JsrWH .framer-5t8tyt > :first-child, .framer-JsrWH .framer-4rd4of > :first-child, .framer-JsrWH .framer-1hel5ml > :first-child, .framer-JsrWH .framer-bfa1an > :first-child, .framer-JsrWH .framer-4ic5ty > :first-child, .framer-JsrWH .framer-se3bj0 > :first-child, .framer-JsrWH .framer-19b1h1o > :first-child, .framer-JsrWH .framer-1nmf3hh > :first-child, .framer-JsrWH .framer-14d2xpo > :first-child, .framer-JsrWH .framer-12j7krm > :first-child, .framer-JsrWH .framer-r4c2j1 > :first-child, .framer-JsrWH .framer-1v37isf > :first-child, .framer-JsrWH .framer-1yno1j9 > :first-child, .framer-JsrWH .framer-1cn9n12 > :first-child, .framer-JsrWH .framer-fkfs9l > :first-child, .framer-JsrWH .framer-1h55cfa > :first-child, .framer-JsrWH .framer-qr74ra > :first-child, .framer-JsrWH .framer-1d4e4cq > :first-child, .framer-JsrWH .framer-hy271d > :first-child { margin-top: 0px; } .framer-JsrWH .framer-5t8tyt > :last-child, .framer-JsrWH .framer-4rd4of > :last-child, .framer-JsrWH .framer-1hel5ml > :last-child, .framer-JsrWH .framer-bfa1an > :last-child, .framer-JsrWH .framer-4ic5ty > :last-child, .framer-JsrWH .framer-se3bj0 > :last-child, .framer-JsrWH .framer-19b1h1o > :last-child, .framer-JsrWH .framer-1nmf3hh > :last-child, .framer-JsrWH .framer-14d2xpo > :last-child, .framer-JsrWH .framer-12j7krm > :last-child, .framer-JsrWH .framer-r4c2j1 > :last-child, .framer-JsrWH .framer-1v37isf > :last-child, .framer-JsrWH .framer-1yno1j9 > :last-child, .framer-JsrWH .framer-1cn9n12 > :last-child, .framer-JsrWH .framer-fkfs9l > :last-child, .framer-JsrWH .framer-1h55cfa > :last-child, .framer-JsrWH .framer-qr74ra > :last-child, .framer-JsrWH .framer-1d4e4cq > :last-child, .framer-JsrWH .framer-hy271d > :last-child { margin-bottom: 0px; } .framer-JsrWH .framer-4rd4of > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-JsrWH .framer-bfa1an > *, .framer-JsrWH .framer-se3bj0 > *, .framer-JsrWH .framer-1nmf3hh > *, .framer-JsrWH .framer-12j7krm > *, .framer-JsrWH .framer-1v37isf > *, .framer-JsrWH .framer-1cn9n12 > *, .framer-JsrWH .framer-1h55cfa > *, .framer-JsrWH .framer-1d4e4cq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-JsrWH .framer-4ic5ty > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-JsrWH .framer-19b1h1o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JsrWH .framer-14d2xpo > *, .framer-JsrWH .framer-r4c2j1 > *, .framer-JsrWH .framer-1yno1j9 > *, .framer-JsrWH .framer-fkfs9l > *, .framer-JsrWH .framer-qr74ra > *, .framer-JsrWH .framer-hy271d > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5951\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EG26ebgud\":{\"layout\":[\"fixed\",\"auto\"]},\"CG3nOxtAh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"kEBD8BOzN\":{\"pattern\":\":kEBD8BOzN\",\"name\":\"services\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-JsrWH\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5951,width:1200};addFonts(FrameraugiA20Il,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...PrimaryButtonLightFonts,...SecondaryButtonLightFonts,...EmbedFonts,...SecondaryButtonDarkFonts,...IconButtonFonts,...VideoFonts,...CTAFonts,...FooterFonts,...DesktopNavigationFonts,...MobileNavigationFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"kEBD8BOzN\\\":{\\\"pattern\\\":\\\":kEBD8BOzN\\\",\\\"name\\\":\\\"services\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"5951\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EG26ebgud\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CG3nOxtAh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "PrimaryButtonLightFonts", "getFonts", "h7QMuRFUQ_default", "SecondaryButtonLightFonts", "H7bQfrgAt_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "EmbedFonts", "Embed", "SecondaryButtonDarkFonts", "kjQjGg0K9_default", "IconButtonFonts", "iQKAfuLl7_default", "VideoFonts", "Video", "CTAFonts", "CxMLZWqBt_default", "FooterFonts", "pP60aXhpa_default", "DesktopNavigationFonts", "gq2vTEqxP_default", "MobileNavigationFonts", "Z4G7f5dRX_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "W9WxtZBiSFsHndgMjT", "w5jRlsboxFsHndgMjT", "FOQfh7VoMFsHndgMjT", "R6NiCkc7eFsHndgMjT", "mKGnzq0uMFsHndgMjT", "idFsHndgMjT", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "RichText2", "x", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "Container", "resolvedLinks1", "resolvedLinks2", "ChildrenCanSuspend", "W6EEQb9KE_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "getLoadingLazyAtYPosition", "Image2", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
