{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/sIxZFVxIOBdfeANYhkj2/AKjEWtWsxEDuYyTSbznI/AnimatedCounter.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/ctmXoUSOcrdKKIWIDQdn/1oBYfSxSw8ZDUM45jNtC/B3zsgmHy2.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/kMDGRyD8NwbZSm6mJqoq/tAkNFUmzBsW7FdrdWi7z/G0eJWP8wW.js", "ssg:https://framerusercontent.com/modules/YSOB8M0cIhSM44rqolxu/zfTpmU1h6FPiLlNPuKv7/R34jH3O2I.js", "ssg:https://framerusercontent.com/modules/iqcF7Pcmsjfx1zpbGOv0/jNzqUpUE6YKqbbChhph2/IlwacKvT7.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js", "ssg:https://framerusercontent.com/modules/91Px6OqouF8yb5Nzu6UB/6kZfJGQ9JkFf21fPrWDE/P7VQnLHIp.js", "ssg:https://framerusercontent.com/modules/ijMcGjUZjBdM175ZmJNw/1dGiTrbBok1GWlwSzmMW/SwrQB3z2N.js", "ssg:https://framerusercontent.com/modules/do8qfsFfjPl9on5FG0Na/ugm6BhgSQMnGIBD6Am3a/nU6HSULoN.js", "ssg:https://framerusercontent.com/modules/gWa4vFuHN4IwHFj4Ulhw/jhRAJqKAJ5YKqy8dk1bm/Ok3eUmto_.js", "ssg:https://framerusercontent.com/modules/kgg6bPv3GnnMAlZnwZnq/MgvbFEmrz067IrKBplJC/LiquidBG.js", "ssg:https://framerusercontent.com/modules/yr3AvTFqn4EnyuxkxBom/2Ea5kkHPgi9yoxMpnvTR/Rz69Qmuii.js", "ssg:https://framerusercontent.com/modules/ej9JU4djpmdQEzfFTQKZ/CEWYf9jIFBeHFKHeuPBi/iHfXwDdXd.js", "ssg:https://framerusercontent.com/modules/ktKyXit9KVYmeDQ1ukFN/cgSNQF0rdi2mFf2UQXBA/augiA20Il.js"],
  "sourcesContent": ["/*\n * Animated Counter by framer.today\n * v1.0.1\n *\n * hi@framer.today\n * _joerl on \uD835\uDD4F\n *\n * Full terms here \u21B4\n * https://framer.today/license\n *\n */import{jsx as _jsx}from\"react/jsx-runtime\";import{animate,motion,useInView}from\"framer-motion\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";/**\n * @framerDisableUnlink\n */export default function AnimatedCounter(props){const{from,to,duration,decimalPlaces,decimalSeparator,font:{fontFamily,fontWeight,fontSize,lineHeight,letterSpacing,textAlign},color,playOnLoad,once}=props;const ref=useRef(null);const isInView=useInView(ref);const[displayValue,setDisplayValue]=useState(()=>formatNumber(from));const isCanvas=RenderTarget.current()===RenderTarget.canvas;const ariaLabel=`Counter ends at ${to}`;function formatNumber(value){let formattedNumber=value.toFixed(decimalPlaces).replace(\".\",decimalSeparator);return formattedNumber;}useEffect(()=>{if(!isCanvas&&(playOnLoad||isInView)){const animationControl=animate(from,to,{duration,onUpdate:latest=>{setDisplayValue(formatNumber(latest));}});return()=>animationControl.stop();}},[from,to,duration,decimalPlaces,decimalSeparator,playOnLoad,isInView]);return /*#__PURE__*/_jsx(motion.div,{ref:ref,initial:{opacity:isCanvas?1:0},whileInView:{opacity:1},style:{fontFamily,fontWeight,fontSize,lineHeight,letterSpacing,textAlign,color,fontVariantNumeric:\"tabular-nums\",userSelect:\"none\"},\"aria-label\":ariaLabel,children:isCanvas?formatNumber(to):displayValue});}AnimatedCounter.defaultProps={from:0,to:24,duration:5,decimalPlaces:0,decimalSeparator:\".\",font:{fontFamily:\"Manrope\",fontWeight:\"400\",fontSize:40,lineHeight:\"1.5em\",letterSpacing:\"normal\",textAlign:\"left\"},color:\"#121212\",playOnLoad:true,once:true};addPropertyControls(AnimatedCounter,{from:{type:ControlType.Number,title:\"From\",defaultValue:0,min:0,step:.1,displayStepper:true},to:{type:ControlType.Number,title:\"To\",defaultValue:16,min:0,step:.1,displayStepper:true},duration:{type:ControlType.Number,title:\"Duration\",defaultValue:2.5,min:0,step:.1,displayStepper:true},decimalPlaces:{type:ControlType.Number,displayStepper:true,title:\"Decimal Places\",defaultValue:0,min:0,max:2,step:1},decimalSeparator:{type:ControlType.Enum,title:\"\u21B3 Separator\",defaultValue:\".\",options:[\".\",\",\"],optionTitles:[\".\",\",\"],hidden:({decimalPlaces})=>decimalPlaces===0},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\",defaultValue:{fontFamily:\"Manrope\",fontWeight:\"400\",fontSize:40,lineHeight:\"1.5em\",letterSpacing:\"normal\",textAlign:\"left\"},displayFontSize:true,displayTextAlignment:false,defaultFontType:\"monospace\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#121212\"},once:{// New property control for 'once' option\ntype:ControlType.Boolean,title:\"Once\",defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\"},playOnLoad:{type:ControlType.Boolean,title:\"InView?\",defaultValue:true,enabledTitle:\"No\",disabledTitle:\"Yes\",description:`\n        \n        *from framer.today*\n [License](https://framer.today/license)\n    `}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AnimatedCounter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AnimatedCounter.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 (3fa6aa4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,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\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const MaterialFonts=getFonts(Material);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"tu9YPkxvM\",\"NU6N8Q5rZ\",\"er0JjUgb4\",\"L1Dt7Yu7v\",\"b3v7KDH_2\"];const serializationHash=\"framer-LjIUj\";const variantClassNames={b3v7KDH_2:\"framer-v-1wc3f40\",er0JjUgb4:\"framer-v-1wvjv57\",L1Dt7Yu7v:\"framer-v-1kdwv7p\",NU6N8Q5rZ:\"framer-v-12yw20z\",tu9YPkxvM:\"framer-v-u4a1xe\"};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:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Facebook:\"L1Dt7Yu7v\",Instagram:\"tu9YPkxvM\",Linkedin:\"b3v7KDH_2\",Tiktok:\"er0JjUgb4\",Youtube:\"NU6N8Q5rZ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"tu9YPkxvM\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tu9YPkxvM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"L1Dt7Yu7v\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"er0JjUgb4\")return true;return false;};const isDisplayed2=()=>{if([\"er0JjUgb4\",\"L1Dt7Yu7v\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/daytin_app/\",...addPropertyOverrides({b3v7KDH_2:{href:\"https://www.linkedin.com/company/daytin/\",openInNewTab:true},er0JjUgb4:{href:\"https://www.tiktok.com/@daytin_app\",openInNewTab:true},L1Dt7Yu7v:{href:\"https://www.facebook.com/Daytinmeet\",openInNewTab:true},NU6N8Q5rZ:{href:\"https://www.youtube.com/@daytin-5515\",openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-u4a1xe\",className,classNames)} framer-1j9do1a`,\"data-framer-name\":\"Instagram\",layoutDependency:layoutDependency,layoutId:\"tu9YPkxvM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:'conic-gradient(from 0deg at 50% 50%, var(--token-de358446-84c4-4d42-8e29-6a64e6679335, rgb(253, 172, 244)) /* {\"name\":\"Pink\"} */ 72deg, var(--token-4d9e228e-9963-4cfe-b969-2e681a7b08b9, rgb(255, 122, 106)) /* {\"name\":\"Orange\"} */ 180deg, var(--token-fb32cf46-36ea-4322-a09f-3bdf0917fcca, rgb(245, 185, 140)) /* {\"name\":\"Light orange\"} */ 288deg)',borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,...style},...addPropertyOverrides({b3v7KDH_2:{\"data-framer-name\":\"Linkedin\"},er0JjUgb4:{\"data-framer-name\":\"Tiktok\"},L1Dt7Yu7v:{\"data-framer-name\":\"Facebook\"},NU6N8Q5rZ:{\"data-framer-name\":\"Youtube\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h7i5hi-container\",layoutDependency:layoutDependency,layoutId:\"KqJOkgQv6-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-91d8a9dc-39ca-451e-abeb-1f288d4f0e21, rgb(43, 0, 77))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Facebook\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"KqJOkgQv6\",layoutId:\"KqJOkgQv6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p5y2oz-container\",layoutDependency:layoutDependency,layoutId:\"ZJmMoBZqW-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-72570b80-7fc4-48fb-8635-e7791aa4f489, rgb(43, 0, 77))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"TiktokLogo\",id:\"ZJmMoBZqW\",layoutId:\"ZJmMoBZqW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-65qxmf-container\",layoutDependency:layoutDependency,layoutId:\"T24izHEGx-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-72570b80-7fc4-48fb-8635-e7791aa4f489, rgb(43, 0, 77))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Instagram\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"T24izHEGx\",layoutId:\"T24izHEGx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({b3v7KDH_2:{iconSelection:\"LinkedIn\"},NU6N8Q5rZ:{iconSelection:\"YouTube\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LjIUj.framer-1j9do1a, .framer-LjIUj .framer-1j9do1a { display: block; }\",\".framer-LjIUj.framer-u4a1xe { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 50px; }\",\".framer-LjIUj .framer-1h7i5hi-container, .framer-LjIUj .framer-p5y2oz-container, .framer-LjIUj .framer-65qxmf-container { flex: none; height: 80%; position: relative; width: 80%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LjIUj.framer-u4a1xe { gap: 0px; } .framer-LjIUj.framer-u4a1xe > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LjIUj.framer-u4a1xe > :first-child { margin-left: 0px; } .framer-LjIUj.framer-u4a1xe > :last-child { margin-right: 0px; } }\",\".framer-LjIUj.framer-v-12yw20z.framer-u4a1xe, .framer-LjIUj.framer-v-1wvjv57.framer-u4a1xe, .framer-LjIUj.framer-v-1kdwv7p.framer-u4a1xe, .framer-LjIUj.framer-v-1wc3f40.framer-u4a1xe { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 50px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 50\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"NU6N8Q5rZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"er0JjUgb4\":{\"layout\":[\"fixed\",\"fixed\"]},\"L1Dt7Yu7v\":{\"layout\":[\"fixed\",\"fixed\"]},\"b3v7KDH_2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerB3zsgmHy2=withCSS(Component,css,\"framer-LjIUj\");export default FramerB3zsgmHy2;FramerB3zsgmHy2.displayName=\"Socials\";FramerB3zsgmHy2.defaultProps={height:50,width:50};addPropertyControls(FramerB3zsgmHy2,{variant:{options:[\"tu9YPkxvM\",\"NU6N8Q5rZ\",\"er0JjUgb4\",\"L1Dt7Yu7v\",\"b3v7KDH_2\"],optionTitles:[\"Instagram\",\"Youtube\",\"Tiktok\",\"Facebook\",\"Linkedin\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerB3zsgmHy2,[{explicitInter:true,fonts:[]},...MaterialFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB3zsgmHy2\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"50\",\"framerIntrinsicWidth\":\"50\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NU6N8Q5rZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"er0JjUgb4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"L1Dt7Yu7v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"b3v7KDH_2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./B3zsgmHy2.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (a2fb474)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"gPhs2Vnu_\",\"TQzZq9MMq\"];const serializationHash=\"framer-KD99F\";const variantClassNames={gPhs2Vnu_:\"framer-v-137tn30\",TQzZq9MMq:\"framer-v-gbnm6x\"};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:60,delay:0,mass:1,stiffness:500,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 humanReadableVariantMap={Partenaires:\"gPhs2Vnu_\",Presse:\"TQzZq9MMq\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"gPhs2Vnu_\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gPhs2Vnu_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"TQzZq9MMq\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"TQzZq9MMq\")return true;return false;};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-137tn30\",className,classNames),\"data-framer-name\":\"Partenaires\",layoutDependency:layoutDependency,layoutId:\"gPhs2Vnu_\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({TQzZq9MMq:{\"data-framer-name\":\"Presse\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sc6t2w-container\",layoutDependency:layoutDependency,layoutId:\"qx2tf4Nbw-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:50,height:\"100%\",hoverFactor:.7,id:\"qx2tf4Nbw\",layoutId:\"qx2tf4Nbw\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a7ljsy\",\"data-framer-name\":\"Partenaires stack\",layoutDependency:layoutDependency,layoutId:\"lcDqNGSzr\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"La french Tech\",fit:\"fit\",intrinsicHeight:27,intrinsicWidth:66,pixelHeight:375,pixelWidth:195,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ppHivt3uM8bbv5XJYgOp7N3C8.png\"},className:\"framer-mhunkm\",\"data-framer-name\":\"French Tech\",layoutDependency:layoutDependency,layoutId:\"B0AmEqG2g\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Bpi France\",fit:\"fit\",intrinsicHeight:27,intrinsicWidth:105,pixelHeight:214,pixelWidth:211,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EycObhKGXuJCyW5K1xnNYfT5oug.png\"},className:\"framer-11p5xd9\",\"data-framer-name\":\"BPI\",layoutDependency:layoutDependency,layoutId:\"DyjHSNEMh\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Les determin\\xe9s\",fit:\"fit\",intrinsicHeight:27,intrinsicWidth:31,pixelHeight:886,pixelWidth:2804,positionX:\"center\",positionY:\"center\",sizes:\"120px\",src:\"https://framerusercontent.com/images/UlAT4wIkHaERg7PQukqVouj5ZZc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UlAT4wIkHaERg7PQukqVouj5ZZc.png?scale-down-to=512 512w,https://framerusercontent.com/images/UlAT4wIkHaERg7PQukqVouj5ZZc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UlAT4wIkHaERg7PQukqVouj5ZZc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UlAT4wIkHaERg7PQukqVouj5ZZc.png 2804w\"},className:\"framer-mm6r5t\",\"data-framer-name\":\"Les DTR\",layoutDependency:layoutDependency,layoutId:\"KZymA16XL\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"La french Tech\",fit:\"fit\",intrinsicHeight:27,intrinsicWidth:100,pixelHeight:375,pixelWidth:195,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ppHivt3uM8bbv5XJYgOp7N3C8.png\"},className:\"framer-141xzti\",\"data-framer-name\":\"French Tech Bis\",layoutDependency:layoutDependency,layoutId:\"lyq1gQ5BT\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Bpi France\",fit:\"fit\",intrinsicHeight:27,intrinsicWidth:31,pixelHeight:214,pixelWidth:211,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EycObhKGXuJCyW5K1xnNYfT5oug.png\"},className:\"framer-6jziai\",\"data-framer-name\":\"BPI Bis\",layoutDependency:layoutDependency,layoutId:\"TxRLAzn7F\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Les determines\",fit:\"fit\",intrinsicHeight:27,intrinsicWidth:31,pixelHeight:886,pixelWidth:2804,positionX:\"center\",positionY:\"center\",sizes:\"120px\",src:\"https://framerusercontent.com/images/UlAT4wIkHaERg7PQukqVouj5ZZc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UlAT4wIkHaERg7PQukqVouj5ZZc.png?scale-down-to=512 512w,https://framerusercontent.com/images/UlAT4wIkHaERg7PQukqVouj5ZZc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UlAT4wIkHaERg7PQukqVouj5ZZc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UlAT4wIkHaERg7PQukqVouj5ZZc.png 2804w\"},className:\"framer-1kb3hc1\",\"data-framer-name\":\"Les DTR bis\",layoutDependency:layoutDependency,layoutId:\"IAZeQwnsX\"})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-30pxg2-container\",layoutDependency:layoutDependency,layoutId:\"IhqwJSQgY-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.7,id:\"IhqwJSQgY\",layoutId:\"IhqwJSQgY\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nstkps\",\"data-framer-name\":\"Presse stack\",layoutDependency:layoutDependency,layoutId:\"agmWXEulm\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.frenchtechbordeaux.com/\",nodeId:\"escacy_Gg\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"La french Tech\",fit:\"fit\",intrinsicHeight:27,intrinsicWidth:66,pixelHeight:230,pixelWidth:180,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7BXL9pAUDvNLtcC29ABtgHTmy4.webp\"},className:\"framer-9iblui framer-1ambslk\",\"data-framer-name\":\"Client 1\",layoutDependency:layoutDependency,layoutId:\"escacy_Gg\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://actu.fr/nouvelle-aquitaine/bordeaux_33063/a-bordeaux-une-application-de-rencontres-propose-des-rendez-vous-amoureux-sans-jamais-s-etre-parle_60442860.html\",nodeId:\"kr1hP0eeD\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Actu.fr\",fit:\"fit\",intrinsicHeight:27,intrinsicWidth:40,pixelHeight:104,pixelWidth:230,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9opZR0Hi9Ek6q2YjxKXEzbCHa6w.webp\"},className:\"framer-14yorh9 framer-1ambslk\",\"data-framer-name\":\"Client 2\",layoutDependency:layoutDependency,layoutId:\"kr1hP0eeD\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://quoifaireabordeaux.com/blog/daytin-lapplication-de-rencontre-en-face-a-face-a-bordeaux/\",nodeId:\"V_6K2rxqo\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Quoi faire \\xe0 bordeaux\",fit:\"fit\",intrinsicHeight:27,intrinsicWidth:105,pixelHeight:202,pixelWidth:239,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IX06uyIl5U75kb0GvU81fgou8.png\"},className:\"framer-43ulav framer-1ambslk\",\"data-framer-name\":\"Client 3\",layoutDependency:layoutDependency,layoutId:\"V_6K2rxqo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.bougerabordeaux.com/sinformer/une-appli-de-rencontre-bordelaise-propose-des-dates-sans-setre-parle-avant/\",nodeId:\"A4gU6eIa0\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Bouger a Bordeaux\",fit:\"fit\",intrinsicHeight:27,intrinsicWidth:100,pixelHeight:237,pixelWidth:223,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BGGXONXJTQnWy2rKlr0001Ek0g0.png\"},className:\"framer-14q7okr framer-1ambslk\",\"data-framer-name\":\"Client 4\",layoutDependency:layoutDependency,layoutId:\"A4gU6eIa0\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.francebleu.fr/emissions/l-eco-d-ici-en-gironde/daytin-une-application-de-rencontres-bordelaise-pour-vraies-rencontres-uniquement-sort-ce-week-end-6166056\",nodeId:\"O_AL4VN5W\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"France Bleu\",fit:\"fit\",intrinsicHeight:27,intrinsicWidth:119,pixelHeight:140,pixelWidth:140,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N1Ihigdi87EJ5unqlFb62NW0sk.png\"},className:\"framer-c9ikub framer-1ambslk\",\"data-framer-name\":\"Client 5\",layoutDependency:layoutDependency,layoutId:\"O_AL4VN5W\"})})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KD99F.framer-1ambslk, .framer-KD99F .framer-1ambslk { display: block; }\",\".framer-KD99F.framer-137tn30 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 1200px; }\",\".framer-KD99F .framer-sc6t2w-container, .framer-KD99F .framer-30pxg2-container { flex: 1 0 0px; height: 88px; position: relative; width: 1px; }\",\".framer-KD99F .framer-1a7ljsy, .framer-KD99F .framer-1nstkps { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KD99F .framer-mhunkm, .framer-KD99F .framer-141xzti { flex: none; height: 65px; overflow: visible; position: relative; width: 120px; }\",\".framer-KD99F .framer-11p5xd9, .framer-KD99F .framer-mm6r5t, .framer-KD99F .framer-6jziai, .framer-KD99F .framer-1kb3hc1 { flex: none; height: 83px; overflow: visible; position: relative; width: 120px; }\",\".framer-KD99F .framer-9iblui, .framer-KD99F .framer-14q7okr { flex: none; height: 64px; overflow: visible; position: relative; text-decoration: none; width: 120px; }\",\".framer-KD99F .framer-14yorh9, .framer-KD99F .framer-c9ikub { aspect-ratio: 2.5925925925925926 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; text-decoration: none; width: 120px; }\",\".framer-KD99F .framer-43ulav { flex: none; height: 83px; overflow: visible; position: relative; text-decoration: none; width: 120px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KD99F.framer-137tn30, .framer-KD99F .framer-1a7ljsy, .framer-KD99F .framer-1nstkps { gap: 0px; } .framer-KD99F.framer-137tn30 > *, .framer-KD99F .framer-1a7ljsy > *, .framer-KD99F .framer-1nstkps > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KD99F.framer-137tn30 > :first-child, .framer-KD99F .framer-1a7ljsy > :first-child, .framer-KD99F .framer-1nstkps > :first-child { margin-left: 0px; } .framer-KD99F.framer-137tn30 > :last-child, .framer-KD99F .framer-1a7ljsy > :last-child, .framer-KD99F .framer-1nstkps > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 112\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TQzZq9MMq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG0eJWP8wW=withCSS(Component,css,\"framer-KD99F\");export default FramerG0eJWP8wW;FramerG0eJWP8wW.displayName=\"Logo Ticker\";FramerG0eJWP8wW.defaultProps={height:112,width:1200};addPropertyControls(FramerG0eJWP8wW,{variant:{options:[\"gPhs2Vnu_\",\"TQzZq9MMq\"],optionTitles:[\"Partenaires\",\"Presse\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerG0eJWP8wW,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG0eJWP8wW\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TQzZq9MMq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"112\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G0eJWP8wW.map", "// Generated by Framer (46f1e3d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"gD33ScrHR\",\"JJJG8CDGF\"];const serializationHash=\"framer-1yamG\";const variantClassNames={gD33ScrHR:\"framer-v-4hmazp\",JJJG8CDGF:\"framer-v-qzymht\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"gD33ScrHR\",Open:\"JJJG8CDGF\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"gD33ScrHR\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gD33ScrHR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap6j9xq4=activeVariantCallback(async(...args)=>{setVariant(\"JJJG8CDGF\");});const onTappn4gk4=activeVariantCallback(async(...args)=>{setVariant(\"gD33ScrHR\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"JJJG8CDGF\")return true;return false;};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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-4hmazp\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"gD33ScrHR\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({JJJG8CDGF:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h2jhtg\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"veR3Ws8mo\",onTap:onTap6j9xq4,...addPropertyOverrides({JJJG8CDGF:{onTap:onTappn4gk4}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13sgpee\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"tbbq5QEKP\",style:{opacity:.3,rotate:0},variants:{JJJG8CDGF:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ma5ww8\",layoutDependency:layoutDependency,layoutId:\"hdSg8kblY\",style:{backgroundColor:\"var(--token-91d8a9dc-39ca-451e-abeb-1f288d4f0e21, rgb(43, 0, 77))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-90ntj1\",layoutDependency:layoutDependency,layoutId:\"RrHwg_zWD\",style:{backgroundColor:\"var(--token-91d8a9dc-39ca-451e-abeb-1f288d4f0e21, rgb(43, 0, 77))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"What is Framer?\"})}),className:\"framer-1j3r8b2\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"jvF0lNO0V\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JJJG8CDGF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgSGFhcyBHcm90ZXNrIERpc3BsYXkgUHJvIDY1IE1lZGl1bQ==\",\"--framer-font-family\":'\"Neue Haas Grotesk Display Pro 65 Medium\", \"Neue Haas Grotesk Display Pro 65 Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),fonts:[\"CUSTOM;Neue Haas Grotesk Display Pro 65 Medium\"]}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-sdz55c\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"dGr7cS0Ho\",style:{opacity:0},variants:{JJJG8CDGF:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgSGFhcyBHcm90ZXNrIERpc3BsYXkgUHJvIDU1IFJvbWFu\",\"--framer-font-family\":'\"Neue Haas Grotesk Display Pro 55 Roman\", \"Neue Haas Grotesk Display Pro 55 Roman Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1ppy14f\",fonts:[\"CUSTOM;Neue Haas Grotesk Display Pro 55 Roman\"],layoutDependency:layoutDependency,layoutId:\"wHLoyAuYD\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{JJJG8CDGF:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1yamG.framer-1c6hd5g, .framer-1yamG .framer-1c6hd5g { display: block; }\",\".framer-1yamG.framer-4hmazp { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-1yamG .framer-h2jhtg { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-1yamG .framer-13sgpee { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-1yamG .framer-1ma5ww8 { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-1yamG .framer-90ntj1 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-1yamG .framer-1j3r8b2 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1yamG .framer-sdz55c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-1yamG .framer-1ppy14f { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1yamG.framer-4hmazp, .framer-1yamG .framer-h2jhtg, .framer-1yamG .framer-sdz55c { gap: 0px; } .framer-1yamG.framer-4hmazp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1yamG.framer-4hmazp > :first-child, .framer-1yamG .framer-sdz55c > :first-child { margin-top: 0px; } .framer-1yamG.framer-4hmazp > :last-child, .framer-1yamG .framer-sdz55c > :last-child { margin-bottom: 0px; } .framer-1yamG .framer-h2jhtg > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-1yamG .framer-h2jhtg > :first-child { margin-left: 0px; } .framer-1yamG .framer-h2jhtg > :last-child { margin-right: 0px; } .framer-1yamG .framer-sdz55c > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JJJG8CDGF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerR34jH3O2I=withCSS(Component,css,\"framer-1yamG\");export default FramerR34jH3O2I;FramerR34jH3O2I.displayName=\"Row\";FramerR34jH3O2I.defaultProps={height:88,width:400};addPropertyControls(FramerR34jH3O2I,{variant:{options:[\"gD33ScrHR\",\"JJJG8CDGF\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerR34jH3O2I,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Neue Haas Grotesk Display Pro 65 Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/GOW5fAs7vHkKuMlMQBmQpkLcM.woff2\"},{family:\"Neue Haas Grotesk Display Pro 55 Roman\",source:\"custom\",url:\"https://framerusercontent.com/assets/tmLwqa5rh55YXw6gAs9GB7y6CY.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerR34jH3O2I\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JJJG8CDGF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"88\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./R34jH3O2I.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/YSOB8M0cIhSM44rqolxu/zfTpmU1h6FPiLlNPuKv7/R34jH3O2I.js\";const RowFonts=getFonts(Row);const serializationHash=\"framer-5o3la\";const variantClassNames={V9j8j2mp9:\"framer-v-1dbhgey\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"V9j8j2mp9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1dbhgey\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"V9j8j2mp9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-12c4f709-e900-4107-9c8b-6f1213d6168f, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4q59wr-container\",layoutDependency:layoutDependency,layoutId:\"hM7qj3czg-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"hM7qj3czg\",layoutId:\"hM7qj3czg\",style:{width:\"100%\"},T8rQFvSBR:\"C\u2019est le concept m\\xeame de Daytin ! Ici pas de chichi, pas de blabla, rien que la rencontre !\\nAlors garde bien au chaud tes meilleures disquettes pour le jour de ton date. \",variant:\"gD33ScrHR\",W88zB8mIG:\"Pourquoi je ne trouve pas d\u2019espace messagerie ?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yoc5ur\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"lFvCvvqKp\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+89,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gz6jxu-container\",layoutDependency:layoutDependency,layoutId:\"boezQRAar-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"boezQRAar\",layoutId:\"boezQRAar\",style:{width:\"100%\"},T8rQFvSBR:\"Il te permet d'indiquer tes disponibilit\\xe9s. Que ce soit les villes, les jours et les heures o\\xf9 tu es pr\\xeat \\xe0 faire de nouvelles rencontres. Pense \\xe0 avoir toujours au moins une date de renseign\\xe9e pour que l'application puisse te pr\\xe9senter de nouveaux profils.\",variant:\"gD33ScrHR\",W88zB8mIG:\"Comment dois-je me servir de l'agenda ?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yaskzk\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"LtGRPSb8Y\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+178,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t1wxvg-container\",layoutDependency:layoutDependency,layoutId:\"cJcmvXgtj-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"cJcmvXgtj\",layoutId:\"cJcmvXgtj\",style:{width:\"100%\"},T8rQFvSBR:\"Il est important que nos utilisateurs puissent se faire une id\\xe9e des profils qui leurs sont pr\\xe9sent\\xe9s.\\nTu as donc rempli un certain nombre de crit\\xe8res lors de ton inscription.\\nCela nous permet, gr\\xe2ce \\xe0 notre algorithme, de te pr\\xe9senter des profils sur lesquels un taux de correspondance est visible. Il te permet de savoir \\xe0 quel point la personne te correspond en fonction de ce que tu recherches.\",variant:\"gD33ScrHR\",W88zB8mIG:\"Qu\u2019est-ce que le taux de correspondance et comment \\xe7a fonctionne ?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vqvp97\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"xsZRgT4JB\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+267,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ls5x2c-container\",layoutDependency:layoutDependency,layoutId:\"oZyU4u6Vs-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"oZyU4u6Vs\",layoutId:\"oZyU4u6Vs\",style:{width:\"100%\"},T8rQFvSBR:\"Nous avons int\\xe9gr\\xe9 \\xe0 notre application toute une s\\xe9rie de lieux publics, comme des places ou des parcs dans toutes les villes de France.\\nCela nous permet de te donner un lieu de rendez-vous pr\\xe9cis et s\\xe9cure selon tes pr\\xe9f\\xe9rences, sans que toi et ton rendez-vous n\u2019ayez \\xe0 \\xe9changer en amont.\",variant:\"gD33ScrHR\",W88zB8mIG:\"Comment l\u2019application choisit-elle mes lieux de rendez-vous ?\\n\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7kyiex\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"S3DBUivvk\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+356,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p75zzp-container\",layoutDependency:layoutDependency,layoutId:\"vZOa463sZ-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"vZOa463sZ\",layoutId:\"vZOa463sZ\",style:{width:\"100%\"},T8rQFvSBR:\"C\u2019est une solution simple et pratique qui nous permet d\u2019\\xeatre s\\xfbr que vous vous \\xeates bien trouv\\xe9 le jour du rendez-vous. L\u2019application comprend ainsi que le date a bien eu lieu !\",variant:\"gD33ScrHR\",W88zB8mIG:\"Pourquoi ai-je un QR-code sur ma fiche de rendez-vous ?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wggafu\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"HfeetqKk4\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+445,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wgjkij-container\",layoutDependency:layoutDependency,layoutId:\"YeWgvDeXc-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"YeWgvDeXc\",layoutId:\"YeWgvDeXc\",style:{width:\"100%\"},T8rQFvSBR:\"Nous esp\\xe9rons bien \\xe9videmment que tout le monde joue le jeu de notre application.\\nCependant, si tu as pay\\xe9 ton date, que tu es all\\xe9 au lieu de rendez-vous mais que l\u2019autre personne n\u2019est pas venue, ton prochain date sera alors gratuit.\",variant:\"gD33ScrHR\",W88zB8mIG:\"Que se passe-t-il si je vais \\xe0 mon rendez-vous mais que l\u2019autre personne ne vient pas ?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14ktfu6\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"HXaE0BoY8\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+534,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3d5lf5-container\",layoutDependency:layoutDependency,layoutId:\"CNwXN4MSz-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"CNwXN4MSz\",layoutId:\"CNwXN4MSz\",style:{width:\"100%\"},T8rQFvSBR:\"Effectivement, tout le monde paye sur l\u2019application !\\nNous tenons \\xe0 ce que tous nos utilisateurs soient sur un pied d\u2019\\xe9galit\\xe9 chez Daytin.\\nAinsi tu as un acc\\xe8s illimit\\xe9 aux fonctionnalit\\xe9s de notre application, donc pas besoin d\u2019un \\xab forfait premium \\xbb ou autre.\\nSeul le date t'est factur\\xe9, autrement dit lorsque tu es certain de rencontrer quelqu\u2019un. \",variant:\"gD33ScrHR\",W88zB8mIG:\"Est-ce que tout le monde paie sur l\u2019application et y a-t-il un acc\\xe8s premium ?\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5o3la.framer-1z0dg7k, .framer-5o3la .framer-1z0dg7k { display: block; }\",\".framer-5o3la.framer-1dbhgey { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5o3la .framer-4q59wr-container, .framer-5o3la .framer-gz6jxu-container, .framer-5o3la .framer-1t1wxvg-container, .framer-5o3la .framer-ls5x2c-container, .framer-5o3la .framer-p75zzp-container, .framer-5o3la .framer-1wgjkij-container, .framer-5o3la .framer-3d5lf5-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5o3la .framer-1yoc5ur, .framer-5o3la .framer-yaskzk, .framer-5o3la .framer-1vqvp97, .framer-5o3la .framer-7kyiex, .framer-5o3la .framer-1wggafu, .framer-5o3la .framer-14ktfu6 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5o3la.framer-1dbhgey { gap: 0px; } .framer-5o3la.framer-1dbhgey > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5o3la.framer-1dbhgey > :first-child { margin-top: 0px; } .framer-5o3la.framer-1dbhgey > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 454\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIlwacKvT7=withCSS(Component,css,\"framer-5o3la\");export default FramerIlwacKvT7;FramerIlwacKvT7.displayName=\"Accordion\";FramerIlwacKvT7.defaultProps={height:454,width:1e3};addFonts(FramerIlwacKvT7,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIlwacKvT7\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"454\",\"framerIntrinsicWidth\":\"1000\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IlwacKvT7.map", "import{jsx as e}from\"react/jsx-runtime\";import{useState as t,useEffect as o}from\"react\";import{addPropertyControls as i,ControlType as l}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function s(i){let[l,s]=t(null);o(()=>{let e=i.customSvgCode;r(e);},[i.customSvgCode,i.customColor,i.customStrokeWidth,i.lineCap,i.lineJoin]);let r=e=>{let t=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']],o=e.includes('stroke=\"'),l=e.includes('stroke-width=\"'),r=e.includes('stroke-linecap=\"'),n=e.includes('stroke-linejoin=\"');if(e.includes(\"<circle\")){// Find the circle element and update its fill attribute\nlet o=/<circle[^>]*fill=\"([^\"]*)\"/,l=e.match(o);if(l){// Update the fill attribute with the custom color\nlet t=l[0].replace(l[1],i.customColor);e=e.replace(o,t);}else // If there is no fill attribute, add it with the custom color\nt.push([/<circle/g,`<circle fill=\"${i.customColor}\"`]);}o?(r?t.push([/<path/g,`<path stroke=\"${i.customColor}\" stroke-linecap=\"${i.lineCap}\"`]):t.push([/<path/g,`<path stroke=\"${i.customColor}\"`]),l&&t.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${i.customStrokeWidth}\"`])):t.push([/<path/g,`<path fill=\"${i.customColor}\"`]),e.includes('overflow=\"')?t.push([/overflow=\"[^\"]*\"/,'overflow=\"visible\"']):t.push([/<svg/,'<svg overflow=\"visible\"']),n?t.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${i.lineJoin}\"`]):t.push([/<path/g,`<path stroke-linejoin=\"${i.lineJoin}\"`]),t.forEach(([t,o])=>{e=e.replace(t,o);}),s(e);},n={padding:`${i.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/e(\"div\",{dangerouslySetInnerHTML:{__html:l},style:n});}s.defaultProps={customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.9996 4.58607L19.414 12.0001L22.9139 8.50015L15.4997 1.08594L11.9996 4.58607Z\" fill=\"black\"/> <path d=\"M18.403 13.8175L10.1822 5.59708L5.63438 7.25082L3.08203 19.5021L8.15387 14.4302C8.0427 14.1472 7.98166 13.839 7.98166 13.5166C7.98166 12.1359 9.10095 11.0166 10.4817 11.0166C11.8624 11.0166 12.9817 12.1359 12.9817 13.5166C12.9817 14.8973 11.8624 16.0166 10.4817 16.0166C10.1592 16.0166 9.85109 15.9556 9.56811 15.8444L4.49378 20.9188L16.7491 18.3656L18.403 13.8175Z\" fill=\"black\"/> </svg>',customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"},i(s,{customSvgCode:{type:l.String,title:\"SVG Code\",displayTextArea:!1},customColor:{type:l.Color,title:\"Color\",defaultValue:\"#ffffff\"},customStrokeWidth:{type:l.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:!0,hidden:e=>!e.customSvgCode.includes('stroke=\"')},customPadding:{type:l.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:!0},lineCap:{type:l.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:e=>!e.customSvgCode.includes('stroke=\"')},lineJoin:{type:l.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:e=>!e.customSvgCode.includes('stroke=\"')}});export default s;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (46f1e3d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SVG as SVG1,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js\";const SVGFonts=getFonts(SVG);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"dkXRS9DgW\",\"Z3KPfVjjk\",\"h5s77PVOq\",\"mPbHwDJre\",\"RCw5Qanzr\",\"EFT8vGsJL\"];const serializationHash=\"framer-5Kl3X\";const variantClassNames={dkXRS9DgW:\"framer-v-39zvce\",EFT8vGsJL:\"framer-v-p8z1vq\",h5s77PVOq:\"framer-v-1i3yu6t\",mPbHwDJre:\"framer-v-fflkg0\",RCw5Qanzr:\"framer-v-7lsfe4\",Z3KPfVjjk:\"framer-v-aaxmmj\"};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={delay:0,duration:.25,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={delay:0,duration:.7,ease:[.79,.07,.47,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Complete Mobile\":\"RCw5Qanzr\",\"Idle Mobile\":\"EFT8vGsJL\",\"Loading Mobile\":\"mPbHwDJre\",Complete:\"Z3KPfVjjk\",Idle:\"h5s77PVOq\",Loading:\"dkXRS9DgW\"};const getProps=({check,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,PuQ5WOk1G:check!==null&&check!==void 0?check:props.PuQ5WOk1G,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"dkXRS9DgW\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,PuQ5WOk1G,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dkXRS9DgW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearvzyvg4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Z3KPfVjjk\"),3e3);});const onAppear3m52ax=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"RCw5Qanzr\"),3e3);});const onAppear8zk7lx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"EFT8vGsJL\"),3e3);});useOnVariantChange(baseVariant,{default:onAppearvzyvg4,EFT8vGsJL:undefined,h5s77PVOq:undefined,mPbHwDJre:onAppear3m52ax,RCw5Qanzr:onAppear8zk7lx});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Z3KPfVjjk\",\"h5s77PVOq\",\"RCw5Qanzr\",\"EFT8vGsJL\"].includes(baseVariant))return false;return true;};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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-39zvce\",className,classNames),\"data-framer-name\":\"Loading\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dkXRS9DgW\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({EFT8vGsJL:{\"data-framer-name\":\"Idle Mobile\",\"data-highlight\":undefined},h5s77PVOq:{\"data-framer-name\":\"Idle\",\"data-highlight\":undefined},mPbHwDJre:{\"data-framer-name\":\"Loading Mobile\"},RCw5Qanzr:{\"data-framer-name\":\"Complete Mobile\"},Z3KPfVjjk:{\"data-framer-name\":\"Complete\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j35cf0\",\"data-framer-name\":\"Check Icon\",layoutDependency:layoutDependency,layoutId:\"nHjBbuamb\",style:{opacity:PuQ5WOk1G,scale:.2},variants:{EFT8vGsJL:{scale:1},h5s77PVOq:{scale:1},RCw5Qanzr:{opacity:1,scale:1},Z3KPfVjjk:{opacity:1,scale:1}},...addPropertyOverrides({RCw5Qanzr:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ughkl7-container\",\"data-framer-name\":\"SVG\",layoutDependency:layoutDependency,layoutId:\"Sb9TCjZQa-container\",name:\"SVG\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"rgb(255, 255, 255)\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 0C4.47656 0 0 4.47656 0 10C0 15.5234 4.47656 20 10 20C15.5234 20 20 15.5234 20 10C20 4.47656 15.5234 0 10 0ZM14.7344 7.68359L15.4141 6.95312L13.9531 5.58594L13.2656 6.31641L8.35156 11.5859L6.6875 10.0195L5.95312 9.33594L4.58594 10.7969L5.3125 11.4805L7.71875 13.7305L8.44531 14.4141L9.13281 13.6836L14.7344 7.68359Z\" fill=\"#D9D9D9\"/> </svg>',height:\"100%\",id:\"Sb9TCjZQa\",layoutId:\"Sb9TCjZQa\",lineCap:\"butt\",lineJoin:\"miter\",name:\"SVG\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xqf0w\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"mjDyU_ZJR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ioc9b9\",\"data-framer-name\":\"Big\",layoutDependency:layoutDependency,layoutId:\"hXk9TEfLz\",children:/*#__PURE__*/_jsx(SVG1,{className:\"framer-1s40427\",\"data-framer-name\":\"SVG\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"cFRckB1rf\",svg:'<svg width=\"20\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"10\" cy=\"10\" r=\"8.5\" stroke=\"#fff\" stroke-opacity=\".6\" stroke-width=\"3\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-swlbb6\",\"data-framer-name\":\"Small\",layoutDependency:layoutDependency,layoutId:\"JilLJ59h3\",children:/*#__PURE__*/_jsx(SVG1,{className:\"framer-1u3xdde\",\"data-framer-name\":\"SVG\",fill:\"black\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"L9GPcXfX_\",svg:'<svg width=\"10\" height=\"10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 1.5A8.5 8.5 0 0 1 8.5 10\" stroke=\"#fff\" stroke-width=\"3\"/></svg>',withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5Kl3X.framer-13uqs3c, .framer-5Kl3X .framer-13uqs3c { display: block; }\",\".framer-5Kl3X.framer-39zvce { height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-5Kl3X .framer-1j35cf0, .framer-5Kl3X .framer-ioc9b9 { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-5Kl3X .framer-1ughkl7-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-5Kl3X .framer-1xqf0w, .framer-5Kl3X .framer-swlbb6 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-5Kl3X .framer-1s40427 { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-5Kl3X .framer-1u3xdde { flex: none; height: 10px; left: calc(75.00000000000003% - 10px / 2); position: absolute; top: calc(25.00000000000002% - 10px / 2); width: 10px; }\",\".framer-5Kl3X.framer-v-7lsfe4.framer-39zvce { height: 16px; overflow: visible; width: 16px; }\",\".framer-5Kl3X.framer-v-7lsfe4 .framer-1j35cf0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; padding: 0px; top: 50%; width: min-content; }\",\".framer-5Kl3X.framer-v-7lsfe4 .framer-1ughkl7-container { bottom: unset; height: 15px; left: unset; position: relative; right: unset; top: unset; width: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5Kl3X.framer-v-7lsfe4 .framer-1j35cf0 { gap: 0px; } .framer-5Kl3X.framer-v-7lsfe4 .framer-1j35cf0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5Kl3X.framer-v-7lsfe4 .framer-1j35cf0 > :first-child { margin-left: 0px; } .framer-5Kl3X.framer-v-7lsfe4 .framer-1j35cf0 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z3KPfVjjk\":{\"layout\":[\"fixed\",\"fixed\"]},\"h5s77PVOq\":{\"layout\":[\"fixed\",\"fixed\"]},\"mPbHwDJre\":{\"layout\":[\"fixed\",\"fixed\"]},\"RCw5Qanzr\":{\"layout\":[\"fixed\",\"fixed\"]},\"EFT8vGsJL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"PuQ5WOk1G\":\"check\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP7VQnLHIp=withCSS(Component,css,\"framer-5Kl3X\");export default FramerP7VQnLHIp;FramerP7VQnLHIp.displayName=\"Loader Copy\";FramerP7VQnLHIp.defaultProps={height:20,width:20};addPropertyControls(FramerP7VQnLHIp,{variant:{options:[\"dkXRS9DgW\",\"Z3KPfVjjk\",\"h5s77PVOq\",\"mPbHwDJre\",\"RCw5Qanzr\",\"EFT8vGsJL\"],optionTitles:[\"Loading\",\"Complete\",\"Idle\",\"Loading Mobile\",\"Complete Mobile\",\"Idle Mobile\"],title:\"Variant\",type:ControlType.Enum},PuQ5WOk1G:{defaultValue:0,max:1,min:0,step:.01,title:\"Check\",type:ControlType.Number}});addFonts(FramerP7VQnLHIp,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP7VQnLHIp\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"20\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z3KPfVjjk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h5s77PVOq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mPbHwDJre\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RCw5Qanzr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EFT8vGsJL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"PuQ5WOk1G\\\":\\\"check\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P7VQnLHIp.map", "// Generated by Framer (99bc0fd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LoaderCopy from\"https://framerusercontent.com/modules/91Px6OqouF8yb5Nzu6UB/6kZfJGQ9JkFf21fPrWDE/P7VQnLHIp.js\";const LoaderCopyFonts=getFonts(LoaderCopy);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"KrOyjKyIW\",\"a95Wu_RAL\",\"uy6RJAoly\",\"nDQ3llws2\",\"TtDovVYEk\",\"xJP9kP4cM\"];const serializationHash=\"framer-2bPbi\";const variantClassNames={a95Wu_RAL:\"framer-v-1wwrvyn\",KrOyjKyIW:\"framer-v-1c56sgv\",nDQ3llws2:\"framer-v-18vmvss\",TtDovVYEk:\"framer-v-clu56e\",uy6RJAoly:\"framer-v-3ydr9n\",xJP9kP4cM:\"framer-v-10cm694\"};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={delay:0,duration:.25,ease:[.12,.23,.5,1],type:\"tween\"};const transition2={delay:0,duration:.7,ease:[.5,0,.88,.77],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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 humanReadableVariantMap={\"Back up Mobile\":\"nDQ3llws2\",\"Back Up\":\"KrOyjKyIW\",\"Backing Up\":\"a95Wu_RAL\",\"Variant 5\":\"TtDovVYEk\",\"Variant 6\":\"xJP9kP4cM\",Done:\"uy6RJAoly\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"KrOyjKyIW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KrOyjKyIW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppeary447xr=activeVariantCallback(async(...args)=>{setVariant(\"a95Wu_RAL\");});const onAppear20ccac=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"uy6RJAoly\"),2800);});const onAppear1nd0t7h=activeVariantCallback(async(...args)=>{setVariant(\"TtDovVYEk\");});const onAppearpykpb1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xJP9kP4cM\"),2e3);});useOnVariantChange(baseVariant,{a95Wu_RAL:onAppear20ccac,default:onAppeary447xr,nDQ3llws2:onAppear1nd0t7h,TtDovVYEk:onAppearpykpb1,uy6RJAoly:undefined,xJP9kP4cM:undefined});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.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1c56sgv\",className,classNames),\"data-framer-name\":\"Back Up\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"KrOyjKyIW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-de358446-84c4-4d42-8e29-6a64e6679335, rgb(253, 172, 244))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,boxShadow:\"inset 0px 1px 0px 0px rgba(255, 255, 255, 0.2), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.15)\",...style},...addPropertyOverrides({a95Wu_RAL:{\"data-framer-name\":\"Backing Up\"},nDQ3llws2:{\"data-framer-name\":\"Back up Mobile\"},TtDovVYEk:{\"data-framer-name\":\"Variant 5\"},uy6RJAoly:{\"data-framer-name\":\"Done\",\"data-highlight\":undefined},xJP9kP4cM:{\"data-framer-name\":\"Variant 6\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||44)*.5000000000000002-10),...addPropertyOverrides({a95Wu_RAL:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||44)-0-20)/2)},nDQ3llws2:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||24)*.5000000000000002-10)},TtDovVYEk:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||24)-0-20)/2)},uy6RJAoly:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||44)-0-20)/2)},xJP9kP4cM:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||28)-0-20)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hysbrp-container\",layoutDependency:layoutDependency,layoutId:\"Y5hiDYFtD-container\",style:{opacity:0,scale:.6},variants:{a95Wu_RAL:{opacity:1,scale:1},TtDovVYEk:{opacity:1,scale:1},uy6RJAoly:{opacity:1,scale:1},xJP9kP4cM:{opacity:1,scale:1}},children:/*#__PURE__*/_jsx(LoaderCopy,{height:\"100%\",id:\"Y5hiDYFtD\",layoutId:\"Y5hiDYFtD\",PuQ5WOk1G:0,style:{height:\"100%\",width:\"100%\"},variant:\"h5s77PVOq\",width:\"100%\",...addPropertyOverrides({a95Wu_RAL:{variant:\"dkXRS9DgW\"},TtDovVYEk:{variant:\"dkXRS9DgW\"},uy6RJAoly:{PuQ5WOk1G:1},xJP9kP4cM:{PuQ5WOk1G:1,variant:\"RCw5Qanzr\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"Scan en cours\"})}),className:\"framer-1hcrkl3\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"De7S9TNnd\",style:{\"--extracted-r6o4lv\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"0px 0.5px 0px rgba(0, 0, 0, 0.15)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nDQ3llws2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"Scan en cours\"})})},TtDovVYEk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"Scan en cours\"})})},uy6RJAoly:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"Identit\\xe9 confirm\\xe9e\"})})},xJP9kP4cM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"Identit\\xe9 confirm\\xe9e\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1humaeq\",\"data-border\":true,\"data-framer-name\":\"Ring 1\",layoutDependency:layoutDependency,layoutId:\"LKxEodRXv\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-de358446-84c4-4d42-8e29-6a64e6679335, rgb(253, 172, 244))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,opacity:1},tabIndex:-1,variants:{uy6RJAoly:{opacity:0},xJP9kP4cM:{opacity:0}},...addPropertyOverrides({uy6RJAoly:{__targetOpacity:0},xJP9kP4cM:{__targetOpacity:0}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2bPbi.framer-1yi8946, .framer-2bPbi .framer-1yi8946 { display: block; }\",\".framer-2bPbi.framer-1c56sgv { align-content: center; align-items: center; cursor: default; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 44px; justify-content: center; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: min-content; }\",\".framer-2bPbi .framer-hysbrp-container { flex: none; height: 20px; left: 16px; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; z-index: 1; }\",\".framer-2bPbi .framer-1hcrkl3 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-2bPbi .framer-1humaeq { -webkit-user-select: none; bottom: -6px; flex: none; left: -6px; overflow: hidden; pointer-events: none; position: absolute; right: -6px; top: -6px; user-select: none; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2bPbi.framer-1c56sgv { gap: 0px; } .framer-2bPbi.framer-1c56sgv > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-2bPbi.framer-1c56sgv > :first-child { margin-left: 0px; } .framer-2bPbi.framer-1c56sgv > :last-child { margin-right: 0px; } }\",\".framer-2bPbi.framer-v-1wwrvyn .framer-hysbrp-container, .framer-2bPbi.framer-v-3ydr9n .framer-hysbrp-container, .framer-2bPbi.framer-v-10cm694 .framer-hysbrp-container { left: unset; position: relative; top: unset; }\",\".framer-2bPbi.framer-v-18vmvss.framer-1c56sgv, .framer-2bPbi.framer-v-clu56e.framer-1c56sgv { height: 24px; padding: 0px 8px 0px 8px; }\",\".framer-2bPbi.framer-v-clu56e .framer-hysbrp-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); left: unset; position: relative; top: unset; }\",\".framer-2bPbi.framer-v-10cm694.framer-1c56sgv { gap: 6px; height: 28px; padding: 0px 8px 0px 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2bPbi.framer-v-10cm694.framer-1c56sgv { gap: 0px; } .framer-2bPbi.framer-v-10cm694.framer-1c56sgv > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-2bPbi.framer-v-10cm694.framer-1c56sgv > :first-child { margin-left: 0px; } .framer-2bPbi.framer-v-10cm694.framer-1c56sgv > :last-child { margin-right: 0px; } }\",'.framer-2bPbi[data-border=\"true\"]::after, .framer-2bPbi [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 44\n * @framerIntrinsicWidth 142\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"a95Wu_RAL\":{\"layout\":[\"auto\",\"fixed\"]},\"uy6RJAoly\":{\"layout\":[\"auto\",\"fixed\"]},\"nDQ3llws2\":{\"layout\":[\"auto\",\"fixed\"]},\"TtDovVYEk\":{\"layout\":[\"auto\",\"fixed\"]},\"xJP9kP4cM\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSwrQB3z2N=withCSS(Component,css,\"framer-2bPbi\");export default FramerSwrQB3z2N;FramerSwrQB3z2N.displayName='Button \"Back Up\"';FramerSwrQB3z2N.defaultProps={height:44,width:142};addPropertyControls(FramerSwrQB3z2N,{variant:{options:[\"KrOyjKyIW\",\"a95Wu_RAL\",\"uy6RJAoly\",\"nDQ3llws2\",\"TtDovVYEk\",\"xJP9kP4cM\"],optionTitles:[\"Back Up\",\"Backing Up\",\"Done\",\"Back up Mobile\",\"Variant 5\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSwrQB3z2N,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...LoaderCopyFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSwrQB3z2N\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"142\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"a95Wu_RAL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"uy6RJAoly\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"nDQ3llws2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"TtDovVYEk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"xJP9kP4cM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"44\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SwrQB3z2N.map", "// Generated by Framer (46f1e3d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonBackUp from\"https://framerusercontent.com/modules/ijMcGjUZjBdM175ZmJNw/1dGiTrbBok1GWlwSzmMW/SwrQB3z2N.js\";const MotionDivWithFX=withFX(motion.div);const ButtonBackUpFonts=getFonts(ButtonBackUp);const cycleOrder=[\"fDdEdRAge\",\"HyXRwRCpR\",\"Brc4zEm0u\",\"Mrjwvj4pB\",\"rQC9Jezvi\",\"Is9xYcBDN\",\"ccm1aME6e\",\"GuBipgzgN\",\"tJLt4Ok7v\"];const serializationHash=\"framer-C7l5s\";const variantClassNames={Brc4zEm0u:\"framer-v-17tc8f3\",ccm1aME6e:\"framer-v-1gocraq\",fDdEdRAge:\"framer-v-131vj1a\",GuBipgzgN:\"framer-v-pi34y9\",HyXRwRCpR:\"framer-v-fvmiz0\",Is9xYcBDN:\"framer-v-kq6ynr\",Mrjwvj4pB:\"framer-v-cde6ul\",rQC9Jezvi:\"framer-v-1h7b2kn\",tJLt4Ok7v:\"framer-v-ilk6j3\"};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:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:2.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:400};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:320};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:370};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:300};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"fDdEdRAge\",\"Variant 2\":\"HyXRwRCpR\",\"Variant 3\":\"Brc4zEm0u\",\"Variant 4\":\"Mrjwvj4pB\",\"Variant 5\":\"rQC9Jezvi\",\"Variant 6\":\"Is9xYcBDN\",\"Variant 7\":\"ccm1aME6e\",\"Variant Mobile + Scan\":\"tJLt4Ok7v\",\"Variant Mobile\":\"GuBipgzgN\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"fDdEdRAge\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fDdEdRAge\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"rQC9Jezvi\",\"Is9xYcBDN\",\"ccm1aME6e\",\"tJLt4Ok7v\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"rQC9Jezvi\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"tJLt4Ok7v\")return true;return false;};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(Image,{...restProps,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1416,intrinsicWidth:697,pixelHeight:1416,pixelWidth:697,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/r8BVN2X1qkS5piwVipj2YHJhBs.png\",srcSet:\"https://framerusercontent.com/images/r8BVN2X1qkS5piwVipj2YHJhBs.png 697w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-131vj1a\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fDdEdRAge\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Brc4zEm0u:{\"data-framer-name\":\"Variant 3\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1416,intrinsicWidth:697,pixelHeight:350,pixelWidth:173,src:\"https://framerusercontent.com/images/OA01frJHLUDQQR1iraMTWuJNoms.svg\"}},ccm1aME6e:{\"data-framer-name\":\"Variant 7\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1416,intrinsicWidth:697,pixelHeight:350,pixelWidth:173,src:\"https://framerusercontent.com/images/Mi5fM0v6cgN61pzR1KbVFNIKg.svg\"}},GuBipgzgN:{\"data-framer-name\":\"Variant Mobile\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1416,intrinsicWidth:697,pixelHeight:350,pixelWidth:173,src:\"https://framerusercontent.com/images/Mi5fM0v6cgN61pzR1KbVFNIKg.svg\"}},HyXRwRCpR:{\"data-framer-name\":\"Variant 2\"},Is9xYcBDN:{\"data-framer-name\":\"Variant 6\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1416,intrinsicWidth:697,pixelHeight:350,pixelWidth:173,src:\"https://framerusercontent.com/images/Mi5fM0v6cgN61pzR1KbVFNIKg.svg\"}},Mrjwvj4pB:{\"data-framer-name\":\"Variant 4\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1416,intrinsicWidth:697,pixelHeight:350,pixelWidth:173,src:\"https://framerusercontent.com/images/Mi5fM0v6cgN61pzR1KbVFNIKg.svg\"}},rQC9Jezvi:{\"data-framer-name\":\"Variant 5\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1416,intrinsicWidth:697,pixelHeight:350,pixelWidth:173,src:\"https://framerusercontent.com/images/Mi5fM0v6cgN61pzR1KbVFNIKg.svg\"}},tJLt4Ok7v:{\"data-framer-name\":\"Variant Mobile + Scan\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1416,intrinsicWidth:697,pixelHeight:350,pixelWidth:173,src:\"https://framerusercontent.com/images/Mi5fM0v6cgN61pzR1KbVFNIKg.svg\"}}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1u37pnj\",layoutDependency:layoutDependency,layoutId:\"sH_FsBVzf\",style:{backgroundColor:\"var(--token-de358446-84c4-4d42-8e29-6a64e6679335, rgb(253, 172, 244))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,mask:\"linear-gradient(90deg, rgba(0,0,0,0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%)\",WebkitMask:\"linear-gradient(90deg, rgba(0,0,0,0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%)\"},...addPropertyOverrides({Brc4zEm0u:{__framer__loop:animation1},GuBipgzgN:{__framer__loop:animation3},HyXRwRCpR:{__framer__loop:animation1},Mrjwvj4pB:{__framer__loop:animation2}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ey6kgw-container\",layoutDependency:layoutDependency,layoutId:\"N9VW7g892-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ButtonBackUp,{height:\"100%\",id:\"N9VW7g892\",layoutId:\"N9VW7g892\",style:{height:\"100%\"},variant:\"KrOyjKyIW\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p1bj6k-container\",layoutDependency:layoutDependency,layoutId:\"NOH7hnan6-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(ButtonBackUp,{height:\"100%\",id:\"NOH7hnan6\",layoutId:\"NOH7hnan6\",style:{height:\"100%\"},variant:\"nDQ3llws2\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-C7l5s.framer-1lsqczp, .framer-C7l5s .framer-1lsqczp { display: block; }\",\".framer-C7l5s.framer-131vj1a { height: 585px; position: relative; width: 288px; }\",\".framer-C7l5s .framer-1u37pnj { flex: none; height: 10px; left: calc(50.00000000000002% - 274px / 2); overflow: visible; position: absolute; top: 59px; width: 274px; }\",\".framer-C7l5s .framer-ey6kgw-container { flex: none; height: 44px; left: 50%; position: absolute; top: 66px; width: auto; }\",\".framer-C7l5s .framer-1p1bj6k-container { flex: none; height: 26px; left: 50%; position: absolute; top: 14%; width: auto; }\",\".framer-C7l5s.framer-v-fvmiz0.framer-131vj1a, .framer-C7l5s.framer-v-17tc8f3.framer-131vj1a, .framer-C7l5s.framer-v-cde6ul.framer-131vj1a, .framer-C7l5s.framer-v-kq6ynr.framer-131vj1a, .framer-C7l5s.framer-v-1gocraq.framer-131vj1a, .framer-C7l5s.framer-v-pi34y9.framer-131vj1a, .framer-C7l5s.framer-v-ilk6j3.framer-131vj1a { height: 463px; width: 230px; }\",\".framer-C7l5s.framer-v-fvmiz0 .framer-1u37pnj, .framer-C7l5s.framer-v-17tc8f3 .framer-1u37pnj { left: calc(50.00000000000002% - 208px / 2); top: 49px; width: 208px; }\",\".framer-C7l5s.framer-v-cde6ul .framer-1u37pnj, .framer-C7l5s.framer-v-pi34y9 .framer-1u37pnj { left: -3px; right: -4px; top: 49px; width: unset; }\",\".framer-C7l5s.framer-v-1h7b2kn.framer-131vj1a { height: 463px; overflow: visible; width: 230px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 585\n * @framerIntrinsicWidth 288\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"HyXRwRCpR\":{\"layout\":[\"fixed\",\"fixed\"]},\"Brc4zEm0u\":{\"layout\":[\"fixed\",\"fixed\"]},\"Mrjwvj4pB\":{\"layout\":[\"fixed\",\"fixed\"]},\"rQC9Jezvi\":{\"layout\":[\"fixed\",\"fixed\"]},\"Is9xYcBDN\":{\"layout\":[\"fixed\",\"fixed\"]},\"ccm1aME6e\":{\"layout\":[\"fixed\",\"fixed\"]},\"GuBipgzgN\":{\"layout\":[\"fixed\",\"fixed\"]},\"tJLt4Ok7v\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernU6HSULoN=withCSS(Component,css,\"framer-C7l5s\");export default FramernU6HSULoN;FramernU6HSULoN.displayName=\"Smartphone V3\";FramernU6HSULoN.defaultProps={height:585,width:288};addPropertyControls(FramernU6HSULoN,{variant:{options:[\"fDdEdRAge\",\"HyXRwRCpR\",\"Brc4zEm0u\",\"Mrjwvj4pB\",\"rQC9Jezvi\",\"Is9xYcBDN\",\"ccm1aME6e\",\"GuBipgzgN\",\"tJLt4Ok7v\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant Mobile\",\"Variant Mobile + Scan\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernU6HSULoN,[{explicitInter:true,fonts:[]},...ButtonBackUpFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernU6HSULoN\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HyXRwRCpR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Brc4zEm0u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Mrjwvj4pB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rQC9Jezvi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Is9xYcBDN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ccm1aME6e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GuBipgzgN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tJLt4Ok7v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"288\",\"framerIntrinsicHeight\":\"585\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3e30e79)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"PN2LAwjSt\",\"hgn8KYeWV\"];const serializationHash=\"framer-6xBGM\";const variantClassNames={hgn8KYeWV:\"framer-v-w1g4cd\",PN2LAwjSt:\"framer-v-13jyz87\"};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:60,delay:0,mass:1,stiffness:250,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"PN2LAwjSt\",\"Variant 2\":\"hgn8KYeWV\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"PN2LAwjSt\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PN2LAwjSt\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"Femme blonde\",fit:\"fit\",pixelHeight:1842,pixelWidth:2424,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/P9fxH113eypE6TCaXrpeD5Qu0w.png\",srcSet:\"https://framerusercontent.com/images/P9fxH113eypE6TCaXrpeD5Qu0w.png?scale-down-to=512 512w,https://framerusercontent.com/images/P9fxH113eypE6TCaXrpeD5Qu0w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P9fxH113eypE6TCaXrpeD5Qu0w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P9fxH113eypE6TCaXrpeD5Qu0w.png 2424w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-13jyz87\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"PN2LAwjSt\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({hgn8KYeWV:{\"data-framer-name\":\"Variant 2\",background:{alt:\"Femme blonde\",fit:\"fit\",pixelHeight:1842,pixelWidth:2424,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/MPFerXLGRYV2aBiBACBKQ3ItKI.png\",srcSet:\"https://framerusercontent.com/images/MPFerXLGRYV2aBiBACBKQ3ItKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/MPFerXLGRYV2aBiBACBKQ3ItKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MPFerXLGRYV2aBiBACBKQ3ItKI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MPFerXLGRYV2aBiBACBKQ3ItKI.png 2424w\"}}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6xBGM.framer-1uasg2v, .framer-6xBGM .framer-1uasg2v { display: block; }\",\".framer-6xBGM.framer-13jyz87 { height: 896px; position: relative; width: 1223px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 896\n * @framerIntrinsicWidth 1223\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hgn8KYeWV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOk3eUmto_=withCSS(Component,css,\"framer-6xBGM\");export default FramerOk3eUmto_;FramerOk3eUmto_.displayName=\"Visage blonde\";FramerOk3eUmto_.defaultProps={height:896,width:1223};addPropertyControls(FramerOk3eUmto_,{variant:{options:[\"PN2LAwjSt\",\"hgn8KYeWV\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOk3eUmto_,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOk3eUmto_\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1223\",\"framerIntrinsicHeight\":\"896\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hgn8KYeWV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ok3eUmto_.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{RenderTarget}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 800\n */export default function UnicornStudioEmbed(props){const elementRef=useRef(null);useEffect(()=>{const isEditingOrPreviewing=[\"CANVAS\",\"PREVIEW\"].includes(RenderTarget.current());const initializeScript=callback=>{const existingScript=document.querySelector('script[src^=\"https://cdn.unicorn.studio\"]');if(!existingScript){const script=document.createElement(\"script\");script.src=\"https://cdn.unicorn.studio/v1.2.2/unicornStudio.umd.js\";script.onload=callback;document.head.appendChild(script);}else if(existingScript.onload){existingScript.onload=callback;}};const initializeUnicornStudio=()=>{const projectId=\"3x7p91deSffTIZE2S4u3\".split(\"?\")[0];const cacheBuster=isEditingOrPreviewing?\"?update=\"+Math.random():\"\";elementRef.current.setAttribute(\"data-us-project\",projectId+cacheBuster);if(window.UnicornStudio){window.UnicornStudio.destroy();window.UnicornStudio.init().then(scenes=>{});}};if(\"3x7p91deSffTIZE2S4u3\"){if(window.UnicornStudio){initializeUnicornStudio();}else{initializeScript(initializeUnicornStudio);}}},[\"3x7p91deSffTIZE2S4u3\"]);return /*#__PURE__*/_jsx(\"div\",{ref:elementRef,\"data-us-dpi\":\"1.5\",\"data-us-scale\":\"1\",\"data-us-fps\":props.fps,style:{width:\"100%\",height:\"100%\",...props.style}});}UnicornStudioEmbed.displayName=\"Liquid BG\";\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"UnicornStudioEmbed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"800\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LiquidBG.map", "// Generated by Framer (1cbc8a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LiquidBG from\"https://framerusercontent.com/modules/kgg6bPv3GnnMAlZnwZnq/MgvbFEmrz067IrKBplJC/LiquidBG.js\";const LiquidBGFonts=getFonts(LiquidBG);const enabledGestures={a0GUyDsNz:{hover:true},euo70WKu8:{hover:true}};const cycleOrder=[\"euo70WKu8\",\"a0GUyDsNz\"];const serializationHash=\"framer-8lWbE\";const variantClassNames={a0GUyDsNz:\"framer-v-tr5f49\",euo70WKu8:\"framer-v-86emmx\"};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:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"euo70WKu8\",Mobile:\"a0GUyDsNz\"};const getProps=({content,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,qYxJshJ8L:(_ref=content!==null&&content!==void 0?content:props.qYxJshJ8L)!==null&&_ref!==void 0?_ref:\"T\\xe9l\\xe9charger l'application\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"euo70WKu8\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,qYxJshJ8L,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"euo70WKu8\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/daytin_app/\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-86emmx\",className,classNames)} framer-j8kx10`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"euo70WKu8\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-91d8a9dc-39ca-451e-abeb-1f288d4f0e21, rgb(43, 0, 77))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"4px 6px 4px 0px rgba(0,0,0,0.25)\",...style},variants:{\"a0GUyDsNz-hover\":{backgroundColor:\"var(--token-265110e5-d9eb-4c31-8467-a03f6fcf1536, rgb(255, 122, 106))\"},\"euo70WKu8-hover\":{backgroundColor:\"var(--token-265110e5-d9eb-4c31-8467-a03f6fcf1536, rgb(255, 122, 106))\"}},...addPropertyOverrides({\"a0GUyDsNz-hover\":{\"data-framer-name\":undefined},\"euo70WKu8-hover\":{\"data-framer-name\":undefined},a0GUyDsNz:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-agy12a-container\",layoutDependency:layoutDependency,layoutId:\"wNJpXNqdM-container\",style:{opacity:0},variants:{\"euo70WKu8-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(LiquidBG,{height:\"100%\",id:\"wNJpXNqdM\",layoutId:\"wNJpXNqdM\",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\":\"Q1VTVE9NO05ldWUgSGFhcyBHcm90ZXNrIERpc3BsYXkgUHJvIDU1IFJvbWFu\",\"--framer-font-family\":'\"Neue Haas Grotesk Display Pro 55 Roman\", \"Neue Haas Grotesk Display Pro 55 Roman Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-12c4f709-e900-4107-9c8b-6f1213d6168f, rgb(255, 255, 255)))\"},children:\"T\\xe9l\\xe9charger l'application\"})}),className:\"framer-f6xrgl\",fonts:[\"CUSTOM;Neue Haas Grotesk Display Pro 55 Roman\"],layoutDependency:layoutDependency,layoutId:\"GnvlzxyTK\",style:{\"--extracted-r6o4lv\":\"var(--token-12c4f709-e900-4107-9c8b-6f1213d6168f, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:qYxJshJ8L,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a0GUyDsNz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgSGFhcyBHcm90ZXNrIERpc3BsYXkgUHJvIDU1IFJvbWFu\",\"--framer-font-family\":'\"Neue Haas Grotesk Display Pro 55 Roman\", \"Neue Haas Grotesk Display Pro 55 Roman Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-12c4f709-e900-4107-9c8b-6f1213d6168f, rgb(255, 255, 255)))\"},children:\"T\\xe9l\\xe9charger l'application\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8lWbE.framer-j8kx10, .framer-8lWbE .framer-j8kx10 { display: block; }\",\".framer-8lWbE.framer-86emmx { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lWbE .framer-agy12a-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-8lWbE .framer-f6xrgl { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre; width: auto; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8lWbE.framer-86emmx { gap: 0px; } .framer-8lWbE.framer-86emmx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8lWbE.framer-86emmx > :first-child { margin-top: 0px; } .framer-8lWbE.framer-86emmx > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 278\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"a0GUyDsNz\":{\"layout\":[\"auto\",\"fixed\"]},\"LrSTt4axL\":{\"layout\":[\"auto\",\"fixed\"]},\"Pr77idasc\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"qYxJshJ8L\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRz69Qmuii=withCSS(Component,css,\"framer-8lWbE\");export default FramerRz69Qmuii;FramerRz69Qmuii.displayName=\"Magic Button\";FramerRz69Qmuii.defaultProps={height:48,width:278};addPropertyControls(FramerRz69Qmuii,{variant:{options:[\"euo70WKu8\",\"a0GUyDsNz\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},qYxJshJ8L:{defaultValue:\"T\\xe9l\\xe9charger l'application\",displayTextArea:false,title:\"Content\",type:ControlType.String}});addFonts(FramerRz69Qmuii,[{explicitInter:true,fonts:[{family:\"Neue Haas Grotesk Display Pro 55 Roman\",source:\"custom\",url:\"https://framerusercontent.com/assets/tmLwqa5rh55YXw6gAs9GB7y6CY.woff2\"}]},...LiquidBGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRz69Qmuii\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"a0GUyDsNz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"LrSTt4axL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Pr77idasc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"278\",\"framerVariables\":\"{\\\"qYxJshJ8L\\\":\\\"content\\\"}\",\"framerIntrinsicHeight\":\"48\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rz69Qmuii.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Coolvetica Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Coolvetica Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/R0HJni5IkpbBv37i9jlv9LTYIhk.woff2\"}]}];export const css=['.framer-VeKNd .framer-styles-preset-j46eov:not(.rich-text-wrapper), .framer-VeKNd .framer-styles-preset-j46eov.rich-text-wrapper h2 { --framer-font-family: \"Coolvetica Regular\", \"Coolvetica Regular Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-VeKNd\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import AnimatedCounter from\"https://framerusercontent.com/modules/sIxZFVxIOBdfeANYhkj2/AKjEWtWsxEDuYyTSbznI/AnimatedCounter.js\";import Socials from\"#framer/local/canvasComponent/B3zsgmHy2/B3zsgmHy2.js\";import LogoTicker from\"#framer/local/canvasComponent/G0eJWP8wW/G0eJWP8wW.js\";import Accordion from\"#framer/local/canvasComponent/IlwacKvT7/IlwacKvT7.js\";import SmartphoneV3 from\"#framer/local/canvasComponent/nU6HSULoN/nU6HSULoN.js\";import VisageBlonde from\"#framer/local/canvasComponent/Ok3eUmto_/Ok3eUmto_.js\";import MagicButton from\"#framer/local/canvasComponent/Rz69Qmuii/Rz69Qmuii.js\";import SectionHeader from\"#framer/local/canvasComponent/XorWj9hC3/XorWj9hC3.js\";import DownloadApp from\"#framer/local/canvasComponent/xR3yxP5D2/xR3yxP5D2.js\";import CurseurDaytin from\"#framer/local/canvasComponent/ynMxqvFB3/ynMxqvFB3.js\";import SectionFooter from\"#framer/local/canvasComponent/zReXY2H00/zReXY2H00.js\";import*as sharedStyle from\"#framer/local/css/e_9H3gbqV/e_9H3gbqV.js\";import*as sharedStyle2 from\"#framer/local/css/iHfXwDdXd/iHfXwDdXd.js\";import*as sharedStyle1 from\"#framer/local/css/rgd3b9S4n/rgd3b9S4n.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SectionHeaderFonts=getFonts(SectionHeader);const SmartphoneV3Fonts=getFonts(SmartphoneV3);const SmartphoneV3WithVariantAppearEffect=withVariantAppearEffect(SmartphoneV3);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const DownloadAppFonts=getFonts(DownloadApp);const SocialsFonts=getFonts(Socials);const VisageBlondeFonts=getFonts(VisageBlonde);const VisageBlondeWithVariantAppearEffect=withVariantAppearEffect(VisageBlonde);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionHeaderWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.header);const AnimatedCounterFonts=getFonts(AnimatedCounter);const MagicButtonFonts=getFonts(MagicButton);const AccordionFonts=getFonts(Accordion);const LogoTickerFonts=getFonts(LogoTicker);const SectionFooterFonts=getFonts(SectionFooter);const CurseurDaytinFonts=getFonts(CurseurDaytin);const breakpoints={EA9n1tZIz:\"(min-width: 810px) and (max-width: 1199px)\",ifD_io3Ss:\"(max-width: 809px)\",uCKnBlFJU:\"(min-width: 1690px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1689px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-gDPCq\";const variantClassNames={EA9n1tZIz:\"framer-v-1cf5o6l\",ifD_io3Ss:\"framer-v-16galdh\",uCKnBlFJU:\"framer-v-1cints1\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:.5,duration:1.1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.3,skewX:0,skewY:0,transformPerspective:1500,x:100,y:150};const transition3={damping:50,delay:0,mass:1,stiffness:270,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.3,skewX:0,skewY:0,transformPerspective:1500,x:-100,y:150};const transition4={damping:80,delay:0,mass:1,stiffness:240,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-2,y:-2};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.3,skewX:0,skewY:0,transformPerspective:1500,x:44,y:320};const transition6={damping:60,delay:.8,mass:1,stiffness:240,type:\"spring\"};const transition7={damping:70,delay:0,mass:1,stiffness:250,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:2,y:-4};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.3,skewX:0,skewY:0,transformPerspective:1500,x:23,y:210};const transition8={damping:60,delay:.5,mass:1,stiffness:240,type:\"spring\"};const transition9={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-3,y:-8};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.3,skewX:0,skewY:0,transformPerspective:1500,x:34,y:120};const transition10={damping:60,delay:.2,mass:1,stiffness:240,type:\"spring\"};const transition11={delay:0,duration:1,ease:[.5,0,.88,.77],type:\"tween\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:5,y:-2};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.3,skewX:0,skewY:0,transformPerspective:1500,x:93,y:259};const transition12={damping:60,delay:.6,mass:1,stiffness:240,type:\"spring\"};const transition13={delay:0,duration:1,ease:[.7,-.35,.3,1.35],type:\"tween\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1,y:1};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.3,skewX:0,skewY:0,transformPerspective:1500,x:83,y:140};const transition14={damping:60,delay:.4,mass:1,stiffness:240,type:\"spring\"};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-3,y:3};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition15={damping:60,delay:.2,mass:1,stiffness:250,type:\"spring\"};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition15,x:0,y:0};const animation19={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.3,skewX:0,skewY:0,x:-100,y:150};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition16={damping:30,delay:.2,mass:1,stiffness:250,type:\"spring\"};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition16,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop Large\":\"uCKnBlFJU\",Laptop:\"WQLkyLRf1\",Phone:\"ifD_io3Ss\",Tablet:\"EA9n1tZIz\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const cursor={alignment:\"center\",component:CurseurDaytin,offset:{x:0,y:0},placement:\"bottom\",transition:transition1,variant:\"bxH_Hb5ip\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-gDPCq`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-gDPCq`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"K7ouJRzZk\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ifD_io3Ss\")return false;return true;};const elementId1=useRouteElementId(\"TD90sxb4d\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"Bk9PHAkBA\");const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const elementId3=useRouteElementId(\"vpQNq7GUV\");const ref7=React.useRef(null);const elementId4=useRouteElementId(\"NBH47KNXl\");const elementId5=useRouteElementId(\"DkkY3a0DW\");const ref8=React.useRef(null);const elementId6=useRouteElementId(\"Z7tBczN_W\");const ref9=React.useRef(null);const elementId7=useRouteElementId(\"u0C2P5ila\");const ref10=React.useRef(null);const elementId8=useRouteElementId(\"trLShTihu\");const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ifD_io3Ss\")return true;return false;};const elementId9=useRouteElementId(\"yFiUEMdFf\");const ref11=React.useRef(null);const elementId10=useRouteElementId(\"W4fFjUmKO\");const ref12=React.useRef(null);const elementId11=useRouteElementId(\"tAlOivZ9d\");const ref13=React.useRef(null);const elementId12=useRouteElementId(\"D6RzqBgsc\");const ref14=React.useRef(null);const elementId13=useRouteElementId(\"HLU3Wr2Pn\");const ref15=React.useRef(null);const elementId14=useRouteElementId(\"mFEJEotLP\");const ref16=React.useRef(null);const elementId15=useRouteElementId(\"zzQ_VdIne\");const ref17=React.useRef(null);const elementId16=useRouteElementId(\"qn79rP1uq\");const ref18=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({\"1ita552\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"1ita552\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jibud4-container\",\"data-framer-name\":\"NavBar\",id:elementId,layoutScroll:true,name:\"NavBar\",ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{variant:\"HvnQJCA2t\"},ifD_io3Ss:{variant:\"URxKfNu9D\"}},children:/*#__PURE__*/_jsx(SectionHeader,{height:\"100%\",id:\"K7ouJRzZk\",layoutId:\"K7ouJRzZk\",name:\"NavBar\",style:{width:\"100%\"},variant:\"tj8m3NzQF\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mbs2fb hidden-16galdh\",\"data-framer-name\":\"New Hero (Test responsive)\",id:elementId1,name:\"New Hero (Test responsive)\",ref:ref3,children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1210,intrinsicWidth:1600},className:\"framer-1t133fh\",\"data-framer-appear-id\":\"1t133fh\",\"data-framer-name\":\"Visage V3\",id:elementId2,initial:animation1,name:\"Visage V3\",optimized:true,ref:ref4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:467,width:\"226px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uc5hdg-container\",children:/*#__PURE__*/_jsx(SmartphoneV3WithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref5,target:\"rQC9Jezvi\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"TEWJ52W85\",layoutId:\"TEWJ52W85\",style:{height:\"100%\",width:\"100%\"},variant:\"Mrjwvj4pB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:434,width:\"207px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{__framer__targets:[{ref:ref5,target:\"animate\"}],style:{rotate:-23,rotateX:30,rotateY:30,transformPerspective:1500}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-npayz9-container\",\"data-framer-name\":\"\uD83D\uDCF1 Variant 6\",name:\"\uD83D\uDCF1 Variant 6\",style:{rotate:-34,rotateX:30,rotateY:30,transformPerspective:1500},children:/*#__PURE__*/_jsx(SmartphoneV3,{height:\"100%\",id:\"cv7rtz_IM\",layoutId:\"cv7rtz_IM\",name:\"\uD83D\uDCF1 Variant 6\",style:{height:\"100%\",width:\"100%\"},variant:\"Is9xYcBDN\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"236px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{__framer__targets:[{ref:ref5,target:\"animate\"}],style:{rotate:16,rotateX:10,rotateY:-30,transformPerspective:1500}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ag9sm1-container\",\"data-framer-name\":\"\uD83D\uDCF1 Variant 7\",name:\"\uD83D\uDCF1 Variant 7\",style:{rotate:29,rotateX:10,rotateY:-30,transformPerspective:1500},children:/*#__PURE__*/_jsx(SmartphoneV3,{height:\"100%\",id:\"fF4tocQjj\",layoutId:\"fF4tocQjj\",name:\"\uD83D\uDCF1 Variant 7\",style:{height:\"100%\",width:\"100%\"},variant:\"ccm1aME6e\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{__framer__targets:[{ref:ref5,target:\"animate\"}],style:{rotate:15,rotateX:10,rotateY:-30,scale:.95,transformPerspective:1500}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mxstp\",style:{rotate:28,rotateX:10,rotateY:-30,scale:.95,transformPerspective:1500}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{__framer__targets:[{ref:ref5,target:\"animate\"}],style:{rotate:16,rotateX:10,rotateY:-30,scale:.95,transformPerspective:1500}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h78xhp\",style:{rotate:29,rotateX:10,rotateY:-30,scale:.95,transformPerspective:1500}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{height:79,width:\"155px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{__framer__targets:[{ref:ref5,target:\"animate\"}],style:{rotate:16,rotateX:10,rotateY:-30,scale:1.05,transformPerspective:1500}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rnkdbx-container\",\"data-framer-name\":\"AppStore\",name:\"AppStore\",style:{rotate:29,rotateX:10,rotateY:-30,scale:1.05,transformPerspective:1500},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(DownloadApp,{height:\"100%\",id:\"uDXXEi4N9\",layoutId:\"uDXXEi4N9\",name:\"AppStore\",style:{height:\"100%\"},variant:\"lhuPLB6Yx\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,width:\"155px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{__framer__targets:[{ref:ref5,target:\"animate\"}],style:{rotate:15,rotateX:10,rotateY:-30,scale:1.05,transformPerspective:1500}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-actncc-container\",\"data-framer-name\":\"Playstore\",name:\"Playstore\",style:{rotate:27,rotateX:10,rotateY:-30,scale:1.05,transformPerspective:1500},children:/*#__PURE__*/_jsx(DownloadApp,{height:\"100%\",id:\"MqWz_bqZX\",layoutId:\"MqWz_bqZX\",name:\"Playstore\",style:{height:\"100%\",width:\"100%\"},variant:\"ICpThGNtr\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{height:78,width:\"78px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82.4669197718757,width:\"82.5256px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{__framer__targets:[{ref:ref5,target:\"animate\"}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__loop:animation9,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lbjmhg-container\",\"data-framer-name\":\"Instaram\",name:\"Instaram\",style:{rotate:20,rotateX:30,rotateY:-30,skewY:10,transformPerspective:1500,z:50},children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"H4Chk6nzt\",layoutId:\"H4Chk6nzt\",name:\"Instaram\",style:{height:\"100%\",width:\"100%\"},variant:\"tu9YPkxvM\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{height:77.74208559461357,width:\"77.8481px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82.46691977187567,width:\"82.5256px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{__framer__targets:[{ref:ref5,target:\"animate\"}],transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation8,__framer__loop:animation11,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wpkx2b-container\",\"data-framer-name\":\"Tiktok\",name:\"Tiktok\",style:{rotate:20,rotateX:20,rotateY:-40,skewY:10,transformPerspective:1500,z:50},children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"LCSfL9Gcj\",layoutId:\"LCSfL9Gcj\",name:\"Tiktok\",style:{height:\"100%\",width:\"100%\"},variant:\"er0JjUgb4\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{height:78,width:\"78px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82.46691977187567,width:\"82.5256px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{__framer__targets:[{ref:ref5,target:\"animate\"}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__loop:animation13,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition11,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-34eru0-container\",\"data-framer-name\":\"Linkedin\",name:\"Linkedin\",style:{rotate:30,rotateX:20,rotateY:-30,skewY:10,transformPerspective:1500,z:50},children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"QjhOKerc4\",layoutId:\"QjhOKerc4\",name:\"Linkedin\",style:{height:\"100%\",width:\"100%\"},variant:\"b3v7KDH_2\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{height:77.74208559461357,width:\"77.8481px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82.46691977187567,width:\"82.5256px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{__framer__targets:[{ref:ref5,target:\"animate\"}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation8,__framer__loop:animation15,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition13,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-codf9p-container\",\"data-framer-name\":\"Youtube\",id:elementId3,name:\"Youtube\",ref:ref7,style:{rotate:-10,rotateX:-30,rotateY:30,skewX:10,skewY:20,transformPerspective:1500,z:50},children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"vpQNq7GUV\",layoutId:\"vpQNq7GUV\",name:\"Youtube\",style:{height:\"100%\",width:\"100%\"},variant:\"NU6N8Q5rZ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{height:78,width:\"78px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82.46691977187567,width:\"82.5256px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{__framer__targets:[{ref:ref5,target:\"animate\"}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation8,__framer__loop:animation17,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dzgwdh-container\",\"data-framer-name\":\"Facebook\",name:\"Facebook\",style:{rotateX:20,rotateY:30,skewY:10,transformPerspective:1500},children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"VT0skGM5f\",layoutId:\"VT0skGM5f\",name:\"Facebook\",style:{height:\"100%\",width:\"100%\"},variant:\"L1Dt7Yu7v\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:896.5,width:\"1223px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16xzhvn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{__framer__targets:[{ref:ref5,target:\"hgn8KYeWV\"}]}},children:/*#__PURE__*/_jsx(VisageBlondeWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref6,target:\"hgn8KYeWV\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"fTxtgavF7\",layoutId:\"fTxtgavF7\",style:{height:\"100%\",width:\"100%\"},variant:\"PN2LAwjSt\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation18,className:\"framer-1q1ldo0\",\"data-framer-appear-id\":\"1q1ldo0\",\"data-framer-name\":\"Headline\",id:elementId4,initial:animation19,name:\"Headline\",optimized:true,ref:ref5,transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mvqjpm\",id:elementId5,ref:ref8,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:102,pixelWidth:83,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/x2qTU2tSopeArkaY5sFODSU8.png\"},className:\"framer-1eflitf\",id:elementId6,ref:ref9}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(166, 143, 232)\"},children:\"Daytin l'application de rencontre\"})}),className:\"framer-xchhng\",fonts:[\"GF;Ubuntu-regular\"],id:elementId7,ref:ref10,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0Nvb2x2ZXRpY2EgUmVndWxhcg==\",\"--framer-font-family\":'\"Coolvetica Regular\", \"Coolvetica Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"70px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 40, 36)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:\"La rencontre\"}),\",\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:\" la vraie\"}),\"\u2026\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"60px\"},children:\" Sans messagerie\"}),\".\"]})}),className:\"framer-18x5fh0\",fonts:[\"CUSTOM;Coolvetica Regular\"],id:elementId8,ref:ref6,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vmymxb hidden-72rtr7 hidden-1cf5o6l hidden-1cints1\",\"data-framer-name\":\"Hero section\",id:elementId9,name:\"Hero section\",ref:ref11,children:[/*#__PURE__*/_jsx(MotionHeaderWithOptimizedAppearEffect,{animate:animation18,className:\"framer-izhq4m\",\"data-framer-appear-id\":\"izhq4m\",\"data-framer-name\":\"Hero text\",id:elementId10,initial:animation19,name:\"Hero text\",optimized:true,ref:ref12,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qo4ice\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1425djl\",id:elementId11,ref:ref13,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(-30),pixelHeight:102,pixelWidth:83,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/x2qTU2tSopeArkaY5sFODSU8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:102,pixelWidth:83,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/x2qTU2tSopeArkaY5sFODSU8.png\"},className:\"framer-1tt2wwe\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7VWJ1bnR1LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ubuntu\", \"Ubuntu Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(166, 143, 232)\"},children:\"Daytin l'application de rencontre\"})}),className:\"framer-c4sx6o\",fonts:[\"GF;Ubuntu-regular\"],id:elementId12,ref:ref14,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0Nvb2x2ZXRpY2EgUmVndWxhcg==\",\"--framer-font-family\":'\"Coolvetica Regular\", \"Coolvetica Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 40, 36)\"},children:\"La rencontre, la vraie... Sans messagerie.\"})}),className:\"framer-s10is6\",fonts:[\"CUSTOM;Coolvetica Regular\"],id:elementId13,ref:ref15,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1210,intrinsicWidth:1600},className:\"framer-11rf9pr\",\"data-framer-appear-id\":\"11rf9pr\",\"data-framer-name\":\"Visage V3\",id:elementId14,initial:animation1,name:\"Visage V3\",optimized:true,ref:ref16,transformTemplate:transformTemplate3,children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:477,width:\"235px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fn4eic-container hidden-16galdh\",\"data-framer-name\":\"\uD83D\uDCF1 Variant 7\",name:\"\uD83D\uDCF1 Variant 7\",style:{rotate:20,rotateX:10,rotateY:-30,transformPerspective:1500},children:/*#__PURE__*/_jsx(SmartphoneV3,{height:\"100%\",id:\"k4V25pWSv\",layoutId:\"k4V25pWSv\",name:\"\uD83D\uDCF1 Variant 7\",style:{height:\"100%\",width:\"100%\"},variant:\"ccm1aME6e\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:507,width:\"242px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y8ytpm-container hidden-16galdh\",\"data-framer-name\":\"\uD83D\uDCF1 Variant 6\",name:\"\uD83D\uDCF1 Variant 6\",style:{rotate:-20,rotateX:30,rotateY:30,transformPerspective:1500},children:/*#__PURE__*/_jsx(SmartphoneV3,{height:\"100%\",id:\"VSzvQhU4t\",layoutId:\"VSzvQhU4t\",name:\"\uD83D\uDCF1 Variant 6\",style:{height:\"100%\",width:\"100%\"},variant:\"Is9xYcBDN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{y:339.93838862559255}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:\"150px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n3hbyt-container\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{variant:\"GuBipgzgN\"}},children:/*#__PURE__*/_jsx(SmartphoneV3WithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref12,target:\"tJLt4Ok7v\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"MboEgD57X\",layoutId:\"MboEgD57X\",style:{height:\"100%\",width:\"100%\"},variant:\"Mrjwvj4pB\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{y:301.93838862559255}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:604,width:\"824px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10wlv1f-container\",children:/*#__PURE__*/_jsx(VisageBlondeWithVariantAppearEffect,{__framer__animateOnce:true,__framer__scrollDirection:{direction:\"down\",target:\"hgn8KYeWV\"},__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"zl4i5Ine4\",layoutId:\"zl4i5Ine4\",style:{height:\"100%\",width:\"100%\"},variant:\"PN2LAwjSt\",width:\"100%\"})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vy3cnn hidden-16galdh\",style:{rotate:18.5,rotateX:10,rotateY:-30,scale:.95,transformPerspective:1500}}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uwwhyl hidden-16galdh\",style:{rotate:18.5,rotateX:10,rotateY:-30,scale:.95,transformPerspective:1500}})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{height:78,y:922}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{__framer__enter:animation20,__framer__loopEffectEnabled:undefined,__framer__targets:[{ref:ref12,target:\"animate\"}],style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1x1whij-container hidden-72rtr7 hidden-1cf5o6l hidden-1cints1\",\"data-framer-name\":\"AppStore\",name:\"AppStore\",style:{rotateX:10,rotateY:-30,scale:1.05,transformPerspective:1500},children:/*#__PURE__*/_jsx(DownloadApp,{height:\"100%\",id:\"HLO5zt1T5\",layoutId:\"HLO5zt1T5\",name:\"AppStore\",style:{height:\"100%\"},variant:\"lhuPLB6Yx\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{height:128,y:922}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{__framer__enter:animation20,__framer__loopEffectEnabled:undefined,__framer__targets:[{ref:ref12,target:\"animate\"}],style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-g4vlrk-container hidden-72rtr7 hidden-1cf5o6l hidden-1cints1\",\"data-framer-name\":\"Play Store\",name:\"Play Store\",style:{rotate:18.5,rotateX:10,rotateY:-30,scale:1.05,transformPerspective:1500},children:/*#__PURE__*/_jsx(DownloadApp,{height:\"100%\",id:\"OE8GdfkoR\",layoutId:\"OE8GdfkoR\",name:\"Play Store\",variant:\"ICpThGNtr\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{height:53,width:\"53px\",y:429}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{__framer__targets:[{ref:ref12,target:\"animate\"}],style:{rotate:17,rotateX:30,rotateY:-30,skewY:10,transformPerspective:1500,z:50}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__loop:animation9,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1twfthq-container hidden-72rtr7 hidden-1cf5o6l hidden-1cints1\",style:{rotate:20,rotateX:30,rotateY:-30,skewY:10,transformPerspective:1500,z:50},children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"QiMPN_zLL\",layoutId:\"QiMPN_zLL\",style:{height:\"100%\",width:\"100%\"},variant:\"tu9YPkxvM\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{height:66,width:\"66px\",y:683.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{__framer__targets:[{ref:ref12,target:\"animate\"}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation8,__framer__loop:animation11,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16hzgi4-container hidden-72rtr7 hidden-1cf5o6l hidden-1cints1\",style:{rotate:20,rotateX:20,rotateY:-40,skewY:10,transformPerspective:1500,z:50},children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"Ka8H78z4a\",layoutId:\"Ka8H78z4a\",style:{height:\"100%\",width:\"100%\"},variant:\"er0JjUgb4\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{height:63,width:\"63px\",y:681.4999999999998}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{__framer__targets:[{ref:ref12,target:\"animate\"}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation8,__framer__loop:animation13,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition11,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rf7m0p-container hidden-72rtr7 hidden-1cf5o6l hidden-1cints1\",style:{rotate:30,rotateX:20,rotateY:-50,skewY:10,transformPerspective:1500,z:50},children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"PNZtdAJti\",layoutId:\"PNZtdAJti\",style:{height:\"100%\",width:\"100%\"},variant:\"b3v7KDH_2\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{height:61,width:\"61px\",y:397.0000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{__framer__targets:[{ref:ref12,target:\"animate\"}],style:{rotate:-18,rotateX:-30,rotateY:30,skewX:10,skewY:20,transformPerspective:1500,z:50}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation8,__framer__loop:animation15,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition13,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gj3i62-container hidden-72rtr7 hidden-1cf5o6l hidden-1cints1\",style:{rotate:-10,rotateX:-30,rotateY:30,skewX:10,skewY:20,transformPerspective:1500,z:50},children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"f7SkJBgA8\",layoutId:\"f7SkJBgA8\",style:{height:\"100%\",width:\"100%\"},variant:\"NU6N8Q5rZ\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{height:51,width:\"51px\",y:538.0000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{__framer__targets:[{ref:ref12,target:\"animate\"}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation8,__framer__loop:animation17,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ccjj11-container hidden-72rtr7 hidden-1cf5o6l hidden-1cints1\",style:{rotateX:20,rotateY:30,skewY:10,transformPerspective:1500},children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"zuwp0IjMn\",layoutId:\"zuwp0IjMn\",style:{height:\"100%\",width:\"100%\"},variant:\"L1Dt7Yu7v\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3m6iy0\",\"data-framer-name\":\"Spacer\",id:elementId15,name:\"Spacer\",ref:ref17}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15xdqjt\",\"data-framer-name\":\"Rencontrer quelqu'un\",name:\"Rencontrer quelqu'un\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7qyaug\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-119yi3i\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{background:{alt:\"Un homme et une femme \\xe0 une table de bar\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1024,pixelWidth:683,sizes:\"min(max(100vw - 80px, 1px), 1000px)\",src:\"https://framerusercontent.com/images/WgQ13209dw5A3e9Mgtb04fnZ40.png\",srcSet:\"https://framerusercontent.com/images/WgQ13209dw5A3e9Mgtb04fnZ40.png 683w\"}},ifD_io3Ss:{background:{alt:\"Un homme et une femme \\xe0 une table de bar\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition(1114),pixelHeight:1024,pixelWidth:683,sizes:\"min(max(100vw - 40px, 1px), 1000px)\",src:\"https://framerusercontent.com/images/WgQ13209dw5A3e9Mgtb04fnZ40.png\",srcSet:\"https://framerusercontent.com/images/WgQ13209dw5A3e9Mgtb04fnZ40.png 683w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Un homme et une femme \\xe0 une table de bar\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1024,pixelWidth:683,sizes:\"1000px\",src:\"https://framerusercontent.com/images/WgQ13209dw5A3e9Mgtb04fnZ40.png\",srcSet:\"https://framerusercontent.com/images/WgQ13209dw5A3e9Mgtb04fnZ40.png 683w\"},className:\"framer-euue7e\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dh6gy7\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Rencontrer quelqu\u2019un pour la premi\\xe8re fois sans s\u2019\\xeatre parl\\xe9 avant, c\u2019est notre concept !\"})}),className:\"framer-9n319z\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hcqwbf\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Et quand on y pense, c\u2019est juste diff\\xe9rent ! Notre appli a \\xe9t\\xe9 pens\\xe9e pour \\xeatre safe et intuitive afin de rendre ton exp\\xe9rience unique et authentique.\"})}),className:\"framer-5ppilv\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fu6udd\",\"data-framer-name\":\"Why Choose\",name:\"Why Choose\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-15kcjrg\",\"data-framer-name\":\"Inner\",name:\"Inner\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Nvb2x2ZXRpY2EgUmVndWxhcg==\",\"--framer-font-family\":'\"Coolvetica Regular\", \"Coolvetica Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:[\"Pourquoi Daytin ?\",/*#__PURE__*/_jsx(\"br\",{}),\"EFFICACIT\\xc9\"]}),\", \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\"SIMPLICIT\\xc9\"}),\",\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\" S\\xc9CURIT\\xc9\"}),\".\"]})}),className:\"framer-13unbfd\",fonts:[\"CUSTOM;Coolvetica Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cv1rf1\",\"data-framer-name\":\"Feature List\",name:\"Feature List\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:-150,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hwnmk9\",\"data-framer-name\":\"Feature Card\",name:\"Feature Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{background:{alt:\"Visuel taux de correspondance\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:2400,pixelHeight:4145,pixelWidth:4e3,positionX:\"center\",positionY:\"center\",sizes:\"max((min(max(100vw - 60px, 1px), 1440px) - 10px) / 2, 1px)\",src:\"https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png?scale-down-to=1024 988w,https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png?scale-down-to=2048 1976w,https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png?scale-down-to=4096 3952w,https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png 4000w\"}},ifD_io3Ss:{background:{alt:\"Visuel taux de correspondance\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:2400,loading:getLoadingLazyAtYPosition(1928),pixelHeight:4145,pixelWidth:4e3,positionX:\"center\",positionY:\"center\",sizes:\"min(max(100vw - 40px, 1px), 1440px)\",src:\"https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png?scale-down-to=1024 988w,https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png?scale-down-to=2048 1976w,https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png?scale-down-to=4096 3952w,https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Visuel taux de correspondance\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:2400,pixelHeight:4145,pixelWidth:4e3,positionX:\"center\",positionY:\"center\",sizes:\"max((max((min(max(100vw - 80px, 1px), 1440px) - 30px) / 2, 100px) - 10px) / 2, 1px)\",src:\"https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png?scale-down-to=1024 988w,https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png?scale-down-to=2048 1976w,https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png?scale-down-to=4096 3952w,https://framerusercontent.com/images/a63qeQX4D5GJocJNLXyuYKplik.png 4000w\"},className:\"framer-1jgji1n\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17vlydj\",\"data-border\":true,\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1fngc33\",\"data-styles-preset\":\"e_9H3gbqV\",children:\"Des affinit\\xe9s personnalis\\xe9es\"})}),className:\"framer-1chwff8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:[\"Notre taux de correspondance t'aide \\xe0 choisir des personnes avec lesquelles tu as une \",/*#__PURE__*/_jsx(\"strong\",{children:\"forte\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"compatibilit\\xe9\"}),\" !\"]})}),className:\"framer-2r4ftt\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:150,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1eu7lp7\",\"data-framer-name\":\"Feature Card\",name:\"Feature Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{background:{alt:\"Femme qui teste la reconnaissance faciale\",fit:\"fill\",intrinsicHeight:1618,intrinsicWidth:2400,pixelHeight:4480,pixelWidth:6720,sizes:\"max((min(max(100vw - 60px, 1px), 1440px) - 10px) / 2, 1px)\",src:\"https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp 6720w\"}},ifD_io3Ss:{background:{alt:\"Femme qui teste la reconnaissance faciale\",fit:\"fill\",intrinsicHeight:1618,intrinsicWidth:2400,loading:getLoadingLazyAtYPosition(2568),pixelHeight:4480,pixelWidth:6720,sizes:\"min(max(100vw - 40px, 1px), 1440px)\",src:\"https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp 6720w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Femme qui teste la reconnaissance faciale\",fit:\"fill\",intrinsicHeight:1618,intrinsicWidth:2400,pixelHeight:4480,pixelWidth:6720,sizes:\"max((max((min(max(100vw - 80px, 1px), 1440px) - 30px) / 2, 100px) - 10px) / 2, 1px)\",src:\"https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/HrP4XVyPE6VLBy86aRsL3Ls7Hqk.webp 6720w\"},className:\"framer-1cq3sog\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9j6ty0\",\"data-border\":true,\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1fngc33\",\"data-styles-preset\":\"e_9H3gbqV\",style:{\"--framer-text-color\":\"var(--token-12c4f709-e900-4107-9c8b-6f1213d6168f, rgb(255, 255, 255))\"},children:\"Une tranquilit\\xe9 assur\\xe9e\"})}),className:\"framer-730soj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--token-0c23165e-65e5-4d30-89fb-fd1c14eb36e5, rgb(251, 250, 249))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"L'authenticit\\xe9\"}),\" de ton profil est \",/*#__PURE__*/_jsx(\"strong\",{children:\"v\\xe9rifi\\xe9e\"}),\"  avec la reconnaissance faciale. Et pour t'assurer que tu es au bon endroit, avec la bonne personne et au bon moment, un  \",/*#__PURE__*/_jsx(\"strong\",{children:\"scan suffit\"}),\" !\"]})}),className:\"framer-11zlkv5\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:-150,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hi35w7\",\"data-framer-name\":\"Feature Card\",name:\"Feature Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-erj4b4\",\"data-border\":true,\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1fngc33\",\"data-styles-preset\":\"e_9H3gbqV\",style:{\"--framer-text-color\":\"var(--token-12c4f709-e900-4107-9c8b-6f1213d6168f, rgb(255, 255, 255))\"},children:\"Une organisation facilit\\xe9e\"})}),className:\"framer-73lbkz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--token-0c23165e-65e5-4d30-89fb-fd1c14eb36e5, rgb(251, 250, 249))\"},children:[\"Finies les gal\\xe8res pour trouver le bon moment pour se voir ! Tu remplis tes dispos sur\",/*#__PURE__*/_jsx(\"strong\",{children:\" l'agenda connect\\xe9\"}),\", et l'appli se charge du reste\",/*#__PURE__*/_jsx(\"strong\",{children:\" \"}),\"!\"]})}),className:\"framer-1lzpq0n\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{background:{alt:\"Agenda connect\\xe9 avec une liste de rendez-vous\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:2400,pixelHeight:935,pixelWidth:393,positionX:\"center\",positionY:\"center\",sizes:\"max((min(max(100vw - 60px, 1px), 1440px) - 10px) / 2, 1px)\",src:\"https://framerusercontent.com/images/Q8yGiIV1mFhwN9kh8EBpgxMgGCI.png\",srcSet:\"https://framerusercontent.com/images/Q8yGiIV1mFhwN9kh8EBpgxMgGCI.png 393w\"}},ifD_io3Ss:{background:{alt:\"Agenda connect\\xe9 avec une liste de rendez-vous\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:2400,loading:getLoadingLazyAtYPosition(3208),pixelHeight:935,pixelWidth:393,positionX:\"center\",positionY:\"center\",sizes:\"min(max(100vw - 40px, 1px), 1440px)\",src:\"https://framerusercontent.com/images/Q8yGiIV1mFhwN9kh8EBpgxMgGCI.png\",srcSet:\"https://framerusercontent.com/images/Q8yGiIV1mFhwN9kh8EBpgxMgGCI.png 393w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Agenda connect\\xe9 avec une liste de rendez-vous\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:2400,pixelHeight:935,pixelWidth:393,positionX:\"center\",positionY:\"center\",sizes:\"max((max((min(max(100vw - 80px, 1px), 1440px) - 30px) / 2, 100px) - 10px) / 2, 1px)\",src:\"https://framerusercontent.com/images/Q8yGiIV1mFhwN9kh8EBpgxMgGCI.png\",srcSet:\"https://framerusercontent.com/images/Q8yGiIV1mFhwN9kh8EBpgxMgGCI.png 393w\"},className:\"framer-64ktci\",\"data-framer-name\":\"Image\",name:\"Image\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:150,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gyx29i\",\"data-framer-name\":\"Feature Card\",name:\"Feature Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xptvsa\",\"data-border\":true,\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1fngc33\",\"data-styles-preset\":\"e_9H3gbqV\",children:\"Transforme l'essai !\"})}),className:\"framer-1uy6kpo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--token-91d8a9dc-39ca-451e-abeb-1f288d4f0e21, rgb(43, 0, 77))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"*Les\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"1 000 premiers dates sont offerts, profites-en !\"})]})}),className:\"framer-1kwskpu\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{background:{alt:\"Selfie 3 personnes\",fit:\"fill\",intrinsicHeight:1391,intrinsicWidth:2e3,pixelHeight:5734,pixelWidth:3823,sizes:\"max((min(max(100vw - 60px, 1px), 1440px) - 10px) / 2, 1px)\",src:\"https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg 3823w\"}},ifD_io3Ss:{background:{alt:\"Selfie 3 personnes\",fit:\"fill\",intrinsicHeight:1391,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(3848),pixelHeight:5734,pixelWidth:3823,sizes:\"min(max(100vw - 40px, 1px), 1440px)\",src:\"https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg 3823w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Selfie 3 personnes\",fit:\"fill\",intrinsicHeight:1391,intrinsicWidth:2e3,pixelHeight:5734,pixelWidth:3823,sizes:\"max((max((min(max(100vw - 80px, 1px), 1440px) - 30px) / 2, 100px) - 10px) / 2, 1px)\",src:\"https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/Y9hahP9exQvFwn8FUFom81zxw.jpg 3823w\"},className:\"framer-1vg31bx\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a3yjsz\",\"data-framer-name\":\"Content Section\",name:\"Content Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-q1fqzd\",\"data-framer-name\":\"Background\",name:\"Background\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k52kn1\",\"data-framer-name\":\"Inner\",name:\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kwjlch\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14bem48-container\",children:/*#__PURE__*/_jsx(AnimatedCounter,{color:\"var(--token-91d8a9dc-39ca-451e-abeb-1f288d4f0e21, rgb(43, 0, 77))\",decimalPlaces:0,decimalSeparator:\".\",duration:2,font:{fontFamily:'\"Coolvetica Regular\", \"Coolvetica Regular Placeholder\", sans-serif',fontSize:\"120px\",letterSpacing:\"1px\",lineHeight:\"1.1px\"},from:0,height:\"100%\",id:\"tESYXAaMa\",layoutId:\"tESYXAaMa\",once:true,playOnLoad:true,to:100,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Nvb2x2ZXRpY2EgUmVndWxhcg==\",\"--framer-font-family\":'\"Coolvetica Regular\", \"Coolvetica Regular Placeholder\", sans-serif',\"--framer-font-size\":\"113px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91d8a9dc-39ca-451e-abeb-1f288d4f0e21, rgb(43, 0, 77))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"%\"})})}),className:\"framer-3lwr0a\",fonts:[\"CUSTOM;Coolvetica Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Nvb2x2ZXRpY2EgUmVndWxhcg==\",\"--framer-font-family\":'\"Coolvetica Regular\", \"Coolvetica Regular Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-91d8a9dc-39ca-451e-abeb-1f288d4f0e21, rgb(43, 0, 77))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"de tes plus beaux souvenirs se font en vrai.\"})})}),className:\"framer-no6n3y\",fonts:[\"CUSTOM;Coolvetica Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{height:49,width:\"210px\",y:5118}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-aplvyk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{variant:\"a0GUyDsNz\"}},children:/*#__PURE__*/_jsx(MagicButton,{height:\"100%\",id:\"MeUWGhpZ4\",layoutId:\"MeUWGhpZ4\",qYxJshJ8L:\"Suis-nous \",style:{height:\"100%\",width:\"100%\"},variant:\"euo70WKu8\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1meamqh\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Nvb2x2ZXRpY2EgUmVndWxhcg==\",\"--framer-font-family\":'\"Coolvetica Regular\", \"Coolvetica Regular Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"2.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Vos questions fr\\xe9quentes\"})}),className:\"framer-4hx2ed\",fonts:[\"CUSTOM;Coolvetica Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1utkvus\",\"data-framer-name\":\"Column\",name:\"Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{y:5387}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:454,width:\"max(min(1000px, 100vw), 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ts60t3-container\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"sBIkj4Sew\",layoutId:\"sBIkj4Sew\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e7euj8\",\"data-framer-name\":\"Partenaires\",id:elementId16,name:\"Partenaires\",ref:ref18,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-effpes\",\"data-border\":true,\"data-framer-name\":\"Inner\",name:\"Inner\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Nvb2x2ZXRpY2EgUmVndWxhcg==\",\"--framer-font-family\":'\"Coolvetica Regular\", \"Coolvetica Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Nos partenaires nous soutiennent\u2026\"})}),className:\"framer-lx3zrt\",fonts:[\"CUSTOM;Coolvetica Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{width:\"calc(min(max(100vw - 60px, 1px), 1440px) - 60px)\"},ifD_io3Ss:{width:\"calc(min(max(100vw - 40px, 1px), 1440px) - 40px)\",y:6070.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"calc(min(max(100vw - 80px, 1px), 1440px) - 100px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ozdvpo-container\",children:/*#__PURE__*/_jsx(LogoTicker,{height:\"100%\",id:\"HdT52PjXV\",layoutId:\"HdT52PjXV\",style:{width:\"100%\"},variant:\"gPhs2Vnu_\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x7foln\",\"data-framer-name\":\"Presse\",name:\"Presse\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cux4gb\",\"data-border\":true,\"data-framer-name\":\"Inner\",name:\"Inner\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-j46eov\",\"data-styles-preset\":\"iHfXwDdXd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Et la presse parle de nous\"})}),className:\"framer-1yubdvd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{width:\"calc(min(max(100vw - 60px, 1px), 1440px) - 60px)\"},ifD_io3Ss:{width:\"calc(min(max(100vw - 40px, 1px), 1440px) - 40px)\",y:6371.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"calc(min(max(100vw - 80px, 1px), 1440px) - 100px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18r9pr3-container\",children:/*#__PURE__*/_jsx(LogoTicker,{height:\"100%\",id:\"kBgIM2y8d\",layoutId:\"kBgIM2y8d\",style:{width:\"100%\"},variant:\"TQzZq9MMq\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ifD_io3Ss:{y:6543.4},uCKnBlFJU:{height:1e3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:625,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ytey8s-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EA9n1tZIz:{variant:\"NmwnHhkpF\"},ifD_io3Ss:{variant:\"pPfxMwkyP\"},uCKnBlFJU:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"xLbchDldc\",layoutId:\"xLbchDldc\",style:{width:\"100%\"},SUmp2uPvC:true,variant:\"vZlMjtPVj\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-gDPCq { background: var(--token-9cad3841-d97d-425d-93c3-c06faeb8ebd8, rgb(252, 251, 252)) /* {\"name\":\"Background V2\"} */; }`,\".framer-gDPCq.framer-lux5qc, .framer-gDPCq .framer-lux5qc { display: block; }\",\".framer-gDPCq.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-9cad3841-d97d-425d-93c3-c06faeb8ebd8, #fcfbfc); 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-gDPCq .framer-1jibud4-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 6; }\",\".framer-gDPCq .framer-mbs2fb { flex: none; height: 800px; overflow: visible; position: relative; width: 1200px; }\",\".framer-gDPCq .framer-1t133fh { aspect-ratio: 1.322314049586777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 907px); overflow: visible; position: absolute; right: 1px; top: 297px; width: 1199px; z-index: 5; }\",\".framer-gDPCq .framer-1uc5hdg-container { flex: none; height: 467px; left: calc(50.04170141784823% - 226px / 2); position: absolute; top: 36px; width: 226px; z-index: 1; }\",\".framer-gDPCq .framer-npayz9-container { flex: none; height: 434px; left: 194px; position: absolute; top: calc(53.50248207391066% - 434px / 2); transform-style: preserve-3d; width: 207px; z-index: -1; }\",\".framer-gDPCq .framer-ag9sm1-container { flex: none; height: 480px; left: 760px; position: absolute; top: calc(45.67015995587426% - 480px / 2); transform-style: preserve-3d; width: 236px; z-index: -1; }\",\".framer-gDPCq .framer-mxstp { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; background-color: var(--token-de358446-84c4-4d42-8e29-6a64e6679335, #fdacf4); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 78px; left: 863px; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; overflow: hidden; position: absolute; top: 282px; transform-style: preserve-3d; width: 158px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-gDPCq .framer-h78xhp { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; background-color: var(--token-de358446-84c4-4d42-8e29-6a64e6679335, #fdacf4); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 78px; left: 816px; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; overflow: hidden; position: absolute; top: calc(45.118587975730854% - 78px / 2); transform-style: preserve-3d; width: 158px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-gDPCq .framer-1rnkdbx-container { flex: none; height: 78px; left: 805px; position: absolute; top: 353px; transform-style: preserve-3d; width: auto; z-index: 1; }\",\".framer-gDPCq .framer-actncc-container { flex: none; height: 79px; left: 856px; position: absolute; top: 267px; transform-style: preserve-3d; width: 155px; z-index: 6; }\",\".framer-gDPCq .framer-lbjmhg-container { aspect-ratio: 1 / 1; bottom: 736px; flex: none; height: var(--framer-aspect-ratio-supported, 83px); position: absolute; right: 950px; transform-style: preserve-3d; width: 83px; z-index: 1; }\",\".framer-gDPCq .framer-wpkx2b-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 83px); left: 148px; position: absolute; top: 203px; transform-style: preserve-3d; width: 83px; z-index: 1; }\",\".framer-gDPCq .framer-34eru0-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 83px); left: 208px; position: absolute; top: 303px; transform-style: preserve-3d; width: 83px; z-index: 1; }\",\".framer-gDPCq .framer-codf9p-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 83px); left: 67px; position: absolute; top: 135px; transform-style: preserve-3d; width: 83px; z-index: 1; }\",\".framer-gDPCq .framer-dzgwdh-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 83px); left: 102px; position: absolute; top: 299px; transform-style: preserve-3d; width: 83px; z-index: 1; }\",\".framer-gDPCq .framer-16xzhvn-container { bottom: 5px; flex: none; left: -12px; position: absolute; right: -12px; top: 6px; }\",\".framer-gDPCq .framer-1q1ldo0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 73px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-gDPCq .framer-mvqjpm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gDPCq .framer-1eflitf { flex: none; height: 20px; opacity: 0; overflow: hidden; position: relative; width: 20px; }\",\".framer-gDPCq .framer-xchhng { -webkit-user-select: none; flex: none; height: auto; opacity: 0; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-gDPCq .framer-18x5fh0, .framer-gDPCq .framer-c4sx6o { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-gDPCq .framer-vmymxb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-gDPCq .framer-izhq4m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 800px; min-width: 861px; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 0; }\",\".framer-gDPCq .framer-1qo4ice { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 20%; transform: translate(-50%, -50%); width: min-content; z-index: 1; }\",\".framer-gDPCq .framer-1425djl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; opacity: 0; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gDPCq .framer-1tt2wwe { flex: none; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-gDPCq .framer-s10is6 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 254px; word-break: break-word; word-wrap: break-word; }\",\".framer-gDPCq .framer-11rf9pr { aspect-ratio: 1.322314049586777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 664px); left: 50%; overflow: hidden; position: absolute; top: 73%; transform: translate(-50%, -50%); width: 578px; z-index: 0; }\",\".framer-gDPCq .framer-fn4eic-container { bottom: 161px; flex: none; height: 477px; left: 811px; position: absolute; transform-style: preserve-3d; width: 235px; z-index: -1; }\",\".framer-gDPCq .framer-1y8ytpm-container { bottom: 51px; flex: none; height: 507px; left: 180px; position: absolute; transform-style: preserve-3d; width: 242px; z-index: -1; }\",\".framer-gDPCq .framer-1n3hbyt-container { aspect-ratio: 0.4918032786885246 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 305px); left: 50%; position: absolute; top: 89px; transform: translateX(-50%); width: 150px; z-index: 1; }\",\".framer-gDPCq .framer-10wlv1f-container { bottom: 9px; flex: none; left: -126px; position: absolute; right: -120px; top: 51px; }\",\".framer-gDPCq .framer-vy3cnn { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; background-color: var(--token-de358446-84c4-4d42-8e29-6a64e6679335, #fdacf4); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; bottom: 104px; flex: none; height: 78px; left: 862px; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; overflow: hidden; position: absolute; transform-style: preserve-3d; width: 158px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-gDPCq .framer-1uwwhyl { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; background-color: var(--token-de358446-84c4-4d42-8e29-6a64e6679335, #fdacf4); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; bottom: 24px; flex: none; height: 78px; left: 832px; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) add; overflow: hidden; position: absolute; transform-style: preserve-3d; width: 158px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-gDPCq .framer-1x1whij-container { flex: none; height: 78px; left: 26px; position: absolute; top: 922px; transform-style: preserve-3d; width: auto; z-index: 1; }\",\".framer-gDPCq .framer-g4vlrk-container { flex: none; height: auto; left: 208px; position: absolute; top: 922px; transform-style: preserve-3d; width: auto; z-index: 1; }\",\".framer-gDPCq .framer-1twfthq-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); left: 319px; position: absolute; top: 429px; transform-style: preserve-3d; width: 53px; z-index: 1; }\",\".framer-gDPCq .framer-16hzgi4-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); left: 309px; position: absolute; top: 684px; transform-style: preserve-3d; width: 66px; z-index: 1; }\",\".framer-gDPCq .framer-rf7m0p-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); left: 253px; position: absolute; top: 737px; transform-style: preserve-3d; width: 63px; z-index: 1; }\",\".framer-gDPCq .framer-gj3i62-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); left: 95px; position: absolute; top: 553px; transform-style: preserve-3d; width: 61px; z-index: 1; }\",\".framer-gDPCq .framer-1ccjj11-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); left: 127px; position: absolute; top: 736px; transform-style: preserve-3d; width: 51px; z-index: 1; }\",\".framer-gDPCq .framer-3m6iy0 { flex: none; height: 390px; overflow: hidden; position: relative; width: 100%; }\",\".framer-gDPCq .framer-15xdqjt { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 1200px; }\",\".framer-gDPCq .framer-7qyaug { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-gDPCq .framer-119yi3i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gDPCq .framer-euue7e { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 5px 5px 2px 0px var(--token-302b8d27-fb2d-4dcd-b9ae-cb4abe0a03bb, rgba(0, 0, 0, 0.3)); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 384px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gDPCq .framer-1dh6gy7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-gDPCq .framer-9n319z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-gDPCq .framer-1hcqwbf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 108px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gDPCq .framer-5ppilv { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-gDPCq .framer-fu6udd { 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: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-gDPCq .framer-15kcjrg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-gDPCq .framer-13unbfd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 973px; word-break: break-word; word-wrap: break-word; }\",\".framer-gDPCq .framer-cv1rf1 { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(100px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gDPCq .framer-1hwnmk9, .framer-gDPCq .framer-1eu7lp7, .framer-gDPCq .framer-1hi35w7, .framer-gDPCq .framer-1gyx29i { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gDPCq .framer-1jgji1n, .framer-gDPCq .framer-1cq3sog, .framer-gDPCq .framer-64ktci, .framer-gDPCq .framer-1vg31bx { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 4px 6px 4px 0px rgba(0, 0, 0, 0.25); flex: 1 0 0px; height: 400px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gDPCq .framer-17vlydj, .framer-gDPCq .framer-xptvsa { --border-bottom-width: 1px; --border-color: var(--token-a6a0321d-a080-4a31-b68c-218c00d1b556, rgba(24, 24, 24, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: var(--token-0c23165e-65e5-4d30-89fb-fd1c14eb36e5, #fbfaf9); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 4px 6px 4px 0px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gDPCq .framer-1chwff8, .framer-gDPCq .framer-2r4ftt, .framer-gDPCq .framer-730soj, .framer-gDPCq .framer-11zlkv5, .framer-gDPCq .framer-73lbkz, .framer-gDPCq .framer-1lzpq0n, .framer-gDPCq .framer-1uy6kpo, .framer-gDPCq .framer-1kwskpu, .framer-gDPCq .framer-no6n3y, .framer-gDPCq .framer-lx3zrt { --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-gDPCq .framer-9j6ty0 { --border-bottom-width: 1px; --border-color: var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, #18212d); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: var(--token-91d8a9dc-39ca-451e-abeb-1f288d4f0e21, #2b004d); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 4px 6px 4px 0px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gDPCq .framer-erj4b4 { --border-bottom-width: 1px; --border-color: var(--token-ecd88fd8-4178-4cdf-8808-ccaaac6e95f2, #6b818c); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: var(--token-265110e5-d9eb-4c31-8467-a03f6fcf1536, #ff7a6a); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 4px 6px 4px 0px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gDPCq .framer-a3yjsz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60vh; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-gDPCq .framer-q1fqzd { align-content: center; align-items: center; background-color: var(--token-9cad3841-d97d-425d-93c3-c06faeb8ebd8, #fcfbfc); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 65px 40px 65px 40px; position: relative; width: 1px; }\",\".framer-gDPCq .framer-k52kn1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-gDPCq .framer-1kwjlch { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 125px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gDPCq .framer-14bem48-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-gDPCq .framer-3lwr0a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gDPCq .framer-aplvyk-container { flex: none; height: 70px; position: relative; width: 300px; }\",\".framer-gDPCq .framer-1meamqh { align-content: center; align-items: center; background-color: var(--token-9cad3841-d97d-425d-93c3-c06faeb8ebd8, #fcfbfc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-gDPCq .framer-4hx2ed { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-gDPCq .framer-1utkvus { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-gDPCq .framer-ts60t3-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-gDPCq .framer-1e7euj8, .framer-gDPCq .framer-x7foln { 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: 40px; position: relative; width: 100%; }\",\".framer-gDPCq .framer-effpes, .framer-gDPCq .framer-cux4gb { --border-bottom-width: 1px; --border-color: var(--token-a6a0321d-a080-4a31-b68c-218c00d1b556, rgba(24, 24, 24, 0.07)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0c23165e-65e5-4d30-89fb-fd1c14eb36e5, #fbfaf9); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 50px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gDPCq .framer-ozdvpo-container, .framer-gDPCq .framer-18r9pr3-container, .framer-gDPCq .framer-ytey8s-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-gDPCq .framer-1yubdvd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 450px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gDPCq.framer-72rtr7, .framer-gDPCq .framer-1q1ldo0, .framer-gDPCq .framer-mvqjpm, .framer-gDPCq .framer-vmymxb, .framer-gDPCq .framer-izhq4m, .framer-gDPCq .framer-1qo4ice, .framer-gDPCq .framer-1425djl, .framer-gDPCq .framer-15xdqjt, .framer-gDPCq .framer-7qyaug, .framer-gDPCq .framer-119yi3i, .framer-gDPCq .framer-euue7e, .framer-gDPCq .framer-1dh6gy7, .framer-gDPCq .framer-1hcqwbf, .framer-gDPCq .framer-fu6udd, .framer-gDPCq .framer-15kcjrg, .framer-gDPCq .framer-1hwnmk9, .framer-gDPCq .framer-17vlydj, .framer-gDPCq .framer-1eu7lp7, .framer-gDPCq .framer-9j6ty0, .framer-gDPCq .framer-1hi35w7, .framer-gDPCq .framer-erj4b4, .framer-gDPCq .framer-1gyx29i, .framer-gDPCq .framer-xptvsa, .framer-gDPCq .framer-a3yjsz, .framer-gDPCq .framer-q1fqzd, .framer-gDPCq .framer-k52kn1, .framer-gDPCq .framer-1kwjlch, .framer-gDPCq .framer-1meamqh, .framer-gDPCq .framer-1utkvus, .framer-gDPCq .framer-1e7euj8, .framer-gDPCq .framer-effpes, .framer-gDPCq .framer-x7foln, .framer-gDPCq .framer-cux4gb { gap: 0px; } .framer-gDPCq.framer-72rtr7 > *, .framer-gDPCq .framer-izhq4m > *, .framer-gDPCq .framer-1qo4ice > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gDPCq.framer-72rtr7 > :first-child, .framer-gDPCq .framer-1q1ldo0 > :first-child, .framer-gDPCq .framer-vmymxb > :first-child, .framer-gDPCq .framer-izhq4m > :first-child, .framer-gDPCq .framer-1qo4ice > :first-child, .framer-gDPCq .framer-7qyaug > :first-child, .framer-gDPCq .framer-euue7e > :first-child, .framer-gDPCq .framer-1dh6gy7 > :first-child, .framer-gDPCq .framer-15kcjrg > :first-child, .framer-gDPCq .framer-17vlydj > :first-child, .framer-gDPCq .framer-9j6ty0 > :first-child, .framer-gDPCq .framer-erj4b4 > :first-child, .framer-gDPCq .framer-xptvsa > :first-child, .framer-gDPCq .framer-k52kn1 > :first-child, .framer-gDPCq .framer-1meamqh > :first-child, .framer-gDPCq .framer-effpes > :first-child, .framer-gDPCq .framer-cux4gb > :first-child { margin-top: 0px; } .framer-gDPCq.framer-72rtr7 > :last-child, .framer-gDPCq .framer-1q1ldo0 > :last-child, .framer-gDPCq .framer-vmymxb > :last-child, .framer-gDPCq .framer-izhq4m > :last-child, .framer-gDPCq .framer-1qo4ice > :last-child, .framer-gDPCq .framer-7qyaug > :last-child, .framer-gDPCq .framer-euue7e > :last-child, .framer-gDPCq .framer-1dh6gy7 > :last-child, .framer-gDPCq .framer-15kcjrg > :last-child, .framer-gDPCq .framer-17vlydj > :last-child, .framer-gDPCq .framer-9j6ty0 > :last-child, .framer-gDPCq .framer-erj4b4 > :last-child, .framer-gDPCq .framer-xptvsa > :last-child, .framer-gDPCq .framer-k52kn1 > :last-child, .framer-gDPCq .framer-1meamqh > :last-child, .framer-gDPCq .framer-effpes > :last-child, .framer-gDPCq .framer-cux4gb > :last-child { margin-bottom: 0px; } .framer-gDPCq .framer-1q1ldo0 > *, .framer-gDPCq .framer-15kcjrg > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-gDPCq .framer-mvqjpm > *, .framer-gDPCq .framer-1425djl > *, .framer-gDPCq .framer-15xdqjt > *, .framer-gDPCq .framer-fu6udd > *, .framer-gDPCq .framer-1hwnmk9 > *, .framer-gDPCq .framer-1eu7lp7 > *, .framer-gDPCq .framer-1hi35w7 > *, .framer-gDPCq .framer-1gyx29i > *, .framer-gDPCq .framer-a3yjsz > *, .framer-gDPCq .framer-q1fqzd > *, .framer-gDPCq .framer-1kwjlch > *, .framer-gDPCq .framer-1utkvus > *, .framer-gDPCq .framer-1e7euj8 > *, .framer-gDPCq .framer-x7foln > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gDPCq .framer-mvqjpm > :first-child, .framer-gDPCq .framer-1425djl > :first-child, .framer-gDPCq .framer-15xdqjt > :first-child, .framer-gDPCq .framer-119yi3i > :first-child, .framer-gDPCq .framer-1hcqwbf > :first-child, .framer-gDPCq .framer-fu6udd > :first-child, .framer-gDPCq .framer-1hwnmk9 > :first-child, .framer-gDPCq .framer-1eu7lp7 > :first-child, .framer-gDPCq .framer-1hi35w7 > :first-child, .framer-gDPCq .framer-1gyx29i > :first-child, .framer-gDPCq .framer-a3yjsz > :first-child, .framer-gDPCq .framer-q1fqzd > :first-child, .framer-gDPCq .framer-1kwjlch > :first-child, .framer-gDPCq .framer-1utkvus > :first-child, .framer-gDPCq .framer-1e7euj8 > :first-child, .framer-gDPCq .framer-x7foln > :first-child { margin-left: 0px; } .framer-gDPCq .framer-mvqjpm > :last-child, .framer-gDPCq .framer-1425djl > :last-child, .framer-gDPCq .framer-15xdqjt > :last-child, .framer-gDPCq .framer-119yi3i > :last-child, .framer-gDPCq .framer-1hcqwbf > :last-child, .framer-gDPCq .framer-fu6udd > :last-child, .framer-gDPCq .framer-1hwnmk9 > :last-child, .framer-gDPCq .framer-1eu7lp7 > :last-child, .framer-gDPCq .framer-1hi35w7 > :last-child, .framer-gDPCq .framer-1gyx29i > :last-child, .framer-gDPCq .framer-a3yjsz > :last-child, .framer-gDPCq .framer-q1fqzd > :last-child, .framer-gDPCq .framer-1kwjlch > :last-child, .framer-gDPCq .framer-1utkvus > :last-child, .framer-gDPCq .framer-1e7euj8 > :last-child, .framer-gDPCq .framer-x7foln > :last-child { margin-right: 0px; } .framer-gDPCq .framer-vmymxb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gDPCq .framer-7qyaug > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-gDPCq .framer-119yi3i > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-gDPCq .framer-euue7e > *, .framer-gDPCq .framer-1dh6gy7 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-gDPCq .framer-1hcqwbf > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-gDPCq .framer-17vlydj > *, .framer-gDPCq .framer-9j6ty0 > *, .framer-gDPCq .framer-erj4b4 > *, .framer-gDPCq .framer-xptvsa > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-gDPCq .framer-k52kn1 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-gDPCq .framer-1meamqh > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-gDPCq .framer-effpes > *, .framer-gDPCq .framer-cux4gb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-gDPCq { background: var(--token-9cad3841-d97d-425d-93c3-c06faeb8ebd8, rgb(252, 251, 252)) /* {\"name\":\"Background V2\"} */; } .framer-gDPCq.framer-72rtr7 { width: 810px; } .framer-gDPCq .framer-npayz9-container { left: 248px; top: 178px; } .framer-gDPCq .framer-ag9sm1-container { left: 719px; top: calc(49.72436604189638% - 480px / 2); } .framer-gDPCq .framer-mxstp { left: 805px; top: 283px; } .framer-gDPCq .framer-h78xhp { left: 773px; top: calc(46.41675854465272% - 78px / 2); z-index: 0; } .framer-gDPCq .framer-1rnkdbx-container { height: 79px; left: 765px; top: 364px; width: 155px; } .framer-gDPCq .framer-actncc-container { left: 796px; top: 268px; } .framer-gDPCq .framer-lbjmhg-container { bottom: 666px; height: var(--framer-aspect-ratio-supported, 78px); right: 810px; width: 78px; } .framer-gDPCq .framer-wpkx2b-container { height: var(--framer-aspect-ratio-supported, 78px); left: 278px; top: 46%; transform: translateY(-50%); width: 78px; } .framer-gDPCq .framer-34eru0-container { height: var(--framer-aspect-ratio-supported, 78px); left: 327px; top: 282px; width: 78px; } .framer-gDPCq .framer-codf9p-container { height: var(--framer-aspect-ratio-supported, 78px); left: 217px; top: 254px; width: 78px; } .framer-gDPCq .framer-dzgwdh-container { height: var(--framer-aspect-ratio-supported, 78px); left: 216px; top: 81px; width: 78px; } .framer-gDPCq .framer-1q1ldo0 { height: 258px; left: calc(50.00000000000002% - 993px / 2); transform: unset; width: 993px; } .framer-gDPCq .framer-mvqjpm, .framer-gDPCq .framer-9n319z { order: 0; } .framer-gDPCq .framer-18x5fh0 { height: 100%; order: 1; white-space: pre-wrap; width: 68%; word-break: break-word; word-wrap: break-word; } .framer-gDPCq .framer-15xdqjt { padding: 60px 40px 60px 40px; width: 100%; } .framer-gDPCq .framer-euue7e { height: var(--framer-aspect-ratio-supported, 270px); order: 0; } .framer-gDPCq .framer-1dh6gy7, .framer-gDPCq .framer-1hcqwbf, .framer-gDPCq .framer-erj4b4, .framer-gDPCq .framer-xptvsa { order: 1; } .framer-gDPCq .framer-5ppilv { order: 2; width: 364px; } .framer-gDPCq .framer-fu6udd { padding: 80px 30px 80px 30px; } .framer-gDPCq .framer-15kcjrg { gap: 40px; } .framer-gDPCq .framer-cv1rf1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-gDPCq .framer-1hwnmk9, .framer-gDPCq .framer-1eu7lp7, .framer-gDPCq .framer-1hi35w7, .framer-gDPCq .framer-1gyx29i { align-self: unset; height: min-content; } .framer-gDPCq .framer-1jgji1n, .framer-gDPCq .framer-1cq3sog { height: 350px; } .framer-gDPCq .framer-64ktci, .framer-gDPCq .framer-1vg31bx { height: 350px; order: 0; } .framer-gDPCq .framer-a3yjsz { padding: 80px 0px 80px 0px; } .framer-gDPCq .framer-q1fqzd { padding: 55px 30px 55px 30px; } .framer-gDPCq .framer-k52kn1 { gap: 56px; } .framer-gDPCq .framer-1e7euj8, .framer-gDPCq .framer-x7foln { padding: 30px; } .framer-gDPCq .framer-effpes, .framer-gDPCq .framer-cux4gb { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; padding: 40px 30px 40px 30px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gDPCq .framer-15kcjrg, .framer-gDPCq .framer-cv1rf1, .framer-gDPCq .framer-k52kn1 { gap: 0px; } .framer-gDPCq .framer-15kcjrg > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-gDPCq .framer-15kcjrg > :first-child, .framer-gDPCq .framer-cv1rf1 > :first-child, .framer-gDPCq .framer-k52kn1 > :first-child { margin-top: 0px; } .framer-gDPCq .framer-15kcjrg > :last-child, .framer-gDPCq .framer-cv1rf1 > :last-child, .framer-gDPCq .framer-k52kn1 > :last-child { margin-bottom: 0px; } .framer-gDPCq .framer-cv1rf1 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-gDPCq .framer-k52kn1 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-gDPCq { background: var(--token-9cad3841-d97d-425d-93c3-c06faeb8ebd8, rgb(252, 251, 252)) /* {\"name\":\"Background V2\"} */; } .framer-gDPCq.framer-72rtr7 { width: 390px; } .framer-gDPCq .framer-1jibud4-container { order: 0; } .framer-gDPCq .framer-vmymxb { order: 1; } .framer-gDPCq .framer-izhq4m { min-width: unset; order: 0; width: 100%; } .framer-gDPCq .framer-11rf9pr { aspect-ratio: unset; height: 664px; left: calc(50.00000000000002% - 578px / 2); order: 1; top: calc(72.86729857819907% - 664px / 2); transform: unset; } .framer-gDPCq .framer-1x1whij-container { order: 5; transform-style: unset; z-index: 5; } .framer-gDPCq .framer-g4vlrk-container { order: 6; transform-style: unset; z-index: 5; } .framer-gDPCq .framer-1twfthq-container { order: 7; z-index: 3; } .framer-gDPCq .framer-16hzgi4-container { order: 8; z-index: 3; } .framer-gDPCq .framer-rf7m0p-container { left: 34px; order: 9; top: 681px; z-index: 3; } .framer-gDPCq .framer-gj3i62-container { left: 13px; order: 10; top: 397px; z-index: 3; } .framer-gDPCq .framer-1ccjj11-container { left: 23px; order: 11; top: 538px; z-index: 3; } .framer-gDPCq .framer-3m6iy0 { height: 254px; order: 12; } .framer-gDPCq .framer-15xdqjt { gap: 20px; order: 13; padding: 60px 20px 60px 20px; width: 100%; } .framer-gDPCq .framer-7qyaug { gap: 60px; } .framer-gDPCq .framer-119yi3i { flex-direction: column; } .framer-gDPCq .framer-euue7e { flex: none; height: var(--framer-aspect-ratio-supported, 292px); width: 100%; } .framer-gDPCq .framer-1dh6gy7 { flex: none; width: 100%; } .framer-gDPCq .framer-fu6udd { order: 14; padding: 60px 20px 60px 20px; } .framer-gDPCq .framer-15kcjrg, .framer-gDPCq .framer-k52kn1 { gap: 40px; } .framer-gDPCq .framer-13unbfd, .framer-gDPCq .framer-1yubdvd { width: 100%; } .framer-gDPCq .framer-cv1rf1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-gDPCq .framer-1hwnmk9, .framer-gDPCq .framer-1eu7lp7, .framer-gDPCq .framer-1hi35w7, .framer-gDPCq .framer-1gyx29i { align-self: unset; flex-direction: column; height: min-content; } .framer-gDPCq .framer-1jgji1n, .framer-gDPCq .framer-1cq3sog { flex: none; height: 300px; width: 100%; } .framer-gDPCq .framer-17vlydj, .framer-gDPCq .framer-9j6ty0 { align-self: unset; flex: none; height: 300px; width: 100%; } .framer-gDPCq .framer-erj4b4, .framer-gDPCq .framer-xptvsa { align-self: unset; flex: none; height: 300px; order: 1; width: 100%; } .framer-gDPCq .framer-64ktci, .framer-gDPCq .framer-1vg31bx { flex: none; height: 300px; order: 0; width: 100%; } .framer-gDPCq .framer-a3yjsz { order: 15; padding: 60px 0px 60px 0px; } .framer-gDPCq .framer-q1fqzd { padding: 45px 20px 45px 20px; } .framer-gDPCq .framer-aplvyk-container { aspect-ratio: 4.285714285714286 / 1; height: var(--framer-aspect-ratio-supported, 49px); order: 20; width: 210px; } .framer-gDPCq .framer-1meamqh { order: 21; } .framer-gDPCq .framer-4hx2ed { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-gDPCq .framer-1e7euj8 { order: 22; padding: 30px 20px 30px 20px; } .framer-gDPCq .framer-effpes, .framer-gDPCq .framer-cux4gb { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding: 30px 20px 30px 20px; } .framer-gDPCq .framer-x7foln { order: 23; padding: 30px 20px 30px 20px; } .framer-gDPCq .framer-ytey8s-container { order: 24; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gDPCq .framer-15xdqjt, .framer-gDPCq .framer-7qyaug, .framer-gDPCq .framer-119yi3i, .framer-gDPCq .framer-15kcjrg, .framer-gDPCq .framer-cv1rf1, .framer-gDPCq .framer-1hwnmk9, .framer-gDPCq .framer-1eu7lp7, .framer-gDPCq .framer-1hi35w7, .framer-gDPCq .framer-1gyx29i, .framer-gDPCq .framer-k52kn1 { gap: 0px; } .framer-gDPCq .framer-15xdqjt > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-gDPCq .framer-15xdqjt > :first-child { margin-left: 0px; } .framer-gDPCq .framer-15xdqjt > :last-child { margin-right: 0px; } .framer-gDPCq .framer-7qyaug > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-gDPCq .framer-7qyaug > :first-child, .framer-gDPCq .framer-119yi3i > :first-child, .framer-gDPCq .framer-15kcjrg > :first-child, .framer-gDPCq .framer-cv1rf1 > :first-child, .framer-gDPCq .framer-1hwnmk9 > :first-child, .framer-gDPCq .framer-1eu7lp7 > :first-child, .framer-gDPCq .framer-1hi35w7 > :first-child, .framer-gDPCq .framer-1gyx29i > :first-child, .framer-gDPCq .framer-k52kn1 > :first-child { margin-top: 0px; } .framer-gDPCq .framer-7qyaug > :last-child, .framer-gDPCq .framer-119yi3i > :last-child, .framer-gDPCq .framer-15kcjrg > :last-child, .framer-gDPCq .framer-cv1rf1 > :last-child, .framer-gDPCq .framer-1hwnmk9 > :last-child, .framer-gDPCq .framer-1eu7lp7 > :last-child, .framer-gDPCq .framer-1hi35w7 > :last-child, .framer-gDPCq .framer-1gyx29i > :last-child, .framer-gDPCq .framer-k52kn1 > :last-child { margin-bottom: 0px; } .framer-gDPCq .framer-119yi3i > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-gDPCq .framer-15kcjrg > *, .framer-gDPCq .framer-k52kn1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-gDPCq .framer-cv1rf1 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-gDPCq .framer-1hwnmk9 > *, .framer-gDPCq .framer-1eu7lp7 > *, .framer-gDPCq .framer-1hi35w7 > *, .framer-gDPCq .framer-1gyx29i > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,`@media (min-width: 1690px) { .${metadata.bodyClassName}-framer-gDPCq { background: var(--token-9cad3841-d97d-425d-93c3-c06faeb8ebd8, rgb(252, 251, 252)) /* {\"name\":\"Background V2\"} */; } .framer-gDPCq.framer-72rtr7 { width: 1690px; } .framer-gDPCq .framer-ytey8s-container { height: 100vh; }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-gDPCq[data-border=\"true\"]::after, .framer-gDPCq [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 5694\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EA9n1tZIz\":{\"layout\":[\"fixed\",\"auto\"]},\"ifD_io3Ss\":{\"layout\":[\"fixed\",\"auto\"]},\"uCKnBlFJU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-gDPCq\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5694,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Ubuntu\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6fQT3v02QFg.woff2\",weight:\"400\"},{family:\"Coolvetica Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/R0HJni5IkpbBv37i9jlv9LTYIhk.woff2\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.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\"}]},...SectionHeaderFonts,...SmartphoneV3Fonts,...DownloadAppFonts,...SocialsFonts,...VisageBlondeFonts,...AnimatedCounterFonts,...MagicButtonFonts,...AccordionFonts,...LogoTickerFonts,...SectionFooterFonts,...CurseurDaytinFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"5694\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EA9n1tZIz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ifD_io3Ss\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uCKnBlFJU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["AnimatedCounter", "props", "from", "to", "duration", "decimalPlaces", "decimalSeparator", "fontFamily", "fontWeight", "fontSize", "lineHeight", "letterSpacing", "textAlign", "color", "playOnLoad", "once", "ref", "pe", "isInView", "useInView", "displayValue", "setDisplayValue", "ye", "formatNumber", "isCanvas", "RenderTarget", "ariaLabel", "value", "ue", "animationControl", "animate", "latest", "p", "motion", "addPropertyControls", "ControlType", "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", "PhosphorFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "css", "FramerB3zsgmHy2", "withCSS", "B3zsgmHy2_default", "addPropertyControls", "ControlType", "addFonts", "noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "createGeneratorEasing", "e", "t", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "dispatchViewEvent", "se", "o", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "Link", "css", "FramerG0eJWP8wW", "withCSS", "G0eJWP8wW_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap6j9xq4", "args", "onTappn4gk4", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerR34jH3O2I", "withCSS", "R34jH3O2I_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "R34jH3O2I_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "R34jH3O2I_default", "css", "FramerIlwacKvT7", "withCSS", "IlwacKvT7_default", "addFonts", "RowFonts", "s", "i", "l", "ye", "ue", "e", "r", "t", "o", "n", "p", "addPropertyControls", "ControlType", "SVG_default", "SVGFonts", "getFonts", "SVG_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "check", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "PuQ5WOk1G", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearvzyvg4", "args", "onAppear3m52ax", "onAppear8zk7lx", "useOnVariantChange", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "SVG", "css", "FramerP7VQnLHIp", "withCSS", "P7VQnLHIp_default", "addPropertyControls", "ControlType", "addFonts", "LoaderCopyFonts", "getFonts", "P7VQnLHIp_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppeary447xr", "args", "onAppear20ccac", "onAppear1nd0t7h", "onAppearpykpb1", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerSwrQB3z2N", "withCSS", "SwrQB3z2N_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "ButtonBackUpFonts", "getFonts", "SwrQB3z2N_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "animation3", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "cx", "ComponentViewportProvider", "css", "FramernU6HSULoN", "withCSS", "nU6HSULoN_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "cx", "css", "FramerOk3eUmto_", "withCSS", "Ok3eUmto_default", "addPropertyControls", "ControlType", "addFonts", "UnicornStudioEmbed", "props", "elementRef", "pe", "ue", "isEditingOrPreviewing", "RenderTarget", "initializeScript", "callback", "existingScript", "script", "initializeUnicornStudio", "projectId", "cacheBuster", "window", "scenes", "p", "LiquidBGFonts", "getFonts", "UnicornStudioEmbed", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qYxJshJ8L", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerRz69Qmuii", "withCSS", "Rz69Qmuii_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "SectionHeaderFonts", "getFonts", "XorWj9hC3_default", "SmartphoneV3Fonts", "nU6HSULoN_default", "SmartphoneV3WithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "withFX", "Container", "MotionDivWithFX", "motion", "DownloadAppFonts", "xR3yxP5D2_default", "SocialsFonts", "B3zsgmHy2_default", "VisageBlondeFonts", "Ok3eUmto_default", "VisageBlondeWithVariantAppearEffect", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "MotionHeaderWithOptimizedAppearEffect", "AnimatedCounterFonts", "AnimatedCounter", "MagicButtonFonts", "Rz69Qmuii_default", "AccordionFonts", "IlwacKvT7_default", "LogoTickerFonts", "G0eJWP8wW_default", "SectionFooterFonts", "zReXY2H00_default", "CurseurDaytinFonts", "ynMxqvFB3_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "animation1", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "transition5", "animation6", "animation7", "transition6", "transition7", "animation8", "animation9", "animation10", "transition8", "transition9", "animation11", "transformTemplate1", "_", "t", "animation12", "transition10", "transition11", "animation13", "animation14", "transition12", "transition13", "animation15", "animation16", "transition14", "animation17", "transformTemplate2", "transition15", "animation18", "animation19", "transformTemplate3", "animation20", "animation21", "transition16", "animation22", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "isDisplayed", "elementId1", "ref3", "elementId2", "ref4", "ref5", "ref6", "elementId3", "ref7", "elementId4", "elementId5", "ref8", "elementId6", "ref9", "elementId7", "ref10", "elementId8", "isDisplayed1", "elementId9", "ref11", "elementId10", "ref12", "elementId11", "ref13", "elementId12", "ref14", "elementId13", "ref15", "elementId14", "ref16", "elementId15", "ref17", "elementId16", "ref18", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "Image2", "RichText2", "x", "getLoadingLazyAtYPosition", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
