{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js", "ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js", "ssg:https://framer.com/m/iconoir-icons/Home.js@0.0.11", "ssg:https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js", "ssg:https://framerusercontent.com/modules/tQaMETduTu0YbEFYfK6g/OPc32FtMBtqxqRiUvnBu/ct9Gq7x36.js", "ssg:https://framerusercontent.com/modules/VMSFo35rB8yh5d5i0QWO/wy6GpFWcznAMXZSCbjC5/NBquLJQgd.js", "ssg:https://framerusercontent.com/modules/xsrAJgRuhDZicHPxPkPK/UczL1rTV9IXpN9fuDxoI/NBquLJQgd.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,motion}from\"framer\";import{containerStyles,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useMemo}from\"react\";const coordinatesRegex=/^((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?),\\s*((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?)$/;/**\n * GOOGLE MAPS\n *\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function GoogleMaps({coordinates,zoom,style,...props}){const borderRadius=useRadius(props);const[latitude1,longitude1]=useMemo(()=>{var ref;const[,latitude,longitude]=(ref=coordinates.match(coordinatesRegex))!==null&&ref!==void 0?ref:[null,\"\",\"\",];return[latitude,longitude];},[coordinates]);return(/*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,overflow:\"hidden\",borderRadius},...props,children:/*#__PURE__*/ _jsx(\"iframe\",{style:{height:\"100%\",width:\"100%\",border:0},src:`https://maps.google.com/maps?q=${latitude1},${longitude1}&z=${zoom}&output=embed`})}));};addPropertyControls(GoogleMaps,{coordinates:{type:ControlType.String,title:\"Coordinates\",placeholder:\"52.37588, 4.891295\",defaultValue:\"52.37588, 4.891295\",description:\"GPS coordinates can be found directly in [Google Maps](https://maps.google.com).\"},zoom:{type:ControlType.Number,step:1,min:0,max:25,title:\"Zoom\",defaultValue:15},...borderRadiusControl});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"GoogleMaps\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GoogleMaps.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name===null||name===void 0?void 0:name.value);const[emailValue,setEmail]=useState(email===null||email===void 0?void 0:email.value);const[messageValue,setMessage]=useState(message===null||message===void 0?void 0:message.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue,]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();}).catch(()=>setLoading(false));}},[formId,onSubmit,validateForm]);const handleNameChange=useCallback(event=>{setNameError(false);setName(event.target.value);},[]);const handleEmailChange=useCallback(event=>{setEmailError(false);setEmail(event.target.value);},[]);const handleMessageChange=useCallback(event=>{setMessageError(false);setMessage(event.target.value);},[]);return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,flexDirection:\"column\",\"--framer-formspark-placeholder-color\":inputs.placeholderColor},children:isSuccess?/*#__PURE__*/ _jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:.3},children:/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/ _jsxs(\"form\",{style:{display:\"grid\",gridTemplateRows,gridTemplateColumns,gap,width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,method:\"POST\",children:[(withName||withEmail)&&/*#__PURE__*/ _jsxs(\"div\",{style:{width:\"100%\",display:\"grid\",gridAutoFlow:layout===\"horizontal\"?\"column\":\"row\",gap},children:[withName&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"text\",name:\"name\",placeholder:name.placeholder,value:isCanvas?name.value:nameValue,onChange:handleNameChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isNameError?inputs.error:\"transparent\"}`}}),withEmail&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"email\",name:\"email\",placeholder:email.placeholder,value:isCanvas?email.value:emailValue,onChange:handleEmailChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isEmailError?inputs.error:\"transparent\"}`}})]}),withMessage&&/*#__PURE__*/ _jsx(\"textarea\",{className:\"framer-formspark-input\",placeholder:message.placeholder,name:\"message\",value:isCanvas?message.value:messageValue,onChange:handleMessageChange,style:{...defaultStyle,minHeight:0,padding:paddingValue,resize:\"vertical\",borderRadius,background:inputs.fill,fontFamily,fontWeight,fontSize,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isMessageError?inputs.error:\"transparent\"}`}}),/*#__PURE__*/ _jsxs(\"div\",{children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,cursor:\"pointer\",color:button.color,zIndex:1},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})});},[\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\",]);FormSpark.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15,nameField:{value:undefined,placeholder:\"Name\"},email:{value:undefined,placeholder:\"Email\"},message:{value:undefined,placeholder:\"Message\"},inputs:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},layout:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},button:{label:\"Sign Up\",fontWeight:600,fill:\"#000\",color:\"#FFF\"}};addPropertyControls(FormSpark,{formId:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,description:\"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"},withName:{title:\"Name\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},nameField:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Name\"},value:{title:\"Value\",type:ControlType.String,defaultValue:\"\"}},hidden:props=>!props.withName},withEmail:{title:\"Email\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},email:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Email\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withEmail},withMessage:{title:\"Message\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},message:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Message\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withMessage},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,defaultValue:\"horizontal\"},inputs:{title:\"Inputs\",type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",display:\"inline-block\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default FormSpark;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormSpark\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"290\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"550\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "let e;var f=r=>{if(!e){let o=function(t,n){return r.createElement(\"svg\",{width:\"100%\",height:\"1.5em\",strokeWidth:1.5,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",color:\"currentColor\",ref:n,...t},r.createElement(\"path\",{d:\"M3 9.5L12 4l9 5.5M19 13v6.4a.6.6 0 01-.6.6H5.6a.6.6 0 01-.6-.6V13\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}))};e=r.forwardRef(o)}return e};export{f as default};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/iconoir-icons/Home.js@0.0.11\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"Accessibility\",\"AccessibilitySign\",\"AccessibilityTech\",\"Activity\",\"AddCircledOutline\",\"AddDatabaseScript\",\"AddFolder\",\"AddFrame\",\"AddHexagon\",\"AddKeyframe\",\"AddKeyframeAlt\",\"AddKeyframes\",\"AddLens\",\"AddPage\",\"AddPinAlt\",\"AddSelection\",\"AddSquare\",\"AddToCart\",\"AddUser\",\"Airplane\",\"AirplaneHelix\",\"AirplaneHelix45Deg\",\"AirplaneOff\",\"AirplaneRotation\",\"Airplay\",\"Alarm\",\"Album\",\"AlbumCarousel\",\"AlbumList\",\"AlbumOpen\",\"AlignBottomBox\",\"AlignCenter\",\"AlignJustify\",\"AlignLeft\",\"AlignLeftBox\",\"AlignRight\",\"AlignRightBox\",\"AlignTopBox\",\"Antenna\",\"AntennaOff\",\"AntennaSignal\",\"AppNotification\",\"Apple\",\"AppleHalf\",\"AppleHalfAlt\",\"AppleImac2021\",\"AppleImac2021Side\",\"AppleSwift\",\"ArSymbol\",\"Archery\",\"Archive\",\"AreaSearch\",\"ArrowArchery\",\"ArrowDown\",\"ArrowDownCircled\",\"ArrowLeft\",\"ArrowLeftCircled\",\"ArrowRight\",\"ArrowRightCircled\",\"ArrowSeparate\",\"ArrowUnion\",\"ArrowUnionVertical\",\"ArrowUp\",\"ArrowUpCircled\",\"Asana\",\"Attachment\",\"AutoFlash\",\"Bag\",\"BasketBall\",\"BasketBallAlt\",\"BasketballField\",\"Battery25\",\"Battery50\",\"Battery75\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryIndicator\",\"BatteryWarning\",\"BeachBag\",\"BeachBagBig\",\"Bell\",\"BellNotification\",\"BellOff\",\"Bicycle\",\"Bin\",\"BinAdd\",\"BinFull\",\"BinHalf\",\"BinMinus\",\"Bluetooth\",\"Bold\",\"BoldSquareOutline\",\"BookmarkCircled\",\"BookmarkEmpty\",\"BorderBl\",\"BorderBottom\",\"BorderBr\",\"BorderInner\",\"BorderLeft\",\"BorderOut\",\"BorderRight\",\"BorderTl\",\"BorderTop\",\"BorderTr\",\"BounceLeft\",\"BounceRight\",\"BowlingBall\",\"Box\",\"BoxIso\",\"BoxingGlove\",\"BubbleDownload\",\"BubbleError\",\"BubbleIncome\",\"BubbleOutcome\",\"BubbleSearch\",\"BubbleStar\",\"BubbleUpload\",\"BubbleWarning\",\"Building\",\"BusOutline\",\"BusStop\",\"Calculator\",\"Calendar\",\"Camera\",\"Cancel\",\"CarOutline\",\"Cart\",\"CartAlt\",\"Cash\",\"Cell4X4\",\"CenterAlign\",\"ChatAdd\",\"ChatBubble\",\"ChatBubbleCheck\",\"ChatBubbleCheck1\",\"ChatBubbleEmpty\",\"ChatBubbleError\",\"ChatBubbleQuestion\",\"ChatBubbleTranslate\",\"ChatBubbleWarning\",\"ChatLines\",\"ChatRemove\",\"Check\",\"CheckCircledOutline\",\"Chocolate\",\"Chromecast\",\"ChromecastActive\",\"Church\",\"ChurchAlt\",\"CinemaOld\",\"Circle\",\"City\",\"ClockOutline\",\"Closet\",\"Cloud\",\"CloudBookAlt\",\"CloudCheck\",\"CloudDesync\",\"CloudDownload\",\"CloudError\",\"CloudSunny\",\"CloudSync\",\"CloudUpload\",\"Code\",\"Codepen\",\"Coin\",\"CollageFrame\",\"Collapse\",\"ColorFilter\",\"ColorPicker\",\"ColorPickerEmpty\",\"Combine\",\"CompactDisc\",\"Compress\",\"CompressLines\",\"Computer\",\"ControlSlider\",\"Copy\",\"Copyright\",\"CornerBottomLeft\",\"CornerBottomRight\",\"CornerTopLeft\",\"CornerTopRight\",\"Cpu\",\"CpuWarning\",\"CrackedEgg\",\"CreativeCommons\",\"CreditCard\",\"CreditCard2\",\"Crop\",\"CropRotateBl\",\"CropRotateBr\",\"CropRotateTl\",\"CropRotateTr\",\"Css3\",\"CursorPointer\",\"Cut\",\"CutAlt\",\"Cycling\",\"DashFlag\",\"Dashboard\",\"DashboardDots\",\"DashboardSpeed\",\"DataTransferBoth\",\"DataTransferCheck\",\"DataTransferDown\",\"DataTransferUp\",\"DataTransferWarning\",\"DatabaseBackup\",\"DatabaseExport\",\"DatabaseMonitor\",\"DatabaseRestore\",\"DatabaseScript\",\"DatabaseSettings\",\"DatabaseStar\",\"DatabaseStats\",\"Db\",\"DbCheck\",\"DbError\",\"DbSearch\",\"DbStar\",\"DbWarning\",\"DeCompress\",\"DeleteCircledOutline\",\"DesignPencil\",\"Dialpad\",\"Display4K\",\"DivideSelection1\",\"DivideSelection2\",\"DocSearch\",\"DocSearchAlt\",\"DocStar\",\"DocStarAlt\",\"Dollar\",\"DomoticIssue\",\"Donate\",\"DoubleCheck\",\"DownRoundArrow\",\"Download\",\"DragHandGesture\",\"Drawer\",\"Dribbble\",\"Droplet\",\"DropletHalf\",\"EaseIn\",\"EaseInControlPoint\",\"EaseInOut\",\"EaseOut\",\"EaseOutControlPoint\",\"Edit\",\"EditPencil\",\"Egg\",\"Eject\",\"ElectronicsChip\",\"Emoji\",\"EmojiBall\",\"EmojiBlinkLeft\",\"EmojiBlinkRight\",\"EmojiLookBottom\",\"EmojiLookLeft\",\"EmojiLookRight\",\"EmojiLookTop\",\"EmojiQuite\",\"EmojiReally\",\"EmojiSad\",\"EmojiSatisfied\",\"EmojiSingLeft\",\"EmojiSingLeftNote\",\"EmojiSingRight\",\"EmojiSingRightNote\",\"EmojiSurprise\",\"EmojiSurpriseAlt\",\"EmojiTalkingAngry\",\"EmojiTalkingHappy\",\"EmojiThinkLeft\",\"EmojiThinkRight\",\"EmptyPage\",\"Enlarge\",\"EnlargeRoundArrow\",\"Euro\",\"EuroSquare\",\"EvCharge\",\"EvChargeAlt\",\"EvPlug\",\"EvPlugCharging\",\"EvPlugError\",\"EvStation\",\"Exclude\",\"Expand\",\"ExpandLines\",\"EyeAlt\",\"EyeClose\",\"EyeEmpty\",\"EyeOff\",\"FaceId\",\"Facebook\",\"FacebookSquared\",\"Farm\",\"FastArrowDown\",\"FastArrowDownBox\",\"FastArrowLeft\",\"FastArrowLeftBox\",\"FastArrowRight\",\"FastArrowRightBox\",\"FastArrowTop\",\"FastArrowUpBox\",\"FastBottomCircle\",\"FastLeftCircle\",\"FastRightCircle\",\"FastTopCircle\",\"Female\",\"Figma\",\"FileNotFound\",\"Filter\",\"FilterAlt\",\"Finder\",\"Fingerprint\",\"FingerprintCircled\",\"FingerprintCircledOk\",\"FingerprintPhone\",\"FingerprintScan\",\"FingerprintSquared\",\"Fishing\",\"Flare\",\"Flash\",\"FlashOff\",\"Flip\",\"FlipReverse\",\"Flower\",\"Fog\",\"Folder\",\"FolderAlert\",\"FontSize\",\"Football\",\"FootballBall\",\"ForwardOutline\",\"Frame\",\"FrameAlt\",\"FrameAltEmpty\",\"FrameSelect\",\"FrameSimple\",\"FrameTool\",\"Fridge\",\"Fx\",\"Garage\",\"Gas\",\"GasTank\",\"GasTankDrop\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitHub\",\"GitHubOutline\",\"GitLabFull\",\"GitMerge\",\"GlassEmpty\",\"GlassHalf\",\"GlassHalfAlt\",\"Glasses\",\"Golf\",\"Google\",\"GoogleCircled\",\"GoogleDocs\",\"GoogleDrive\",\"GoogleDriveCheck\",\"GoogleDriveSync\",\"GoogleDriveWarning\",\"GoogleHome\",\"GoogleOne\",\"Gps\",\"GraphDown\",\"GraphUp\",\"GridAdd\",\"GridMinus\",\"GridRemove\",\"Group\",\"Gym\",\"HalfMoon\",\"HandBrake\",\"Handbag\",\"HardDrive\",\"Hat\",\"Hd\",\"Hdr\",\"Headset\",\"HeadsetCharge\",\"HeadsetHelp\",\"HeadsetIssue\",\"HealthShield\",\"Healthcare\",\"Heart\",\"HeavyRain\",\"Heptagon\",\"HerSlips\",\"HesaWarningOutline\",\"Hexagon\",\"HexagonAlt\",\"HighPriority\",\"HistoricShield\",\"HistoricShieldAlt\",\"Home\",\"HomeAlt\",\"HomeAltSlim\",\"HomeAltSlimHoriz\",\"HomeHospital\",\"HomeSimple\",\"HomeSimpleDoor\",\"HomeUser\",\"Hospital\",\"HospitalSign\",\"Hourglass\",\"Html5\",\"Iconoir\",\"Import\",\"Industry\",\"InfoEmpty\",\"InputField\",\"InputSearch\",\"Instagram\",\"Intersect\",\"IntersectAlt\",\"IosSettings\",\"IrisScan\",\"Italic\",\"ItalicSquareOutline\",\"Journal\",\"JournalPage\",\"KeyAlt\",\"KeyAltBack\",\"KeyAltMinus\",\"KeyAltPlus\",\"KeyAltRemove\",\"Keyframe\",\"KeyframeAlignCenter\",\"KeyframePosition\",\"Keyframes\",\"KeyframesCouple\",\"LabelOutline\",\"Lamp\",\"Language\",\"Laptop\",\"LaptopCharging\",\"LaptopFix\",\"LaptopIssue\",\"LargeSuitcase\",\"LayoutLeft\",\"LayoutRight\",\"Leaderboard\",\"LeaderboardStar\",\"LeftRoundArrow\",\"Lens\",\"Lifebelt\",\"LightBulb\",\"LightBulbOff\",\"LightBulbOn\",\"LineSpace\",\"Linear\",\"Link\",\"LinkedIn\",\"List\",\"LoadActionFloppy\",\"Lock\",\"LockKey\",\"LogDenied\",\"LogIn\",\"LogOut\",\"LongArrowDownLeft\",\"LongArrowDownRight\",\"LongArrowLeftDown\",\"LongArrowLeftUp\",\"LongArrowRightDown\",\"LongArrowRightUp\",\"LongArrowRightUp1\",\"LongArrowUpLeft\",\"LongArrowUpRight\",\"LotOfCash\",\"MacControlKey\",\"MacDock\",\"MacOptionKey\",\"MacOsWindow\",\"Mail\",\"MailOpened\",\"Male\",\"Map\",\"MapIssue\",\"MapsArrow\",\"MapsArrowDiagonal\",\"MapsArrowIssue\",\"MapsGoStraight\",\"MapsTurnBack\",\"MapsTurnLeft\",\"MapsTurnRight\",\"MaskSquare\",\"Maximize\",\"Medal\",\"Medal1St\",\"Medium\",\"Megaphone\",\"Menu\",\"MenuScale\",\"Message\",\"MessageAlert\",\"MessageText\",\"Metro\",\"Mic\",\"MicAdd\",\"MicCheck\",\"MicMute\",\"MicRemove\",\"MicSpeaking\",\"MicWarning\",\"Minus\",\"Minus1\",\"MinusHexagon\",\"MinusPinAlt\",\"MinusSquare\",\"MissingFont\",\"ModernTv\",\"ModernTv4K\",\"MoneySquare\",\"MoonSat\",\"MoreHoriz\",\"MoreVert\",\"MouseButtonLeft\",\"MouseButtonRight\",\"MouseScrollWheel\",\"MoveDown\",\"MoveLeft\",\"MoveRight\",\"MoveRuler\",\"MoveUp\",\"Movie\",\"MultiBubble\",\"MultiMacOsWindow\",\"MultiWindow\",\"MultiplePages\",\"MultiplePagesAdd\",\"MultiplePagesDelete\",\"MultiplePagesEmpty\",\"MultiplePagesRemove\",\"Music1\",\"Music1Add\",\"Music2\",\"Music2Add\",\"NavArrowDown\",\"NavArrowLeft\",\"NavArrowRight\",\"NavArrowUp\",\"Navigator\",\"NavigatorAlt\",\"Network\",\"NetworkAlt\",\"NetworkLeft\",\"NetworkRight\",\"NoBattery\",\"NoCoin\",\"NoCreditCard\",\"NoLock\",\"NoSmoking\",\"Notes\",\"Octagon\",\"OilIndustry\",\"OpenInBrowser\",\"OpenInWindow\",\"OpenVpn\",\"OrangeHalf\",\"OrangeSlice\",\"OrangeSliceAlt\",\"Page\",\"PageFlip\",\"PageSearch\",\"PageStar\",\"Palette\",\"PanoramaEnlarge\",\"PanoramaReduce\",\"Pants\",\"PantsAlt\",\"PasswordCursor\",\"PasswordError\",\"PasswordPass\",\"PauseOutline\",\"PcMouse\",\"PenConnectBluetooth\",\"PenConnectWifi\",\"PenTablet\",\"PenTabletConnectUsb\",\"PenTabletConnectWifi\",\"Pentagon\",\"Percentage\",\"PercentageRound\",\"PercentageSquare\",\"PharmacyCircledCross\",\"PharmacySquaredCross\",\"Phone\",\"PhoneAdd\",\"PhoneDelete\",\"PhoneDisabled\",\"PhoneIncome\",\"PhoneOutcome\",\"PhonePaused\",\"PhoneRemove\",\"Pin\",\"PinAlt\",\"PizzaSlice\",\"Planet\",\"PlanetAlt\",\"PlanetSat\",\"PlayOutline\",\"Playlist\",\"PlaylistAdd\",\"PlaylistPlay\",\"PlugTypeA\",\"PlugTypeC\",\"PlugTypeG\",\"PlugTypeL\",\"Plus\",\"Pocket\",\"Position\",\"PositionAlign\",\"Pound\",\"PrecisionTool\",\"Printer\",\"PrinterAlt\",\"PrintingPage\",\"PriorityDown\",\"PriorityUp\",\"ProfileCircled\",\"Prohibition\",\"QuestionMark\",\"QuestionMarkCircle\",\"Rain\",\"ReceiveDollars\",\"ReceiveEuros\",\"ReceivePounds\",\"ReceiveYens\",\"Redo\",\"RedoAction\",\"RedoCircle\",\"Reduce\",\"ReduceRoundArrow\",\"Refresh\",\"RefreshCircular\",\"RefreshDouble\",\"ReminderHandGesture\",\"RemoveDatabaseScript\",\"RemoveEmpty\",\"RemoveFolder\",\"RemoveFrame\",\"RemoveFromCart\",\"RemoveKeyframe\",\"RemoveKeyframeAlt\",\"RemoveKeyframes\",\"RemovePage\",\"RemovePinAlt\",\"RemoveSelection\",\"RemoveSquare\",\"RemoveUser\",\"Repeat\",\"RepeatOnce\",\"ReportColumns\",\"Reports\",\"RewindOutline\",\"Rhombus\",\"RightRoundArrow\",\"Rings\",\"RotateCameraLeft\",\"RotateCameraRight\",\"RssFeed\",\"RssFeedSquared\",\"Ruler\",\"RulerAdd\",\"RulerCombine\",\"RulerRemove\",\"Running\",\"Sandals\",\"SaveActionFloppy\",\"SaveFloppyDisk\",\"ScaleFrameEnlarge\",\"ScaleFrameReduce\",\"Scanning\",\"Scarf\",\"Scissor\",\"ScissorAlt\",\"SeaAndSun\",\"SeaWaves\",\"Search\",\"SearchFont\",\"SecurityPass\",\"Selection\",\"SelectiveTool\",\"SendDollars\",\"SendEuros\",\"SendPounds\",\"SendYens\",\"Server\",\"ServerConnection\",\"Settings\",\"SettingsCloud\",\"SettingsProfiles\",\"ShareAndroid\",\"ShareIos\",\"Shield\",\"ShieldAdd\",\"ShieldAlert\",\"ShieldAlt\",\"ShieldBroken\",\"ShieldCheck\",\"ShieldCross\",\"ShieldDownload\",\"ShieldEye\",\"ShieldLoading\",\"ShieldMinus\",\"ShieldQuestion\",\"ShieldSearch\",\"ShieldUpload\",\"Shop\",\"ShopAlt\",\"ShoppingBag\",\"ShoppingBagAdd\",\"ShoppingBagAlt\",\"ShoppingBagArrowDown\",\"ShoppingBagArrowUp\",\"ShoppingBagCheck\",\"ShoppingBagIssue\",\"ShoppingBagRemove\",\"ShoppingCode\",\"ShoppingCodeCheck\",\"ShoppingCodeError\",\"ShortPants\",\"ShortPantsAlt\",\"Shuffle\",\"SimpleCart\",\"SingleTapGesture\",\"Skateboard\",\"Skateboarding\",\"SkipNextOutline\",\"SkipPrevOutline\",\"SmallShop\",\"SmallShopAlt\",\"SmartphoneDevice\",\"Smoking\",\"Snow\",\"SnowFlake\",\"Soap\",\"SoccerBall\",\"SortDown\",\"SortUp\",\"SoundHigh\",\"SoundLow\",\"SoundMin\",\"SoundOff\",\"SpockHandGesture\",\"Square\",\"StarDashed\",\"StarHalfDashed\",\"StarOutline\",\"StatDown\",\"StatUp\",\"StatsReport\",\"StatsSquareDown\",\"StatsSquareUp\",\"Stretching\",\"StyleBorder\",\"Substract\",\"Suggestion\",\"SunLight\",\"Swimming\",\"SwipeDownGesture\",\"SwipeLeftGesture\",\"SwipeRightGesture\",\"SwipeUpGesture\",\"SwitchOffOutline\",\"SwitchOnOutline\",\"SystemRestart\",\"SystemShut\",\"Table\",\"Table2Columns\",\"TableRows\",\"Telegram\",\"TelegramCircled\",\"TennisBall\",\"TennisBallAlt\",\"TerminalOutline\",\"TerminalSimple\",\"Text\",\"TextAlt\",\"TextSize\",\"ThreeStars\",\"Thunderstorm\",\"TikTok\",\"Timer\",\"TimerOff\",\"Tower\",\"TowerCheck\",\"TowerNoAccess\",\"TowerWarning\",\"Trademark\",\"TrainOutline\",\"Tram\",\"TransitionBottom\",\"TransitionLeft\",\"TransitionRight\",\"TransitionTop\",\"Translate\",\"Trash\",\"Treadmill\",\"Trekking\",\"Trello\",\"Triangle\",\"TriangleFlag\",\"TriangleFlagCircle\",\"TriangleFlagFull\",\"Trophy\",\"Tunnel\",\"Tv\",\"TvFix\",\"TvIssue\",\"Twitter\",\"TwitterVerifiedBadge\",\"Type\",\"UmbrellaFull\",\"Underline\",\"Undo\",\"UndoAction\",\"UndoCircle\",\"Union\",\"UnionAlt\",\"UnionHorizAlt\",\"Unity\",\"Unity5\",\"UpRoundArrow\",\"Upload\",\"UploadSquareOutline\",\"Usb\",\"User\",\"UserBag\",\"UserCart\",\"UserCircleAlt\",\"UserScan\",\"UserSquareAlt\",\"VerifiedBadge\",\"VerifiedUser\",\"VideoCamera\",\"VideoCameraOff\",\"ViewColumns2\",\"ViewColumns3\",\"ViewGrid\",\"ViewStructureDown\",\"ViewStructureUp\",\"Voice\",\"VoiceCircled\",\"VoiceCircledLock\",\"VoiceError\",\"VoiceOk\",\"VoicePhone\",\"VoiceScan\",\"VoiceSquared\",\"VrSymbol\",\"Waist\",\"Walking\",\"WarningSquareOutline\",\"WebWindow\",\"WebWindowClose\",\"Weight\",\"WeightAlt\",\"WhiteFlag\",\"Wifi\",\"WifiIssue\",\"WifiOff\",\"WifiSignalNone\",\"Wind\",\"WrapText\",\"Wristwatch\",\"Yen\",\"YenSquare\",\"Yoga\",\"YouTube\",\"ZoomIn\",\"ZoomOut\",];const moduleBaseUrl=\"https://framer.com/m/iconoir-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * ICONOIR\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}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.11`;const 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]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{size:\"100$%\",style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Iconoir\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};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 [Iconoir site](https://iconoir.com/)\"},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},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Iconoir.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;General Sans-regular\"]);export const fonts=[{family:\"General Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/ct9Gq7x36:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MFQT7HFGCR2L5ULQTW6YXYZXXHMPKLJ3/YWQ244D6TACUX5JBKATPOW5I5MGJ3G73/7YY3ZAAE3TRV2LANYOLXNHTPHLXVWTKH.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MFQT7HFGCR2L5ULQTW6YXYZXXHMPKLJ3/YWQ244D6TACUX5JBKATPOW5I5MGJ3G73/7YY3ZAAE3TRV2LANYOLXNHTPHLXVWTKH.woff2\",weight:\"400\"}];export const css=['.framer-E3HKS .framer-styles-preset-1ykh7tc:not(.rich-text-wrapper), .framer-E3HKS .framer-styles-preset-1ykh7tc.rich-text-wrapper p { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 809px) and (min-width: 0px) { .framer-E3HKS .framer-styles-preset-1ykh7tc:not(.rich-text-wrapper), .framer-E3HKS .framer-styles-preset-1ykh7tc.rich-text-wrapper p { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-E3HKS\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7e4cc89)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={o9JxxXV5g:new LazyValue(()=>import(\"./NBquLJQgd-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7e4cc89)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import Menu from\"#framer/local/canvasComponent/Sadhwxx25/Sadhwxx25.js\";import Footer from\"#framer/local/canvasComponent/w353A_1oN/w353A_1oN.js\";import*as sharedStyle2 from\"#framer/local/css/ct9Gq7x36/ct9Gq7x36.js\";import*as sharedStyle1 from\"#framer/local/css/hO4rbrA_2/hO4rbrA_2.js\";import*as sharedStyle from\"#framer/local/css/lV3YlvMd3/lV3YlvMd3.js\";import*as sharedStyle4 from\"#framer/local/css/PYtXiftJv/PYtXiftJv.js\";import*as sharedStyle3 from\"#framer/local/css/Te8O7XLmO/Te8O7XLmO.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/NBquLJQgd/NBquLJQgd.js\";import metadataProvider from\"#framer/local/webPageMetadata/NBquLJQgd/NBquLJQgd.js\";const MenuFonts=getFonts(Menu);const IconoirFonts=getFonts(Iconoir);const FormSparkFonts=getFonts(FormSpark);const GoogleMapsFonts=getFonts(GoogleMaps);const FooterFonts=getFonts(Footer);const breakpoints={G_Itbm0GO:\"(min-width: 810px) and (max-width: 1279px)\",GdnDmuEWC:\"(max-width: 809px)\",mvzlrsJYn:\"(min-width: 1280px) and (max-width: 1919px)\",t98DXV1Br:\"(min-width: 1920px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-awBIy\";const variantClassNames={G_Itbm0GO:\"framer-v-185zwj4\",GdnDmuEWC:\"framer-v-amyf5m\",mvzlrsJYn:\"framer-v-13h53g4\",t98DXV1Br:\"framer-v-1m3s023\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"mvzlrsJYn\",Full:\"t98DXV1Br\",Phone:\"GdnDmuEWC\",Tablet:\"G_Itbm0GO\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mvzlrsJYn\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"mvzlrsJYn\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-13h53g4\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wv5jju\",\"data-framer-name\":\"menu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15ox9pw-container\",nodeId:\"PxHdAkfNz\",scopeId:\"NBquLJQgd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GdnDmuEWC:{variant:\"tHcKCNg8l\"}},children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",id:\"PxHdAkfNz\",layoutId:\"PxHdAkfNz\",style:{width:\"100%\"},variant:\"L_qXBqGCd\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ncj769\",\"data-framer-name\":\"hero-section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8a6c31\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jwuzi6\",\"data-framer-name\":\"left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pnjm10\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-64qeac\",\"data-framer-name\":\"head-txt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xpazmm\",\"data-framer-name\":\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1liw76i\",\"data-styles-preset\":\"lV3YlvMd3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-052eed68-9922-4146-aee5-80442c44559a, rgb(237, 169, 180))\"},children:\"kontakta oss\"})}),className:\"framer-1oqmp2v\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Boka tid. Vi hj\\xe4lper dig \\xe4ven med ans\\xf6kan om k\\xf6rkortstillst\\xe5nd.\"})}),className:\"framer-1y7vy7t\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dptvyt\",\"data-framer-name\":\"cta+txt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2j5sj\",\"data-framer-name\":\"Calendly\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o79iqb\",\"data-framer-name\":\"right\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5bs5yw\",\"data-framer-name\":\"shapes\",style:{rotate:17},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jwmjuo\",\"data-framer-name\":\"bold-shape1\",style:{rotate:143}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q6ky9b\",\"data-framer-name\":\"bold-shape1\",style:{rotate:143}})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G_Itbm0GO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+160+202+0),sizes:\"553px\",src:\"https://framerusercontent.com/images/7tJLYYOAxZMSUJmKIIuOfEiedv8.jpg\",srcSet:\"https://framerusercontent.com/images/7tJLYYOAxZMSUJmKIIuOfEiedv8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7tJLYYOAxZMSUJmKIIuOfEiedv8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7tJLYYOAxZMSUJmKIIuOfEiedv8.jpg 1160w\"}},GdnDmuEWC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773,intrinsicWidth:1041,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+160+236+0),pixelHeight:773,pixelWidth:1041,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 60px)`,src:\"https://framerusercontent.com/images/yjYwvkbK1TVJu3SPSU6ey68Emg.jpg\",srcSet:\"https://framerusercontent.com/images/yjYwvkbK1TVJu3SPSU6ey68Emg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yjYwvkbK1TVJu3SPSU6ey68Emg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yjYwvkbK1TVJu3SPSU6ey68Emg.jpg 1041w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+180+0),sizes:\"553px\",src:\"https://framerusercontent.com/images/7tJLYYOAxZMSUJmKIIuOfEiedv8.jpg\",srcSet:\"https://framerusercontent.com/images/7tJLYYOAxZMSUJmKIIuOfEiedv8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7tJLYYOAxZMSUJmKIIuOfEiedv8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7tJLYYOAxZMSUJmKIIuOfEiedv8.jpg 1160w\"},className:\"framer-13cd4lo\",\"data-framer-name\":\"image\"})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lzdref\",\"data-framer-name\":\"leaf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GdnDmuEWC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 538 429\"><path d=\"M 371.482 252.19 C 422.512 264.502 529.695 193.793 535.714 110.492 C 535.714 110.492 390.399 115.644 371.482 252.19 Z M 371.482 252.19 C 407.596 198.946 487.046 146.389 502.18 142.266 M 371.482 252.19 C 361.375 281.427 313.028 306.609 257.122 326.127 M 257.122 326.127 C 269.915 295.483 290.477 237.696 297.708 191.217 M 257.122 326.127 C 236.575 333.3 215.007 339.709 193.941 345.272 M 298.395 142.266 C 285.497 88.164 374.921 127.668 334.509 2.286 C 295.529 28.049 233.734 92.114 298.395 142.266 Z M 298.395 142.266 C 292.089 124.805 284.981 82.667 306.993 53.813 M 298.395 142.266 C 301.403 154.883 300.684 172.093 297.708 191.217 M 297.708 191.217 C 316.186 180.286 346.177 160.996 371.482 141.194 M 414.475 97.61 C 413.615 118.22 391.24 125.733 371.482 141.194 M 371.482 141.194 C 365.75 100.903 448.869 22.897 432.531 6.58 C 468.99 107.572 407.023 138.402 371.482 141.194 Z M 193.941 345.272 C 208.384 351.959 228.677 360.57 249.832 368.236 M 193.941 345.272 C 166.697 344.466 103.95 347.93 70.918 368.236 M 343.556 383.582 C 329.169 392.873 288.091 382.1 249.832 368.236 M 249.832 368.236 C 279.927 347.818 352.155 310.811 400.306 326.127 C 460.496 345.272 456.197 377.571 482.852 383.582 C 430.331 392.214 273.519 482.55 249.832 372.613 C 249.539 371.352 249.129 368.711 249.832 368.236 Z M 70.918 368.236 C 29.627 393.619 22.373 404.769 2.286 404.769 M 70.918 368.236 L 84.309 311.673 M 84.309 311.673 C 96.213 298.109 119.127 263.621 115.556 234.188 C 111.464 222.109 105.735 194.608 115.556 181.229 M 84.309 311.673 C 136.387 283.974 171.912 245.336 152.941 196.28 C 133.969 147.225 152.941 100.733 152.941 88.692 L 145.931 91.82 C 121.566 108.543 74.935 147.336 70.918 181.229 C 65.896 223.596 97.7 248.124 84.309 311.673 Z\" fill=\"transparent\" stroke-width=\"3.81\" stroke=\"rgb(245,245,247)\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12305241764}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11tnvh\",\"data-framer-name\":\"leaf\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 706 563\"><path d=\"M 487.484 330.962 C 554.449 347.12 695.102 254.325 703 145.004 C 703 145.004 512.308 151.766 487.484 330.962 Z M 487.484 330.962 C 534.875 261.087 639.135 192.114 658.994 186.704 M 487.484 330.962 C 474.221 369.332 410.776 402.38 337.413 427.994 M 337.413 427.994 C 354.201 387.778 381.184 311.941 390.673 250.944 M 337.413 427.994 C 310.45 437.408 282.147 445.818 254.503 453.119 M 391.574 186.704 C 374.648 115.702 491.997 167.545 438.965 3 C 387.813 36.81 306.721 120.886 391.574 186.704 Z M 391.574 186.704 C 383.299 163.788 373.971 108.489 402.857 70.621 M 391.574 186.704 C 395.521 203.262 394.578 225.847 390.673 250.944 M 390.673 250.944 C 414.92 236.599 454.277 211.284 487.484 185.296 M 543.902 128.099 C 542.773 155.147 513.412 165.006 487.484 185.296 M 487.484 185.296 C 479.962 132.42 589.036 30.048 567.597 8.635 C 615.44 141.172 534.123 181.633 487.484 185.296 Z M 254.503 453.119 C 273.456 461.895 300.086 473.196 327.846 483.256 M 254.503 453.119 C 218.751 452.061 136.41 456.607 93.063 483.256 M 450.837 503.396 C 431.958 515.588 378.053 501.451 327.846 483.256 M 327.846 483.256 C 367.339 456.461 462.121 407.894 525.309 427.994 C 604.294 453.119 598.652 495.507 633.631 503.396 C 564.709 514.724 358.93 633.277 327.846 489 C 327.462 487.345 326.924 483.879 327.846 483.256 Z M 93.063 483.256 C 38.879 516.568 29.36 531.2 3 531.2 M 93.063 483.256 L 110.636 409.026 M 110.636 409.026 C 126.257 391.225 156.326 345.964 151.64 307.337 C 146.271 291.486 138.753 255.395 151.64 237.837 M 110.636 409.026 C 178.976 372.675 225.594 321.968 200.699 257.589 C 175.803 193.211 200.699 132.197 200.699 116.395 L 191.5 120.5 C 159.527 142.447 98.335 193.357 93.063 237.837 C 86.473 293.437 128.209 325.626 110.636 409.026 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(245,245,247)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:8792227863,withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h6179i\",\"data-framer-name\":\"Form\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bj9x28\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1plf349\",\"data-framer-name\":\"head-txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ybjiqt\",\"data-framer-name\":\"headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1h6znvm\",\"data-styles-preset\":\"hO4rbrA_2\",style:{\"--framer-text-alignment\":\"center\"},children:\"L\\xe5t oss prata\"})}),className:\"framer-m95kzu\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yp2f30\",\"data-framer-name\":\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ykh7tc\",\"data-styles-preset\":\"ct9Gq7x36\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2eb07466-8e12-4b9d-b469-66ccd1d98b7d, rgb(127, 128, 128))\"},children:\"Din r\\xf6st \\xe4r viktig och vi \\xe4r h\\xe4r f\\xf6r att lyssna. Oavsett om du har fr\\xe5gor, beh\\xf6ver v\\xe4gledning eller bara vill  skriver in dig  \\xe4r vi redo att hj\\xe4lpa dig. \"})}),className:\"framer-1gzmbwc\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zxb4c9\",\"data-framer-name\":\"content-form\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nqvntm\",\"data-framer-name\":\"info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bjto0o\",\"data-framer-name\":\"head+infos\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h0h8sv\",\"data-framer-name\":\"top-txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-guljg9\",\"data-framer-name\":\"headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3m37wu\",\"data-styles-preset\":\"Te8O7XLmO\",style:{\"--framer-text-color\":\"var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254))\"},children:\"Kontaktinformation\"})}),className:\"framer-jzpjxj\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5wtb05\",\"data-framer-name\":\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2jfv8e\",\"data-styles-preset\":\"PYtXiftJv\",style:{\"--framer-text-color\":\"rgba(254, 254, 254, 0.8)\"},children:\"Fyll i formul\\xe4ret / Svar inom 24h (vardagar)\"})}),className:\"framer-1ez2osz\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6zoyj\",\"data-framer-name\":\"information\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kn9d61\",\"data-framer-name\":\"phone\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mhlk1y\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18 14.9467V17.304C18.0001 17.4728 17.9361 17.6353 17.8211 17.7588C17.706 17.8823 17.5484 17.9575 17.38 17.9693C17.0887 17.9893 16.8507 18 16.6667 18C10.7753 18 6 13.2247 6 7.33333C6 7.14933 6.01 6.91133 6.03067 6.62C6.04248 6.45163 6.11772 6.29401 6.2412 6.17894C6.36468 6.06387 6.52722 5.99992 6.696 6H9.05333C9.13603 5.99992 9.2158 6.03057 9.27715 6.08601C9.33851 6.14145 9.37706 6.21772 9.38533 6.3C9.40067 6.45333 9.41467 6.57533 9.428 6.668C9.56048 7.59262 9.83199 8.49189 10.2333 9.33533C10.2967 9.46867 10.2553 9.628 10.1353 9.71333L8.69667 10.7413C9.5763 12.791 11.2097 14.4244 13.2593 15.304L14.286 13.868C14.328 13.8093 14.3892 13.7673 14.459 13.7491C14.5288 13.7309 14.6028 13.7379 14.668 13.7687C15.5113 14.1693 16.4104 14.4401 17.3347 14.572C17.4273 14.5853 17.5493 14.6 17.7013 14.6147C17.7835 14.6231 17.8596 14.6617 17.9149 14.7231C17.9702 14.7844 18.0001 14.8641 18 14.9467Z\" fill=\"#FEFFFE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qp3t3\",\"data-framer-name\":\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2jfv8e\",\"data-styles-preset\":\"PYtXiftJv\",style:{\"--framer-text-color\":\"var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254))\"},children:\"+46 720303000\"})}),className:\"framer-qrglm6\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rqhunl\",\"data-framer-name\":\"mail\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gxgftl\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.5 6H6.5C6.10218 6 5.72064 6.15804 5.43934 6.43934C5.15804 6.72064 5 7.10218 5 7.5V16.5C5 16.8978 5.15804 17.2794 5.43934 17.5607C5.72064 17.842 6.10218 18 6.5 18H18.5C18.8978 18 19.2794 17.842 19.5607 17.5607C19.842 17.2794 20 16.8978 20 16.5V7.5C20 7.10218 19.842 6.72064 19.5607 6.43934C19.2794 6.15804 18.8978 6 18.5 6ZM18.5 9.525L12.5 13.5255L6.5 9.525V7.72275L12.5 11.7225L18.5 7.72275V9.525Z\" fill=\"#FEFFFE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2eikdz\",\"data-framer-name\":\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2jfv8e\",\"data-styles-preset\":\"PYtXiftJv\",style:{\"--framer-text-color\":\"var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254))\"},children:\"info.kronanstrafikskola@gmail.com\"})}),className:\"framer-1fkxvvl\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uexw5y\",\"data-framer-name\":\"mail\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3zwp11\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.3571 5C9.4 5 7 7.16 7 9.82143C7 14.1071 12.3571 20 12.3571 20C12.3571 20 17.7143 14.1071 17.7143 9.82143C17.7143 7.16 15.3143 5 12.3571 5ZM12.3571 12.5C12.0725 12.5052 11.7897 12.4536 11.5252 12.3483C11.2607 12.2429 11.0198 12.086 10.8167 11.8865C10.6135 11.687 10.4522 11.4491 10.342 11.1866C10.2319 10.924 10.1752 10.6422 10.1752 10.3575C10.1752 10.0728 10.2319 9.79096 10.342 9.52844C10.4522 9.26591 10.6135 9.02797 10.8167 8.8285C11.0198 8.62904 11.2607 8.47205 11.5252 8.36672C11.7897 8.26138 12.0725 8.2098 12.3571 8.215C12.9186 8.22525 13.4536 8.45549 13.847 8.85617C14.2405 9.25685 14.4609 9.79595 14.4609 10.3575C14.4609 10.919 14.2405 11.4582 13.847 11.8588C13.4536 12.2595 12.9186 12.4897 12.3571 12.5Z\" fill=\"#FEFFFE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8fq1dn\",\"data-framer-name\":\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2jfv8e\",\"data-styles-preset\":\"PYtXiftJv\",style:{\"--framer-text-color\":\"var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254))\"},children:\"Karh\\xf6gstorg 10A, 223 58 Lund\"})}),className:\"framer-1g684pz\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f79fcb\",\"data-framer-name\":\"texts\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vu20gn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"e2_7ZQA0o\",scopeId:\"NBquLJQgd\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Timer\",id:\"e2_7ZQA0o\",layoutId:\"e2_7ZQA0o\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2jfv8e\",\"data-styles-preset\":\"PYtXiftJv\",style:{\"--framer-text-color\":\"var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254))\"},children:\"09:00 -19.00 \"})}),className:\"framer-epdki3\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wsg074\",\"data-framer-name\":\"social-media\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/\",motionChild:true,nodeId:\"c7YfXGzkS\",scopeId:\"NBquLJQgd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4f1hbt framer-4qrqpb\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15e2yxf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"V6ztU0vcT\",scopeId:\"NBquLJQgd\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"TikTok\",id:\"V6ztU0vcT\",layoutId:\"V6ztU0vcT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://instagram.com\",motionChild:true,nodeId:\"y0KmgNgIF\",scopeId:\"NBquLJQgd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-n4pp3v framer-4qrqpb\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7uxa2n-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"y3KoQIgEm\",scopeId:\"NBquLJQgd\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Instagram\",id:\"y3KoQIgEm\",layoutId:\"y3KoQIgEm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://telegram.org/\",motionChild:true,nodeId:\"OFff8WVaN\",scopeId:\"NBquLJQgd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xcz1r4 framer-4qrqpb\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com\",motionChild:true,nodeId:\"xBOwip_Pm\",scopeId:\"NBquLJQgd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11j89ia framer-4qrqpb\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u2f1db\",\"data-framer-name\":\"shapes\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g19x4e\",\"data-framer-name\":\"bold-shape2\",style:{rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bau6vk\",\"data-framer-name\":\"bold-shape1\",style:{rotate:-45}})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1alyt2w-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"s04duofYS\",scopeId:\"NBquLJQgd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G_Itbm0GO:{layout:\"vertical\"},GdnDmuEWC:{layout:\"vertical\"}},children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-2ad29e09-2004-409e-b364-33879425f6ce, rgb(218, 95, 111))\",fontWeight:600,label:getLocalizedValue(\"v10\",activeLocale)??\"Skicka\"},email:{placeholder:\"E-post\",value:\"\"},font:false,fontFamily:\"Inter\",fontSize:16,fontWeight:400,formId:\"yhURAWqB2\",gap:15,height:\"100%\",id:\"s04duofYS\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(235, 235, 235)\",placeholderColor:\"rgba(0, 0, 0, 0.5)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"s04duofYS\",message:{placeholder:\"Meddelande\",value:\"\"},nameField:{placeholder:\"Nam\",value:\"\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s9rg8k\",\"data-framer-name\":\"leaf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GdnDmuEWC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 515 411\"><path d=\"M 159.399 241.608 C 110.551 253.404 7.95 185.662 2.188 105.855 C 2.188 105.855 141.291 110.792 159.399 241.608 Z M 159.399 241.608 C 124.829 190.598 48.775 140.247 34.289 136.297 M 159.399 241.608 C 169.074 269.619 215.355 293.745 268.87 312.443 M 268.87 312.443 C 256.624 283.085 236.941 227.722 230.019 183.194 M 268.87 312.443 C 288.539 319.316 309.185 325.455 329.35 330.785 M 229.362 136.297 C 241.709 84.465 156.107 122.311 194.792 2.19 C 232.105 26.872 291.259 88.249 229.362 136.297 Z M 229.362 136.297 C 235.398 119.568 242.202 79.199 221.131 51.555 M 229.362 136.297 C 226.483 148.385 227.17 164.872 230.019 183.194 M 230.019 183.194 C 212.332 172.721 183.622 154.241 159.399 135.269 M 118.244 93.515 C 119.068 113.26 140.486 120.457 159.399 135.269 M 159.399 135.269 C 164.886 96.669 85.321 21.936 100.96 6.304 C 66.06 103.058 125.378 132.595 159.399 135.269 Z M 329.35 330.785 C 315.524 337.192 296.099 345.441 275.849 352.785 M 329.35 330.785 C 355.43 330.013 415.494 333.331 447.114 352.785 M 186.132 367.488 C 199.903 376.388 239.225 366.068 275.849 352.785 M 275.849 352.785 C 247.04 333.225 177.9 297.77 131.807 312.443 C 74.191 330.785 78.306 361.729 52.79 367.488 C 103.066 375.758 253.174 462.303 275.849 356.979 C 276.129 355.771 276.521 353.24 275.849 352.785 Z M 447.114 352.785 C 486.639 377.104 493.583 387.785 512.812 387.785 M 447.114 352.785 L 434.295 298.596 M 434.295 298.596 C 422.9 285.601 400.966 252.56 404.384 224.361 C 408.301 212.79 413.785 186.443 404.384 173.625 M 434.295 298.596 C 384.444 272.059 350.438 235.042 368.598 188.045 C 386.758 141.047 368.598 96.506 368.598 84.97 L 375.308 87.967 C 398.631 103.989 443.268 141.154 447.114 173.625 C 451.921 214.214 421.476 237.713 434.295 298.596 Z\" fill=\"transparent\" stroke-width=\"3.65\" stroke=\"rgb(245,245,247)\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12531177376}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7cswy7\",\"data-framer-name\":\"leaf\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 706 563\"><path d=\"M 218.516 330.962 C 151.551 347.12 10.898 254.325 3 145.004 C 3 145.004 193.692 151.766 218.516 330.962 Z M 218.516 330.962 C 171.125 261.087 66.865 192.114 47.006 186.704 M 218.516 330.962 C 231.779 369.332 295.224 402.38 368.587 427.994 M 368.587 427.994 C 351.799 387.778 324.816 311.941 315.327 250.944 M 368.587 427.994 C 395.55 437.408 423.853 445.818 451.497 453.119 M 314.426 186.704 C 331.352 115.702 214.003 167.545 267.035 3 C 318.187 36.81 399.279 120.886 314.426 186.704 Z M 314.426 186.704 C 322.701 163.788 332.029 108.489 303.143 70.621 M 314.426 186.704 C 310.479 203.262 311.422 225.847 315.327 250.944 M 315.327 250.944 C 291.08 236.599 251.723 211.284 218.516 185.296 M 162.098 128.099 C 163.227 155.147 192.588 165.006 218.516 185.296 M 218.516 185.296 C 226.038 132.42 116.964 30.048 138.403 8.635 C 90.561 141.172 171.877 181.633 218.516 185.296 Z M 451.497 453.119 C 432.544 461.895 405.914 473.196 378.154 483.256 M 451.497 453.119 C 487.249 452.061 569.59 456.607 612.937 483.256 M 255.163 503.396 C 274.042 515.588 327.947 501.451 378.154 483.256 M 378.154 483.256 C 338.661 456.461 243.879 407.894 180.691 427.994 C 101.706 453.119 107.348 495.507 72.369 503.396 C 141.291 514.724 347.07 633.277 378.154 489 C 378.538 487.345 379.076 483.879 378.154 483.256 Z M 612.937 483.256 C 667.121 516.568 676.64 531.2 703 531.2 M 612.937 483.256 L 595.364 409.026 M 595.364 409.026 C 579.743 391.225 549.674 345.964 554.36 307.337 C 559.729 291.486 567.247 255.395 554.36 237.837 M 595.364 409.026 C 527.024 372.675 480.406 321.968 505.301 257.589 C 530.197 193.211 505.301 132.197 505.301 116.395 L 514.5 120.5 C 546.473 142.447 607.665 193.357 612.937 237.837 C 619.527 293.437 577.791 325.626 595.364 409.026 Z\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(245,245,247)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11204951686,withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dqmt6r\",\"data-framer-name\":\"Locate me on a map\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cm4k2a\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2u5kkh\",\"data-framer-name\":\"head-txt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nv01r7\",\"data-framer-name\":\"headlines\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sm3u6h\",\"data-framer-name\":\"map-wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n10aff-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ISBXf7AcO\",scopeId:\"NBquLJQgd\",children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,coordinates:\"55.69405883144985, 13.192494632462711\",height:\"100%\",id:\"ISBXf7AcO\",isMixedBorderRadius:false,layoutId:\"ISBXf7AcO\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,width:\"100%\",zoom:17})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6tu4d8\",\"data-framer-name\":\"footer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18oj8bt\",\"data-framer-name\":\"gray-shape\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11sg4x8\",\"data-framer-name\":\"footer-bg-shape\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:405,intrinsicWidth:1920,svg:'<svg width=\"1920\" height=\"405\" viewBox=\"0 0 1920 405\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.65784 0H0V405H1920V275C1829.57 279.336 1742.39 283.699 1658.44 287.9C607.058 340.51 63.209 367.723 2.65784 0Z\" fill=\"#F5F5F7\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G_Itbm0GO:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+2590.4+0},GdnDmuEWC:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+2594.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:334,width:\"1280px\",y:(componentViewport?.y||0)+0+2515.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jyuk9y-container\",nodeId:\"hy40I6d5E\",scopeId:\"NBquLJQgd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G_Itbm0GO:{variant:\"hPZseJjAE\"},GdnDmuEWC:{variant:\"tO4ZVQzPg\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"hy40I6d5E\",k8vVh3wVU:\"rgba(245, 245, 247, 0)\",layoutId:\"hy40I6d5E\",style:{width:\"100%\"},variant:\"AeG44crad\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-awBIy.framer-4qrqpb, .framer-awBIy .framer-4qrqpb { display: block; }\",\".framer-awBIy.framer-13h53g4 { align-content: center; align-items: center; background-color: var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, #fefefe); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-awBIy .framer-1wv5jju { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 20px 0px 0px 0px; position: fixed; top: 16px; transform: translateX(-50%); width: 760px; z-index: 8; }\",\".framer-awBIy .framer-15ox9pw-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 10; }\",\".framer-awBIy .framer-1ncj769 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-8a6c31 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 180px 32px 36px 32px; position: relative; width: 1px; }\",\".framer-awBIy .framer-jwuzi6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 663px; }\",\".framer-awBIy .framer-1pnjm10 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-64qeac { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-xpazmm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-awBIy .framer-1oqmp2v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-awBIy .framer-1y7vy7t { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 663px; word-break: break-word; word-wrap: break-word; }\",\".framer-awBIy .framer-dptvyt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-awBIy .framer-2j5sj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; min-height: 18px; overflow: visible; padding: 0px; position: relative; width: 99px; }\",\".framer-awBIy .framer-o79iqb { flex: none; height: 580px; overflow: visible; position: relative; width: 553px; }\",\".framer-awBIy .framer-5bs5yw { flex: none; height: 656px; left: calc(49.186256781193514% - 683.1290893554688px / 2); overflow: visible; position: absolute; top: calc(52.93103448275864% - 655.9868774414062px / 2); width: 683px; }\",\".framer-awBIy .framer-jwmjuo { -webkit-filter: blur(6px); background: linear-gradient(269.9579642095413deg, #eebcc8 0%, rgba(189, 200, 222, 1) 100%); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; filter: blur(6px); flex: none; height: 84px; left: -53px; overflow: hidden; position: absolute; top: 225px; width: 773px; will-change: var(--framer-will-change-override, transform); }\",\".framer-awBIy .framer-1q6ky9b { background: linear-gradient(269.9173895347253deg, #fb9e9d 0%, rgba(209, 178, 234, 1) 100%); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; flex: none; height: 84px; left: -53px; overflow: hidden; position: absolute; top: 342px; width: 791px; will-change: var(--framer-will-change-override, transform); }\",\".framer-awBIy .framer-13cd4lo { border-bottom-left-radius: 21px; border-bottom-right-radius: 21px; border-top-left-radius: 21px; border-top-right-radius: 21px; flex: none; height: 580px; left: 0px; position: absolute; top: 0px; width: 553px; }\",\".framer-awBIy .framer-1lzdref { flex: none; height: 563px; left: -397px; overflow: hidden; position: absolute; top: 740px; width: 706px; z-index: 0; }\",\".framer-awBIy .framer-11tnvh { flex: none; height: 563px; left: 0px; position: absolute; top: 0px; width: 706px; }\",\".framer-awBIy .framer-h6179i, .framer-awBIy .framer-2u5kkh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-bj9x28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 32px 61px 32px; position: relative; width: 100%; }\",\".framer-awBIy .framer-1plf349 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-1ybjiqt, .framer-awBIy .framer-guljg9, .framer-awBIy .framer-1f79fcb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-m95kzu, .framer-awBIy .framer-1gzmbwc, .framer-awBIy .framer-1ez2osz { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-awBIy .framer-1yp2f30 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 810px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-zxb4c9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-1nqvntm { align-content: flex-start; align-items: flex-start; background: linear-gradient(-89.26840385555028deg, #ce92a1 0%, rgba(105, 137, 201, 1) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 500px; justify-content: space-between; overflow: hidden; padding: 40px; position: relative; width: 473px; will-change: var(--framer-will-change-override, transform); }\",\".framer-awBIy .framer-1bjto0o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-awBIy .framer-h0h8sv { 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; width: 100%; }\",\".framer-awBIy .framer-jzpjxj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 393px; word-break: break-word; word-wrap: break-word; }\",\".framer-awBIy .framer-5wtb05 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 324px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-1p6zoyj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-kn9d61, .framer-awBIy .framer-1rqhunl, .framer-awBIy .framer-1uexw5y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-mhlk1y, .framer-awBIy .framer-gxgftl, .framer-awBIy .framer-3zwp11, .framer-awBIy .framer-15e2yxf-container, .framer-awBIy .framer-7uxa2n-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-awBIy .framer-qp3t3, .framer-awBIy .framer-2eikdz, .framer-awBIy .framer-8fq1dn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-awBIy .framer-qrglm6, .framer-awBIy .framer-1fkxvvl, .framer-awBIy .framer-1g684pz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 364px; word-break: break-word; word-wrap: break-word; }\",\".framer-awBIy .framer-1vu20gn-container { flex: none; height: 24px; position: relative; width: 23px; }\",\".framer-awBIy .framer-epdki3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 360px; word-break: break-word; word-wrap: break-word; }\",\".framer-awBIy .framer-1wsg074 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-awBIy .framer-4f1hbt, .framer-awBIy .framer-n4pp3v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-awBIy .framer-xcz1r4, .framer-awBIy .framer-11j89ia { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 24px; min-width: 24px; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-awBIy .framer-1u2f1db { bottom: -294px; flex: none; height: 510px; overflow: visible; position: absolute; right: -533px; width: 796px; z-index: 0; }\",\".framer-awBIy .framer-g19x4e { -webkit-filter: blur(12px); background: linear-gradient(269.9173895347253deg, #fb9e9d 0%, rgba(209, 178, 234, 1) 100%); border-bottom-left-radius: 72px; border-bottom-right-radius: 72px; border-top-left-radius: 72px; border-top-right-radius: 72px; filter: blur(12px); flex: none; height: 64px; left: -27px; overflow: hidden; position: absolute; top: 97px; width: 396px; will-change: var(--framer-will-change-override, transform); }\",\".framer-awBIy .framer-bau6vk { -webkit-filter: blur(12px); background: linear-gradient(269.9173895347253deg, #fee8b2 0%, rgba(255, 202, 197, 1) 100%); border-bottom-left-radius: 72px; border-bottom-right-radius: 72px; border-top-left-radius: 72px; border-top-right-radius: 72px; filter: blur(12px); flex: none; height: 64px; left: 14px; overflow: hidden; position: absolute; top: 28px; width: 328px; will-change: var(--framer-will-change-override, transform); }\",\".framer-awBIy .framer-1alyt2w-container { align-self: stretch; flex: none; height: auto; position: relative; width: 550px; }\",\".framer-awBIy .framer-1s9rg8k { bottom: 739px; flex: none; height: 563px; overflow: hidden; position: absolute; right: -426px; width: 706px; z-index: 0; }\",\".framer-awBIy .framer-7cswy7 { flex: none; height: 563px; left: calc(50.00000000000002% - 706px / 2); position: absolute; top: calc(49.91119005328599% - 563px / 2); width: 706px; }\",\".framer-awBIy .framer-1dqmt6r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-cm4k2a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 34px 32px 120px 32px; position: relative; width: 100%; }\",\".framer-awBIy .framer-nv01r7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 63px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-1sm3u6h { align-content: flex-start; align-items: flex-start; background-color: #fefffe; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 10px 30px 0px rgba(62, 15, 21, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-awBIy .framer-n10aff-container { flex: none; height: 480px; position: relative; width: 100%; }\",\".framer-awBIy .framer-6tu4d8 { align-content: center; align-items: center; background-color: var(--token-10848664-432d-4e73-afdb-28ccc9331cf5, #f5f5f7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-awBIy .framer-18oj8bt { flex: none; height: 546px; left: -65px; overflow: hidden; position: absolute; right: 0px; top: -365px; z-index: 1; }\",\".framer-awBIy .framer-11sg4x8 { flex: none; height: 405px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-awBIy .framer-1jyuk9y-container { flex: none; height: auto; position: relative; width: 1280px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-awBIy.framer-13h53g4, .framer-awBIy .framer-1wv5jju, .framer-awBIy .framer-1ncj769, .framer-awBIy .framer-8a6c31, .framer-awBIy .framer-jwuzi6, .framer-awBIy .framer-1pnjm10, .framer-awBIy .framer-64qeac, .framer-awBIy .framer-xpazmm, .framer-awBIy .framer-dptvyt, .framer-awBIy .framer-h6179i, .framer-awBIy .framer-bj9x28, .framer-awBIy .framer-1plf349, .framer-awBIy .framer-1ybjiqt, .framer-awBIy .framer-1yp2f30, .framer-awBIy .framer-zxb4c9, .framer-awBIy .framer-1bjto0o, .framer-awBIy .framer-h0h8sv, .framer-awBIy .framer-guljg9, .framer-awBIy .framer-5wtb05, .framer-awBIy .framer-1p6zoyj, .framer-awBIy .framer-kn9d61, .framer-awBIy .framer-qp3t3, .framer-awBIy .framer-1rqhunl, .framer-awBIy .framer-2eikdz, .framer-awBIy .framer-1uexw5y, .framer-awBIy .framer-8fq1dn, .framer-awBIy .framer-1f79fcb, .framer-awBIy .framer-1wsg074, .framer-awBIy .framer-4f1hbt, .framer-awBIy .framer-n4pp3v, .framer-awBIy .framer-xcz1r4, .framer-awBIy .framer-11j89ia, .framer-awBIy .framer-1dqmt6r, .framer-awBIy .framer-cm4k2a, .framer-awBIy .framer-2u5kkh, .framer-awBIy .framer-nv01r7, .framer-awBIy .framer-1sm3u6h, .framer-awBIy .framer-6tu4d8 { gap: 0px; } .framer-awBIy.framer-13h53g4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-awBIy.framer-13h53g4 > :first-child, .framer-awBIy .framer-jwuzi6 > :first-child, .framer-awBIy .framer-1pnjm10 > :first-child, .framer-awBIy .framer-64qeac > :first-child, .framer-awBIy .framer-dptvyt > :first-child, .framer-awBIy .framer-h6179i > :first-child, .framer-awBIy .framer-bj9x28 > :first-child, .framer-awBIy .framer-1plf349 > :first-child, .framer-awBIy .framer-1bjto0o > :first-child, .framer-awBIy .framer-h0h8sv > :first-child, .framer-awBIy .framer-1p6zoyj > :first-child, .framer-awBIy .framer-1dqmt6r > :first-child, .framer-awBIy .framer-cm4k2a > :first-child, .framer-awBIy .framer-2u5kkh > :first-child, .framer-awBIy .framer-1sm3u6h > :first-child { margin-top: 0px; } .framer-awBIy.framer-13h53g4 > :last-child, .framer-awBIy .framer-jwuzi6 > :last-child, .framer-awBIy .framer-1pnjm10 > :last-child, .framer-awBIy .framer-64qeac > :last-child, .framer-awBIy .framer-dptvyt > :last-child, .framer-awBIy .framer-h6179i > :last-child, .framer-awBIy .framer-bj9x28 > :last-child, .framer-awBIy .framer-1plf349 > :last-child, .framer-awBIy .framer-1bjto0o > :last-child, .framer-awBIy .framer-h0h8sv > :last-child, .framer-awBIy .framer-1p6zoyj > :last-child, .framer-awBIy .framer-1dqmt6r > :last-child, .framer-awBIy .framer-cm4k2a > :last-child, .framer-awBIy .framer-2u5kkh > :last-child, .framer-awBIy .framer-1sm3u6h > :last-child { margin-bottom: 0px; } .framer-awBIy .framer-1wv5jju > *, .framer-awBIy .framer-1ncj769 > *, .framer-awBIy .framer-xpazmm > *, .framer-awBIy .framer-1ybjiqt > *, .framer-awBIy .framer-1yp2f30 > *, .framer-awBIy .framer-guljg9 > *, .framer-awBIy .framer-5wtb05 > *, .framer-awBIy .framer-qp3t3 > *, .framer-awBIy .framer-2eikdz > *, .framer-awBIy .framer-8fq1dn > *, .framer-awBIy .framer-1f79fcb > *, .framer-awBIy .framer-4f1hbt > *, .framer-awBIy .framer-n4pp3v > *, .framer-awBIy .framer-xcz1r4 > *, .framer-awBIy .framer-11j89ia > *, .framer-awBIy .framer-nv01r7 > *, .framer-awBIy .framer-6tu4d8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-awBIy .framer-1wv5jju > :first-child, .framer-awBIy .framer-1ncj769 > :first-child, .framer-awBIy .framer-8a6c31 > :first-child, .framer-awBIy .framer-xpazmm > :first-child, .framer-awBIy .framer-1ybjiqt > :first-child, .framer-awBIy .framer-1yp2f30 > :first-child, .framer-awBIy .framer-zxb4c9 > :first-child, .framer-awBIy .framer-guljg9 > :first-child, .framer-awBIy .framer-5wtb05 > :first-child, .framer-awBIy .framer-kn9d61 > :first-child, .framer-awBIy .framer-qp3t3 > :first-child, .framer-awBIy .framer-1rqhunl > :first-child, .framer-awBIy .framer-2eikdz > :first-child, .framer-awBIy .framer-1uexw5y > :first-child, .framer-awBIy .framer-8fq1dn > :first-child, .framer-awBIy .framer-1f79fcb > :first-child, .framer-awBIy .framer-1wsg074 > :first-child, .framer-awBIy .framer-4f1hbt > :first-child, .framer-awBIy .framer-n4pp3v > :first-child, .framer-awBIy .framer-xcz1r4 > :first-child, .framer-awBIy .framer-11j89ia > :first-child, .framer-awBIy .framer-nv01r7 > :first-child, .framer-awBIy .framer-6tu4d8 > :first-child { margin-left: 0px; } .framer-awBIy .framer-1wv5jju > :last-child, .framer-awBIy .framer-1ncj769 > :last-child, .framer-awBIy .framer-8a6c31 > :last-child, .framer-awBIy .framer-xpazmm > :last-child, .framer-awBIy .framer-1ybjiqt > :last-child, .framer-awBIy .framer-1yp2f30 > :last-child, .framer-awBIy .framer-zxb4c9 > :last-child, .framer-awBIy .framer-guljg9 > :last-child, .framer-awBIy .framer-5wtb05 > :last-child, .framer-awBIy .framer-kn9d61 > :last-child, .framer-awBIy .framer-qp3t3 > :last-child, .framer-awBIy .framer-1rqhunl > :last-child, .framer-awBIy .framer-2eikdz > :last-child, .framer-awBIy .framer-1uexw5y > :last-child, .framer-awBIy .framer-8fq1dn > :last-child, .framer-awBIy .framer-1f79fcb > :last-child, .framer-awBIy .framer-1wsg074 > :last-child, .framer-awBIy .framer-4f1hbt > :last-child, .framer-awBIy .framer-n4pp3v > :last-child, .framer-awBIy .framer-xcz1r4 > :last-child, .framer-awBIy .framer-11j89ia > :last-child, .framer-awBIy .framer-nv01r7 > :last-child, .framer-awBIy .framer-6tu4d8 > :last-child { margin-right: 0px; } .framer-awBIy .framer-8a6c31 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-awBIy .framer-jwuzi6 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-awBIy .framer-1pnjm10 > *, .framer-awBIy .framer-1bjto0o > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-awBIy .framer-64qeac > *, .framer-awBIy .framer-dptvyt > *, .framer-awBIy .framer-h6179i > *, .framer-awBIy .framer-h0h8sv > *, .framer-awBIy .framer-1dqmt6r > *, .framer-awBIy .framer-2u5kkh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-awBIy .framer-bj9x28 > *, .framer-awBIy .framer-cm4k2a > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-awBIy .framer-1plf349 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-awBIy .framer-zxb4c9 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-awBIy .framer-1p6zoyj > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-awBIy .framer-kn9d61 > *, .framer-awBIy .framer-1rqhunl > *, .framer-awBIy .framer-1uexw5y > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-awBIy .framer-1wsg074 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-awBIy .framer-1sm3u6h > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1279px) { .framer-awBIy.framer-13h53g4 { width: 810px; } .framer-awBIy .framer-8a6c31 { flex-direction: column; gap: 64px; justify-content: flex-end; padding: 160px 60px 21px 60px; } .framer-awBIy .framer-jwuzi6, .framer-awBIy .framer-1pnjm10, .framer-awBIy .framer-64qeac { align-content: center; align-items: center; } .framer-awBIy .framer-1lzdref { left: -497px; top: 1210px; } .framer-awBIy .framer-bj9x28 { gap: 48px; padding: 11px 60px 80px 60px; } .framer-awBIy .framer-zxb4c9 { gap: 20px; } .framer-awBIy .framer-1nqvntm { flex: 1 0 0px; height: 464px; padding: 40px 20px 40px 20px; width: 1px; } .framer-awBIy .framer-jzpjxj, .framer-awBIy .framer-qrglm6, .framer-awBIy .framer-1fkxvvl, .framer-awBIy .framer-1g684pz, .framer-awBIy .framer-epdki3, .framer-awBIy .framer-1alyt2w-container, .framer-awBIy .framer-1jyuk9y-container { flex: 1 0 0px; width: 1px; } .framer-awBIy .framer-5wtb05 { max-width: 274px; } .framer-awBIy .framer-1u2f1db { bottom: -354px; right: -603px; } .framer-awBIy .framer-1s9rg8k { bottom: unset; right: -486px; top: 2583px; } .framer-awBIy .framer-cm4k2a { gap: 48px; padding: 60px 60px 80px 60px; } .framer-awBIy .framer-n10aff-container { height: 440px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-awBIy .framer-8a6c31, .framer-awBIy .framer-bj9x28, .framer-awBIy .framer-zxb4c9, .framer-awBIy .framer-cm4k2a { gap: 0px; } .framer-awBIy .framer-8a6c31 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-awBIy .framer-8a6c31 > :first-child, .framer-awBIy .framer-bj9x28 > :first-child, .framer-awBIy .framer-cm4k2a > :first-child { margin-top: 0px; } .framer-awBIy .framer-8a6c31 > :last-child, .framer-awBIy .framer-bj9x28 > :last-child, .framer-awBIy .framer-cm4k2a > :last-child { margin-bottom: 0px; } .framer-awBIy .framer-bj9x28 > *, .framer-awBIy .framer-cm4k2a > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-awBIy .framer-zxb4c9 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-awBIy .framer-zxb4c9 > :first-child { margin-left: 0px; } .framer-awBIy .framer-zxb4c9 > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-awBIy.framer-13h53g4 { width: 390px; } .framer-awBIy .framer-15ox9pw-container { flex: none; width: 330px; } .framer-awBIy .framer-1ncj769 { flex-direction: column; } .framer-awBIy .framer-8a6c31 { flex: none; flex-direction: column; gap: 64px; justify-content: center; padding: 160px 30px 26px 30px; width: 100%; } .framer-awBIy .framer-jwuzi6 { align-content: center; align-items: center; gap: 32px; width: 100%; } .framer-awBIy .framer-1pnjm10 { align-content: center; align-items: center; gap: 16px; } .framer-awBIy .framer-64qeac { align-content: center; align-items: center; } .framer-awBIy .framer-o79iqb { height: 376px; width: 100%; } .framer-awBIy .framer-5bs5yw { height: 656px; left: calc(48.78787878787881% - 456px / 2); top: calc(28.45744680851066% - 656px / 2); width: 456px; } .framer-awBIy .framer-13cd4lo { bottom: 0px; height: unset; right: 0px; width: unset; } .framer-awBIy .framer-1lzdref { height: 431px; left: -437px; top: 990px; width: 540px; } .framer-awBIy .framer-11tnvh { height: 429px; width: 538px; } .framer-awBIy .framer-bj9x28 { gap: 32px; padding: 6px 30px 6px 30px; } .framer-awBIy .framer-1plf349 { gap: 16px; } .framer-awBIy .framer-zxb4c9 { flex-direction: column; gap: 32px; } .framer-awBIy .framer-1nqvntm { height: 400px; padding: 40px 20px 40px 20px; width: 100%; } .framer-awBIy .framer-jzpjxj, .framer-awBIy .framer-qrglm6, .framer-awBIy .framer-1fkxvvl, .framer-awBIy .framer-1g684pz, .framer-awBIy .framer-epdki3, .framer-awBIy .framer-1jyuk9y-container { flex: 1 0 0px; width: 1px; } .framer-awBIy .framer-5wtb05 { max-width: 274px; } .framer-awBIy .framer-1u2f1db { right: -613px; } .framer-awBIy .framer-1alyt2w-container { align-self: unset; height: 400px; width: 100%; } .framer-awBIy .framer-1s9rg8k { bottom: 869px; height: 414px; right: -386px; width: 519px; } .framer-awBIy .framer-7cswy7 { height: 411px; left: calc(50.09633911368018% - 515px / 2); top: calc(49.75845410628021% - 411px / 2); width: 515px; } .framer-awBIy .framer-cm4k2a { gap: 32px; padding: 60px 30px 60px 30px; } .framer-awBIy .framer-1sm3u6h { padding: 10px; } .framer-awBIy .framer-n10aff-container { height: 400px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-awBIy .framer-1ncj769, .framer-awBIy .framer-8a6c31, .framer-awBIy .framer-jwuzi6, .framer-awBIy .framer-1pnjm10, .framer-awBIy .framer-bj9x28, .framer-awBIy .framer-1plf349, .framer-awBIy .framer-zxb4c9, .framer-awBIy .framer-cm4k2a { gap: 0px; } .framer-awBIy .framer-1ncj769 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-awBIy .framer-1ncj769 > :first-child, .framer-awBIy .framer-8a6c31 > :first-child, .framer-awBIy .framer-jwuzi6 > :first-child, .framer-awBIy .framer-1pnjm10 > :first-child, .framer-awBIy .framer-bj9x28 > :first-child, .framer-awBIy .framer-1plf349 > :first-child, .framer-awBIy .framer-zxb4c9 > :first-child, .framer-awBIy .framer-cm4k2a > :first-child { margin-top: 0px; } .framer-awBIy .framer-1ncj769 > :last-child, .framer-awBIy .framer-8a6c31 > :last-child, .framer-awBIy .framer-jwuzi6 > :last-child, .framer-awBIy .framer-1pnjm10 > :last-child, .framer-awBIy .framer-bj9x28 > :last-child, .framer-awBIy .framer-1plf349 > :last-child, .framer-awBIy .framer-zxb4c9 > :last-child, .framer-awBIy .framer-cm4k2a > :last-child { margin-bottom: 0px; } .framer-awBIy .framer-8a6c31 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-awBIy .framer-jwuzi6 > *, .framer-awBIy .framer-bj9x28 > *, .framer-awBIy .framer-zxb4c9 > *, .framer-awBIy .framer-cm4k2a > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-awBIy .framer-1pnjm10 > *, .framer-awBIy .framer-1plf349 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\",\"@media (min-width: 1920px) { .framer-awBIy.framer-13h53g4 { width: 1920px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2822\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"G_Itbm0GO\":{\"layout\":[\"fixed\",\"auto\"]},\"GdnDmuEWC\":{\"layout\":[\"fixed\",\"auto\"]},\"t98DXV1Br\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerNBquLJQgd=withCSS(Component,css,\"framer-awBIy\");export default FramerNBquLJQgd;FramerNBquLJQgd.displayName=\"Contact\";FramerNBquLJQgd.defaultProps={height:2822,width:1280};addFonts(FramerNBquLJQgd,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...MenuFonts,...IconoirFonts,...FormSparkFonts,...GoogleMapsFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNBquLJQgd\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"2822\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G_Itbm0GO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GdnDmuEWC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t98DXV1Br\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["coordinatesRegex", "GoogleMaps", "coordinates", "zoom", "style", "props", "borderRadius", "useRadius", "latitude1", "longitude1", "se", "ref", "latitude", "longitude", "p", "motion", "containerStyles", "addPropertyControls", "ControlType", "borderRadiusControl", "emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "e", "f", "o", "t", "n", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "f", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "MenuFonts", "getFonts", "Sadhwxx25_default", "IconoirFonts", "Icon", "FormSparkFonts", "FormSpark_default", "GoogleMapsFonts", "GoogleMaps", "FooterFonts", "w353A_1oN_default", "breakpoints", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Sadhwxx25_default", "RichText2", "getLocalizedValue", "x", "getLoadingLazyAtYPosition", "Image2", "SVG", "Icon", "Link", "FormSpark_default", "GoogleMaps", "w353A_1oN_default", "css", "FramerNBquLJQgd", "withCSS", "NBquLJQgd_default", "addFonts", "MenuFonts", "IconoirFonts", "FormSparkFonts", "GoogleMapsFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
