{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/oPUz9r2434poQbv7cyFl/btgtr9solF2JO6FIqBhI/osGxMtaun-0.js", "ssg:https://framerusercontent.com/modules/oPUz9r2434poQbv7cyFl/btgtr9solF2JO6FIqBhI/osGxMtaun.js", "ssg:https://framerusercontent.com/modules/xv872EFdvrW5yBy16902/hPzJEh6Z8alXOcV6ApON/osGxMtaun.js", "ssg:https://framerusercontent.com/modules/y02oE5b8emUbU58ilrnd/iVY0005Z40lceLmZzgjf/augiA20Il.js", "ssg:https://framerusercontent.com/modules/s0AMRvGSSaC3tdgDccjG/7SSvVRL87lyoUesuTZPt/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "export const v0=\"\\xab Au cours des 10 derni\\xe8res ann\\xe9es, j\u2019ai \\xe9t\\xe9 impressionn\\xe9 par leur \\xe9quipe d\\xe9di\\xe9e. Ils ont grandement simplifi\\xe9 le processus du cr\\xe9dit d\u2019imp\\xf4t RS&DE pour notre entreprise partout au Canada. Leur approche efficace, leurs outils de travail et leurs formations nous ont permis d\u2019\\xe9tablir une fondation pour g\\xe9rer avec succ\\xe8s les cr\\xe9dits RS&DE. Je les recommande sans h\\xe9sitation \\xe0 n\u2019importe quelle compagnie qui d\\xe9sire profiter des cr\\xe9dits d\u2019imp\\xf4t pour la Recherche et D\\xe9veloppement. \\xbb\";export const v1=\"Directeur financier, Medtronic\";export const v2=\"\\xab Leur niveau de service a \\xe9t\\xe9 exceptionnel au cours des cinq derni\\xe8res ann\\xe9es. Ils nous ont guid\\xe9 \\xe0 travers chaque \\xe9tape du processus, depuis l\u2019\\xe9tablissement de la compagnie jusqu\u2019\\xe0 l\u2019impl\\xe9mentation des meilleures pratiques op\\xe9rationnelles en R-D, l\u2019identification et l\u2019application pour des subventions et des cr\\xe9dits d\u2019imp\\xf4ts ainsi que les v\\xe9rifications des comptes. Nous sommes impressionn\\xe9s par les Partenaires R&D; nous les consid\\xe9rons r\\xe9ellement comme nos partenaires. \\xbb\";export const v3=\"PDG, IntelliSyn\";export const v4=\"\\xab Les Partenaires R&D ont \\xe9t\\xe9 tr\\xe8s efficace et se sont assur\\xe9s que nous maximisions nos r\\xe9clamations d\u2019imp\\xf4ts complexes. Ils ont \\xe9galement \\xe9t\\xe9 tr\\xe8s utiles dans les n\\xe9gociations avec nos auditeurs et les autorit\\xe9s fiscales \u2013 nous permettant ainsi de nous concentrer sur notre entreprise. \\xbb\";export const v5=\"Directeur financier, Sportlogiq\";export const v6=\"\\xab Ils poss\\xe8dent une \\xe9quipe comp\\xe9tente et professionnelle qui ont adapt\\xe9 leur approche selon nos besoins. J\u2019aimerais les remercier pour l\u2019aide qu\u2019ils nous ont apport\\xe9e pour nos r\\xe9clamations de RS-DE. \\xbb\";export const v7=\"Vice-Pr\\xe9sident, Finance and Administration\";export const v8=\"\\xab Nous sommes extr\\xeamement ravis de travailler avec Partenaires R&D. L\u2019\\xe9quipe est efficace, concise, experte dans le domaine et offre un service qui d\\xe9passe constamment nos attentes. Nous les recommandons vivement. \\xbb\";export const v9=\"Directrice financi\\xe8re, Mirametrix\";export const v10=\"\\xab Je connais Mike Lee de chez Partenaires R&D depuis plusieurs ann\\xe9es et je suis toujours impressionn\\xe9 par leur habilet\\xe9 \\xe0 identifier, combiner, stimuler et optimiser les cr\\xe9dits d\u2019imp\\xf4ts et les subventions pour notre portfolio d\u2019entreprise. Je recommande Partenaires R&D sans h\\xe9sitation. \\xbb\";export const v11=\"Directeur associ\\xe9, Panache Ventures & 500 Startups\";export const v12=\"\\xab\u202FPartenaires R&D nous ont beaucoup aid\\xe9s dans le processus d\u2019application pour le cr\\xe9dit d\u2019imp\\xf4t multim\\xe9dia. Ils ont fourni un soutien pratique, ont \\xe9t\\xe9 proactifs pour faire avancer le processus, et ont \\xe9t\\xe9 tr\\xe8s professionnels et transparents.\u202F\\xbb\";export const v13=\"Co-fondateur et PDG, MegaZebra\";export const v14=\"\\xab Nous travaillons avec Partenaires R&D depuis plusieurs ann\\xe9es. Ils font du travail incroyable et leur \\xe9quipe est extr\\xeamement professionnelle. Ann\\xe9e apr\\xe8s ann\\xe9e, ils nous guident avec succ\\xe8s tout le long des processus de demande de cr\\xe9dits d\u2019imp\\xf4t, souvent avec des \\xe9ch\\xe9anciers tr\\xe8s exigeants, et nous avons toujours re\\xe7u 100% de notre r\\xe9clamation. \\xbb\";export const v15=\"Pr\\xe9sident de Fiska\";\nexport const __FramerMetadata__ = {\"exports\":{\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7e0329e)\nimport*as localizedValues from\"./osGxMtaun-0.js\";const valuesByLocaleId={WpPavRIc0:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7e0329e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/oPUz9r2434poQbv7cyFl/btgtr9solF2JO6FIqBhI/osGxMtaun.js\";import ArrowIcons from\"https://framerusercontent.com/modules/8I7iryM1GqsPVfaMcUCB/KKrRLM8r1VBvvMtcmY5f/JJGTtC_NO.js\";import SlideshowText from\"https://framerusercontent.com/modules/iyqUyhVTSO4uFD0uKaCe/vjbiPvH6G6S7jKmUI3nV/TqJdV1zUV.js\";const ArrowIconsFonts=getFonts(ArrowIcons);const SlideshowTextFonts=getFonts(SlideshowText);const ArrowIconsControls=getPropertyControls(ArrowIcons);const cycleOrder=[\"aQmJdPWLB\",\"dVDrnstQS\",\"B_fISHUnt\",\"aoL3eRcoX\",\"V1j1UGt_j\",\"AZDia6ICE\",\"uOaKBdm3j\",\"UmmTo58jd\"];const serializationHash=\"framer-URBf8\";const variantClassNames={aoL3eRcoX:\"framer-v-1f00wv7\",aQmJdPWLB:\"framer-v-1rsoyuc\",AZDia6ICE:\"framer-v-1fy22f5\",B_fISHUnt:\"framer-v-1q40vjg\",dVDrnstQS:\"framer-v-189a175\",UmmTo58jd:\"framer-v-1pnyoof\",uOaKBdm3j:\"framer-v-108dt8e\",V1j1UGt_j:\"framer-v-1i5rzzr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[0,0,1,1],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Desktop - Slideshow Left\":\"j3SFHlPm4\",\"Desktop - Slideshow Right\":\"rAyGqUfbU\",\"Down Grey \":\"Mya3PEHiF\",\"Left Grey\":\"ujAWOLIuw\",\"Phone - Slideshow Left\":\"n46sQ9ClG\",\"Phone - Slideshow Right\":\"jQUm5_Pel\",\"Right Grey\":\"Y1_Mgn3Ol\",\"Up Grey\":\"ewpoSWcXu\",\"White Left\":\"HDqE_qsGz\",\"White Right\":\"QDKewDJCr\"};const humanReadableVariantMap={\"x-chem\":\"dVDrnstQS\",cqdm:\"aoL3eRcoX\",Fiska:\"UmmTo58jd\",Medtronic:\"aQmJdPWLB\",MegaZebra:\"uOaKBdm3j\",Mirametrix:\"V1j1UGt_j\",Panache:\"AZDia6ICE\",sportlogic:\"B_fISHUnt\"};const getProps=({height,id,leftButton,rightButton,width,...props})=>{return{...props,JHJDiS2ba:humanReadableEnumMap[leftButton]??leftButton??props.JHJDiS2ba??\"j3SFHlPm4\",rZvzw1Bq6:humanReadableEnumMap[rightButton]??rightButton??props.rZvzw1Bq6??\"rAyGqUfbU\",variant:humanReadableVariantMap[props.variant]??props.variant??\"aQmJdPWLB\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,JHJDiS2ba,rZvzw1Bq6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"aQmJdPWLB\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const aRDcR1fAj1rcyiji=activeVariantCallback(async(...args)=>{setVariant(\"B_fISHUnt\");});const aRDcR1fAj1u2w4yj=activeVariantCallback(async(...args)=>{setVariant(\"aQmJdPWLB\");});const aRDcR1fAj7o7q7=activeVariantCallback(async(...args)=>{setVariant(\"UmmTo58jd\");});const aRDcR1fAj1g6i89w=activeVariantCallback(async(...args)=>{setVariant(\"dVDrnstQS\");});const aRDcR1fAj1iax5od=activeVariantCallback(async(...args)=>{setVariant(\"aoL3eRcoX\");});const aRDcR1fAjw04i9z=activeVariantCallback(async(...args)=>{setVariant(\"V1j1UGt_j\");});const aRDcR1fAjbh2391=activeVariantCallback(async(...args)=>{setVariant(\"AZDia6ICE\");});const aRDcR1fAj8e3m65=activeVariantCallback(async(...args)=>{setVariant(\"uOaKBdm3j\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1rsoyuc\",className,classNames),\"data-framer-name\":\"Medtronic\",layoutDependency:layoutDependency,layoutId:\"aQmJdPWLB\",ref:refBinding,style:{...style},...addPropertyOverrides({aoL3eRcoX:{\"data-framer-name\":\"cqdm\"},AZDia6ICE:{\"data-framer-name\":\"Panache\"},B_fISHUnt:{\"data-framer-name\":\"sportlogic\"},dVDrnstQS:{\"data-framer-name\":\"x-chem\"},UmmTo58jd:{\"data-framer-name\":\"Fiska\"},uOaKBdm3j:{\"data-framer-name\":\"MegaZebra\"},V1j1UGt_j:{\"data-framer-name\":\"Mirametrix\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,y:(componentViewport?.y||0)+(138+((componentViewport?.height||705)-276-14)/2),...addPropertyOverrides({aoL3eRcoX:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||596)-276-14)/2)},AZDia6ICE:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||632)-276-14)/2)},B_fISHUnt:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||632)-276-14)/2)},UmmTo58jd:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||669)-276-14)/2)},uOaKBdm3j:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||632)-276-14)/2)},V1j1UGt_j:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||632)-276-14)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k8go2v-container\",\"data-framer-name\":\"Left arrow\",layoutDependency:layoutDependency,layoutId:\"T2PjBdqHE-container\",name:\"Left arrow\",nodeId:\"T2PjBdqHE\",rendersWithMotion:true,scopeId:\"osGxMtaun\",children:/*#__PURE__*/_jsx(ArrowIcons,{aRDcR1fAj:aRDcR1fAj1rcyiji,height:\"100%\",id:\"T2PjBdqHE\",layoutId:\"T2PjBdqHE\",name:\"Left arrow\",variant:JHJDiS2ba,width:\"100%\",...addPropertyOverrides({aoL3eRcoX:{aRDcR1fAj:aRDcR1fAj1g6i89w},AZDia6ICE:{aRDcR1fAj:aRDcR1fAjw04i9z},B_fISHUnt:{aRDcR1fAj:aRDcR1fAj7o7q7},dVDrnstQS:{aRDcR1fAj:aRDcR1fAj1u2w4yj},UmmTo58jd:{aRDcR1fAj:aRDcR1fAj8e3m65},uOaKBdm3j:{aRDcR1fAj:aRDcR1fAjbh2391},V1j1UGt_j:{aRDcR1fAj:aRDcR1fAj1iax5od}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fh7c8\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"Pg3fFPeme\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:356,y:(componentViewport?.y||0)+(138+((componentViewport?.height||705)-276-356)/2)+0+0,...addPropertyOverrides({aoL3eRcoX:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||596)-276-356)/2)+0+0},AZDia6ICE:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||632)-276-356)/2)+0+0},B_fISHUnt:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||632)-276-356)/2)+0+0},UmmTo58jd:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||669)-276-356)/2)+0+0},uOaKBdm3j:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||632)-276-356)/2)+0+0},V1j1UGt_j:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||632)-276-356)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h7eb1t-container\",layoutDependency:layoutDependency,layoutId:\"KcImArf1D-container\",nodeId:\"KcImArf1D\",rendersWithMotion:true,scopeId:\"osGxMtaun\",children:/*#__PURE__*/_jsx(SlideshowText,{CunGJVf4d:addImageAlt({pixelHeight:61,pixelWidth:341,src:\"https://framerusercontent.com/images/S01YN1IM8jCmdPaeAxeGKRrNZcg.png\"},\"\"),height:\"100%\",id:\"KcImArf1D\",ji0klf7f0:getLocalizedValue(\"v0\",activeLocale)??\"\u201COver the last 10 years, I have been impressed by their dedicated team. They have made the R&D tax credit process extremely straightforward and efficient for us across the Canadian firm. Their effective approach, tools, and training provide us with the foundation for us to successfully manage the SR&ED tax incentive. I would recommend them without hesitation to any company looking to benefit from R&D tax credits.\u201D\",JnupCmQoK:getLocalizedValue(\"v1\",activeLocale)??\"Senior Financial Manager, Medtronic\",layoutId:\"KcImArf1D\",nRpvODWE1:\"Robert St-Jean, CPA, MBA\",style:{width:\"100%\"},variant:\"GpbzjxxLp\",width:\"100%\",...addPropertyOverrides({aoL3eRcoX:{CunGJVf4d:addImageAlt({pixelHeight:90,pixelWidth:300,src:\"https://framerusercontent.com/images/jGKZMetONvLy4XSABi1DafkvyyY.png\"},\"\"),ji0klf7f0:getLocalizedValue(\"v6\",activeLocale)??\"\u201CThey are a very professional and experienced team that adapted their approach to our needs. I would like to thank them for their assistance with our SR&ED claims.\u201D\",JnupCmQoK:getLocalizedValue(\"v7\",activeLocale)??\"VP, Finance and Administration, CQDM\",nRpvODWE1:\"Michael Bridges, CPA, CA\"},AZDia6ICE:{CunGJVf4d:addImageAlt({pixelHeight:88,pixelWidth:300,src:\"https://framerusercontent.com/images/MTuQTxGE7c55xSsgHVFEykdN6DU.png\"},\"\"),ji0klf7f0:getLocalizedValue(\"v10\",activeLocale)??\"\u201CI have known Mike Lee from R&D Partners for many years and I am always impressed by the way they are able to identify, combine, simulate, and optimize tax credits and grants for our portfolio companies. I would recommend R&D Partners without hesitation.\u201D\",JnupCmQoK:getLocalizedValue(\"v11\",activeLocale)??\"Managing Partner, Panache Ventures & 500 Startups\",nRpvODWE1:\"Mike Cegelski\"},B_fISHUnt:{CunGJVf4d:addImageAlt({pixelHeight:90,pixelWidth:300,src:\"https://framerusercontent.com/images/TYFtZdIHuHSpVhtLskS4xZozVs.png\"},\"\"),ji0klf7f0:getLocalizedValue(\"v4\",activeLocale)??\"\u201CR&D Partners was very efficient and ensured we maximized our complex claims. They were also very helpful in dealing with our auditors and tax authorities \u2013 allowing us to focus on our business.\u201D\",JnupCmQoK:getLocalizedValue(\"v5\",activeLocale)??\"CFO, Sportlogiq\",nRpvODWE1:\"Jake Chadwick\"},dVDrnstQS:{CunGJVf4d:addImageAlt({pixelHeight:150,pixelWidth:300,src:\"https://framerusercontent.com/images/zIVNzp7QZOuyL1jMGM5iTnYlZV4.png\"},\"\"),ji0klf7f0:getLocalizedValue(\"v2\",activeLocale)??\"\u201CTheir level of service has been outstanding over the last five years. They led us through every step of the process from properly setting up the company in Canada, to implementing R&D best practices; identifying and applying for tax credit and grants, and successfully taking us through audits. I am impressed with R&D Partners; we do really consider them as our partners.\u201D\",JnupCmQoK:getLocalizedValue(\"v3\",activeLocale)??\"CEO, IntelliSyn\",nRpvODWE1:\"Jeffrey Albert, Ph.D.\"},UmmTo58jd:{CunGJVf4d:addImageAlt({pixelHeight:206,pixelWidth:536,src:\"https://framerusercontent.com/images/TCzTHMhz4oIDY1rLFTD6jVlaVI.png\",srcSet:\"https://framerusercontent.com/images/TCzTHMhz4oIDY1rLFTD6jVlaVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/TCzTHMhz4oIDY1rLFTD6jVlaVI.png 536w\"},\"\"),ji0klf7f0:getLocalizedValue(\"v14\",activeLocale)??\"\u201CWe have worked with R&D Partners for many years. They do incredible work and their team is extremely professional. Year after year, they guide us successfully through the tax credit application process, often within tight deadlines, and we have always received 100% of our claims.\u201D\",JnupCmQoK:getLocalizedValue(\"v15\",activeLocale)??\"CEO, Fiska\",nRpvODWE1:\"Patrick Huynh\"},uOaKBdm3j:{CunGJVf4d:addImageAlt({pixelHeight:139,pixelWidth:300,src:\"https://framerusercontent.com/images/jDRwsZBIeXxNvVgdYqdJL4MkMAA.png\"},\"\"),ji0klf7f0:getLocalizedValue(\"v12\",activeLocale)??\"\u201CR&D Partners have been very helpful in guiding us through the Multimedia tax credit process. They provided hands-on support, were proactive in driving the process forward, and were all-around professional and transparent.\u201D\",JnupCmQoK:getLocalizedValue(\"v13\",activeLocale)??\"Co-founder & CEO, MegaZebra\",nRpvODWE1:\"Mark Gazecki\"},V1j1UGt_j:{CunGJVf4d:addImageAlt({pixelHeight:110,pixelWidth:300,src:\"https://framerusercontent.com/images/DmFXVd5JDHrTI011u8dHlRQO9ck.png\"},\"\"),ji0klf7f0:getLocalizedValue(\"v8\",activeLocale)??\"\u201CWe are extremely pleased with our decision to work with R&D Partners. They are efficient, straightforward, knowledgeable and deliver above and beyond expectations. We would recommend them to any organization.\u201D\",JnupCmQoK:getLocalizedValue(\"v9\",activeLocale)??\"CFO, Mirametrix\",nRpvODWE1:\"Helen Eric, CPA, CA\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,y:(componentViewport?.y||0)+(138+((componentViewport?.height||705)-276-14)/2),...addPropertyOverrides({aoL3eRcoX:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||596)-276-14)/2)},AZDia6ICE:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||632)-276-14)/2)},B_fISHUnt:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||632)-276-14)/2)},UmmTo58jd:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||669)-276-14)/2)},uOaKBdm3j:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||632)-276-14)/2)},V1j1UGt_j:{y:(componentViewport?.y||0)+(138+((componentViewport?.height||632)-276-14)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ti452q-container\",\"data-framer-name\":\"Right arrow\",layoutDependency:layoutDependency,layoutId:\"rHa8J6bbx-container\",name:\"Right arrow\",nodeId:\"rHa8J6bbx\",rendersWithMotion:true,scopeId:\"osGxMtaun\",children:/*#__PURE__*/_jsx(ArrowIcons,{aRDcR1fAj:aRDcR1fAj1g6i89w,height:\"100%\",id:\"rHa8J6bbx\",layoutId:\"rHa8J6bbx\",name:\"Right arrow\",variant:rZvzw1Bq6,width:\"100%\",...addPropertyOverrides({aoL3eRcoX:{aRDcR1fAj:aRDcR1fAjw04i9z},AZDia6ICE:{aRDcR1fAj:aRDcR1fAj8e3m65},B_fISHUnt:{aRDcR1fAj:aRDcR1fAj1u2w4yj},dVDrnstQS:{aRDcR1fAj:aRDcR1fAj1iax5od},UmmTo58jd:{aRDcR1fAj:aRDcR1fAj1rcyiji},uOaKBdm3j:{aRDcR1fAj:aRDcR1fAj7o7q7},V1j1UGt_j:{aRDcR1fAj:aRDcR1fAjbh2391}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-URBf8.framer-11j98vz, .framer-URBf8 .framer-11j98vz { display: block; }\",\".framer-URBf8.framer-1rsoyuc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 138px 0px 138px 0px; position: relative; width: 1145px; }\",\".framer-URBf8 .framer-k8go2v-container, .framer-URBf8 .framer-1ti452q-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-URBf8 .framer-fh7c8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-URBf8 .framer-h7eb1t-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-URBf8.framer-v-189a175 .framer-h7eb1t-container { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 705\n * @framerIntrinsicWidth 1145\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dVDrnstQS\":{\"layout\":[\"fixed\",\"auto\"]},\"B_fISHUnt\":{\"layout\":[\"fixed\",\"auto\"]},\"aoL3eRcoX\":{\"layout\":[\"fixed\",\"auto\"]},\"V1j1UGt_j\":{\"layout\":[\"fixed\",\"auto\"]},\"AZDia6ICE\":{\"layout\":[\"fixed\",\"auto\"]},\"uOaKBdm3j\":{\"layout\":[\"fixed\",\"auto\"]},\"UmmTo58jd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"JHJDiS2ba\":\"leftButton\",\"rZvzw1Bq6\":\"rightButton\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerosGxMtaun=withCSS(Component,css,\"framer-URBf8\");export default FramerosGxMtaun;FramerosGxMtaun.displayName=\"Home Page\";FramerosGxMtaun.defaultProps={height:705,width:1145};addPropertyControls(FramerosGxMtaun,{variant:{options:[\"aQmJdPWLB\",\"dVDrnstQS\",\"B_fISHUnt\",\"aoL3eRcoX\",\"V1j1UGt_j\",\"AZDia6ICE\",\"uOaKBdm3j\",\"UmmTo58jd\"],optionTitles:[\"Medtronic\",\"x-chem\",\"sportlogic\",\"cqdm\",\"Mirametrix\",\"Panache\",\"MegaZebra\",\"Fiska\"],title:\"Variant\",type:ControlType.Enum},JHJDiS2ba:ArrowIconsControls?.[\"variant\"]&&{...ArrowIconsControls[\"variant\"],defaultValue:\"j3SFHlPm4\",description:undefined,hidden:undefined,title:\"Left Button\"},rZvzw1Bq6:ArrowIconsControls?.[\"variant\"]&&{...ArrowIconsControls[\"variant\"],defaultValue:\"rAyGqUfbU\",description:undefined,hidden:undefined,title:\"Right Button\"}});addFonts(FramerosGxMtaun,[{explicitInter:true,fonts:[]},...ArrowIconsFonts,...SlideshowTextFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerosGxMtaun\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1145\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"JHJDiS2ba\\\":\\\"leftButton\\\",\\\"rZvzw1Bq6\\\":\\\"rightButton\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dVDrnstQS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"B_fISHUnt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aoL3eRcoX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V1j1UGt_j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AZDia6ICE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uOaKBdm3j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UmmTo58jd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"705\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0784c89)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={WpPavRIc0:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0784c89)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}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/7qT0r3So12155VV5Jq5x/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import FullFooter from\"#framer/local/canvasComponent/H4nSqDFau/H4nSqDFau.js\";import FloatingNavBar from\"#framer/local/canvasComponent/Jwgh_m5_X/Jwgh_m5_X.js\";import OurTrackRecord from\"#framer/local/canvasComponent/nHiZ1rO33/nHiZ1rO33.js\";import HomePage from\"#framer/local/canvasComponent/osGxMtaun/osGxMtaun.js\";import BackToTop from\"#framer/local/canvasComponent/SmeYzP06S/SmeYzP06S.js\";import HoverButtons from\"#framer/local/canvasComponent/uD4dz2Bi1/uD4dz2Bi1.js\";import NavigationBar from\"#framer/local/canvasComponent/XjXr_QkGc/XjXr_QkGc.js\";import*as sharedStyle3 from\"#framer/local/css/i8WOkycG8/i8WOkycG8.js\";import*as sharedStyle from\"#framer/local/css/PpsUtjeqg/PpsUtjeqg.js\";import*as sharedStyle6 from\"#framer/local/css/QbraaRHJq/QbraaRHJq.js\";import*as sharedStyle4 from\"#framer/local/css/RtEYE66Yi/RtEYE66Yi.js\";import*as sharedStyle5 from\"#framer/local/css/T5y0Ekziq/T5y0Ekziq.js\";import*as sharedStyle7 from\"#framer/local/css/WndDZU18t/WndDZU18t.js\";import*as sharedStyle2 from\"#framer/local/css/xhqcL442K/xhqcL442K.js\";import*as sharedStyle1 from\"#framer/local/css/zW3s8bGrF/zW3s8bGrF.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const FloatingNavBarFonts=getFonts(FloatingNavBar);const ContainerWithFX=withFX(Container);const NavigationBarFonts=getFonts(NavigationBar);const VideoFonts=getFonts(Video);const HoverButtonsFonts=getFonts(HoverButtons);const OurTrackRecordFonts=getFonts(OurTrackRecord);const HomePageFonts=getFonts(HomePage);const YouTubeFonts=getFonts(YouTube);const FullFooterFonts=getFonts(FullFooter);const BackToTopFonts=getFonts(BackToTop);const breakpoints={BbMZXEPlt:\"(max-width: 809px)\",M67HlrVXJ:\"(min-width: 1200px) and (max-width: 1399px)\",vfcLfdEv1:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1400px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-gUuHp\";const variantClassNames={BbMZXEPlt:\"framer-v-1lyp5n8\",M67HlrVXJ:\"framer-v-1c6xqrz\",vfcLfdEv1:\"framer-v-cchd63\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-125};const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"M67HlrVXJ\",Desktop:\"WQLkyLRf1\",Phone:\"BbMZXEPlt\",Tablet:\"vfcLfdEv1\"};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,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"vfcLfdEv1\",\"BbMZXEPlt\"].includes(baseVariant))return false;return true;};const ref1=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"vfcLfdEv1\",\"BbMZXEPlt\"].includes(baseVariant))return true;return false;};const elementId=useRouteElementId(\"tSRxTyvzW\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"lzFLFlD7R\");usePreloadLocalizedValues(activeLocale);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:99,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:60,ref:ref1,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wrbhst-container hidden-cchd63 hidden-1lyp5n8\",layoutScroll:true,nodeId:\"u_N6Bmony\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FloatingNavBar,{height:\"100%\",id:\"u_N6Bmony\",layoutId:\"u_N6Bmony\",style:{width:\"100%\"},variant:\"Z4fqcnTuH\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{height:196,width:\"100vw\",y:0},vfcLfdEv1:{height:196,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{layoutScroll:true},vfcLfdEv1:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-qn1a2k-container hidden-72rtr7 hidden-1c6xqrz\",\"data-framer-name\":\"Tablet nav \",name:\"Tablet nav \",nodeId:\"g0JO4k8XG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{style:{width:\"100%\"},variant:\"fU3rdCfuA\"},vfcLfdEv1:{style:{width:\"100%\"},variant:\"cHYhzUaIX\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"g0JO4k8XG\",layoutId:\"g0JO4k8XG\",name:\"Tablet nav \",style:{height:\"100%\",width:\"100%\"},variant:\"g6mQyiGqw\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-189bmvn\",children:/*#__PURE__*/_jsxs(\"header\",{className:\"framer-9na0zd\",\"data-framer-name\":\"Header Image\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xybwwf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yeK9_lWFd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"yeK9_lWFd\",isMixedBorderRadius:false,layoutId:\"yeK9_lWFd\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/Hc7c7sKjGEZgJcIGQ4jbaJ3ToI.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%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:196,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px) - 200px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+10+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-118zizq-container hidden-cchd63 hidden-1lyp5n8\",\"data-framer-name\":\"Desktop Nav\",name:\"Desktop Nav\",nodeId:\"RTZz5wilO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"RTZz5wilO\",layoutId:\"RTZz5wilO\",name:\"Desktop Nav\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"g6mQyiGqw\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2g3ma9\",\"data-framer-name\":\"Header + buttons\",id:elementId1,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1va5ekn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1e49gbk\",\"data-styles-preset\":\"PpsUtjeqg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a84b3d8c-b616-454c-9d3a-54226768bdc9, rgb(249, 249, 254))\"},children:\"Maximize your government funding\"})}),className:\"framer-1tb2gz0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1dtcf11\",\"data-styles-preset\":\"zW3s8bGrF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-12dbb8a6-55b0-4fa8-bbc8-1070db3ce4b6, rgb(209, 209, 220))\"},children:\"Simplify your life\"})}),className:\"framer-pnz5wc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zumxu1\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://rdpartners.fundica.com/signup\",motionChild:true,nodeId:\"ElqCwmJxW\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-122jtu3 framer-lux5qc\",\"data-framer-name\":\"Find Funding\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{y:(componentViewport?.y||0)+0+0+0+200+0+0+140+0+0+0},vfcLfdEv1:{y:(componentViewport?.y||0)+0+0+0+150+0+0+140+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+0+0+10+292+0+140+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1354x2y-container\",nodeId:\"pfN2R_r9M\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HoverButtons,{height:\"100%\",id:\"pfN2R_r9M\",layoutId:\"pfN2R_r9M\",TUSZzIxyf:getLocalizedValue(\"v2\",activeLocale)??\"FIND FUNDING\",variant:\"APvCzWYoC\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Tpr_gAsTC\"},motionChild:true,nodeId:\"zUKyWqLap\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1du2w55 framer-lux5qc\",\"data-framer-name\":\"Do I Qualify\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{y:(componentViewport?.y||0)+0+0+0+200+0+0+140+0+56+0},vfcLfdEv1:{y:(componentViewport?.y||0)+0+0+0+150+0+0+140+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+0+0+10+292+0+140+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p6bxyf-container\",nodeId:\"uAbf7kb92\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HoverButtons,{height:\"100%\",id:\"uAbf7kb92\",layoutId:\"uAbf7kb92\",TUSZzIxyf:getLocalizedValue(\"v3\",activeLocale)??\"DO I QUALIFY?\",variant:\"hs09unCn5\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g6ojrw\",\"data-framer-name\":\"Trusted By + logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-12qgnb6\",\"data-styles-preset\":\"xhqcL442K\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a84b3d8c-b616-454c-9d3a-54226768bdc9, rgb(249, 249, 254))\"},children:\"Trusted by Canada\u2019s most innovative companies\"})}),className:\"framer-z3k1hh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zdteum\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ydg0c\",\"data-framer-name\":\"X-chem\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+200+334+0+52+0+0+0),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:\"146.0177px\",src:\"https://framerusercontent.com/images/8NfqVFvtTs7CDuKn9tOfAQC67g.png\",srcSet:\"https://framerusercontent.com/images/8NfqVFvtTs7CDuKn9tOfAQC67g.png?scale-down-to=512 512w,https://framerusercontent.com/images/8NfqVFvtTs7CDuKn9tOfAQC67g.png 879w\"}},vfcLfdEv1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+150+278+0+52+0+0+21),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 100px, 1300px) - 40px) / 5, 50px), 1px)`,src:\"https://framerusercontent.com/images/8NfqVFvtTs7CDuKn9tOfAQC67g.png\",srcSet:\"https://framerusercontent.com/images/8NfqVFvtTs7CDuKn9tOfAQC67g.png?scale-down-to=512 512w,https://framerusercontent.com/images/8NfqVFvtTs7CDuKn9tOfAQC67g.png 879w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+10+570+0+52+0+0+21),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 200px, 1300px) - 40px) / 5, 50px), 1px)`,src:\"https://framerusercontent.com/images/8NfqVFvtTs7CDuKn9tOfAQC67g.png\",srcSet:\"https://framerusercontent.com/images/8NfqVFvtTs7CDuKn9tOfAQC67g.png?scale-down-to=512 512w,https://framerusercontent.com/images/8NfqVFvtTs7CDuKn9tOfAQC67g.png 879w\"},className:\"framer-ksbone\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-485vrd\",\"data-framer-name\":\"Mirametrix\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+200+334+0+52+0+0+0),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:\"146.0177px\",src:\"https://framerusercontent.com/images/DDTH7J0tpsjwC0h6HVAO9ggvHFc.png\",srcSet:\"https://framerusercontent.com/images/DDTH7J0tpsjwC0h6HVAO9ggvHFc.png?scale-down-to=512 512w,https://framerusercontent.com/images/DDTH7J0tpsjwC0h6HVAO9ggvHFc.png 879w\"}},vfcLfdEv1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+150+278+0+52+0+0+21),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 100px, 1300px) - 40px) / 5, 50px), 1px)`,src:\"https://framerusercontent.com/images/DDTH7J0tpsjwC0h6HVAO9ggvHFc.png\",srcSet:\"https://framerusercontent.com/images/DDTH7J0tpsjwC0h6HVAO9ggvHFc.png?scale-down-to=512 512w,https://framerusercontent.com/images/DDTH7J0tpsjwC0h6HVAO9ggvHFc.png 879w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+10+570+0+52+0+0+21),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 200px, 1300px) - 40px) / 5, 50px), 1px)`,src:\"https://framerusercontent.com/images/DDTH7J0tpsjwC0h6HVAO9ggvHFc.png\",srcSet:\"https://framerusercontent.com/images/DDTH7J0tpsjwC0h6HVAO9ggvHFc.png?scale-down-to=512 512w,https://framerusercontent.com/images/DDTH7J0tpsjwC0h6HVAO9ggvHFc.png 879w\"},className:\"framer-15idqic\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4je2k6\",\"data-framer-name\":\"Panache Ventures\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+200+334+0+52+0+85+0),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:\"146.0177px\",src:\"https://framerusercontent.com/images/c4tTovsaaUxJ0r6ndiV9GpuruOQ.png\",srcSet:\"https://framerusercontent.com/images/c4tTovsaaUxJ0r6ndiV9GpuruOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/c4tTovsaaUxJ0r6ndiV9GpuruOQ.png 879w\"}},vfcLfdEv1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+150+278+0+52+0+0+0),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 100px, 1300px) - 40px) / 5, 50px), 1px)`,src:\"https://framerusercontent.com/images/c4tTovsaaUxJ0r6ndiV9GpuruOQ.png\",srcSet:\"https://framerusercontent.com/images/c4tTovsaaUxJ0r6ndiV9GpuruOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/c4tTovsaaUxJ0r6ndiV9GpuruOQ.png 879w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+10+570+0+52+0+0+0),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 200px, 1300px) - 40px) / 5, 50px), 1px)`,src:\"https://framerusercontent.com/images/c4tTovsaaUxJ0r6ndiV9GpuruOQ.png\",srcSet:\"https://framerusercontent.com/images/c4tTovsaaUxJ0r6ndiV9GpuruOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/c4tTovsaaUxJ0r6ndiV9GpuruOQ.png 879w\"},className:\"framer-1eakjow\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18n7hp7\",\"data-framer-name\":\"Sportlogiq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+200+334+0+52+0+85+0),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:\"146.0177px\",src:\"https://framerusercontent.com/images/Znk9tYs0zgAs4IMAyHh5ImWF8.png\",srcSet:\"https://framerusercontent.com/images/Znk9tYs0zgAs4IMAyHh5ImWF8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Znk9tYs0zgAs4IMAyHh5ImWF8.png 879w\"}},vfcLfdEv1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+150+278+0+52+0+0+21),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 100px, 1300px) - 40px) / 5, 50px), 1px)`,src:\"https://framerusercontent.com/images/Znk9tYs0zgAs4IMAyHh5ImWF8.png\",srcSet:\"https://framerusercontent.com/images/Znk9tYs0zgAs4IMAyHh5ImWF8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Znk9tYs0zgAs4IMAyHh5ImWF8.png 879w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+10+570+0+52+0+0+21),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 200px, 1300px) - 40px) / 5, 50px), 1px)`,src:\"https://framerusercontent.com/images/Znk9tYs0zgAs4IMAyHh5ImWF8.png\",srcSet:\"https://framerusercontent.com/images/Znk9tYs0zgAs4IMAyHh5ImWF8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Znk9tYs0zgAs4IMAyHh5ImWF8.png 879w\"},className:\"framer-8co8b9\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xale5h\",\"data-framer-name\":\"cqdm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+200+334+0+52+0+170+0),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:\"146.0177px\",src:\"https://framerusercontent.com/images/dxtXn0qvXzTVqgHpgvs1ZnswiD8.png\",srcSet:\"https://framerusercontent.com/images/dxtXn0qvXzTVqgHpgvs1ZnswiD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/dxtXn0qvXzTVqgHpgvs1ZnswiD8.png 879w\"}},vfcLfdEv1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+150+278+0+52+0+0+21),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 100px, 1300px) - 40px) / 5, 50px), 1px)`,src:\"https://framerusercontent.com/images/dxtXn0qvXzTVqgHpgvs1ZnswiD8.png\",srcSet:\"https://framerusercontent.com/images/dxtXn0qvXzTVqgHpgvs1ZnswiD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/dxtXn0qvXzTVqgHpgvs1ZnswiD8.png 879w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+10+570+0+52+0+0+21),pixelHeight:231,pixelWidth:879,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(max(${componentViewport?.width||\"100vw\"}, 1px) - 200px, 1300px) - 40px) / 5, 50px), 1px)`,src:\"https://framerusercontent.com/images/dxtXn0qvXzTVqgHpgvs1ZnswiD8.png\",srcSet:\"https://framerusercontent.com/images/dxtXn0qvXzTVqgHpgvs1ZnswiD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/dxtXn0qvXzTVqgHpgvs1ZnswiD8.png 879w\"},className:\"framer-lomde7\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jtqz59\",\"data-framer-name\":\"Overlay\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c2qk3v\",\"data-framer-name\":\"We automate your R&DNStack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jwbeay\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19yyvqx\",\"data-styles-preset\":\"i8WOkycG8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59401759-8b2f-46f1-978d-7a819cb57bcc, rgb(6, 102, 204))\"},children:\"We Automate Your R&D Tax Credit Funding\"})}),className:\"framer-10idqe6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tndggd\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:350.0000092718339,intrinsicWidth:833.3333554091283,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+891+30+52+0),pixelHeight:630,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1300px) - 60px, 1px)`,...getLocalizedValue(\"v6\",activeLocale)??{pixelHeight:630,pixelWidth:1500,src:\"https://framerusercontent.com/images/F5Wci1KYoeSHqMnxcBrDrwtCbM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/F5Wci1KYoeSHqMnxcBrDrwtCbM.png?scale-down-to=512 512w,https://framerusercontent.com/images/F5Wci1KYoeSHqMnxcBrDrwtCbM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F5Wci1KYoeSHqMnxcBrDrwtCbM.png 1500w\"}}},vfcLfdEv1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:350.0000092718339,intrinsicWidth:833.3333554091283,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+695+30+52+0),pixelHeight:630,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1300px) - 100px, 1px)`,...getLocalizedValue(\"v6\",activeLocale)??{pixelHeight:630,pixelWidth:1500,src:\"https://framerusercontent.com/images/F5Wci1KYoeSHqMnxcBrDrwtCbM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/F5Wci1KYoeSHqMnxcBrDrwtCbM.png?scale-down-to=512 512w,https://framerusercontent.com/images/F5Wci1KYoeSHqMnxcBrDrwtCbM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F5Wci1KYoeSHqMnxcBrDrwtCbM.png 1500w\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:350.0000092718339,intrinsicWidth:833.3333554091283,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+847+30+52+0),pixelHeight:630,pixelWidth:1500,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1300px) - 200px, 1px)`,...getLocalizedValue(\"v6\",activeLocale)??{pixelHeight:630,pixelWidth:1500,src:\"https://framerusercontent.com/images/F5Wci1KYoeSHqMnxcBrDrwtCbM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/F5Wci1KYoeSHqMnxcBrDrwtCbM.png?scale-down-to=512 512w,https://framerusercontent.com/images/F5Wci1KYoeSHqMnxcBrDrwtCbM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F5Wci1KYoeSHqMnxcBrDrwtCbM.png 1500w\"}},className:\"framer-g3g0bi\",\"data-framer-name\":\"EN-3-e1695145121588-1500x630\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{y:(componentViewport?.y||0)+0+1353},vfcLfdEv1:{y:(componentViewport?.y||0)+0+1157}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:262,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1309,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dmihkd-container\",nodeId:\"uDoqfWkDZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{variant:\"A_wv0VFlM\"},vfcLfdEv1:{variant:\"DU_VGle4s\"}},children:/*#__PURE__*/_jsx(OurTrackRecord,{height:\"100%\",id:\"uDoqfWkDZ\",layoutId:\"uDoqfWkDZ\",style:{width:\"100%\"},variant:\"O_hoTreIe\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pyrk9a\",\"data-framer-name\":\"Our services\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19aim5p\",\"data-framer-name\":'\"header\"',children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17ktlcx\",\"data-styles-preset\":\"RtEYE66Yi\",children:\"Our expertise in government funding\"})}),className:\"framer-1irbjip\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1osmgtp\",\"data-styles-preset\":\"T5y0Ekziq\",children:\"We leverage our knowledge base and adapt our approach to become an effective member of your team.\"})}),className:\"framer-1vq6zlq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j5wxq6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v472xw\",\"data-framer-name\":\"E business\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.55555768954906,intrinsicWidth:100.55555821936815,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1615+30+202.4+0+0+24+-55.9),pixelHeight:145,pixelWidth:181,src:\"https://framerusercontent.com/images/LQG3kkbLrK4mD9RjKOqAVGe4GXc.png\"}},vfcLfdEv1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.55555768954906,intrinsicWidth:100.55555821936815,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1419+30+202.4+0+397+24+-55.9),pixelHeight:145,pixelWidth:181,src:\"https://framerusercontent.com/images/LQG3kkbLrK4mD9RjKOqAVGe4GXc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.55555768954906,intrinsicWidth:100.55555821936815,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1571+30+202.4+0+0+24+-55.9),pixelHeight:145,pixelWidth:181,src:\"https://framerusercontent.com/images/LQG3kkbLrK4mD9RjKOqAVGe4GXc.png\"},className:\"framer-1uky0ib\",\"data-framer-name\":\"Computer-Secure-purple\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-svgv94\",\"data-styles-preset\":\"QbraaRHJq\",children:\"Development of E-Business (CDAE)\"})}),className:\"framer-1whao1t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1osmgtp\",\"data-styles-preset\":\"T5y0Ekziq\",children:\"We can help you claim the provincial e-business tax credit program. Our team of experts will ensure that you maximize the government assistance administered by Invest Quebec.\"})}),className:\"framer-100bs9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1osmgtp\",\"data-styles-preset\":\"T5y0Ekziq\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"G9WG_VgE8\"},motionChild:true,nodeId:\"mKvVFENce\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1li49a9\",\"data-styles-preset\":\"WndDZU18t\",children:\"Learn more about CDAE\"})})})}),className:\"framer-wrmrhf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-subnog\",\"data-framer-name\":\"sred\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:105.00000278155017,intrinsicWidth:100.00000264909539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1615+30+202.4+0+397+24+-61.4),pixelHeight:189,pixelWidth:180,src:\"https://framerusercontent.com/images/TFPWGYRRjnYcBfwQIWr6LTjpU.png\"}},vfcLfdEv1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:105.00000278155017,intrinsicWidth:100.00000264909539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1419+30+202.4+0+0+24+-61.4),pixelHeight:189,pixelWidth:180,src:\"https://framerusercontent.com/images/TFPWGYRRjnYcBfwQIWr6LTjpU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:105.00000278155017,intrinsicWidth:100.00000264909539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1571+30+202.4+0+0+24+-61.4),pixelHeight:189,pixelWidth:180,src:\"https://framerusercontent.com/images/TFPWGYRRjnYcBfwQIWr6LTjpU.png\"},className:\"framer-uwutkh\",\"data-framer-name\":\"Chemical-3-purple\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-svgv94\",\"data-styles-preset\":\"QbraaRHJq\",children:\"Scientific Research & Experimental Development (SR&ED)\"})}),className:\"framer-1ypsqiq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1osmgtp\",\"data-styles-preset\":\"T5y0Ekziq\",children:\"Our mission is to offer complete and efficient solutions tailored to each of our client\u2019s needs allowing them to receive up to 74% of their R&D expenditures back in the form of refund or credit.\"})}),className:\"framer-1k3pzom\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1osmgtp\",\"data-styles-preset\":\"T5y0Ekziq\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NiphG_tPD\"},motionChild:true,nodeId:\"o8LNFgi_p\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1li49a9\",\"data-styles-preset\":\"WndDZU18t\",children:\"Learn more about SR&ED\"})})})}),className:\"framer-157joob\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dgbh5y\",\"data-framer-name\":\"Multimedia\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:105.00000278155017,intrinsicWidth:100.00000264909539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1615+30+202.4+0+794+24+-61.4),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/WEcRF3s9eKyexriYZQAyl9pqY0.png\"}},vfcLfdEv1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:105.00000278155017,intrinsicWidth:100.00000264909539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1419+30+202.4+0+0+24+-61.4),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/WEcRF3s9eKyexriYZQAyl9pqY0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:105.00000278155017,intrinsicWidth:100.00000264909539,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1571+30+202.4+0+397+24+-61.4),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/WEcRF3s9eKyexriYZQAyl9pqY0.png\"},className:\"framer-1zti0s\",\"data-framer-name\":\"multimedia\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-svgv94\",\"data-styles-preset\":\"QbraaRHJq\",children:\"Multimedia & Digital Media Tax Credit\"})}),className:\"framer-guk56c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1osmgtp\",\"data-styles-preset\":\"T5y0Ekziq\",children:\"The multimedia and digital media tax credit has led some of the world\u2019s largest video game companies to open offices in Quebec and Ontario, respectively.\"})}),className:\"framer-6hkxug\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1osmgtp\",\"data-styles-preset\":\"T5y0Ekziq\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nX_qyE46q\"},motionChild:true,nodeId:\"aWY1O44h7\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1li49a9\",\"data-styles-preset\":\"WndDZU18t\",children:\"Learn more about Multimedia and Digtal Media tax credits\"})})})}),className:\"framer-q4knhk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-52fdl6\",\"data-framer-name\":\"Government Grants\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75.00000198682154,intrinsicWidth:100.55555821936815,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1615+30+202.4+0+1191+24+-46.4),pixelHeight:135,pixelWidth:181,src:\"https://framerusercontent.com/images/Q7H26R7Gr0I9tYWuCPjmIHPgGU.png\"}},vfcLfdEv1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75.00000198682154,intrinsicWidth:100.55555821936815,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1419+30+202.4+0+397+24+-46.4),pixelHeight:135,pixelWidth:181,src:\"https://framerusercontent.com/images/Q7H26R7Gr0I9tYWuCPjmIHPgGU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:75.00000198682154,intrinsicWidth:100.55555821936815,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1571+30+202.4+0+397+24+-46.4),pixelHeight:135,pixelWidth:181,src:\"https://framerusercontent.com/images/Q7H26R7Gr0I9tYWuCPjmIHPgGU.png\"},className:\"framer-65bz8a\",\"data-framer-name\":\"Money-2-purple-1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-svgv94\",\"data-styles-preset\":\"QbraaRHJq\",children:\"Government Grants\"})}),className:\"framer-1163m9h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1osmgtp\",\"data-styles-preset\":\"T5y0Ekziq\",children:\"We have developed a comprehensive and up-to-date system to intelligently identify and match you with any grants, tax credits, loans, loan guarantees, and other funding opportunities in Canada.\"})}),className:\"framer-15cplne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1osmgtp\",\"data-styles-preset\":\"T5y0Ekziq\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gELeRz2I0\"},motionChild:true,nodeId:\"zPFY7dmpl\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1li49a9\",\"data-styles-preset\":\"WndDZU18t\",children:\"Learn more about government grants\"})})})}),className:\"framer-92jut9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2z1xyh\",\"data-framer-name\":\"What our clients say\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fsnqwb\",\"data-framer-name\":\"header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19yyvqx\",\"data-styles-preset\":\"i8WOkycG8\",children:\"What our clients say about us\"})}),className:\"framer-188fc3y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-efo56f\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wcsbqy\",\"data-framer-name\":\"Slideshow\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1300px), 1px)`,y:(componentViewport?.y||0)+0+3415.4+30+54.5+0},M67HlrVXJ:{y:(componentViewport?.y||0)+0+2577.4+30+54+-98},vfcLfdEv1:{width:`max(min(${componentViewport?.width||\"100vw\"} - 100px, 1300px), 1px)`,y:(componentViewport?.y||0)+0+2425.4+30+54.5+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:705,width:`max(min(${componentViewport?.width||\"100vw\"} - 200px, 1300px), 1px)`,y:(componentViewport?.y||0)+0+2577.4+30+54.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eh2z02-container\",nodeId:\"DTi0v7gUt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{JHJDiS2ba:\"n46sQ9ClG\",rZvzw1Bq6:\"jQUm5_Pel\"}},children:/*#__PURE__*/_jsx(HomePage,{height:\"100%\",id:\"DTi0v7gUt\",JHJDiS2ba:\"j3SFHlPm4\",layoutId:\"DTi0v7gUt\",rZvzw1Bq6:\"rAyGqUfbU\",style:{width:\"100%\"},variant:\"V1j1UGt_j\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17h9hgr\",\"data-framer-name\":\"how we help our clients grow\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ur9eub\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-svgv94\",\"data-styles-preset\":\"QbraaRHJq\",children:\"How we help our clients grow\"})}),className:\"framer-1hs4ue6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1osmgtp\",\"data-styles-preset\":\"T5y0Ekziq\",children:\"See how we help our clients leverage non-dilutive government funding to continue investing in R&D, accelerate growth, and reach business goals.\"})}),className:\"framer-ofqa9r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-a84b3d8c-b616-454c-9d3a-54226768bdc9, rgb(249, 249, 254))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"q9SdNe29g\"},motionChild:true,nodeId:\"Ym58VTmLY\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1li49a9\",\"data-styles-preset\":\"WndDZU18t\",children:\"See more client success stories\"})})})}),className:\"framer-b7kjpp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yiwc9d-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FRwhaEH8h\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,height:\"100%\",id:\"FRwhaEH8h\",isMixedBorderRadius:false,isRed:true,layoutId:\"FRwhaEH8h\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:10,topRightRadius:10,url:\"https://www.youtube.com/watch?v=71RJx-H51GY&embeds_referring_euri=https%3A%2F%2Fwww.rdpartners.com%2F\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-39zjqn\",\"data-framer-name\":\"Speak to a expert\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ge19zr\",\"data-framer-name\":\"header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19yyvqx\",\"data-styles-preset\":\"i8WOkycG8\",children:\"Speak to a funding expert\"})}),className:\"framer-mhbwyd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13k43if\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-edf4k6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a84b3d8c-b616-454c-9d3a-54226768bdc9, rgb(249, 249, 254))\"},children:\"Our experts are ready to help you assess your eligibility for government funding.\"})}),className:\"framer-1ytoctc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Tpr_gAsTC\"},motionChild:true,nodeId:\"kEjOdlSEy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-9uv8mz framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{y:(componentViewport?.y||0)+0+4789.2+30+64+0+130+0},M67HlrVXJ:{y:(componentViewport?.y||0)+0+3559.2+30+64+0+130+0},vfcLfdEv1:{y:(componentViewport?.y||0)+0+3884.2+30+64+0+130+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+3756.2+30+64+0+130+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9rtcb7-container\",nodeId:\"kQvjoDwsl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HoverButtons,{height:\"100%\",id:\"kQvjoDwsl\",layoutId:\"kQvjoDwsl\",TUSZzIxyf:getLocalizedValue(\"v27\",activeLocale)??\"CONTACT US\",variant:\"APvCzWYoC\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{y:(componentViewport?.y||0)+0+5085.2},M67HlrVXJ:{y:(componentViewport?.y||0)+0+3855.2},vfcLfdEv1:{y:(componentViewport?.y||0)+0+4180.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:342,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4052.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gojw6w-container\",nodeId:\"OWDfVE77x\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BbMZXEPlt:{variant:\"UDkSrd1iE\"},vfcLfdEv1:{variant:\"jtikO2zXZ\"}},children:/*#__PURE__*/_jsx(FullFooter,{height:\"100%\",id:\"OWDfVE77x\",layoutId:\"OWDfVE77x\",style:{width:\"100%\"},variant:\"mlL3pw4ut\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":tSRxTyvzW\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"zpvOXrwOE\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hl8djn framer-lux5qc\",\"data-framer-name\":\"Back to top\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:918,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ayik4t-container\",nodeId:\"pj2x4T66a\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BackToTop,{height:\"100%\",id:\"pj2x4T66a\",layoutId:\"pj2x4T66a\",variant:\"O75WdBnLD\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gUuHp.framer-lux5qc, .framer-gUuHp .framer-lux5qc { display: block; }\",\".framer-gUuHp.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1400px; }\",\".framer-gUuHp .framer-wrbhst-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 3; }\",\".framer-gUuHp .framer-qn1a2k-container { flex: none; height: 196px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-189bmvn, .framer-gUuHp .framer-tndggd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-9na0zd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 100px 60px 100px; position: relative; width: 1px; }\",\".framer-gUuHp .framer-1xybwwf-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-gUuHp .framer-118zizq-container { flex: none; height: auto; max-width: 1300px; position: relative; width: 100%; z-index: 2; }\",\".framer-gUuHp .framer-2g3ma9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 60px; width: 100%; z-index: 2; }\",\".framer-gUuHp .framer-1va5ekn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-1tb2gz0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-gUuHp .framer-pnz5wc { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-gUuHp .framer-zumxu1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-gUuHp .framer-122jtu3, .framer-gUuHp .framer-1du2w55 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-gUuHp .framer-1354x2y-container, .framer-gUuHp .framer-p6bxyf-container, .framer-gUuHp .framer-9rtcb7-container, .framer-gUuHp .framer-1ayik4t-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-gUuHp .framer-g6ojrw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-gUuHp .framer-z3k1hh, .framer-gUuHp .framer-10idqe6, .framer-gUuHp .framer-1irbjip, .framer-gUuHp .framer-1vq6zlq, .framer-gUuHp .framer-1whao1t, .framer-gUuHp .framer-100bs9, .framer-gUuHp .framer-1ypsqiq, .framer-gUuHp .framer-1k3pzom, .framer-gUuHp .framer-guk56c, .framer-gUuHp .framer-6hkxug, .framer-gUuHp .framer-1163m9h, .framer-gUuHp .framer-15cplne, .framer-gUuHp .framer-1hs4ue6, .framer-gUuHp .framer-ofqa9r, .framer-gUuHp .framer-1ytoctc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gUuHp .framer-zdteum { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(5, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-gUuHp .framer-3ydg0c, .framer-gUuHp .framer-485vrd, .framer-gUuHp .framer-4je2k6, .framer-gUuHp .framer-18n7hp7, .framer-gUuHp .framer-1xale5h { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-ksbone, .framer-gUuHp .framer-15idqic, .framer-gUuHp .framer-1eakjow, .framer-gUuHp .framer-8co8b9, .framer-gUuHp .framer-lomde7 { aspect-ratio: 1.9469026548672566 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 119px); overflow: hidden; position: relative; width: 1px; }\",\".framer-gUuHp .framer-1jtqz59 { background-color: rgba(0, 0, 0, 0.5); bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-gUuHp .framer-1c2qk3v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 30px 100px 30px 100px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-1jwbeay, .framer-gUuHp .framer-19aim5p, .framer-gUuHp .framer-1fsnqwb, .framer-gUuHp .framer-edf4k6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-g3g0bi { aspect-ratio: 2.380952380952381 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 462px); overflow: visible; position: relative; width: 1px; }\",\".framer-gUuHp .framer-dmihkd-container, .framer-gUuHp .framer-gojw6w-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-gUuHp .framer-1pyrk9a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 30px 100px 30px 100px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-1j5wxq6 { display: grid; flex: none; gap: 50px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-v472xw { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-a84b3d8c-b616-454c-9d3a-54226768bdc9, #f9f9fe); box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 305px; justify-content: center; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-1uky0ib { aspect-ratio: 1.2482758620689656 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 94px); overflow: visible; position: relative; width: 117px; }\",\".framer-gUuHp .framer-wrmrhf, .framer-gUuHp .framer-157joob, .framer-gUuHp .framer-q4knhk, .framer-gUuHp .framer-92jut9, .framer-gUuHp .framer-b7kjpp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gUuHp .framer-subnog, .framer-gUuHp .framer-1dgbh5y, .framer-gUuHp .framer-52fdl6 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-a84b3d8c-b616-454c-9d3a-54226768bdc9, #f9f9fe); box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 347px; justify-content: center; justify-self: start; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-uwutkh { aspect-ratio: 0.9428571428571428 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 105px); overflow: visible; position: relative; width: 99px; }\",\".framer-gUuHp .framer-1zti0s { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 105px); overflow: visible; position: relative; width: 105px; }\",\".framer-gUuHp .framer-65bz8a { aspect-ratio: 1.3407407407407408 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 75px); overflow: visible; position: relative; width: 101px; }\",\".framer-gUuHp .framer-2z1xyh { align-content: center; align-items: center; background: linear-gradient(270deg, #273fb6 -38%, rgb(37, 77, 185) -19%, rgb(22, 127, 201) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 820px; justify-content: center; overflow: hidden; padding: 30px 100px 30px 100px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-188fc3y, .framer-gUuHp .framer-mhbwyd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gUuHp .framer-efo56f, .framer-gUuHp .framer-13k43if { background: linear-gradient(270deg, var(--token-08179b2d-68ee-4b76-883e-02068a968915, #000087) -104%, rgb(2, 29, 142) -98%, rgb(2, 29, 142) -22%, rgb(6, 101, 203) 37%, rgb(6, 100, 202) 46%, rgb(55, 134, 219) 100%); flex: none; height: 2px; overflow: hidden; position: relative; width: 214px; }\",\".framer-gUuHp .framer-1wcsbqy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-eh2z02-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-gUuHp .framer-17h9hgr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 30px 100px 30px 100px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-ur9eub { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-gUuHp .framer-yiwc9d-container { flex: none; height: 270px; position: relative; width: 480px; }\",\".framer-gUuHp .framer-39zjqn { align-content: center; align-items: center; background: linear-gradient(270deg, #273fb6 -38%, rgb(37, 77, 185) -19%, rgb(22, 127, 201) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 100px 30px 100px; position: relative; width: 100%; }\",\".framer-gUuHp .framer-ge19zr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-gUuHp .framer-9uv8mz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-gUuHp .framer-hl8djn { align-content: center; align-items: center; aspect-ratio: 1 / 1; bottom: 22px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 60px); justify-content: center; overflow: hidden; padding: 0px; position: fixed; right: 40px; text-decoration: none; width: 60px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,\"@media (min-width: 1200px) and (max-width: 1399px) { .framer-gUuHp.framer-72rtr7 { width: 1200px; } .framer-gUuHp .framer-ksbone, .framer-gUuHp .framer-15idqic, .framer-gUuHp .framer-1eakjow, .framer-gUuHp .framer-8co8b9, .framer-gUuHp .framer-lomde7 { height: var(--framer-aspect-ratio-supported, 99px); } .framer-gUuHp .framer-g3g0bi { height: var(--framer-aspect-ratio-supported, 420px); } .framer-gUuHp .framer-v472xw { height: 347px; } .framer-gUuHp .framer-2z1xyh { height: min-content; } .framer-gUuHp .framer-1wcsbqy { height: 509px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-gUuHp.framer-72rtr7 { width: 810px; } .framer-gUuHp .framer-qn1a2k-container { height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); z-index: 3; } .framer-gUuHp .framer-9na0zd { padding: 150px 50px 60px 50px; z-index: 0; } .framer-gUuHp .framer-ksbone, .framer-gUuHp .framer-15idqic, .framer-gUuHp .framer-1eakjow, .framer-gUuHp .framer-8co8b9, .framer-gUuHp .framer-lomde7 { height: var(--framer-aspect-ratio-supported, 103px); } .framer-gUuHp .framer-1c2qk3v, .framer-gUuHp .framer-1pyrk9a, .framer-gUuHp .framer-2z1xyh, .framer-gUuHp .framer-39zjqn { padding: 30px 50px 30px 50px; } .framer-gUuHp .framer-g3g0bi { height: var(--framer-aspect-ratio-supported, 84px); } .framer-gUuHp .framer-v472xw { height: 347px; order: 2; } .framer-gUuHp .framer-subnog { order: 1; } .framer-gUuHp .framer-1dgbh5y, .framer-gUuHp .framer-eh2z02-container { order: 0; } .framer-gUuHp .framer-52fdl6 { order: 3; } .framer-gUuHp .framer-17h9hgr { flex-direction: column; padding: 30px 50px 30px 50px; } .framer-gUuHp .framer-ur9eub { flex: none; width: 100%; }}\",\"@media (max-width: 809px) { .framer-gUuHp.framer-72rtr7 { width: 390px; } .framer-gUuHp .framer-qn1a2k-container { height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); z-index: 3; } .framer-gUuHp .framer-9na0zd { padding: 200px 30px 60px 30px; } .framer-gUuHp .framer-1tb2gz0, .framer-gUuHp .framer-pnz5wc { width: 100%; } .framer-gUuHp .framer-zumxu1 { flex-direction: column; gap: 14px; } .framer-gUuHp .framer-zdteum { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-gUuHp .framer-ksbone, .framer-gUuHp .framer-15idqic, .framer-gUuHp .framer-1eakjow, .framer-gUuHp .framer-8co8b9, .framer-gUuHp .framer-lomde7 { flex: none; height: var(--framer-aspect-ratio-supported, 75px); width: 146px; } .framer-gUuHp .framer-1xale5h { grid-column: span 2; } .framer-gUuHp .framer-1c2qk3v, .framer-gUuHp .framer-1pyrk9a, .framer-gUuHp .framer-2z1xyh, .framer-gUuHp .framer-39zjqn { padding: 30px; } .framer-gUuHp .framer-g3g0bi { height: var(--framer-aspect-ratio-supported, 84px); } .framer-gUuHp .framer-1j5wxq6 { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-gUuHp .framer-v472xw { height: 347px; } .framer-gUuHp .framer-17h9hgr { flex-direction: column; padding: 30px; } .framer-gUuHp .framer-ur9eub { flex: none; width: 100%; } .framer-gUuHp .framer-yiwc9d-container { height: 185px; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4241\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"M67HlrVXJ\":{\"layout\":[\"fixed\",\"auto\"]},\"vfcLfdEv1\":{\"layout\":[\"fixed\",\"auto\"]},\"BbMZXEPlt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"tSRxTyvzW\":{\"pattern\":\":tSRxTyvzW\",\"name\":\"top\"},\"lzFLFlD7R\":{\"pattern\":\":lzFLFlD7R\",\"name\":\"header\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-gUuHp\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4241,width:1400};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\"}]},...FloatingNavBarFonts,...NavigationBarFonts,...VideoFonts,...HoverButtonsFonts,...OurTrackRecordFonts,...HomePageFonts,...YouTubeFonts,...FullFooterFonts,...BackToTopFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"tSRxTyvzW\\\":{\\\"pattern\\\":\\\":tSRxTyvzW\\\",\\\"name\\\":\\\"top\\\"},\\\"lzFLFlD7R\\\":{\\\"pattern\\\":\\\":lzFLFlD7R\\\",\\\"name\\\":\\\"header\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M67HlrVXJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vfcLfdEv1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BbMZXEPlt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"4241\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "osGxMtaun_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "__FramerMetadata__", "valuesByLocaleId", "osGxMtaun_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "ArrowIconsFonts", "getFonts", "JJGTtC_NO_default", "SlideshowTextFonts", "TqJdV1zUV_default", "ArrowIconsControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "leftButton", "rightButton", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "JHJDiS2ba", "rZvzw1Bq6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "aRDcR1fAj1rcyiji", "args", "aRDcR1fAj1u2w4yj", "aRDcR1fAj7o7q7", "aRDcR1fAj1g6i89w", "aRDcR1fAj1iax5od", "aRDcR1fAjw04i9z", "aRDcR1fAjbh2391", "aRDcR1fAj8e3m65", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLocalizedValue", "css", "FramerosGxMtaun", "withCSS", "osGxMtaun_default", "addPropertyControls", "ControlType", "addFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "FloatingNavBarFonts", "getFonts", "Jwgh_m5_X_default", "ContainerWithFX", "withFX", "Container", "NavigationBarFonts", "XjXr_QkGc_default", "VideoFonts", "Video", "HoverButtonsFonts", "uD4dz2Bi1_default", "OurTrackRecordFonts", "nHiZ1rO33_default", "HomePageFonts", "osGxMtaun_default", "YouTubeFonts", "Youtube", "FullFooterFonts", "H4nSqDFau_default", "BackToTopFonts", "SmeYzP06S_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "HTMLStyle", "value", "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", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "ref1", "isDisplayed1", "elementId", "useRouteElementId", "ref2", "elementId1", "usePreloadLocalizedValues", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "RichText2", "getLocalizedValue", "x", "Link", "getLoadingLazyAtYPosition", "Image2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
