{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/YA3iK3Afo27kYzYjpTSi/wzOjO4NRX4sgx6glGj2D/Countdown.js", "ssg:https://framerusercontent.com/modules/NjsO1DYy1YFPWOyT2xvp/UWoIf5B1jWb7MpOWGWAV/gCiuMgvQi.js", "ssg:https://framerusercontent.com/modules/9UJAbgXaNMn2GRy7lU0s/MEva8UCFQy3P5yyijtFH/IYIn9UDV8.js", "ssg:https://framerusercontent.com/modules/6VUBM5Q059QuMmxrgEee/4wH7mwPCf9B8Yfu2Hdme/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useState,useEffect,useCallback}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;const calculateTimeLeft=(difference,digitCount)=>{if(difference>0){return{days:minTwoDigits(Math.floor(difference/(1e3*60*60*24)),digitCount),hours:minTwoDigits(Math.floor(difference/(1e3*60*60)%24),digitCount),minutes:minTwoDigits(Math.floor(difference/1e3/60%60),digitCount),seconds:minTwoDigits(Math.floor(difference/1e3%60),digitCount)};}return{days:0,hours:0,minutes:0,seconds:0};};function useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}function minTwoDigits(number,digitCount){if(digitCount)return number;else return(number<10?\"0\":\"\")+number;}function wrapInSpan(colorValue,string){return /*#__PURE__*/_jsx(\"span\",{style:{color:colorValue},children:string});}function createCountdownString(timeLeft,{showHours,showMinutes,showSeconds},{dayLabel,hourLabel,minuteLabel,secondLabel},{space,spaceForLabel,labelType},labelColor){// Dots as default labels\nlet days=/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.days,space,showHours?wrapInSpan(labelColor,`:`):``]});let hours=showHours?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.hours,space,showMinutes?wrapInSpan(labelColor,`:`):``]}):``;let minutes=showHours&&showMinutes?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.minutes,space,showSeconds?wrapInSpan(labelColor,`:`):``]}):``;let seconds=showHours&&showMinutes&&showSeconds?timeLeft.seconds:``;// Custom labels have different logic\n// Dots you want to hide depending on the next item, but labels you do not\n// For example, 20D 4H is a common notation, but you do not want 20:4:, you want 20:4\nif(!labelType){days=/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.days,spaceForLabel,wrapInSpan(labelColor,dayLabel)]});hours=showHours?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.hours,spaceForLabel,wrapInSpan(labelColor,hourLabel)]}):``;minutes=showMinutes?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.minutes,spaceForLabel,wrapInSpan(labelColor,minuteLabel)]}):``;seconds=showSeconds?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.seconds,spaceForLabel,wrapInSpan(labelColor,secondLabel)]}):``;}return /*#__PURE__*/_jsxs(_Fragment,{children:[days,space,hours,space,minutes,space,seconds]});}/**\n * COUNTDOWN\n * By Benjamin den Boer\n * @benjaminnathan\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function CountdownTimer(props){const{date,pickTime,font,color,labelColor,displayProps,onComplete}=props;const{digitCount,labelType,numberSpace,labelSpace,dayLabel,hourLabel,minuteLabel,secondLabel,showHours,showMinutes,showSeconds,tabularFont}=displayProps;const{fontSize,fontFamily,fontWeight,fontStyle,textAlign,letterSpacing,lineHeight}=font;const[visible,setIsVisible]=useState(false);const difference=+new Date(date).setUTCHours(pickTime)-+new Date;if(difference<=0){onComplete===null||onComplete===void 0?void 0:onComplete();}const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();useEffect(()=>{setIsVisible(true);// Don\u2019t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);const timeLeft=calculateTimeLeft(difference,digitCount);const space=numberSpace?\"\":\" \";const spaceForLabel=labelSpace?\"\":\" \";const emptyString=`00:00:00:00`;const timeString=createCountdownString(timeLeft,{showHours,showMinutes,showSeconds},{dayLabel,hourLabel,minuteLabel,secondLabel},{space,spaceForLabel,labelType},labelColor);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,...font,margin:0,padding:0,visibility:visible?\"visible\":\"hidden\",fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:difference>0?timeString:emptyString});}CountdownTimer.displayName=\"Countdown\";const defaultDate=new Date;defaultDate.setDate(defaultDate.getDate()+2);/* Property Controls */addPropertyControls(CountdownTimer,{date:{type:ControlType.Date,title:\"Date\",defaultValue:defaultDate.toISOString()},pickTime:{type:ControlType.Number,min:0,max:24,defaultValue:0,step:1,displayStepper:true,title:\"UTC\",unit:\":00\"},displayProps:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Dots, Labels\",icon:\"boolean\",controls:{digitCount:{title:\"Digits\",type:ControlType.Boolean,enabledTitle:\"One\",disabledTitle:\"Two\",defaultValue:false},labelType:{title:\"Type\",type:ControlType.Boolean,enabledTitle:\"Dots\",disabledTitle:\"Custom\",defaultValue:true},numberSpace:{type:ControlType.Boolean,title:\"Number\",enabledTitle:\"Auto\",disabledTitle:\"Space\",defaultValue:false},labelSpace:{type:ControlType.Boolean,title:\"Label\",enabledTitle:\"Auto\",disabledTitle:\"Space\",defaultValue:true,hidden:props=>props.labelType},dayLabel:{type:ControlType.String,title:\"Days\",defaultValue:\"D\",placeholder:\"D\",hidden:props=>props.labelType},showHours:{title:\"Hours\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},hourLabel:{type:ControlType.String,title:\" \",defaultValue:\"H\",placeholder:\"H\",hidden:props=>props.labelType||!props.showHours},showMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true,hidden:props=>!props.showHours},minuteLabel:{type:ControlType.String,title:\" \",defaultValue:\"M\",placeholder:\"M\",hidden:props=>props.labelType||!props.showHours||!props.showMinutes},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true,hidden:props=>!props.showHours||!props.showMinutes},secondLabel:{type:ControlType.String,title:\" \",defaultValue:\"S\",placeholder:\"S\",hidden:props=>props.labelType||!props.showHours||!props.showMinutes||!props.showSeconds},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true}}},font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,defaultValue:\"#999\"},labelColor:{title:\"Label\",type:ControlType.Color,defaultValue:\"rgba(153,153,153,0.5)\"},onComplete:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CountdownTimer\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"200\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Countdown.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/pGJsxL1qUFDWQWf2ctLJ/dzWfijrUnJZYIHXx0oSw/Te7Qe2lcf.js\";const cycleOrder=[\"aqaL29xIZ\",\"UTNj6_wmI\",\"m5op8TgNO\",\"pWX6QAjXz\",\"RNG1ubMPf\",\"ZaVnu6J8T\",\"fzPXXRqrN\",\"zAlHzbCl4\"];const serializationHash=\"framer-DpXpc\";const variantClassNames={aqaL29xIZ:\"framer-v-1q0m5n3\",fzPXXRqrN:\"framer-v-rkewk5\",m5op8TgNO:\"framer-v-rh0kh7\",pWX6QAjXz:\"framer-v-oyjsji\",RNG1ubMPf:\"framer-v-18e9ml0\",UTNj6_wmI:\"framer-v-98u7rh\",zAlHzbCl4:\"framer-v-13gd54i\",ZaVnu6J8T:\"framer-v-52aqja\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Blog:\"pWX6QAjXz\",Download:\"RNG1ubMPf\",FAQ:\"ZaVnu6J8T\",Features:\"UTNj6_wmI\",Home:\"aqaL29xIZ\",MobileClosed:\"fzPXXRqrN\",MobileOpen:\"zAlHzbCl4\",Testimonials:\"m5op8TgNO\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aqaL29xIZ\"};};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:\"aqaL29xIZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1wl0eej=activeVariantCallback(async(...args)=>{setVariant(\"aqaL29xIZ\");});const onTap1qeee6p=activeVariantCallback(async(...args)=>{setVariant(\"UTNj6_wmI\");});const onTap1mqvvmm=activeVariantCallback(async(...args)=>{setVariant(\"m5op8TgNO\");});const onTap1puxvxp=activeVariantCallback(async(...args)=>{setVariant(\"ZaVnu6J8T\");});const onTap1okjrgp=activeVariantCallback(async(...args)=>{setVariant(\"pWX6QAjXz\");});const onTap1qsgt4h=activeVariantCallback(async(...args)=>{setVariant(\"RNG1ubMPf\");});const onTaprz9vmz=activeVariantCallback(async(...args)=>{setVariant(\"rtGnr_DYU\");});const onTapxo83cw=activeVariantCallback(async(...args)=>{setVariant(\"zAlHzbCl4\");});const onTapqxqnye=activeVariantCallback(async(...args)=>{setVariant(\"fzPXXRqrN\");});const onTap1o6om4u=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fzPXXRqrN\"),100);});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"zAlHzbCl4\")return false;return true;};const isDisplayed1=()=>{if([\"fzPXXRqrN\",\"zAlHzbCl4\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"fzPXXRqrN\",\"zAlHzbCl4\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"zAlHzbCl4\")return true;return false;};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.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1q0m5n3\",className,classNames),\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"aqaL29xIZ\",ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(18, 18, 18, 0.75)\",borderBottomLeftRadius:89,borderBottomRightRadius:89,borderTopLeftRadius:89,borderTopRightRadius:89,boxShadow:\"none\",WebkitBackdropFilter:\"blur(10px)\",...style},variants:{fzPXXRqrN:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 0px 6px 0px var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(135, 203, 185))\"},zAlHzbCl4:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 1px 12px 0px var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(135, 203, 185))\"}},...addPropertyOverrides({fzPXXRqrN:{\"data-framer-name\":\"MobileClosed\"},m5op8TgNO:{\"data-framer-name\":\"Testimonials\"},pWX6QAjXz:{\"data-framer-name\":\"Blog\"},RNG1ubMPf:{\"data-framer-name\":\"Download\"},UTNj6_wmI:{\"data-framer-name\":\"Features\"},zAlHzbCl4:{\"data-border\":true,\"data-framer-name\":\"MobileOpen\"},ZaVnu6J8T:{\"data-framer-name\":\"FAQ\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-110queu\",\"data-framer-name\":\"BGActive\",layoutDependency:layoutDependency,layoutId:\"eMesBOokW\",style:{backgroundColor:\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(4, 49, 97))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,opacity:0},variants:{m5op8TgNO:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:1},pWX6QAjXz:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:1},RNG1ubMPf:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:1},UTNj6_wmI:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:1},ZaVnu6J8T:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:1}}}),/*#__PURE__*/_jsx(Link,{href:{hash:\":M511NhmsG\",webPageId:\"augiA20Il\"},nodeId:\"Aat5UeGMC\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"Company logo\",className:\"framer-1qt90m2 framer-1pk8t7c\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"Aat5UeGMC\",...addPropertyOverrides({UTNj6_wmI:{\"data-highlight\":true,onTap:onTap1wl0eej}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7T3V0Zml0LXNlbWlib2xk\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"168.82357688367594px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.07px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)))\"},children:\"Shifted\"})}),className:\"framer-12qxc8f\",fonts:[\"FS;Outfit-semibold\"],layoutDependency:layoutDependency,layoutId:\"uW0nlK0Iy\",style:{\"--extracted-r6o4lv\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115))\"},verticalAlignment:\"top\",viewBox:\"0 0 566.07 203\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"vuVFEFPg0\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vmawyz framer-1pk8t7c\",\"data-framer-name\":\"Navigation\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vuVFEFPg0\",onTap:onTap1qeee6p,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(11, 11, 11)))\"},children:\"Features\"})}),className:\"framer-ks29px\",fonts:[\"GF;Wix Madefor Display-600\"],layoutDependency:layoutDependency,layoutId:\"ineLwYmmt\",style:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(11, 11, 11))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{UTNj6_wmI:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UTNj6_wmI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)))\"},children:\"Features\"})})}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":BK2caLBhS\",webPageId:\"augiA20Il\"},nodeId:\"G1lYZcv97\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-2hs8zb framer-1pk8t7c\",\"data-framer-name\":\"Navigation\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"G1lYZcv97\",onTap:onTap1mqvvmm,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(11, 11, 11)))\"},children:\"Testimonials\"})}),className:\"framer-wt6m7n\",\"data-highlight\":true,fonts:[\"GF;Wix Madefor Display-600\"],layoutDependency:layoutDependency,layoutId:\"uy3Y6gUyj\",onTap:onTap1qeee6p,style:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(11, 11, 11))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{m5op8TgNO:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({m5op8TgNO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)))\"},children:\"Testimonials\"})})}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":KQp9Pb9GR\",webPageId:\"augiA20Il\"},nodeId:\"Yho_2pI24\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1d4926t framer-1pk8t7c\",\"data-framer-name\":\"Navigation\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Yho_2pI24\",onTap:onTap1puxvxp,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(11, 11, 11)))\"},children:\"FAQ\"})}),className:\"framer-1oq8ba9\",\"data-highlight\":true,fonts:[\"GF;Wix Madefor Display-600\"],layoutDependency:layoutDependency,layoutId:\"Fu0cDwEh2\",onTap:onTap1qeee6p,style:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(11, 11, 11))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{ZaVnu6J8T:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZaVnu6J8T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)))\"},children:\"FAQ\"})})}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":McpezKvkW\",webPageId:\"augiA20Il\"},nodeId:\"zuO9rFJ3X\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1uuu085 framer-1pk8t7c\",\"data-framer-name\":\"Navigation\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zuO9rFJ3X\",onTap:onTap1okjrgp,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(11, 11, 11)))\"},children:\"Blog\"})}),className:\"framer-qjblz2\",fonts:[\"GF;Wix Madefor Display-600\"],layoutDependency:layoutDependency,layoutId:\"SNrogSGCN\",style:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(11, 11, 11))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{pWX6QAjXz:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pWX6QAjXz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)))\"},children:\"Blog\"})})}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":NMJKELXZQ\",webPageId:\"augiA20Il\"},nodeId:\"y1QSjdX6N\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1yr92bp framer-1pk8t7c\",\"data-framer-name\":\"Navigation\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"y1QSjdX6N\",onTap:onTap1qsgt4h,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(11, 11, 11)))\"},children:\"Pre-Register\"})}),className:\"framer-1gsjp2j\",fonts:[\"GF;Wix Madefor Display-600\"],layoutDependency:layoutDependency,layoutId:\"UiI4BEgV9\",style:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(11, 11, 11))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{RNG1ubMPf:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({RNG1ubMPf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)))\"},children:\"Pre-Register\"})})}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dhBccL_Xp\"},nodeId:\"n2AJzwWzD\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-x5bvxr framer-1pk8t7c\",\"data-framer-name\":\"Navigation\",layoutDependency:layoutDependency,layoutId:\"n2AJzwWzD\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(11, 11, 11)))\"},children:\"For Business\"})}),className:\"framer-p8jwz9\",fonts:[\"GF;Wix Madefor Display-600\"],layoutDependency:layoutDependency,layoutId:\"dWzpUTVmS\",style:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(11, 11, 11))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{RNG1ubMPf:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({RNG1ubMPf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS02MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)))\"},children:\"For Business\"})})}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iw0kts\",\"data-framer-name\":\"Hamburger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XIn2fAxuB\",onTap:onTaprz9vmz,...addPropertyOverrides({fzPXXRqrN:{onTap:onTapxo83cw},zAlHzbCl4:{onTap:onTapqxqnye}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qosz8w\",layoutDependency:layoutDependency,layoutId:\"KsLoJ5Eil\",style:{backgroundColor:\"var(--token-d5e2105d-94ea-448b-b60a-a49aaeb81f81, rgb(0, 0, 0))\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2,rotate:0},variants:{fzPXXRqrN:{backgroundColor:\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115))\"},zAlHzbCl4:{backgroundColor:\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115))\",rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16wcyu6\",layoutDependency:layoutDependency,layoutId:\"xztS__kdO\",style:{backgroundColor:\"var(--token-d5e2105d-94ea-448b-b60a-a49aaeb81f81, rgb(0, 0, 0))\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2,rotate:0},variants:{fzPXXRqrN:{backgroundColor:\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115))\"},zAlHzbCl4:{backgroundColor:\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115))\",rotate:-45}}})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dlpkxt\",\"data-framer-name\":\"MobileNavigation\",layoutDependency:layoutDependency,layoutId:\"h9u0jsu8s\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":M511NhmsG\",webPageId:\"augiA20Il\"},nodeId:\"aYtT5dHya\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-3i18ee framer-1pk8t7c\",\"data-framer-name\":\"Navigation\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"aYtT5dHya\",onTap:onTap1o6om4u,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",children:\"Home\"})}),className:\"framer-1kzfgf2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yrhkRdHwj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mxkdo6\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"FV9MbCDQS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 5.5 3 L 10.5 8 L 5.5 13\" fill=\"transparent\" stroke=\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;TextPrimary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9436739034,withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"biWfEIVog\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1imiij5 framer-1pk8t7c\",\"data-framer-name\":\"Navigation\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"biWfEIVog\",onTap:onTap1o6om4u,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",children:\"Features\"})}),className:\"framer-1ew5gpb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XIBP8gGvD\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1puvg08\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nLHSHKwbR\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 5.5 3 L 10.5 8 L 5.5 13\" fill=\"transparent\" stroke=\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;TextPrimary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9436739034,withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":BK2caLBhS\",webPageId:\"augiA20Il\"},nodeId:\"GBIorwfrI\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-13a4khf framer-1pk8t7c\",\"data-framer-name\":\"Navigation\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GBIorwfrI\",onTap:onTap1o6om4u,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",children:\"Testimonials\"})}),className:\"framer-r6avil\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NjvJLlTkh\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1858tbj\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"mOrpmS2l7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 5.5 3 L 10.5 8 L 5.5 13\" fill=\"transparent\" stroke=\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;TextPrimary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9436739034,withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":KQp9Pb9GR\",webPageId:\"augiA20Il\"},nodeId:\"KfxCa4TWE\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-sbcw7f framer-1pk8t7c\",\"data-framer-name\":\"Navigation\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KfxCa4TWE\",onTap:onTap1o6om4u,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",children:\"FAQ\"})}),className:\"framer-1xhmzyi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sY40KgVEp\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-87jiho\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"OIRViBvae\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 5.5 3 L 10.5 8 L 5.5 13\" fill=\"transparent\" stroke=\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;TextPrimary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9436739034,withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":McpezKvkW\",webPageId:\"augiA20Il\"},nodeId:\"sf8GO5O9t\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-qnmpq6 framer-1pk8t7c\",\"data-framer-name\":\"Navigation\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sf8GO5O9t\",onTap:onTap1o6om4u,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",children:\"Blog\"})}),className:\"framer-1v8t7o8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hTyYGdgbS\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p0z5y2\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jVOd47BKh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 5.5 3 L 10.5 8 L 5.5 13\" fill=\"transparent\" stroke=\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;TextPrimary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9436739034,withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dhBccL_Xp\"},nodeId:\"LljgqKrGb\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-mvfije framer-1pk8t7c\",\"data-framer-name\":\"Navigation\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LljgqKrGb\",onTap:onTap1o6om4u,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",children:\"For Business\"})}),className:\"framer-1qafx0s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NnRz2hEcj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-y7uz1i\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"iLWF9R47N\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 5.5 3 L 10.5 8 L 5.5 13\" fill=\"transparent\" stroke=\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;TextPrimary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9436739034,withExternalLayout:true})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":NMJKELXZQ\",webPageId:\"augiA20Il\"},nodeId:\"GeWGPhtrY\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jz4v0h framer-1pk8t7c\",\"data-framer-name\":\"Button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GeWGPhtrY\",onTap:onTap1o6om4u,style:{backgroundColor:\"var(--token-0982471e-a56f-476e-9ab9-3d8cc7259584, rgb(255, 143, 64))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)))\"},children:\"Pre-Register\"})}),className:\"framer-dnxf62\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],layoutDependency:layoutDependency,layoutId:\"LHV4_EuG2\",style:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DpXpc.framer-1pk8t7c, .framer-DpXpc .framer-1pk8t7c { display: block; }\",\".framer-DpXpc.framer-1q0m5n3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 32px 16px 32px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-DpXpc .framer-110queu { bottom: 4px; flex: none; left: 13px; overflow: hidden; position: absolute; top: 4px; width: 98px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-DpXpc .framer-1qt90m2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100px; }\",\".framer-DpXpc .framer-12qxc8f { flex: none; height: auto; position: relative; white-space: pre; width: 100%; }\",\".framer-DpXpc .framer-1vmawyz, .framer-DpXpc .framer-2hs8zb, .framer-DpXpc .framer-1d4926t, .framer-DpXpc .framer-1uuu085, .framer-DpXpc .framer-1yr92bp { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-DpXpc .framer-ks29px, .framer-DpXpc .framer-qjblz2, .framer-DpXpc .framer-1gsjp2j, .framer-DpXpc .framer-p8jwz9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DpXpc .framer-wt6m7n, .framer-DpXpc .framer-1oq8ba9 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DpXpc .framer-x5bvxr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-DpXpc .framer-1iw0kts { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 24px; top: calc(51.02040816326533% - 52px / 2); width: 52px; z-index: 1; }\",\".framer-DpXpc .framer-qosz8w, .framer-DpXpc .framer-16wcyu6 { flex: none; height: 3px; overflow: visible; position: relative; width: 36px; }\",\".framer-DpXpc .framer-1dlpkxt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 312px; z-index: 1; }\",\".framer-DpXpc .framer-3i18ee, .framer-DpXpc .framer-1imiij5, .framer-DpXpc .framer-13a4khf, .framer-DpXpc .framer-sbcw7f, .framer-DpXpc .framer-qnmpq6, .framer-DpXpc .framer-mvfije { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-DpXpc .framer-1kzfgf2, .framer-DpXpc .framer-1ew5gpb, .framer-DpXpc .framer-r6avil, .framer-DpXpc .framer-1xhmzyi, .framer-DpXpc .framer-1v8t7o8, .framer-DpXpc .framer-1qafx0s { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-DpXpc .framer-mxkdo6, .framer-DpXpc .framer-1puvg08, .framer-DpXpc .framer-1858tbj, .framer-DpXpc .framer-87jiho, .framer-DpXpc .framer-p0z5y2, .framer-DpXpc .framer-y7uz1i { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-DpXpc .framer-1jz4v0h { cursor: pointer; flex: 1 0 0px; height: 55px; overflow: hidden; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DpXpc .framer-dnxf62 { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DpXpc.framer-1q0m5n3, .framer-DpXpc .framer-1qt90m2, .framer-DpXpc .framer-1vmawyz, .framer-DpXpc .framer-2hs8zb, .framer-DpXpc .framer-1d4926t, .framer-DpXpc .framer-1uuu085, .framer-DpXpc .framer-1yr92bp, .framer-DpXpc .framer-x5bvxr, .framer-DpXpc .framer-1iw0kts, .framer-DpXpc .framer-1dlpkxt, .framer-DpXpc .framer-3i18ee, .framer-DpXpc .framer-1imiij5, .framer-DpXpc .framer-13a4khf, .framer-DpXpc .framer-sbcw7f, .framer-DpXpc .framer-qnmpq6, .framer-DpXpc .framer-mvfije { gap: 0px; } .framer-DpXpc.framer-1q0m5n3 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-DpXpc.framer-1q0m5n3 > :first-child, .framer-DpXpc .framer-1vmawyz > :first-child, .framer-DpXpc .framer-2hs8zb > :first-child, .framer-DpXpc .framer-1d4926t > :first-child, .framer-DpXpc .framer-1uuu085 > :first-child, .framer-DpXpc .framer-1yr92bp > :first-child, .framer-DpXpc .framer-x5bvxr > :first-child, .framer-DpXpc .framer-3i18ee > :first-child, .framer-DpXpc .framer-1imiij5 > :first-child, .framer-DpXpc .framer-13a4khf > :first-child, .framer-DpXpc .framer-sbcw7f > :first-child, .framer-DpXpc .framer-qnmpq6 > :first-child, .framer-DpXpc .framer-mvfije > :first-child { margin-left: 0px; } .framer-DpXpc.framer-1q0m5n3 > :last-child, .framer-DpXpc .framer-1vmawyz > :last-child, .framer-DpXpc .framer-2hs8zb > :last-child, .framer-DpXpc .framer-1d4926t > :last-child, .framer-DpXpc .framer-1uuu085 > :last-child, .framer-DpXpc .framer-1yr92bp > :last-child, .framer-DpXpc .framer-x5bvxr > :last-child, .framer-DpXpc .framer-3i18ee > :last-child, .framer-DpXpc .framer-1imiij5 > :last-child, .framer-DpXpc .framer-13a4khf > :last-child, .framer-DpXpc .framer-sbcw7f > :last-child, .framer-DpXpc .framer-qnmpq6 > :last-child, .framer-DpXpc .framer-mvfije > :last-child { margin-right: 0px; } .framer-DpXpc .framer-1qt90m2 > *, .framer-DpXpc .framer-1iw0kts > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DpXpc .framer-1qt90m2 > :first-child, .framer-DpXpc .framer-1iw0kts > :first-child, .framer-DpXpc .framer-1dlpkxt > :first-child { margin-top: 0px; } .framer-DpXpc .framer-1qt90m2 > :last-child, .framer-DpXpc .framer-1iw0kts > :last-child, .framer-DpXpc .framer-1dlpkxt > :last-child { margin-bottom: 0px; } .framer-DpXpc .framer-1vmawyz > *, .framer-DpXpc .framer-2hs8zb > *, .framer-DpXpc .framer-1d4926t > *, .framer-DpXpc .framer-1uuu085 > *, .framer-DpXpc .framer-1yr92bp > *, .framer-DpXpc .framer-x5bvxr > *, .framer-DpXpc .framer-3i18ee > *, .framer-DpXpc .framer-1imiij5 > *, .framer-DpXpc .framer-13a4khf > *, .framer-DpXpc .framer-sbcw7f > *, .framer-DpXpc .framer-qnmpq6 > *, .framer-DpXpc .framer-mvfije > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DpXpc .framer-1dlpkxt > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-DpXpc.framer-v-98u7rh .framer-110queu { bottom: 14px; left: 161px; top: 13px; width: 90px; }\",\".framer-DpXpc.framer-v-98u7rh .framer-1qt90m2 { cursor: pointer; }\",\".framer-DpXpc.framer-v-rh0kh7 .framer-110queu { bottom: 14px; left: 273px; top: 13px; width: 110px; }\",\".framer-DpXpc.framer-v-oyjsji .framer-110queu { bottom: 14px; left: 472px; top: 13px; width: 70px; }\",\".framer-DpXpc.framer-v-18e9ml0 .framer-110queu { bottom: 14px; left: 552px; right: 157px; top: 13px; width: unset; }\",\".framer-DpXpc.framer-v-52aqja .framer-110queu { bottom: 14px; left: 402px; top: 13px; width: 60px; }\",\".framer-DpXpc.framer-v-rkewk5.framer-1q0m5n3 { height: 71px; width: 390px; }\",\".framer-DpXpc.framer-v-rkewk5 .framer-1qt90m2 { left: 32px; position: absolute; top: calc(50.7042253521127% - 30px / 2); z-index: 1; }\",\".framer-DpXpc.framer-v-rkewk5 .framer-1iw0kts, .framer-DpXpc.framer-v-13gd54i .framer-1iw0kts { top: 10px; }\",\".framer-DpXpc.framer-v-rkewk5 .framer-qosz8w { order: 0; }\",\".framer-DpXpc.framer-v-rkewk5 .framer-16wcyu6 { order: 1; }\",\".framer-DpXpc.framer-v-13gd54i.framer-1q0m5n3 { flex-direction: column; gap: 39px; height: 500px; padding: 40px 32px 0px 32px; width: 390px; }\",\".framer-DpXpc.framer-v-13gd54i .framer-1qt90m2 { left: 32px; position: absolute; top: 27px; z-index: 1; }\",\".framer-DpXpc.framer-v-13gd54i .framer-qosz8w { left: calc(50.00000000000002% - 36px / 2); order: 0; position: absolute; top: calc(50.00000000000002% - 3px / 2); z-index: 1; }\",\".framer-DpXpc.framer-v-13gd54i .framer-16wcyu6 { left: calc(50.00000000000002% - 36px / 2); order: 1; position: absolute; top: calc(50.00000000000002% - 3px / 2); z-index: 1; }\",\".framer-DpXpc.framer-v-13gd54i .framer-1dlpkxt { width: 100%; }\",\".framer-DpXpc.framer-v-13gd54i .framer-1jz4v0h { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DpXpc.framer-v-13gd54i.framer-1q0m5n3 { gap: 0px; } .framer-DpXpc.framer-v-13gd54i.framer-1q0m5n3 > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-DpXpc.framer-v-13gd54i.framer-1q0m5n3 > :first-child { margin-top: 0px; } .framer-DpXpc.framer-v-13gd54i.framer-1q0m5n3 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-DpXpc[data-border=\"true\"]::after, .framer-DpXpc [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 62\n * @framerIntrinsicWidth 829\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"UTNj6_wmI\":{\"layout\":[\"auto\",\"auto\"]},\"m5op8TgNO\":{\"layout\":[\"auto\",\"auto\"]},\"pWX6QAjXz\":{\"layout\":[\"auto\",\"auto\"]},\"RNG1ubMPf\":{\"layout\":[\"auto\",\"auto\"]},\"ZaVnu6J8T\":{\"layout\":[\"auto\",\"auto\"]},\"fzPXXRqrN\":{\"layout\":[\"fixed\",\"fixed\"]},\"zAlHzbCl4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergCiuMgvQi=withCSS(Component,css,\"framer-DpXpc\");export default FramergCiuMgvQi;FramergCiuMgvQi.displayName=\"MenuUser\";FramergCiuMgvQi.defaultProps={height:62,width:829};addPropertyControls(FramergCiuMgvQi,{variant:{options:[\"aqaL29xIZ\",\"UTNj6_wmI\",\"m5op8TgNO\",\"pWX6QAjXz\",\"RNG1ubMPf\",\"ZaVnu6J8T\",\"fzPXXRqrN\",\"zAlHzbCl4\"],optionTitles:[\"Home\",\"Features\",\"Testimonials\",\"Blog\",\"Download\",\"FAQ\",\"MobileClosed\",\"MobileOpen\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramergCiuMgvQi,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LLL2G3NRT7NQD2GKJUPGXM7TQ2DC6HXX/PW5PSBLUQB3EYD5A5UFT4XOSWCSQOKTH/P65L7VCWZE3ZYHD2XJZ2WDLQCATH7Y3R.woff2\",weight:\"600\"},{family:\"Wix Madefor Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYG_ZVthv_3HQKgh.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Wix Madefor Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYGGZVthv_3HQKgh.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergCiuMgvQi\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"829\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UTNj6_wmI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"m5op8TgNO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pWX6QAjXz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RNG1ubMPf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZaVnu6J8T\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fzPXXRqrN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zAlHzbCl4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"62\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gCiuMgvQi.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FAQ from\"https://framerusercontent.com/modules/cDvw0HbMZ2RSERqhfBOt/GoB1FPMRjGn8BXRS32CX/SDfkUGdag.js\";const FAQFonts=getFonts(FAQ);const cycleOrder=[\"Sgkk7k_7P\",\"vgGMPPJp0\"];const serializationHash=\"framer-ZTEta\";const variantClassNames={Sgkk7k_7P:\"framer-v-1ui1dk5\",vgGMPPJp0:\"framer-v-1q3a7nt\"};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 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={FAQDesktop:\"Sgkk7k_7P\",FAQMobile:\"vgGMPPJp0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Sgkk7k_7P\"};};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:\"Sgkk7k_7P\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);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.ul,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ui1dk5\",className,classNames),\"data-framer-name\":\"FAQDesktop\",layoutDependency:layoutDependency,layoutId:\"Sgkk7k_7P\",ref:ref??ref1,style:{...style},...addPropertyOverrides({vgGMPPJp0:{\"data-framer-name\":\"FAQMobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-am3lcd-container\",layoutDependency:layoutDependency,layoutId:\"QqXQQnt3_-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"QqXQQnt3_\",layoutId:\"QqXQQnt3_\",m1wBZJAoM:\"Shifted is your go-to app for snagging quick working opportunities that match the\\nwavelength of your schedule and goals. Looking for a side hustle or just some extra cash on\\nthe fly? We've got you. Swipe through a variety of one-off shifts, pick what fits from our\\nvariety of option, and start earning ASAP. No strings attached; just flexible work that moves\\nas fast as you do!\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"What is Shifted?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+337,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-ka3zti-container\",layoutDependency:layoutDependency,layoutId:\"x7h3TI_EN-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"x7h3TI_EN\",layoutId:\"x7h3TI_EN\",m1wBZJAoM:\"Signing up is a breeze! Just hit up our app, drop in some details, upload your CV and boom\u2014you're ready to\\nstart swiping through shifts after pending approval. No endless forms, no waiting days to\\nhear back from a hiring manager. Get in, get going, and get paid. It\u2019s that easy!\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"Whats the process of signing up?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+674,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-t6p7gu-container\",layoutDependency:layoutDependency,layoutId:\"M7SGmYiaY-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"M7SGmYiaY\",layoutId:\"M7SGmYiaY\",m1wBZJAoM:\"Sky's the limit! How much you earn is totally up to you\u2014pick up as many shifts as you vibe\\nwith. Just a heads up, though: once you hit \\xa31,000, UK rules say you gotta\\nregister as self-employed. But after that? Keep hustling, keep earning\u2014there\u2019s no cap on\\nhow much you can make. Stack that cash your way!\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"How much money can I make?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1011,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1svihmh-container\",layoutDependency:layoutDependency,layoutId:\"HdLM49mgB-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"HdLM49mgB\",layoutId:\"HdLM49mgB\",m1wBZJAoM:\"Absolutely! If you run into any trouble during a shift, our support team is on standby 24/7.\\nJust hit us up through the app, and we'll jump right in to help sort things out. Your smooth\\nwork experience is our top priority!\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"Is there support available if I have issues during a shift?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1348,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-12sexu7-container\",layoutDependency:layoutDependency,layoutId:\"OgW0hoHc6-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"OgW0hoHc6\",layoutId:\"OgW0hoHc6\",m1wBZJAoM:\"Right now, we\u2019re all about hospitality \u2014from rocking the bar as a bartender, serving up\\nsmiles as a waiter, to keeping the kitchen on point as a porter. No matter your experience\\nlevel, we\u2019ve got a spot just for you. Dive into the vibrant world of hospitality and pick shifts\\nthat match your style and schedule! But don\u2019t worry, were branching into other fields very\\nsoon.\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"What kind of jobs are available?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1685,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1gs84y0-container\",layoutDependency:layoutDependency,layoutId:\"aUVmt31aj-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"aUVmt31aj\",layoutId:\"aUVmt31aj\",m1wBZJAoM:\"At Shifted, your safety is our top priority! That's why we make sure your insured for every shift\u2014keeping you covered as required by UK laws, especially important in bustling\\nplaces like bars. This ensures that if things get slippery or if an unexpected twist happens,\\nyou\u2019re protected. Beyond that, we actively monitor work environments and partner only\\nwith reputable businesses to guarantee that safety standards are sky-high. Whether you're\\nbehind the bar or serving tables, we\u2019ve got your back!\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"How does Shifted ensure my safety at work?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2022,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-kfmxpc-container\",layoutDependency:layoutDependency,layoutId:\"bSwbUIiN4-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"bSwbUIiN4\",layoutId:\"bSwbUIiN4\",m1wBZJAoM:\"Whether you're a rookie or a pro, we\u2019ve got shifts that fit right in with your skill level. Some places might need a bit more experience than others, sure, but we\u2019ve got plenty of opportunities for newbies too. Dive in wherever you fit and level up as you go. Everyone\u2019s\\nwelcome to join the hustle!\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"How much experience do I need?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2359,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-zfkrs1-container\",layoutDependency:layoutDependency,layoutId:\"MOwBdRPPZ-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"MOwBdRPPZ\",layoutId:\"MOwBdRPPZ\",m1wBZJAoM:\"Nah, no minimums here! Work as much or as little as you want\u2014totally your call. Whether it's just one shift now and then or a bunch when you're feeling the grind, Shifted works with your schedule. You do you!\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"Am I required to work a minimum number of shifts?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2696,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1ak4973-container\",layoutDependency:layoutDependency,layoutId:\"UB6Bo0xDM-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"UB6Bo0xDM\",layoutId:\"UB6Bo0xDM\",m1wBZJAoM:\"Joining Shifted is totally free! You\u2019ll only see a fee if you opt for our \u2018Early Payout\u2019 feature, which is just a small 3% cut to get your earnings faster.\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"Are there any fees for joining or using Shifted?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3033,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1lvi8uh-container\",layoutDependency:layoutDependency,layoutId:\"JDClSgIDm-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"JDClSgIDm\",layoutId:\"JDClSgIDm\",m1wBZJAoM:\"No catch, just cash! With Shifted, what you see is what you get\u2014flexible shifts, instant pay, and zero hidden fees. Just choose when to work, do your thing, and enjoy the freedom.\\nSimple as that!\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"Whats the catch?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZTEta.framer-smthbw, .framer-ZTEta .framer-smthbw { display: block; }\",\".framer-ZTEta.framer-1ui1dk5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; list-style: none; margin: 0px; overflow: visible; padding: 0px; position: relative; width: 1008px; }\",\".framer-ZTEta .framer-am3lcd-container, .framer-ZTEta .framer-ka3zti-container, .framer-ZTEta .framer-t6p7gu-container, .framer-ZTEta .framer-1svihmh-container, .framer-ZTEta .framer-12sexu7-container, .framer-ZTEta .framer-1gs84y0-container, .framer-ZTEta .framer-kfmxpc-container, .framer-ZTEta .framer-zfkrs1-container, .framer-ZTEta .framer-1ak4973-container, .framer-ZTEta .framer-1lvi8uh-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZTEta.framer-1ui1dk5 { gap: 0px; } .framer-ZTEta.framer-1ui1dk5 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-ZTEta.framer-1ui1dk5 > :first-child { margin-top: 0px; } .framer-ZTEta.framer-1ui1dk5 > :last-child { margin-bottom: 0px; } }\",\".framer-ZTEta.framer-v-1q3a7nt.framer-1ui1dk5 { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 906\n * @framerIntrinsicWidth 1008\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vgGMPPJp0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIYIn9UDV8=withCSS(Component,css,\"framer-ZTEta\");export default FramerIYIn9UDV8;FramerIYIn9UDV8.displayName=\"FAQUser\";FramerIYIn9UDV8.defaultProps={height:906,width:1008};addPropertyControls(FramerIYIn9UDV8,{variant:{options:[\"Sgkk7k_7P\",\"vgGMPPJp0\"],optionTitles:[\"FAQDesktop\",\"FAQMobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerIYIn9UDV8,[{explicitInter:true,fonts:[]},...FAQFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIYIn9UDV8\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1008\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vgGMPPJp0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"906\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IYIn9UDV8.map", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Countdown from\"https://framerusercontent.com/modules/YA3iK3Afo27kYzYjpTSi/wzOjO4NRX4sgx6glGj2D/Countdown.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import Footer from\"#framer/local/canvasComponent/BBnES5NKq/BBnES5NKq.js\";import MenuUser from\"#framer/local/canvasComponent/gCiuMgvQi/gCiuMgvQi.js\";import Cursor from\"#framer/local/canvasComponent/gG4av4weY/gG4av4weY.js\";import FAQUser from\"#framer/local/canvasComponent/IYIn9UDV8/IYIn9UDV8.js\";import Button from\"#framer/local/canvasComponent/xPKgcMFm9/xPKgcMFm9.js\";import Blog from\"#framer/local/collection/vZPFgnvvs/vZPFgnvvs.js\";import*as sharedStyle from\"#framer/local/css/g2ywbMTpB/g2ywbMTpB.js\";import*as sharedStyle4 from\"#framer/local/css/oh9i8zqUo/oh9i8zqUo.js\";import*as sharedStyle1 from\"#framer/local/css/QjSybQ6ZQ/QjSybQ6ZQ.js\";import*as sharedStyle2 from\"#framer/local/css/rvGYdiPPQ/rvGYdiPPQ.js\";import*as sharedStyle5 from\"#framer/local/css/Te7Qe2lcf/Te7Qe2lcf.js\";import*as sharedStyle3 from\"#framer/local/css/TMuLmx_3F/TMuLmx_3F.js\";import*as sharedStyle6 from\"#framer/local/css/VIw96SZkW/VIw96SZkW.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MenuUserFonts=getFonts(MenuUser);const MenuUserWithVariantAppearEffect=withVariantAppearEffect(MenuUser);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const CountdownFonts=getFonts(Countdown);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const TickerFonts=getFonts(Ticker);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFX=withFX(motion.div);const FAQUserFonts=getFonts(FAQUser);const SlideshowFonts=getFonts(Slideshow);const ButtonFonts=getFonts(Button);const FooterFonts=getFonts(Footer);const CursorFonts=getFonts(Cursor);const breakpoints={vLv5yiYCa:\"(min-width: 810px) and (max-width: 1199px)\",vwYWqaFXw:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-1m0QM\";const variantClassNames={vLv5yiYCa:\"framer-v-on7m2k\",vwYWqaFXw:\"framer-v-1i3kx8i\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-30};const transition2={damping:40,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition3};const transition4={damping:90,delay:.4,mass:1,stiffness:450,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition5={damping:40,delay:.4,mass:.2,stiffness:450,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition6={damping:70,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-80};const transition7={damping:70,delay:.4,mass:1,stiffness:200,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-120};const transition8={damping:70,delay:.6,mass:1,stiffness:200,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-160};const transition9={damping:70,delay:.5,mass:1,stiffness:200,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const transition10={damping:70,delay:.3,mass:1,stiffness:200,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-80};const transition11={damping:40,delay:.1,mass:1,stiffness:200,type:\"spring\"};const transition12={damping:40,delay:.3,mass:1,stiffness:200,type:\"spring\"};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-148};const transition13={damping:40,delay:0,mass:1,stiffness:140,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-20};const transition14={damping:40,delay:.2,mass:1,stiffness:140,type:\"spring\"};const transition15={damping:40,delay:.3,mass:1,stiffness:150,type:\"spring\"};const transition16={damping:40,delay:.4,mass:1,stiffness:140,type:\"spring\"};const transition17={damping:40,delay:.5,mass:1,stiffness:150,type:\"spring\"};const transition18={damping:90,delay:.3,mass:1,stiffness:450,type:\"spring\"};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition18,x:0,y:0};const animation19={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition19={damping:40,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition19,x:0,y:100};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.99,skewX:0,skewY:0,transition:transition3};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"vwYWqaFXw\",Tablet:\"vLv5yiYCa\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:Cursor,variant:\"mowoKApMP\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,R9NVJt3a2ySJn1ZLIG,u1F11fZ8yySJn1ZLIG,KbwV4kuCzySJn1ZLIG,YahGhj3vgySJn1ZLIG,idySJn1ZLIG,R9NVJt3a2mfEv9BIfy,u1F11fZ8ymfEv9BIfy,KbwV4kuCzmfEv9BIfy,YahGhj3vgmfEv9BIfy,idmfEv9BIfy,R9NVJt3a2l9HDkaxlu,u1F11fZ8yl9HDkaxlu,KbwV4kuCzl9HDkaxlu,YahGhj3vgl9HDkaxlu,idl9HDkaxlu,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const elementId=useRouteElementId(\"M511NhmsG\");const elementId1=useRouteElementId(\"GNUNf5KIy\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"vwYWqaFXw\")return false;return true;};const elementId2=useRouteElementId(\"BK2caLBhS\");const elementId3=useRouteElementId(\"KQp9Pb9GR\");const elementId4=useRouteElementId(\"McpezKvkW\");const activeLocaleCode=useLocaleCode();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"vLv5yiYCa\")return true;return false;};const elementId5=useRouteElementId(\"YR0DQmYWX\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"fngmZrpGh\");const ref8=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"vLv5yiYCa\")return false;return true;};const elementId7=useRouteElementId(\"NMJKELXZQ\");const elementId8=useRouteElementId(\"uFr4g5QkF\");const ref9=React.useRef(null);useCustomCursors({\"1j8ntge\":{...cursor,variant:\"bsUtC0F6I\"},\"1lzcdch\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"1lzcdch\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{width:`calc(${componentViewport?.width||\"100vw\"} - 90px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:40,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-byjxo0-container\",layoutScroll:true,nodeId:\"qHvqgXFDR\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{__framer__variantAppearEffectEnabled:undefined,variant:\"fzPXXRqrN\"},vwYWqaFXw:{__framer__variantAppearEffectEnabled:undefined,style:{width:\"100%\"},variant:\"fzPXXRqrN\"}},children:/*#__PURE__*/_jsx(MenuUserWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"aqaL29xIZ\"},{ref:ref2,target:\"UTNj6_wmI\"},{offset:40,ref:ref3,target:\"m5op8TgNO\"},{offset:40,ref:ref4,target:\"ZaVnu6J8T\"},{offset:40,ref:ref5,target:\"pWX6QAjXz\"},{offset:40,ref:ref6,target:\"RNG1ubMPf\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"qHvqgXFDR\",layoutId:\"qHvqgXFDR\",variant:\"aqaL29xIZ\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aimela\",\"data-framer-name\":\"HeroSection\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1440bjc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ognymo\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-155hhsw\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8mnk5m\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1k0wlgn\",\"data-framer-appear-id\":\"1k0wlgn\",\"data-framer-name\":\"Logo\",initial:animation1,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-ucgqa6\",\"data-styles-preset\":\"g2ywbMTpB\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(135, 203, 185))\"},children:[\"Redefining Hospitality\",/*#__PURE__*/_jsx(\"br\",{}),\" Employment.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ucgqa6\",\"data-styles-preset\":\"g2ywbMTpB\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(135, 203, 185))\"},children:\"Redefining Hospitality Employment\"})}),className:\"framer-gk8lco\",\"data-framer-appear-id\":\"gk8lco\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q9mi05-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zvl5Wt8zh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Countdown,{color:\"rgb(153, 153, 153)\",date:\"2025-04-01T00:00:00.000Z\",displayProps:{dayLabel:\"D\",digitCount:false,hourLabel:\"H\",labelSpace:true,labelType:true,minuteLabel:\"M\",numberSpace:false,secondLabel:\"S\",showHours:true,showMinutes:true,showSeconds:true,tabularFont:true},font:{},height:\"100%\",id:\"zvl5Wt8zh\",labelColor:\"rgba(153, 153, 153, 0.5)\",layoutId:\"zvl5Wt8zh\",pickTime:0,width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://shifted-preregistration.flutterflow.app\",motionChild:true,nodeId:\"lErwCmjK_\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation4,\"aria-label\":\"button\",className:\"framer-uujkpq framer-lux5qc\",\"data-framer-appear-id\":\"uujkpq\",\"data-framer-cursor\":\"1j8ntge\",\"data-framer-name\":\"Button\",initial:animation1,optimized:true,style:{transformPerspective:1200},whileHover:animation3,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"},children:\"Pre Register\"})}),className:\"framer-1nhjjy2\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1280,intrinsicWidth:1248},className:\"framer-gh9mjg\",\"data-framer-appear-id\":\"gh9mjg\",\"data-framer-name\":\"AppSection\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-qz28t9-container\",\"data-framer-appear-id\":\"qz28t9\",\"data-framer-name\":\"Left\",initial:animation8,isAuthoredByUser:true,isModuleExternal:true,name:\"Left\",nodeId:\"c4DFR3NFW\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"c4DFR3NFW\",layoutId:\"c4DFR3NFW\",name:\"Left\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-va5t1g\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1920,pixelWidth:1080,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png\",srcSet:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png?scale-down-to=1024 576w,https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png 1080w\"},className:\"framer-4xhkrx\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1516,pixelWidth:704,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png\",srcSet:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png 704w\"},className:\"framer-158qdy5\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-pery11\",\"data-framer-name\":\"iPhone\"})]}),/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1h566ic\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1920,pixelWidth:1080,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png\",srcSet:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png?scale-down-to=1024 576w,https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png 1080w\"},className:\"framer-pxoevx\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1516,pixelWidth:704,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png\",srcSet:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png 704w\"},className:\"framer-10go4sv\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-1baab7c\",\"data-framer-name\":\"iPhone\"})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-19x70op-container\",\"data-framer-appear-id\":\"19x70op\",\"data-framer-name\":\"Left\",initial:animation10,isAuthoredByUser:true,isModuleExternal:true,name:\"Left\",nodeId:\"mXXNk9cms\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"mXXNk9cms\",layoutId:\"mXXNk9cms\",name:\"Left\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-va5t1g\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1920,pixelWidth:1080,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png\",srcSet:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png?scale-down-to=1024 576w,https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png 1080w\"},className:\"framer-4xhkrx\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1516,pixelWidth:704,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png\",srcSet:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png 704w\"},className:\"framer-158qdy5\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-pery11\",\"data-framer-name\":\"iPhone\"})]}),/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-f3kc8f\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:430,pixelHeight:841,pixelWidth:386,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/BtQjcWDG3robV6F559Nz3BBxTr0.png\",srcSet:\"https://framerusercontent.com/images/BtQjcWDG3robV6F559Nz3BBxTr0.png 386w\"},className:\"framer-9858g5\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-8ammj6\",\"data-framer-name\":\"iPhone\"})]})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation11,className:\"framer-5130qo-container\",\"data-framer-appear-id\":\"5130qo\",\"data-framer-name\":\"Center\",initial:animation12,isAuthoredByUser:true,isModuleExternal:true,name:\"Center\",nodeId:\"FnaASnMrF\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"FnaASnMrF\",layoutId:\"FnaASnMrF\",name:\"Center\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-f3kc8f\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:430,pixelHeight:841,pixelWidth:386,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/BtQjcWDG3robV6F559Nz3BBxTr0.png\",srcSet:\"https://framerusercontent.com/images/BtQjcWDG3robV6F559Nz3BBxTr0.png 386w\"},className:\"framer-9858g5\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-8ammj6\",\"data-framer-name\":\"iPhone\"})]}),/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1h566ic\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1920,pixelWidth:1080,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png\",srcSet:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png?scale-down-to=1024 576w,https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png 1080w\"},className:\"framer-pxoevx\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1516,pixelWidth:704,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png\",srcSet:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png 704w\"},className:\"framer-10go4sv\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-1baab7c\",\"data-framer-name\":\"iPhone\"})]})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation13,className:\"framer-fy1xt1-container\",\"data-framer-appear-id\":\"fy1xt1\",\"data-framer-name\":\"Right\",initial:animation10,isAuthoredByUser:true,isModuleExternal:true,name:\"Right\",nodeId:\"CUi6CnP0u\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"CUi6CnP0u\",layoutId:\"CUi6CnP0u\",name:\"Right\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1h566ic\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1920,pixelWidth:1080,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png\",srcSet:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png?scale-down-to=1024 576w,https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png 1080w\"},className:\"framer-pxoevx\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1516,pixelWidth:704,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png\",srcSet:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png 704w\"},className:\"framer-10go4sv\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-1baab7c\",\"data-framer-name\":\"iPhone\"})]}),/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-f3kc8f\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:430,pixelHeight:841,pixelWidth:386,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/BtQjcWDG3robV6F559Nz3BBxTr0.png\",srcSet:\"https://framerusercontent.com/images/BtQjcWDG3robV6F559Nz3BBxTr0.png 386w\"},className:\"framer-9858g5\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-8ammj6\",\"data-framer-name\":\"iPhone\"})]})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation14,className:\"framer-rqh32a-container\",\"data-framer-appear-id\":\"rqh32a\",\"data-framer-name\":\"Right\",initial:animation8,isAuthoredByUser:true,isModuleExternal:true,name:\"Right\",nodeId:\"yV09Pc8KO\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"yV09Pc8KO\",layoutId:\"yV09Pc8KO\",name:\"Right\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1h566ic\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1920,pixelWidth:1080,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png\",srcSet:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png?scale-down-to=1024 576w,https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png 1080w\"},className:\"framer-pxoevx\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1516,pixelWidth:704,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png\",srcSet:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png 704w\"},className:\"framer-10go4sv\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-1baab7c\",\"data-framer-name\":\"iPhone\"})]}),/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1h566ic\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1920,pixelWidth:1080,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png\",srcSet:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png?scale-down-to=1024 576w,https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png 1080w\"},className:\"framer-pxoevx\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1516,pixelWidth:704,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png\",srcSet:\"https://framerusercontent.com/images/3W3bVjB5UxJWGgZaC2HO75poKw.png 704w\"},className:\"framer-10go4sv\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-1baab7c\",\"data-framer-name\":\"iPhone\"})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u4xtpg\",\"data-framer-name\":\"Overlay\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-197cxm8\",\"data-framer-name\":\"MenuVenue\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ziq2q0\",\"data-styles-preset\":\"QjSybQ6ZQ\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"What's in it for you?\"})})}),className:\"framer-11mdhka\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7fa6jd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9aqe35\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sygins\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cgjmxp\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",children:\"FLEXIBILITY\"})}),className:\"framer-1bnmtjw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-otoq1b\",\"data-styles-preset\":\"TMuLmx_3F\",children:\"Pick. Click. Work. No Strings Attached.\"})}),className:\"framer-dewtmu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5b2t4w\",children:[/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-ibcmop\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+0+0+164+0+8),pixelHeight:848,pixelWidth:392,sizes:\"135.8733px\",src:\"https://framerusercontent.com/images/QKHVeM7TxteIaIBDVspTRYyKjds.png\",srcSet:\"https://framerusercontent.com/images/QKHVeM7TxteIaIBDVspTRYyKjds.png 392w\"}},vwYWqaFXw:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+0+0+0+144.0000000000001+-89.75+8),pixelHeight:848,pixelWidth:392,sizes:\"139.8519px\",src:\"https://framerusercontent.com/images/QKHVeM7TxteIaIBDVspTRYyKjds.png\",srcSet:\"https://framerusercontent.com/images/QKHVeM7TxteIaIBDVspTRYyKjds.png 392w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+0+0+32+108.80000000000001+0+8),pixelHeight:848,pixelWidth:392,sizes:`calc(max((max((${componentViewport?.width||\"100vw\"} - 96px) / 1.5, 1px) - 84px) / 3, 1px) * 0.89)`,src:\"https://framerusercontent.com/images/QKHVeM7TxteIaIBDVspTRYyKjds.png\",srcSet:\"https://framerusercontent.com/images/QKHVeM7TxteIaIBDVspTRYyKjds.png 392w\"},className:\"framer-yinwge\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+0+0+164+0+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+0+0+0+144.0000000000001+-89.75+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+0+0+32+108.80000000000001+0+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-ny6l7k\",\"data-framer-name\":\"iPhone\"})})]}),/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-1dvjuek\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+0+0+164+0+8),pixelHeight:848,pixelWidth:393,sizes:\"135.8733px\",src:\"https://framerusercontent.com/images/CwpvaM1kfmttYJbJv8goR97WGD0.png\",srcSet:\"https://framerusercontent.com/images/CwpvaM1kfmttYJbJv8goR97WGD0.png 393w\"}},vwYWqaFXw:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+0+0+0+144.0000000000001+-89.75+8),pixelHeight:848,pixelWidth:393,sizes:\"140.2972px\",src:\"https://framerusercontent.com/images/CwpvaM1kfmttYJbJv8goR97WGD0.png\",srcSet:\"https://framerusercontent.com/images/CwpvaM1kfmttYJbJv8goR97WGD0.png 393w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+0+0+32+108.80000000000001+0+8),pixelHeight:848,pixelWidth:393,sizes:`calc(max((max((${componentViewport?.width||\"100vw\"} - 96px) / 1.5, 1px) - 84px) / 3, 1px) * 0.89)`,src:\"https://framerusercontent.com/images/CwpvaM1kfmttYJbJv8goR97WGD0.png\",srcSet:\"https://framerusercontent.com/images/CwpvaM1kfmttYJbJv8goR97WGD0.png 393w\"},className:\"framer-sr9gi\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+0+0+164+0+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+0+0+0+144.0000000000001+-89.75+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+0+0+32+108.80000000000001+0+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-fa7tlu\",\"data-framer-name\":\"iPhone\"})})]}),/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-1fdzvy6\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+0+0+164+0+8),pixelHeight:847,pixelWidth:392,sizes:\"135.8733px\",src:\"https://framerusercontent.com/images/Jm0RjZIYSCGqX8LLkyfe33EyGuI.png\",srcSet:\"https://framerusercontent.com/images/Jm0RjZIYSCGqX8LLkyfe33EyGuI.png 392w\"}},vwYWqaFXw:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+0+0+0+144.0000000000001+-89.75+8),pixelHeight:847,pixelWidth:392,sizes:\"139.8519px\",src:\"https://framerusercontent.com/images/Jm0RjZIYSCGqX8LLkyfe33EyGuI.png\",srcSet:\"https://framerusercontent.com/images/Jm0RjZIYSCGqX8LLkyfe33EyGuI.png 392w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+0+0+32+108.80000000000001+0+8),pixelHeight:847,pixelWidth:392,sizes:`calc(max((max((${componentViewport?.width||\"100vw\"} - 96px) / 1.5, 1px) - 84px) / 3, 1px) * 0.89)`,src:\"https://framerusercontent.com/images/Jm0RjZIYSCGqX8LLkyfe33EyGuI.png\",srcSet:\"https://framerusercontent.com/images/Jm0RjZIYSCGqX8LLkyfe33EyGuI.png 392w\"},className:\"framer-kekv5d\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+0+0+164+0+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+0+0+0+144.0000000000001+-89.75+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+0+0+32+108.80000000000001+0+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-1ktnagv\",\"data-framer-name\":\"iPhone\"})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gxei66\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b8mk1w\",\"data-framer-name\":\"Copy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",children:\"FAIR REWARD\"})}),className:\"framer-xv0rou\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t6koba\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh0cey\",\"data-styles-preset\":\"oh9i8zqUo\",children:\"Up To\"})}),className:\"framer-1owno6i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"69px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0982471e-a56f-476e-9ab9-3d8cc7259584, rgb(255, 143, 64))\"},children:\"\\xa317/hr\"})})},vwYWqaFXw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0982471e-a56f-476e-9ab9-3d8cc7259584, rgb(255, 143, 64))\"},children:\"\\xa317/hr\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"91px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0982471e-a56f-476e-9ab9-3d8cc7259584, rgb(255, 143, 64))\"},children:\"\\xa317/hr\"})}),className:\"framer-i5kjv7\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-otoq1b\",\"data-styles-preset\":\"TMuLmx_3F\",children:[\"For Last-Minute Shifts. Noting below Living-Wage (\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(135, 203, 185))\"},children:\"\\xa312/hr\"}),\")\"]})})},vwYWqaFXw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",children:[\"Nothing Below Living-Wage (\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(135, 203, 185))\"},children:\"\\xa312/hr)\"}),\".\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-otoq1b\",\"data-styles-preset\":\"TMuLmx_3F\",children:[\"Nothing Below Living-Wage (\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(135, 203, 185))\"},children:\"\\xa312/hr)\"}),\".\"]})}),className:\"framer-l90i4o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wrw3hf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kxgek9\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1962bv4\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",children:\"WIDE RANGE OF JOBS\"})}),className:\"framer-1w39g3j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-otoq1b\",\"data-styles-preset\":\"TMuLmx_3F\",children:\"From bar stars to kitchen heroes, we've got the perfect gig for you!\"})}),className:\"framer-1fan82l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pacvvl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9wtkmx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:3276,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+516+0+32+148.8+0+0+0),pixelHeight:4096,pixelWidth:3276,sizes:\"72px\",src:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg\",srcSet:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg 3276w\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:3276,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+772+0+0+32+148.8+0+0+0),pixelHeight:4096,pixelWidth:3276,sizes:\"72px\",src:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg\",srcSet:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg 3276w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:3276,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+456+0+32+148.8+0+0+0),pixelHeight:4096,pixelWidth:3276,sizes:\"72px\",src:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg\",srcSet:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg 3276w\"},className:\"framer-1jk0z59\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+516+0+32+148.8+0+0+0),pixelHeight:6e3,pixelWidth:4e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg\",srcSet:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg 4000w\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+772+0+0+32+148.8+0+0+0),pixelHeight:6e3,pixelWidth:4e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg\",srcSet:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+456+0+32+148.8+0+0+0),pixelHeight:6e3,pixelWidth:4e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg\",srcSet:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg 4000w\"},className:\"framer-kgwouk\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5168,intrinsicWidth:3445,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+516+0+32+148.8+0+0+0),pixelHeight:5168,pixelWidth:3445,sizes:\"72px\",src:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg\",srcSet:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg 3445w\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5168,intrinsicWidth:3445,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+772+0+0+32+148.8+0+0+0),pixelHeight:5168,pixelWidth:3445,sizes:\"72px\",src:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg\",srcSet:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg 3445w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5168,intrinsicWidth:3445,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+456+0+32+148.8+0+0+0),pixelHeight:5168,pixelWidth:3445,sizes:\"72px\",src:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg\",srcSet:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg 3445w\"},className:\"framer-uktrib\",\"data-border\":true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x3bdh7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3286,intrinsicWidth:2191,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+516+0+32+148.8+0+82+0),pixelHeight:3286,pixelWidth:2191,sizes:\"72px\",src:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg\",srcSet:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg 2191w\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3286,intrinsicWidth:2191,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+772+0+0+32+148.8+0+82+0),pixelHeight:3286,pixelWidth:2191,sizes:\"72px\",src:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg\",srcSet:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg 2191w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3286,intrinsicWidth:2191,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+456+0+32+148.8+0+82+0),pixelHeight:3286,pixelWidth:2191,sizes:\"72px\",src:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg\",srcSet:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg 2191w\"},className:\"framer-1y25tog\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+516+0+32+148.8+0+82+0),pixelHeight:4500,pixelWidth:3e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg\",srcSet:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg 3000w\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+772+0+0+32+148.8+0+82+0),pixelHeight:4500,pixelWidth:3e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg\",srcSet:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+456+0+32+148.8+0+82+0),pixelHeight:4500,pixelWidth:3e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg\",srcSet:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg 3000w\"},className:\"framer-o59qb5\",\"data-border\":true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3s3257\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",style:{\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(18, 18, 18))\"},children:\"YOU\"})}),className:\"framer-gnronb\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+516+0+32+148.8+0+82+0),pixelHeight:3872,pixelWidth:2592,sizes:\"72px\",src:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg\",srcSet:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=1024 685w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=2048 1370w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg 2592w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+456+0+32+148.8+0+82+0),pixelHeight:3872,pixelWidth:2592,sizes:\"72px\",src:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg\",srcSet:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=1024 685w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=2048 1370w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg 2592w\"},className:\"framer-604je8 hidden-1i3kx8i\",\"data-border\":true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mvelb1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4608,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+516+0+32+148.8+0+164+0),pixelHeight:4608,pixelWidth:3456,sizes:\"72px\",src:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg\",srcSet:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=4096 3072w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg 3456w\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4608,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+772+0+0+32+148.8+0+164+0),pixelHeight:4608,pixelWidth:3456,sizes:\"72px\",src:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg\",srcSet:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=4096 3072w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg 3456w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4608,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+456+0+32+148.8+0+164+0),pixelHeight:4608,pixelWidth:3456,sizes:\"72px\",src:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg\",srcSet:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=4096 3072w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg 3456w\"},className:\"framer-1f38hqy\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4869,intrinsicWidth:3895,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+516+0+32+148.8+0+164+0),pixelHeight:4869,pixelWidth:3895,sizes:\"72px\",src:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg\",srcSet:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg 3895w\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4869,intrinsicWidth:3895,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+772+0+0+32+148.8+0+164+0),pixelHeight:4869,pixelWidth:3895,sizes:\"72px\",src:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg\",srcSet:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg 3895w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4869,intrinsicWidth:3895,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+456+0+32+148.8+0+164+0),pixelHeight:4869,pixelWidth:3895,sizes:\"72px\",src:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg\",srcSet:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg 3895w\"},className:\"framer-d3jsra\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3303,intrinsicWidth:2070,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+516+0+32+148.8+0+164+0),pixelHeight:3303,pixelWidth:2070,sizes:\"72px\",src:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg\",srcSet:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=1024 641w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=2048 1283w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg 2070w\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3303,intrinsicWidth:2070,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+772+0+0+32+148.8+0+164+0),pixelHeight:3303,pixelWidth:2070,sizes:\"72px\",src:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg\",srcSet:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=1024 641w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=2048 1283w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg 2070w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3303,intrinsicWidth:2070,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+456+0+32+148.8+0+164+0),pixelHeight:3303,pixelWidth:2070,sizes:\"72px\",src:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg\",srcSet:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=1024 641w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=2048 1283w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg 2070w\"},className:\"framer-1cmuj0x\",\"data-border\":true})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19yuhmu\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p7xx08\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",children:\"NO MORE WAITING\"})}),className:\"framer-lb2bbd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-otoq1b\",\"data-styles-preset\":\"TMuLmx_3F\",children:\"Get Access To Your Hard-Earned Cash Within 24 Hours.\"})}),className:\"framer-hb8zc5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-yh5zsy\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+516+0+32+108.80000000000001+8),pixelHeight:847,pixelWidth:390,sizes:`calc((max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 1px) - 64px) * 0.89)`,src:\"https://framerusercontent.com/images/hyOtqtu2g1RurWzzHKAYsKyJmw.png\",srcSet:\"https://framerusercontent.com/images/hyOtqtu2g1RurWzzHKAYsKyJmw.png 390w\"}},vwYWqaFXw:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+772+0+456+32+108.80000000000001+8),pixelHeight:847,pixelWidth:390,sizes:`calc((${componentViewport?.width||\"100vw\"} - 96px) * 0.89)`,src:\"https://framerusercontent.com/images/hyOtqtu2g1RurWzzHKAYsKyJmw.png\",srcSet:\"https://framerusercontent.com/images/hyOtqtu2g1RurWzzHKAYsKyJmw.png 390w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+456+0+32+8),pixelHeight:847,pixelWidth:390,sizes:`calc(max((max((${componentViewport?.width||\"100vw\"} - 96px) / 1.5, 1px) - 104px) / 2, 1px) * 0.89)`,src:\"https://framerusercontent.com/images/hyOtqtu2g1RurWzzHKAYsKyJmw.png\",srcSet:\"https://framerusercontent.com/images/hyOtqtu2g1RurWzzHKAYsKyJmw.png 390w\"},className:\"framer-1oeqxpv\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+85.6+0+516+0+32+108.80000000000001+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1463+80+85.6+0+772+0+456+32+108.80000000000001+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1547+80+109.59999999999994+0+456+0+32+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-m97nhf\",\"data-framer-name\":\"iPhone\"})})]})]})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dyd4ui\",\"data-framer-name\":\"Testimonials\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ziq2q0\",\"data-styles-preset\":\"QjSybQ6ZQ\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Hear it from our beta testers\"})})}),className:\"framer-f8mruz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-125x6v4\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16eyuk6\",\"data-framer-name\":\"Highlight\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ub6yuq\",\"data-framer-name\":\"Bar\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:40,ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-143eg6t\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"\\xa31,000+\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"\\xa31,000+\"})})}),className:\"framer-1hmumoo\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-117dqj6\",\"data-framer-name\":\"FeatureAndIcon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Made through our app, rapidly growing.\"})}),className:\"framer-12aj1rd\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tqp8\",\"data-framer-name\":\"Highlight\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__animate:{transition:transition13}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:40,ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fc8lko\",\"data-framer-name\":\"Bar\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:40,ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sxsz05\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"4.5\u2605\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"4.5\u2605\"})})}),className:\"framer-1ctik2h\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mao7s1\",\"data-framer-name\":\"FeatureAndIcon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-alignment\":\"center\"},children:\"User satisfaction.\"})}),className:\"framer-1hamh7f\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14trhzj\",\"data-framer-name\":\"Highlight\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__animate:{transition:transition13}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:40,ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uyglci\",\"data-framer-name\":\"Bar\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:40,ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q9ax8q\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"90%\"})})}),className:\"framer-117ztk8\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s2bsi5\",\"data-framer-name\":\"FeatureAndIcon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Would recommend our app to a friend.\"})}),className:\"framer-11sxeun\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q6zhf4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Zbq9V9tIC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{sizingOptions:{heightType:true,widthType:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:.8,id:\"Zbq9V9tIC\",layoutId:\"Zbq9V9tIC\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iwb9va\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh0cey\",\"data-styles-preset\":\"oh9i8zqUo\",children:'\"This app is great for the months when you are running a little tight on cash. The next-day payment solution has really helped me through the on going cost-of-living crisis.\"'})}),className:\"framer-1v2948p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a6iv65\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,pixelHeight:3872,pixelWidth:2592,sizes:\"42px\",src:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg\",srcSet:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=1024 685w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=2048 1370w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg 2592w\"},className:\"framer-203ddh\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh0cey\",\"data-styles-preset\":\"oh9i8zqUo\",style:{\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Ross Hutcheson\"})})}),className:\"framer-19x5m2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uthuoj\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh0cey\",\"data-styles-preset\":\"oh9i8zqUo\",children:\"\\\"Shifted has allowed me to focus on my university. Solely relying on a student loan isn't sufficient nowadays, and traditional  employers don't offer me the flexibility I need.\\\"\"})}),className:\"framer-1t59rn0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b856bz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,pixelHeight:4480,pixelWidth:6720,sizes:\"42px\",src:\"https://framerusercontent.com/images/syZZLnWTNkL3xTyQlU0poWCyUo.jpg\",srcSet:\"https://framerusercontent.com/images/syZZLnWTNkL3xTyQlU0poWCyUo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/syZZLnWTNkL3xTyQlU0poWCyUo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/syZZLnWTNkL3xTyQlU0poWCyUo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/syZZLnWTNkL3xTyQlU0poWCyUo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/syZZLnWTNkL3xTyQlU0poWCyUo.jpg 6720w\"},className:\"framer-amzwzj\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh0cey\",\"data-styles-preset\":\"oh9i8zqUo\",style:{\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Charlotte Hamilton\"})})}),className:\"framer-1kv899x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10yqi83\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh0cey\",\"data-styles-preset\":\"oh9i8zqUo\",children:\"\u201CShifted has revolutionised my part-time job hunt. As a student, it\u2019s been a game changer to find flexible shifts that fit my schedule. The app is easy to use, and getting paid quickly helps a lot with my expenses!\u201D\"})}),className:\"framer-734vr3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1db232s\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,pixelHeight:1280,pixelWidth:720,sizes:\"42px\",src:\"https://framerusercontent.com/images/GVaVMlNaLn0LI5xVM63YjBTibk.webp\",srcSet:\"https://framerusercontent.com/images/GVaVMlNaLn0LI5xVM63YjBTibk.webp?scale-down-to=1024 576w,https://framerusercontent.com/images/GVaVMlNaLn0LI5xVM63YjBTibk.webp 720w\"},className:\"framer-hp5hmo\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh0cey\",\"data-styles-preset\":\"oh9i8zqUo\",style:{\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Rebecca Simpson\"})})}),className:\"framer-1xm096e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j4jkam\",\"data-framer-name\":\"FAQ\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ziq2q0\",\"data-styles-preset\":\"QjSybQ6ZQ\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Frequently asked questions\"})})}),className:\"framer-1g4bj4s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-145hosm\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{y:(componentViewport?.y||0)+0+3854.25+80+85.6+0},vwYWqaFXw:{width:`calc((min(${componentViewport?.width||\"100vw\"}, 1400px) - 32px) * 0.9)`,y:(componentViewport?.y||0)+0+4966.35+40+85.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:906,width:`calc((min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px) * 0.9)`,y:(componentViewport?.y||0)+0+3758.25+80+109.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-83nrum-container\",\"data-framer-cursor\":\"1j8ntge\",nodeId:\"SgDCu9WZf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{variant:\"vgGMPPJp0\"}},children:/*#__PURE__*/_jsx(FAQUser,{height:\"100%\",id:\"SgDCu9WZf\",layoutId:\"SgDCu9WZf\",style:{width:\"100%\"},variant:\"Sgkk7k_7P\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oeIUx041Z\"},motionChild:true,nodeId:\"WpjnCamd8\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation18,\"aria-label\":\"button\",className:\"framer-1bqargn framer-lux5qc\",\"data-framer-appear-id\":\"1bqargn\",\"data-framer-cursor\":\"1j8ntge\",\"data-framer-name\":\"Button\",initial:animation19,optimized:true,style:{transformPerspective:1200},whileHover:animation3,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255))\"},children:\"Contact us\"})}),className:\"framer-19evpcu\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ggsa0d\",\"data-framer-name\":\"Blog\",id:elementId4,ref:ref5,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ziq2q0\",\"data-styles-preset\":\"QjSybQ6ZQ\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Our latest stories\"})})}),className:\"framer-f2g5c7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ruvgkf-container\",\"data-framer-cursor\":\"1j8ntge\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KCNOwdYha\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{itemAmount:2},vwYWqaFXw:{arrowOptions:{arrowFill:\"rgba(209, 255, 186, 0.2)\",arrowGap:10,arrowPadding:16,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:24,arrowPaddingTop:-80,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:15,overflow:false},itemAmount:1,paddingLeft:0,paddingRight:0}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(209, 255, 186, 0.2)\",arrowGap:10,arrowPadding:68,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:24,arrowPaddingTop:-80,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:24,height:\"100%\",id:\"KCNOwdYha\",intervalControl:1.5,itemAmount:3,layoutId:\"KCNOwdYha\",padding:0,paddingBottom:0,paddingLeft:40,paddingPerSide:true,paddingRight:40,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"blog post\",className:\"framer-t3qkvq\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ySJn1ZLIG\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"ySJn1ZLIG\",name:\"R9NVJt3a2\",type:\"Identifier\"},{collection:\"ySJn1ZLIG\",name:\"u1F11fZ8y\",type:\"Identifier\"},{collection:\"ySJn1ZLIG\",name:\"KbwV4kuCz\",type:\"Identifier\"},{collection:\"ySJn1ZLIG\",name:\"YahGhj3vg\",type:\"Identifier\"},{collection:\"ySJn1ZLIG\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idySJn1ZLIG,KbwV4kuCz:KbwV4kuCzySJn1ZLIG,R9NVJt3a2:R9NVJt3a2ySJn1ZLIG,u1F11fZ8y:u1F11fZ8yySJn1ZLIG,YahGhj3vg:YahGhj3vgySJn1ZLIG},index)=>{R9NVJt3a2ySJn1ZLIG??=\"\";YahGhj3vgySJn1ZLIG??=\"\";const textContent=toDateString(KbwV4kuCzySJn1ZLIG,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`ySJn1ZLIG-${idySJn1ZLIG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R9NVJt3a2:R9NVJt3a2ySJn1ZLIG},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{R9NVJt3a2:R9NVJt3a2ySJn1ZLIG},webPageId:\"rQsiIVXhv\"},motionChild:true,nodeId:\"Wibxs9txW\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-dqdogz framer-lux5qc\",whileHover:animation22,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"520px\",...toResponsiveImage(u1F11fZ8yySJn1ZLIG)},className:\"framer-1x6pk6b\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zw0gli\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-1p42nzc\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Title\"})})}),className:\"framer-13ljk91\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:YahGhj3vgySJn1ZLIG,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idySJn1ZLIG);})})})})}),/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"blog post\",className:\"framer-aht6a\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mfEv9BIfy\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"mfEv9BIfy\",name:\"R9NVJt3a2\",type:\"Identifier\"},{collection:\"mfEv9BIfy\",name:\"u1F11fZ8y\",type:\"Identifier\"},{collection:\"mfEv9BIfy\",name:\"KbwV4kuCz\",type:\"Identifier\"},{collection:\"mfEv9BIfy\",name:\"YahGhj3vg\",type:\"Identifier\"},{collection:\"mfEv9BIfy\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idmfEv9BIfy,KbwV4kuCz:KbwV4kuCzmfEv9BIfy,R9NVJt3a2:R9NVJt3a2mfEv9BIfy,u1F11fZ8y:u1F11fZ8ymfEv9BIfy,YahGhj3vg:YahGhj3vgmfEv9BIfy},index1)=>{R9NVJt3a2mfEv9BIfy??=\"\";YahGhj3vgmfEv9BIfy??=\"\";const textContent1=toDateString(KbwV4kuCzmfEv9BIfy,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`mfEv9BIfy-${idmfEv9BIfy}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R9NVJt3a2:R9NVJt3a2mfEv9BIfy},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{R9NVJt3a2:R9NVJt3a2mfEv9BIfy},webPageId:\"rQsiIVXhv\"},motionChild:true,nodeId:\"KQoSQefDn\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-fq4da7 framer-lux5qc\",whileHover:animation22,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"520px\",...toResponsiveImage(u1F11fZ8ymfEv9BIfy)},className:\"framer-esr2rd\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dzm1s8\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-k8xofi\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Title\"})})}),className:\"framer-hdoljy\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:YahGhj3vgmfEv9BIfy,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idmfEv9BIfy);})})})})}),/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"blog post\",className:\"framer-8mzr24\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"l9HDkaxlu\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"l9HDkaxlu\",name:\"R9NVJt3a2\",type:\"Identifier\"},{collection:\"l9HDkaxlu\",name:\"u1F11fZ8y\",type:\"Identifier\"},{collection:\"l9HDkaxlu\",name:\"KbwV4kuCz\",type:\"Identifier\"},{collection:\"l9HDkaxlu\",name:\"YahGhj3vg\",type:\"Identifier\"},{collection:\"l9HDkaxlu\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idl9HDkaxlu,KbwV4kuCz:KbwV4kuCzl9HDkaxlu,R9NVJt3a2:R9NVJt3a2l9HDkaxlu,u1F11fZ8y:u1F11fZ8yl9HDkaxlu,YahGhj3vg:YahGhj3vgl9HDkaxlu},index2)=>{R9NVJt3a2l9HDkaxlu??=\"\";YahGhj3vgl9HDkaxlu??=\"\";const textContent2=toDateString(KbwV4kuCzl9HDkaxlu,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`l9HDkaxlu-${idl9HDkaxlu}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R9NVJt3a2:R9NVJt3a2l9HDkaxlu},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{R9NVJt3a2:R9NVJt3a2l9HDkaxlu},webPageId:\"rQsiIVXhv\"},motionChild:true,nodeId:\"SFVaV4aNp\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1r8ze7e framer-lux5qc\",whileHover:animation22,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"520px\",...toResponsiveImage(u1F11fZ8yl9HDkaxlu)},className:\"framer-1ab5tro\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1920d90\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-15bszc2\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Title\"})})}),className:\"framer-12d3nka\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:YahGhj3vgl9HDkaxlu,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idl9HDkaxlu);})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vKtCYk6Ru\"},motionChild:true,nodeId:\"SalhAYL35\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation18,\"aria-label\":\"button\",className:\"framer-kpjp8f framer-lux5qc\",\"data-framer-appear-id\":\"kpjp8f\",\"data-framer-cursor\":\"1j8ntge\",\"data-framer-name\":\"Button\",initial:animation19,optimized:true,style:{transformPerspective:1200},whileHover:animation3,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255))\"},children:\"See all posts\"})}),className:\"framer-kef298\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"main\",{className:\"framer-iyqaz1 hidden-72rtr7 hidden-1i3kx8i\",\"data-framer-name\":\"Download\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-977b0p\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-usfo19\",\"data-framer-name\":\"Download\",id:elementId6,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6khd17\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fafw6f\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c98yq0\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",children:\"PRE-REGISTER\"})}),className:\"framer-djru4s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-ziq2q0\",\"data-styles-preset\":\"QjSybQ6ZQ\",children:[\"Work-life balance isn't just a perk. It's a promise.\",/*#__PURE__*/_jsx(\"br\",{}),\"Start Getting \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(135, 203, 185))\"},children:\"Shifted\"}),\".\"]})}),className:\"framer-2vt19b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a8lvpm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{y:(componentViewport?.y||0)+0+5140.85+80+820.6+40+0+0+40+211.85+0+120.80000000000001+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11ougyr-container\",nodeId:\"DkvW4050R\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"DkvW4050R\",layoutId:\"DkvW4050R\",pnkuQ5LAt:\"Pre-Register\",rjG28skN4:\"https://shifted-preregistration.flutterflow.app\",tALPoVrCo:true,variant:\"PNvdkCzSt\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1etuy0e\",\"data-framer-name\":\"Apps\",children:/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-hida3u\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5140.85+80+820.6+40+0+0+40+32+0+0+8),pixelHeight:1920,pixelWidth:1080,sizes:\"167.5809px\",src:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png\",srcSet:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png?scale-down-to=1024 576w,https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,pixelHeight:1920,pixelWidth:1080,sizes:\"167.5809px\",src:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png\",srcSet:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png?scale-down-to=1024 576w,https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png 1080w\"},className:\"framer-fsuy61\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5140.85+80+820.6+40+0+0+40+32+0+0+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-ibyjlj\",\"data-framer-name\":\"iPhone\"})})]})})]})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"main\",{className:\"framer-apaso6 hidden-on7m2k\",\"data-framer-name\":\"Download\",id:elementId7,ref:ref6,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-axa8xg\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-b5i97e\",\"data-framer-name\":\"Download\",id:elementId8,ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oti488\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19o04d3\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l22q\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",children:\"PRE-REGISTER\"})}),className:\"framer-7ei942\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-ziq2q0\",\"data-styles-preset\":\"QjSybQ6ZQ\",children:[\"Work-life balance isn't just a perk. It's a promise.\",/*#__PURE__*/_jsx(\"br\",{}),\"Start Getting \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(135, 203, 185))\"},children:\"Shifted\"}),\".\"]})}),className:\"framer-10xsc6v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f9ciod\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{y:(componentViewport?.y||0)+0+6994.550000000001+40+0+0+40+32+0+120.80000000000001+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+6121.450000000001+40+0+0+40+211.85+0+120.80000000000001+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x4mfrj-container\",nodeId:\"rS1kVf5WF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"rS1kVf5WF\",layoutId:\"rS1kVf5WF\",pnkuQ5LAt:\"Pre-Register\",rjG28skN4:\"https://shifted-preregistration.flutterflow.app\",tALPoVrCo:true,variant:\"PNvdkCzSt\",width:\"100%\"})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u66mcs hidden-1i3kx8i\",\"data-framer-name\":\"Apps\",children:/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-1o3v0ag\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6121.450000000001+40+0+0+40+32+0+0+8),pixelHeight:1920,pixelWidth:1080,sizes:\"262.1664px\",src:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png\",srcSet:\"https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png?scale-down-to=1024 576w,https://framerusercontent.com/images/xcjA7ficYkD5l7ZiXAnSUdS11qM.png 1080w\"},className:\"framer-wkdgfz\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6121.450000000001+40+0+0+40+32+0+0+0),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-zn1wru\",\"data-framer-name\":\"iPhone\"})]})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{width:`min(${componentViewport?.width||\"100vw\"}, 1600px)`},vwYWqaFXw:{width:`min(${componentViewport?.width||\"100vw\"}, 1600px)`,y:(componentViewport?.y||0)+0+7438.350000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:449,width:\"1200px\",y:(componentViewport?.y||0)+0+6924.950000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bx88m6-container\",nodeId:\"ED56mOYNN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{variant:\"oC3ORVHif\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ED56mOYNN\",layoutId:\"ED56mOYNN\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"vnwMUYCSt\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1m0QM.framer-lux5qc, .framer-1m0QM .framer-lux5qc { display: block; }\",\".framer-1m0QM.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-1m0QM .framer-byjxo0-container { flex: none; height: auto; left: 50%; position: fixed; top: 40px; transform: translateX(-50%); width: auto; z-index: 2; }\",\".framer-1m0QM .framer-aimela { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-1440bjc { flex: none; height: 403px; overflow: hidden; position: relative; width: 100%; }\",\".framer-1m0QM .framer-1ognymo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 50%; max-width: 1400px; overflow: visible; padding: 80px 0px 0px 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 1120px; z-index: 1; }\",\".framer-1m0QM .framer-155hhsw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 90%; overflow: visible; padding: 0px; position: relative; width: 70%; }\",\".framer-1m0QM .framer-8mnk5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-1k0wlgn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 4px; min-width: 2px; overflow: auto; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1m0QM .framer-gk8lco { --framer-paragraph-spacing: 72px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-1m0QM .framer-1q9mi05-container, .framer-1m0QM .framer-11ougyr-container, .framer-1m0QM .framer-x4mfrj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-1m0QM .framer-uujkpq { background-color: var(--token-0982471e-a56f-476e-9ab9-3d8cc7259584, #ff6900); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 55px; overflow: hidden; position: relative; text-decoration: none; width: 172px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1m0QM .framer-1nhjjy2, .framer-1m0QM .framer-19evpcu, .framer-1m0QM .framer-kef298 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-1m0QM .framer-gh9mjg { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 100vh; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 600px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-1m0QM .framer-qz28t9-container, .framer-1m0QM .framer-19x70op-container, .framer-1m0QM .framer-5130qo-container, .framer-1m0QM .framer-fy1xt1-container, .framer-1m0QM .framer-rqh32a-container { flex: none; height: 100%; position: relative; width: 210px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1m0QM .framer-va5t1g, .framer-1m0QM .framer-1h566ic, .framer-1m0QM .framer-f3kc8f { aspect-ratio: 0.4968944099378882 / 1; height: var(--framer-aspect-ratio-supported, 437px); overflow: visible; position: relative; width: 217px; }\",\".framer-1m0QM .framer-4xhkrx, .framer-1m0QM .framer-pxoevx, .framer-1m0QM .framer-9858g5, .framer-1m0QM .framer-fsuy61 { aspect-ratio: 0.4617737003058104 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: var(--framer-aspect-ratio-supported, 433px); left: 50%; overflow: visible; position: absolute; top: 8px; transform: translateX(-50%); width: 89%; }\",\".framer-1m0QM .framer-158qdy5, .framer-1m0QM .framer-10go4sv { aspect-ratio: 0.4617737003058104 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: var(--framer-aspect-ratio-supported, 433px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 89%; }\",\".framer-1m0QM .framer-pery11, .framer-1m0QM .framer-1baab7c, .framer-1m0QM .framer-8ammj6, .framer-1m0QM .framer-ibyjlj { aspect-ratio: 0.49115646258503404 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 436px); left: 2px; overflow: visible; position: absolute; right: 2px; top: 0px; }\",'.framer-1m0QM .framer-1u4xtpg { background: radial-gradient(60% 69.3% at 50% 84%, rgba(255, 255, 255, 0) 38.921734234234236%, var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255)) /* {\"name\":\"BgColor\"} */ 100%); bottom: -90px; flex: none; left: -300px; overflow: hidden; position: absolute; right: -300px; top: -184px; z-index: 1; }',\".framer-1m0QM .framer-197cxm8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-11mdhka, .framer-1m0QM .framer-f8mruz, .framer-1m0QM .framer-1g4bj4s, .framer-1m0QM .framer-f2g5c7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-1m0QM .framer-7fa6jd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-9aqe35, .framer-1m0QM .framer-wrw3hf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-sygins { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1m0QM .framer-cgjmxp, .framer-1m0QM .framer-b8mk1w, .framer-1m0QM .framer-1962bv4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-1bnmtjw, .framer-1m0QM .framer-dewtmu, .framer-1m0QM .framer-xv0rou, .framer-1m0QM .framer-1owno6i, .framer-1m0QM .framer-l90i4o, .framer-1m0QM .framer-1w39g3j, .framer-1m0QM .framer-1fan82l, .framer-1m0QM .framer-lb2bbd, .framer-1m0QM .framer-hb8zc5, .framer-1m0QM .framer-1v2948p, .framer-1m0QM .framer-1t59rn0, .framer-1m0QM .framer-734vr3, .framer-1m0QM .framer-djru4s, .framer-1m0QM .framer-2vt19b, .framer-1m0QM .framer-7ei942, .framer-1m0QM .framer-10xsc6v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1m0QM .framer-5b2t4w, .framer-1m0QM .framer-9wtkmx, .framer-1m0QM .framer-x3bdh7, .framer-1m0QM .framer-1mvelb1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-ibcmop, .framer-1m0QM .framer-1dvjuek, .framer-1m0QM .framer-1fdzvy6 { aspect-ratio: 0.4968944099378882 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 423px); overflow: visible; position: relative; width: 1px; }\",\".framer-1m0QM .framer-yinwge, .framer-1m0QM .framer-sr9gi, .framer-1m0QM .framer-kekv5d { aspect-ratio: 0.4617737003058104 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: var(--framer-aspect-ratio-supported, 405px); left: 50%; overflow: visible; position: absolute; top: 8px; transform: translateX(-50%); width: 89%; }\",\".framer-1m0QM .framer-ny6l7k, .framer-1m0QM .framer-fa7tlu, .framer-1m0QM .framer-1ktnagv { aspect-ratio: 0.49115646258503404 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 420px); left: 2px; overflow: visible; position: absolute; right: 2px; top: 0px; }\",\".framer-1m0QM .framer-gxei66 { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1m0QM .framer-1t6koba { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-i5kjv7, .framer-1m0QM .framer-1hmumoo, .framer-1m0QM .framer-1ctik2h, .framer-1m0QM .framer-117ztk8, .framer-1m0QM .framer-1p42nzc, .framer-1m0QM .framer-13ljk91, .framer-1m0QM .framer-k8xofi, .framer-1m0QM .framer-hdoljy, .framer-1m0QM .framer-15bszc2, .framer-1m0QM .framer-12d3nka { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1m0QM .framer-kxgek9 { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1m0QM .framer-1pacvvl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-1jk0z59, .framer-1m0QM .framer-kgwouk, .framer-1m0QM .framer-uktrib, .framer-1m0QM .framer-1y25tog, .framer-1m0QM .framer-o59qb5, .framer-1m0QM .framer-604je8, .framer-1m0QM .framer-1f38hqy, .framer-1m0QM .framer-d3jsra, .framer-1m0QM .framer-1cmuj0x { --border-bottom-width: 4px; --border-color: var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, #d1ffba); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1m0QM .framer-3s3257 { aspect-ratio: 1 / 1; background-color: var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, #d1ffba); border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1m0QM .framer-gnronb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-1m0QM .framer-19yuhmu { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1m0QM .framer-p7xx08 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1m0QM .framer-yh5zsy { aspect-ratio: 0.4968944099378882 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 615px); overflow: visible; position: relative; width: 1px; }\",\".framer-1m0QM .framer-1oeqxpv { aspect-ratio: 0.4617737003058104 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: var(--framer-aspect-ratio-supported, 589px); left: 50%; overflow: visible; position: absolute; top: 8px; transform: translateX(-50%); width: 89%; }\",\".framer-1m0QM .framer-m97nhf { aspect-ratio: 0.49115646258503404 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 614px); left: 2px; overflow: visible; position: absolute; right: 2px; top: 0px; }\",\".framer-1m0QM .framer-1dyd4ui { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 80px 40px 80px 40px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-1m0QM .framer-125x6v4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-1m0QM .framer-16eyuk6, .framer-1m0QM .framer-tqp8, .framer-1m0QM .framer-14trhzj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1m0QM .framer-1ub6yuq { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 2px; }\",\".framer-1m0QM .framer-143eg6t, .framer-1m0QM .framer-1sxsz05, .framer-1m0QM .framer-q9ax8q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 16px; position: relative; width: 95%; }\",\".framer-1m0QM .framer-117dqj6, .framer-1m0QM .framer-1mao7s1, .framer-1m0QM .framer-s2bsi5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-12aj1rd, .framer-1m0QM .framer-1hamh7f, .framer-1m0QM .framer-11sxeun { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",'.framer-1m0QM .framer-fc8lko, .framer-1m0QM .framer-uyglci { align-self: stretch; background: linear-gradient(180deg, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, #ffffff) /* {\"name\":\"TextPrimary\"} */ 0%, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) /* {\"name\":\"HighlightPrimary\"} */ 100%); flex: none; height: auto; overflow: hidden; position: relative; width: 2px; }',\".framer-1m0QM .framer-1q6zhf4-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-iwb9va, .framer-1m0QM .framer-uthuoj, .framer-1m0QM .framer-10yqi83 { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 400px; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 500px; }\",\".framer-1m0QM .framer-1a6iv65, .framer-1m0QM .framer-1b856bz, .framer-1m0QM .framer-1db232s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-203ddh, .framer-1m0QM .framer-amzwzj, .framer-1m0QM .framer-hp5hmo { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: hidden; position: relative; width: 42px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1m0QM .framer-19x5m2, .framer-1m0QM .framer-1kv899x, .framer-1m0QM .framer-1xm096e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1m0QM .framer-j4jkam, .framer-1m0QM .framer-1ggsa0d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 80px 40px 80px 40px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-1m0QM .framer-145hosm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-1m0QM .framer-83nrum-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-1m0QM .framer-1bqargn, .framer-1m0QM .framer-kpjp8f { background-color: var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, #043161); border-bottom-left-radius: 365px; border-bottom-right-radius: 365px; border-top-left-radius: 365px; border-top-right-radius: 365px; flex: none; height: 55px; overflow: hidden; position: relative; text-decoration: none; width: 172px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1m0QM .framer-1ruvgkf-container { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-t3qkvq, .framer-1m0QM .framer-aht6a, .framer-1m0QM .framer-8mzr24 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 520px; }\",\".framer-1m0QM .framer-dqdogz, .framer-1m0QM .framer-fq4da7, .framer-1m0QM .framer-1r8ze7e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1m0QM .framer-1x6pk6b, .framer-1m0QM .framer-esr2rd, .framer-1m0QM .framer-1ab5tro { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 353px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-1m0QM .framer-zw0gli, .framer-1m0QM .framer-1dzm1s8, .framer-1m0QM .framer-1920d90 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 16px 24px 24px 24px; position: relative; width: 1px; }\",\".framer-1m0QM .framer-iyqaz1, .framer-1m0QM .framer-usfo19, .framer-1m0QM .framer-apaso6, .framer-1m0QM .framer-b5i97e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 40px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-1m0QM .framer-977b0p, .framer-1m0QM .framer-1etuy0e, .framer-1m0QM .framer-axa8xg, .framer-1m0QM .framer-1u66mcs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1m0QM .framer-6khd17 { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 32px 40px; position: relative; width: 732px; }\",\".framer-1m0QM .framer-fafw6f, .framer-1m0QM .framer-19o04d3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1m0QM .framer-c98yq0, .framer-1m0QM .framer-1l22q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 40px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-a8lvpm, .framer-1m0QM .framer-1f9ciod { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 40px; position: relative; width: 100%; }\",\".framer-1m0QM .framer-hida3u { aspect-ratio: 0.4968944099378882 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 403px); overflow: visible; position: relative; width: 58%; z-index: 1; }\",\".framer-1m0QM .framer-1oti488 { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 32px 40px; position: relative; width: 1100px; }\",\".framer-1m0QM .framer-1o3v0ag { aspect-ratio: 0.4968944099378882 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 593px); overflow: visible; position: relative; width: 58%; z-index: 1; }\",\".framer-1m0QM .framer-wkdgfz { aspect-ratio: 0.4617737003058104 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: var(--framer-aspect-ratio-supported, 568px); left: 50%; overflow: visible; position: absolute; top: 8px; transform: translateX(-50%); width: 89%; }\",\".framer-1m0QM .framer-zn1wru { aspect-ratio: 0.49115646258503404 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 592px); left: 2px; overflow: visible; position: absolute; right: 2px; top: 0px; }\",\".framer-1m0QM .framer-bx88m6-container { flex: none; height: auto; max-width: 1600px; position: relative; width: 1200px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1m0QM.framer-72rtr7, .framer-1m0QM .framer-aimela, .framer-1m0QM .framer-1ognymo, .framer-1m0QM .framer-155hhsw, .framer-1m0QM .framer-8mnk5m, .framer-1m0QM .framer-1k0wlgn, .framer-1m0QM .framer-gh9mjg, .framer-1m0QM .framer-197cxm8, .framer-1m0QM .framer-7fa6jd, .framer-1m0QM .framer-9aqe35, .framer-1m0QM .framer-sygins, .framer-1m0QM .framer-cgjmxp, .framer-1m0QM .framer-5b2t4w, .framer-1m0QM .framer-gxei66, .framer-1m0QM .framer-b8mk1w, .framer-1m0QM .framer-1t6koba, .framer-1m0QM .framer-wrw3hf, .framer-1m0QM .framer-kxgek9, .framer-1m0QM .framer-1962bv4, .framer-1m0QM .framer-1pacvvl, .framer-1m0QM .framer-9wtkmx, .framer-1m0QM .framer-x3bdh7, .framer-1m0QM .framer-1mvelb1, .framer-1m0QM .framer-19yuhmu, .framer-1m0QM .framer-p7xx08, .framer-1m0QM .framer-1dyd4ui, .framer-1m0QM .framer-125x6v4, .framer-1m0QM .framer-16eyuk6, .framer-1m0QM .framer-143eg6t, .framer-1m0QM .framer-117dqj6, .framer-1m0QM .framer-tqp8, .framer-1m0QM .framer-1sxsz05, .framer-1m0QM .framer-1mao7s1, .framer-1m0QM .framer-14trhzj, .framer-1m0QM .framer-q9ax8q, .framer-1m0QM .framer-s2bsi5, .framer-1m0QM .framer-iwb9va, .framer-1m0QM .framer-1a6iv65, .framer-1m0QM .framer-uthuoj, .framer-1m0QM .framer-1b856bz, .framer-1m0QM .framer-10yqi83, .framer-1m0QM .framer-1db232s, .framer-1m0QM .framer-j4jkam, .framer-1m0QM .framer-145hosm, .framer-1m0QM .framer-1ggsa0d, .framer-1m0QM .framer-t3qkvq, .framer-1m0QM .framer-dqdogz, .framer-1m0QM .framer-zw0gli, .framer-1m0QM .framer-aht6a, .framer-1m0QM .framer-fq4da7, .framer-1m0QM .framer-1dzm1s8, .framer-1m0QM .framer-8mzr24, .framer-1m0QM .framer-1r8ze7e, .framer-1m0QM .framer-1920d90, .framer-1m0QM .framer-iyqaz1, .framer-1m0QM .framer-977b0p, .framer-1m0QM .framer-usfo19, .framer-1m0QM .framer-6khd17, .framer-1m0QM .framer-fafw6f, .framer-1m0QM .framer-c98yq0, .framer-1m0QM .framer-a8lvpm, .framer-1m0QM .framer-1etuy0e, .framer-1m0QM .framer-apaso6, .framer-1m0QM .framer-axa8xg, .framer-1m0QM .framer-b5i97e, .framer-1m0QM .framer-1oti488, .framer-1m0QM .framer-19o04d3, .framer-1m0QM .framer-1l22q, .framer-1m0QM .framer-1f9ciod, .framer-1m0QM .framer-1u66mcs { gap: 0px; } .framer-1m0QM.framer-72rtr7 > *, .framer-1m0QM .framer-155hhsw > *, .framer-1m0QM .framer-sygins > *, .framer-1m0QM .framer-gxei66 > *, .framer-1m0QM .framer-fafw6f > *, .framer-1m0QM .framer-19o04d3 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-1m0QM.framer-72rtr7 > :first-child, .framer-1m0QM .framer-aimela > :first-child, .framer-1m0QM .framer-1ognymo > :first-child, .framer-1m0QM .framer-155hhsw > :first-child, .framer-1m0QM .framer-8mnk5m > :first-child, .framer-1m0QM .framer-197cxm8 > :first-child, .framer-1m0QM .framer-7fa6jd > :first-child, .framer-1m0QM .framer-sygins > :first-child, .framer-1m0QM .framer-cgjmxp > :first-child, .framer-1m0QM .framer-gxei66 > :first-child, .framer-1m0QM .framer-b8mk1w > :first-child, .framer-1m0QM .framer-1t6koba > :first-child, .framer-1m0QM .framer-kxgek9 > :first-child, .framer-1m0QM .framer-1962bv4 > :first-child, .framer-1m0QM .framer-1pacvvl > :first-child, .framer-1m0QM .framer-p7xx08 > :first-child, .framer-1m0QM .framer-1dyd4ui > :first-child, .framer-1m0QM .framer-143eg6t > :first-child, .framer-1m0QM .framer-1sxsz05 > :first-child, .framer-1m0QM .framer-q9ax8q > :first-child, .framer-1m0QM .framer-iwb9va > :first-child, .framer-1m0QM .framer-uthuoj > :first-child, .framer-1m0QM .framer-10yqi83 > :first-child, .framer-1m0QM .framer-j4jkam > :first-child, .framer-1m0QM .framer-1ggsa0d > :first-child, .framer-1m0QM .framer-zw0gli > :first-child, .framer-1m0QM .framer-1dzm1s8 > :first-child, .framer-1m0QM .framer-1920d90 > :first-child, .framer-1m0QM .framer-977b0p > :first-child, .framer-1m0QM .framer-fafw6f > :first-child, .framer-1m0QM .framer-c98yq0 > :first-child, .framer-1m0QM .framer-1etuy0e > :first-child, .framer-1m0QM .framer-axa8xg > :first-child, .framer-1m0QM .framer-19o04d3 > :first-child, .framer-1m0QM .framer-1l22q > :first-child, .framer-1m0QM .framer-1u66mcs > :first-child { margin-top: 0px; } .framer-1m0QM.framer-72rtr7 > :last-child, .framer-1m0QM .framer-aimela > :last-child, .framer-1m0QM .framer-1ognymo > :last-child, .framer-1m0QM .framer-155hhsw > :last-child, .framer-1m0QM .framer-8mnk5m > :last-child, .framer-1m0QM .framer-197cxm8 > :last-child, .framer-1m0QM .framer-7fa6jd > :last-child, .framer-1m0QM .framer-sygins > :last-child, .framer-1m0QM .framer-cgjmxp > :last-child, .framer-1m0QM .framer-gxei66 > :last-child, .framer-1m0QM .framer-b8mk1w > :last-child, .framer-1m0QM .framer-1t6koba > :last-child, .framer-1m0QM .framer-kxgek9 > :last-child, .framer-1m0QM .framer-1962bv4 > :last-child, .framer-1m0QM .framer-1pacvvl > :last-child, .framer-1m0QM .framer-p7xx08 > :last-child, .framer-1m0QM .framer-1dyd4ui > :last-child, .framer-1m0QM .framer-143eg6t > :last-child, .framer-1m0QM .framer-1sxsz05 > :last-child, .framer-1m0QM .framer-q9ax8q > :last-child, .framer-1m0QM .framer-iwb9va > :last-child, .framer-1m0QM .framer-uthuoj > :last-child, .framer-1m0QM .framer-10yqi83 > :last-child, .framer-1m0QM .framer-j4jkam > :last-child, .framer-1m0QM .framer-1ggsa0d > :last-child, .framer-1m0QM .framer-zw0gli > :last-child, .framer-1m0QM .framer-1dzm1s8 > :last-child, .framer-1m0QM .framer-1920d90 > :last-child, .framer-1m0QM .framer-977b0p > :last-child, .framer-1m0QM .framer-fafw6f > :last-child, .framer-1m0QM .framer-c98yq0 > :last-child, .framer-1m0QM .framer-1etuy0e > :last-child, .framer-1m0QM .framer-axa8xg > :last-child, .framer-1m0QM .framer-19o04d3 > :last-child, .framer-1m0QM .framer-1l22q > :last-child, .framer-1m0QM .framer-1u66mcs > :last-child { margin-bottom: 0px; } .framer-1m0QM .framer-aimela > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1m0QM .framer-1ognymo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1m0QM .framer-8mnk5m > *, .framer-1m0QM .framer-zw0gli > *, .framer-1m0QM .framer-1dzm1s8 > *, .framer-1m0QM .framer-1920d90 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-1m0QM .framer-1k0wlgn > *, .framer-1m0QM .framer-5b2t4w > *, .framer-1m0QM .framer-9wtkmx > *, .framer-1m0QM .framer-x3bdh7 > *, .framer-1m0QM .framer-1mvelb1 > *, .framer-1m0QM .framer-16eyuk6 > *, .framer-1m0QM .framer-tqp8 > *, .framer-1m0QM .framer-14trhzj > *, .framer-1m0QM .framer-145hosm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1m0QM .framer-1k0wlgn > :first-child, .framer-1m0QM .framer-gh9mjg > :first-child, .framer-1m0QM .framer-9aqe35 > :first-child, .framer-1m0QM .framer-5b2t4w > :first-child, .framer-1m0QM .framer-wrw3hf > :first-child, .framer-1m0QM .framer-9wtkmx > :first-child, .framer-1m0QM .framer-x3bdh7 > :first-child, .framer-1m0QM .framer-1mvelb1 > :first-child, .framer-1m0QM .framer-19yuhmu > :first-child, .framer-1m0QM .framer-125x6v4 > :first-child, .framer-1m0QM .framer-16eyuk6 > :first-child, .framer-1m0QM .framer-117dqj6 > :first-child, .framer-1m0QM .framer-tqp8 > :first-child, .framer-1m0QM .framer-1mao7s1 > :first-child, .framer-1m0QM .framer-14trhzj > :first-child, .framer-1m0QM .framer-s2bsi5 > :first-child, .framer-1m0QM .framer-1a6iv65 > :first-child, .framer-1m0QM .framer-1b856bz > :first-child, .framer-1m0QM .framer-1db232s > :first-child, .framer-1m0QM .framer-145hosm > :first-child, .framer-1m0QM .framer-t3qkvq > :first-child, .framer-1m0QM .framer-dqdogz > :first-child, .framer-1m0QM .framer-aht6a > :first-child, .framer-1m0QM .framer-fq4da7 > :first-child, .framer-1m0QM .framer-8mzr24 > :first-child, .framer-1m0QM .framer-1r8ze7e > :first-child, .framer-1m0QM .framer-iyqaz1 > :first-child, .framer-1m0QM .framer-usfo19 > :first-child, .framer-1m0QM .framer-6khd17 > :first-child, .framer-1m0QM .framer-a8lvpm > :first-child, .framer-1m0QM .framer-apaso6 > :first-child, .framer-1m0QM .framer-b5i97e > :first-child, .framer-1m0QM .framer-1oti488 > :first-child, .framer-1m0QM .framer-1f9ciod > :first-child { margin-left: 0px; } .framer-1m0QM .framer-1k0wlgn > :last-child, .framer-1m0QM .framer-gh9mjg > :last-child, .framer-1m0QM .framer-9aqe35 > :last-child, .framer-1m0QM .framer-5b2t4w > :last-child, .framer-1m0QM .framer-wrw3hf > :last-child, .framer-1m0QM .framer-9wtkmx > :last-child, .framer-1m0QM .framer-x3bdh7 > :last-child, .framer-1m0QM .framer-1mvelb1 > :last-child, .framer-1m0QM .framer-19yuhmu > :last-child, .framer-1m0QM .framer-125x6v4 > :last-child, .framer-1m0QM .framer-16eyuk6 > :last-child, .framer-1m0QM .framer-117dqj6 > :last-child, .framer-1m0QM .framer-tqp8 > :last-child, .framer-1m0QM .framer-1mao7s1 > :last-child, .framer-1m0QM .framer-14trhzj > :last-child, .framer-1m0QM .framer-s2bsi5 > :last-child, .framer-1m0QM .framer-1a6iv65 > :last-child, .framer-1m0QM .framer-1b856bz > :last-child, .framer-1m0QM .framer-1db232s > :last-child, .framer-1m0QM .framer-145hosm > :last-child, .framer-1m0QM .framer-t3qkvq > :last-child, .framer-1m0QM .framer-dqdogz > :last-child, .framer-1m0QM .framer-aht6a > :last-child, .framer-1m0QM .framer-fq4da7 > :last-child, .framer-1m0QM .framer-8mzr24 > :last-child, .framer-1m0QM .framer-1r8ze7e > :last-child, .framer-1m0QM .framer-iyqaz1 > :last-child, .framer-1m0QM .framer-usfo19 > :last-child, .framer-1m0QM .framer-6khd17 > :last-child, .framer-1m0QM .framer-a8lvpm > :last-child, .framer-1m0QM .framer-apaso6 > :last-child, .framer-1m0QM .framer-b5i97e > :last-child, .framer-1m0QM .framer-1oti488 > :last-child, .framer-1m0QM .framer-1f9ciod > :last-child { margin-right: 0px; } .framer-1m0QM .framer-gh9mjg > *, .framer-1m0QM .framer-iyqaz1 > *, .framer-1m0QM .framer-usfo19 > *, .framer-1m0QM .framer-apaso6 > *, .framer-1m0QM .framer-b5i97e > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-1m0QM .framer-197cxm8 > *, .framer-1m0QM .framer-j4jkam > *, .framer-1m0QM .framer-1ggsa0d > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-1m0QM .framer-7fa6jd > *, .framer-1m0QM .framer-cgjmxp > *, .framer-1m0QM .framer-b8mk1w > *, .framer-1m0QM .framer-1962bv4 > *, .framer-1m0QM .framer-p7xx08 > *, .framer-1m0QM .framer-143eg6t > *, .framer-1m0QM .framer-1sxsz05 > *, .framer-1m0QM .framer-q9ax8q > *, .framer-1m0QM .framer-c98yq0 > *, .framer-1m0QM .framer-1l22q > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-1m0QM .framer-9aqe35 > *, .framer-1m0QM .framer-wrw3hf > *, .framer-1m0QM .framer-1a6iv65 > *, .framer-1m0QM .framer-1b856bz > *, .framer-1m0QM .framer-1db232s > *, .framer-1m0QM .framer-dqdogz > *, .framer-1m0QM .framer-fq4da7 > *, .framer-1m0QM .framer-1r8ze7e > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-1m0QM .framer-1t6koba > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-1m0QM .framer-kxgek9 > *, .framer-1m0QM .framer-1dyd4ui > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-1m0QM .framer-1pacvvl > *, .framer-1m0QM .framer-977b0p > *, .framer-1m0QM .framer-1etuy0e > *, .framer-1m0QM .framer-axa8xg > *, .framer-1m0QM .framer-1u66mcs > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-1m0QM .framer-19yuhmu > *, .framer-1m0QM .framer-6khd17 > *, .framer-1m0QM .framer-1oti488 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-1m0QM .framer-125x6v4 > *, .framer-1m0QM .framer-t3qkvq > *, .framer-1m0QM .framer-aht6a > *, .framer-1m0QM .framer-8mzr24 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-1m0QM .framer-117dqj6 > *, .framer-1m0QM .framer-1mao7s1 > *, .framer-1m0QM .framer-s2bsi5 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-1m0QM .framer-iwb9va > *, .framer-1m0QM .framer-uthuoj > *, .framer-1m0QM .framer-10yqi83 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1m0QM .framer-a8lvpm > *, .framer-1m0QM .framer-1f9ciod > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-1m0QM[data-border=\"true\"]::after, .framer-1m0QM [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-1m0QM.framer-72rtr7 { width: 810px; } .framer-1m0QM .framer-155hhsw { width: 90%; } .framer-1m0QM .framer-197cxm8, .framer-1m0QM .framer-j4jkam, .framer-1m0QM .framer-1ggsa0d { gap: 40px; } .framer-1m0QM .framer-sygins, .framer-1m0QM .framer-kxgek9 { height: 500px; } .framer-1m0QM .framer-5b2t4w { left: 32px; position: absolute; top: 164px; width: 478px; z-index: 1; } .framer-1m0QM .framer-ibcmop, .framer-1m0QM .framer-1dvjuek, .framer-1m0QM .framer-1fdzvy6 { height: var(--framer-aspect-ratio-supported, 307px); } .framer-1m0QM .framer-yinwge, .framer-1m0QM .framer-sr9gi, .framer-1m0QM .framer-kekv5d { height: var(--framer-aspect-ratio-supported, 294px); } .framer-1m0QM .framer-ny6l7k, .framer-1m0QM .framer-fa7tlu, .framer-1m0QM .framer-1ktnagv { height: var(--framer-aspect-ratio-supported, 303px); } .framer-1m0QM .framer-gxei66 { gap: 10px; height: 500px; } .framer-1m0QM .framer-19yuhmu { flex: 1 0 0px; flex-direction: column; height: 500px; } .framer-1m0QM .framer-p7xx08 { flex: none; width: 100%; } .framer-1m0QM .framer-yh5zsy { flex: none; height: var(--framer-aspect-ratio-supported, 590px); width: 100%; } .framer-1m0QM .framer-1oeqxpv { height: var(--framer-aspect-ratio-supported, 565px); } .framer-1m0QM .framer-m97nhf { height: var(--framer-aspect-ratio-supported, 589px); } .framer-1m0QM .framer-iyqaz1, .framer-1m0QM .framer-usfo19 { padding: 40px 0px 40px 0px; } .framer-1m0QM .framer-hida3u { height: var(--framer-aspect-ratio-supported, 379px); } .framer-1m0QM .framer-fsuy61 { height: var(--framer-aspect-ratio-supported, 363px); } .framer-1m0QM .framer-ibyjlj { height: var(--framer-aspect-ratio-supported, 376px); } .framer-1m0QM .framer-bx88m6-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1m0QM .framer-197cxm8, .framer-1m0QM .framer-gxei66, .framer-1m0QM .framer-19yuhmu, .framer-1m0QM .framer-j4jkam, .framer-1m0QM .framer-1ggsa0d { gap: 0px; } .framer-1m0QM .framer-197cxm8 > *, .framer-1m0QM .framer-19yuhmu > *, .framer-1m0QM .framer-j4jkam > *, .framer-1m0QM .framer-1ggsa0d > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-1m0QM .framer-197cxm8 > :first-child, .framer-1m0QM .framer-gxei66 > :first-child, .framer-1m0QM .framer-19yuhmu > :first-child, .framer-1m0QM .framer-j4jkam > :first-child, .framer-1m0QM .framer-1ggsa0d > :first-child { margin-top: 0px; } .framer-1m0QM .framer-197cxm8 > :last-child, .framer-1m0QM .framer-gxei66 > :last-child, .framer-1m0QM .framer-19yuhmu > :last-child, .framer-1m0QM .framer-j4jkam > :last-child, .framer-1m0QM .framer-1ggsa0d > :last-child { margin-bottom: 0px; } .framer-1m0QM .framer-gxei66 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (max-width: 809px) { .framer-1m0QM.framer-72rtr7 { width: 390px; } .framer-1m0QM .framer-byjxo0-container { left: 45px; order: 0; right: 45px; transform: unset; width: unset; } .framer-1m0QM .framer-aimela { order: 1; padding: 80px 16px 0px 16px; } .framer-1m0QM .framer-1440bjc { height: 319px; } .framer-1m0QM .framer-1ognymo { width: 358px; } .framer-1m0QM .framer-155hhsw { max-width: unset; width: 100%; } .framer-1m0QM .framer-197cxm8 { gap: 40px; order: 2; padding: 80px 16px 80px 16px; } .framer-1m0QM .framer-9aqe35, .framer-1m0QM .framer-wrw3hf, .framer-1m0QM .framer-125x6v4 { flex-direction: column; } .framer-1m0QM .framer-sygins, .framer-1m0QM .framer-kxgek9, .framer-1m0QM .framer-p7xx08 { flex: none; width: 100%; } .framer-1m0QM .framer-5b2t4w { height: 392px; left: 24px; position: absolute; top: calc(77.2727272727273% - 392px / 2); width: 492px; z-index: 1; } .framer-1m0QM .framer-ibcmop, .framer-1m0QM .framer-1dvjuek, .framer-1m0QM .framer-1fdzvy6 { height: var(--framer-aspect-ratio-supported, 403px); } .framer-1m0QM .framer-yinwge, .framer-1m0QM .framer-sr9gi, .framer-1m0QM .framer-kekv5d { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 433px); left: 10px; transform: unset; width: 89%; } .framer-1m0QM .framer-ny6l7k, .framer-1m0QM .framer-fa7tlu, .framer-1m0QM .framer-1ktnagv, .framer-1m0QM .framer-m97nhf { height: var(--framer-aspect-ratio-supported, 436px); } .framer-1m0QM .framer-gxei66 { flex: none; height: 300px; width: 100%; } .framer-1m0QM .framer-1y25tog { order: 0; } .framer-1m0QM .framer-o59qb5 { order: 2; } .framer-1m0QM .framer-3s3257 { order: 1; } .framer-1m0QM .framer-19yuhmu { flex: none; flex-direction: column; height: 500px; width: 100%; } .framer-1m0QM .framer-yh5zsy { flex: none; height: var(--framer-aspect-ratio-supported, 403px); width: 100%; } .framer-1m0QM .framer-1oeqxpv { height: var(--framer-aspect-ratio-supported, 433px); } .framer-1m0QM .framer-1dyd4ui { gap: 40px; order: 3; } .framer-1m0QM .framer-16eyuk6 { align-content: center; align-items: center; flex: none; flex-direction: column; width: 100%; } .framer-1m0QM .framer-1ub6yuq, .framer-1m0QM .framer-fc8lko, .framer-1m0QM .framer-uyglci { align-self: unset; height: 2px; width: 240px; } .framer-1m0QM .framer-143eg6t, .framer-1m0QM .framer-1sxsz05, .framer-1m0QM .framer-q9ax8q, .framer-1m0QM .framer-1l22q, .framer-1m0QM .framer-1f9ciod { padding: 0px; } .framer-1m0QM .framer-tqp8, .framer-1m0QM .framer-14trhzj { align-content: center; align-items: center; flex: none; flex-direction: column; gap: 32px; width: 100%; } .framer-1m0QM .framer-1q6zhf4-container { height: 420px; } .framer-1m0QM .framer-j4jkam { gap: 40px; order: 4; padding: 40px 16px 40px 16px; } .framer-1m0QM .framer-1ggsa0d { gap: 40px; order: 5; padding: 40px 16px 40px 16px; } .framer-1m0QM .framer-1ruvgkf-container { height: 521px; } .framer-1m0QM .framer-apaso6 { order: 6; padding: 40px 16px 40px 16px; } .framer-1m0QM .framer-b5i97e { padding: 40px 16px 40px 16px; } .framer-1m0QM .framer-1oti488 { padding: 32px 40px 32px 40px; width: 327px; } .framer-1m0QM .framer-bx88m6-container { order: 7; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1m0QM .framer-197cxm8, .framer-1m0QM .framer-9aqe35, .framer-1m0QM .framer-wrw3hf, .framer-1m0QM .framer-19yuhmu, .framer-1m0QM .framer-1dyd4ui, .framer-1m0QM .framer-125x6v4, .framer-1m0QM .framer-16eyuk6, .framer-1m0QM .framer-tqp8, .framer-1m0QM .framer-14trhzj, .framer-1m0QM .framer-j4jkam, .framer-1m0QM .framer-1ggsa0d { gap: 0px; } .framer-1m0QM .framer-197cxm8 > *, .framer-1m0QM .framer-19yuhmu > *, .framer-1m0QM .framer-1dyd4ui > *, .framer-1m0QM .framer-j4jkam > *, .framer-1m0QM .framer-1ggsa0d > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-1m0QM .framer-197cxm8 > :first-child, .framer-1m0QM .framer-9aqe35 > :first-child, .framer-1m0QM .framer-wrw3hf > :first-child, .framer-1m0QM .framer-19yuhmu > :first-child, .framer-1m0QM .framer-1dyd4ui > :first-child, .framer-1m0QM .framer-125x6v4 > :first-child, .framer-1m0QM .framer-16eyuk6 > :first-child, .framer-1m0QM .framer-tqp8 > :first-child, .framer-1m0QM .framer-14trhzj > :first-child, .framer-1m0QM .framer-j4jkam > :first-child, .framer-1m0QM .framer-1ggsa0d > :first-child { margin-top: 0px; } .framer-1m0QM .framer-197cxm8 > :last-child, .framer-1m0QM .framer-9aqe35 > :last-child, .framer-1m0QM .framer-wrw3hf > :last-child, .framer-1m0QM .framer-19yuhmu > :last-child, .framer-1m0QM .framer-1dyd4ui > :last-child, .framer-1m0QM .framer-125x6v4 > :last-child, .framer-1m0QM .framer-16eyuk6 > :last-child, .framer-1m0QM .framer-tqp8 > :last-child, .framer-1m0QM .framer-14trhzj > :last-child, .framer-1m0QM .framer-j4jkam > :last-child, .framer-1m0QM .framer-1ggsa0d > :last-child { margin-bottom: 0px; } .framer-1m0QM .framer-9aqe35 > *, .framer-1m0QM .framer-wrw3hf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-1m0QM .framer-125x6v4 > *, .framer-1m0QM .framer-tqp8 > *, .framer-1m0QM .framer-14trhzj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1m0QM .framer-16eyuk6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7131\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vLv5yiYCa\":{\"layout\":[\"fixed\",\"auto\"]},\"vwYWqaFXw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"M511NhmsG\":{\"pattern\":\":M511NhmsG\",\"name\":\"home\"},\"GNUNf5KIy\":{\"pattern\":\":GNUNf5KIy\",\"name\":\"features\"},\"BK2caLBhS\":{\"pattern\":\":BK2caLBhS\",\"name\":\"testimonials\"},\"KQp9Pb9GR\":{\"pattern\":\":KQp9Pb9GR\",\"name\":\"faq\"},\"McpezKvkW\":{\"pattern\":\":McpezKvkW\",\"name\":\"blog\"},\"YR0DQmYWX\":{\"pattern\":\":YR0DQmYWX\",\"name\":\"download\"},\"fngmZrpGh\":{\"pattern\":\":fngmZrpGh\",\"name\":\"download\"},\"NMJKELXZQ\":{\"pattern\":\":NMJKELXZQ\",\"name\":\"download\"},\"uFr4g5QkF\":{\"pattern\":\":uFr4g5QkF\",\"name\":\"download\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-1m0QM\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7131,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Wix Madefor Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYGGZVthv_3HQKgh.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...MenuUserFonts,...CountdownFonts,...TickerFonts,...FAQUserFonts,...SlideshowFonts,...ButtonFonts,...FooterFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7131\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vLv5yiYCa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vwYWqaFXw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"M511NhmsG\\\":{\\\"pattern\\\":\\\":M511NhmsG\\\",\\\"name\\\":\\\"home\\\"},\\\"GNUNf5KIy\\\":{\\\"pattern\\\":\\\":GNUNf5KIy\\\",\\\"name\\\":\\\"features\\\"},\\\"BK2caLBhS\\\":{\\\"pattern\\\":\\\":BK2caLBhS\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"KQp9Pb9GR\\\":{\\\"pattern\\\":\\\":KQp9Pb9GR\\\",\\\"name\\\":\\\"faq\\\"},\\\"McpezKvkW\\\":{\\\"pattern\\\":\\\":McpezKvkW\\\",\\\"name\\\":\\\"blog\\\"},\\\"YR0DQmYWX\\\":{\\\"pattern\\\":\\\":YR0DQmYWX\\\",\\\"name\\\":\\\"download\\\"},\\\"fngmZrpGh\\\":{\\\"pattern\\\":\\\":fngmZrpGh\\\",\\\"name\\\":\\\"download\\\"},\\\"NMJKELXZQ\\\":{\\\"pattern\\\":\\\":NMJKELXZQ\\\",\\\"name\\\":\\\"download\\\"},\\\"uFr4g5QkF\\\":{\\\"pattern\\\":\\\":uFr4g5QkF\\\",\\\"name\\\":\\\"download\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStack", "calculateTimeLeft", "difference", "digitCount", "minTwoDigits", "useForceRender", "_", "set", "ye", "te", "v", "number", "wrapInSpan", "colorValue", "string", "p", "createCountdownString", "timeLeft", "showHours", "showMinutes", "showSeconds", "dayLabel", "hourLabel", "minuteLabel", "secondLabel", "space", "spaceForLabel", "labelType", "labelColor", "days", "u", "l", "hours", "minutes", "seconds", "CountdownTimer", "props", "date", "pickTime", "font", "color", "displayProps", "onComplete", "numberSpace", "labelSpace", "tabularFont", "fontSize", "fontFamily", "fontWeight", "fontStyle", "textAlign", "letterSpacing", "lineHeight", "visible", "setIsVisible", "isCanvas", "RenderTarget", "render", "ue", "int", "emptyString", "timeString", "defaultDate", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1wl0eej", "args", "onTap1qeee6p", "onTap1mqvvmm", "onTap1puxvxp", "onTap1okjrgp", "onTap1qsgt4h", "onTaprz9vmz", "onTapxo83cw", "onTapqxqnye", "onTap1o6om4u", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Link", "RichText2", "SVG", "css", "FramergCiuMgvQi", "withCSS", "gCiuMgvQi_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FAQFonts", "getFonts", "SDfkUGdag_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", "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", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerIYIn9UDV8", "withCSS", "IYIn9UDV8_default", "addPropertyControls", "ControlType", "addFonts", "MenuUserFonts", "getFonts", "gCiuMgvQi_default", "MenuUserWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "CountdownFonts", "CountdownTimer", "MotionAWithOptimizedAppearEffect", "TickerFonts", "Ticker", "ContainerWithOptimizedAppearEffect", "Container", "MotionDivWithFX", "withFX", "FAQUserFonts", "IYIn9UDV8_default", "SlideshowFonts", "Slideshow", "ButtonFonts", "xPKgcMFm9_default", "FooterFonts", "BBnES5NKq_default", "CursorFonts", "gG4av4weY_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transformTemplate2", "transition5", "animation5", "animation6", "transition6", "animation7", "animation8", "transition7", "animation9", "animation10", "transition8", "animation11", "animation12", "transition9", "animation13", "transition10", "animation14", "animation15", "transition11", "transition12", "animation16", "transition13", "animation17", "transition14", "transition15", "transition16", "transition17", "transition18", "animation18", "animation19", "animation20", "transition19", "animation21", "animation22", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "R9NVJt3a2ySJn1ZLIG", "u1F11fZ8yySJn1ZLIG", "KbwV4kuCzySJn1ZLIG", "YahGhj3vgySJn1ZLIG", "idySJn1ZLIG", "R9NVJt3a2mfEv9BIfy", "u1F11fZ8ymfEv9BIfy", "KbwV4kuCzmfEv9BIfy", "YahGhj3vgmfEv9BIfy", "idmfEv9BIfy", "R9NVJt3a2l9HDkaxlu", "u1F11fZ8yl9HDkaxlu", "KbwV4kuCzl9HDkaxlu", "YahGhj3vgl9HDkaxlu", "idl9HDkaxlu", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "ref2", "ref3", "ref4", "ref5", "ref6", "elementId", "useRouteElementId", "elementId1", "isDisplayed", "elementId2", "elementId3", "elementId4", "activeLocaleCode", "useLocaleCode", "isDisplayed1", "elementId5", "ref7", "elementId6", "ref8", "isDisplayed2", "elementId7", "elementId8", "ref9", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "Link", "Image2", "getLoadingLazyAtYPosition", "ChildrenCanSuspend", "vZPFgnvvs_default", "collection", "paginationInfo", "loadMore", "l", "index", "textContent", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "textContent1", "collection2", "paginationInfo2", "loadMore2", "index2", "textContent2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
