{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/wPrBjXEyBxJ1OgdNdQvm/oKWsacNYhRkTiGTvcqFk/qVk1K3zwM.js", "ssg:https://framerusercontent.com/modules/651MIGmWsyhAMm8vAlIl/NtUyKpDQXda4HLmYCK6F/g76HBGLcl.js", "ssg:https://framerusercontent.com/modules/p7JjPiRtFrTfvr8fqnBz/DaRZDQ8RU4zE3LB0rIaS/n5xkf9LGi.js", "ssg:https://framerusercontent.com/modules/4IEoawj6H25MbXemQfFe/oWTAwRi9MyMXI5HfeA1N/wj4dC9wJX.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (315fd46)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/9nw9NyuFLSdRzJ362avb/oyzA2A9G9d8IHiH3aLZ7/DNwTGYWYJ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9pgL058oCh7Ay0DY78MA/KAQNInQ4EPyN4d4y7t6i/Nu6YcIKC0.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/btW27K7yYgklQGTn3kTQ/VFLLFWb6MOFIifENxaHV/tSaLH4k7U.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/3C36WTuE7jHGo4Nl1fNH/9AKDAU7z6ReJ07yKuKKi/vRyrAxvhE.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/A5OMri1lw34p28zkLqVX/q6jzHU2RdTayClrM58o7/yaDtmhGhi.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/tGXDLnkp0g0u83ps8c4K/2cf909glIVpYGBF8Pq63/zqyURIU1g.js\";const cycleOrder=[\"SYq7XgxZB\",\"GFlox6St3\"];const serializationHash=\"framer-XqRX9\";const variantClassNames={GFlox6St3:\"framer-v-1go8eug\",SYq7XgxZB:\"framer-v-1hpq38y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"SYq7XgxZB\",Open:\"GFlox6St3\"};const getProps=({answerFormatted,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,C1_bkYtXx:(_ref=answerFormatted!==null&&answerFormatted!==void 0?answerFormatted:props.C1_bkYtXx)!==null&&_ref!==void 0?_ref:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"Text\"}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"SYq7XgxZB\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,C1_bkYtXx,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SYq7XgxZB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap59a245=activeVariantCallback(async(...args)=>{setVariant(\"GFlox6St3\");});const onTapkdhscu=activeVariantCallback(async(...args)=>{setVariant(\"SYq7XgxZB\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"GFlox6St3\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-1hpq38y\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"SYq7XgxZB\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({GFlox6St3:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-146ofw\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GoxWEZNMJ\",onTap:onTap59a245,...addPropertyOverrides({GFlox6St3:{onTap:onTapkdhscu}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y7389v\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"ZVOQrk0md\",style:{opacity:.3,rotate:0},variants:{GFlox6St3:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ckbt2y\",layoutDependency:layoutDependency,layoutId:\"afj_Ukaz9\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4huft9\",layoutDependency:layoutDependency,layoutId:\"Wlc1hZUZO\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGExIERpc3BsYXktQm9sZA==\",\"--framer-font-family\":'\"Formula1 Display-Bold\", \"Formula1 Display-Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-bz3ust\",fonts:[\"CUSTOM;Formula1 Display-Bold\"],layoutDependency:layoutDependency,layoutId:\"JY6cG0nTC\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f90vfl\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"EUUnWkJRq\",style:{opacity:0},variants:{GFlox6St3:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:C1_bkYtXx,className:\"framer-1x5tc4\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"hfsEg0vxM\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.8)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},stylesPresetsClassNames:{a:\"framer-styles-preset-oq3tel\",h1:\"framer-styles-preset-xnpihj\",h2:\"framer-styles-preset-147tq69\",h3:\"framer-styles-preset-1rpirvm\",h4:\"framer-styles-preset-11zugmb\",p:\"framer-styles-preset-1ni7evy\"},variants:{GFlox6St3:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XqRX9.framer-1butfrm, .framer-XqRX9 .framer-1butfrm { display: block; }\",\".framer-XqRX9.framer-1hpq38y { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-XqRX9 .framer-146ofw { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-XqRX9 .framer-1y7389v { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-XqRX9 .framer-1ckbt2y { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-XqRX9 .framer-4huft9 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-XqRX9 .framer-bz3ust { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-XqRX9 .framer-1f90vfl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-XqRX9 .framer-1x5tc4 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XqRX9.framer-1hpq38y, .framer-XqRX9 .framer-146ofw, .framer-XqRX9 .framer-1f90vfl { gap: 0px; } .framer-XqRX9.framer-1hpq38y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XqRX9.framer-1hpq38y > :first-child, .framer-XqRX9 .framer-1f90vfl > :first-child { margin-top: 0px; } .framer-XqRX9.framer-1hpq38y > :last-child, .framer-XqRX9 .framer-1f90vfl > :last-child { margin-bottom: 0px; } .framer-XqRX9 .framer-146ofw > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-XqRX9 .framer-146ofw > :first-child { margin-left: 0px; } .framer-XqRX9 .framer-146ofw > :last-child { margin-right: 0px; } .framer-XqRX9 .framer-1f90vfl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 105\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GFlox6St3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"C1_bkYtXx\":\"answerFormatted\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqVk1K3zwM=withCSS(Component,css,\"framer-XqRX9\");export default FramerqVk1K3zwM;FramerqVk1K3zwM.displayName=\"faq-row\";FramerqVk1K3zwM.defaultProps={height:105,width:400};addPropertyControls(FramerqVk1K3zwM,{variant:{options:[\"SYq7XgxZB\",\"GFlox6St3\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},C1_bkYtXx:{defaultValue:'<p>Text</p><p><br class=\"trailing-break\"></p>',description:\"Text\",title:\"Answer-Formatted\",type:ControlType.RichText}});addFonts(FramerqVk1K3zwM,[{explicitInter:true,fonts:[{family:\"Formula1 Display-Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/JPX5f8rtqUjcGO6Xx7VnU8NnI.woff2\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqVk1K3zwM\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"105\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GFlox6St3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"C1_bkYtXx\\\":\\\"answerFormatted\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"400\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1be12e0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FaqRow from\"https://framerusercontent.com/modules/wPrBjXEyBxJ1OgdNdQvm/oKWsacNYhRkTiGTvcqFk/qVk1K3zwM.js\";const FaqRowFonts=getFonts(FaqRow);const cycleOrder=[\"qUsg6K2dl\",\"z6xpCoBFQ\"];const serializationHash=\"framer-x8PGK\";const variantClassNames={qUsg6K2dl:\"framer-v-6ti7t8\",z6xpCoBFQ:\"framer-v-1dw7u59\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"qUsg6K2dl\",mobile:\"z6xpCoBFQ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"qUsg6K2dl\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qUsg6K2dl\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-6ti7t8\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qUsg6K2dl\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0.06)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,...style},...addPropertyOverrides({z6xpCoBFQ:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ozkbcb\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"cHykLygXN\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGExIERpc3BsYXktQm9sZA==\",\"--framer-font-family\":'\"Formula1 Display-Bold\", \"Formula1 Display-Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"FAQ's\"})}),className:\"framer-dujmqw\",fonts:[\"CUSTOM;Formula1 Display-Bold\"],layoutDependency:layoutDependency,layoutId:\"eAKO9Jyct\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 96px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+48,...addPropertyOverrides({z6xpCoBFQ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a4inwk-container\",layoutDependency:layoutDependency,layoutId:\"JufQ7r9m2-container\",children:/*#__PURE__*/_jsx(FaqRow,{C1_bkYtXx:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Absolutely NOT!\"}),\" We\u2019ve designed this course from the ground up. Each lesson builds upon the last, so you will progressively build layers of knowledge the farther into the course you go.\"]})}),height:\"100%\",id:\"JufQ7r9m2\",layoutId:\"JufQ7r9m2\",style:{width:\"100%\"},variant:\"SYq7XgxZB\",W88zB8mIG:\"Do I need any experience to take this course?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e37fnt\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"INGxRST1o\",style:{backgroundColor:\"rgba(255, 255, 255, 0.16)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 96px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+154,...addPropertyOverrides({z6xpCoBFQ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-171yzj3-container\",layoutDependency:layoutDependency,layoutId:\"tJYdlQlp1-container\",children:/*#__PURE__*/_jsx(FaqRow,{C1_bkYtXx:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Absolutely NOT!\"}),\" This course covers a wide range of topics from fundamentals like visual anchoring, to advanced topics like braking theory and how to induce rotation.\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Even though you may have experience already, \",/*#__PURE__*/_jsx(\"strong\",{children:\"it\u2019s important to start from the beginning\"}),\" because we all develop bad habits whether we realize it or not. Then, lesson by lesson, \",/*#__PURE__*/_jsx(\"strong\",{children:\"we\u2019ll build layers of skills throughout the course\"}),\".\"]})]}),height:\"100%\",id:\"tJYdlQlp1\",layoutId:\"tJYdlQlp1\",style:{width:\"100%\"},variant:\"SYq7XgxZB\",W88zB8mIG:\"I\u2019m a very experienced karter. Is this course beneath me?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13s1weh\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"o4_CL3LjG\",style:{backgroundColor:\"rgba(255, 255, 255, 0.16)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 96px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+260,...addPropertyOverrides({z6xpCoBFQ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t6cutk-container\",layoutDependency:layoutDependency,layoutId:\"eIi0irt0B-container\",children:/*#__PURE__*/_jsx(FaqRow,{C1_bkYtXx:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Lifetime access\"}),\" to your course\"]}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--framer-font-size\":\"14.464px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(152, 65, 255)\",\"--framer-text-stroke-width\":\"0px\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Access to any \",/*#__PURE__*/_jsx(\"strong\",{children:\"new lessons\"})]})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Access to the \",/*#__PURE__*/_jsx(Link,{href:\"https://discord.com/invite/9TdUgTV5Mx\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"KHB Discord server\"})})}),\" (ask questions directly)\"]})}),/*#__PURE__*/_jsx(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"FREE KHB Track Notes Template\"})})})]})]}),height:\"100%\",id:\"eIi0irt0B\",layoutId:\"eIi0irt0B\",style:{width:\"100%\"},variant:\"SYq7XgxZB\",W88zB8mIG:\"What\u2019s included in my purchase?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eoidpb\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"stcNGrMFZ\",style:{backgroundColor:\"rgba(255, 255, 255, 0.16)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 96px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+366,...addPropertyOverrides({z6xpCoBFQ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fk3mxp-container\",layoutDependency:layoutDependency,layoutId:\"cii9_O9sE-container\",children:/*#__PURE__*/_jsx(FaqRow,{C1_bkYtXx:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"YES!\"}),\" Once you purchase one of our courses, you will have \",/*#__PURE__*/_jsx(\"strong\",{children:\"LIFETIME ACCESS\"}),\", including access to any new lessons or bonus lessons released after launch. \",/*#__PURE__*/_jsx(\"strong\",{children:\"No subscriptions, no headaches!\"})]})}),height:\"100%\",id:\"cii9_O9sE\",layoutId:\"cii9_O9sE\",style:{width:\"100%\"},variant:\"SYq7XgxZB\",W88zB8mIG:\"Does this purchase give me lifetime access?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gbfnrs\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"Ij7zPVBLk\",style:{backgroundColor:\"rgba(255, 255, 255, 0.16)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 96px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+472,...addPropertyOverrides({z6xpCoBFQ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ugy12k-container\",layoutDependency:layoutDependency,layoutId:\"Hg2uhciOY-container\",children:/*#__PURE__*/_jsx(FaqRow,{C1_bkYtXx:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"It depends\u2026 \"}),\"If you sat down and watched the entire course in one sitting, it would take a few hours, but we strongly advise against that.\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"The \",/*#__PURE__*/_jsx(\"strong\",{children:\"best way to extract value\"}),\" from the course is to take in small chunks, test out what you\u2019ve learned on track, and even consider rewatching those lessons afterwards to solidify it.\"]}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"em\",{children:\"RESET. STUDY. TEST. COMPETE. REPEAT.\"})}),/*#__PURE__*/_jsxs(\"p\",{children:[\"So the short answer is\u2026 \",/*#__PURE__*/_jsx(\"strong\",{children:\"it\u2019s up to you and your ability to implement new skills.\"})]})]}),height:\"100%\",id:\"Hg2uhciOY\",layoutId:\"Hg2uhciOY\",style:{width:\"100%\"},variant:\"SYq7XgxZB\",W88zB8mIG:\"How long does it take to finish?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ea3g98\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"TecRDIezO\",style:{backgroundColor:\"rgba(255, 255, 255, 0.16)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 96px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+578,...addPropertyOverrides({z6xpCoBFQ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uhv5m-container\",layoutDependency:layoutDependency,layoutId:\"I1FF0M1rt-container\",children:/*#__PURE__*/_jsx(FaqRow,{C1_bkYtXx:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"No official launch date has been set.\"})}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"We are already in the production\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"process\"}),\" of our dedicated race craft course. As much as racing wheel to wheel is a vital aspect of being a well-rounded driver, it\u2019s pointless if your fundamental driving skills aren\u2019t developed.\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[\"For that we reason, \",/*#__PURE__*/_jsx(\"strong\",{children:\"we highly recommend taking the driving course prior to delving into race craft.\"})]})]}),height:\"100%\",id:\"I1FF0M1rt\",layoutId:\"I1FF0M1rt\",style:{width:\"100%\"},variant:\"SYq7XgxZB\",W88zB8mIG:\"When is the race craft course coming?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l1ozzp\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"u7SDZQkUb\",style:{backgroundColor:\"rgba(255, 255, 255, 0.16)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 96px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+684,...addPropertyOverrides({z6xpCoBFQ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s8uqy0-container\",layoutDependency:layoutDependency,layoutId:\"A_vCRLUeN-container\",children:/*#__PURE__*/_jsx(FaqRow,{C1_bkYtXx:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Honestly, we\u2019d be shocked if you didn\u2019t.\"}),\" We built this course from the ground up, applying Cameron\u2019s database of knowledge to rental karting in a way that\u2019s never been done before.\"]}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"But if you somehow don\u2019t improve your driving, you can activate our 30-day money-back guarantee \"}),\"by emailing us at contact@kartinghandbook.com with the subject line REFUND REQUEST.\"]})]}),height:\"100%\",id:\"A_vCRLUeN\",layoutId:\"A_vCRLUeN\",style:{width:\"100%\"},variant:\"SYq7XgxZB\",W88zB8mIG:\"What if I don\u2019t learn something? (Refund Policy)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ew8uwb\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"HnrvmWEHK\",style:{backgroundColor:\"rgba(255, 255, 255, 0.16)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 96px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+790,...addPropertyOverrides({z6xpCoBFQ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18e3yb6-container\",layoutDependency:layoutDependency,layoutId:\"xRHGXbzL1-container\",children:/*#__PURE__*/_jsx(FaqRow,{C1_bkYtXx:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Join the Karting Handbook Discord! \"}),\"(linked on homepage)\"]}),/*#__PURE__*/_jsx(\"p\",{children:\"There, you can ask questions to Cameron directly, or ask fellow students. It\u2019s also a great place to meet other drivers, discover new tracks, and upload your own onboard footage for critique.\"})]}),height:\"100%\",id:\"xRHGXbzL1\",layoutId:\"xRHGXbzL1\",style:{width:\"100%\"},variant:\"SYq7XgxZB\",W88zB8mIG:\"I have driving-specific question. Where can I get it answered?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e3epj2\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"NItSkGVjj\",style:{backgroundColor:\"rgba(255, 255, 255, 0.16)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 96px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+896,...addPropertyOverrides({z6xpCoBFQ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xgjavx-container\",layoutDependency:layoutDependency,layoutId:\"rstY9ZaE8-container\",children:/*#__PURE__*/_jsx(FaqRow,{C1_bkYtXx:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes! The course is available worldwide!\"})}),height:\"100%\",id:\"rstY9ZaE8\",layoutId:\"rstY9ZaE8\",style:{width:\"100%\"},variant:\"SYq7XgxZB\",W88zB8mIG:\"Can I access this course from outside the USA?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13tqx09\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"rv_5R80d7\",style:{backgroundColor:\"rgba(255, 255, 255, 0.16)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 96px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+48+1002,...addPropertyOverrides({z6xpCoBFQ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ohg8rx-container\",layoutDependency:layoutDependency,layoutId:\"OsSsb9PXP-container\",children:/*#__PURE__*/_jsx(FaqRow,{C1_bkYtXx:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:['Yes! You can by checking the \"gift\" box using this link: ',/*#__PURE__*/_jsx(Link,{href:\"https://shop.kartinghandbook.com/products/driving-dynamics\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"https://shop.kartinghandbook.com/products/driving-dynamics\"})})]})}),height:\"100%\",id:\"OsSsb9PXP\",layoutId:\"OsSsb9PXP\",style:{width:\"100%\"},variant:\"SYq7XgxZB\",W88zB8mIG:\"Can I purchase this as a gift?\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x8PGK.framer-z6gsiz, .framer-x8PGK .framer-z6gsiz { display: block; }\",\".framer-x8PGK.framer-6ti7t8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px 48px 24px 48px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-x8PGK .framer-ozkbcb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-x8PGK .framer-dujmqw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-x8PGK .framer-a4inwk-container, .framer-x8PGK .framer-171yzj3-container, .framer-x8PGK .framer-1t6cutk-container, .framer-x8PGK .framer-fk3mxp-container, .framer-x8PGK .framer-1ugy12k-container, .framer-x8PGK .framer-1uhv5m-container, .framer-x8PGK .framer-1s8uqy0-container, .framer-x8PGK .framer-18e3yb6-container, .framer-x8PGK .framer-xgjavx-container, .framer-x8PGK .framer-ohg8rx-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-x8PGK .framer-e37fnt, .framer-x8PGK .framer-13s1weh, .framer-x8PGK .framer-1eoidpb, .framer-x8PGK .framer-gbfnrs, .framer-x8PGK .framer-ea3g98, .framer-x8PGK .framer-1l1ozzp, .framer-x8PGK .framer-ew8uwb, .framer-x8PGK .framer-e3epj2, .framer-x8PGK .framer-13tqx09 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x8PGK.framer-6ti7t8, .framer-x8PGK .framer-ozkbcb { gap: 0px; } .framer-x8PGK.framer-6ti7t8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-x8PGK.framer-6ti7t8 > :first-child { margin-top: 0px; } .framer-x8PGK.framer-6ti7t8 > :last-child { margin-bottom: 0px; } .framer-x8PGK .framer-ozkbcb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-x8PGK .framer-ozkbcb > :first-child { margin-left: 0px; } .framer-x8PGK .framer-ozkbcb > :last-child { margin-right: 0px; } }\",\".framer-x8PGK.framer-v-1dw7u59.framer-6ti7t8 { padding: 48px 16px 24px 16px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 745\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"z6xpCoBFQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg76HBGLcl=withCSS(Component,css,\"framer-x8PGK\");export default Framerg76HBGLcl;Framerg76HBGLcl.displayName=\"faq-accordion\";Framerg76HBGLcl.defaultProps={height:745,width:1e3};addPropertyControls(Framerg76HBGLcl,{variant:{options:[\"qUsg6K2dl\",\"z6xpCoBFQ\"],optionTitles:[\"Variant 1\",\"mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerg76HBGLcl,[{explicitInter:true,fonts:[{family:\"Formula1 Display-Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/JPX5f8rtqUjcGO6Xx7VnU8NnI.woff2\"}]},...FaqRowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg76HBGLcl\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z6xpCoBFQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"745\",\"framerIntrinsicWidth\":\"1000\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (12ecc5e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-Yf8Bc\";const variantClassNames={uou431ahl:\"framer-v-kimgme\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uou431ahl\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-kimgme\",className,classNames),\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"uou431ahl\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{filter:\"blur(1px)\",WebkitFilter:\"blur(1px)\",...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:165.5,intrinsicWidth:215.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||165.5)-0-165.5)/2+0+0)),pixelHeight:331,pixelWidth:431,src:\"https://framerusercontent.com/images/xKLQWgKC6fpshYJs1pBnEqcxJlY.png\"},className:\"framer-15nlu5j\",\"data-framer-name\":\"ImgBlurTransparent\",layoutDependency:layoutDependency,layoutId:\"OerjW7sgI\"})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Yf8Bc.framer-1a3emkj, .framer-Yf8Bc .framer-1a3emkj { display: block; }\",\".framer-Yf8Bc.framer-kimgme { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 216px; }\",\".framer-Yf8Bc .framer-15nlu5j { aspect-ratio: 1.3021148036253776 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 166px); overflow: visible; position: relative; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Yf8Bc.framer-kimgme { gap: 0px; } .framer-Yf8Bc.framer-kimgme > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Yf8Bc.framer-kimgme > :first-child { margin-top: 0px; } .framer-Yf8Bc.framer-kimgme > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 165.5\n * @framerIntrinsicWidth 215.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framern5xkf9LGi=withCSS(Component,css,\"framer-Yf8Bc\");export default Framern5xkf9LGi;Framern5xkf9LGi.displayName=\"bg-blur\";Framern5xkf9LGi.defaultProps={height:165.5,width:215.5};addFonts(Framern5xkf9LGi,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framern5xkf9LGi\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"165.5\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"215.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./n5xkf9LGi.map", "// Generated by Framer (9f55354)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import BgBlur from\"https://framerusercontent.com/modules/p7JjPiRtFrTfvr8fqnBz/DaRZDQ8RU4zE3LB0rIaS/n5xkf9LGi.js\";const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const BgBlurFonts=getFonts(BgBlur);const cycleOrder=[\"xiDLzcoqE\",\"CuMCcn6o9\",\"SRTxBXMh8\",\"xQLZhvY02\",\"zrA37y9YV\",\"Lr5ttcJeI\"];const serializationHash=\"framer-EdZVL\";const variantClassNames={CuMCcn6o9:\"framer-v-1fdgixv\",Lr5ttcJeI:\"framer-v-635g72\",SRTxBXMh8:\"framer-v-z92jq1\",xiDLzcoqE:\"framer-v-fsxvh8\",xQLZhvY02:\"framer-v-1h2v3nf\",zrA37y9YV:\"framer-v-1n8dipu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={delay:0,duration:.8,ease:[.32,-.02,.24,.99],type:\"tween\"};const transition3={delay:.1,duration:.8,ease:[.32,-.02,.24,.99],type:\"tween\"};const transition4={delay:.2,duration:.8,ease:[.32,-.02,.24,.99],type:\"tween\"};const transition5={delay:.3,duration:.8,ease:[.32,-.02,.24,.99],type:\"tween\"};const transition6={delay:.4,duration:.8,ease:[.32,-.02,.24,.99],type:\"tween\"};const transition7={delay:.5,duration:.8,ease:[.32,-.02,.24,.99],type:\"tween\"};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 humanReadableVariantMap={\"1440\":\"zrA37y9YV\",\"2560\":\"Lr5ttcJeI\",\"320\":\"xQLZhvY02\",Desktop:\"xiDLzcoqE\",Phone:\"SRTxBXMh8\",Tablet:\"CuMCcn6o9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xiDLzcoqE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xiDLzcoqE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"SRTxBXMh8\",\"xQLZhvY02\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-fsxvh8\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"xiDLzcoqE\",ref:ref??ref1,style:{...style},...addPropertyOverrides({CuMCcn6o9:{\"data-framer-name\":\"Tablet\"},Lr5ttcJeI:{\"data-framer-name\":\"2560\"},SRTxBXMh8:{\"data-framer-name\":\"Phone\"},xQLZhvY02:{\"data-framer-name\":\"320\"},zrA37y9YV:{\"data-framer-name\":\"1440\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1us4oqt\",\"data-framer-name\":\"header\",layoutDependency:layoutDependency,layoutId:\"rv_7RG7JQ\",...addPropertyOverrides({SRTxBXMh8:{__framer__styleAppearEffectEnabled:undefined},xQLZhvY02:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGExIERpc3BsYXktQm9sZA==\",\"--framer-font-family\":'\"Formula1 Display-Bold\", \"Formula1 Display-Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"If you\u2019re...\"})}),className:\"framer-9y7rw7\",\"data-framer-name\":\"If you\u2019re...\",fonts:[\"CUSTOM;Formula1 Display-Bold\"],layoutDependency:layoutDependency,layoutId:\"FTkEo9_xa\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ll758a\",\"data-framer-name\":\"grid\",layoutDependency:layoutDependency,layoutId:\"vUOQk8K_U\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-11wuck1\",\"data-framer-name\":\"card-1\",layoutDependency:layoutDependency,layoutId:\"Oe1VOpiok\",style:{backgroundColor:\"rgba(255, 255, 255, 0.06)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({SRTxBXMh8:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\"},children:\"\uD83E\uDD47\"})})}),className:\"framer-1apdwaf\",\"data-framer-name\":\"\uD83E\uDD47\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"fHtt2KiGs\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"128%\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgba(255, 255, 255, 0.88))\"},children:\"Striving to beat your best laptimes\"})}),className:\"framer-ojhth4\",\"data-framer-name\":\"Striving to beat your best laptimes\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"hbuOtIMMc\",style:{\"--extracted-1eung3n\":\"rgba(255, 255, 255, 0.88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-173r552\",\"data-framer-name\":\"card-2\",layoutDependency:layoutDependency,layoutId:\"POzihPKoB\",style:{backgroundColor:\"rgba(255, 255, 255, 0.06)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\"},children:\"\u23F1\uFE0F\"})})}),className:\"framer-7tyowz\",\"data-framer-name\":\"\u23F1\uFE0F\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"uaJp_pZV5\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"128%\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgba(255, 255, 255, 0.88))\"},children:\"Trying to improve your consistency\"})}),className:\"framer-1cdjw6n\",\"data-framer-name\":\"Trying to improve your consistency\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Hhc_h_Cdv\",style:{\"--extracted-1eung3n\":\"rgba(255, 255, 255, 0.88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-fgwlxb\",\"data-framer-name\":\"card-3\",layoutDependency:layoutDependency,layoutId:\"h9m_4qtPu\",style:{backgroundColor:\"rgba(255, 255, 255, 0.06)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({SRTxBXMh8:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\"},children:\"\uD83D\uDE24\"})}),className:\"framer-1qmxjmk\",\"data-framer-name\":\"\uD83E\uDD14\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"EGFQyW9Mc\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h4,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"128%\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgba(255, 255, 255, 0.88))\"},children:[\"Lost when driving a\",/*#__PURE__*/_jsx(motion.br,{}),\"\u2018bad kart\u2019\"]})}),className:\"framer-113duxm\",\"data-framer-name\":\"Lost when driving a \u2018bad kart\u2019\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"JDn1dwEz2\",style:{\"--extracted-1eung3n\":\"rgba(255, 255, 255, 0.88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-j4of22\",\"data-framer-name\":\"card-4\",layoutDependency:layoutDependency,layoutId:\"dE2suCadx\",style:{backgroundColor:\"rgba(255, 255, 255, 0.06)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({SRTxBXMh8:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\"},children:\"\uD83C\uDF26\uFE0F\uFE0F\"})})}),className:\"framer-1xew950\",\"data-framer-name\":\"\uD83C\uDF26\uFE0F\uFE0F\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"d58Aap968\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"128%\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgba(255, 255, 255, 0.88))\"},children:\"Unsure how to find the limit in changing conditions\"})}),className:\"framer-1xavbdv\",\"data-framer-name\":\"Unsure how to find the limit in changing conditions\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"p82XmdcGl\",style:{\"--extracted-1eung3n\":\"rgba(255, 255, 255, 0.88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1irrv0i\",\"data-framer-name\":\"card-5\",layoutDependency:layoutDependency,layoutId:\"T9Z1XIdAc\",style:{backgroundColor:\"rgba(255, 255, 255, 0.06)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\"},children:\"\uD83E\uDD14\"})}),className:\"framer-zintg7\",\"data-framer-name\":\"\uD83E\uDDD0\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"nY0DfYYYM\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"128%\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgba(255, 255, 255, 0.9))\"},children:\"Leaving time on the table when learning new tracks\"})}),className:\"framer-d7hpw5\",\"data-framer-name\":\"Leaving time on the table when learning new tracks?\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"i02jeoHUe\",style:{\"--extracted-1eung3n\":\"rgba(255, 255, 255, 0.9)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-18lqlmt\",\"data-framer-name\":\"card-6\",layoutDependency:layoutDependency,layoutId:\"rV1bXktu5\",style:{backgroundColor:\"rgba(255, 255, 255, 0.06)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\"},children:\"\uD83D\uDCF9\"})})}),className:\"framer-1k663kq\",\"data-framer-name\":\"\uD83D\uDCF9\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"HwrrONALY\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"128%\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgba(255, 255, 255, 0.88))\"},children:\"Struggling to identify errors in your onboard footage\"})}),className:\"framer-o0dnrz\",\"data-framer-name\":\"Struggling to identify errors in your onboard footage\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"CXx44omEv\",style:{\"--extracted-1eung3n\":\"rgba(255, 255, 255, 0.88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGExIERpc3BsYXktQm9sZA==\",\"--framer-font-family\":'\"Formula1 Display-Bold\", \"Formula1 Display-Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Then, this course is for you.\"})}),className:\"framer-ejoh21\",\"data-framer-name\":\"Then, this course is for you.\",fonts:[\"CUSTOM;Formula1 Display-Bold\"],layoutDependency:layoutDependency,layoutId:\"ExJUU3521\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SRTxBXMh8:{__framer__styleAppearEffectEnabled:undefined},xQLZhvY02:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||578)- -248,width:`calc(${(componentViewport?.height||578)- -248} * 1.3012)`,y:(componentViewport?.y||0)+-192.5,...addPropertyOverrides({CuMCcn6o9:{height:(componentViewport?.height||746)- -149,width:`calc(${(componentViewport?.height||746)- -149} * 1.3012)`,y:(componentViewport?.y||0)+-93.5},Lr5ttcJeI:{height:(componentViewport?.height||200)- -248,width:`calc(${(componentViewport?.height||200)- -248} * 1.3012)`},SRTxBXMh8:{height:(componentViewport?.height||200)- -248,width:`calc(${(componentViewport?.height||200)- -248} * 1.3012)`},xQLZhvY02:{height:(componentViewport?.height||200)- -248,width:`calc(${(componentViewport?.height||200)- -248} * 1.3012)`},zrA37y9YV:{height:(componentViewport?.height||200)- -248,width:`calc(${(componentViewport?.height||200)- -248} * 1.3012)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cpchi4-container\",layoutDependency:layoutDependency,layoutId:\"Fl_KGUZDt-container\",style:{opacity:.72},children:/*#__PURE__*/_jsx(BgBlur,{height:\"100%\",id:\"Fl_KGUZDt\",layoutId:\"Fl_KGUZDt\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||578)- -639,width:`calc(${(componentViewport?.height||578)- -639} * 1.3012)`,y:(componentViewport?.y||0)+-337.5,...addPropertyOverrides({CuMCcn6o9:{height:1228,width:`calc(${componentViewport?.width||\"100vw\"} + 992px)`,y:(componentViewport?.y||0)+-327.5},Lr5ttcJeI:{height:(componentViewport?.height||200)- -639,width:`calc(${(componentViewport?.height||200)- -639} * 1.3012)`},SRTxBXMh8:{height:(componentViewport?.height||200)- -639,width:`calc(${(componentViewport?.height||200)- -639} * 1.3012)`},xQLZhvY02:{height:(componentViewport?.height||200)- -639,width:`calc(${(componentViewport?.height||200)- -639} * 1.3012)`},zrA37y9YV:{height:(componentViewport?.height||200)- -639,width:`calc(${(componentViewport?.height||200)- -639} * 1.3012)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pdlt3z-container\",layoutDependency:layoutDependency,layoutId:\"Kt2MlqQ7v-container\",style:{opacity:.56},children:/*#__PURE__*/_jsx(BgBlur,{height:\"100%\",id:\"Kt2MlqQ7v\",layoutId:\"Kt2MlqQ7v\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EdZVL.framer-1t3vpps, .framer-EdZVL .framer-1t3vpps { display: block; }\",\".framer-EdZVL.framer-fsxvh8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 80px; position: relative; width: 1200px; }\",\".framer-EdZVL .framer-1us4oqt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-EdZVL .framer-9y7rw7, .framer-EdZVL .framer-1apdwaf, .framer-EdZVL .framer-7tyowz, .framer-EdZVL .framer-1qmxjmk, .framer-EdZVL .framer-zintg7, .framer-EdZVL .framer-1k663kq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-EdZVL .framer-1ll758a { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-EdZVL .framer-11wuck1, .framer-EdZVL .framer-173r552, .framer-EdZVL .framer-fgwlxb, .framer-EdZVL .framer-j4of22, .framer-EdZVL .framer-1irrv0i, .framer-EdZVL .framer-18lqlmt { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 32px 24px 32px 24px; position: relative; width: 100%; }\",\".framer-EdZVL .framer-ojhth4, .framer-EdZVL .framer-1cdjw6n, .framer-EdZVL .framer-113duxm, .framer-EdZVL .framer-1xavbdv, .framer-EdZVL .framer-d7hpw5, .framer-EdZVL .framer-o0dnrz { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-EdZVL .framer-1xew950 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 48px; word-break: break-word; word-wrap: break-word; }\",\".framer-EdZVL .framer-ejoh21 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-EdZVL .framer-cpchi4-container { aspect-ratio: 1.3012048192771084 / 1; bottom: -55px; flex: none; pointer-events: none; position: absolute; right: -524px; top: -192px; width: var(--framer-aspect-ratio-supported, 1075px); z-index: 0; }\",\".framer-EdZVL .framer-1pdlt3z-container { aspect-ratio: 1.3012048192771084 / 1; bottom: -301px; flex: none; left: -452px; pointer-events: none; position: absolute; top: -337px; width: var(--framer-aspect-ratio-supported, 1584px); z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EdZVL.framer-fsxvh8, .framer-EdZVL .framer-1us4oqt, .framer-EdZVL .framer-11wuck1, .framer-EdZVL .framer-173r552, .framer-EdZVL .framer-fgwlxb, .framer-EdZVL .framer-j4of22, .framer-EdZVL .framer-1irrv0i, .framer-EdZVL .framer-18lqlmt { gap: 0px; } .framer-EdZVL.framer-fsxvh8 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-EdZVL.framer-fsxvh8 > :first-child, .framer-EdZVL .framer-1us4oqt > :first-child { margin-top: 0px; } .framer-EdZVL.framer-fsxvh8 > :last-child, .framer-EdZVL .framer-1us4oqt > :last-child { margin-bottom: 0px; } .framer-EdZVL .framer-1us4oqt > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-EdZVL .framer-11wuck1 > *, .framer-EdZVL .framer-173r552 > *, .framer-EdZVL .framer-fgwlxb > *, .framer-EdZVL .framer-j4of22 > *, .framer-EdZVL .framer-1irrv0i > *, .framer-EdZVL .framer-18lqlmt > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-EdZVL .framer-11wuck1 > :first-child, .framer-EdZVL .framer-173r552 > :first-child, .framer-EdZVL .framer-fgwlxb > :first-child, .framer-EdZVL .framer-j4of22 > :first-child, .framer-EdZVL .framer-1irrv0i > :first-child, .framer-EdZVL .framer-18lqlmt > :first-child { margin-left: 0px; } .framer-EdZVL .framer-11wuck1 > :last-child, .framer-EdZVL .framer-173r552 > :last-child, .framer-EdZVL .framer-fgwlxb > :last-child, .framer-EdZVL .framer-j4of22 > :last-child, .framer-EdZVL .framer-1irrv0i > :last-child, .framer-EdZVL .framer-18lqlmt > :last-child { margin-right: 0px; } }\",\".framer-EdZVL.framer-v-1fdgixv.framer-fsxvh8 { width: 810px; }\",\".framer-EdZVL.framer-v-1fdgixv .framer-1ll758a { grid-template-columns: repeat(2, minmax(50px, 1fr)); height: 429px; }\",\".framer-EdZVL.framer-v-1fdgixv .framer-fgwlxb { height: 100%; }\",\".framer-EdZVL.framer-v-1fdgixv .framer-cpchi4-container { right: -277px; top: -93px; width: var(--framer-aspect-ratio-supported, 1165px); }\",\".framer-EdZVL.framer-v-1fdgixv .framer-1pdlt3z-container { bottom: unset; height: var(--framer-aspect-ratio-supported, 1385px); left: -492px; right: -500px; top: -327px; width: unset; }\",\".framer-EdZVL.framer-v-z92jq1.framer-fsxvh8 { padding: 16px; width: 390px; }\",\".framer-EdZVL.framer-v-z92jq1 .framer-1ll758a, .framer-EdZVL.framer-v-1h2v3nf .framer-1ll758a { grid-template-columns: repeat(1, minmax(50px, 1fr)); }\",\".framer-EdZVL.framer-v-z92jq1 .framer-cpchi4-container, .framer-EdZVL.framer-v-1h2v3nf .framer-cpchi4-container, .framer-EdZVL.framer-v-1n8dipu .framer-cpchi4-container, .framer-EdZVL.framer-v-635g72 .framer-cpchi4-container { width: var(--framer-aspect-ratio-supported, 1089px); }\",\".framer-EdZVL.framer-v-z92jq1 .framer-1pdlt3z-container, .framer-EdZVL.framer-v-1h2v3nf .framer-1pdlt3z-container, .framer-EdZVL.framer-v-1n8dipu .framer-1pdlt3z-container, .framer-EdZVL.framer-v-635g72 .framer-1pdlt3z-container { width: var(--framer-aspect-ratio-supported, 1598px); }\",\".framer-EdZVL.framer-v-1h2v3nf.framer-fsxvh8 { padding: 16px; width: 320px; }\",\".framer-EdZVL.framer-v-1n8dipu.framer-fsxvh8, .framer-EdZVL.framer-v-635g72.framer-fsxvh8 { width: 1440px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 578\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1440px\",null,null]},\"CuMCcn6o9\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1440px\",null,null]},\"SRTxBXMh8\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1440px\",null,null]},\"xQLZhvY02\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1440px\",null,null]},\"zrA37y9YV\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1440px\",null,null]},\"Lr5ttcJeI\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1440px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerwj4dC9wJX=withCSS(Component,css,\"framer-EdZVL\");export default Framerwj4dC9wJX;Framerwj4dC9wJX.displayName=\"section-usecases\";Framerwj4dC9wJX.defaultProps={height:578,width:1200};addPropertyControls(Framerwj4dC9wJX,{variant:{options:[\"xiDLzcoqE\",\"CuMCcn6o9\",\"SRTxBXMh8\",\"xQLZhvY02\",\"zrA37y9YV\",\"Lr5ttcJeI\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"320\",\"1440\",\"2560\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerwj4dC9wJX,[{explicitInter:true,fonts:[{family:\"Formula1 Display-Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/JPX5f8rtqUjcGO6Xx7VnU8NnI.woff2\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...BgBlurFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerwj4dC9wJX\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1440px\\\",null,null]},\\\"CuMCcn6o9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1440px\\\",null,null]},\\\"SRTxBXMh8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1440px\\\",null,null]},\\\"xQLZhvY02\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1440px\\\",null,null]},\\\"zrA37y9YV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1440px\\\",null,null]},\\\"Lr5ttcJeI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1440px\\\",null,null]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"578\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wj4dC9wJX.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answerFormatted", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "u", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "C1_bkYtXx", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap59a245", "args", "onTapkdhscu", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerqVk1K3zwM", "withCSS", "qVk1K3zwM_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FaqRowFonts", "getFonts", "qVk1K3zwM_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "Link", "css", "Framerg76HBGLcl", "withCSS", "g76HBGLcl_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "css", "Framern5xkf9LGi", "withCSS", "n5xkf9LGi_default", "addFonts", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "BgBlurFonts", "getFonts", "n5xkf9LGi_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "transition4", "transition5", "transition6", "transition7", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "Framerwj4dC9wJX", "withCSS", "wj4dC9wJX_default", "addPropertyControls", "ControlType", "addFonts"]
}
