{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framer.com/m/material-icons/Home.js@0.0.32", "ssg:https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js", "ssg:https://framerusercontent.com/modules/bfUfhNxK0bWniIuvnUrx/IchPGbbfuQQSYLSHqTTO/adYJKJRMF.js", "ssg:https://framerusercontent.com/modules/AfGGTg5Z9jFBM7e5dfK1/0fm81D1saPbAOJHHMHq9/ncR6rR_5r.js", "ssg:https://framerusercontent.com/modules/gZx5DKRSt3IkCCGoITKh/LAZGrggESEefRfMQk0AW/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "const o=e=>e;let t;var h=e=>(t||(t=o(e.createElement(\"path\",{d:\"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z\"}),\"Home\")),t);export{h as default};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useMemo,useRef}from\"react\";import{addPropertyControls,ControlType,motion,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/material-icons/Home.js@0.0.32\";import{defaultEvents,useIconSelection,getIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const moduleBaseUrl=\"https://framer.com/m/material-icons/\";const icons={AcUnit:15,AccessAlarm:15,AccessAlarms:15,AccessTime:15,AccessTimeFilled:0,Accessibility:7,AccessibilityNew:0,Accessible:15,AccessibleForward:0,AccountBalance:2,AccountBalanceWallet:0,AccountBox:15,AccountCircle:7,AccountTree:15,AdUnits:15,Adb:15,Add:15,AddAPhoto:15,AddAlarm:15,AddAlert:15,AddBox:15,AddBusiness:15,AddCircle:15,AddCircleOutline:0,AddComment:15,AddIcCall:15,AddLink:15,AddLocation:15,AddLocationAlt:2,AddModerator:15,AddPhotoAlternate:0,AddReaction:15,AddRoad:15,AddShoppingCart:2,AddTask:15,AddToDrive:15,AddToHomeScreen:2,AddToPhotos:15,AddToQueue:15,Addchart:15,Adjust:15,AdminPanelSettings:0,Agriculture:15,Air:15,AirlineSeatFlat:2,AirplaneTicket:2,AirplanemodeActive:0,AirplanemodeInactive:0,Airplay:15,AirportShuttle:2,Alarm:15,AlarmAdd:15,AlarmOff:15,AlarmOn:15,Album:15,AlignHorizontalLeft:0,AlignHorizontalRight:0,AlignVerticalBottom:0,AlignVerticalCenter:0,AlignVerticalTop:0,AllInbox:15,AllInclusive:15,AllOut:15,AltRoute:15,AlternateEmail:2,Analytics:15,Anchor:15,Android:15,Animation:15,Announcement:15,Aod:15,Apartment:15,Api:15,AppBlocking:15,AppRegistration:2,AppSettingsAlt:2,Apple:0,Approval:15,Apps:15,Architecture:15,Archive:15,ArrowBack:15,ArrowBackIos:15,ArrowBackIosNew:2,ArrowCircleDown:2,ArrowCircleUp:7,ArrowDownward:7,ArrowDropDown:7,ArrowDropDownCircle:0,ArrowDropUp:15,ArrowForward:15,ArrowForwardIos:2,ArrowLeft:15,ArrowRight:15,ArrowRightAlt:7,ArrowUpward:15,ArtTrack:15,Article:15,AspectRatio:15,Assessment:15,Assignment:15,AssignmentInd:7,AssignmentLate:2,AssignmentReturn:0,AssignmentReturned:0,AssignmentTurnedIn:0,Assistant:15,AssistantDirection:0,AssistantPhoto:2,Atm:15,AttachEmail:15,AttachFile:15,AttachMoney:15,Attachment:15,Attractions:15,Attribution:15,Audiotrack:15,AutoAwesome:15,AutoAwesomeMosaic:0,AutoAwesomeMotion:0,AutoDelete:15,AutoFixHigh:15,AutoFixNormal:7,AutoFixOff:15,AutoGraph:15,AutoStories:15,AutofpsSelect:7,Autorenew:15,AvTimer:15,BabyChangingStation:0,Backpack:15,Backspace:15,Backup:15,BackupTable:15,Badge:15,BakeryDining:15,Balcony:15,Ballot:15,BarChart:15,BatchPrediction:2,Bathroom:15,Bathtub:15,Battery20:15,Battery30:15,Battery50:15,Battery60:15,Battery80:15,Battery90:15,BatteryAlert:15,BatteryCharging20:0,BatteryCharging30:0,BatteryCharging50:0,BatteryCharging60:0,BatteryCharging80:0,BatteryCharging90:0,BatteryChargingFull:0,BatteryFull:15,BatterySaver:15,BatteryStd:15,BatteryUnknown:2,BeachAccess:15,Bed:15,BedroomBaby:15,BedroomChild:15,BedroomParent:7,Bedtime:15,Beenhere:15,Bento:15,BikeScooter:15,Biotech:15,Blender:15,Block:15,Bloodtype:15,Bluetooth:15,BluetoothAudio:2,BluetoothConnected:0,BluetoothDisabled:0,BluetoothDrive:2,BluetoothSearching:0,BlurCircular:15,BlurLinear:15,BlurOff:15,BlurOn:15,Bolt:15,Book:15,BookOnline:15,Bookmark:15,BookmarkAdd:15,BookmarkAdded:7,BookmarkBorder:2,BookmarkRemove:2,Bookmarks:15,BorderAll:15,BorderBottom:15,BorderClear:15,BorderColor:15,BorderHorizontal:0,BorderInner:15,BorderLeft:15,BorderOuter:15,BorderRight:15,BorderStyle:15,BorderTop:15,BorderVertical:2,BrandingWatermark:0,BreakfastDining:2,Brightness1:15,Brightness2:15,Brightness3:15,Brightness4:15,Brightness5:15,Brightness6:15,Brightness7:15,BrightnessAuto:2,BrightnessHigh:2,BrightnessLow:7,BrightnessMedium:0,BrokenImage:15,BrowserNotSupported:0,BrunchDining:15,Brush:15,BubbleChart:15,BugReport:15,Build:15,BuildCircle:15,Bungalow:15,BurstMode:15,BusAlert:15,Business:15,BusinessCenter:2,Cabin:15,Cable:15,Cached:15,Cake:15,Calculate:15,CalendarToday:7,CalendarViewDay:2,CalendarViewMonth:0,CalendarViewWeek:0,Call:15,CallEnd:15,CallMade:15,CallMerge:15,CallMissed:15,CallMissedOutgoing:0,CallReceived:15,CallSplit:15,CallToAction:15,Camera:15,CameraAlt:15,CameraEnhance:7,CameraFront:15,CameraIndoor:15,CameraOutdoor:7,CameraRear:15,CameraRoll:15,Cameraswitch:15,Campaign:15,Cancel:15,CancelPresentation:0,CancelScheduleSend:0,CarRental:15,CarRepair:15,CardGiftcard:15,CardMembership:2,CardTravel:15,Carpenter:15,Cases:15,Casino:15,Cast:15,CastConnected:7,CastForEducation:0,CatchingPokemon:2,Category:15,Celebration:15,CellWifi:15,CenterFocusStrong:0,CenterFocusWeak:2,Chair:15,ChairAlt:15,Chalet:15,ChangeCircle:15,ChangeHistory:7,ChargingStation:2,Chat:15,ChatBubble:15,ChatBubbleOutline:0,Check:15,CheckBox:15,CheckBoxOutlineBlank:0,CheckCircle:15,CheckCircleOutline:0,Checkroom:15,ChevronLeft:15,ChevronRight:15,ChildCare:15,ChildFriendly:7,ChromeReaderMode:0,Circle:15,CircleNotifications:0,Class:15,CleanHands:15,CleaningServices:0,Clear:15,ClearAll:15,Close:15,CloseFullscreen:2,ClosedCaption:7,ClosedCaptionOff:0,Cloud:15,CloudCircle:15,CloudDone:15,CloudDownload:7,CloudOff:15,CloudQueue:15,CloudUpload:15,Code:15,CodeOff:15,Coffee:15,CoffeeMaker:15,Collections:15,CollectionsBookmark:0,ColorLens:15,Colorize:15,Comment:15,CommentBank:15,Commute:15,Compare:15,CompareArrows:7,CompassCalibration:0,Compress:15,Computer:15,ConfirmationNumber:0,ConnectedTv:15,Construction:15,ContactMail:15,ContactPage:15,ContactPhone:15,ContactSupport:2,Contactless:15,Contacts:15,ContentCopy:15,ContentCut:15,ContentPaste:15,ContentPasteOff:2,ControlCamera:7,ControlPoint:15,CopyAll:15,Copyright:15,Coronavirus:15,CorporateFare:7,Cottage:15,Countertops:15,Create:15,CreateNewFolder:2,CreditCard:15,CreditCardOff:7,CreditScore:15,Crib:15,Crop:15,Crop169:15,Crop32:15,Crop54:15,Crop75:15,CropDin:15,CropFree:15,CropLandscape:7,CropOriginal:15,CropPortrait:15,CropRotate:15,CropSquare:15,Dangerous:15,DarkMode:15,Dashboard:15,DashboardCustomize:0,DataSaverOff:15,DataSaverOn:15,DataUsage:15,DateRange:15,Deck:15,Dehaze:15,Delete:15,DeleteForever:7,DeleteOutline:7,DeleteSweep:15,DeliveryDining:2,DepartureBoard:2,Description:15,DesignServices:2,DesktopMac:15,DesktopWindows:2,Details:15,DeveloperBoard:2,DeveloperBoardOff:0,DeveloperMode:7,DeviceHub:15,DeviceThermostat:0,DeviceUnknown:7,Devices:15,DevicesOther:15,DialerSip:15,Dialpad:15,Dining:15,DinnerDining:15,Directions:15,DirectionsBike:2,DirectionsBoat:2,DirectionsBoatFilled:0,DirectionsBus:7,DirectionsBusFilled:0,DirectionsCar:7,DirectionsCarFilled:0,DirectionsOff:7,DirectionsRailway:0,DirectionsRun:7,DirectionsSubway:0,DirectionsTransit:0,DirectionsWalk:2,DirtyLens:15,DisabledByDefault:0,DiscFull:15,Dns:15,DoDisturb:15,DoDisturbAlt:15,DoDisturbOff:15,DoDisturbOn:15,DoNotDisturb:15,DoNotDisturbAlt:2,DoNotDisturbOff:2,DoNotDisturbOn:2,DoNotStep:15,DoNotTouch:15,Dock:15,DocumentScanner:2,Domain:15,DomainDisabled:2,DomainVerification:0,Done:15,DoneAll:15,DoneOutline:15,DonutLarge:15,DonutSmall:15,DoorBack:15,DoorFront:15,DoorSliding:15,Doorbell:15,DoubleArrow:15,DownhillSkiing:2,Download:15,DownloadDone:15,DownloadForOffline:0,Downloading:15,Drafts:15,DragHandle:15,DragIndicator:7,DriveEta:15,DriveFileMove:7,DriveFolderUpload:0,Dry:15,DryCleaning:15,Duo:15,Dvr:15,DynamicFeed:15,DynamicForm:15,EMobiledata:15,Earbuds:15,EarbudsBattery:2,East:15,Eco:15,EdgesensorHigh:2,EdgesensorLow:7,Edit:15,EditAttributes:2,EditLocation:15,EditLocationAlt:2,EditNotifications:0,EditOff:15,EditRoad:15,EightK:15,EightKPlus:15,EightMp:15,EightteenMp:15,Eject:15,Elderly:15,ElectricBike:15,ElectricCar:15,ElectricMoped:7,ElectricRickshaw:0,ElectricScooter:2,ElectricalServices:0,Elevator:15,ElevenMp:15,Email:15,EmojiEmotions:7,EmojiEvents:15,EmojiFlags:15,EmojiFoodBeverage:0,EmojiNature:15,EmojiObjects:15,EmojiPeople:15,EmojiSymbols:15,EmojiTransportation:0,Engineering:15,EnhancedEncryption:0,Equalizer:15,Error:15,ErrorOutline:15,Escalator:15,EscalatorWarning:0,Euro:15,EuroSymbol:15,EvStation:15,Event:15,EventAvailable:2,EventBusy:15,EventNote:15,EventSeat:15,ExitToApp:15,Expand:15,ExpandLess:15,ExpandMore:15,Explicit:15,Explore:15,ExploreOff:15,Exposure:15,Extension:15,ExtensionOff:15,Face:15,FaceRetouchingOff:0,Facebook:15,FactCheck:15,FamilyRestroom:2,FastForward:15,FastRewind:15,Fastfood:15,Favorite:15,FavoriteBorder:2,FeaturedPlayList:0,FeaturedVideo:7,Feed:15,Feedback:15,Female:15,Fence:15,Festival:15,FiberDvr:15,FiberManualRecord:0,FiberNew:15,FiberPin:15,FiberSmartRecord:0,FileCopy:15,FileDownload:15,FileDownloadDone:0,FileDownloadOff:2,FilePresent:15,FileUpload:15,Filter:15,Filter1:15,Filter2:15,Filter3:15,Filter4:15,Filter5:15,Filter6:15,Filter7:15,Filter8:15,Filter9:15,Filter9Plus:15,FilterAlt:15,FilterBAndW:15,FilterCenterFocus:0,FilterDrama:15,FilterFrames:15,FilterHdr:15,FilterList:15,FilterNone:15,FilterTiltShift:2,FilterVintage:7,FindInPage:15,FindReplace:15,Fingerprint:15,FireExtinguisher:0,Fireplace:15,FirstPage:15,FitScreen:15,FitnessCenter:7,FiveG:15,FiveK:15,FiveKPlus:15,FiveMp:15,FivteenMp:15,Flag:15,Flaky:15,Flare:15,FlashAuto:15,FlashOff:15,FlashOn:15,FlashlightOff:7,FlashlightOn:15,Flatware:15,Flight:15,FlightLand:15,FlightTakeoff:7,Flip:15,FlipCameraAndroid:0,FlipCameraIos:7,FlipToBack:15,FlipToFront:15,Flourescent:15,FlutterDash:15,FmdBad:15,FmdGood:15,Folder:15,FolderOpen:15,FolderShared:15,FolderSpecial:7,FollowTheSigns:2,FontDownload:15,FontDownloadOff:2,FoodBank:15,FormatAlignCenter:0,FormatAlignJustify:0,FormatAlignLeft:2,FormatAlignRight:0,FormatBold:15,FormatClear:15,FormatColorFill:2,FormatColorReset:0,FormatColorText:2,FormatIndentDecrease:0,FormatIndentIncrease:0,FormatItalic:15,FormatLineSpacing:0,FormatListBulleted:0,FormatListNumbered:0,FormatPaint:15,FormatQuote:15,FormatShapes:15,FormatSize:15,FormatStrikethrough:0,FormatUnderlined:0,Forum:15,Forward:15,Forward10:15,Forward30:15,Forward5:15,ForwardToInbox:2,Foundation:15,FourGMobiledata:2,FourGPlusMobiledata:0,FourK:15,FourKPlus:15,FourMp:15,FourteenMp:15,FreeBreakfast:7,Fullscreen:15,FullscreenExit:2,Functions:15,GMobiledata:15,GTranslate:15,Gamepad:15,Games:15,Garage:15,Gavel:15,Gesture:15,GetApp:15,Gif:15,GitHub:0,Gite:15,GolfCourse:15,Google:0,GppBad:15,GppGood:15,GppMaybe:15,GpsFixed:15,GpsNotFixed:15,GpsOff:15,Grade:15,Gradient:15,Grading:15,Grain:15,GraphicEq:15,Grass:15,Grid3x3:15,Grid4x4:15,GridGoldenratio:2,GridOff:15,GridOn:15,GridView:15,Group:15,GroupAdd:15,GroupWork:15,Groups:15,HMobiledata:15,HPlusMobiledata:2,Hail:15,Handyman:15,Hardware:15,Hd:15,HdrAuto:15,HdrAutoSelect:7,HdrEnhancedSelect:0,HdrOff:15,HdrOffSelect:15,HdrOn:15,HdrOnSelect:15,HdrPlus:15,HdrStrong:15,HdrWeak:15,Headphones:15,HeadphonesBattery:0,Headset:15,HeadsetMic:15,HeadsetOff:15,Healing:15,HealthAndSafety:2,Hearing:15,HearingDisabled:2,Height:15,Help:15,HelpCenter:15,HelpOutline:15,Hevc:15,HideImage:15,HideSource:15,HighQuality:15,Highlight:15,HighlightAlt:15,HighlightOff:15,Hiking:15,History:15,HistoryEdu:15,HistoryToggleOff:0,HolidayVillage:2,Home:15,HomeMax:15,HomeMini:15,HomeRepairService:0,HomeWork:15,HorizontalRule:2,HorizontalSplit:2,HotTub:15,Hotel:15,HourglassBottom:2,HourglassDisabled:0,HourglassEmpty:2,HourglassFull:7,HourglassTop:15,House:15,HouseSiding:15,Houseboat:15,HowToReg:15,HowToVote:15,Http:15,Https:15,Hvac:15,IceSkating:15,Icecream:15,Image:15,ImageAspectRatio:0,ImageNotSupported:0,ImageSearch:15,ImagesearchRoller:0,ImportContacts:2,ImportExport:15,ImportantDevices:0,Inbox:15,Info:15,Input:15,InsertChart:15,InsertComment:7,InsertDriveFile:2,InsertEmoticon:2,InsertInvitation:0,InsertLink:15,InsertPhoto:15,Insights:15,Instagram:0,Inventory:15,Inventory2:15,InvertColors:15,InvertColorsOff:2,IosShare:15,Iron:15,Iso:15,Kayaking:15,Keyboard:15,KeyboardAlt:15,KeyboardArrowDown:0,KeyboardArrowLeft:0,KeyboardArrowRight:0,KeyboardArrowUp:2,KeyboardBackspace:0,KeyboardCapslock:0,KeyboardHide:15,KeyboardReturn:2,KeyboardTab:15,KeyboardVoice:7,KingBed:15,Kitchen:15,Kitesurfing:15,Label:15,LabelImportant:2,LabelOff:15,Landscape:15,Language:15,Laptop:15,LaptopChromebook:0,LaptopMac:15,LaptopWindows:7,LastPage:15,Launch:15,Layers:15,LayersClear:15,Leaderboard:15,LeakAdd:15,LeakRemove:15,LegendToggle:15,Lens:15,LensBlur:15,LibraryAdd:15,LibraryAddCheck:2,LibraryBooks:15,LibraryMusic:15,Light:15,LightMode:15,Lightbulb:15,LineStyle:15,LineWeight:15,LinearScale:15,Link:15,LinkOff:15,LinkedCamera:15,LinkedIn:0,Liquor:15,List:15,ListAlt:15,LiveHelp:15,LiveTv:15,Living:15,LocalActivity:7,LocalAirport:15,LocalAtm:15,LocalBar:15,LocalCafe:15,LocalCarWash:15,LocalDining:15,LocalDrink:15,LocalFireDepartment:0,LocalFlorist:15,LocalGasStation:2,LocalGroceryStore:0,LocalHospital:7,LocalHotel:15,LocalLaundryService:0,LocalLibrary:15,LocalMall:15,LocalMovies:15,LocalOffer:15,LocalParking:15,LocalPharmacy:7,LocalPhone:15,LocalPizza:15,LocalPlay:15,LocalPolice:15,LocalPostOffice:2,LocalPrintshop:2,LocalSee:15,LocalShipping:7,LocalTaxi:15,LocationCity:15,LocationDisabled:0,LocationOff:15,LocationOn:15,LocationSearching:0,Lock:15,LockClock:15,LockOpen:15,Login:15,Logout:15,Looks:15,Looks3:15,Looks4:15,Looks5:15,Looks6:15,LooksOne:15,LooksTwo:15,Loop:15,Loupe:15,LowPriority:15,Loyalty:15,LteMobiledata:7,LtePlusMobiledata:0,Luggage:15,LunchDining:15,Mail:15,MailOutline:15,Male:15,ManageAccounts:2,ManageSearch:15,Map:15,MapsHomeWork:15,MapsUgc:15,Margin:15,MarkAsUnread:15,MarkChatRead:15,MarkChatUnread:2,MarkEmailRead:7,MarkEmailUnread:2,Markunread:15,MarkunreadMailbox:0,Masks:15,Maximize:15,MediaBluetoothOff:0,MediaBluetoothOn:0,Mediation:15,MedicalServices:2,Medication:15,MeetingRoom:15,Memory:15,Menu:15,MenuBook:15,MenuOpen:15,MergeType:15,Message:15,Mic:15,MicExternalOff:2,MicExternalOn:7,MicNone:15,MicOff:15,Microwave:15,MilitaryTech:15,Minimize:15,MissedVideoCall:2,Mms:15,MobileFriendly:2,MobileOff:15,MobileScreenShare:0,MobiledataOff:7,Mode:15,ModeComment:15,ModeEdit:15,ModeEditOutline:2,ModeNight:15,ModeStandby:15,ModelTraining:7,MonetizationOn:2,Money:15,MoneyOff:15,MoneyOffCsred:7,Monitor:15,MonitorWeight:7,MonochromePhotos:0,Mood:15,MoodBad:15,Moped:15,More:15,MoreHoriz:15,MoreTime:15,MoreVert:15,MotionPhotosAuto:0,MotionPhotosOff:2,Mouse:15,MoveToInbox:15,Movie:15,MovieCreation:7,MovieFilter:15,Moving:15,Mp:15,MultilineChart:2,MultipleStop:15,Museum:15,MusicNote:15,MusicOff:15,MusicVideo:15,MyLocation:15,Nat:15,Nature:15,NaturePeople:15,NavigateBefore:2,NavigateNext:15,Navigation:15,NearMe:15,NearMeDisabled:2,NearbyError:15,NearbyOff:15,NetworkCell:15,NetworkCheck:15,NetworkLocked:7,NetworkWifi:15,NewReleases:15,NextPlan:15,NextWeek:15,Nfc:15,NightShelter:15,Nightlife:15,Nightlight:15,NightlightRound:2,NightsStay:15,NineK:15,NineKPlus:15,NineMp:15,NineteenMp:15,NoAccounts:15,NoBackpack:15,NoCell:15,NoDrinks:15,NoEncryption:15,NoFlash:15,NoFood:15,NoLuggage:15,NoMeals:15,NoMeetingRoom:7,NoPhotography:7,NoSim:15,NoStroller:15,NoTransfer:15,NordicWalking:7,North:15,NorthEast:15,NorthWest:15,NotAccessible:7,NotInterested:7,NotListedLocation:0,NotStarted:15,Note:15,NoteAdd:15,NoteAlt:15,Notes:15,NotificationAdd:2,Notifications:7,NotificationsActive:0,NotificationsNone:0,NotificationsOff:0,NotificationsPaused:0,OfflineBolt:15,OfflinePin:15,OfflineShare:15,OndemandVideo:7,OneK:15,OneKPlus:15,OneKk:15,OnlinePrediction:0,Opacity:15,OpenInBrowser:7,OpenInFull:15,OpenInNew:15,OpenInNewOff:15,OpenWith:15,OtherHouses:15,Outbound:15,Outbox:15,OutdoorGrill:15,Outlet:15,Padding:15,Pages:15,Pageview:15,Paid:15,Palette:15,PanTool:15,Panorama:15,PanoramaFishEye:2,PanoramaHorizontal:0,PanoramaPhotosphere:0,PanoramaVertical:0,PanoramaWideAngle:0,Paragliding:15,Park:15,PartyMode:15,Password:15,Pattern:15,Pause:15,PauseCircle:15,PauseCircleFilled:0,PauseCircleOutline:0,PausePresentation:0,Payment:15,Payments:15,PedalBike:15,Pending:15,PendingActions:2,People:15,PeopleAlt:15,PeopleOutline:7,PermCameraMic:7,PermContactCalendar:0,PermDataSetting:2,PermIdentity:15,PermMedia:15,PermPhoneMsg:15,PermScanWifi:15,Person:15,PersonAdd:15,PersonAddAlt:15,PersonAddAlt1:7,PersonAddDisabled:0,PersonOff:15,PersonOutline:7,PersonPin:15,PersonPinCircle:2,PersonRemove:15,PersonRemoveAlt1:0,PersonSearch:15,PersonalVideo:7,PestControl:15,PestControlRodent:0,Pets:15,Phone:15,PhoneAndroid:15,PhoneCallback:7,PhoneDisabled:7,PhoneEnabled:15,PhoneForwarded:2,PhoneInTalk:15,PhoneIphone:15,PhoneLocked:15,PhoneMissed:15,PhonePaused:15,Phonelink:15,PhonelinkErase:2,PhonelinkLock:7,PhonelinkOff:15,PhonelinkRing:7,PhonelinkSetup:2,Photo:15,PhotoAlbum:15,PhotoCamera:15,PhotoCameraBack:2,PhotoCameraFront:0,PhotoFilter:15,PhotoLibrary:15,PhotoSizeSelectLarge:0,PhotoSizeSelectSmall:0,Piano:15,PianoOff:15,PictureAsPdf:15,PictureInPicture:0,PictureInPictureAlt:0,PieChart:15,PieChartOutline:2,Pin:15,PinDrop:15,Pinterest:0,PivotTableChart:2,Place:15,Plagiarism:15,PlayArrow:15,PlayCircle:15,PlayCircleFilled:0,PlayCircleOutline:0,PlayDisabled:15,PlayForWork:15,PlayLesson:15,PlaylistAdd:15,PlaylistAddCheck:0,PlaylistPlay:15,Plumbing:15,PlusOne:15,Podcasts:15,PointOfSale:15,Policy:15,Poll:15,Pool:15,PortableWifiOff:2,Portrait:15,PostAdd:15,Power:15,PowerInput:15,PowerOff:15,PowerSettingsNew:0,PregnantWoman:7,PresentToAll:15,Preview:15,PriceChange:15,PriceCheck:15,Print:15,PrintDisabled:7,PriorityHigh:15,PrivacyTip:15,Psychology:15,Public:15,PublicOff:15,Publish:15,PublishedWithChanges:0,PushPin:15,QrCode:15,QrCode2:15,QrCodeScanner:7,QueryBuilder:15,QueryStats:15,QuestionAnswer:2,Queue:15,QueueMusic:15,QueuePlayNext:7,Quickreply:15,Quiz:15,RMobiledata:15,Radar:15,Radio:15,RadioButtonChecked:0,RadioButtonUnchecked:0,RailwayAlert:15,RamenDining:15,RateReview:15,RawOff:15,RawOn:15,ReadMore:15,Receipt:15,ReceiptLong:15,RecentActors:15,Recommend:15,RecordVoiceOver:2,Reddit:0,Redeem:15,Redo:15,ReduceCapacity:2,Refresh:15,RememberMe:15,Remove:15,RemoveCircle:15,RemoveCircleOutline:0,RemoveDone:15,RemoveFromQueue:2,RemoveModerator:2,RemoveRedEye:15,RemoveShoppingCart:0,Reorder:15,Repeat:15,RepeatOn:15,RepeatOne:15,RepeatOneOn:15,Replay:15,Replay10:15,Replay30:15,Replay5:15,ReplayCircleFilled:0,Reply:15,ReplyAll:15,Report:15,ReportGmailerrorred:0,ReportOff:15,ReportProblem:7,RequestPage:15,RequestQuote:15,ResetTv:15,RestartAlt:15,Restaurant:15,RestaurantMenu:2,Restore:15,RestoreFromTrash:0,RestorePage:15,Reviews:15,RiceBowl:15,RingVolume:15,Roofing:15,Room:15,RoomPreferences:2,RoomService:15,Rotate90DegreesCcw:0,RotateLeft:15,RotateRight:15,Router:15,Rowing:15,RssFeed:15,Rsvp:15,Rtt:15,Rule:15,RuleFolder:15,RunCircle:15,RunningWithErrors:0,RvHookup:15,SafetyDivider:7,Sailing:15,Sanitizer:15,Satellite:15,Save:15,SaveAlt:15,SavedSearch:15,Savings:15,Scanner:15,ScatterPlot:15,Schedule:15,ScheduleSend:15,Schema:15,School:15,Science:15,Score:15,ScreenLockLandscape:0,ScreenLockPortrait:0,ScreenLockRotation:0,ScreenRotation:2,ScreenSearchDesktop:0,ScreenShare:15,Screenshot:15,Sd:15,SdCard:15,SdCardAlert:15,SdStorage:15,Search:15,SearchOff:15,Security:15,SecurityUpdate:2,SecurityUpdateGood:0,Segment:15,SelectAll:15,SelfImprovement:2,Sell:15,Send:15,SendAndArchive:2,SendToMobile:15,SensorDoor:15,SensorWindow:15,Sensors:15,SensorsOff:15,SentimentNeutral:0,SentimentSatisfied:0,SetMeal:15,Settings:15,SettingsApplications:0,SettingsBluetooth:0,SettingsBrightness:0,SettingsCell:15,SettingsEthernet:0,SettingsInputAntenna:0,SettingsInputHdmi:0,SettingsInputSvideo:0,SettingsOverscan:0,SettingsPhone:7,SettingsPower:7,SettingsRemote:2,SettingsSuggest:2,SettingsVoice:7,SevenK:15,SevenKPlus:15,SevenMp:15,SeventeenMp:15,Share:15,ShareLocation:7,Shield:15,Shop:15,Shop2:15,ShopTwo:15,ShoppingBag:15,ShoppingBasket:2,ShoppingCart:15,ShortText:15,Shortcut:15,ShowChart:15,Shower:15,Shuffle:15,ShuffleOn:15,ShutterSpeed:15,Sick:15,SignalCellular0Bar:0,SignalCellular1Bar:0,SignalCellular2Bar:0,SignalCellular3Bar:0,SignalCellular4Bar:0,SignalCellularAlt:0,SignalCellularNoSim:0,SignalCellularNodata:0,SignalCellularNull:0,SignalCellularOff:0,SignalWifi0Bar:2,SignalWifi1Bar:2,SignalWifi1BarLock:0,SignalWifi2Bar:2,SignalWifi2BarLock:0,SignalWifi3Bar:2,SignalWifi3BarLock:0,SignalWifi4Bar:2,SignalWifi4BarLock:0,SignalWifiBad:7,SignalWifiOff:7,SimCard:15,SimCardAlert:15,SimCardDownload:2,SingleBed:15,Sip:15,SixK:15,SixKPlus:15,SixMp:15,SixteenMp:15,SixtyFps:15,SixtyFpsSelect:2,Skateboarding:7,SkipNext:15,SkipPrevious:15,Sledding:15,Slideshow:15,SlowMotionVideo:2,SmartButton:15,SmartDisplay:15,SmartScreen:15,SmartToy:15,Smartphone:15,SmokeFree:15,SmokingRooms:15,Sms:15,SmsFailed:15,SnippetFolder:7,Snooze:15,Snowboarding:15,Snowmobile:15,Snowshoeing:15,Soap:15,SocialDistance:2,Sort:15,SortByAlpha:15,Source:15,South:15,SouthEast:15,SouthWest:15,Spa:15,SpaceBar:15,Speaker:15,SpeakerGroup:15,SpeakerNotes:15,SpeakerNotesOff:2,SpeakerPhone:15,Speed:15,Spellcheck:15,Splitscreen:15,Sports:15,SportsBar:15,SportsBaseball:2,SportsBasketball:0,SportsCricket:7,SportsEsports:7,SportsFootball:2,SportsGolf:15,SportsHandball:2,SportsHockey:15,SportsKabaddi:7,SportsMma:15,SportsMotorsports:0,SportsRugby:15,SportsScore:15,SportsSoccer:15,SportsTennis:15,SportsVolleyball:0,SquareFoot:15,StackedBarChart:2,StackedLineChart:0,Stairs:15,Star:15,StarBorder:15,StarBorderPurple500:0,StarHalf:15,StarOutline:15,StarPurple500:7,StarRate:15,Stars:15,StayCurrentLandscape:0,StayCurrentPortrait:0,StayPrimaryLandscape:0,StayPrimaryPortrait:0,StickyNote2:15,Stop:15,StopCircle:15,StopScreenShare:2,Storage:15,Store:15,StoreMallDirectory:0,Storefront:15,Storm:15,Straighten:15,Stream:15,Streetview:15,StrikethroughS:2,Stroller:15,Style:15,Subject:15,Subscript:15,Subscriptions:7,Subtitles:15,SubtitlesOff:15,Subway:15,Summarize:15,Superscript:15,SupervisedUserCircle:0,SupervisorAccount:0,Support:15,SupportAgent:15,Surfing:15,SurroundSound:7,SwapCalls:15,SwapHoriz:15,SwapHorizontalCircle:0,SwapVert:15,SwapVerticalCircle:0,Swipe:15,SwitchAccount:7,SwitchCamera:15,SwitchLeft:15,SwitchRight:15,SwitchVideo:15,Sync:15,SyncAlt:15,SyncDisabled:15,SyncProblem:15,SystemSecurityUpdate:0,SystemUpdate:15,SystemUpdateAlt:2,Tab:15,TabUnselected:7,TableChart:15,TableRows:15,TableView:15,Tablet:15,TabletAndroid:7,TabletMac:15,Tag:15,TagFaces:15,TakeoutDining:7,TapAndPlay:15,Tapas:15,Task:15,TaskAlt:15,TaxiAlert:15,Telegram:0,TenMp:15,Terrain:15,TextFields:15,TextFormat:15,TextRotateUp:15,TextRotateVertical:0,TextRotationAngleup:0,TextRotationDown:0,TextRotationNone:0,TextSnippet:15,Textsms:15,Texture:15,TheaterComedy:7,Theaters:15,Thermostat:15,ThermostatAuto:2,ThirteenMp:15,ThirtyFps:15,ThirtyFpsSelect:2,ThreeDRotation:2,ThreeGMobiledata:0,ThreeK:15,ThreeKPlus:15,ThreeMp:15,ThreeP:15,ThreeSixty:15,ThumbDown:15,ThumbDownAlt:15,ThumbDownOffAlt:2,ThumbUp:15,ThumbUpAlt:15,ThumbUpOffAlt:7,ThumbsUpDown:15,TimeToLeave:15,Timelapse:15,Timeline:15,Timer:15,Timer10:15,Timer10Select:7,Timer3:15,Timer3Select:15,TimerOff:15,TimesOneMobiledata:0,Title:15,Toc:15,Today:15,ToggleOff:15,ToggleOn:15,Toll:15,Tonality:15,Topic:15,TouchApp:15,Tour:15,Toys:15,TrackChanges:15,Traffic:15,Train:15,Tram:15,Transform:15,Transgender:15,TransitEnterexit:0,Translate:15,TravelExplore:7,TrendingDown:15,TrendingFlat:15,TrendingUp:15,TripOrigin:15,Try:15,Tty:15,Tune:15,Tungsten:15,TurnedIn:15,TurnedInNot:15,Tv:15,TvOff:15,TwelveMp:15,TwentyFourMp:15,TwentyOneMp:15,TwentyThreeMp:7,TwentyTwoMp:15,TwentyZeroMp:15,Twitter:0,TwoK:15,TwoKPlus:15,TwoMp:15,TwoWheeler:15,Umbrella:15,Unarchive:15,Undo:15,UnfoldLess:15,UnfoldMore:15,Unpublished:15,Unsubscribe:15,Upcoming:15,Update:15,UpdateDisabled:2,Upgrade:15,Upload:15,UploadFile:15,Usb:15,UsbOff:15,Verified:15,VerifiedUser:15,VerticalAlignBottom:0,VerticalAlignCenter:0,VerticalAlignTop:0,VerticalSplit:7,Vibration:15,VideoCall:15,VideoCameraBack:2,VideoCameraFront:0,VideoLabel:15,VideoLibrary:15,VideoSettings:7,VideoStable:15,Videocam:15,VideocamOff:15,VideogameAsset:2,VideogameAssetOff:0,ViewAgenda:15,ViewArray:15,ViewCarousel:15,ViewColumn:15,ViewComfy:15,ViewCompact:15,ViewDay:15,ViewHeadline:15,ViewInAr:15,ViewList:15,ViewModule:15,ViewQuilt:15,ViewSidebar:15,ViewStream:15,ViewWeek:15,Vignette:15,Villa:15,Visibility:15,VisibilityOff:7,VoiceChat:15,VoiceOverOff:15,Voicemail:15,VolumeDown:15,VolumeMute:15,VolumeOff:15,VolumeUp:15,VolunteerActivism:0,VpnKey:15,VpnLock:15,Vrpano:15,Wallpaper:15,Warning:15,WarningAmber:15,Wash:15,Watch:15,WatchLater:15,Water:15,WaterDamage:15,WaterfallChart:2,Waves:15,WbAuto:15,WbCloudy:15,WbIncandescent:2,WbIridescent:15,WbShade:15,WbSunny:15,WbTwilight:15,Wc:15,Web:15,WebAsset:15,WebAssetOff:15,Weekend:15,West:15,WhatsApp:0,Whatshot:15,WheelchairPickup:0,WhereToVote:15,Widgets:15,Wifi:15,WifiCalling:15,WifiCalling3:15,WifiLock:15,WifiOff:15,WifiProtectedSetup:0,WifiTethering:7,WifiTetheringOff:0,Window:15,WineBar:15,Work:15,WorkOff:15,WorkOutline:15,Workspaces:15,WrapText:15,WrongLocation:7,Wysiwyg:15,Yard:15,YouTube:0,YoutubeSearchedFor:0,ZoomIn:15,ZoomOut:15,ZoomOutMap:15};const iconKeys=Object.keys(icons);const weightOptions=[\"Filled\",\"TwoTone\",\"Sharp\",\"Rounded\",\"Outlined\",];const styleKeyOptions={15:[...weightOptions],7:[\"Filled\",\"TwoTone\",\"Sharp\",\"Rounded\"],2:[\"Filled\",\"Sharp\"]};const styleOptionPropKeys=Object.keys(styleKeyOptions).map(optionKey=>`iconStyle${optionKey}`);const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * MATERIAL\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored,style}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Get props to use for deps array\nconst styleOptionProps=styleOptionPropKeys.map(prop=>props[prop]);// Get style of icon\nconst iconStyle=useMemo(()=>{const iconStyleKey=icons[iconKey];if(!iconStyleKey)return;const activeStyle=props[`iconStyle${iconStyleKey}`];if(activeStyle===\"Filled\")return;return activeStyle;},[...styleOptionProps]);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// If bad search or doesn't exist, show null state\nif(typeof icons[iconKey]!==\"number\"){setSelectedIcon(null);return;}// Get the selected module\ntry{const style=iconStyle?iconStyle:\"\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}${style}.js@0.0.32`;// console.log(iconModuleUrl)\nconst module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey,...styleOptionProps]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined,...style},focusable:\"false\",viewBox:\"0 0 24 24\",color:color,children:SelectedIcon}):emptyState});}Icon.displayName=\"Material\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,weight:\"Filled\",mirrored:false};function hideStyleOptions(props,styleOptions){const{selectByList,iconSearch,iconSelection}=props;const styleOptionsNumber=parseInt(styleOptions);const name=getIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const icon=icons[name];if(!icon||styleOptionsNumber===0)return true;if(icon===styleOptionsNumber)return false;else return true;}addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Material site](https://fonts.google.com/icons)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...Object.keys(styleKeyOptions).reduce((result,optionKey)=>{result[`iconStyle${optionKey}`]={type:ControlType.Enum,title:\"Style\",defaultValue:\"Filled\",options:styleKeyOptions[optionKey],hidden:props=>hideStyleOptions(props,optionKey)};return result;},{}),...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Material.map", "// Generated by Framer (2b47498)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const enabledGestures={GbWVlAcfQ:{hover:true}};const serializationHash=\"framer-m3DKl\";const variantClassNames={GbWVlAcfQ:\"framer-v-12gz4be\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:33,delay:0,mass:1,stiffness:465,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,id,width,...props})=>{return{...props,ZJGN9TjpW:click!==null&&click!==void 0?click:props.ZJGN9TjpW};};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,ZJGN9TjpW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"GbWVlAcfQ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1iyyedm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(ZJGN9TjpW){const res=await ZJGN9TjpW(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-12gz4be\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"GbWVlAcfQ\",onTap:onTap1iyyedm,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-61530d49-7abf-4618-92db-3e5d64778ecb, rgb(147, 50, 224))\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,...style},variants:{\"GbWVlAcfQ-hover\":{backgroundColor:\"rgb(127, 41, 196)\"}},...addPropertyOverrides({\"GbWVlAcfQ-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10gqa08-container\",layoutDependency:layoutDependency,layoutId:\"e3z_dnIww-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"PlayCircle\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"e3z_dnIww\",layoutId:\"e3z_dnIww\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Watch a demo\"})}),className:\"framer-146fhzh\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"BIr05Voai\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-m3DKl.framer-uwr5fo, .framer-m3DKl .framer-uwr5fo { display: block; }\",\".framer-m3DKl.framer-12gz4be { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 25px 0px 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-m3DKl .framer-10gqa08-container { flex: none; height: 65px; position: relative; width: 65px; }\",\".framer-m3DKl .framer-146fhzh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-m3DKl.framer-12gz4be { gap: 0px; } .framer-m3DKl.framer-12gz4be > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-m3DKl.framer-12gz4be > :first-child { margin-left: 0px; } .framer-m3DKl.framer-12gz4be > :last-child { margin-right: 0px; } }\",\".framer-m3DKl.framer-v-12gz4be.hover.framer-12gz4be { padding: 0px 0px 0px 25px; }\",\".framer-m3DKl.framer-v-12gz4be.hover .framer-10gqa08-container { order: 1; }\",\".framer-m3DKl.framer-v-12gz4be.hover .framer-146fhzh { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 65\n * @framerIntrinsicWidth 209\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"eWHFnjuie\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ZJGN9TjpW\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameradYJKJRMF=withCSS(Component,css,\"framer-m3DKl\");export default FrameradYJKJRMF;FrameradYJKJRMF.displayName=\"Play Button\";FrameradYJKJRMF.defaultProps={height:65,width:209};addPropertyControls(FrameradYJKJRMF,{ZJGN9TjpW:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FrameradYJKJRMF,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameradYJKJRMF\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eWHFnjuie\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"ZJGN9TjpW\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"65\",\"framerIntrinsicWidth\":\"209\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./adYJKJRMF.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import PlayButton from\"https://framerusercontent.com/modules/bfUfhNxK0bWniIuvnUrx/IchPGbbfuQQSYLSHqTTO/adYJKJRMF.js\";const PlayButtonFonts=getFonts(PlayButton);const YouTubeFonts=getFonts(YouTube);const cycleOrder=[\"O18NOG_M_\",\"runsfQFdL\",\"ayt0ehMmI\",\"wPRLyh3Gs\",\"bCUUZEIJE\",\"voV0FiZwo\"];const serializationHash=\"framer-hne3a\";const variantClassNames={ayt0ehMmI:\"framer-v-us6vyo\",bCUUZEIJE:\"framer-v-1ruv8r7\",O18NOG_M_:\"framer-v-1auwa6\",runsfQFdL:\"framer-v-1i487oe\",voV0FiZwo:\"framer-v-1oqfivd\",wPRLyh3Gs:\"framer-v-1n7htiw\"};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={\"Paused (Desktop)\":\"O18NOG_M_\",\"Paused (Mobile)\":\"bCUUZEIJE\",\"Paused (Tablet)\":\"runsfQFdL\",\"Play (Desktop)\":\"ayt0ehMmI\",\"Play (Mobile)\":\"voV0FiZwo\",\"Play (Tablet)\":\"wPRLyh3Gs\"};const getProps=({click,height,id,width,...props})=>{return{...props,NDh_q2j7g:click??props.NDh_q2j7g,variant:humanReadableVariantMap[props.variant]??props.variant??\"O18NOG_M_\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,NDh_q2j7g,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"O18NOG_M_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap490slt=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(NDh_q2j7g){const res=await NDh_q2j7g(...args);if(res===false)return false;}});const ZJGN9TjpW1m7vuza=activeVariantCallback(async(...args)=>{setVariant(\"ayt0ehMmI\");});const ZJGN9TjpWlx569k=activeVariantCallback(async(...args)=>{setVariant(\"wPRLyh3Gs\");});const ZJGN9TjpWcuqkpt=activeVariantCallback(async(...args)=>{setVariant(\"voV0FiZwo\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"ayt0ehMmI\",\"wPRLyh3Gs\",\"voV0FiZwo\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"ayt0ehMmI\",\"wPRLyh3Gs\",\"voV0FiZwo\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1auwa6\",className,classNames),\"data-framer-name\":\"Paused (Desktop)\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"O18NOG_M_\",onTap:onTap490slt,ref:refBinding,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({ayt0ehMmI:{\"data-framer-name\":\"Play (Desktop)\",\"data-highlight\":undefined,onTap:undefined},bCUUZEIJE:{\"data-framer-name\":\"Paused (Mobile)\"},runsfQFdL:{\"data-framer-name\":\"Paused (Tablet)\"},voV0FiZwo:{\"data-framer-name\":\"Play (Mobile)\",\"data-highlight\":undefined,onTap:undefined},wPRLyh3Gs:{\"data-framer-name\":\"Play (Tablet)\",\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,y:(componentViewport?.y||0)+((componentViewport?.height||626)*.5000000000000002-32.5),...addPropertyOverrides({bCUUZEIJE:{y:(componentViewport?.y||0)+((componentViewport?.height||206)*.5000000000000002-32.5)},runsfQFdL:{y:(componentViewport?.y||0)+((componentViewport?.height||419)*.5000000000000002-32.5)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10m2ikl-container\",layoutDependency:layoutDependency,layoutId:\"dVTf1hnfu-container\",nodeId:\"dVTf1hnfu\",rendersWithMotion:true,scopeId:\"ncR6rR_5r\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PlayButton,{height:\"100%\",id:\"dVTf1hnfu\",layoutId:\"dVTf1hnfu\",width:\"100%\",ZJGN9TjpW:ZJGN9TjpW1m7vuza,...addPropertyOverrides({bCUUZEIJE:{ZJGN9TjpW:ZJGN9TjpWcuqkpt},runsfQFdL:{ZJGN9TjpW:ZJGN9TjpWlx569k}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gp1513-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DYknOILeY-container\",nodeId:\"DYknOILeY\",rendersWithMotion:true,scopeId:\"ncR6rR_5r\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"DYknOILeY\",isMixedBorderRadius:false,isRed:false,layoutId:\"DYknOILeY\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=dZhLKO6RBhI\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||626)-0-626)/2)),pixelHeight:764,pixelWidth:1076,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/Dx1uRM0vYHXRJT0VGPGTckgc3g.jpg\"},className:\"framer-13orvpf\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"vliyO_7eD\",style:{\"--border-bottom-width\":\"4px\",\"--border-color\":\"rgba(62, 54, 69, 0.12)\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"4px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({bCUUZEIJE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||206)-0-((componentViewport?.height||206)-0)*1)/2)),pixelHeight:764,pixelWidth:1076,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/Dx1uRM0vYHXRJT0VGPGTckgc3g.jpg\"}},runsfQFdL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||419)-0-((componentViewport?.height||419)-0)*1)/2)),pixelHeight:764,pixelWidth:1076,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/Dx1uRM0vYHXRJT0VGPGTckgc3g.jpg\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ev16qg\",layoutDependency:layoutDependency,layoutId:\"v2bENT3pI\",style:{background:\"radial-gradient(50% 50% at 50.4% 50.8%, rgba(255, 255, 255, 0.86) 0%, rgba(171, 171, 171, 0) 100%)\"}})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hne3a.framer-1b2e785, .framer-hne3a .framer-1b2e785 { display: block; }\",\".framer-hne3a.framer-1auwa6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-hne3a .framer-10m2ikl-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-hne3a .framer-gp1513-container { flex: none; height: 663px; position: relative; width: 1000px; }\",\".framer-hne3a .framer-13orvpf { flex: none; height: 626px; overflow: hidden; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hne3a .framer-1ev16qg { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hne3a.framer-1auwa6 { gap: 0px; } .framer-hne3a.framer-1auwa6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hne3a.framer-1auwa6 > :first-child { margin-left: 0px; } .framer-hne3a.framer-1auwa6 > :last-child { margin-right: 0px; } }\",\".framer-hne3a.framer-v-1i487oe.framer-1auwa6 { height: 419px; width: 670px; }\",\".framer-hne3a.framer-v-1i487oe .framer-13orvpf, .framer-hne3a.framer-v-1ruv8r7 .framer-13orvpf { height: 100%; width: 100%; }\",\".framer-hne3a.framer-v-1i487oe .framer-1ev16qg { aspect-ratio: 1.5990453460620524 / 1; height: var(--framer-aspect-ratio-supported, 419px); }\",\".framer-hne3a.framer-v-us6vyo.framer-1auwa6 { cursor: unset; height: 624px; width: 1000px; }\",\".framer-hne3a.framer-v-us6vyo .framer-gp1513-container, .framer-hne3a.framer-v-1n7htiw .framer-gp1513-container, .framer-hne3a.framer-v-1oqfivd .framer-gp1513-container { height: 100%; order: 1; width: 100%; }\",\".framer-hne3a.framer-v-1n7htiw.framer-1auwa6 { cursor: unset; height: 419px; width: 670px; }\",\".framer-hne3a.framer-v-1ruv8r7.framer-1auwa6 { height: 206px; width: 310px; }\",\".framer-hne3a.framer-v-1oqfivd.framer-1auwa6 { cursor: unset; height: 206px; width: 310px; }\",'.framer-hne3a[data-border=\"true\"]::after, .framer-hne3a [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 626\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"runsfQFdL\":{\"layout\":[\"fixed\",\"fixed\"]},\"ayt0ehMmI\":{\"layout\":[\"fixed\",\"fixed\"]},\"wPRLyh3Gs\":{\"layout\":[\"fixed\",\"fixed\"]},\"bCUUZEIJE\":{\"layout\":[\"fixed\",\"fixed\"]},\"voV0FiZwo\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"NDh_q2j7g\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerncR6rR_5r=withCSS(Component,css,\"framer-hne3a\");export default FramerncR6rR_5r;FramerncR6rR_5r.displayName=\"Demo Video\";FramerncR6rR_5r.defaultProps={height:626,width:1e3};addPropertyControls(FramerncR6rR_5r,{variant:{options:[\"O18NOG_M_\",\"runsfQFdL\",\"ayt0ehMmI\",\"wPRLyh3Gs\",\"bCUUZEIJE\",\"voV0FiZwo\"],optionTitles:[\"Paused (Desktop)\",\"Paused (Tablet)\",\"Play (Desktop)\",\"Play (Tablet)\",\"Paused (Mobile)\",\"Play (Mobile)\"],title:\"Variant\",type:ControlType.Enum},NDh_q2j7g:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerncR6rR_5r,[{explicitInter:true,fonts:[]},...PlayButtonFonts,...YouTubeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerncR6rR_5r\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"runsfQFdL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ayt0ehMmI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wPRLyh3Gs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bCUUZEIJE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"voV0FiZwo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1000\",\"framerIntrinsicHeight\":\"626\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"NDh_q2j7g\\\":\\\"click\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ncR6rR_5r.map", "// Generated by Framer (2797bee)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Audio}from\"https://framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/o1XmI0MqgEIlgDIKXNDR/Audio.js\";import Testimonial from\"#framer/local/canvasComponent/fXmKzrF8p/fXmKzrF8p.js\";import TopNav from\"#framer/local/canvasComponent/I32Xy9bX9/I32Xy9bX9.js\";import LogoWall from\"#framer/local/canvasComponent/ihIpnJEW0/ihIpnJEW0.js\";import FAQItem from\"#framer/local/canvasComponent/kQ4Z2B8UB/kQ4Z2B8UB.js\";import DemoVideo from\"#framer/local/canvasComponent/ncR6rR_5r/ncR6rR_5r.js\";import CompareTabs from\"#framer/local/canvasComponent/rSkDP9SYH/rSkDP9SYH.js\";import FeatureGridItem from\"#framer/local/canvasComponent/TzvX83uUL/TzvX83uUL.js\";import Footer from\"#framer/local/canvasComponent/vefrKbbuN/vefrKbbuN.js\";import{RosieOnboarding}from\"#framer/local/codeFile/HtRjP7M/OnboardingButton.js\";import*as sharedStyle4 from\"#framer/local/css/dOwkoiNTa/dOwkoiNTa.js\";import*as sharedStyle1 from\"#framer/local/css/nbqj9cr5a/nbqj9cr5a.js\";import*as sharedStyle3 from\"#framer/local/css/nNx0bDG0I/nNx0bDG0I.js\";import*as sharedStyle from\"#framer/local/css/rHEmVseCI/rHEmVseCI.js\";import*as sharedStyle2 from\"#framer/local/css/v84N5jwsk/v84N5jwsk.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopNavFonts=getFonts(TopNav);const ContainerWithFX=withFX(Container);const RosieOnboardingFonts=getFonts(RosieOnboarding);const AudioFonts=getFonts(Audio);const LogoWallFonts=getFonts(LogoWall);const TestimonialFonts=getFonts(Testimonial);const FeatureGridItemFonts=getFonts(FeatureGridItem);const CompareTabsFonts=getFonts(CompareTabs);const DemoVideoFonts=getFonts(DemoVideo);const FAQItemFonts=getFonts(FAQItem);const FooterFonts=getFonts(Footer);const breakpoints={dEjOisUXs:\"(min-width: 1200px) and (max-width: 1399px)\",iJrwxxHjE:\"(min-width: 810px) and (max-width: 1199px)\",IngA6Q_oJ:\"(min-width: 1400px)\",LP2GwFrCi:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-AdV06\";const variantClassNames={dEjOisUXs:\"framer-v-1itnppb\",iJrwxxHjE:\"framer-v-1mk1m83\",IngA6Q_oJ:\"framer-v-jijsub\",LP2GwFrCi:\"framer-v-4rcq6i\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition1={damping:30,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"IngA6Q_oJ\",Desktop:\"dEjOisUXs\",Phone:\"LP2GwFrCi\",Tablet:\"iJrwxxHjE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"dEjOisUXs\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"LP2GwFrCi\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"iJrwxxHjE\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"dEjOisUXs\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1itnppb\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{__framer__styleAppearEffectEnabled:undefined},LP2GwFrCi:{__framer__styleAppearEffectEnabled:undefined,transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h8kga6-container\",layoutScroll:true,nodeId:\"C9CjuGAI3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{variant:\"dedwB0RAd\"},LP2GwFrCi:{style:{width:\"100%\"},variant:\"dedwB0RAd\"}},children:/*#__PURE__*/_jsx(TopNav,{height:\"100%\",id:\"C9CjuGAI3\",layoutId:\"C9CjuGAI3\",SlWK7rRBj:true,style:{height:\"100%\",width:\"100%\"},variant:\"B6Io4pjFu\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14tqaf4\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1es05it\",\"data-framer-name\":\"Container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d8n41n hidden-4rcq6i\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:`max(${componentViewport?.width||\"100vw\"} - 140px, 1px)`,y:(componentViewport?.y||0)+0+0+20+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l8o809-container hidden-1mk1m83\",nodeId:\"Pul9kKS5h\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TopNav,{height:\"100%\",id:\"Pul9kKS5h\",layoutId:\"Pul9kKS5h\",SlWK7rRBj:true,style:{height:\"100%\",width:\"100%\"},variant:\"Fwk7Gdipd\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12x1m9f\",\"data-framer-name\":\"BG Gradient\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-u7oj2n\",\"data-framer-name\":\"Ellipse 32\",style:{rotate:-23}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-170ugod\",\"data-framer-name\":\"Ellipse 30\",style:{rotate:-7}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o0obj3\",\"data-framer-name\":\"Ellipse 31\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xn5evr\",\"data-framer-name\":\"Ellipse 34\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-30z5px\",\"data-framer-name\":\"Ellipse 35\",style:{rotate:-9}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xz8bub\",\"data-framer-name\":\"Ellipse 33\",style:{rotate:-5}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-deec4h\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jkq3z4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jp5jko\",\"data-framer-name\":\"Intro\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fnxnw8\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"AI answering service for your business calls.\"})})},IngA6Q_oJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"AI answering service for your business calls.\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"AI answering service for your business calls.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"AI answering service for your business calls.\"})}),className:\"framer-156n793\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-43313428-b24e-4fae-8217-2a82a336af64, rgba(42, 20, 60, 0.65))\"},children:\"10x better than voicemail. 10x cheaper than an answering service. Grow your business while Rosie answers your calls, helps set appointments, and sends you the messages.\"})})},IngA6Q_oJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-43313428-b24e-4fae-8217-2a82a336af64, rgba(42, 20, 60, 0.65))\"},children:\"10x better than voicemail. 10x cheaper than an answering service. Grow your business while Rosie answers your calls, helps set appointments, and sends you the messages.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-43313428-b24e-4fae-8217-2a82a336af64, rgba(42, 20, 60, 0.65))\"},children:\"10x better than voicemail. 10x cheaper than an answering service. Grow your business while Rosie answers your calls, helps set appointments, and sends you the messages.\"})}),className:\"framer-2fazum\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8bbu3z\",\"data-framer-name\":\"CTA\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gqnhn3-container\",isAuthoredByUser:true,nodeId:\"ajmK6ssWc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LP2GwFrCi:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(RosieOnboarding,{buttonLabel:\"Get Started for Free\",buttonSize:\"lg\",buttonType:\"primary\",hasShadow:true,height:\"100%\",id:\"ajmK6ssWc\",layoutId:\"ajmK6ssWc\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-43313428-b24e-4fae-8217-2a82a336af64, rgba(42, 20, 60, 0.5))\"},children:\"First 25 minutes completely free. No credit card required to start.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-43313428-b24e-4fae-8217-2a82a336af64, rgba(42, 20, 60, 0.5))\"},children:\"First 25 minutes completely free. No credit card required to start.\"})}),className:\"framer-1dkk1ut\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+50+0+0+-182.9+0+642),pixelHeight:1050,pixelWidth:960,sizes:\"438.8571px\",src:\"https://framerusercontent.com/images/mijIkSEnfVaJbfGXtXajEwy0.png\",srcSet:\"https://framerusercontent.com/images/mijIkSEnfVaJbfGXtXajEwy0.png?scale-down-to=1024 936w,https://framerusercontent.com/images/mijIkSEnfVaJbfGXtXajEwy0.png 960w\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+0+80+0+5.1+9.0625),pixelHeight:1050,pixelWidth:960,sizes:\"500px\",src:\"https://framerusercontent.com/images/mijIkSEnfVaJbfGXtXajEwy0.png\",srcSet:\"https://framerusercontent.com/images/mijIkSEnfVaJbfGXtXajEwy0.png?scale-down-to=1024 936w,https://framerusercontent.com/images/mijIkSEnfVaJbfGXtXajEwy0.png 960w\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+45+0+0+0+0+633),pixelHeight:1050,pixelWidth:960,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1500px)`,src:\"https://framerusercontent.com/images/mijIkSEnfVaJbfGXtXajEwy0.png\",srcSet:\"https://framerusercontent.com/images/mijIkSEnfVaJbfGXtXajEwy0.png?scale-down-to=1024 936w,https://framerusercontent.com/images/mijIkSEnfVaJbfGXtXajEwy0.png 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+0+80+0+0+75),pixelHeight:1050,pixelWidth:960,sizes:\"405.4857px\",src:\"https://framerusercontent.com/images/mijIkSEnfVaJbfGXtXajEwy0.png\",srcSet:\"https://framerusercontent.com/images/mijIkSEnfVaJbfGXtXajEwy0.png?scale-down-to=1024 936w,https://framerusercontent.com/images/mijIkSEnfVaJbfGXtXajEwy0.png 960w\"},className:\"framer-98tjtz\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ozia2v\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"See Rosie in Action...\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"See Rosie in Action...\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"See Rosie in Action...\"})}),className:\"framer-durwv\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kn3u8p\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16kt11q\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+50+0+0+1024.1+0+62.8+0+0+0+0),pixelHeight:224,pixelWidth:560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 92px) / 2, 50px)`,src:\"https://framerusercontent.com/images/lcUztdSqQw8Fqx3ZaS5Lkt2vwAA.png\",srcSet:\"https://framerusercontent.com/images/lcUztdSqQw8Fqx3ZaS5Lkt2vwAA.png?scale-down-to=512 512w,https://framerusercontent.com/images/lcUztdSqQw8Fqx3ZaS5Lkt2vwAA.png 560w\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+0+80+0+545.1+0+62.8+0+0+0+0),pixelHeight:224,pixelWidth:560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 196px) / 4, 50px)`,src:\"https://framerusercontent.com/images/lcUztdSqQw8Fqx3ZaS5Lkt2vwAA.png\",srcSet:\"https://framerusercontent.com/images/lcUztdSqQw8Fqx3ZaS5Lkt2vwAA.png?scale-down-to=512 512w,https://framerusercontent.com/images/lcUztdSqQw8Fqx3ZaS5Lkt2vwAA.png 560w\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+45+0+0+694+0+62.8+20+0+0+0),pixelHeight:224,pixelWidth:560,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 40px, 50px)`,src:\"https://framerusercontent.com/images/lcUztdSqQw8Fqx3ZaS5Lkt2vwAA.png\",srcSet:\"https://framerusercontent.com/images/lcUztdSqQw8Fqx3ZaS5Lkt2vwAA.png?scale-down-to=512 512w,https://framerusercontent.com/images/lcUztdSqQw8Fqx3ZaS5Lkt2vwAA.png 560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+0+80+0+578.5+0+62.8+0+0+0+0),pixelHeight:224,pixelWidth:560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 196px) / 4, 50px)`,src:\"https://framerusercontent.com/images/lcUztdSqQw8Fqx3ZaS5Lkt2vwAA.png\",srcSet:\"https://framerusercontent.com/images/lcUztdSqQw8Fqx3ZaS5Lkt2vwAA.png?scale-down-to=512 512w,https://framerusercontent.com/images/lcUztdSqQw8Fqx3ZaS5Lkt2vwAA.png 560w\"},className:\"framer-1jh14ii\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iacde7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Requesting a move-out cleaning service.\"})}),className:\"framer-1rvcobk\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16xoy94\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a26rjb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"S65M2lHAk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(255, 255, 255, 0.5)\",borderRadius:40,bottomLeftRadius:40,bottomRightRadius:40,font:{},gap:12,height:\"100%\",id:\"S65M2lHAk\",isMixedBorderRadius:false,layoutId:\"S65M2lHAk\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,pauseOnExit:true,playing:false,progress:0,progressColor:\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\",showPlayPause:true,showTime:false,showTrack:true,srcType:\"URL\",srcUrl:\"https://descriptusercontent.com/published/427801bc-cdc9-45dd-a72d-dcac6c3b3db4/original.m4a\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:40,topRightRadius:40,trackColor:\"var(--token-e6bbc88f-8309-4c72-9386-6a0e10fafaf0, rgb(218, 183, 251))\",volume:70,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n9imkc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+50+0+0+1024.1+0+62.8+0+0+0+0),pixelHeight:224,pixelWidth:560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 92px) / 2, 50px)`,src:\"https://framerusercontent.com/images/N9oTWLhwzahZY16gOlhxJwzp3CE.png\",srcSet:\"https://framerusercontent.com/images/N9oTWLhwzahZY16gOlhxJwzp3CE.png?scale-down-to=512 512w,https://framerusercontent.com/images/N9oTWLhwzahZY16gOlhxJwzp3CE.png 560w\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+0+80+0+545.1+0+62.8+0+0+0+0),pixelHeight:224,pixelWidth:560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 196px) / 4, 50px)`,src:\"https://framerusercontent.com/images/N9oTWLhwzahZY16gOlhxJwzp3CE.png\",srcSet:\"https://framerusercontent.com/images/N9oTWLhwzahZY16gOlhxJwzp3CE.png?scale-down-to=512 512w,https://framerusercontent.com/images/N9oTWLhwzahZY16gOlhxJwzp3CE.png 560w\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+45+0+0+694+0+62.8+20+299+0+0),pixelHeight:224,pixelWidth:560,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 40px, 50px)`,src:\"https://framerusercontent.com/images/N9oTWLhwzahZY16gOlhxJwzp3CE.png\",srcSet:\"https://framerusercontent.com/images/N9oTWLhwzahZY16gOlhxJwzp3CE.png?scale-down-to=512 512w,https://framerusercontent.com/images/N9oTWLhwzahZY16gOlhxJwzp3CE.png 560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+0+80+0+578.5+0+62.8+0+0+0+0),pixelHeight:224,pixelWidth:560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 196px) / 4, 50px)`,src:\"https://framerusercontent.com/images/N9oTWLhwzahZY16gOlhxJwzp3CE.png\",srcSet:\"https://framerusercontent.com/images/N9oTWLhwzahZY16gOlhxJwzp3CE.png?scale-down-to=512 512w,https://framerusercontent.com/images/N9oTWLhwzahZY16gOlhxJwzp3CE.png 560w\"},className:\"framer-1wh03ov\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f0hp03\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Scheduling a haircut appointment.\"})}),className:\"framer-1xhq8bp\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18nmyd3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q55wac-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NfWabjfG_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(255, 255, 255, 0.5)\",borderRadius:40,bottomLeftRadius:40,bottomRightRadius:40,font:{},gap:12,height:\"100%\",id:\"NfWabjfG_\",isMixedBorderRadius:false,layoutId:\"NfWabjfG_\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,pauseOnExit:true,playing:false,progress:0,progressColor:\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\",showPlayPause:true,showTime:false,showTrack:true,srcType:\"URL\",srcUrl:\"https://descriptusercontent.com/published/418ad922-80f2-49f7-ad28-8abb88202c43/original.m4a\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:40,topRightRadius:40,trackColor:\"var(--token-e6bbc88f-8309-4c72-9386-6a0e10fafaf0, rgb(218, 183, 251))\",volume:40,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-st3xqd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+50+0+0+1024.1+0+62.8+0+299+0+0),pixelHeight:224,pixelWidth:560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 92px) / 2, 50px)`,src:\"https://framerusercontent.com/images/2GRWfUdZuHDlrQ0FRcUQu2tBg88.png\",srcSet:\"https://framerusercontent.com/images/2GRWfUdZuHDlrQ0FRcUQu2tBg88.png?scale-down-to=512 512w,https://framerusercontent.com/images/2GRWfUdZuHDlrQ0FRcUQu2tBg88.png 560w\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+0+80+0+545.1+0+62.8+0+0+0+0),pixelHeight:224,pixelWidth:560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 196px) / 4, 50px)`,src:\"https://framerusercontent.com/images/2GRWfUdZuHDlrQ0FRcUQu2tBg88.png\",srcSet:\"https://framerusercontent.com/images/2GRWfUdZuHDlrQ0FRcUQu2tBg88.png?scale-down-to=512 512w,https://framerusercontent.com/images/2GRWfUdZuHDlrQ0FRcUQu2tBg88.png 560w\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+45+0+0+694+0+62.8+20+598+0+0),pixelHeight:224,pixelWidth:560,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 40px, 50px)`,src:\"https://framerusercontent.com/images/2GRWfUdZuHDlrQ0FRcUQu2tBg88.png\",srcSet:\"https://framerusercontent.com/images/2GRWfUdZuHDlrQ0FRcUQu2tBg88.png?scale-down-to=512 512w,https://framerusercontent.com/images/2GRWfUdZuHDlrQ0FRcUQu2tBg88.png 560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+0+80+0+578.5+0+62.8+0+0+0+0),pixelHeight:224,pixelWidth:560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 196px) / 4, 50px)`,src:\"https://framerusercontent.com/images/2GRWfUdZuHDlrQ0FRcUQu2tBg88.png\",srcSet:\"https://framerusercontent.com/images/2GRWfUdZuHDlrQ0FRcUQu2tBg88.png?scale-down-to=512 512w,https://framerusercontent.com/images/2GRWfUdZuHDlrQ0FRcUQu2tBg88.png 560w\"},className:\"framer-152en0n\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rkusf7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Requesting a hot tub cleaning quote.\"})}),className:\"framer-1cxx7xr\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-smcprn\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hcztq7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"V03kw63V5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(255, 255, 255, 0.5)\",borderRadius:40,bottomLeftRadius:40,bottomRightRadius:40,font:{},gap:12,height:\"100%\",id:\"V03kw63V5\",isMixedBorderRadius:false,layoutId:\"V03kw63V5\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,pauseOnExit:true,playing:false,progress:0,progressColor:\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\",showPlayPause:true,showTime:false,showTrack:true,srcType:\"URL\",srcUrl:\"https://descriptusercontent.com/published/e2434168-26c1-4779-9742-b8df0e7e90f9/original.m4a\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:40,topRightRadius:40,trackColor:\"var(--token-e6bbc88f-8309-4c72-9386-6a0e10fafaf0, rgb(218, 183, 251))\",volume:40,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2qalpz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+50+0+0+1024.1+0+62.8+0+299+0+0),pixelHeight:224,pixelWidth:560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 92px) / 2, 50px)`,src:\"https://framerusercontent.com/images/ezzOzInnXoqsXOcjf6hD0x91Q.png\",srcSet:\"https://framerusercontent.com/images/ezzOzInnXoqsXOcjf6hD0x91Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/ezzOzInnXoqsXOcjf6hD0x91Q.png 560w\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+0+80+0+545.1+0+62.8+0+0+0+0),pixelHeight:224,pixelWidth:560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 196px) / 4, 50px)`,src:\"https://framerusercontent.com/images/ezzOzInnXoqsXOcjf6hD0x91Q.png\",srcSet:\"https://framerusercontent.com/images/ezzOzInnXoqsXOcjf6hD0x91Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/ezzOzInnXoqsXOcjf6hD0x91Q.png 560w\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+45+0+0+694+0+62.8+20+897+0+0),pixelHeight:224,pixelWidth:560,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 40px, 50px)`,src:\"https://framerusercontent.com/images/ezzOzInnXoqsXOcjf6hD0x91Q.png\",srcSet:\"https://framerusercontent.com/images/ezzOzInnXoqsXOcjf6hD0x91Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/ezzOzInnXoqsXOcjf6hD0x91Q.png 560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+0+0+80+0+578.5+0+62.8+0+0+0+0),pixelHeight:224,pixelWidth:560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 40px, 1500px) - 196px) / 4, 50px)`,src:\"https://framerusercontent.com/images/ezzOzInnXoqsXOcjf6hD0x91Q.png\",srcSet:\"https://framerusercontent.com/images/ezzOzInnXoqsXOcjf6hD0x91Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/ezzOzInnXoqsXOcjf6hD0x91Q.png 560w\"},className:\"framer-1fd6q49\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17kdml5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Advice on the best way to pay HOA Fees.\"})}),className:\"framer-tbkd49\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ifttt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1giy34p-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"N1c3JTZiC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(255, 255, 255, 0.5)\",borderRadius:40,bottomLeftRadius:40,bottomRightRadius:40,font:{},gap:12,height:\"100%\",id:\"N1c3JTZiC\",isMixedBorderRadius:false,layoutId:\"N1c3JTZiC\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,pauseOnExit:true,playing:false,progress:0,progressColor:\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\",showPlayPause:true,showTime:false,showTrack:true,srcType:\"URL\",srcUrl:\"https://descriptusercontent.com/published/d79282fa-30e3-4d96-b6e4-d63d7681e8ab/original.m4a\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:40,topRightRadius:40,trackColor:\"var(--token-e6bbc88f-8309-4c72-9386-6a0e10fafaf0, rgb(218, 183, 251))\",volume:50,width:\"100%\"})})})})]})]})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{y:(componentViewport?.y||0)+0+1715},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+1030},LP2GwFrCi:{y:(componentViewport?.y||0)+0+2105.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1058.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11s4yw5-container\",nodeId:\"ML2nH30Bk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{variant:\"R01igUpJF\"},IngA6Q_oJ:{variant:\"RMhvpweVV\"},LP2GwFrCi:{variant:\"gQ2Hig1JY\"}},children:/*#__PURE__*/_jsx(LogoWall,{height:\"100%\",id:\"ML2nH30Bk\",layoutId:\"ML2nH30Bk\",rXMtoIjrY:true,style:{height:\"100%\",width:\"100%\"},variant:\"z9ah7gRFQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{y:(componentViewport?.y||0)+0+1915},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+1230},LP2GwFrCi:{y:(componentViewport?.y||0)+0+2305.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:544,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1258.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ok9v7d-container\",nodeId:\"GyQw9jfFb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{variant:\"yYcgUL2Jz\"},LP2GwFrCi:{variant:\"DtmKndOp8\"}},children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"GyQw9jfFb\",Kv2fAH3UU:\"Owner Southern Indiana Driving School\",layoutId:\"GyQw9jfFb\",quXNogIJg:addImageAlt({pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/1xg9JsMt1NyzNrbyEtnLVpCSomI.png\"},\"\"),rILDs3NsE:'\"As someone with 50 years of business experience, I\u2019ve hired many live receptionists and used answering services over the years. One of the biggest challenges I faced was inconsistency in customer interactions, high costs, and employee turnover. After using Rosie AI, I fired my live answering service yesterday because Rosie provides more accuracy, faster responses, and 24/7 availability\u2014all at a fraction of the cost.\"',style:{width:\"100%\"},tWMVng_CT:\"rgb(255, 255, 255)\",variant:\"wqTjt4Y8P\",w00OOoXC_:\"James Hanner\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dbwa6a\",\"data-border\":true,\"data-framer-name\":\"ManageCalls\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11zdbyp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1r0djs8\",\"data-styles-preset\":\"rHEmVseCI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Never miss an opportunity because you can't answer the phone.\"})}),className:\"framer-117jitm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i1h7w2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8eotcd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mv1z12\",\"data-border\":true,\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2459+96+112.8+0+0+0+0+0+0),pixelHeight:650,pixelWidth:768,sizes:\"400px\",src:\"https://framerusercontent.com/images/PzrjjuULibAOFNr9vUKXBwNk.png\",srcSet:\"https://framerusercontent.com/images/PzrjjuULibAOFNr9vUKXBwNk.png?scale-down-to=512 512w,https://framerusercontent.com/images/PzrjjuULibAOFNr9vUKXBwNk.png 768w\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1774+96+112.8+0+0+0+0+0+0),pixelHeight:650,pixelWidth:768,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1216px) - 60px) / 3, 50px)`,src:\"https://framerusercontent.com/images/PzrjjuULibAOFNr9vUKXBwNk.png\",srcSet:\"https://framerusercontent.com/images/PzrjjuULibAOFNr9vUKXBwNk.png?scale-down-to=512 512w,https://framerusercontent.com/images/PzrjjuULibAOFNr9vUKXBwNk.png 768w\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2849.8+96+112.8+0+0+0+0+0+0),pixelHeight:650,pixelWidth:768,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,src:\"https://framerusercontent.com/images/PzrjjuULibAOFNr9vUKXBwNk.png\",srcSet:\"https://framerusercontent.com/images/PzrjjuULibAOFNr9vUKXBwNk.png?scale-down-to=512 512w,https://framerusercontent.com/images/PzrjjuULibAOFNr9vUKXBwNk.png 768w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1802.3+96+112.8+0+0+0+0+0+0),pixelHeight:650,pixelWidth:768,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1216px) - 60px) / 3, 50px)`,src:\"https://framerusercontent.com/images/PzrjjuULibAOFNr9vUKXBwNk.png\",srcSet:\"https://framerusercontent.com/images/PzrjjuULibAOFNr9vUKXBwNk.png?scale-down-to=512 512w,https://framerusercontent.com/images/PzrjjuULibAOFNr9vUKXBwNk.png 768w\"},className:\"framer-169r50r\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kpgq5i\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ib34n5\",\"data-styles-preset\":\"nbqj9cr5a\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Never miss another call or opportunity.\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ib34n5\",\"data-styles-preset\":\"nbqj9cr5a\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Never miss another call or opportunity.\"})})}),className:\"framer-cnv5ft\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(57, 52, 61, 0.7)\"},children:\"Rosie is there anytime you're not available. You'll never miss another opportunity just because you can't answer the phone.\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(57, 52, 61, 0.7)\"},children:\"Rosie is there anytime you're not available. You'll never miss another opportunity just because you can't answer the phone.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(57, 52, 61, 0.7)\"},children:\"Rosie is there anytime you're not available. You'll never miss another opportunity just because you can't answer the phone.\"})}),className:\"framer-1uoc0gt\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6pc85h\",\"data-border\":true,\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2459+96+112.8+0+0+0+560.8+0+0),pixelHeight:650,pixelWidth:768,sizes:\"400px\",src:\"https://framerusercontent.com/images/94llSJjMQInAmKWohLzJLjg.png\",srcSet:\"https://framerusercontent.com/images/94llSJjMQInAmKWohLzJLjg.png?scale-down-to=512 512w,https://framerusercontent.com/images/94llSJjMQInAmKWohLzJLjg.png 768w\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1774+96+112.8+0+0+0+0+0+0),pixelHeight:650,pixelWidth:768,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1216px) - 60px) / 3, 50px)`,src:\"https://framerusercontent.com/images/94llSJjMQInAmKWohLzJLjg.png\",srcSet:\"https://framerusercontent.com/images/94llSJjMQInAmKWohLzJLjg.png?scale-down-to=512 512w,https://framerusercontent.com/images/94llSJjMQInAmKWohLzJLjg.png 768w\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2849.8+96+112.8+0+0+0+504.8+0+0),pixelHeight:650,pixelWidth:768,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,src:\"https://framerusercontent.com/images/94llSJjMQInAmKWohLzJLjg.png\",srcSet:\"https://framerusercontent.com/images/94llSJjMQInAmKWohLzJLjg.png?scale-down-to=512 512w,https://framerusercontent.com/images/94llSJjMQInAmKWohLzJLjg.png 768w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1802.3+96+112.8+0+0+0+0+0+0),pixelHeight:650,pixelWidth:768,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1216px) - 60px) / 3, 50px)`,src:\"https://framerusercontent.com/images/94llSJjMQInAmKWohLzJLjg.png\",srcSet:\"https://framerusercontent.com/images/94llSJjMQInAmKWohLzJLjg.png?scale-down-to=512 512w,https://framerusercontent.com/images/94llSJjMQInAmKWohLzJLjg.png 768w\"},className:\"framer-1wcuyz6\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-opw3j4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ib34n5\",\"data-styles-preset\":\"nbqj9cr5a\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"No more hangups on voicemail.\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ib34n5\",\"data-styles-preset\":\"nbqj9cr5a\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"No more hangups on voicemail.\"})})}),className:\"framer-1v9ul5o\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(57, 52, 61, 0.7)\"},children:\"No one leaves a voicemail anymore. But everyone talks to Rosie. She'll answer the phone, take a message for you, and send it your way.\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(57, 52, 61, 0.7)\"},children:\"No one leaves a voicemail anymore. But everyone talks to Rosie. She'll answer the phone, take a message for you, and send it your way.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(57, 52, 61, 0.7)\"},children:\"No one leaves a voicemail anymore. But everyone talks to Rosie. She'll answer the phone, take a message for you, and send it your way.\"})}),className:\"framer-be9tz\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wewcit\",\"data-border\":true,\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2459+96+112.8+0+0+0+1121.6+0+0),pixelHeight:650,pixelWidth:768,sizes:\"400px\",src:\"https://framerusercontent.com/images/KUAsxayTfFCFEefmLaGZhonqms.png\",srcSet:\"https://framerusercontent.com/images/KUAsxayTfFCFEefmLaGZhonqms.png?scale-down-to=512 512w,https://framerusercontent.com/images/KUAsxayTfFCFEefmLaGZhonqms.png 768w\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1774+96+112.8+0+0+0+0+0+0),pixelHeight:650,pixelWidth:768,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1216px) - 60px) / 3, 50px)`,src:\"https://framerusercontent.com/images/KUAsxayTfFCFEefmLaGZhonqms.png\",srcSet:\"https://framerusercontent.com/images/KUAsxayTfFCFEefmLaGZhonqms.png?scale-down-to=512 512w,https://framerusercontent.com/images/KUAsxayTfFCFEefmLaGZhonqms.png 768w\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2849.8+96+112.8+0+0+0+1009.6+0+0),pixelHeight:650,pixelWidth:768,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,src:\"https://framerusercontent.com/images/KUAsxayTfFCFEefmLaGZhonqms.png\",srcSet:\"https://framerusercontent.com/images/KUAsxayTfFCFEefmLaGZhonqms.png?scale-down-to=512 512w,https://framerusercontent.com/images/KUAsxayTfFCFEefmLaGZhonqms.png 768w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1802.3+96+112.8+0+0+0+0+0+0),pixelHeight:650,pixelWidth:768,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1216px) - 60px) / 3, 50px)`,src:\"https://framerusercontent.com/images/KUAsxayTfFCFEefmLaGZhonqms.png\",srcSet:\"https://framerusercontent.com/images/KUAsxayTfFCFEefmLaGZhonqms.png?scale-down-to=512 512w,https://framerusercontent.com/images/KUAsxayTfFCFEefmLaGZhonqms.png 768w\"},className:\"framer-1ac0brv\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rt9uzc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ib34n5\",\"data-styles-preset\":\"nbqj9cr5a\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"10x cheaper than an answering service.\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ib34n5\",\"data-styles-preset\":\"nbqj9cr5a\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"10x cheaper than an answering service.\"})})}),className:\"framer-1sk30f2\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(57, 52, 61, 0.7)\"},children:\"There's no need to spend a bunch of money on an outsourced answering service. Rosie can do it for you for a fraction of the cost.\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(57, 52, 61, 0.7)\"},children:\"There's no need to spend a bunch of money on an outsourced answering service. Rosie can do it for you for a fraction of the cost.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(57, 52, 61, 0.7)\"},children:\"There's no need to spend a bunch of money on an outsourced answering service. Rosie can do it for you for a fraction of the cost.\"})}),className:\"framer-1dwg547\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1un0o16\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b2jaz0\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ag55wx\",\"data-framer-name\":\"BG Gradient\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5cjp4y\",\"data-framer-name\":\"Ellipse 31\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3n0s1u\",\"data-framer-name\":\"Ellipse 34\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hpo3mk\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1r0djs8\",\"data-styles-preset\":\"rHEmVseCI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Why Rosie is right for your small business.\"})}),className:\"framer-1uythtp\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.65)\"},children:\"The power of the latest AI tech, working for you 24/7.\"})}),className:\"framer-1p0lbs\",\"data-framer-name\":\"Text\",fonts:[\"GF;Outfit-300\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fzmni2\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1216px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+0+4406.2+20+0+40+351.8+0+0},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+2612.6+20+0+80+351.8+0+0},LP2GwFrCi:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1216px), 200px)`,y:(componentViewport?.y||0)+0+4645+0+0+40+291.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1216px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2640.9+20+0+80+351.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1esgz80-container\",nodeId:\"x49A5Nzet\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LP2GwFrCi:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureGridItem,{height:\"100%\",id:\"x49A5Nzet\",ImGKO88VR:\"Amazing human-like AI to answer your phone\",layoutId:\"x49A5Nzet\",OmRlhF6vI:\"You\u2019ll outshine your competition with the most modern AI voice tech.\",style:{height:\"100%\",width:\"100%\"},ukHkyLYBI:\"Sparkle\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1216px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+0+4406.2+20+0+40+351.8+0+0},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+2612.6+20+0+80+351.8+0+0},LP2GwFrCi:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1216px), 200px)`,y:(componentViewport?.y||0)+0+4645+0+0+40+291.8+0+308}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1216px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2640.9+20+0+80+351.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-127ey7-container\",nodeId:\"nenyNf48r\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LP2GwFrCi:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureGridItem,{height:\"100%\",id:\"nenyNf48r\",ImGKO88VR:\"Get notified right away\",layoutId:\"nenyNf48r\",OmRlhF6vI:\"Rosie will email and/or text you every time a new call comes in, so you can quickly decide how best to handle it.\",style:{height:\"100%\",width:\"100%\"},ukHkyLYBI:\"Bell\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1216px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+0+4406.2+20+0+40+351.8+0+308},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+2612.6+20+0+80+351.8+0+308},LP2GwFrCi:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1216px), 200px)`,y:(componentViewport?.y||0)+0+4645+0+0+40+291.8+0+616}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1216px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2640.9+20+0+80+351.8+0+308,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bf2mg3-container\",nodeId:\"rtjAnFLjX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LP2GwFrCi:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureGridItem,{height:\"100%\",id:\"rtjAnFLjX\",ImGKO88VR:\"Custom message taking\",layoutId:\"rtjAnFLjX\",OmRlhF6vI:\"You determine the most important information that your business needs in a message, and Rosie will make sure to get it from your callers.\",style:{height:\"100%\",width:\"100%\"},ukHkyLYBI:\"Pen\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1216px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+0+4406.2+20+0+40+351.8+0+308},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+2612.6+20+0+80+351.8+0+308},LP2GwFrCi:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1216px), 200px)`,y:(componentViewport?.y||0)+0+4645+0+0+40+291.8+0+924}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1216px) - 20px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2640.9+20+0+80+351.8+0+308,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oe3jl9-container\",nodeId:\"HGGGYWkqu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LP2GwFrCi:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureGridItem,{height:\"100%\",id:\"HGGGYWkqu\",ImGKO88VR:\"Recordings, transcripts, call management\",layoutId:\"HGGGYWkqu\",OmRlhF6vI:\"Every call is recorded and transcribed for you in your inbox.\",style:{height:\"100%\",width:\"100%\"},ukHkyLYBI:\"Play\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9ourk\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19yn21l\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1r0djs8\",\"data-styles-preset\":\"rHEmVseCI\",style:{\"--framer-text-alignment\":\"center\"},children:\"How it Works\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1r0djs8\",\"data-styles-preset\":\"rHEmVseCI\",children:\"How it Works\"})}),className:\"framer-w8x8ek\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(46, 42, 51, 0.7)\"},children:\"Powerful, yet super easy to set up and get started in minutes.\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(46, 42, 51, 0.7)\"},children:\"Powerful, yet super easy to set up and get started in minutes.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(46, 42, 51, 0.7)\"},children:\"Powerful, yet super easy to set up and get started in minutes.\"})}),className:\"framer-135t0xr\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16p25fs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rjbt13\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-heft5n\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5454+96+203+0+0+40.1+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/Oo0M81U1gvd0ycorKLUPK07sQF8.svg\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3740.4+96+214.2+0+0+63.45+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/Oo0M81U1gvd0ycorKLUPK07sQF8.svg\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6228.8+96+303.8+0+0+0+377.9+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/Oo0M81U1gvd0ycorKLUPK07sQF8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3768.7+96+214.2+0+0+63.45+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/Oo0M81U1gvd0ycorKLUPK07sQF8.svg\"},className:\"framer-cv1xj0\",\"data-border\":true,\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-73py1t\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-793rvn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\"},children:\"STEP 1\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\"},children:\"STEP 1\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\"},children:\"STEP 1\"})}),className:\"framer-1sfccyq\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Train Rosie on your business.\"})}),fonts:[\"GF;Outfit-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-gzh3oa\",\"data-styles-preset\":\"v84N5jwsk\",children:\"Train Rosie on your business.\"})}),className:\"framer-qcegfn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gj5dqx\",\"data-styles-preset\":\"nNx0bDG0I\",style:{\"--framer-text-alignment\":\"left\"},children:\"Use your Google Business profile, website address or simple business  information to get started.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gj5dqx\",\"data-styles-preset\":\"nNx0bDG0I\",children:\"Use your Google Business profile, website address or simple business  information to get started.\"})}),className:\"framer-1y5v103\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zpusig\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zyuuiv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5454+96+203+0+400.2+127.1+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/3zVAokbjKOBLGvZZe1Bzmdeg1Zc.svg\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3740.4+96+214.2+0+446.9+150.45+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/3zVAokbjKOBLGvZZe1Bzmdeg1Zc.svg\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6228.8+96+303.8+0+727.9+0+551.9+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/3zVAokbjKOBLGvZZe1Bzmdeg1Zc.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3768.7+96+214.2+0+446.9+150.45+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/3zVAokbjKOBLGvZZe1Bzmdeg1Zc.svg\"},className:\"framer-1k4ac4i\",\"data-border\":true,\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v98rbt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e2t2pw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\"},children:\"STEP 2\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\"},children:\"STEP 2\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\"},children:\"STEP 2\"})}),className:\"framer-166nidd\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Confirm Rosie has things right.\"})}),fonts:[\"GF;Outfit-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-gzh3oa\",\"data-styles-preset\":\"v84N5jwsk\",children:\"Confirm Rosie has things right.\"})}),className:\"framer-43rxvk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gj5dqx\",\"data-styles-preset\":\"nNx0bDG0I\",style:{\"--framer-text-alignment\":\"left\"},children:\"Rosie will be trained on your specific business information.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gj5dqx\",\"data-styles-preset\":\"nNx0bDG0I\",style:{\"--framer-text-alignment\":\"left\"},children:\"Make adjustments, add questions you want asked when taking a message, and more.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gj5dqx\",\"data-styles-preset\":\"nNx0bDG0I\",children:\"Rosie will be trained on your specific business information.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gj5dqx\",\"data-styles-preset\":\"nNx0bDG0I\",children:\"Make adjustments, add questions you want asked when taking a message, and more.\"})]}),className:\"framer-c3cccu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jwgpcm\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a9raoj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5454+96+203+0+974.4+40.1+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/uC3QRC4gm5cfAY1xbHKuDEooJU.svg\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3740.4+96+214.2+0+1067.8+63.45+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/uC3QRC4gm5cfAY1xbHKuDEooJU.svg\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6228.8+96+303.8+0+1629.8+0+377.9+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/uC3QRC4gm5cfAY1xbHKuDEooJU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3768.7+96+214.2+0+1067.8+63.45+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/uC3QRC4gm5cfAY1xbHKuDEooJU.svg\"},className:\"framer-1554hi1\",\"data-border\":true,\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1one3oo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mimxk9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\"},children:\"STEP 3\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\"},children:\"STEP 3\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\"},children:\"STEP 3\"})}),className:\"framer-1vjiqw2\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Forward your calls to Rosie\"})}),fonts:[\"GF;Outfit-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-gzh3oa\",\"data-styles-preset\":\"v84N5jwsk\",children:\"Forward your calls to Rosie\"})}),className:\"framer-1ary2fs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gj5dqx\",\"data-styles-preset\":\"nNx0bDG0I\",style:{\"--framer-text-alignment\":\"left\"},children:\"No need to change your existing business number. Just forward calls to Rosie when you want her to answer.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gj5dqx\",\"data-styles-preset\":\"nNx0bDG0I\",children:\"No need to change your existing business number. Just forward calls to Rosie when you want her to answer.\"})}),className:\"framer-1odyo9y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9cnts3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19tqc98\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5454+96+203+0+1374.6+0+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/hPokUdZdvTygzqllYlr7b1JY.svg\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3740.4+96+214.2+0+1514.7+0+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/hPokUdZdvTygzqllYlr7b1JY.svg\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6228.8+96+303.8+0+2357.7+0+551.9+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/hPokUdZdvTygzqllYlr7b1JY.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3768.7+96+214.2+0+1514.7+0+0+0),pixelHeight:320,pixelWidth:500,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/hPokUdZdvTygzqllYlr7b1JY.svg\"},className:\"framer-1qb40tb\",\"data-border\":true,\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hlhacl\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lnix6w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\"},children:\"STEP 4\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\"},children:\"STEP 4\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de8dc8c6-3f1a-4921-976a-bb470e032fa5, rgb(147, 50, 224))\"},children:\"STEP 4\"})}),className:\"framer-1lx40q9\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Rosie answers your calls and takes messages.\"})}),fonts:[\"GF;Outfit-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-gzh3oa\",\"data-styles-preset\":\"v84N5jwsk\",children:\"Rosie answers your calls and takes messages.\"})}),className:\"framer-im5lec\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gj5dqx\",\"data-styles-preset\":\"nNx0bDG0I\",style:{\"--framer-text-alignment\":\"left\"},children:\"When a call comes in, Rosie will answer the call, answer questions, and take a message according to your needs. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gj5dqx\",\"data-styles-preset\":\"nNx0bDG0I\",style:{\"--framer-text-alignment\":\"left\"},children:\"You'll then be notified by email and/or text, and every call recording and transcript is saved in your calls inbox.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gj5dqx\",\"data-styles-preset\":\"nNx0bDG0I\",children:\"When a call comes in, Rosie will answer the call, answer questions, and take a message according to your needs. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gj5dqx\",\"data-styles-preset\":\"nNx0bDG0I\",children:\"You'll then be notified by email and/or text, and every call recording and transcript is saved in your calls inbox.\"})]}),className:\"framer-1clgq3u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16oe6ie\",\"data-framer-name\":\"Compare\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e0h1jd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-192lk3j\",\"data-framer-name\":\"BG Gradient\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14e78qz\",\"data-framer-name\":\"Ellipse 31\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rwqn9u\",\"data-framer-name\":\"Ellipse 34\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-muetff\",\"data-framer-name\":\"title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let's Compare...\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let's Compare...\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let's Compare...\"})}),className:\"framer-wgbf3o\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4b1481f-48ec-4a8f-a8cf-7a9eae897a19, rgb(148, 135, 160))\"},children:\"See how Rosie compares to traditional solutions.\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f4b1481f-48ec-4a8f-a8cf-7a9eae897a19, rgb(148, 135, 160))\"},children:\"See how Rosie compares to traditional solutions.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4b1481f-48ec-4a8f-a8cf-7a9eae897a19, rgb(148, 135, 160))\"},children:\"See how Rosie compares to traditional solutions.\"})}),className:\"framer-s81xtu\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-165jqss\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{y:(componentViewport?.y||0)+0+7727.8+20+0+96+164+0+0},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+5925.3+20+0+96+178.8+0+0},LP2GwFrCi:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+9914.2+0+0+60+218.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:855,width:`min(${componentViewport?.width||\"100vw\"} - 200px, 1216px)`,y:(componentViewport?.y||0)+0+5953.6+20+0+96+178.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yecgu0-container\",nodeId:\"B46dVKD92\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LP2GwFrCi:{dJZf2yc_n:\"6px 20px 6px 20px\",QpvEfiMqX:false}},children:/*#__PURE__*/_jsx(CompareTabs,{dJZf2yc_n:\"6px 24px 6px 6px\",height:\"100%\",id:\"B46dVKD92\",layoutId:\"B46dVKD92\",QpvEfiMqX:true,style:{width:\"100%\"},variant:\"Sdq6WoDyz\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{y:(componentViewport?.y||0)+0+8958.8},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+7171.1},LP2GwFrCi:{y:(componentViewport?.y||0)+0+11088}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:544,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7199.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o2ga7h-container\",nodeId:\"vucL7oSUa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{variant:\"yYcgUL2Jz\"},LP2GwFrCi:{variant:\"DtmKndOp8\"}},children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"vucL7oSUa\",Kv2fAH3UU:\"Owner\",layoutId:\"vucL7oSUa\",quXNogIJg:addImageAlt({pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/OpLlwXHZLDlEf408gVZrDy0V6k.png\"},\"\"),rILDs3NsE:'\"My colleagues in the industry call our number and talk to Rosie and they can\u2019t believe how good it is. I\u2019ve already recommended two friends to Rosie.\"',style:{width:\"100%\"},tWMVng_CT:\"rgb(255, 255, 255)\",variant:\"wqTjt4Y8P\",w00OOoXC_:\"Classic City Transportation\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k4d9p\",\"data-border\":true,\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gw7uj0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1r0djs8\",\"data-styles-preset\":\"rHEmVseCI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Built for businesses like yours\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1r0djs8\",\"data-styles-preset\":\"rHEmVseCI\",children:\"Built for businesses like yours\"})}),className:\"framer-1vyqzse\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(46, 42, 51, 0.7)\"},children:\"Join other small businesses in your industry using Rosie.\"})})},LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(46, 42, 51, 0.7)\"},children:\"Join other small businesses in your industry using Rosie.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(46, 42, 51, 0.7)\"},children:\"Join other small businesses in your industry using Rosie.\"})}),className:\"framer-11o2c6n\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n13nrv\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-24pivm\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ptC8fli_m:\"home-services\"},unresolvedPathSlugs:{ptC8fli_m:{collectionId:\"avJzyijyC\",collectionItemId:\"RM5jJtkPq\"}},webPageId:\"CXMiaHBnM\"},motionChild:true,nodeId:\"jnDYxuqd0\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-yrg0m framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pxl4t8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lorlgk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9502.8+96+158+0+0+0+0+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/YWYY9FGWEw6ev9CtYCRurCEDDY.jpg\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7715.1+96+169.2+0+0+0+0+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/YWYY9FGWEw6ev9CtYCRurCEDDY.jpg\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11632+96+258.8+0+0+0+0+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/YWYY9FGWEw6ev9CtYCRurCEDDY.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7743.4+96+169.2+0+0+0+0+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/YWYY9FGWEw6ev9CtYCRurCEDDY.jpg\"},className:\"framer-1x56i9n\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bv8a5r\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9nhv3e\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Home Services\"})}),className:\"framer-tmve97\",\"data-framer-name\":\"Industry Name\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ptC8fli_m:\"law-firms\"},unresolvedPathSlugs:{ptC8fli_m:{collectionId:\"avJzyijyC\",collectionItemId:\"zwJWKGy6G\"}},webPageId:\"CXMiaHBnM\"},motionChild:true,nodeId:\"P6hrM9n8w\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17i5nkm framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w6zfj0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3hm2h1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9502.8+96+158+0+0+0+0+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/KyduNweKdzSPEoFtZGAIZLEnJM.jpg\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7715.1+96+169.2+0+0+0+0+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/KyduNweKdzSPEoFtZGAIZLEnJM.jpg\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11632+96+258.8+0+0+0+250+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/KyduNweKdzSPEoFtZGAIZLEnJM.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7743.4+96+169.2+0+0+0+0+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/KyduNweKdzSPEoFtZGAIZLEnJM.jpg\"},className:\"framer-1bk8jbn\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4keep3\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6krile\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Law Firms\"})}),className:\"framer-1jw62zy\",\"data-framer-name\":\"Industry Name\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ptC8fli_m:\"property-management\"},unresolvedPathSlugs:{ptC8fli_m:{collectionId:\"avJzyijyC\",collectionItemId:\"Z9dXZPJ09\"}},webPageId:\"CXMiaHBnM\"},motionChild:true,nodeId:\"PW8XlRbrK\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-kzjtni framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c909ak\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1061mcm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9502.8+96+158+0+0+0+266+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/YURy73TDfRFgX7S4aJ7rQBcMpk.jpg\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7715.1+96+169.2+0+0+0+0+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/YURy73TDfRFgX7S4aJ7rQBcMpk.jpg\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11632+96+258.8+0+0+0+500+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/YURy73TDfRFgX7S4aJ7rQBcMpk.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7743.4+96+169.2+0+0+0+0+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/YURy73TDfRFgX7S4aJ7rQBcMpk.jpg\"},className:\"framer-10ry9yk\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15cdkw4\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ah2wnj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Property Management\"})}),className:\"framer-mthun0\",\"data-framer-name\":\"Industry Name\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ptC8fli_m:\"construction\"},unresolvedPathSlugs:{ptC8fli_m:{collectionId:\"avJzyijyC\",collectionItemId:\"pThpr3Gp5\"}},webPageId:\"CXMiaHBnM\"},motionChild:true,nodeId:\"Y1W5kZfmC\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1g0on0k framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pu3v08\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8nsg7u\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9502.8+96+158+0+0+0+266+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/aACGyMFVuiy5M12BKJdSBVe0zk.jpg\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7715.1+96+169.2+0+0+0+0+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/aACGyMFVuiy5M12BKJdSBVe0zk.jpg\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11632+96+258.8+0+0+0+750+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/aACGyMFVuiy5M12BKJdSBVe0zk.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7743.4+96+169.2+0+0+0+0+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/aACGyMFVuiy5M12BKJdSBVe0zk.jpg\"},className:\"framer-n8rl1c\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2p13ul\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gdjbkl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Construction\"})}),className:\"framer-1vri052\",\"data-framer-name\":\"Industry Name\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ptC8fli_m:\"real-estate\"},unresolvedPathSlugs:{ptC8fli_m:{collectionId:\"avJzyijyC\",collectionItemId:\"SSHWJhhGA\"}},webPageId:\"CXMiaHBnM\"},motionChild:true,nodeId:\"dkHxytacf\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18ktjnk framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gnc8ux\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xczsg5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9502.8+96+158+0+0+0+532+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/eIoCeHGozKWRJYSbFwq4x8XIgNM.jpg\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7715.1+96+169.2+0+0+0+256+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/eIoCeHGozKWRJYSbFwq4x8XIgNM.jpg\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11632+96+258.8+0+0+0+1e3+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/eIoCeHGozKWRJYSbFwq4x8XIgNM.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7743.4+96+169.2+0+0+0+256+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/eIoCeHGozKWRJYSbFwq4x8XIgNM.jpg\"},className:\"framer-1xac3ls\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fstkqq\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pqnyrl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Real Estate\"})}),className:\"framer-1svvsa7\",\"data-framer-name\":\"Industry Name\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ptC8fli_m:\"plumbing\"},unresolvedPathSlugs:{ptC8fli_m:{collectionId:\"avJzyijyC\",collectionItemId:\"I4wnlLOYE\"}},webPageId:\"CXMiaHBnM\"},motionChild:true,nodeId:\"BPU3iWdSS\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xj54zt framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ei9snh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2lbhk8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9502.8+96+158+0+0+0+532+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/LYtxEqSxx7pBToUa1B8vc9EmA.jpg\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7715.1+96+169.2+0+0+0+256+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/LYtxEqSxx7pBToUa1B8vc9EmA.jpg\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11632+96+258.8+0+0+0+1250+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/LYtxEqSxx7pBToUa1B8vc9EmA.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7743.4+96+169.2+0+0+0+256+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/LYtxEqSxx7pBToUa1B8vc9EmA.jpg\"},className:\"framer-1akf7ph\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ewob3t\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15grw96\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Plumbing\"})}),className:\"framer-15eabuj\",\"data-framer-name\":\"Industry Name\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ptC8fli_m:\"automotive\"},unresolvedPathSlugs:{ptC8fli_m:{collectionId:\"avJzyijyC\",collectionItemId:\"OrtXilARy\"}},webPageId:\"CXMiaHBnM\"},motionChild:true,nodeId:\"JXVgJ2plz\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1axd09r framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6yjuxg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yowid6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9502.8+96+158+0+0+0+798+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/rs0wURzee8bnPqzODOHJbkMrqwE.png\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7715.1+96+169.2+0+0+0+256+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/rs0wURzee8bnPqzODOHJbkMrqwE.png\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11632+96+258.8+0+0+0+1500+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/rs0wURzee8bnPqzODOHJbkMrqwE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7743.4+96+169.2+0+0+0+256+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/rs0wURzee8bnPqzODOHJbkMrqwE.png\"},className:\"framer-1clryqg\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sjqbnc\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l8wrls\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Automotive\"})}),className:\"framer-10tc480\",\"data-framer-name\":\"Industry Name\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ptC8fli_m:\"salons\"},unresolvedPathSlugs:{ptC8fli_m:{collectionId:\"avJzyijyC\",collectionItemId:\"DjgvQtpJN\"}},webPageId:\"CXMiaHBnM\"},motionChild:true,nodeId:\"h7u8WeuF6\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1mp4y8n framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3xx3k3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mft8w6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9502.8+96+158+0+0+0+798+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/JxIhIpSd2toQLUwU8mezXajgGQ.jpg\"}},IngA6Q_oJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7715.1+96+169.2+0+0+0+256+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/JxIhIpSd2toQLUwU8mezXajgGQ.jpg\"}},LP2GwFrCi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11632+96+258.8+0+0+0+1750+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/JxIhIpSd2toQLUwU8mezXajgGQ.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7743.4+96+169.2+0+0+0+256+0+0+10+0+150-150),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/JxIhIpSd2toQLUwU8mezXajgGQ.jpg\"},className:\"framer-xblljs\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aedx4p\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ip1314\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:\"Salons\"})}),className:\"framer-1cfcyqc\",\"data-framer-name\":\"Industry Name\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1745b696-528c-4220-81cc-cd91f2089bf3, rgb(42, 20, 60))\"},children:[\"And \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wvjB6vSbp\"},motionChild:true,nodeId:\"RJfuDHjdT\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1qghrl9\",\"data-styles-preset\":\"dOwkoiNTa\",children:\"other small businesses\"})}),\" that need to answer the phone...\"]})}),className:\"framer-z92t32\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{y:(componentViewport?.y||0)+0+10958.8},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+8640.3},LP2GwFrCi:{y:(componentViewport?.y||0)+0+14228.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:544,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8668.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v3b4wd-container\",nodeId:\"Qyx46u7vv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{variant:\"yYcgUL2Jz\"},LP2GwFrCi:{variant:\"DtmKndOp8\"}},children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"Qyx46u7vv\",Kv2fAH3UU:\"Franchisee\",layoutId:\"Qyx46u7vv\",quXNogIJg:addImageAlt({pixelHeight:80,pixelWidth:81,src:\"https://framerusercontent.com/images/B5jGIkxirZfAL6J86hQEdpVmis.png\"},\"\"),rILDs3NsE:'\"Rosie is the real deal. We\\'ve tried all the others and Rosie is the only one that is easy to set up and sounds so realistic.\"',style:{width:\"100%\"},tWMVng_CT:\"rgb(255, 255, 255)\",variant:\"wqTjt4Y8P\",w00OOoXC_:\"Crunch Fitness\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kd4yml\",\"data-border\":true,\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p1hmcj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LP2GwFrCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1r0djs8\",\"data-styles-preset\":\"rHEmVseCI\",style:{\"--framer-text-alignment\":\"center\"},children:\"See Rosie in action\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1r0djs8\",\"data-styles-preset\":\"rHEmVseCI\",children:\"See Rosie in action\"})}),className:\"framer-szzrw7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{height:444,y:(componentViewport?.y||0)+0+11502.8+96+112.8},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+9184.3+96+112.8},LP2GwFrCi:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1000px)`,y:(componentViewport?.y||0)+0+14772.8+60+82.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:626,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1000px)`,y:(componentViewport?.y||0)+0+9212.6+96+112.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-adocw4-container\",nodeId:\"XVQRXGD0V\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"runsfQFdL\"},LP2GwFrCi:{variant:\"bCUUZEIJE\"}},children:/*#__PURE__*/_jsx(DemoVideo,{height:\"100%\",id:\"XVQRXGD0V\",layoutId:\"XVQRXGD0V\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"O18NOG_M_\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9gtix2\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w6zo2w\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1r0djs8\",\"data-styles-preset\":\"rHEmVseCI\",children:\"Frequently Asked Questions\"})}),className:\"framer-niahp\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gyl279\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+12251.6+96+0+0+152.8+0+0},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+10115.1+96+0+0+152.8+0+0},LP2GwFrCi:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+15581.6+80+0+0+152.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1216px)`,y:(componentViewport?.y||0)+0+10143.4+96+0+0+152.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uln22l-container\",nodeId:\"Mp4v4otjb\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQItem,{fTQFNiCD6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, all plans start with your first 25 minutes free.\"})}),height:\"100%\",id:\"Mp4v4otjb\",layoutId:\"Mp4v4otjb\",style:{width:\"100%\"},variant:\"dUiRKhq45\",width:\"100%\",xH1FjvpZB:\"Do you offer a free trial?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+12251.6+96+0+0+152.8+0+95},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+10115.1+96+0+0+152.8+0+95},LP2GwFrCi:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+15581.6+80+0+0+152.8+0+95}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1216px)`,y:(componentViewport?.y||0)+0+10143.4+96+0+0+152.8+0+95,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4h26lc-container\",nodeId:\"vHizbCibd\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQItem,{fTQFNiCD6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Plans start at $49/mo. See more info at our \",/*#__PURE__*/_jsx(Link,{href:\"https://heyrosie.com/pricing\",motionChild:true,nodeId:\"vHizbCibd\",openInNewTab:false,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"pricing page\"})}),\".\"]})}),height:\"100%\",id:\"vHizbCibd\",layoutId:\"vHizbCibd\",style:{width:\"100%\"},variant:\"dUiRKhq45\",width:\"100%\",xH1FjvpZB:\"How much does Rosie cost?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+12251.6+96+0+0+152.8+0+190},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+10115.1+96+0+0+152.8+0+190},LP2GwFrCi:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+15581.6+80+0+0+152.8+0+190}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1216px)`,y:(componentViewport?.y||0)+0+10143.4+96+0+0+152.8+0+190,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rfaqk1-container\",nodeId:\"Yqica6NUY\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQItem,{fTQFNiCD6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"You can get set-up with Rosie in a matter of minutes! We pull in your company-specific data from your website and Google Business profile. We guide you through a few settings and a test call, then you\u2019re ready to go live with your new AI answering service.\"})}),height:\"100%\",id:\"Yqica6NUY\",layoutId:\"Yqica6NUY\",style:{width:\"100%\"},variant:\"dUiRKhq45\",width:\"100%\",xH1FjvpZB:\"How long does it take to set up?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+12251.6+96+0+0+152.8+0+285},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+10115.1+96+0+0+152.8+0+285},LP2GwFrCi:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+15581.6+80+0+0+152.8+0+285}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1216px)`,y:(componentViewport?.y||0)+0+10143.4+96+0+0+152.8+0+285,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8dtnm3-container\",nodeId:\"iDC93yO4n\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQItem,{fTQFNiCD6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Absolutely! We offer a free consultation once you sign up, and our Support team is around to answer your questions any time.\"})}),height:\"100%\",id:\"iDC93yO4n\",layoutId:\"iDC93yO4n\",style:{width:\"100%\"},variant:\"dUiRKhq45\",width:\"100%\",xH1FjvpZB:\"Can you help us get set up?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+12251.6+96+0+0+152.8+0+380},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+10115.1+96+0+0+152.8+0+380},LP2GwFrCi:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+15581.6+80+0+0+152.8+0+380}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1216px)`,y:(componentViewport?.y||0)+0+10143.4+96+0+0+152.8+0+380,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s1u3vd-container\",nodeId:\"bXvIWUEAE\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQItem,{fTQFNiCD6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"It\u2019s easy. We\u2019ll create a phone number for you when you sign up. Then you simply forward calls to your new Rosie number when appropriate.\"})}),height:\"100%\",id:\"bXvIWUEAE\",layoutId:\"bXvIWUEAE\",style:{width:\"100%\"},variant:\"dUiRKhq45\",width:\"100%\",xH1FjvpZB:\"How do we connect to our phone system?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+12251.6+96+0+0+152.8+0+475},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+10115.1+96+0+0+152.8+0+475},LP2GwFrCi:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+15581.6+80+0+0+152.8+0+475}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1216px)`,y:(componentViewport?.y||0)+0+10143.4+96+0+0+152.8+0+475,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10fui1s-container\",nodeId:\"DuRxkhRoM\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQItem,{fTQFNiCD6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, all calls are logged and available for review in your Rosie account.\"})}),height:\"100%\",id:\"DuRxkhRoM\",layoutId:\"DuRxkhRoM\",style:{width:\"100%\"},variant:\"dUiRKhq45\",width:\"100%\",xH1FjvpZB:\"Can I access call history and recordings?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+12251.6+96+0+0+152.8+0+570},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+10115.1+96+0+0+152.8+0+570},LP2GwFrCi:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+15581.6+80+0+0+152.8+0+570}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1216px)`,y:(componentViewport?.y||0)+0+10143.4+96+0+0+152.8+0+570,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m2ck7v-container\",nodeId:\"d8WwTYgUA\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQItem,{fTQFNiCD6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, you can use Google Voice with Rosie. We will walk you through linking your new Rosie number to Google Voice when you\u2019re ready to launch.\"})}),height:\"100%\",id:\"d8WwTYgUA\",layoutId:\"d8WwTYgUA\",style:{width:\"100%\"},variant:\"dUiRKhq45\",width:\"100%\",xH1FjvpZB:\"Does Rosie work with Google Voice?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+12251.6+96+0+0+152.8+0+665},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+10115.1+96+0+0+152.8+0+665},LP2GwFrCi:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+15581.6+80+0+0+152.8+0+665}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1216px)`,y:(componentViewport?.y||0)+0+10143.4+96+0+0+152.8+0+665,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dtvk8y-container\",nodeId:\"gqGuTg3MN\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQItem,{fTQFNiCD6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, Rosie can notify you via email and/or text of new calls so you can prioritize which to jump on.\"})}),height:\"100%\",id:\"gqGuTg3MN\",layoutId:\"gqGuTg3MN\",style:{width:\"100%\"},variant:\"dUiRKhq45\",width:\"100%\",xH1FjvpZB:\"Will Rosie notify me when I get new calls?\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+12251.6+96+0+0+152.8+0+760},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+10115.1+96+0+0+152.8+0+760},LP2GwFrCi:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+15581.6+80+0+0+152.8+0+760}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1216px)`,y:(componentViewport?.y||0)+0+10143.4+96+0+0+152.8+0+760,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iehq7g-container\",nodeId:\"G1P3lQpIy\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQItem,{fTQFNiCD6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"No, you don\u2019t need any technical knowledge to use Rosie. If you have a technical team and want to work together on solutions, just let us know.\"})}),height:\"100%\",id:\"G1P3lQpIy\",layoutId:\"G1P3lQpIy\",style:{width:\"100%\"},variant:\"dUiRKhq45\",width:\"100%\",xH1FjvpZB:\"Do we need a developer to work with Rosie?\"})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iJrwxxHjE:{y:(componentViewport?.y||0)+0+13495.4},IngA6Q_oJ:{y:(componentViewport?.y||0)+0+11358.9},LP2GwFrCi:{y:(componentViewport?.y||0)+0+16729.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1170,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+11387.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uetf97-container\",nodeId:\"aY7FuYQS7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LP2GwFrCi:{variant:\"uS9h7ivpR\"}},children:/*#__PURE__*/_jsx(Footer,{ESPF1vZ0a:\"First 25 minutes completely free. No credit card required.\",height:\"100%\",id:\"aY7FuYQS7\",layoutId:\"aY7FuYQS7\",PnEpoOh67:\"Rosie always answers.\",rE4AGh4WY:true,rJT9Turnp:false,style:{width:\"100%\"},variant:\"Be3WfKb65\",vPhY8Awxs:\"Your business will never miss another call with Rosie answering your phone calls and setting appointments 24/7.\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AdV06.framer-lux5qc, .framer-AdV06 .framer-lux5qc { display: block; }\",\".framer-AdV06.framer-1itnppb { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-AdV06 .framer-1h8kga6-container { flex: none; height: 80px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-AdV06 .framer-14tqaf4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-1es05it { align-content: center; align-items: center; background-color: rgba(102, 102, 204, 0.06); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AdV06 .framer-1d8n41n { 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 50px 0px 50px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-l8o809-container { flex: 1 0 0px; height: 80px; position: relative; width: 1px; z-index: 10; }\",\".framer-AdV06 .framer-12x1m9f { background-color: #ffffff; flex: none; gap: 0px; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.3; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-AdV06 .framer-u7oj2n { -webkit-filter: blur(194.4444580078125px); background-color: #c2e6e9; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(194.4444580078125px); flex: none; height: 1058px; left: -78px; position: absolute; top: 696px; width: 2161px; }\",\".framer-AdV06 .framer-170ugod { -webkit-filter: blur(233.33334350585938px); background-color: #353196; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(233.33334350585938px); flex: none; height: 1170px; left: -297px; position: absolute; top: 59px; width: 317px; }\",\".framer-AdV06 .framer-o0obj3 { -webkit-filter: blur(233.33334350585938px); background-color: #353196; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(233.33334350585938px); flex: none; height: 890px; left: -212px; position: absolute; top: 798px; width: 750px; }\",\".framer-AdV06 .framer-xn5evr { -webkit-filter: blur(233.33334350585938px); background-color: #8941ff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -164px; filter: blur(233.33334350585938px); flex: none; height: 1504px; position: absolute; right: -1198px; width: 1450px; }\",\".framer-AdV06 .framer-30z5px { -webkit-filter: blur(155.55557250976562px); aspect-ratio: 1.2326201836852815 / 1; background-color: #ff9ad6; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(155.55557250976562px); flex: none; height: var(--framer-aspect-ratio-supported, 582px); left: 1159px; position: absolute; top: 527px; width: 717px; }\",\".framer-AdV06 .framer-xz8bub { -webkit-filter: blur(233.33334350585938px); background-color: #f1bed2; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(233.33334350585938px); flex: none; height: 789px; left: -321px; position: absolute; top: 1002px; width: 3082px; }\",\".framer-AdV06 .framer-deec4h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1500px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-jkq3z4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 579px; justify-content: center; overflow: visible; padding: 75px 50px 60px 50px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-jp5jko, .framer-AdV06 .framer-73py1t, .framer-AdV06 .framer-v98rbt, .framer-AdV06 .framer-1one3oo { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AdV06 .framer-fnxnw8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 750px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-156n793, .framer-AdV06 .framer-2fazum, .framer-AdV06 .framer-1dkk1ut, .framer-AdV06 .framer-cnv5ft, .framer-AdV06 .framer-1uoc0gt, .framer-AdV06 .framer-1v9ul5o, .framer-AdV06 .framer-be9tz, .framer-AdV06 .framer-1sk30f2, .framer-AdV06 .framer-1dwg547, .framer-AdV06 .framer-1uythtp, .framer-AdV06 .framer-1p0lbs, .framer-AdV06 .framer-1sfccyq, .framer-AdV06 .framer-qcegfn, .framer-AdV06 .framer-1y5v103, .framer-AdV06 .framer-166nidd, .framer-AdV06 .framer-43rxvk, .framer-AdV06 .framer-c3cccu, .framer-AdV06 .framer-1vjiqw2, .framer-AdV06 .framer-1ary2fs, .framer-AdV06 .framer-1odyo9y, .framer-AdV06 .framer-1lx40q9, .framer-AdV06 .framer-im5lec, .framer-AdV06 .framer-1clgq3u, .framer-AdV06 .framer-niahp { --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-AdV06 .framer-8bbu3z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-gqnhn3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-AdV06 .framer-98tjtz { aspect-ratio: 0.9142857142857143 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 406px); }\",\".framer-AdV06 .framer-1ozia2v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-durwv, .framer-AdV06 .framer-z92t32 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AdV06 .framer-1kn3u8p { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-16kt11q, .framer-AdV06 .framer-n9imkc, .framer-AdV06 .framer-st3xqd, .framer-AdV06 .framer-2qalpz { align-content: center; align-items: center; align-self: start; background-color: rgba(196, 138, 246, 0.2); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AdV06 .framer-1jh14ii, .framer-AdV06 .framer-1wh03ov, .framer-AdV06 .framer-152en0n, .framer-AdV06 .framer-1fd6q49 { flex: none; height: 112px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-1iacde7, .framer-AdV06 .framer-1f0hp03, .framer-AdV06 .framer-rkusf7, .framer-AdV06 .framer-17kdml5 { 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: 20px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-1rvcobk, .framer-AdV06 .framer-1xhq8bp, .framer-AdV06 .framer-1cxx7xr, .framer-AdV06 .framer-tbkd49 { flex: none; height: 45px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AdV06 .framer-16xoy94, .framer-AdV06 .framer-18nmyd3, .framer-AdV06 .framer-smcprn, .framer-AdV06 .framer-12ifttt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-1a26rjb-container, .framer-AdV06 .framer-1q55wac-container, .framer-AdV06 .framer-hcztq7-container, .framer-AdV06 .framer-1giy34p-container { flex: 1 0 0px; height: 50px; position: relative; width: 1px; }\",\".framer-AdV06 .framer-11s4yw5-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-ok9v7d-container, .framer-AdV06 .framer-yecgu0-container, .framer-AdV06 .framer-o2ga7h-container, .framer-AdV06 .framer-1v3b4wd-container, .framer-AdV06 .framer-1uln22l-container, .framer-AdV06 .framer-4h26lc-container, .framer-AdV06 .framer-rfaqk1-container, .framer-AdV06 .framer-8dtnm3-container, .framer-AdV06 .framer-1s1u3vd-container, .framer-AdV06 .framer-10fui1s-container, .framer-AdV06 .framer-1m2ck7v-container, .framer-AdV06 .framer-1dtvk8y-container, .framer-AdV06 .framer-1iehq7g-container, .framer-AdV06 .framer-1uetf97-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-AdV06 .framer-dbwa6a, .framer-AdV06 .framer-1k4d9p, .framer-AdV06 .framer-kd4yml { --border-bottom-width: 0px; --border-color: var(--token-9756e2cb-7208-4f0d-bb1d-a01803b4cf66, #f4e9fe); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-21e1180c-57e3-4556-9d0a-b9ebaba522ca, #faf5ff) 0%, var(--token-2f0aa2bc-b18e-4cbc-92a6-dfaa852d9b18, rgb(251, 247, 255)) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 80px 96px 80px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-11zdbyp, .framer-AdV06 .framer-19yn21l, .framer-AdV06 .framer-muetff, .framer-AdV06 .framer-1gw7uj0, .framer-AdV06 .framer-1p1hmcj, .framer-AdV06 .framer-gyl279 { align-content: center; align-items: center; 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-AdV06 .framer-117jitm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AdV06 .framer-i1h7w2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-8eotcd { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-1mv1z12, .framer-AdV06 .framer-6pc85h, .framer-AdV06 .framer-1wewcit { --border-bottom-width: 1px; --border-color: rgba(168, 159, 179, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.48174984141951427px 1.8306493973941542px -1.25px rgba(53, 20, 71, 0.18), 0px 1.8308266425947657px 6.957141241860109px -2.5px rgba(53, 20, 71, 0.16), 0px 8px 30.4px -3.75px rgba(53, 20, 71, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 1fr; }\",\".framer-AdV06 .framer-169r50r, .framer-AdV06 .framer-1wcuyz6, .framer-AdV06 .framer-1ac0brv { border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 320px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-kpgq5i, .framer-AdV06 .framer-opw3j4, .framer-AdV06 .framer-1rt9uzc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-1un0o16, .framer-AdV06 .framer-16oe6ie { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-b2jaz0 { align-content: center; align-items: center; background-color: #301745; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AdV06 .framer-1ag55wx, .framer-AdV06 .framer-192lk3j { flex: none; gap: 0px; height: 100%; left: 0px; opacity: 0.3; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-AdV06 .framer-5cjp4y { -webkit-filter: blur(233.33334350585938px); background-color: #353196; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -93px; filter: blur(233.33334350585938px); flex: none; height: 890px; left: 808px; position: absolute; right: -398px; }\",\".framer-AdV06 .framer-3n0s1u { -webkit-filter: blur(233.33334350585938px); background-color: #8941ff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -166px; filter: blur(233.33334350585938px); flex: none; left: -980px; position: absolute; right: 690px; top: 236px; }\",\".framer-AdV06 .framer-hpo3mk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-1fzmni2 { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1216px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-1esgz80-container, .framer-AdV06 .framer-127ey7-container, .framer-AdV06 .framer-bf2mg3-container, .framer-AdV06 .framer-1oe3jl9-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-AdV06 .framer-1v9ourk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 105px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 80px 96px 80px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-w8x8ek, .framer-AdV06 .framer-135t0xr, .framer-AdV06 .framer-wgbf3o, .framer-AdV06 .framer-s81xtu, .framer-AdV06 .framer-1vyqzse, .framer-AdV06 .framer-11o2c6n, .framer-AdV06 .framer-szzrw7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AdV06 .framer-16p25fs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-rjbt13, .framer-AdV06 .framer-zpusig, .framer-AdV06 .framer-jwgpcm, .framer-AdV06 .framer-9cnts3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-heft5n, .framer-AdV06 .framer-zyuuiv, .framer-AdV06 .framer-1a9raoj { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 385px; }\",\".framer-AdV06 .framer-cv1xj0, .framer-AdV06 .framer-1k4ac4i, .framer-AdV06 .framer-1554hi1, .framer-AdV06 .framer-1qb40tb { --border-bottom-width: 1px; --border-color: rgba(168, 159, 179, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 250px; position: relative; width: 390px; }\",\".framer-AdV06 .framer-793rvn, .framer-AdV06 .framer-e2t2pw, .framer-AdV06 .framer-mimxk9, .framer-AdV06 .framer-lnix6w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-19tqc98 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 264px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 385px; }\",\".framer-AdV06 .framer-1hlhacl { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AdV06 .framer-1e0h1jd { align-content: center; align-items: center; background-color: #301745; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 80px 96px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AdV06 .framer-14e78qz { -webkit-filter: blur(233.33334350585938px); background-color: #353196; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -93px; filter: blur(233.33334350585938px); flex: none; height: 532px; left: -443px; position: absolute; right: 410px; }\",\".framer-AdV06 .framer-1rwqn9u { -webkit-filter: blur(100px); background-color: #8941ff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 944px; filter: blur(100px); flex: none; left: 126px; position: absolute; right: 126px; top: -219px; }\",\".framer-AdV06 .framer-165jqss { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1216px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-n13nrv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1216px; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-24pivm { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-yrg0m, .framer-AdV06 .framer-17i5nkm, .framer-AdV06 .framer-kzjtni, .framer-AdV06 .framer-1g0on0k, .framer-AdV06 .framer-18ktjnk, .framer-AdV06 .framer-xj54zt, .framer-AdV06 .framer-1axd09r, .framer-AdV06 .framer-1mp4y8n { --border-bottom-width: 1px; --border-color: rgba(168, 159, 179, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.48174984141951427px 1.8306493973941542px -1.25px rgba(53, 20, 71, 0.18), 0px 1.8308266425947657px 6.957141241860109px -2.5px rgba(53, 20, 71, 0.16), 0px 8px 30.4px -3.75px rgba(53, 20, 71, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-AdV06 .framer-1pxl4t8, .framer-AdV06 .framer-w6zfj0, .framer-AdV06 .framer-c909ak, .framer-AdV06 .framer-1pu3v08, .framer-AdV06 .framer-1gnc8ux, .framer-AdV06 .framer-1ei9snh, .framer-AdV06 .framer-6yjuxg, .framer-AdV06 .framer-3xx3k3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-lorlgk, .framer-AdV06 .framer-3hm2h1, .framer-AdV06 .framer-1061mcm, .framer-AdV06 .framer-8nsg7u, .framer-AdV06 .framer-1xczsg5, .framer-AdV06 .framer-2lbhk8, .framer-AdV06 .framer-yowid6, .framer-AdV06 .framer-mft8w6 { flex: none; height: 150px; overflow: hidden; position: relative; width: 100%; }\",\".framer-AdV06 .framer-1x56i9n, .framer-AdV06 .framer-1bk8jbn, .framer-AdV06 .framer-10ry9yk, .framer-AdV06 .framer-n8rl1c, .framer-AdV06 .framer-1xac3ls, .framer-AdV06 .framer-1akf7ph, .framer-AdV06 .framer-1clryqg, .framer-AdV06 .framer-xblljs { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 0px; flex: none; height: 150px; left: 0px; position: absolute; right: 0px; }\",\".framer-AdV06 .framer-bv8a5r, .framer-AdV06 .framer-4keep3, .framer-AdV06 .framer-15cdkw4, .framer-AdV06 .framer-2p13ul, .framer-AdV06 .framer-1fstkqq, .framer-AdV06 .framer-ewob3t, .framer-AdV06 .framer-1sjqbnc, .framer-AdV06 .framer-1aedx4p { background: linear-gradient(180deg, rgba(196, 138, 246, 0) 0%, rgba(174, 93, 240, 0.5) 100%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-AdV06 .framer-9nhv3e, .framer-AdV06 .framer-6krile, .framer-AdV06 .framer-ah2wnj, .framer-AdV06 .framer-1gdjbkl, .framer-AdV06 .framer-pqnyrl, .framer-AdV06 .framer-15grw96, .framer-AdV06 .framer-1l8wrls, .framer-AdV06 .framer-ip1314 { 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: 10px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-tmve97, .framer-AdV06 .framer-1jw62zy, .framer-AdV06 .framer-mthun0, .framer-AdV06 .framer-1vri052, .framer-AdV06 .framer-1svvsa7, .framer-AdV06 .framer-15eabuj, .framer-AdV06 .framer-10tc480, .framer-AdV06 .framer-1cfcyqc { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AdV06 .framer-adocw4-container { flex: none; height: auto; max-width: 1000px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-9gtix2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 80px 160px 80px; position: relative; width: 100%; }\",\".framer-AdV06 .framer-1w6zo2w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-AdV06[data-border=\"true\"]::after, .framer-AdV06 [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-AdV06.framer-1itnppb { height: 10307px; width: 810px; } .framer-AdV06 .framer-14tqaf4 { padding: 100px 20px 0px 20px; } .framer-AdV06 .framer-1es05it { padding: 50px 0px 65px 0px; } .framer-AdV06 .framer-1d8n41n { min-height: 80px; } .framer-AdV06 .framer-deec4h { height: 1500px; } .framer-AdV06 .framer-jkq3z4 { flex-direction: column; height: min-content; justify-content: flex-start; padding: 0px 30px 85px 30px; } .framer-AdV06 .framer-jp5jko { align-content: center; align-items: center; flex: none; width: 100%; } .framer-AdV06 .framer-fnxnw8 { max-width: 100%; } .framer-AdV06 .framer-8bbu3z { align-content: center; align-items: center; } .framer-AdV06 .framer-98tjtz { height: var(--framer-aspect-ratio-supported, 480px); width: 439px; } .framer-AdV06 .framer-1ozia2v { padding: 0px 30px 30px 30px; } .framer-AdV06 .framer-durwv { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-AdV06 .framer-1kn3u8p { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-AdV06 .framer-dbwa6a { padding: 96px 20px 96px 20px; } .framer-AdV06 .framer-8eotcd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; justify-content: flex-start; width: 400px; } .framer-AdV06 .framer-1mv1z12, .framer-AdV06 .framer-6pc85h, .framer-AdV06 .framer-1wewcit { align-self: unset; width: 100%; } .framer-AdV06 .framer-169r50r, .framer-AdV06 .framer-1wcuyz6, .framer-AdV06 .framer-1ac0brv { max-width: 400px; } .framer-AdV06 .framer-b2jaz0 { padding: 40px; } .framer-AdV06 .framer-rjbt13, .framer-AdV06 .framer-zpusig, .framer-AdV06 .framer-jwgpcm { gap: 40px; } .framer-AdV06 .framer-heft5n, .framer-AdV06 .framer-zyuuiv, .framer-AdV06 .framer-1a9raoj { align-content: center; align-items: center; order: 0; width: 40%; } .framer-AdV06 .framer-cv1xj0, .framer-AdV06 .framer-1k4ac4i, .framer-AdV06 .framer-1554hi1, .framer-AdV06 .framer-1qb40tb { max-width: 400px; width: 100%; } .framer-AdV06 .framer-73py1t, .framer-AdV06 .framer-v98rbt, .framer-AdV06 .framer-1one3oo { order: 1; } .framer-AdV06 .framer-9cnts3 { align-content: flex-start; align-items: flex-start; gap: 40px; } .framer-AdV06 .framer-19tqc98 { align-content: center; align-items: center; height: min-content; order: 0; width: 40%; } .framer-AdV06 .framer-1hlhacl { align-self: unset; height: min-content; order: 1; } .framer-AdV06 .framer-24pivm { gap: 40px; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); } .framer-AdV06 .framer-adocw4-container { height: 444px; } .framer-AdV06 .framer-9gtix2 { padding: 96px 20px 160px 20px; }}\",\"@media (max-width: 809px) { .framer-AdV06.framer-1itnppb { width: 390px; } .framer-AdV06 .framer-1h8kga6-container { height: auto; left: 50%; transform: translateX(-50%); } .framer-AdV06 .framer-14tqaf4 { padding: 100px 20px 0px 20px; } .framer-AdV06 .framer-1es05it { gap: 45px; padding: 45px 0px 0px 0px; } .framer-AdV06 .framer-jkq3z4 { flex-direction: column; height: min-content; padding: 0px 0px 60px 0px; } .framer-AdV06 .framer-jp5jko { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-AdV06 .framer-gqnhn3-container { width: 100%; } .framer-AdV06 .framer-98tjtz { height: var(--framer-aspect-ratio-supported, 383px); width: 100%; } .framer-AdV06 .framer-1ozia2v, .framer-AdV06 .framer-1un0o16, .framer-AdV06 .framer-16oe6ie { padding: 0px; } .framer-AdV06 .framer-durwv, .framer-AdV06 .framer-w8x8ek, .framer-AdV06 .framer-135t0xr, .framer-AdV06 .framer-wgbf3o, .framer-AdV06 .framer-s81xtu, .framer-AdV06 .framer-1vyqzse, .framer-AdV06 .framer-11o2c6n, .framer-AdV06 .framer-z92t32, .framer-AdV06 .framer-szzrw7 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-AdV06 .framer-1kn3u8p { grid-template-columns: repeat(1, minmax(50px, 1fr)); padding: 20px; } .framer-AdV06 .framer-dbwa6a, .framer-AdV06 .framer-1v9ourk, .framer-AdV06 .framer-1k4d9p { padding: 96px 20px 96px 20px; } .framer-AdV06 .framer-i1h7w2, .framer-AdV06 .framer-n13nrv { justify-content: flex-start; } .framer-AdV06 .framer-8eotcd, .framer-AdV06 .framer-24pivm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; justify-content: flex-start; } .framer-AdV06 .framer-1mv1z12, .framer-AdV06 .framer-6pc85h, .framer-AdV06 .framer-1wewcit { align-self: unset; width: 100%; } .framer-AdV06 .framer-169r50r, .framer-AdV06 .framer-1wcuyz6, .framer-AdV06 .framer-1ac0brv { height: 280px; } .framer-AdV06 .framer-b2jaz0 { background-color: #36194d; border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; gap: 40px; padding: 40px 20px 40px 20px; will-change: unset; } .framer-AdV06 .framer-5cjp4y { left: unset; right: -418px; width: 750px; } .framer-AdV06 .framer-3n0s1u { right: unset; width: 1450px; } .framer-AdV06 .framer-1fzmni2 { grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); } .framer-AdV06 .framer-1esgz80-container, .framer-AdV06 .framer-127ey7-container, .framer-AdV06 .framer-bf2mg3-container, .framer-AdV06 .framer-1oe3jl9-container { height: auto; } .framer-AdV06 .framer-16p25fs { gap: 100px; } .framer-AdV06 .framer-rjbt13, .framer-AdV06 .framer-zpusig, .framer-AdV06 .framer-jwgpcm, .framer-AdV06 .framer-9cnts3 { flex-direction: column; gap: 40px; } .framer-AdV06 .framer-heft5n, .framer-AdV06 .framer-zyuuiv, .framer-AdV06 .framer-1a9raoj { order: 1; width: 100%; } .framer-AdV06 .framer-cv1xj0, .framer-AdV06 .framer-1k4ac4i, .framer-AdV06 .framer-1554hi1 { overflow: hidden; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-AdV06 .framer-73py1t, .framer-AdV06 .framer-v98rbt, .framer-AdV06 .framer-1one3oo { flex: none; order: 0; width: 100%; } .framer-AdV06 .framer-19tqc98 { height: min-content; order: 1; width: 100%; } .framer-AdV06 .framer-1qb40tb { height: 280px; overflow: hidden; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-AdV06 .framer-1hlhacl { align-self: unset; flex: none; height: min-content; order: 0; width: 100%; } .framer-AdV06 .framer-1e0h1jd { background-color: #36194d; border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; gap: 40px; padding: 60px 20px 40px 20px; will-change: unset; } .framer-AdV06 .framer-14e78qz { left: unset; right: -418px; width: 1393px; } .framer-AdV06 .framer-1rwqn9u { right: unset; width: 1108px; } .framer-AdV06 .framer-yecgu0-container { order: 0; } .framer-AdV06 .framer-yrg0m, .framer-AdV06 .framer-17i5nkm, .framer-AdV06 .framer-kzjtni, .framer-AdV06 .framer-1g0on0k, .framer-AdV06 .framer-18ktjnk, .framer-AdV06 .framer-xj54zt, .framer-AdV06 .framer-1axd09r, .framer-AdV06 .framer-1mp4y8n { align-self: unset; width: 327px; } .framer-AdV06 .framer-kd4yml { gap: 30px; padding: 60px 16px 40px 16px; } .framer-AdV06 .framer-9gtix2 { padding: 80px 20px 80px 20px; }}\",\"@media (min-width: 1400px) { .framer-AdV06.framer-1itnppb { width: 1400px; } .framer-AdV06 .framer-12x1m9f { height: 1072px; } .framer-AdV06 .framer-deec4h { height: 930px; } .framer-AdV06 .framer-jkq3z4 { height: 540px; padding: 75px 50px 50px 50px; } .framer-AdV06 .framer-98tjtz { height: var(--framer-aspect-ratio-supported, 547px); width: 500px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11628.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iJrwxxHjE\":{\"layout\":[\"fixed\",\"fixed\"]},\"LP2GwFrCi\":{\"layout\":[\"fixed\",\"auto\"]},\"IngA6Q_oJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-AdV06\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:11628.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v14/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4S-EiAou6Y.woff2\",weight:\"700\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v14/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v14/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v14/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4S-EiAou6Y.woff2\",weight:\"300\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v14/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"}]},...TopNavFonts,...RosieOnboardingFonts,...AudioFonts,...LogoWallFonts,...TestimonialFonts,...FeatureGridItemFonts,...CompareTabsFonts,...DemoVideoFonts,...FAQItemFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"11628.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iJrwxxHjE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LP2GwFrCi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IngA6Q_oJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "o", "e", "t", "h", "moduleBaseUrl", "icons", "iconKeys", "weightOptions", "styleKeyOptions", "styleOptionPropKeys", "optionKey", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "style", "isMounted", "pe", "iconKey", "useIconSelection", "styleOptionProps", "prop", "iconStyle", "se", "iconStyleKey", "activeStyle", "SelectedIcon", "setSelectedIcon", "ye", "h", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "hideStyleOptions", "styleOptions", "styleOptionsNumber", "name", "getIconSelection", "icon", "addPropertyControls", "ControlType", "result", "defaultEvents", "MaterialFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ZJGN9TjpW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1iyyedm", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText", "css", "FrameradYJKJRMF", "withCSS", "adYJKJRMF_default", "addPropertyControls", "ControlType", "addFonts", "PlayButtonFonts", "getFonts", "adYJKJRMF_default", "YouTubeFonts", "Youtube", "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", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "NDh_q2j7g", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap490slt", "args", "ZJGN9TjpW1m7vuza", "ZJGN9TjpWlx569k", "ZJGN9TjpWcuqkpt", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FramerncR6rR_5r", "withCSS", "ncR6rR_5r_default", "addPropertyControls", "ControlType", "addFonts", "TopNavFonts", "getFonts", "I32Xy9bX9_default", "ContainerWithFX", "withFX", "Container", "RosieOnboardingFonts", "RosieOnboarding", "AudioFonts", "Audio", "LogoWallFonts", "ihIpnJEW0_default", "TestimonialFonts", "fXmKzrF8p_default", "FeatureGridItemFonts", "TzvX83uUL_default", "CompareTabsFonts", "rSkDP9SYH_default", "DemoVideoFonts", "ncR6rR_5r_default", "FAQItemFonts", "kQ4Z2B8UB_default", "FooterFonts", "vefrKbbuN_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "x", "RichText", "getLoadingLazyAtYPosition", "Image2", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
