{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/material-icons/Home.js@0.0.32", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js", "ssg:https://framerusercontent.com/modules/lJGJjWVNla9a4rWE8E9R/7XpM1Q9vmB9nFKhO2spS/Azq1J2aO9.js", "ssg:https://framerusercontent.com/modules/sqt96wkm0KgPxsyP4Gnw/AxNWZlnGFE7squYfYJ8w/ZZi8A60fq.js", "ssg:https://framerusercontent.com/modules/tMWQu8cnTYPGzxA6vL8k/T428YL2cJoYGOigasR9f/ntK2LAf1z.js", "ssg:https://framerusercontent.com/modules/LzvncqykVGuFQ6qHkVfd/cbzzT8FClUHQpOEaaFpB/Copyright.js", "ssg:https://framerusercontent.com/modules/t7hD1gzo96K14tpsWtbD/X3yyytgzAAt9jzIGuAuq/K5eve5NGS.js", "ssg:https://framerusercontent.com/modules/mb6XcIv8ocAgAE4qKAtc/L2WpFw0S0JeTVLldCh3D/rKFj7ogje.js"],
  "sourcesContent": ["import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.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{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "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 (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const cycleOrder=[\"ATeQo52_k\",\"nIS6zI0Ot\"];const serializationHash=\"framer-P5w6J\";const variantClassNames={ATeQo52_k:\"framer-v-1le1x5q\",nIS6zI0Ot:\"framer-v-1vsivsc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Menu - Close\":\"ATeQo52_k\",\"Menu - Open\":\"nIS6zI0Ot\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,gzqKD7u5h:click!==null&&click!==void 0?click:props.gzqKD7u5h,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ATeQo52_k\"};};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,gzqKD7u5h,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ATeQo52_k\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapk4mw7g=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(gzqKD7u5h){const res=await gzqKD7u5h(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1le1x5q\",className,classNames),\"data-framer-name\":\"Menu - Close\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ATeQo52_k\",onTap:onTapk4mw7g,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({nIS6zI0Ot:{\"data-framer-name\":\"Menu - Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l709tp-container\",layoutDependency:layoutDependency,layoutId:\"ZalhrHIVy-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-0727a76b-ce5f-431c-befe-c8fb1ce72290, rgb(14, 14, 14))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Menu\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"ZalhrHIVy\",layoutId:\"ZalhrHIVy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({nIS6zI0Ot:{iconSelection:\"Close\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-P5w6J.framer-1ben8c4, .framer-P5w6J .framer-1ben8c4 { display: block; }\",\".framer-P5w6J.framer-1le1x5q { cursor: pointer; height: 30px; position: relative; width: 30px; }\",\".framer-P5w6J .framer-l709tp-container { flex: none; height: 30px; left: 0px; position: absolute; top: 0px; width: 30px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"nIS6zI0Ot\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"gzqKD7u5h\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAzq1J2aO9=withCSS(Component,css,\"framer-P5w6J\");export default FramerAzq1J2aO9;FramerAzq1J2aO9.displayName=\"Hamburger menu\";FramerAzq1J2aO9.defaultProps={height:30,width:30};addPropertyControls(FramerAzq1J2aO9,{variant:{options:[\"ATeQo52_k\",\"nIS6zI0Ot\"],optionTitles:[\"Menu - Close\",\"Menu - Open\"],title:\"Variant\",type:ControlType.Enum},gzqKD7u5h:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerAzq1J2aO9,[{explicitInter:true,fonts:[]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAzq1J2aO9\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nIS6zI0Ot\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"30\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"30\",\"framerVariables\":\"{\\\"gzqKD7u5h\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Azq1J2aO9.map", "// Generated by Framer (f22aa3d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const enabledGestures={ENixBROiK:{hover:true,pressed:true},gC2RXExUb:{hover:true,pressed:true},iVkfhqNEx:{hover:true,pressed:true},k8n1b61G8:{hover:true,pressed:true},LWZoQw3d9:{hover:true,pressed:true},wwcvWn1Z0:{hover:true,pressed:true},XlKgw3ojG:{hover:true,pressed:true},Zo9LTM4ca:{hover:true,pressed:true}};const cycleOrder=[\"wwcvWn1Z0\",\"LWZoQw3d9\",\"gC2RXExUb\",\"iVkfhqNEx\",\"ENixBROiK\",\"k8n1b61G8\",\"XlKgw3ojG\",\"Zo9LTM4ca\"];const serializationHash=\"framer-9I9da\";const variantClassNames={ENixBROiK:\"framer-v-1t6zmr1\",gC2RXExUb:\"framer-v-1cxoxr9\",iVkfhqNEx:\"framer-v-10nlo9v\",k8n1b61G8:\"framer-v-63e0va\",LWZoQw3d9:\"framer-v-f7pqyu\",wwcvWn1Z0:\"framer-v-1m7ohth\",XlKgw3ojG:\"framer-v-1tzac3w\",Zo9LTM4ca:\"framer-v-xnbh2f\"};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:.3,ease:[.44,0,.56,1],type:\"tween\"};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={\"ABOUT Page in\":\"k8n1b61G8\",\"CONTACT Page in\":\"XlKgw3ojG\",\"Instagram SP\":\"Zo9LTM4ca\",\"WORKS Page In\":\"ENixBROiK\",ABOUT:\"LWZoQw3d9\",CONTACT:\"gC2RXExUb\",Instagram:\"iVkfhqNEx\",WORKS:\"wwcvWn1Z0\"};const getProps=({about,click,contact,height,id,width,works,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,FqVqGYMlM:(_ref=about!==null&&about!==void 0?about:props.FqVqGYMlM)!==null&&_ref!==void 0?_ref:\"about.\",mj6Yv7ZXD:click!==null&&click!==void 0?click:props.mj6Yv7ZXD,NSUhozcTD:(_ref1=contact!==null&&contact!==void 0?contact:props.NSUhozcTD)!==null&&_ref1!==void 0?_ref1:\"contact.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"wwcvWn1Z0\",zLxovKMKS:(_ref3=works!==null&&works!==void 0?works:props.zLxovKMKS)!==null&&_ref3!==void 0?_ref3:\"works.\"};};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,zLxovKMKS,FqVqGYMlM,NSUhozcTD,mj6Yv7ZXD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wwcvWn1Z0\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap13z1t00=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(mj6Yv7ZXD){const res=await mj6Yv7ZXD(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"iVkfhqNEx-hover\",\"iVkfhqNEx-pressed\",\"Zo9LTM4ca-hover\",\"Zo9LTM4ca-pressed\"].includes(gestureVariant))return true;if([\"iVkfhqNEx\",\"Zo9LTM4ca\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"iVkfhqNEx-hover\",\"iVkfhqNEx-pressed\",\"Zo9LTM4ca-hover\",\"Zo9LTM4ca-pressed\"].includes(gestureVariant))return false;if([\"iVkfhqNEx\",\"Zo9LTM4ca\"].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:{webPageId:\"K50sepoIw\"},openInNewTab:false,...addPropertyOverrides({gC2RXExUb:{href:{webPageId:\"MwOuavqrv\"}},iVkfhqNEx:{href:\"https://www.instagram.com/ohgamihoo/\",openInNewTab:true},k8n1b61G8:{href:{webPageId:\"pWJdGkCd3\"}},LWZoQw3d9:{href:{webPageId:\"pWJdGkCd3\"}},XlKgw3ojG:{href:{webPageId:\"MwOuavqrv\"}},Zo9LTM4ca:{href:\"https://www.instagram.com/ohgamihoo/\",openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1m7ohth\",className,classNames)} framer-bja7go`,\"data-framer-name\":\"WORKS\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wwcvWn1Z0\",onTap:onTap13z1t00,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:.8,WebkitBackdropFilter:\"blur(0px)\",...style},variants:{\"ENixBROiK-hover\":{opacity:1},\"ENixBROiK-pressed\":{opacity:1},\"gC2RXExUb-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0727a76b-ce5f-431c-befe-c8fb1ce72290, rgb(14, 14, 14))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:1},\"gC2RXExUb-pressed\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0727a76b-ce5f-431c-befe-c8fb1ce72290, rgb(14, 14, 14))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:1},\"iVkfhqNEx-hover\":{opacity:1},\"iVkfhqNEx-pressed\":{opacity:1},\"k8n1b61G8-hover\":{opacity:1},\"k8n1b61G8-pressed\":{opacity:1},\"LWZoQw3d9-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0727a76b-ce5f-431c-befe-c8fb1ce72290, rgb(14, 14, 14))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:1},\"LWZoQw3d9-pressed\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0727a76b-ce5f-431c-befe-c8fb1ce72290, rgb(14, 14, 14))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:1},\"wwcvWn1Z0-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0727a76b-ce5f-431c-befe-c8fb1ce72290, rgb(14, 14, 14))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",opacity:1},\"wwcvWn1Z0-pressed\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0727a76b-ce5f-431c-befe-c8fb1ce72290, rgb(14, 14, 14))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",opacity:1},\"XlKgw3ojG-hover\":{opacity:1},\"XlKgw3ojG-pressed\":{opacity:1},\"Zo9LTM4ca-hover\":{opacity:1},\"Zo9LTM4ca-pressed\":{opacity:1},ENixBROiK:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(13, 13, 13, 0.8)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},gC2RXExUb:{backgroundColor:\"rgba(255, 255, 255, 0)\"},iVkfhqNEx:{opacity:.7},k8n1b61G8:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(13, 13, 13, 0.8)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},LWZoQw3d9:{backgroundColor:\"rgba(255, 255, 255, 0)\"},XlKgw3ojG:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(13, 13, 13, 0.8)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},Zo9LTM4ca:{opacity:.7}},...addPropertyOverrides({\"ENixBROiK-hover\":{\"data-framer-name\":undefined},\"ENixBROiK-pressed\":{\"data-framer-name\":undefined},\"gC2RXExUb-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"gC2RXExUb-pressed\":{\"data-border\":true,\"data-framer-name\":undefined},\"iVkfhqNEx-hover\":{\"data-framer-name\":undefined},\"iVkfhqNEx-pressed\":{\"data-framer-name\":undefined},\"k8n1b61G8-hover\":{\"data-framer-name\":undefined},\"k8n1b61G8-pressed\":{\"data-framer-name\":undefined},\"LWZoQw3d9-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"LWZoQw3d9-pressed\":{\"data-border\":true,\"data-framer-name\":undefined},\"wwcvWn1Z0-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"wwcvWn1Z0-pressed\":{\"data-border\":true,\"data-framer-name\":undefined},\"XlKgw3ojG-hover\":{\"data-framer-name\":undefined},\"XlKgw3ojG-pressed\":{\"data-framer-name\":undefined},\"Zo9LTM4ca-hover\":{\"data-framer-name\":undefined},\"Zo9LTM4ca-pressed\":{\"data-framer-name\":undefined},ENixBROiK:{\"data-border\":true,\"data-framer-name\":\"WORKS Page In\"},gC2RXExUb:{\"data-framer-name\":\"CONTACT\"},iVkfhqNEx:{\"data-framer-name\":\"Instagram\"},k8n1b61G8:{\"data-border\":true,\"data-framer-name\":\"ABOUT Page in\"},LWZoQw3d9:{\"data-framer-name\":\"ABOUT\"},XlKgw3ojG:{\"data-border\":true,\"data-framer-name\":\"CONTACT Page in\"},Zo9LTM4ca:{\"data-framer-name\":\"Instagram SP\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ebmmp0\",\"data-framer-name\":\"_\u661F\",fill:'var(--token-0727a76b-ce5f-431c-befe-c8fb1ce72290, rgb(14, 14, 14)) /* {\"name\":\"Menu text\"} */',intrinsicHeight:17,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"fBy6pL4C1\",style:{rotate:0},svg:'<svg width=\"26\" height=\"17\" viewBox=\"0 0 26 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_17_193)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.54 3.53999L24.35 3.62999C24.15 3.22999 24.12 3.00999 24.12 2.66999L24.22 2.61999L24.08 2.08999L24.23 1.89999L24.14 1.70999L24.29 1.51999L24.2 1.32999L24.3 1.27999L24.21 1.08999L24.36 0.89999L24.27 0.70999L24.42 0.51999L24.37 0.17999L24.75 -0.0100098C25.05 0.20999 25.02 0.0699902 25.27 0.56999C25.01 0.97999 25.14 1.16999 25.07 1.61999L24.88 1.94999L25.07 2.56999L24.97 2.61999L25.06 2.80999L24.96 2.85999C25.02 3.40999 25.53 3.30999 25.05 3.76999L25.1 3.86999L25 3.91999L24.95 3.81999C24.71 3.78999 24.74 3.79999 24.57 3.52999L24.54 3.53999Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-1.95317e-05 12.59L0.28998 12.45L0.37998 12.64L0.56998 12.55C0.95998 13.51 1.34998 14.47 1.73998 15.43L1.83998 15.38L2.11998 15.72L1.96998 15.91L2.01998 16.01L1.58998 16.34L1.53998 16.24C0.96998 16.09 0.67998 14.81 0.59998 14.32L0.12998 13.36L0.31998 13.03L0.26998 12.93L0.16998 12.98L-0.0200195 12.6L-1.95317e-05 12.59Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.54994 8.62999C8.78994 9.39999 8.49994 9.41999 7.67994 9.76999C7.74994 10.22 7.52994 10.13 7.42994 10.49L7.32994 10.54L7.46994 10.83C7.66994 10.81 7.81994 10.77 8.08994 10.64L8.03994 10.54C8.15994 10.37 8.63994 10.34 8.75994 10.31L8.80994 10.41L8.90994 10.36L9.04994 10.65C8.61994 10.98 8.31994 11.41 7.79994 11.74L7.98994 12.12C8.64994 11.77 9.12994 11.3 9.71994 11.51L9.81994 11.46L9.95994 11.75L9.76994 11.84L9.81994 11.94L8.85994 12.41C8.43994 12.79 8.42994 12.85 7.84994 13.02L7.56994 12.68L7.46994 12.73L7.32994 12.44H7.08994C7.03994 12.26 6.99994 12.09 6.94994 11.91L7.04994 11.86L6.76994 11.28L6.86994 11.23L6.81994 11.13L6.71994 11.18L6.52994 10.8L6.62994 10.75L6.43994 10.13C6.87994 9.60999 7.34994 8.99999 8.07994 8.60999C8.25994 8.68999 8.32994 8.66999 8.55994 8.60999L8.54994 8.62999Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.56994 14.32L1.18994 13.79L1.28994 13.74L1.23994 13.64C1.80994 13.31 2.41994 12.95 3.30994 12.51C3.14994 11.98 3.14994 11.34 3.65994 11.03C3.78994 11.09 3.88994 11.08 4.03994 11.08L4.08994 11.42L3.98994 11.47L4.07994 11.66L3.88994 11.99L4.02994 12.28L3.92994 12.33L4.16994 12.57L4.26994 12.52C4.40994 12.89 4.54994 13.26 4.68994 13.62L4.58994 13.67L4.96994 14.2C4.74994 14.5 4.88994 14.47 4.38994 14.72L4.14994 14.48L4.04994 14.53L3.52994 13.47C3.52994 13.47 3.44994 13.48 3.33994 13.32L3.23994 13.37L3.28994 13.47C2.84994 13.51 2.33994 13.82 1.93994 14.13L1.98994 14.23C1.90994 14.27 1.76994 14.23 1.55994 14.32H1.56994Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.76 9.91L13.58 9.39L13.63 9.49L13.82 9.39999L13.87 9.5L14.06 9.41L14.11 9.51L14.45 9.46L14.5 9.8L13.87 10.23L13.92 10.33L13.3 10.52L13.35 10.62L12.58 11C12.28 10.8 12.17 10.86 11.91 10.37L12.01 10.32L11.92 10.13L12.02 10.08L11.78 9.84L11.88 9.79L11.41 8.59C11.6 8.33 11.49 8.34 11.89 8.12C12.11 8.27 12.21 8.22 12.41 8.46C12.3 8.77 12.52 9.18 12.59 9.56L12.49 9.60999L12.77 9.95L12.76 9.91Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.65 7.29999L15.98 7.96999L15.88 8.01999L16.12 8.49999C16.12 8.49999 15.97 8.60999 16.12 8.73999L16.22 8.68999L16.27 8.78999L16.94 8.45999L16.89 8.35999L17.42 8.21999L17.51 8.40999L17.7 8.31999C17.8 8.74999 17.66 8.93999 17.17 9.17999C17.04 9.51999 16.31 9.66999 16.02 9.74999C15.52 9.37999 15.2 8.58999 14.84 7.82999C14.95 7.66999 14.97 7.58999 14.99 7.39999L15.66 7.30999L15.65 7.29999Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.8 4.17999C19.92 4.41999 18.8201 5.03999 18.4401 5.68999L18.49 5.78999C18.43 5.89999 18.36 6.00999 18.3 6.11999L18.35 6.21999L18.4 6.31999L18.3 6.36999L18.4401 6.65999C18.5201 6.65999 18.6 6.65999 18.68 6.65999C18.79 6.77999 18.68 6.89999 18.68 6.89999C18.77 7.11999 18.8701 7.04999 18.8701 7.04999C19.1601 7.37999 19.01 7.51999 19.39 7.62999L19.48 7.81999C19.77 7.83999 20.05 7.85999 20.34 7.86999C20.97 7.53999 21.38 7.09999 21.64 6.63999L21.59 6.53999C21.68 6.35999 21.69 6.31999 21.88 6.15999C21.83 5.90999 21.85 5.88999 21.88 5.67999L21.98 5.62999C22 5.32999 21.8101 5.35999 21.9401 5.05999C21.5901 4.42999 21.23 4.47999 20.8 4.18999V4.17999ZM21.13 5.32999C21.05 5.49999 21.0801 5.67999 21.0301 5.85999C20.9801 5.91999 20.93 5.98999 20.88 6.04999C20.9 6.15999 20.91 6.26999 20.93 6.38999L20.74 6.47999L20.7901 6.57999C20.6501 6.80999 20.63 6.59999 20.6 6.90999L20.22 7.09999L20.17 6.99999C20.06 7.01999 19.95 7.02999 19.83 7.04999C19.64 6.74999 19.45 6.43999 19.26 6.13999C19.78 5.71999 19.99 5.32999 20.99 5.04999L21.13 5.33999V5.32999Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.43 5.37L25.67 5.85C25.52 6.01 25.34 6.13 25.04 6.28C24.91 6.16 24.89 6.16 24.76 5.94C24.87 5.78 24.89 5.7 24.91 5.51L25.44 5.37H25.43Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_17_193\">\\n<rect width=\"25.67\" height=\"16.33\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',variants:{\"iVkfhqNEx-hover\":{rotate:10},\"Zo9LTM4ca-hover\":{rotate:10}},withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-rmqqa9\",layoutDependency:layoutDependency,layoutId:\"b8yRWiWnU\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},variants:{\"iVkfhqNEx-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},\"iVkfhqNEx-pressed\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},\"Zo9LTM4ca-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},\"Zo9LTM4ca-pressed\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},iVkfhqNEx:{backgroundColor:\"rgba(0, 0, 0, 0)\"},Zo9LTM4ca:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bgwl47-container\",layoutDependency:layoutDependency,layoutId:\"hxPBfLRol-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-0727a76b-ce5f-431c-befe-c8fb1ce72290, rgb(14, 14, 14))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Instagram\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"hxPBfLRol\",layoutId:\"hxPBfLRol\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Qm9kb25pIE1vZGEtNzAw\",\"--framer-font-family\":'\"Bodoni Moda\", \"Bodoni Moda Placeholder\", serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0727a76b-ce5f-431c-befe-c8fb1ce72290, rgb(14, 14, 14)))\"},children:\"works.\"})}),className:\"framer-8g8srq\",fonts:[\"GF;Bodoni Moda-700\"],layoutDependency:layoutDependency,layoutId:\"rWkJoXTxj\",style:{\"--extracted-r6o4lv\":\"var(--token-0727a76b-ce5f-431c-befe-c8fb1ce72290, rgb(14, 14, 14))\"},text:zLxovKMKS,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({gC2RXExUb:{text:NSUhozcTD},k8n1b61G8:{text:FqVqGYMlM},LWZoQw3d9:{text:FqVqGYMlM},XlKgw3ojG:{text:NSUhozcTD}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9I9da.framer-bja7go, .framer-9I9da .framer-bja7go { display: block; }\",\".framer-9I9da.framer-1m7ohth { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: visible; padding: 4px 0px 4px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-9I9da .framer-1ebmmp0 { aspect-ratio: 1.5294117647058822 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 36px; z-index: 1; }\",\".framer-9I9da .framer-rmqqa9 { flex: none; height: 30px; overflow: visible; position: relative; width: 30px; }\",\".framer-9I9da .framer-1bgwl47-container { bottom: 5px; flex: none; left: 5px; position: absolute; right: 5px; top: 5px; }\",\".framer-9I9da .framer-8g8srq { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9I9da.framer-1m7ohth { gap: 0px; } .framer-9I9da.framer-1m7ohth > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9I9da.framer-1m7ohth > :first-child { margin-left: 0px; } .framer-9I9da.framer-1m7ohth > :last-child { margin-right: 0px; } }\",\".framer-9I9da.framer-v-10nlo9v.framer-1m7ohth { align-content: flex-start; align-items: flex-start; gap: unset; height: 36px; justify-content: space-between; padding: 0px; width: 80px; }\",\".framer-9I9da.framer-v-10nlo9v .framer-1ebmmp0, .framer-9I9da.framer-v-xnbh2f .framer-1ebmmp0 { order: 2; }\",\".framer-9I9da.framer-v-10nlo9v .framer-rmqqa9, .framer-9I9da.framer-v-xnbh2f .framer-rmqqa9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: center; order: 0; padding: 0px; width: 36px; }\",\".framer-9I9da.framer-v-10nlo9v .framer-1bgwl47-container, .framer-9I9da.framer-v-xnbh2f .framer-1bgwl47-container { bottom: unset; height: 36px; left: unset; position: relative; right: unset; top: unset; width: 36px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9I9da.framer-v-10nlo9v.framer-1m7ohth, .framer-9I9da.framer-v-10nlo9v .framer-rmqqa9 { gap: 0px; } .framer-9I9da.framer-v-10nlo9v.framer-1m7ohth > *, .framer-9I9da.framer-v-10nlo9v.framer-1m7ohth > :first-child, .framer-9I9da.framer-v-10nlo9v.framer-1m7ohth > :last-child { margin: 0px; } .framer-9I9da.framer-v-10nlo9v .framer-rmqqa9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9I9da.framer-v-10nlo9v .framer-rmqqa9 > :first-child { margin-left: 0px; } .framer-9I9da.framer-v-10nlo9v .framer-rmqqa9 > :last-child { margin-right: 0px; } }\",\".framer-9I9da.framer-v-xnbh2f.framer-1m7ohth { align-content: flex-start; align-items: flex-start; gap: 8px; height: 36px; padding: 0px 0px 0px 44px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9I9da.framer-v-xnbh2f.framer-1m7ohth, .framer-9I9da.framer-v-xnbh2f .framer-rmqqa9 { gap: 0px; } .framer-9I9da.framer-v-xnbh2f.framer-1m7ohth > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-9I9da.framer-v-xnbh2f.framer-1m7ohth > :first-child, .framer-9I9da.framer-v-xnbh2f .framer-rmqqa9 > :first-child { margin-left: 0px; } .framer-9I9da.framer-v-xnbh2f.framer-1m7ohth > :last-child, .framer-9I9da.framer-v-xnbh2f .framer-rmqqa9 > :last-child { margin-right: 0px; } .framer-9I9da.framer-v-xnbh2f .framer-rmqqa9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-9I9da.framer-v-10nlo9v.hover.framer-1m7ohth, .framer-9I9da.framer-v-10nlo9v.pressed.framer-1m7ohth { gap: unset; }\",\".framer-9I9da.framer-v-10nlo9v.hover .framer-1ebmmp0, .framer-9I9da.framer-v-10nlo9v.pressed .framer-1ebmmp0 { order: 1; }\",\".framer-9I9da.framer-v-10nlo9v.hover .framer-1bgwl47-container, .framer-9I9da.framer-v-10nlo9v.pressed .framer-1bgwl47-container { bottom: unset; left: unset; order: 0; right: unset; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9I9da.framer-v-10nlo9v.hover.framer-1m7ohth { gap: 0px; } .framer-9I9da.framer-v-10nlo9v.hover.framer-1m7ohth > *, .framer-9I9da.framer-v-10nlo9v.hover.framer-1m7ohth > :first-child, .framer-9I9da.framer-v-10nlo9v.hover.framer-1m7ohth > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9I9da.framer-v-10nlo9v.pressed.framer-1m7ohth { gap: 0px; } .framer-9I9da.framer-v-10nlo9v.pressed.framer-1m7ohth > *, .framer-9I9da.framer-v-10nlo9v.pressed.framer-1m7ohth > :first-child, .framer-9I9da.framer-v-10nlo9v.pressed.framer-1m7ohth > :last-child { margin: 0px; } }\",\".framer-9I9da.framer-v-xnbh2f.hover .framer-1bgwl47-container, .framer-9I9da.framer-v-xnbh2f.pressed .framer-1bgwl47-container { bottom: unset; left: unset; right: unset; top: unset; }\",'.framer-9I9da[data-border=\"true\"]::after, .framer-9I9da [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 20\n * @framerIntrinsicWidth 63\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"LWZoQw3d9\":{\"layout\":[\"auto\",\"fixed\"]},\"gC2RXExUb\":{\"layout\":[\"auto\",\"fixed\"]},\"iVkfhqNEx\":{\"layout\":[\"fixed\",\"fixed\"]},\"ENixBROiK\":{\"layout\":[\"auto\",\"fixed\"]},\"k8n1b61G8\":{\"layout\":[\"auto\",\"fixed\"]},\"XlKgw3ojG\":{\"layout\":[\"auto\",\"fixed\"]},\"Zo9LTM4ca\":{\"layout\":[\"auto\",\"fixed\"]},\"BIJs5PRaG\":{\"layout\":[\"auto\",\"fixed\"]},\"mwDP0usf0\":{\"layout\":[\"auto\",\"fixed\"]},\"nSGQezSfs\":{\"layout\":[\"auto\",\"fixed\"]},\"m1nTJNM97\":{\"layout\":[\"auto\",\"fixed\"]},\"nhVyt3xhD\":{\"layout\":[\"auto\",\"fixed\"]},\"AfO6yVED5\":{\"layout\":[\"auto\",\"fixed\"]},\"UyRkMSeoY\":{\"layout\":[\"fixed\",\"fixed\"]},\"kmVD09rca\":{\"layout\":[\"fixed\",\"fixed\"]},\"EMQWVuljF\":{\"layout\":[\"auto\",\"fixed\"]},\"N3OVub0yr\":{\"layout\":[\"auto\",\"fixed\"]},\"u_BH7zQor\":{\"layout\":[\"auto\",\"fixed\"]},\"m5lSSKWt8\":{\"layout\":[\"auto\",\"fixed\"]},\"l7oU2Q8vF\":{\"layout\":[\"auto\",\"fixed\"]},\"YRqMT1JAV\":{\"layout\":[\"auto\",\"fixed\"]},\"WQnzQ_V_k\":{\"layout\":[\"auto\",\"fixed\"]},\"OvFIgKdGh\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"zLxovKMKS\":\"works\",\"FqVqGYMlM\":\"about\",\"NSUhozcTD\":\"contact\",\"mj6Yv7ZXD\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZZi8A60fq=withCSS(Component,css,\"framer-9I9da\");export default FramerZZi8A60fq;FramerZZi8A60fq.displayName=\"Header Menu btn\";FramerZZi8A60fq.defaultProps={height:20,width:63};addPropertyControls(FramerZZi8A60fq,{variant:{options:[\"wwcvWn1Z0\",\"LWZoQw3d9\",\"gC2RXExUb\",\"iVkfhqNEx\",\"ENixBROiK\",\"k8n1b61G8\",\"XlKgw3ojG\",\"Zo9LTM4ca\"],optionTitles:[\"WORKS\",\"ABOUT\",\"CONTACT\",\"Instagram\",\"WORKS Page In\",\"ABOUT Page in\",\"CONTACT Page in\",\"Instagram SP\"],title:\"Variant\",type:ControlType.Enum},zLxovKMKS:{defaultValue:\"works.\",displayTextArea:false,placeholder:\"\",title:\"works\",type:ControlType.String},FqVqGYMlM:{defaultValue:\"about.\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"about.\",type:ControlType.String},NSUhozcTD:{defaultValue:\"contact.\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"contact.\",type:ControlType.String},mj6Yv7ZXD:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerZZi8A60fq,[{explicitInter:true,fonts:[{family:\"Bodoni Moda\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bodonimoda/v25/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIVytVjMYwE.woff2\",weight:\"700\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZZi8A60fq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"zLxovKMKS\\\":\\\"works\\\",\\\"FqVqGYMlM\\\":\\\"about\\\",\\\"NSUhozcTD\\\":\\\"contact\\\",\\\"mj6Yv7ZXD\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"LWZoQw3d9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"gC2RXExUb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"iVkfhqNEx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ENixBROiK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"k8n1b61G8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"XlKgw3ojG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Zo9LTM4ca\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"BIJs5PRaG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"mwDP0usf0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"nSGQezSfs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"m1nTJNM97\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"nhVyt3xhD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"AfO6yVED5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"UyRkMSeoY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kmVD09rca\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EMQWVuljF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"N3OVub0yr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"u_BH7zQor\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"m5lSSKWt8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"l7oU2Q8vF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"YRqMT1JAV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"WQnzQ_V_k\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"OvFIgKdGh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"20\",\"framerIntrinsicWidth\":\"63\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZZi8A60fq.map", "// Generated by Framer (f22aa3d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import HamburgerMenu from\"https://framerusercontent.com/modules/lJGJjWVNla9a4rWE8E9R/7XpM1Q9vmB9nFKhO2spS/Azq1J2aO9.js\";import HeaderMenuBtn from\"https://framerusercontent.com/modules/sqt96wkm0KgPxsyP4Gnw/AxNWZlnGFE7squYfYJ8w/ZZi8A60fq.js\";const HamburgerMenuFonts=getFonts(HamburgerMenu);const HeaderMenuBtnFonts=getFonts(HeaderMenuBtn);const cycleOrder=[\"Jf__Bh2QP\",\"nfn1IljUP\",\"te2HHHKGn\",\"qNtMeXF1j\",\"V6804wOaZ\",\"HyuDsUua8\",\"Nw3OUhhcw\",\"Im_EhKlsT\",\"CMuF8aFQn\"];const serializationHash=\"framer-nXxWo\";const variantClassNames={CMuF8aFQn:\"framer-v-twl1ux\",HyuDsUua8:\"framer-v-rrqvi6\",Im_EhKlsT:\"framer-v-175y4nz\",Jf__Bh2QP:\"framer-v-ny3h2\",nfn1IljUP:\"framer-v-ijv0c4\",Nw3OUhhcw:\"framer-v-axp1a\",qNtMeXF1j:\"framer-v-1il329n\",te2HHHKGn:\"framer-v-w2tj7u\",V6804wOaZ:\"framer-v-16c1ivm\"};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={\"About PC\":\"qNtMeXF1j\",\"About Tablet\":\"Nw3OUhhcw\",\"Contact PC\":\"V6804wOaZ\",\"Contact Tablet\":\"Im_EhKlsT\",\"Home - Phone - CLOSE\":\"te2HHHKGn\",\"Home - Phone - OPEN\":\"nfn1IljUP\",\"Home PC\":\"Jf__Bh2QP\",\"Home Tablet\":\"HyuDsUua8\",\"Variant 9\":\"CMuF8aFQn\"};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:\"Jf__Bh2QP\"};};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:\"Jf__Bh2QP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const gzqKD7u5h1oy9bfd=activeVariantCallback(async(...args)=>{setVariant(\"te2HHHKGn\");});const gzqKD7u5h1ixnfhb=activeVariantCallback(async(...args)=>{setVariant(\"nfn1IljUP\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"nfn1IljUP\",\"te2HHHKGn\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"te2HHHKGn\")return false;return true;};const isDisplayed2=()=>{if([\"qNtMeXF1j\",\"V6804wOaZ\",\"HyuDsUua8\",\"Nw3OUhhcw\",\"Im_EhKlsT\",\"CMuF8aFQn\"].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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ny3h2\",className,classNames),\"data-framer-name\":\"Home PC\",layoutDependency:layoutDependency,layoutId:\"Jf__Bh2QP\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",...style},variants:{nfn1IljUP:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({CMuF8aFQn:{\"data-framer-name\":\"Variant 9\"},HyuDsUua8:{\"data-framer-name\":\"Home Tablet\"},Im_EhKlsT:{\"data-framer-name\":\"Contact Tablet\"},nfn1IljUP:{\"data-framer-name\":\"Home - Phone - OPEN\"},Nw3OUhhcw:{\"data-framer-name\":\"About Tablet\"},qNtMeXF1j:{\"data-framer-name\":\"About PC\"},te2HHHKGn:{\"data-framer-name\":\"Home - Phone - CLOSE\"},V6804wOaZ:{\"data-framer-name\":\"Contact PC\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jxaogg\",layoutDependency:layoutDependency,layoutId:\"Yf9HTCavC\",style:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"none\"},variants:{nfn1IljUP:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgb(240, 240, 240)\",WebkitBackdropFilter:\"blur(0px)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17c9ccs\",layoutDependency:layoutDependency,layoutId:\"FonQ6CD5c\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"K50sepoIw\"},children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-161xora framer-12afsip\",layoutDependency:layoutDependency,layoutId:\"rMRkNrquY\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-z5alg1\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:119,layoutDependency:layoutDependency,layoutId:\"DJ2HKEhvp\",svg:'<svg width=\"119\" height=\"14\" viewBox=\"0 0 119 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.27 6.80002C12.27 8.70002 11.68 10.31 10.49 11.62C9.30999 12.93 7.84999 13.59 6.12999 13.59C4.40999 13.59 2.99999 12.92 1.79999 11.59C0.59999 10.26 -0.0100098 8.66002 -0.0100098 6.78002C-0.0100098 4.90002 0.59999 3.25002 1.79999 1.96002C2.98999 0.67002 4.47999 0.0200195 6.24999 0.0200195C8.01999 0.0200195 9.38999 0.67002 10.54 1.97002C11.69 3.27002 12.27 4.88002 12.27 6.81002V6.80002ZM8.92999 7.10002C8.92999 4.58002 8.62999 2.72002 8.03999 1.52002C7.64999 0.74002 7.02999 0.34002 6.17999 0.34002C5.32999 0.34002 4.62999 0.89002 4.11999 1.99002C3.60999 3.09002 3.34999 4.56002 3.34999 6.41002C3.34999 9.09002 3.80999 11.1 4.71999 12.42C5.09999 12.98 5.64999 13.25 6.36999 13.25C7.20999 13.25 7.78999 12.85 8.13999 12.06C8.66999 10.82 8.93999 9.16002 8.93999 7.09002L8.92999 7.10002Z\" fill=\"black\"/>\\n<path d=\"M29.09 13.36C29.09 13.44 29.03 13.47 28.92 13.47C28.83 13.47 28.75 13.47 28.67 13.46C28.23 13.41 26.99 13.38 24.95 13.38H23.49C23.1 13.39 22.9 13.34 22.9 13.22C22.9 13.11 23.06 13.05 23.38 13.04C23.66 13.03 23.9 12.97 24.11 12.88C24.32 12.79 24.42 12.67 24.42 12.55C24.43 12.47 24.44 12.27 24.46 11.92V6.57998H19.94V12.45C19.95 12.78 20.21 12.98 20.7 13.04C21.09 13.09 21.32 13.13 21.38 13.14C21.44 13.16 21.47 13.2 21.47 13.26C21.47 13.34 21.41 13.37 21.28 13.37C21.12 13.37 20.68 13.36 19.97 13.33C19.26 13.3 18.96 13.29 19.08 13.29C19 13.29 18.61 13.3 17.91 13.33C17.21 13.36 16.54 13.37 15.91 13.37H15.72C15.49 13.37 15.38 13.31 15.38 13.2C15.38 13.1 15.47 13.05 15.65 13.05C16.25 13.05 16.66 12.97 16.89 12.82C16.99 12.76 17.04 12.42 17.04 11.81V1.34998C17.04 0.94998 16.93 0.69998 16.71 0.61998C16.49 0.53998 16.13 0.49998 15.64 0.49998C15.47 0.49998 15.39 0.44998 15.39 0.34998C15.39 0.28998 15.46 0.24998 15.6 0.23998C15.55 0.23998 16.03 0.23998 17.03 0.23998H21.22C21.4 0.23998 21.49 0.29998 21.49 0.42998C21.49 0.51998 21.46 0.56998 21.39 0.58998C21.32 0.60998 21.11 0.61998 20.75 0.63998C20.39 0.65998 20.17 0.72998 20.08 0.87998C19.99 1.02998 19.95 1.28998 19.95 1.66998V6.14998H20.4C21.65 6.19998 23.01 6.18998 24.47 6.10998V1.84998C24.47 0.98998 24.16 0.54998 23.54 0.54998C23.12 0.54998 22.92 0.48998 22.92 0.37998C22.92 0.27998 23 0.22998 23.17 0.22998H28.93C29.06 0.22998 29.12 0.26998 29.12 0.33998C29.12 0.42998 28.89 0.48998 28.42 0.52998C27.95 0.56998 27.66 0.66998 27.55 0.81998C27.44 0.97998 27.38 1.36998 27.38 2.00998V11.34C27.38 12.16 27.48 12.66 27.69 12.83C27.9 13 28.26 13.1 28.76 13.12C29 13.13 29.12 13.21 29.12 13.35L29.09 13.36Z\" fill=\"black\"/>\\n<path d=\"M44.06 9.27999C44.06 9.39999 43.82 9.44999 43.35 9.43999C42.79 9.42999 42.49 9.54999 42.45 9.81999C42.42 9.96999 42.41 10.47 42.41 11.31V12.09C40.9 13.11 39.47 13.62 38.1 13.62C36.3 13.62 34.8 12.99 33.59 11.72C32.38 10.45 31.78 8.87999 31.78 6.98999C31.78 4.98999 32.4 3.31999 33.64 1.98999C34.88 0.65999 36.44 -0.0100098 38.31 -0.0100098C39.08 -0.0100098 39.88 0.17999 40.7 0.55999C41 0.69999 41.21 0.76999 41.33 0.76999C41.53 0.76999 41.7 0.61999 41.84 0.30999C41.9 0.15999 41.97 0.0799902 42.05 0.0799902C42.14 0.0799902 42.18 0.13999 42.18 0.26999C42.18 0.29999 42.16 0.54999 42.12 1.02999C42.11 1.17999 42.1 1.53999 42.1 2.10999C42.1 2.53999 42.13 3.19999 42.18 4.08999C42.18 4.32999 42.12 4.44999 41.99 4.44999C41.81 4.44999 41.69 4.19999 41.63 3.68999C41.48 2.57999 41.11 1.68999 40.53 1.04999C40.1 0.57999 39.5 0.34999 38.72 0.34999C36.33 0.34999 35.13 2.47999 35.13 6.72999C35.13 9.37999 35.52 11.22 36.31 12.26C36.81 12.92 37.47 13.25 38.29 13.25C39.33 13.25 39.85 12.59 39.85 11.27C39.85 10.28 39.81 9.72999 39.73 9.60999C39.65 9.48999 39.43 9.42999 39.09 9.42999H38.61C38.34 9.42999 38.21 9.36999 38.21 9.25999C38.21 9.14999 38.32 9.08999 38.53 9.08999C38.97 9.08999 39.53 9.08999 40.2 9.10999H43.83C43.98 9.10999 44.06 9.15999 44.06 9.26999V9.27999Z\" fill=\"black\"/>\\n<path d=\"M58.2 13.17C58.2 13.27 58.15 13.33 58.06 13.35C57.96 13.37 57.72 13.38 57.33 13.38C57.23 13.38 56.94 13.38 56.48 13.36C55.54 13.33 54.9 13.32 54.54 13.32C54.12 13.32 53.75 13.32 53.44 13.34C52.81 13.37 52.38 13.38 52.15 13.38C51.81 13.38 51.64 13.32 51.64 13.19C51.64 13.06 52 12.99 52.72 12.98C52.9 12.98 53.03 12.97 53.12 12.94C53.32 12.91 53.42 12.84 53.42 12.71C53.42 12.65 53.34 12.38 53.19 11.91L52.79 10.67C52.71 10.39 52.55 9.88005 52.3 9.13005H50.48C49.95 9.12005 49.38 9.13005 48.79 9.15005C48.68 9.40005 48.46 9.97005 48.14 10.86L47.72 12.09C47.66 12.28 47.63 12.43 47.63 12.55C47.63 12.77 47.77 12.9 48.05 12.97C48.11 12.98 48.42 13.01 48.98 13.05C49.16 13.06 49.25 13.12 49.25 13.21C49.25 13.32 49.14 13.37 48.91 13.37H45.53C45.35 13.37 45.26 13.31 45.26 13.18C45.26 13.1 45.46 13.05 45.85 13.03C46.36 13.01 46.68 12.91 46.82 12.75C46.96 12.59 47.19 12.05 47.5 11.15C47.74 10.52 48.09 9.58005 48.55 8.34005L50.85 2.01005C50.96 1.73005 51.12 1.29005 51.33 0.700049C51.47 0.270049 51.58 0.0500488 51.65 0.0500488C51.72 0.0500488 51.87 0.340049 52.07 0.920049C52.32 1.67005 53.44 4.62005 55.41 9.77005C55.66 10.43 55.92 11.1 56.17 11.78C56.39 12.36 56.6 12.72 56.82 12.84C56.98 12.94 57.38 12.99 58 12.97C58.15 12.97 58.23 13.03 58.23 13.14L58.2 13.17ZM52.15 8.72005C52.15 8.72005 52.09 8.56005 52.02 8.36005C51.51 6.89005 51.14 5.86005 50.91 5.26005C50.85 5.09005 50.76 4.85005 50.66 4.53005L50.53 4.19005C50.3 4.73005 50.03 5.49005 49.7 6.45005C49.33 7.53005 49.07 8.28005 48.91 8.71005H52.16L52.15 8.72005Z\" fill=\"black\"/>\\n<path d=\"M77.22 13.22C77.22 13.35 77.09 13.41 76.84 13.41H70.57C70.39 13.41 70.3 13.36 70.3 13.25C70.3 13.14 70.39 13.09 70.57 13.09H71.22C71.8 13.1 72.16 13 72.28 12.79C72.32 12.73 72.34 12.35 72.34 11.65V1.33C71.93 2.38 71.39 4.05 70.73 6.35L69.08 12.16C68.88 12.87 68.71 13.22 68.59 13.22C68.45 13.22 68.32 13.04 68.21 12.69C68.17 12.58 67.77 11.36 66.99 9.04C66.7 8.17 65.91 5.71 64.61 1.69V11.54C64.61 12.11 64.61 12.45 64.63 12.56C64.64 12.67 64.7 12.76 64.8 12.84C64.99 13.01 65.31 13.08 65.77 13.07C66.23 13.06 66.45 13.13 66.45 13.28C66.45 13.37 66.36 13.41 66.17 13.41L64.48 13.33C64.19 13.32 63.85 13.33 63.47 13.36C62.96 13.39 62.62 13.41 62.44 13.41C62.17 13.41 62.04 13.35 62.04 13.24C62.04 13.14 62.15 13.09 62.36 13.09C62.87 13.09 63.17 13.09 63.27 13.07C63.66 13.02 63.89 12.87 63.95 12.63C63.99 12.48 64.01 12.16 64.01 11.68V2.61C64.01 1.6 63.95 0.999998 63.83 0.829998C63.71 0.659998 63.26 0.569998 62.47 0.569998C62.27 0.569998 62.17 0.509998 62.17 0.399998C62.17 0.269998 62.28 0.219998 62.49 0.229998H66.58C66.58 0.229998 66.69 0.229998 66.79 0.249998C67.87 3.75 68.79 6.66 69.54 8.97L72.1 0.229998H72.5H75.01H76.72C76.97 0.229998 77.1 0.279998 77.1 0.389998C77.1 0.509998 77.02 0.559998 76.87 0.549998H76.43C75.9 0.529998 75.54 0.579998 75.36 0.699998C75.18 0.829998 75.08 1.07 75.08 1.44V12.17C75.08 12.63 75.2 12.89 75.44 12.96C75.68 13.03 76.03 13.06 76.5 13.05C76.97 13.04 77.21 13.09 77.21 13.22H77.22Z\" fill=\"black\"/>\\n<path d=\"M86.56 13.21C86.56 13.32 86.48 13.37 86.31 13.37C86.22 13.37 86.14 13.37 86.06 13.35C85.3 13.31 84.65 13.29 84.1 13.29C83.55 13.29 82.69 13.31 81.59 13.35C81.22 13.36 80.95 13.37 80.77 13.37C80.58 13.37 80.48 13.31 80.48 13.2C80.48 13.14 80.51 13.1 80.58 13.09C80.65 13.08 80.89 13.07 81.31 13.05C81.7 12.97 81.93 12.86 81.99 12.7C82.05 12.54 82.09 12.03 82.09 11.17V1.32998C82.08 1.09998 82.07 0.98998 82.07 1.00998C82.07 0.68998 81.75 0.52998 81.12 0.52998C80.77 0.52998 80.59 0.48998 80.59 0.39998C80.59 0.30998 80.61 0.25998 80.67 0.24998C80.73 0.23998 80.89 0.22998 81.16 0.22998C81.03 0.22998 81.26 0.22998 81.84 0.22998H86.15C86.31 0.22998 86.4 0.27998 86.4 0.36998C86.4 0.43998 86.37 0.48998 86.31 0.49998C86.25 0.51998 86.06 0.52998 85.73 0.53998C85.34 0.56998 85.1 0.64998 85.01 0.78998L84.95 1.14998V11.87C84.95 12.41 85.01 12.74 85.13 12.84C85.25 12.94 85.66 13.01 86.36 13.05C86.47 13.06 86.53 13.12 86.53 13.21H86.56Z\" fill=\"black\"/>\\n<path d=\"M103.66 13.36C103.66 13.44 103.6 13.47 103.49 13.47C103.4 13.47 103.32 13.47 103.24 13.46C102.8 13.41 101.56 13.38 99.52 13.38H98.06C97.67 13.39 97.47 13.34 97.47 13.22C97.47 13.11 97.63 13.05 97.95 13.04C98.23 13.03 98.47 12.97 98.68 12.88C98.89 12.79 98.99 12.67 98.99 12.55C99 12.47 99.01 12.27 99.03 11.92V6.57998H94.51V12.45C94.52 12.78 94.78 12.98 95.27 13.04C95.66 13.09 95.89 13.13 95.95 13.14C96.01 13.16 96.04 13.2 96.04 13.26C96.04 13.34 95.98 13.37 95.85 13.37C95.69 13.37 95.25 13.36 94.54 13.33C93.83 13.3 93.53 13.29 93.65 13.29C93.57 13.29 93.18 13.3 92.48 13.33C91.78 13.36 91.11 13.37 90.48 13.37H90.29C90.06 13.37 89.95 13.31 89.95 13.2C89.95 13.1 90.04 13.05 90.22 13.05C90.82 13.05 91.23 12.97 91.46 12.82C91.56 12.76 91.61 12.42 91.61 11.81V1.34998C91.61 0.94998 91.5 0.69998 91.28 0.61998C91.06 0.53998 90.7 0.49998 90.21 0.49998C90.04 0.49998 89.96 0.44998 89.96 0.34998C89.96 0.28998 90.03 0.24998 90.17 0.23998C90.12 0.23998 90.6 0.23998 91.6 0.23998H95.79C95.97 0.23998 96.06 0.29998 96.06 0.42998C96.06 0.51998 96.03 0.56998 95.96 0.58998C95.89 0.60998 95.68 0.61998 95.32 0.63998C94.96 0.65998 94.74 0.72998 94.65 0.87998C94.56 1.02998 94.52 1.28998 94.52 1.66998V6.14998H94.97C96.22 6.19998 97.58 6.18998 99.04 6.10998V1.84998C99.04 0.98998 98.73 0.54998 98.11 0.54998C97.69 0.54998 97.49 0.48998 97.49 0.37998C97.49 0.27998 97.57 0.22998 97.74 0.22998H103.5C103.63 0.22998 103.69 0.26998 103.69 0.33998C103.69 0.42998 103.46 0.48998 102.99 0.52998C102.52 0.56998 102.23 0.66998 102.12 0.81998C102.01 0.97998 101.95 1.36998 101.95 2.00998V11.34C101.95 12.16 102.05 12.66 102.26 12.83C102.47 13 102.83 13.1 103.33 13.12C103.57 13.13 103.69 13.21 103.69 13.35L103.66 13.36Z\" fill=\"black\"/>\\n<path d=\"M118.62 6.80001C118.62 8.70001 118.03 10.31 116.84 11.62C115.66 12.93 114.2 13.59 112.48 13.59C110.76 13.59 109.35 12.92 108.15 11.59C106.95 10.26 106.34 8.66001 106.34 6.78001C106.34 4.90001 106.94 3.25001 108.14 1.95001C109.34 0.66001 110.82 0.0100098 112.6 0.0100098C114.38 0.0100098 115.74 0.66001 116.89 1.96001C118.04 3.26001 118.62 4.87001 118.62 6.80001ZM115.27 7.10001C115.27 4.58001 114.97 2.72001 114.38 1.52001C113.99 0.74001 113.37 0.34001 112.52 0.34001C111.67 0.34001 110.97 0.89001 110.46 1.99001C109.95 3.09001 109.69 4.56001 109.69 6.41001C109.69 9.09001 110.15 11.1 111.06 12.42C111.44 12.98 111.99 13.25 112.71 13.25C113.55 13.25 114.13 12.85 114.48 12.06C115.01 10.82 115.28 9.16001 115.28 7.09001L115.27 7.10001Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Qm9kb25pIE1vZGEtNzAw\",\"--framer-font-family\":'\"Bodoni Moda\", \"Bodoni Moda Placeholder\", serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1em\"},children:\"Design & Illustration works.\"})}),className:\"framer-1ypmv15\",fonts:[\"GF;Bodoni Moda-700\"],layoutDependency:layoutDependency,layoutId:\"CHsPHkCac\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({nfn1IljUP:{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+30+0},te2HHHKGn:{height:30,width:\"30px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+30+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11crg1i-container\",layoutDependency:layoutDependency,layoutId:\"Y5Kc9xMm7-container\",children:/*#__PURE__*/_jsx(HamburgerMenu,{height:\"100%\",id:\"Y5Kc9xMm7\",layoutId:\"Y5Kc9xMm7\",style:{height:\"100%\",width:\"100%\"},variant:\"ATeQo52_k\",width:\"100%\",...addPropertyOverrides({nfn1IljUP:{gzqKD7u5h:gzqKD7u5h1oy9bfd,variant:\"nIS6zI0Ot\"},te2HHHKGn:{gzqKD7u5h:gzqKD7u5h1ixnfhb}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1msqixz\",layoutDependency:layoutDependency,layoutId:\"OdVaA2E_S\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+0+21+0,...addPropertyOverrides({nfn1IljUP:{height:40,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 4)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+0+390}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rsk31t-container\",layoutDependency:layoutDependency,layoutId:\"hHyQp4uTJ-container\",children:/*#__PURE__*/_jsx(HeaderMenuBtn,{FqVqGYMlM:\"about.\",height:\"100%\",id:\"hHyQp4uTJ\",layoutId:\"hHyQp4uTJ\",NSUhozcTD:\"contact.\",variant:\"ENixBROiK\",width:\"100%\",zLxovKMKS:\"works.\",...addPropertyOverrides({Im_EhKlsT:{variant:\"wwcvWn1Z0\"},nfn1IljUP:{style:{height:\"100%\",width:\"100%\"},variant:\"wwcvWn1Z0\"},Nw3OUhhcw:{variant:\"wwcvWn1Z0\"},qNtMeXF1j:{variant:\"wwcvWn1Z0\"},V6804wOaZ:{variant:\"wwcvWn1Z0\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+0+21+0,...addPropertyOverrides({nfn1IljUP:{height:40,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 4)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+0+450}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lwtnro-container\",layoutDependency:layoutDependency,layoutId:\"IIzTyEjV7-container\",children:/*#__PURE__*/_jsx(HeaderMenuBtn,{FqVqGYMlM:\"about.\",height:\"100%\",id:\"IIzTyEjV7\",layoutId:\"IIzTyEjV7\",NSUhozcTD:\"contact.\",variant:\"LWZoQw3d9\",width:\"100%\",zLxovKMKS:\"WORKS\",...addPropertyOverrides({nfn1IljUP:{style:{height:\"100%\",width:\"100%\"}},Nw3OUhhcw:{variant:\"k8n1b61G8\"},qNtMeXF1j:{variant:\"k8n1b61G8\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+0+21+0,...addPropertyOverrides({nfn1IljUP:{height:40,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 4)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+0+510}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1545hmv-container\",layoutDependency:layoutDependency,layoutId:\"zO4DAE8LH-container\",children:/*#__PURE__*/_jsx(HeaderMenuBtn,{FqVqGYMlM:\"about.\",height:\"100%\",id:\"zO4DAE8LH\",layoutId:\"zO4DAE8LH\",NSUhozcTD:\"contact.\",variant:\"gC2RXExUb\",width:\"100%\",zLxovKMKS:\"WORKS\",...addPropertyOverrides({Im_EhKlsT:{variant:\"XlKgw3ojG\"},nfn1IljUP:{style:{height:\"100%\",width:\"100%\"}},V6804wOaZ:{variant:\"XlKgw3ojG\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+0+21+0,...addPropertyOverrides({HyuDsUua8:{width:\"80px\"},nfn1IljUP:{height:40,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.3)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+0+570}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hr0hvt-container\",layoutDependency:layoutDependency,layoutId:\"vlroEmPsL-container\",children:/*#__PURE__*/_jsx(HeaderMenuBtn,{FqVqGYMlM:\"about.\",height:\"100%\",id:\"vlroEmPsL\",layoutId:\"vlroEmPsL\",NSUhozcTD:\"contact.\",variant:\"iVkfhqNEx\",width:\"100%\",zLxovKMKS:\"WORKS\",...addPropertyOverrides({HyuDsUua8:{style:{width:\"100%\"}},nfn1IljUP:{style:{height:\"100%\",width:\"100%\"},variant:\"Zo9LTM4ca\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s96ss6\",layoutDependency:layoutDependency,layoutId:\"pZyovIGWk\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rjaggr\",layoutDependency:layoutDependency,layoutId:\"wheOulwU4\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png\",srcSet:\"https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png 3840w\"},className:\"framer-qk3i65\",\"data-framer-name\":\"\u661F\",layoutDependency:layoutDependency,layoutId:\"tvlEcd8Pb\",...addPropertyOverrides({CMuF8aFQn:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png\",srcSet:\"https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png 3840w\"}},HyuDsUua8:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png\",srcSet:\"https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png 3840w\"}},Im_EhKlsT:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png\",srcSet:\"https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png 3840w\"}},Nw3OUhhcw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png\",srcSet:\"https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png 3840w\"}}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iw6mz9\",layoutDependency:layoutDependency,layoutId:\"PKIw95Nu_\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+120+-120),positionX:\"center\",positionY:\"center\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png\",srcSet:\"https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z0PArlHQc3doMcChpQ41QUsgDc.png 3840w\"},className:\"framer-1mmy5l7\",\"data-framer-name\":\"\u661F\",layoutDependency:layoutDependency,layoutId:\"NTZi2HPZL\"})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nXxWo.framer-12afsip, .framer-nXxWo .framer-12afsip { display: block; }\",\".framer-nXxWo.framer-ny3h2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 120px; justify-content: center; overflow: hidden; padding: 40px 40px 0px 40px; position: relative; width: 1800px; }\",\".framer-nXxWo .framer-jxaogg { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-nXxWo .framer-17c9ccs { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-nXxWo .framer-161xora { 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; position: relative; text-decoration: none; width: min-content; }\",\".framer-nXxWo .framer-z5alg1 { flex: none; height: 14px; position: relative; width: 119px; }\",\".framer-nXxWo .framer-1ypmv15 { flex: none; height: 17px; position: relative; white-space: pre; width: auto; }\",\".framer-nXxWo .framer-11crg1i-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-nXxWo .framer-1msqixz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-nXxWo .framer-1rsk31t-container, .framer-nXxWo .framer-1lwtnro-container, .framer-nXxWo .framer-1545hmv-container, .framer-nXxWo .framer-hr0hvt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-nXxWo .framer-1s96ss6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 326px; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; width: 1280px; z-index: 1; }\",\".framer-nXxWo .framer-rjaggr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 120px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-nXxWo .framer-qk3i65 { flex: none; height: 326px; position: relative; width: 1280px; }\",\".framer-nXxWo .framer-1iw6mz9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 206px; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-nXxWo .framer-1mmy5l7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 326px; justify-content: flex-start; left: 0px; padding: 0px; position: absolute; right: 0px; top: -120px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nXxWo.framer-ny3h2, .framer-nXxWo .framer-17c9ccs, .framer-nXxWo .framer-161xora, .framer-nXxWo .framer-1msqixz, .framer-nXxWo .framer-1s96ss6, .framer-nXxWo .framer-rjaggr, .framer-nXxWo .framer-1iw6mz9, .framer-nXxWo .framer-1mmy5l7 { gap: 0px; } .framer-nXxWo.framer-ny3h2 > *, .framer-nXxWo .framer-rjaggr > *, .framer-nXxWo .framer-1iw6mz9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-nXxWo.framer-ny3h2 > :first-child, .framer-nXxWo .framer-17c9ccs > :first-child, .framer-nXxWo .framer-1msqixz > :first-child, .framer-nXxWo .framer-rjaggr > :first-child, .framer-nXxWo .framer-1iw6mz9 > :first-child, .framer-nXxWo .framer-1mmy5l7 > :first-child { margin-left: 0px; } .framer-nXxWo.framer-ny3h2 > :last-child, .framer-nXxWo .framer-17c9ccs > :last-child, .framer-nXxWo .framer-1msqixz > :last-child, .framer-nXxWo .framer-rjaggr > :last-child, .framer-nXxWo .framer-1iw6mz9 > :last-child, .framer-nXxWo .framer-1mmy5l7 > :last-child { margin-right: 0px; } .framer-nXxWo .framer-17c9ccs > *, .framer-nXxWo .framer-1msqixz > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-nXxWo .framer-161xora > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-nXxWo .framer-161xora > :first-child, .framer-nXxWo .framer-1s96ss6 > :first-child { margin-top: 0px; } .framer-nXxWo .framer-161xora > :last-child, .framer-nXxWo .framer-1s96ss6 > :last-child { margin-bottom: 0px; } .framer-nXxWo .framer-1s96ss6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-nXxWo .framer-1mmy5l7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-nXxWo.framer-v-ijv0c4.framer-ny3h2 { align-content: center; align-items: center; flex-direction: column; height: min-content; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 0px; width: 390px; }\",\".framer-nXxWo.framer-v-ijv0c4 .framer-jxaogg, .framer-nXxWo.framer-v-w2tj7u .framer-jxaogg { align-content: center; align-items: center; flex-direction: column; gap: 0px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: flex-start; }\",\".framer-nXxWo.framer-v-ijv0c4 .framer-17c9ccs { align-content: flex-start; align-items: flex-start; gap: unset; height: 50px; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); order: 0; padding: 0px 20px 0px 20px; position: absolute; top: 30px; width: 100%; z-index: 2; }\",\".framer-nXxWo.framer-v-ijv0c4 .framer-161xora, .framer-nXxWo.framer-v-w2tj7u .framer-161xora { order: 0; }\",\".framer-nXxWo.framer-v-ijv0c4 .framer-11crg1i-container, .framer-nXxWo.framer-v-w2tj7u .framer-11crg1i-container { order: 1; }\",\".framer-nXxWo.framer-v-ijv0c4 .framer-1msqixz { flex-direction: column; height: calc(var(--framer-viewport-height, 100vh) * 1); order: 1; width: 100%; z-index: 1; }\",\".framer-nXxWo.framer-v-ijv0c4 .framer-1rsk31t-container { height: 40px; order: 0; width: 25%; }\",\".framer-nXxWo.framer-v-ijv0c4 .framer-1lwtnro-container { height: 40px; order: 1; width: 25%; }\",\".framer-nXxWo.framer-v-ijv0c4 .framer-1545hmv-container { height: 40px; order: 2; width: 25%; }\",\".framer-nXxWo.framer-v-ijv0c4 .framer-hr0hvt-container { height: 40px; order: 3; width: 30%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nXxWo.framer-v-ijv0c4.framer-ny3h2, .framer-nXxWo.framer-v-ijv0c4 .framer-jxaogg, .framer-nXxWo.framer-v-ijv0c4 .framer-17c9ccs, .framer-nXxWo.framer-v-ijv0c4 .framer-1msqixz { gap: 0px; } .framer-nXxWo.framer-v-ijv0c4.framer-ny3h2 > *, .framer-nXxWo.framer-v-ijv0c4 .framer-jxaogg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-nXxWo.framer-v-ijv0c4.framer-ny3h2 > :first-child, .framer-nXxWo.framer-v-ijv0c4 .framer-jxaogg > :first-child, .framer-nXxWo.framer-v-ijv0c4 .framer-1msqixz > :first-child { margin-top: 0px; } .framer-nXxWo.framer-v-ijv0c4.framer-ny3h2 > :last-child, .framer-nXxWo.framer-v-ijv0c4 .framer-jxaogg > :last-child, .framer-nXxWo.framer-v-ijv0c4 .framer-1msqixz > :last-child { margin-bottom: 0px; } .framer-nXxWo.framer-v-ijv0c4 .framer-17c9ccs > *, .framer-nXxWo.framer-v-ijv0c4 .framer-17c9ccs > :first-child, .framer-nXxWo.framer-v-ijv0c4 .framer-17c9ccs > :last-child { margin: 0px; } .framer-nXxWo.framer-v-ijv0c4 .framer-1msqixz > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-nXxWo.framer-v-w2tj7u.framer-ny3h2 { align-content: center; align-items: center; flex-direction: column; height: 80px; justify-content: flex-start; padding: 0px; width: 390px; }\",\".framer-nXxWo.framer-v-w2tj7u .framer-17c9ccs { align-content: flex-start; align-items: flex-start; bottom: 0px; gap: unset; height: unset; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); padding: 0px 20px 0px 20px; position: absolute; top: 30px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nXxWo.framer-v-w2tj7u.framer-ny3h2, .framer-nXxWo.framer-v-w2tj7u .framer-jxaogg, .framer-nXxWo.framer-v-w2tj7u .framer-17c9ccs { gap: 0px; } .framer-nXxWo.framer-v-w2tj7u.framer-ny3h2 > *, .framer-nXxWo.framer-v-w2tj7u .framer-jxaogg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-nXxWo.framer-v-w2tj7u.framer-ny3h2 > :first-child, .framer-nXxWo.framer-v-w2tj7u .framer-jxaogg > :first-child { margin-top: 0px; } .framer-nXxWo.framer-v-w2tj7u.framer-ny3h2 > :last-child, .framer-nXxWo.framer-v-w2tj7u .framer-jxaogg > :last-child { margin-bottom: 0px; } .framer-nXxWo.framer-v-w2tj7u .framer-17c9ccs > *, .framer-nXxWo.framer-v-w2tj7u .framer-17c9ccs > :first-child, .framer-nXxWo.framer-v-w2tj7u .framer-17c9ccs > :last-child { margin: 0px; } }\",\".framer-nXxWo.framer-v-1il329n.framer-ny3h2, .framer-nXxWo.framer-v-16c1ivm.framer-ny3h2 { height: 326px; }\",\".framer-nXxWo.framer-v-rrqvi6.framer-ny3h2, .framer-nXxWo.framer-v-twl1ux.framer-ny3h2 { aspect-ratio: 6.75 / 1; height: var(--framer-aspect-ratio-supported, 120px); width: 810px; }\",\".framer-nXxWo.framer-v-rrqvi6 .framer-hr0hvt-container { width: 80px; }\",\".framer-nXxWo.framer-v-rrqvi6 .framer-1s96ss6, .framer-nXxWo.framer-v-twl1ux .framer-1s96ss6 { overflow: hidden; width: 600px; }\",\".framer-nXxWo.framer-v-rrqvi6 .framer-rjaggr, .framer-nXxWo.framer-v-twl1ux .framer-rjaggr { position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-nXxWo.framer-v-axp1a.framer-ny3h2, .framer-nXxWo.framer-v-175y4nz.framer-ny3h2 { height: 326px; width: 810px; }\",\".framer-nXxWo.framer-v-axp1a .framer-1s96ss6, .framer-nXxWo.framer-v-175y4nz .framer-1s96ss6 { overflow: hidden; width: 100%; }\",\".framer-nXxWo.framer-v-axp1a .framer-rjaggr, .framer-nXxWo.framer-v-175y4nz .framer-rjaggr { position: absolute; right: 0px; top: 0px; width: 600px; z-index: 1; }\",\".framer-nXxWo.framer-v-axp1a .framer-qk3i65, .framer-nXxWo.framer-v-175y4nz .framer-qk3i65 { align-content: center; align-items: center; bottom: -206px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: unset; justify-content: center; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nXxWo.framer-v-axp1a .framer-qk3i65 { gap: 0px; } .framer-nXxWo.framer-v-axp1a .framer-qk3i65 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nXxWo.framer-v-axp1a .framer-qk3i65 > :first-child { margin-left: 0px; } .framer-nXxWo.framer-v-axp1a .framer-qk3i65 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nXxWo.framer-v-175y4nz .framer-qk3i65 { gap: 0px; } .framer-nXxWo.framer-v-175y4nz .framer-qk3i65 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nXxWo.framer-v-175y4nz .framer-qk3i65 > :first-child { margin-left: 0px; } .framer-nXxWo.framer-v-175y4nz .framer-qk3i65 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 120\n * @framerIntrinsicWidth 1800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"nfn1IljUP\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"te2HHHKGn\":{\"layout\":[\"fixed\",\"fixed\"]},\"qNtMeXF1j\":{\"layout\":[\"fixed\",\"fixed\"]},\"V6804wOaZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"HyuDsUua8\":{\"layout\":[\"fixed\",\"fixed\"]},\"Nw3OUhhcw\":{\"layout\":[\"fixed\",\"fixed\"]},\"Im_EhKlsT\":{\"layout\":[\"fixed\",\"fixed\"]},\"CMuF8aFQn\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerntK2LAf1z=withCSS(Component,css,\"framer-nXxWo\");export default FramerntK2LAf1z;FramerntK2LAf1z.displayName=\"Header\";FramerntK2LAf1z.defaultProps={height:120,width:1800};addPropertyControls(FramerntK2LAf1z,{variant:{options:[\"Jf__Bh2QP\",\"nfn1IljUP\",\"te2HHHKGn\",\"qNtMeXF1j\",\"V6804wOaZ\",\"HyuDsUua8\",\"Nw3OUhhcw\",\"Im_EhKlsT\",\"CMuF8aFQn\"],optionTitles:[\"Home PC\",\"Home - Phone - OPEN\",\"Home - Phone - CLOSE\",\"About PC\",\"Contact PC\",\"Home Tablet\",\"About Tablet\",\"Contact Tablet\",\"Variant 9\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerntK2LAf1z,[{explicitInter:true,fonts:[{family:\"Bodoni Moda\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bodonimoda/v25/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIVytVjMYwE.woff2\",weight:\"700\"}]},...HamburgerMenuFonts,...HeaderMenuBtnFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerntK2LAf1z\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"120\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1800\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nfn1IljUP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"te2HHHKGn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qNtMeXF1j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"V6804wOaZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HyuDsUua8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Nw3OUhhcw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Im_EhKlsT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CMuF8aFQn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ntK2LAf1z.map", "/*\n * Animated Counter by framer.today\n * v1.0.0\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,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";const currentYear=new Date().getFullYear();/**\n * @framerDisableUnlink\n */export default function Copyright(props){const{color,font,gap,hasString,text,togglePosition,yearOption,startYear}=props;const yearDisplay=yearOption===\"single\"?currentYear:`${startYear}\u2013${currentYear}`;const containerStyle={width:\"100%\",height:\"100%\",display:\"flex\",alignItems:\"center\",margin:\"0\",justifyContent:togglePosition===\"L\"?\"flex-start\":\"flex-end\",color:color,fontFamily:font.fontFamily,fontSize:font.fontSize,fontWeight:font.fontWeight,lineHeight:font.lineHeight,letterSpacing:font.letterSpacing,userSelect:\"none\",gap:hasString?gap:0,whiteSpace:\"nowrap\"};return /*#__PURE__*/_jsxs(\"div\",{style:containerStyle,children:[togglePosition===\"L\"&&hasString&&/*#__PURE__*/_jsx(\"p\",{style:{margin:\"0\"},children:text}),/*#__PURE__*/_jsxs(\"p\",{style:{margin:\"0\",gap:0},children:[\"\\xa9 \",yearDisplay]}),togglePosition===\"R\"&&hasString&&/*#__PURE__*/_jsx(\"p\",{style:{margin:\"0\"},children:text})]});}Copyright.defaultProps={color:\"#fff\",font:{family:\"Manrope\",size:24,weight:\"normal\",lineHeight:1.2,letterSpacing:0},gap:\"4px\",hasString:true,text:\"All rights reserved.\",togglePosition:\"L\",yearOption:\"single\",startYear:2018};addPropertyControls(Copyright,{hasString:{type:ControlType.Boolean,title:\"Show text\",defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\"},text:{type:ControlType.String,title:\"\u21B3 Text\",defaultValue:\"All rights reserved.\",hidden:props=>!props.hasString},togglePosition:{type:ControlType.SegmentedEnum,title:\"\u21B3 Position\",defaultValue:\"L\",options:[\"L\",\"R\"],optionTitles:[\"L\",\"R\"],hidden:props=>!props.hasString},gap:{type:ControlType.Number,title:\"\u21B3 Gap\",defaultValue:4,min:0,max:100,step:1,unit:\"px\",hidden:props=>!props.hasString},yearOption:{type:ControlType.SegmentedEnum,title:\"Year option\",defaultValue:\"single\",options:[\"single\",\"range\"],optionTitles:[\"Single\",\"Range\"]},startYear:{type:ControlType.Number,title:\"Start year\",defaultValue:2018,min:1900,max:currentYear,step:1,hidden:props=>props.yearOption!==\"range\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#fff\"},font:{type:ControlType.Font,title:\"Font\",defaultValue:{fontFamily:\"Manrope\",fontSize:24,fontWeight:\"normal\",lineHeight:\"1.2em\",letterSpacing:0},controls:\"extended\",displayTextAlignment:false,description:`\n        \n        *from framer.today*\n [License](https://framer.today/license)\n    `}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Copyright\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Copyright.map", "// Generated by Framer (3eae0e1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Copyright from\"https://framerusercontent.com/modules/LzvncqykVGuFQ6qHkVfd/cbzzT8FClUHQpOEaaFpB/Copyright.js\";const CopyrightFonts=getFonts(Copyright);const cycleOrder=[\"Q_Redg1yR\",\"crBL3Vpf5\"];const serializationHash=\"framer-kDZcS\";const variantClassNames={crBL3Vpf5:\"framer-v-18t0yiw\",Q_Redg1yR:\"framer-v-1lwo2vq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={PC:\"Q_Redg1yR\",SP:\"crBL3Vpf5\"};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:\"Q_Redg1yR\"};};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:\"Q_Redg1yR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1lwo2vq\",className,classNames),\"data-framer-name\":\"PC\",layoutDependency:layoutDependency,layoutId:\"Q_Redg1yR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({crBL3Vpf5:{\"data-framer-name\":\"SP\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ity3p\",layoutDependency:layoutDependency,layoutId:\"JwERE9ixW\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12gibgz-container\",layoutDependency:layoutDependency,layoutId:\"dgJKKbMrw-container\",children:/*#__PURE__*/_jsx(Copyright,{color:\"rgb(0, 0, 0)\",font:{fontFamily:'\"Bodoni Moda\", \"Bodoni Moda Placeholder\", serif',fontSize:\"10px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0.1em\",lineHeight:\"1em\"},gap:4,hasString:true,height:\"100%\",id:\"dgJKKbMrw\",layoutId:\"dgJKKbMrw\",startYear:2018,text:\"OHGA MIHO\",togglePosition:\"R\",width:\"100%\",yearOption:\"single\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kDZcS.framer-gmxbm4, .framer-kDZcS .framer-gmxbm4 { display: block; }\",\".framer-kDZcS.framer-1lwo2vq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-kDZcS .framer-4ity3p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 10px; justify-content: center; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 1800px; }\",\".framer-kDZcS .framer-12gibgz-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kDZcS.framer-1lwo2vq, .framer-kDZcS .framer-4ity3p { gap: 0px; } .framer-kDZcS.framer-1lwo2vq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-kDZcS.framer-1lwo2vq > :first-child { margin-top: 0px; } .framer-kDZcS.framer-1lwo2vq > :last-child { margin-bottom: 0px; } .framer-kDZcS .framer-4ity3p > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-kDZcS .framer-4ity3p > :first-child { margin-left: 0px; } .framer-kDZcS .framer-4ity3p > :last-child { margin-right: 0px; } }\",\".framer-kDZcS.framer-v-18t0yiw.framer-1lwo2vq { height: 60px; width: 390px; }\",\".framer-kDZcS.framer-v-18t0yiw .framer-4ity3p { padding: 0px 20px 0px 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 1800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"crBL3Vpf5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerK5eve5NGS=withCSS(Component,css,\"framer-kDZcS\");export default FramerK5eve5NGS;FramerK5eve5NGS.displayName=\"Footer text\";FramerK5eve5NGS.defaultProps={height:30,width:1800};addPropertyControls(FramerK5eve5NGS,{variant:{options:[\"Q_Redg1yR\",\"crBL3Vpf5\"],optionTitles:[\"PC\",\"SP\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerK5eve5NGS,[{explicitInter:true,fonts:[{family:\"Bodoni Moda\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bodonimoda/v25/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIVytVjMYwE.woff2\",weight:\"400\"}]},...CopyrightFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerK5eve5NGS\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"30\",\"framerIntrinsicWidth\":\"1800\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"crBL3Vpf5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./K5eve5NGS.map", "// Generated by Framer (3eae0e1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FooterText from\"https://framerusercontent.com/modules/t7hD1gzo96K14tpsWtbD/X3yyytgzAAt9jzIGuAuq/K5eve5NGS.js\";const FooterTextFonts=getFonts(FooterText);const cycleOrder=[\"IHkjSHvZ3\",\"IzXSkxjql\",\"nAvUVn2MA\"];const serializationHash=\"framer-47Qvn\";const variantClassNames={IHkjSHvZ3:\"framer-v-d8fh3s\",IzXSkxjql:\"framer-v-18uosif\",nAvUVn2MA:\"framer-v-1hn592t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 2\":\"IzXSkxjql\",Desktop:\"IHkjSHvZ3\",Tablet:\"nAvUVn2MA\"};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:\"IHkjSHvZ3\"};};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:\"IHkjSHvZ3\",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-d8fh3s\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"IHkjSHvZ3\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({IzXSkxjql:{\"data-framer-name\":\"Desktop 2\"},nAvUVn2MA:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"1280px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||165)-30,...addPropertyOverrides({nAvUVn2MA:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||379.5)-30}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-108uwf0-container\",layoutDependency:layoutDependency,layoutId:\"muaBZ1P1H-container\",children:/*#__PURE__*/_jsx(FooterText,{height:\"100%\",id:\"muaBZ1P1H\",layoutId:\"muaBZ1P1H\",style:{height:\"100%\",width:\"100%\"},variant:\"Q_Redg1yR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",intrinsicHeight:165,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||165)-0-165)/2+0+0)),pixelHeight:330,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/7bgdLqOZBt6iKBxJEksCHrxtVU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/7bgdLqOZBt6iKBxJEksCHrxtVU.png?scale-down-to=512 512w,https://framerusercontent.com/images/7bgdLqOZBt6iKBxJEksCHrxtVU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7bgdLqOZBt6iKBxJEksCHrxtVU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7bgdLqOZBt6iKBxJEksCHrxtVU.png 2560w\"},className:\"framer-j0kn5v\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"aAWQgEXBo\",...addPropertyOverrides({nAvUVn2MA:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",intrinsicHeight:165,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||379.5)-0-165)/2+0+0)),pixelHeight:330,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/7bgdLqOZBt6iKBxJEksCHrxtVU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/7bgdLqOZBt6iKBxJEksCHrxtVU.png?scale-down-to=512 512w,https://framerusercontent.com/images/7bgdLqOZBt6iKBxJEksCHrxtVU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7bgdLqOZBt6iKBxJEksCHrxtVU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7bgdLqOZBt6iKBxJEksCHrxtVU.png 2560w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-47Qvn.framer-jxh7uy, .framer-47Qvn .framer-jxh7uy { display: block; }\",\".framer-47Qvn.framer-d8fh3s { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1800px; }\",\".framer-47Qvn .framer-108uwf0-container { bottom: 0px; flex: none; height: 30px; left: calc(50.00000000000002% - 1280px / 2); position: absolute; width: 1280px; z-index: 1; }\",\".framer-47Qvn .framer-j0kn5v { flex: none; height: 165px; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-47Qvn.framer-d8fh3s { gap: 0px; } .framer-47Qvn.framer-d8fh3s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-47Qvn.framer-d8fh3s > :first-child { margin-top: 0px; } .framer-47Qvn.framer-d8fh3s > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 165\n * @framerIntrinsicWidth 1800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IzXSkxjql\":{\"layout\":[\"fixed\",\"auto\"]},\"nAvUVn2MA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrKFj7ogje=withCSS(Component,css,\"framer-47Qvn\");export default FramerrKFj7ogje;FramerrKFj7ogje.displayName=\"Footer\";FramerrKFj7ogje.defaultProps={height:165,width:1800};addPropertyControls(FramerrKFj7ogje,{variant:{options:[\"IHkjSHvZ3\",\"IzXSkxjql\",\"nAvUVn2MA\"],optionTitles:[\"Desktop\",\"Desktop 2\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrKFj7ogje,[{explicitInter:true,fonts:[]},...FooterTextFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrKFj7ogje\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1800\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IzXSkxjql\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nAvUVn2MA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"165\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rKFj7ogje.map"],
  "mappings": "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",
  "names": ["containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "o", "t", "h", "defaultEvents", "ControlType", "findByArray", "arr", "search", "getIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchTerm", "_iconSearchTerm", "useIconSelection", "iconSearchResult", "se", "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", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gzqKD7u5h", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapk4mw7g", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerAzq1J2aO9", "withCSS", "Azq1J2aO9_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "getFonts", "Icon", "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", "about", "click", "contact", "height", "id", "width", "works", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zLxovKMKS", "FqVqGYMlM", "NSUhozcTD", "mj6Yv7ZXD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap13z1t00", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "SVG", "ComponentViewportProvider", "RichText2", "css", "FramerZZi8A60fq", "withCSS", "ZZi8A60fq_default", "addPropertyControls", "ControlType", "addFonts", "HamburgerMenuFonts", "getFonts", "Azq1J2aO9_default", "HeaderMenuBtnFonts", "ZZi8A60fq_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "gzqKD7u5h1oy9bfd", "args", "gzqKD7u5h1ixnfhb", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "SVG", "RichText2", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerntK2LAf1z", "withCSS", "ntK2LAf1z_default", "addPropertyControls", "ControlType", "addFonts", "currentYear", "Copyright", "props", "color", "font", "gap", "hasString", "text", "togglePosition", "yearOption", "startYear", "yearDisplay", "containerStyle", "u", "p", "addPropertyControls", "ControlType", "CopyrightFonts", "getFonts", "Copyright", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerK5eve5NGS", "withCSS", "K5eve5NGS_default", "addPropertyControls", "ControlType", "addFonts", "FooterTextFonts", "getFonts", "K5eve5NGS_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerrKFj7ogje", "withCSS", "rKFj7ogje_default", "addPropertyControls", "ControlType", "addFonts"]
}
